diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..8ff29f1 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,4 @@ +# Don't copy Dockerfile or git items +.gitignore +.git +Dockerfile diff --git a/CHANGELOG.md b/CHANGELOG.md index 11d885c..17089b4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,24 @@ +## 1.19.3 + +* Upgrade protozero to version 1.5.2 + +## 1.19.2 + +* Ignore UTF-8 byte order mark if present + +## 1.19.1 + +* Add an option to increase maxzoom if features are still being dropped + +## 1.19.0 + +* Tile-join can merge and create directories, not only mbtiles +* Maxzoom guessing (-zg) takes into account resolution within each feature + +## 1.18.2 + +* Fix crash with very long (>128K) attribute values + ## 1.18.1 * Only warn once about invalid polygons in tippecanoe-decode diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..8ac9ae5 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,24 @@ +# Start from ubuntu +FROM ubuntu:17.04 + +# Update repos and install dependencies +RUN apt-get update \ + && apt-get -y upgrade \ + && apt-get -y install build-essential libsqlite3-dev zlib1g-dev + +# Create a directory and copy in all files +RUN mkdir -p /tmp/tippecanoe-src +WORKDIR /tmp/tippecanoe-src +COPY . /tmp/tippecanoe-src + +# Build tippecanoe +RUN make \ + && make install + +# Remove the temp directory and unneeded packages +WORKDIR / +RUN rm -rf /tmp/tippecanoe-src \ + && apt-get -y remove --purge build-essential && apt-get -y autoremove + +# Run the default command to show usage +CMD tippecanoe --help diff --git a/Makefile b/Makefile index a02adc8..964e143 100644 --- a/Makefile +++ b/Makefile @@ -46,7 +46,7 @@ C = $(wildcard *.c) $(wildcard *.cpp) INCLUDES = -I/usr/local/include -I. LIBS = -L/usr/local/lib -tippecanoe: geojson.o jsonpull/jsonpull.o tile.o pool.o mbtiles.o geometry.o projection.o memfile.o mvt.o serial.o main.o text.o rawtiles.o plugin.o read_json.o write_json.o +tippecanoe: geojson.o jsonpull/jsonpull.o tile.o pool.o mbtiles.o geometry.o projection.o memfile.o mvt.o serial.o main.o text.o dirtiles.o plugin.o read_json.o write_json.o $(CXX) $(PG) $(LIBS) $(FINAL_FLAGS) $(CXXFLAGS) -o $@ $^ $(LDFLAGS) -lm -lz -lsqlite3 -lpthread tippecanoe-enumerate: enumerate.o @@ -55,7 +55,7 @@ tippecanoe-enumerate: enumerate.o tippecanoe-decode: decode.o projection.o mvt.o write_json.o $(CXX) $(PG) $(LIBS) $(FINAL_FLAGS) $(CXXFLAGS) -o $@ $^ $(LDFLAGS) -lm -lz -lsqlite3 -tile-join: tile-join.o projection.o pool.o mbtiles.o mvt.o memfile.o +tile-join: tile-join.o projection.o pool.o mbtiles.o mvt.o memfile.o dirtiles.o jsonpull/jsonpull.o $(CXX) $(PG) $(LIBS) $(FINAL_FLAGS) $(CXXFLAGS) -o $@ $^ $(LDFLAGS) -lm -lz -lsqlite3 -lpthread unit: unit.o text.o @@ -117,7 +117,7 @@ parallel-test: raw-tiles-test: ./tippecanoe -e tests/raw-tiles/raw-tiles tests/raw-tiles/hackspots.geojson -pC - diff -x '.*' -rq tests/raw-tiles/raw-tiles tests/raw-tiles/compare + diff -x '*.DS_Store' -rq tests/raw-tiles/raw-tiles tests/raw-tiles/compare rm -rf tests/raw-tiles/raw-tiles decode-test: @@ -165,8 +165,32 @@ join-test: ./tippecanoe-decode tests/join-population/just-macarthur.mbtiles > tests/join-population/just-macarthur.mbtiles.json.check ./tippecanoe-decode tests/join-population/no-macarthur.mbtiles > tests/join-population/no-macarthur.mbtiles.json.check cmp tests/join-population/just-macarthur.mbtiles.json.check tests/join-population/just-macarthur.mbtiles.json - cmp tests/join-population/no-macarthur.mbtiles.json.check tests/join-population/no-macarthur.mbtiles.json - 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/macarthur2.mbtiles tests/join-population/windows.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 + cmp tests/join-population/no-macarthur.mbtiles.json.check tests/join-population/no-macarthur.mbtiles.json + ./tile-join -pC -e tests/join-population/raw-merged-folder tests/join-population/tabblock_06001420.mbtiles tests/join-population/macarthur.mbtiles tests/join-population/macarthur2.mbtiles + diff -x '*.DS_Store' -rq tests/join-population/raw-merged-folder tests/join-population/raw-merged-folder-compare + ./tippecanoe -z12 -e tests/join-population/tabblock_06001420-folder tests/join-population/tabblock_06001420.json + ./tippecanoe -Z5 -z10 -e tests/join-population/macarthur-folder -l macarthur tests/join-population/macarthur.json + ./tippecanoe -d10 -D10 -Z9 -z11 -e tests/join-population/macarthur2-folder -l macarthur tests/join-population/macarthur2.json + ./tile-join -f -o tests/join-population/merged-folder.mbtiles tests/join-population/tabblock_06001420-folder tests/join-population/macarthur-folder tests/join-population/macarthur2-folder + ./tippecanoe-decode tests/join-population/merged-folder.mbtiles > tests/join-population/merged-folder.mbtiles.json.check + cmp tests/join-population/merged-folder.mbtiles.json.check tests/join-population/merged-folder.mbtiles.json + ./tile-join -n "merged name" -N "merged description" -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 -n "merged name" -N "merged description" -e tests/join-population/merged-folders-to-folder tests/join-population/tabblock_06001420-folder tests/join-population/macarthur-folder tests/join-population/macarthur2-folder + diff -x '*.DS_Store' -rq tests/join-population/merged-mbtiles-to-folder tests/join-population/merged-folders-to-folder + ./tile-join -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 -c tests/join-population/windows.csv -e tests/join-population/windows-merged-folder tests/join-population/macarthur.mbtiles tests/join-population/macarthur2-folder + ./tile-join -f -o tests/join-population/windows-merged2.mbtiles tests/join-population/windows-merged-folder + ./tippecanoe-decode tests/join-population/windows-merged.mbtiles > tests/join-population/windows-merged.mbtiles.json.check + ./tippecanoe-decode 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 -f -o tests/join-population/macarthur-and-macarthur2-merged.mbtiles tests/join-population/macarthur.mbtiles tests/join-population/macarthur2-folder + ./tile-join -e tests/join-population/macarthur-and-macarthur2-folder tests/join-population/macarthur.mbtiles tests/join-population/macarthur2-folder + ./tile-join -f -o tests/join-population/macarthur-and-macarthur2-merged2.mbtiles tests/join-population/macarthur-and-macarthur2-folder + ./tippecanoe-decode tests/join-population/macarthur-and-macarthur2-merged.mbtiles > tests/join-population/macarthur-and-macarthur2-merged.mbtiles.json.check + ./tippecanoe-decode 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 # Use this target to regenerate the standards that the tests are compared against # after making a change that legitimately changes their output diff --git a/README.md b/README.md index d740d9d..ada2d1d 100644 --- a/README.md +++ b/README.md @@ -52,6 +52,24 @@ You can concatenate multiple GeoJSON features or files together, and it will parse out the features and ignore whatever other objects it encounters. +Docker Image +------------ + +A tippecanoe Docker image can be built from source and executed as a task to +automatically install dependencies and allow tippecanoe to run on any system +supported by Docker. + +```docker +$ docker build -t tippecanoe:latest . +$ docker run -it --rm \ + -v /tiledata:/data \ + tippecanoe:latest \ + tippecanoe --output=/data/output.mbtiles /data/example.geojson +``` + +The commands above will build a Docker image from the source and compile the +latest version. The image supports all tippecanoe flags and options. + Options ------- @@ -117,6 +135,9 @@ than at all newlines. * `-z` _zoom_ or `--maximum-zoom=`_zoom_: Maxzoom: the highest zoom level for which tiles are generated (default 14) * `-zg` or `--maximum-zoom=g`: Guess what is probably a reasonable maxzoom based on the spacing of features. * `-Z` _zoom_ or `--minimum-zoom=`_zoom_: Minzoom: the lowest zoom level for which tiles are generated (default 0) + * `-ae` or `--extend-zooms-if-still-dropping`: Increase the maxzoom if features are still being dropped at that zoom level. + The detail and simplification options that ordinarily apply only to the maximum zoom level will apply both to the originally + specified maximum zoom and to any levels added beyond that. ### Tile resolution @@ -413,22 +434,29 @@ The name is [a joking reference](http://en.wikipedia.org/wiki/Tippecanoe_and_Tyl tile-join ========= -Tile-join is a tool for joining new attributes from a CSV file to features that -have already been tiled with tippecanoe. It reads the tiles from an existing .mbtiles -file, matches them against the records of the CSV, and writes out a new tileset. +Tile-join is a tool for joining new attributes from a CSV file to features +that have already been tiled with tippecanoe. It reads the tiles from an +existing .mbtiles file or a directory of tiles, matches them against the +records of the CSV, and writes out a new tileset. -If you specify multiple source mbtiles files, they are all read and their combined -contents are written to the new mbtiles output. If they define the same layers or -the same tiles, the layers or tiles are merged. +If you specify multiple source mbtiles files or source directories of tiles, +all the sources are read and their combined contents are written to the new +mbtiles output. If they define the same layers or the same tiles, the layers +or tiles are merged. + +You can use the `-e` flag to output a directory of tiles rather than a +.mbtiles file. The options are: - * `-o` *out.mbtiles*: Write the new tiles to the specified .mbtiles file - * `-f`: Remove *out.mbtiles* if it already exists + * `-o` *out.mbtiles*: Write the new tiles to the specified .mbtiles file. + * `-e` *directory*: Write the new tiles to the specified directory instead of to an mbtiles file. + * `-f`: Remove *out.mbtiles* if it already exists. * `-c` *match*`.csv`: Use *match*`.csv` as the source for new attributes to join to the features. The first line of the file should be the key names; the other lines are values. The first column is the one to match against the existing features; the other columns are the new data to add. * `-x` *key*: Remove attributes of type *key* from the output. You can use this to remove the field you are matching against if you no longer need it after joining, or to remove any other attributes you don't want. * `-i`: Only include features that matched the CSV. * `-pk`: Don't skip tiles larger than 500K. + * `-pC`: Don't compress the PBF vector tile data. * `-l` *layer*: Include the named layer in the output. You can specify multiple `-l` options to keep multiple layers. If you don't specify, they will all be retained. * `-L` *layer*: Remove the named layer from the output. You can specify multiple `-L` options to remove multiple layers. * `-A` *attribution*: Set the attribution string. diff --git a/rawtiles.cpp b/dirtiles.cpp similarity index 64% rename from rawtiles.cpp rename to dirtiles.cpp index 1c7ecc4..5e48907 100644 --- a/rawtiles.cpp +++ b/dirtiles.cpp @@ -1,10 +1,20 @@ #include #include +#include #include #include -#include "rawtiles.hpp" +#include "dirtiles.hpp" -void write_raw_tile(const char *outdir, int z, int tx, int ty, std::string const &pbf) { +std::string dir_read_tile(std::string pbfPath) { + std::ifstream pbfFile(pbfPath, std::ios::in | std::ios::binary); + std::ostringstream contents; + contents << pbfFile.rdbuf(); + pbfFile.close(); + + return (contents.str()); +} + +void dir_write_tile(const char *outdir, int z, int tx, int ty, std::string const &pbf) { mkdir(outdir, S_IRWXU | S_IRWXG | S_IRWXO); std::string curdir(outdir); std::string slash("/"); diff --git a/dirtiles.hpp b/dirtiles.hpp new file mode 100644 index 0000000..a78ff83 --- /dev/null +++ b/dirtiles.hpp @@ -0,0 +1,3 @@ +std::string dir_read_tile(std::string pbfPath); + +void dir_write_tile(const char *outdir, int z, int tx, int ty, std::string const &pbf); diff --git a/geojson.cpp b/geojson.cpp index f39c68c..2253875 100644 --- a/geojson.cpp +++ b/geojson.cpp @@ -20,6 +20,7 @@ #include #include #include +#include #include #include #include @@ -98,7 +99,7 @@ static long long parse_geometry1(int t, json_object *j, long long *bbox, drawvec return geom.size(); } -int serialize_geometry(json_object *geometry, json_object *properties, json_object *id, const char *reading, int line, volatile long long *layer_seq, volatile long long *progress_seq, long long *metapos, long long *geompos, long long *indexpos, std::set *exclude, std::set *include, int exclude_all, FILE *metafile, FILE *geomfile, FILE *indexfile, struct memfile *poolfile, struct memfile *treefile, const char *fname, int basezoom, int layer, double droprate, long long *file_bbox, json_object *tippecanoe, int segment, int *initialized, unsigned *initial_x, unsigned *initial_y, struct reader *readers, int maxzoom, json_object *feature, std::map *layermap, std::string layername, bool uses_gamma, std::map const *attribute_types) { +int serialize_geometry(json_object *geometry, json_object *properties, json_object *id, const char *reading, int line, volatile long long *layer_seq, volatile long long *progress_seq, long long *metapos, long long *geompos, long long *indexpos, std::set *exclude, std::set *include, int exclude_all, FILE *metafile, FILE *geomfile, FILE *indexfile, struct memfile *poolfile, struct memfile *treefile, const char *fname, int basezoom, int layer, double droprate, long long *file_bbox, json_object *tippecanoe, int segment, int *initialized, unsigned *initial_x, unsigned *initial_y, struct reader *readers, int maxzoom, json_object *feature, std::map *layermap, std::string layername, bool uses_gamma, std::map const *attribute_types, double *dist_sum, size_t *dist_count, bool want_dist) { json_object *geometry_type = json_hash_get(geometry, "type"); if (geometry_type == NULL) { static int warned = 0; @@ -271,6 +272,33 @@ int serialize_geometry(json_object *geometry, json_object *properties, json_obje dv = fix_polygon(dv); } + if (want_dist) { + std::vector locs; + for (size_t i = 0; i < dv.size(); i++) { + if (dv[i].op == VT_MOVETO || dv[i].op == VT_LINETO) { + locs.push_back(encode(dv[i].x << geometry_scale, dv[i].y << geometry_scale)); + } + } + std::sort(locs.begin(), locs.end()); + size_t n = 0; + double sum = 0; + for (size_t i = 1; i < locs.size(); i++) { + if (locs[i - 1] != locs[i]) { + sum += log(locs[i] - locs[i - 1]); + n++; + } + } + if (n > 0) { + double avg = exp(sum / n); + // Convert approximately from tile units to feet + double dist_ft = sqrt(avg) / 33; + + *dist_sum += log(dist_ft) * n; + *dist_count += n; + } + locs.clear(); + } + bool inline_meta = true; // Don't inline metadata for features that will span several tiles at maxzoom if (g > 0 && (bbox[2] < bbox[0] || bbox[3] < bbox[1])) { @@ -423,7 +451,7 @@ void check_crs(json_object *j, const char *reading) { } } -void parse_json(json_pull *jp, const char *reading, volatile long long *layer_seq, volatile long long *progress_seq, long long *metapos, long long *geompos, long long *indexpos, std::set *exclude, std::set *include, int exclude_all, FILE *metafile, FILE *geomfile, FILE *indexfile, struct memfile *poolfile, struct memfile *treefile, char *fname, int basezoom, int layer, double droprate, long long *file_bbox, int segment, int *initialized, unsigned *initial_x, unsigned *initial_y, struct reader *readers, int maxzoom, std::map *layermap, std::string layername, bool uses_gamma, std::map const *attribute_types) { +void parse_json(json_pull *jp, const char *reading, volatile long long *layer_seq, volatile long long *progress_seq, long long *metapos, long long *geompos, long long *indexpos, std::set *exclude, std::set *include, int exclude_all, FILE *metafile, FILE *geomfile, FILE *indexfile, struct memfile *poolfile, struct memfile *treefile, char *fname, int basezoom, int layer, double droprate, long long *file_bbox, int segment, int *initialized, unsigned *initial_x, unsigned *initial_y, struct reader *readers, int maxzoom, std::map *layermap, std::string layername, bool uses_gamma, std::map const *attribute_types, double *dist_sum, size_t *dist_count, bool want_dist) { long long found_hashes = 0; long long found_features = 0; long long found_geometries = 0; @@ -491,7 +519,7 @@ void parse_json(json_pull *jp, const char *reading, volatile long long *layer_se } found_geometries++; - serialize_geometry(j, NULL, NULL, reading, jp->line, layer_seq, progress_seq, metapos, geompos, indexpos, exclude, include, exclude_all, metafile, geomfile, indexfile, poolfile, treefile, fname, basezoom, layer, droprate, file_bbox, NULL, segment, initialized, initial_x, initial_y, readers, maxzoom, j, layermap, layername, uses_gamma, attribute_types); + serialize_geometry(j, NULL, NULL, reading, jp->line, layer_seq, progress_seq, metapos, geompos, indexpos, exclude, include, exclude_all, metafile, geomfile, indexfile, poolfile, treefile, fname, basezoom, layer, droprate, file_bbox, NULL, segment, initialized, initial_x, initial_y, readers, maxzoom, j, layermap, layername, uses_gamma, attribute_types, dist_sum, dist_count, want_dist); json_free(j); continue; } @@ -534,10 +562,10 @@ void parse_json(json_pull *jp, const char *reading, volatile long long *layer_se if (geometries != NULL) { size_t g; for (g = 0; g < geometries->length; g++) { - serialize_geometry(geometries->array[g], properties, id, reading, jp->line, layer_seq, progress_seq, metapos, geompos, indexpos, exclude, include, exclude_all, metafile, geomfile, indexfile, poolfile, treefile, fname, basezoom, layer, droprate, file_bbox, tippecanoe, segment, initialized, initial_x, initial_y, readers, maxzoom, j, layermap, layername, uses_gamma, attribute_types); + serialize_geometry(geometries->array[g], properties, id, reading, jp->line, layer_seq, progress_seq, metapos, geompos, indexpos, exclude, include, exclude_all, metafile, geomfile, indexfile, poolfile, treefile, fname, basezoom, layer, droprate, file_bbox, tippecanoe, segment, initialized, initial_x, initial_y, readers, maxzoom, j, layermap, layername, uses_gamma, attribute_types, dist_sum, dist_count, want_dist); } } else { - serialize_geometry(geometry, properties, id, reading, jp->line, layer_seq, progress_seq, metapos, geompos, indexpos, exclude, include, exclude_all, metafile, geomfile, indexfile, poolfile, treefile, fname, basezoom, layer, droprate, file_bbox, tippecanoe, segment, initialized, initial_x, initial_y, readers, maxzoom, j, layermap, layername, uses_gamma, attribute_types); + serialize_geometry(geometry, properties, id, reading, jp->line, layer_seq, progress_seq, metapos, geompos, indexpos, exclude, include, exclude_all, metafile, geomfile, indexfile, poolfile, treefile, fname, basezoom, layer, droprate, file_bbox, tippecanoe, segment, initialized, initial_x, initial_y, readers, maxzoom, j, layermap, layername, uses_gamma, attribute_types, dist_sum, dist_count, want_dist); } json_free(j); @@ -549,7 +577,7 @@ void parse_json(json_pull *jp, const char *reading, volatile long long *layer_se void *run_parse_json(void *v) { struct parse_json_args *pja = (struct parse_json_args *) v; - parse_json(pja->jp, pja->reading, pja->layer_seq, pja->progress_seq, pja->metapos, pja->geompos, pja->indexpos, pja->exclude, pja->include, pja->exclude_all, pja->metafile, pja->geomfile, pja->indexfile, pja->poolfile, pja->treefile, pja->fname, pja->basezoom, pja->layer, pja->droprate, pja->file_bbox, pja->segment, pja->initialized, pja->initial_x, pja->initial_y, pja->readers, pja->maxzoom, pja->layermap, *pja->layername, pja->uses_gamma, pja->attribute_types); + parse_json(pja->jp, pja->reading, pja->layer_seq, pja->progress_seq, pja->metapos, pja->geompos, pja->indexpos, pja->exclude, pja->include, pja->exclude_all, pja->metafile, pja->geomfile, pja->indexfile, pja->poolfile, pja->treefile, pja->fname, pja->basezoom, pja->layer, pja->droprate, pja->file_bbox, pja->segment, pja->initialized, pja->initial_x, pja->initial_y, pja->readers, pja->maxzoom, pja->layermap, *pja->layername, pja->uses_gamma, pja->attribute_types, pja->dist_sum, pja->dist_count, pja->want_dist); return NULL; } diff --git a/geojson.hpp b/geojson.hpp index c040068..d108fdb 100644 --- a/geojson.hpp +++ b/geojson.hpp @@ -29,10 +29,13 @@ struct parse_json_args { std::string *layername; bool uses_gamma; std::map const *attribute_types; + double *dist_sum; + size_t *dist_count; + bool want_dist; }; struct json_pull *json_begin_map(char *map, long long len); void json_end_map(struct json_pull *jp); -void parse_json(json_pull *jp, const char *reading, volatile long long *layer_seq, volatile long long *progress_seq, long long *metapos, long long *geompos, long long *indexpos, std::set *exclude, std::set *include, int exclude_all, FILE *metafile, FILE *geomfile, FILE *indexfile, struct memfile *poolfile, struct memfile *treefile, char *fname, int basezoom, int layer, double droprate, long long *file_bbox, int segment, int *initialized, unsigned *initial_x, unsigned *initial_y, struct reader *readers, int maxzoom, std::map *layermap, std::string layername, bool uses_gamma, std::map const *attribute_types); +void parse_json(json_pull *jp, const char *reading, volatile long long *layer_seq, volatile long long *progress_seq, long long *metapos, long long *geompos, long long *indexpos, std::set *exclude, std::set *include, int exclude_all, FILE *metafile, FILE *geomfile, FILE *indexfile, struct memfile *poolfile, struct memfile *treefile, char *fname, int basezoom, int layer, double droprate, long long *file_bbox, int segment, int *initialized, unsigned *initial_x, unsigned *initial_y, struct reader *readers, int maxzoom, std::map *layermap, std::string layername, bool uses_gamma, std::map const *attribute_types, double *dist_sum, size_t *dist_count, bool want_dist); void *run_parse_json(void *v); diff --git a/jsonpull/jsonpull.c b/jsonpull/jsonpull.c index 63d27f0..d50df43 100644 --- a/jsonpull/jsonpull.c +++ b/jsonpull/jsonpull.c @@ -36,14 +36,14 @@ json_pull *json_begin(ssize_t (*read)(struct json_pull *, char *buffer, size_t n static inline int peek(json_pull *j) { if (j->buffer_head < j->buffer_tail) { - return j->buffer[j->buffer_head]; + return (unsigned char) j->buffer[j->buffer_head]; } else { j->buffer_head = 0; j->buffer_tail = j->read(j, j->buffer, BUFFER); if (j->buffer_head >= j->buffer_tail) { return EOF; } - return j->buffer[j->buffer_head]; + return (unsigned char) j->buffer[j->buffer_head]; } } @@ -295,6 +295,22 @@ again: return NULL; } + + // Byte-order mark + if (c == 0xEF) { + int c2 = peek(j); + if (c2 == 0xBB) { + c2 = read_wrap(j); + c2 = peek(j); + if (c2 == 0xBF) { + c2 = read_wrap(j); + c = ' '; + continue; + } + } + j->error = "Corrupt byte-order mark found"; + return NULL; + } } while (c == ' ' || c == '\t' || c == '\r' || c == '\n' || c == 0x1E); /////////////////////////// Arrays diff --git a/main.cpp b/main.cpp index 9d8f0ce..eb579e3 100644 --- a/main.cpp +++ b/main.cpp @@ -80,8 +80,6 @@ size_t TEMP_FILES; long long MAX_FILES; static long long diskfree; -#define MAX_ZOOM 24 - struct reader { int metafd; int poolfd; @@ -377,7 +375,7 @@ void *run_sort(void *v) { return NULL; } -void do_read_parallel(char *map, long long len, long long initial_offset, const char *reading, struct reader *reader, volatile long long *progress_seq, std::set *exclude, std::set *include, int exclude_all, char *fname, int basezoom, int source, int nlayers, std::vector > *layermaps, double droprate, int *initialized, unsigned *initial_x, unsigned *initial_y, int maxzoom, std::string layername, bool uses_gamma, std::map const *attribute_types, int separator) { +void do_read_parallel(char *map, long long len, long long initial_offset, const char *reading, struct reader *reader, volatile long long *progress_seq, std::set *exclude, std::set *include, int exclude_all, char *fname, int basezoom, int source, int nlayers, std::vector > *layermaps, double droprate, int *initialized, unsigned *initial_x, unsigned *initial_y, int maxzoom, std::string layername, bool uses_gamma, std::map const *attribute_types, int separator, double *dist_sum, size_t *dist_count, bool want_dist) { long long segs[CPUS + 1]; segs[0] = 0; segs[CPUS] = len; @@ -390,11 +388,15 @@ void do_read_parallel(char *map, long long len, long long initial_offset, const } } + double dist_sums[CPUS]; + size_t dist_counts[CPUS]; + volatile long long layer_seq[CPUS]; for (size_t i = 0; i < CPUS; i++) { // To preserve feature ordering, unique id for each segment // begins with that segment's offset into the input layer_seq[i] = segs[i] + initial_offset; + dist_sums[i] = dist_counts[i] = 0; } struct parse_json_args pja[CPUS]; @@ -436,6 +438,9 @@ void do_read_parallel(char *map, long long len, long long initial_offset, const pja[i].layername = &layername; pja[i].uses_gamma = uses_gamma; pja[i].attribute_types = attribute_types; + pja[i].dist_sum = &(dist_sums[i]); + pja[i].dist_count = &(dist_counts[i]); + pja[i].want_dist = want_dist; if (pthread_create(&pthreads[i], NULL, run_parse_json, &pja[i]) != 0) { perror("pthread_create"); @@ -450,6 +455,9 @@ void do_read_parallel(char *map, long long len, long long initial_offset, const perror("pthread_join 370"); } + *dist_sum += dist_sums[i]; + *dist_count += dist_counts[i]; + json_end_map(pja[i].jp); } } @@ -481,6 +489,9 @@ struct read_parallel_arg { std::string layername; bool uses_gamma; std::map const *attribute_types; + double *dist_sum; + size_t *dist_count; + bool want_dist; }; void *run_read_parallel(void *v) { @@ -502,7 +513,7 @@ void *run_read_parallel(void *v) { } madvise(map, rpa->len, MADV_RANDOM); // sequential, but from several pointers at once - do_read_parallel(map, rpa->len, rpa->offset, rpa->reading, rpa->reader, rpa->progress_seq, rpa->exclude, rpa->include, rpa->exclude_all, rpa->fname, rpa->basezoom, rpa->source, rpa->nlayers, rpa->layermaps, rpa->droprate, rpa->initialized, rpa->initial_x, rpa->initial_y, rpa->maxzoom, rpa->layername, rpa->uses_gamma, rpa->attribute_types, rpa->separator); + do_read_parallel(map, rpa->len, rpa->offset, rpa->reading, rpa->reader, rpa->progress_seq, rpa->exclude, rpa->include, rpa->exclude_all, rpa->fname, rpa->basezoom, rpa->source, rpa->nlayers, rpa->layermaps, rpa->droprate, rpa->initialized, rpa->initial_x, rpa->initial_y, rpa->maxzoom, rpa->layername, rpa->uses_gamma, rpa->attribute_types, rpa->separator, rpa->dist_sum, rpa->dist_count, rpa->want_dist); madvise(map, rpa->len, MADV_DONTNEED); if (munmap(map, rpa->len) != 0) { @@ -519,7 +530,7 @@ void *run_read_parallel(void *v) { return NULL; } -void start_parsing(int fd, FILE *fp, long long offset, long long len, volatile int *is_parsing, pthread_t *parallel_parser, bool &parser_created, const char *reading, struct reader *reader, volatile long long *progress_seq, std::set *exclude, std::set *include, int exclude_all, char *fname, int basezoom, int source, int nlayers, std::vector > &layermaps, double droprate, int *initialized, unsigned *initial_x, unsigned *initial_y, int maxzoom, std::string layername, bool uses_gamma, std::map const *attribute_types, int separator) { +void start_parsing(int fd, FILE *fp, long long offset, long long len, volatile int *is_parsing, pthread_t *parallel_parser, bool &parser_created, const char *reading, struct reader *reader, volatile long long *progress_seq, std::set *exclude, std::set *include, int exclude_all, char *fname, int basezoom, int source, int nlayers, std::vector > &layermaps, double droprate, int *initialized, unsigned *initial_x, unsigned *initial_y, int maxzoom, std::string layername, bool uses_gamma, std::map const *attribute_types, int separator, double *dist_sum, size_t *dist_count, bool want_dist) { // This has to kick off an intermediate thread to start the parser threads, // so the main thread can get back to reading the next input stage while // the intermediate thread waits for the completion of the parser threads. @@ -558,6 +569,9 @@ void start_parsing(int fd, FILE *fp, long long offset, long long len, volatile i rpa->layername = layername; rpa->uses_gamma = uses_gamma; rpa->attribute_types = attribute_types; + rpa->dist_sum = dist_sum; + rpa->dist_count = dist_count; + rpa->want_dist = want_dist; if (pthread_create(parallel_parser, NULL, run_read_parallel, rpa) != 0) { perror("pthread_create"); @@ -1179,6 +1193,8 @@ int read_input(std::vector &sources, char *fname, int maxzoom, int minzo } long overall_offset = 0; + double dist_sum = 0; + size_t dist_count = 0; size_t nsources = sources.size(); for (size_t source = 0; source < nsources; source++) { @@ -1241,7 +1257,7 @@ int read_input(std::vector &sources, char *fname, int maxzoom, int minzo } if (map != NULL && map != MAP_FAILED && read_parallel_this) { - do_read_parallel(map, st.st_size - off, overall_offset, reading.c_str(), reader, &progress_seq, exclude, include, exclude_all, fname, basezoom, layer, nlayers, &layermaps, droprate, initialized, initial_x, initial_y, maxzoom, sources[layer].layer, uses_gamma, attribute_types, read_parallel_this); + do_read_parallel(map, st.st_size - off, overall_offset, reading.c_str(), reader, &progress_seq, exclude, include, exclude_all, fname, basezoom, layer, nlayers, &layermaps, droprate, initialized, initial_x, initial_y, maxzoom, sources[layer].layer, uses_gamma, attribute_types, read_parallel_this, &dist_sum, &dist_count, guess_maxzoom); overall_offset += st.st_size - off; checkdisk(reader, CPUS); @@ -1317,7 +1333,7 @@ int read_input(std::vector &sources, char *fname, int maxzoom, int minzo } fflush(readfp); - start_parsing(readfd, readfp, initial_offset, ahead, &is_parsing, ¶llel_parser, parser_created, reading.c_str(), reader, &progress_seq, exclude, include, exclude_all, fname, basezoom, layer, nlayers, layermaps, droprate, initialized, initial_x, initial_y, maxzoom, sources[layer].layer, gamma != 0, attribute_types, read_parallel_this); + start_parsing(readfd, readfp, initial_offset, ahead, &is_parsing, ¶llel_parser, parser_created, reading.c_str(), reader, &progress_seq, exclude, include, exclude_all, fname, basezoom, layer, nlayers, layermaps, droprate, initialized, initial_x, initial_y, maxzoom, sources[layer].layer, gamma != 0, attribute_types, read_parallel_this, &dist_sum, &dist_count, guess_maxzoom); initial_offset += ahead; overall_offset += ahead; @@ -1354,7 +1370,7 @@ int read_input(std::vector &sources, char *fname, int maxzoom, int minzo fflush(readfp); if (ahead > 0) { - start_parsing(readfd, readfp, initial_offset, ahead, &is_parsing, ¶llel_parser, parser_created, reading.c_str(), reader, &progress_seq, exclude, include, exclude_all, fname, basezoom, layer, nlayers, layermaps, droprate, initialized, initial_x, initial_y, maxzoom, sources[layer].layer, gamma != 0, attribute_types, read_parallel_this); + start_parsing(readfd, readfp, initial_offset, ahead, &is_parsing, ¶llel_parser, parser_created, reading.c_str(), reader, &progress_seq, exclude, include, exclude_all, fname, basezoom, layer, nlayers, layermaps, droprate, initialized, initial_x, initial_y, maxzoom, sources[layer].layer, gamma != 0, attribute_types, read_parallel_this, &dist_sum, &dist_count, guess_maxzoom); if (parser_created) { if (pthread_join(parallel_parser, NULL) != 0) { @@ -1371,7 +1387,7 @@ int read_input(std::vector &sources, char *fname, int maxzoom, int minzo long long layer_seq = overall_offset; json_pull *jp = json_begin_file(fp); - parse_json(jp, reading.c_str(), &layer_seq, &progress_seq, &reader[0].metapos, &reader[0].geompos, &reader[0].indexpos, exclude, include, exclude_all, reader[0].metafile, reader[0].geomfile, reader[0].indexfile, reader[0].poolfile, reader[0].treefile, fname, basezoom, layer, droprate, reader[0].file_bbox, 0, &initialized[0], &initial_x[0], &initial_y[0], reader, maxzoom, &layermaps[0], sources[layer].layer, uses_gamma, attribute_types); + parse_json(jp, reading.c_str(), &layer_seq, &progress_seq, &reader[0].metapos, &reader[0].geompos, &reader[0].indexpos, exclude, include, exclude_all, reader[0].metafile, reader[0].geomfile, reader[0].indexfile, reader[0].poolfile, reader[0].treefile, fname, basezoom, layer, droprate, reader[0].file_bbox, 0, &initialized[0], &initial_x[0], &initial_y[0], reader, maxzoom, &layermaps[0], sources[layer].layer, uses_gamma, attribute_types, &dist_sum, &dist_count, guess_maxzoom); json_end(jp); overall_offset = layer_seq; checkdisk(reader, CPUS); @@ -1628,6 +1644,11 @@ int read_input(std::vector &sources, char *fname, int maxzoom, int minzo } } + if (count == 0 && dist_count == 0) { + fprintf(stderr, "Can't guess maxzoom (-zg) without at least two distinct feature locations\n"); + exit(EXIT_FAILURE); + } + if (count > 0) { // Geometric mean is appropriate because distances between features // are typically lognormally distributed @@ -1635,7 +1656,8 @@ int read_input(std::vector &sources, char *fname, int maxzoom, int minzo // Convert approximately from tile units to feet double dist_ft = sqrt(avg) / 33; - double want = dist_ft / 250; + // Factor of 8 (3 zooms) beyond minimum required to distinguish features + double want = dist_ft / 8; maxzoom = ceil(log(360 / (.00000274 * want)) / log(2) - full_detail); if (maxzoom < 0) { @@ -1648,9 +1670,25 @@ int read_input(std::vector &sources, char *fname, int maxzoom, int minzo if (!quiet) { fprintf(stderr, "Choosing a maxzoom of -z%d for features about %d feet apart\n", maxzoom, (int) ceil(dist_ft)); } - } else { - fprintf(stderr, "Can't guess maxzoom (-zg) without at least two distinct feature locations\n"); - exit(EXIT_FAILURE); + } + + if (dist_count != 0) { + double want2 = exp(dist_sum / dist_count) / 8; + int mz = ceil(log(360 / (.00000274 * want2)) / log(2) - full_detail); + + if (mz < 0) { + mz = 0; + } + if (mz > MAX_ZOOM) { + mz = MAX_ZOOM; + } + + if (mz > maxzoom || count <= 0) { + if (!quiet) { + fprintf(stderr, "Choosing a maxzoom of -z%d for resolution of about %d feet within features\n", mz, (int) exp(dist_sum / dist_count)); + } + maxzoom = mz; + } } if (maxzoom < minzoom) { @@ -2062,6 +2100,7 @@ int main(int argc, char **argv) { {"Zoom levels", 0, 0, 0}, {"maximum-zoom", required_argument, 0, 'z'}, {"minimum-zoom", required_argument, 0, 'Z'}, + {"extend-zooms-if-still-dropping", no_argument, &additional[A_EXTEND_ZOOMS], 1}, {"Tile resolution", 0, 0, 0}, {"full-detail", required_argument, 0, 'd'}, diff --git a/main.hpp b/main.hpp index 8f129c9..dc85ed1 100644 --- a/main.hpp +++ b/main.hpp @@ -19,3 +19,5 @@ extern size_t max_tile_size; int mkstemp_cloexec(char *name); FILE *fopen_oflag(const char *name, const char *mode, int oflag); + +#define MAX_ZOOM 24 diff --git a/man/tippecanoe.1 b/man/tippecanoe.1 index 9160850..690a99d 100644 --- a/man/tippecanoe.1 +++ b/man/tippecanoe.1 @@ -48,6 +48,24 @@ The GeoJSON features need not be wrapped in a FeatureCollection. You can concatenate multiple GeoJSON features or files together, and it will parse out the features and ignore whatever other objects it encounters. +.SH Docker Image +.PP +A tippecanoe Docker image can be built from source and executed as a task to +automatically install dependencies and allow tippecanoe to run on any system +supported by Docker. +.PP +.RS +.nf +$ docker build \-t tippecanoe:latest . +$ docker run \-it \-\-rm \\ + \-v /tiledata:/data \\ + tippecanoe:latest \\ + tippecanoe \-\-output=/data/output.mbtiles /data/example.geojson +.fi +.RE +.PP +The commands above will build a Docker image from the source and compile the +latest version. The image supports all tippecanoe flags and options. .SH Options .PP There are a lot of options. A lot of the time you won't want to use any of them @@ -126,6 +144,10 @@ than at all newlines. \fB\fC\-zg\fR or \fB\fC\-\-maximum\-zoom=g\fR: Guess what is probably a reasonable maxzoom based on the spacing of features. .IP \(bu 2 \fB\fC\-Z\fR \fIzoom\fP or \fB\fC\-\-minimum\-zoom=\fR\fIzoom\fP: Minzoom: the lowest zoom level for which tiles are generated (default 0) +.IP \(bu 2 +\fB\fC\-ae\fR or \fB\fC\-\-extend\-zooms\-if\-still\-dropping\fR: Increase the maxzoom if features are still being dropped at that zoom level. +The detail and simplification options that ordinarily apply only to the maximum zoom level will apply both to the originally +specified maximum zoom and to any levels added beyond that. .RE .SS Tile resolution .RS @@ -479,20 +501,27 @@ Check out some examples of maps made with tippecanoe \[la]MADE_WITH.md\[ra] The name is a joking reference \[la]http://en.wikipedia.org/wiki/Tippecanoe_and_Tyler_Too\[ra] to a "tiler" for making map tiles. .SH tile\-join .PP -Tile\-join is a tool for joining new attributes from a CSV file to features that -have already been tiled with tippecanoe. It reads the tiles from an existing .mbtiles -file, matches them against the records of the CSV, and writes out a new tileset. +Tile\-join is a tool for joining new attributes from a CSV file to features +that have already been tiled with tippecanoe. It reads the tiles from an +existing .mbtiles file or a directory of tiles, matches them against the +records of the CSV, and writes out a new tileset. .PP -If you specify multiple source mbtiles files, they are all read and their combined -contents are written to the new mbtiles output. If they define the same layers or -the same tiles, the layers or tiles are merged. +If you specify multiple source mbtiles files or source directories of tiles, +all the sources are read and their combined contents are written to the new +mbtiles output. If they define the same layers or the same tiles, the layers +or tiles are merged. +.PP +You can use the \fB\fC\-e\fR flag to output a directory of tiles rather than a +\&.mbtiles file. .PP The options are: .RS .IP \(bu 2 -\fB\fC\-o\fR \fIout.mbtiles\fP: Write the new tiles to the specified .mbtiles file +\fB\fC\-o\fR \fIout.mbtiles\fP: Write the new tiles to the specified .mbtiles file. .IP \(bu 2 -\fB\fC\-f\fR: Remove \fIout.mbtiles\fP if it already exists +\fB\fC\-e\fR \fIdirectory\fP: Write the new tiles to the specified directory instead of to an mbtiles file. +.IP \(bu 2 +\fB\fC\-f\fR: Remove \fIout.mbtiles\fP if it already exists. .IP \(bu 2 \fB\fC\-c\fR \fImatch\fP\fB\fC\&.csv\fR: Use \fImatch\fP\fB\fC\&.csv\fR as the source for new attributes to join to the features. The first line of the file should be the key names; the other lines are values. The first column is the one to match against the existing features; the other columns are the new data to add. .IP \(bu 2 @@ -502,6 +531,8 @@ The options are: .IP \(bu 2 \fB\fC\-pk\fR: Don't skip tiles larger than 500K. .IP \(bu 2 +\fB\fC\-pC\fR: Don't compress the PBF vector tile data. +.IP \(bu 2 \fB\fC\-l\fR \fIlayer\fP: Include the named layer in the output. You can specify multiple \fB\fC\-l\fR options to keep multiple layers. If you don't specify, they will all be retained. .IP \(bu 2 \fB\fC\-L\fR \fIlayer\fP: Remove the named layer from the output. You can specify multiple \fB\fC\-L\fR options to remove multiple layers. diff --git a/memfile.cpp b/memfile.cpp index 71bc09d..7750836 100644 --- a/memfile.cpp +++ b/memfile.cpp @@ -53,7 +53,7 @@ int memfile_write(struct memfile *file, void *s, long long len) { return -1; } - file->len += INCREMENT; + file->len += (len + INCREMENT + 1) / INCREMENT * INCREMENT; if (ftruncate(file->fd, file->len) != 0) { return -1; diff --git a/options.hpp b/options.hpp index 6081d7d..0e8827b 100644 --- a/options.hpp +++ b/options.hpp @@ -14,6 +14,7 @@ #define A_DROP_SMALLEST_AS_NEEDED ((int) 'n') #define A_GRID_LOW_ZOOMS ((int) 'L') #define A_DETECT_WRAPAROUND ((int) 'w') +#define A_EXTEND_ZOOMS ((int) 'e') #define P_SIMPLIFY ((int) 's') #define P_SIMPLIFY_LOW ((int) 'S') diff --git a/protozero/byteswap.hpp b/protozero/byteswap.hpp index a018c1c..bca4844 100644 --- a/protozero/byteswap.hpp +++ b/protozero/byteswap.hpp @@ -16,56 +16,69 @@ documentation. * @brief Contains functions to swap bytes in values (for different endianness). */ -#include #include +#include #include namespace protozero { +namespace detail { -/** - * Swap N byte value between endianness formats. This template function must - * be specialized to actually work. - */ -template -inline void byteswap(const char* /*data*/, char* /*result*/) { - static_assert(N == 1, "Can only swap 4 or 8 byte values"); -} - -/** - * Swap 4 byte value (int32_t, uint32_t, float) between endianness formats. - */ -template <> -inline void byteswap<4>(const char* data, char* result) { +inline uint32_t byteswap_impl(uint32_t value) noexcept { #ifdef PROTOZERO_USE_BUILTIN_BSWAP - *reinterpret_cast(result) = __builtin_bswap32(*reinterpret_cast(data)); + return __builtin_bswap32(value); #else - result[3] = data[0]; - result[2] = data[1]; - result[1] = data[2]; - result[0] = data[3]; + return ((value & 0xff000000) >> 24) | + ((value & 0x00ff0000) >> 8) | + ((value & 0x0000ff00) << 8) | + ((value & 0x000000ff) << 24); #endif } -/** - * Swap 8 byte value (int64_t, uint64_t, double) between endianness formats. - */ -template <> -inline void byteswap<8>(const char* data, char* result) { +inline uint64_t byteswap_impl(uint64_t value) noexcept { #ifdef PROTOZERO_USE_BUILTIN_BSWAP - *reinterpret_cast(result) = __builtin_bswap64(*reinterpret_cast(data)); + return __builtin_bswap64(value); #else - result[7] = data[0]; - result[6] = data[1]; - result[5] = data[2]; - result[4] = data[3]; - result[3] = data[4]; - result[2] = data[5]; - result[1] = data[6]; - result[0] = data[7]; + return ((value & 0xff00000000000000ULL) >> 56) | + ((value & 0x00ff000000000000ULL) >> 40) | + ((value & 0x0000ff0000000000ULL) >> 24) | + ((value & 0x000000ff00000000ULL) >> 8) | + ((value & 0x00000000ff000000ULL) << 8) | + ((value & 0x0000000000ff0000ULL) << 24) | + ((value & 0x000000000000ff00ULL) << 40) | + ((value & 0x00000000000000ffULL) << 56); #endif } +inline void byteswap_inplace(uint32_t* ptr) noexcept { + *ptr = byteswap_impl(*ptr); +} + +inline void byteswap_inplace(uint64_t* ptr) noexcept { + *ptr = byteswap_impl(*ptr); +} + +inline void byteswap_inplace(int32_t* ptr) noexcept { + auto bptr = reinterpret_cast(ptr); + *bptr = byteswap_impl(*bptr); +} + +inline void byteswap_inplace(int64_t* ptr) noexcept { + auto bptr = reinterpret_cast(ptr); + *bptr = byteswap_impl(*bptr); +} + +inline void byteswap_inplace(float* ptr) noexcept { + auto bptr = reinterpret_cast(ptr); + *bptr = byteswap_impl(*bptr); +} + +inline void byteswap_inplace(double* ptr) noexcept { + auto bptr = reinterpret_cast(ptr); + *bptr = byteswap_impl(*bptr); +} + +} // end namespace detail } // end namespace protozero #endif // PROTOZERO_BYTESWAP_HPP diff --git a/protozero/config.hpp b/protozero/config.hpp index 8465c96..6fc7749 100644 --- a/protozero/config.hpp +++ b/protozero/config.hpp @@ -35,17 +35,6 @@ documentation. # define PROTOZERO_BYTE_ORDER PROTOZERO_LITTLE_ENDIAN #endif -// On some ARM machines and depending on compiler settings access to unaligned -// floating point values will result in a SIGBUS. Do not use the bare pointers -// in this case. -#if PROTOZERO_BYTE_ORDER == PROTOZERO_LITTLE_ENDIAN -# if !defined(__arm__) && !defined(_M_ARM) -# ifndef PROTOZERO_DO_NOT_USE_BARE_POINTER -# define PROTOZERO_USE_BARE_POINTER_FOR_PACKED_FIXED -# endif -# endif -#endif - // Check whether __builtin_bswap is available #if defined(__GNUC__) || defined(__clang__) # define PROTOZERO_USE_BUILTIN_BSWAP diff --git a/protozero/exception.hpp b/protozero/exception.hpp index 5c7ab54..ca4340e 100644 --- a/protozero/exception.hpp +++ b/protozero/exception.hpp @@ -29,7 +29,7 @@ namespace protozero { */ struct exception : std::exception { /// Returns the explanatory string. - const char *what() const noexcept override { return "pbf exception"; } + const char* what() const noexcept override { return "pbf exception"; } }; /** @@ -38,7 +38,7 @@ struct exception : std::exception { */ struct varint_too_long_exception : exception { /// Returns the explanatory string. - const char *what() const noexcept override { return "varint too long exception"; } + const char* what() const noexcept override { return "varint too long exception"; } }; /** @@ -47,7 +47,7 @@ struct varint_too_long_exception : exception { */ struct unknown_pbf_wire_type_exception : exception { /// Returns the explanatory string. - const char *what() const noexcept override { return "unknown pbf field type exception"; } + const char* what() const noexcept override { return "unknown pbf field type exception"; } }; /** @@ -60,7 +60,7 @@ struct unknown_pbf_wire_type_exception : exception { */ struct end_of_buffer_exception : exception { /// Returns the explanatory string. - const char *what() const noexcept override { return "end of buffer exception"; } + const char* what() const noexcept override { return "end of buffer exception"; } }; } // end namespace protozero diff --git a/protozero/iterators.hpp b/protozero/iterators.hpp new file mode 100644 index 0000000..a19f202 --- /dev/null +++ b/protozero/iterators.hpp @@ -0,0 +1,328 @@ +#ifndef PROTOZERO_ITERATORS_HPP +#define PROTOZERO_ITERATORS_HPP + +/***************************************************************************** + +protozero - Minimalistic protocol buffer decoder and encoder in C++. + +This file is from https://github.com/mapbox/protozero where you can find more +documentation. + +*****************************************************************************/ + +/** + * @file iterators.hpp + * + * @brief Contains the iterators for access to packed repeated fields. + */ + +#include +#include +#include + +#include +#include + +#if PROTOZERO_BYTE_ORDER != PROTOZERO_LITTLE_ENDIAN +# include +#endif + +namespace protozero { + +/** + * A range of iterators based on std::pair. Created from beginning and + * end iterators. Used as a return type from some pbf_reader methods + * that is easy to use with range-based for loops. + */ +template > +class iterator_range : +#ifdef PROTOZERO_STRICT_API + protected +#else + public +#endif + P { + +public: + + /// The type of the iterators in this range. + using iterator = T; + + /// The value type of the underlying iterator. + using value_type = typename std::iterator_traits::value_type; + + /** + * Default constructor. Create empty iterator_range. + */ + constexpr iterator_range() : + P(iterator{}, iterator{}) { + } + + /** + * Create iterator range from two iterators. + * + * @param first_iterator Iterator to beginning or range. + * @param last_iterator Iterator to end or range. + */ + constexpr iterator_range(iterator&& first_iterator, iterator&& last_iterator) : + P(std::forward(first_iterator), + std::forward(last_iterator)) { + } + + /// Return iterator to beginning of range. + constexpr iterator begin() const noexcept { + return this->first; + } + + /// Return iterator to end of range. + constexpr iterator end() const noexcept { + return this->second; + } + + /// Return iterator to beginning of range. + constexpr iterator cbegin() const noexcept { + return this->first; + } + + /// Return iterator to end of range. + constexpr iterator cend() const noexcept { + return this->second; + } + + /// Return true if this range is empty. + constexpr std::size_t empty() const noexcept { + return begin() == end(); + } + + /** + * Get element at the beginning of the range. + * + * @pre Range must not be empty. + */ + value_type front() const { + protozero_assert(!empty()); + return *(this->first); + } + + /** + * Advance beginning of range by one. + * + * @pre Range must not be empty. + */ + void drop_front() { + protozero_assert(!empty()); + ++this->first; + } + + /** + * Swap the contents of this range with the other. + * + * @param other Other range to swap data with. + */ + void swap(iterator_range& other) noexcept { + using std::swap; + swap(this->first, other.first); + swap(this->second, other.second); + } + +}; // struct iterator_range + +/** + * Swap two iterator_ranges. + * + * @param lhs First range. + * @param rhs Second range. + */ +template +inline void swap(iterator_range& lhs, iterator_range& rhs) noexcept { + lhs.swap(rhs); +} + +/** + * A forward iterator used for accessing packed repeated fields of fixed + * length (fixed32, sfixed32, float, double). + */ +template +class const_fixed_iterator { + + /// Pointer to current iterator position + const char* m_data; + + /// Pointer to end iterator position + const char* m_end; + +public: + + using iterator_category = std::forward_iterator_tag; + using value_type = T; + using difference_type = std::ptrdiff_t; + using pointer = value_type*; + using reference = value_type&; + + const_fixed_iterator() noexcept : + m_data(nullptr), + m_end(nullptr) { + } + + const_fixed_iterator(const char* data, const char* end) noexcept : + m_data(data), + m_end(end) { + } + + const_fixed_iterator(const const_fixed_iterator&) noexcept = default; + const_fixed_iterator(const_fixed_iterator&&) noexcept = default; + + const_fixed_iterator& operator=(const const_fixed_iterator&) noexcept = default; + const_fixed_iterator& operator=(const_fixed_iterator&&) noexcept = default; + + ~const_fixed_iterator() noexcept = default; + + value_type operator*() const { + value_type result; + std::memcpy(&result, m_data, sizeof(value_type)); +#if PROTOZERO_BYTE_ORDER != PROTOZERO_LITTLE_ENDIAN + detail::byteswap_inplace(&result); +#endif + return result; + } + + const_fixed_iterator& operator++() { + m_data += sizeof(value_type); + return *this; + } + + const_fixed_iterator operator++(int) { + const const_fixed_iterator tmp(*this); + ++(*this); + return tmp; + } + + bool operator==(const const_fixed_iterator& rhs) const noexcept { + return m_data == rhs.m_data && m_end == rhs.m_end; + } + + bool operator!=(const const_fixed_iterator& rhs) const noexcept { + return !(*this == rhs); + } + +}; // class const_fixed_iterator + +/** + * A forward iterator used for accessing packed repeated varint fields + * (int32, uint32, int64, uint64, bool, enum). + */ +template +class const_varint_iterator { + +protected: + + /// Pointer to current iterator position + const char* m_data; + + /// Pointer to end iterator position + const char* m_end; + +public: + + using iterator_category = std::forward_iterator_tag; + using value_type = T; + using difference_type = std::ptrdiff_t; + using pointer = value_type*; + using reference = value_type&; + + const_varint_iterator() noexcept : + m_data(nullptr), + m_end(nullptr) { + } + + const_varint_iterator(const char* data, const char* end) noexcept : + m_data(data), + m_end(end) { + } + + const_varint_iterator(const const_varint_iterator&) noexcept = default; + const_varint_iterator(const_varint_iterator&&) noexcept = default; + + const_varint_iterator& operator=(const const_varint_iterator&) noexcept = default; + const_varint_iterator& operator=(const_varint_iterator&&) noexcept = default; + + ~const_varint_iterator() noexcept = default; + + value_type operator*() const { + const char* d = m_data; // will be thrown away + return static_cast(decode_varint(&d, m_end)); + } + + const_varint_iterator& operator++() { + skip_varint(&m_data, m_end); + return *this; + } + + const_varint_iterator operator++(int) { + const const_varint_iterator tmp(*this); + ++(*this); + return tmp; + } + + bool operator==(const const_varint_iterator& rhs) const noexcept { + return m_data == rhs.m_data && m_end == rhs.m_end; + } + + bool operator!=(const const_varint_iterator& rhs) const noexcept { + return !(*this == rhs); + } + +}; // class const_varint_iterator + +/** + * A forward iterator used for accessing packed repeated svarint fields + * (sint32, sint64). + */ +template +class const_svarint_iterator : public const_varint_iterator { + +public: + + using iterator_category = std::forward_iterator_tag; + using value_type = T; + using difference_type = std::ptrdiff_t; + using pointer = value_type*; + using reference = value_type&; + + const_svarint_iterator() noexcept : + const_varint_iterator() { + } + + const_svarint_iterator(const char* data, const char* end) noexcept : + const_varint_iterator(data, end) { + } + + const_svarint_iterator(const const_svarint_iterator&) = default; + const_svarint_iterator(const_svarint_iterator&&) = default; + + const_svarint_iterator& operator=(const const_svarint_iterator&) = default; + const_svarint_iterator& operator=(const_svarint_iterator&&) = default; + + ~const_svarint_iterator() = default; + + value_type operator*() const { + const char* d = this->m_data; // will be thrown away + return static_cast(decode_zigzag64(decode_varint(&d, this->m_end))); + } + + const_svarint_iterator& operator++() { + skip_varint(&this->m_data, this->m_end); + return *this; + } + + const_svarint_iterator operator++(int) { + const const_svarint_iterator tmp(*this); + ++(*this); + return tmp; + } + +}; // class const_svarint_iterator + +} // end namespace protozero + +#endif // PROTOZERO_ITERATORS_HPP diff --git a/protozero/pbf_builder.hpp b/protozero/pbf_builder.hpp index 548f4ce..8197395 100644 --- a/protozero/pbf_builder.hpp +++ b/protozero/pbf_builder.hpp @@ -18,8 +18,8 @@ documentation. #include -#include #include +#include namespace protozero { @@ -46,7 +46,7 @@ public: using enum_type = T; - pbf_builder(std::string& data) noexcept : + explicit pbf_builder(std::string& data) noexcept : pbf_writer(data) { } @@ -57,7 +57,7 @@ public: /// @cond INTERNAL #define PROTOZERO_WRITER_WRAP_ADD_SCALAR(name, type) \ - inline void add_##name(T tag, type value) { \ + void add_##name(T tag, type value) { \ pbf_writer::add_##name(pbf_tag_type(tag), value); \ } @@ -79,38 +79,59 @@ public: #undef PROTOZERO_WRITER_WRAP_ADD_SCALAR /// @endcond - inline void add_bytes(T tag, const char* value, std::size_t size) { + void add_bytes(T tag, const char* value, std::size_t size) { pbf_writer::add_bytes(pbf_tag_type(tag), value, size); } - inline void add_bytes(T tag, const std::string& value) { + void add_bytes(T tag, const data_view& value) { pbf_writer::add_bytes(pbf_tag_type(tag), value); } - inline void add_string(T tag, const char* value, std::size_t size) { + void add_bytes(T tag, const std::string& value) { + pbf_writer::add_bytes(pbf_tag_type(tag), value); + } + + void add_bytes(T tag, const char* value) { + pbf_writer::add_bytes(pbf_tag_type(tag), value); + } + + template + void add_bytes_vectored(T tag, Ts&&... values) { + pbf_writer::add_bytes_vectored(pbf_tag_type(tag), std::forward(values)...); + } + + void add_string(T tag, const char* value, std::size_t size) { pbf_writer::add_string(pbf_tag_type(tag), value, size); } - inline void add_string(T tag, const std::string& value) { + void add_string(T tag, const data_view& value) { pbf_writer::add_string(pbf_tag_type(tag), value); } - inline void add_string(T tag, const char* value) { + void add_string(T tag, const std::string& value) { pbf_writer::add_string(pbf_tag_type(tag), value); } - inline void add_message(T tag, const char* value, std::size_t size) { + void add_string(T tag, const char* value) { + pbf_writer::add_string(pbf_tag_type(tag), value); + } + + void add_message(T tag, const char* value, std::size_t size) { pbf_writer::add_message(pbf_tag_type(tag), value, size); } - inline void add_message(T tag, const std::string& value) { + void add_message(T tag, const data_view& value) { + pbf_writer::add_message(pbf_tag_type(tag), value); + } + + void add_message(T tag, const std::string& value) { pbf_writer::add_message(pbf_tag_type(tag), value); } /// @cond INTERNAL #define PROTOZERO_WRITER_WRAP_ADD_PACKED(name) \ template \ - inline void add_packed_##name(T tag, InputIterator first, InputIterator last) { \ + void add_packed_##name(T tag, InputIterator first, InputIterator last) { \ pbf_writer::add_packed_##name(pbf_tag_type(tag), first, last); \ } @@ -132,7 +153,7 @@ public: #undef PROTOZERO_WRITER_WRAP_ADD_PACKED /// @endcond -}; +}; // class pbf_builder } // end namespace protozero diff --git a/protozero/pbf_message.hpp b/protozero/pbf_message.hpp index 45f01c1..c599cf1 100644 --- a/protozero/pbf_message.hpp +++ b/protozero/pbf_message.hpp @@ -13,7 +13,7 @@ documentation. /** * @file pbf_message.hpp * - * @brief Contains the pbf_message class. + * @brief Contains the pbf_message template class. */ #include @@ -75,19 +75,23 @@ public: pbf_reader(std::forward(args)...) { } - inline bool next() { + bool next() { return pbf_reader::next(); } - inline bool next(T tag) { - return pbf_reader::next(pbf_tag_type(tag)); + bool next(T next_tag) { + return pbf_reader::next(pbf_tag_type(next_tag)); } - inline T tag() const noexcept { + bool next(T next_tag, pbf_wire_type type) { + return pbf_reader::next(pbf_tag_type(next_tag), type); + } + + T tag() const noexcept { return T(pbf_reader::tag()); } -}; +}; // class pbf_message } // end namespace protozero diff --git a/protozero/pbf_reader.hpp b/protozero/pbf_reader.hpp index 58b3884..905ca0a 100644 --- a/protozero/pbf_reader.hpp +++ b/protozero/pbf_reader.hpp @@ -18,13 +18,12 @@ documentation. #include #include -#include -#include #include #include #include #include +#include #include #include @@ -55,16 +54,16 @@ namespace protozero { * * All methods of the pbf_reader class except get_bytes() and get_string() * provide the strong exception guarantee, ie they either succeed or do not - * change the pbf_reader object they are called on. Use the get_data() method + * change the pbf_reader object they are called on. Use the get_view() method * instead of get_bytes() or get_string(), if you need this guarantee. */ class pbf_reader { // A pointer to the next unread data. - const char *m_data = nullptr; + const char* m_data = nullptr; // A pointer to one past the end of data. - const char *m_end = nullptr; + const char* m_end = nullptr; // The wire type of the current field. pbf_wire_type m_wire_type = pbf_wire_type::unknown; @@ -72,177 +71,179 @@ class pbf_reader { // The tag of the current field. pbf_tag_type m_tag = 0; - // Copy N bytes from src to dest on little endian machines, on big endian - // swap the bytes in the process. - template - static void copy_or_byteswap(const char* src, void* dest) noexcept { -#if PROTOZERO_BYTE_ORDER == PROTOZERO_LITTLE_ENDIAN - memcpy(dest, src, N); -#else - byteswap(src, reinterpret_cast(dest)); -#endif - } - template - inline T get_fixed() { + T get_fixed() { T result; skip_bytes(sizeof(T)); - copy_or_byteswap(m_data - sizeof(T), &result); + std::memcpy(&result, m_data - sizeof(T), sizeof(T)); +#if PROTOZERO_BYTE_ORDER != PROTOZERO_LITTLE_ENDIAN + detail::byteswap_inplace(&result); +#endif return result; } -#ifdef PROTOZERO_USE_BARE_POINTER_FOR_PACKED_FIXED - template - using const_fixed_iterator = const T*; - - template - inline std::pair, const_fixed_iterator> create_fixed_iterator_pair(const char* first, const char* last) { - return std::make_pair(reinterpret_cast(first), - reinterpret_cast(last)); - } - -#else - - template - class const_fixed_iterator : public std::iterator { - - const char* m_data; - const char* m_end; - - public: - - const_fixed_iterator() noexcept : - m_data(nullptr), - m_end(nullptr) { - } - - const_fixed_iterator(const char *data, const char* end) noexcept : - m_data(data), - m_end(end) { - } - - const_fixed_iterator(const const_fixed_iterator&) noexcept = default; - const_fixed_iterator(const_fixed_iterator&&) noexcept = default; - - const_fixed_iterator& operator=(const const_fixed_iterator&) noexcept = default; - const_fixed_iterator& operator=(const_fixed_iterator&&) noexcept = default; - - ~const_fixed_iterator() noexcept = default; - - T operator*() { - T result; - copy_or_byteswap(m_data , &result); - return result; - } - - const_fixed_iterator& operator++() { - m_data += sizeof(T); - return *this; - } - - const_fixed_iterator operator++(int) { - const const_fixed_iterator tmp(*this); - ++(*this); - return tmp; - } - - bool operator==(const const_fixed_iterator& rhs) const noexcept { - return m_data == rhs.m_data && m_end == rhs.m_end; - } - - bool operator!=(const const_fixed_iterator& rhs) const noexcept { - return !(*this == rhs); - } - - }; // class const_fixed_iterator - - template - inline std::pair, const_fixed_iterator> create_fixed_iterator_pair(const char* first, const char* last) { - return std::make_pair(const_fixed_iterator(first, last), - const_fixed_iterator(last, last)); - } - -#endif - - template - inline std::pair, const_fixed_iterator> packed_fixed() { + iterator_range> packed_fixed() { protozero_assert(tag() != 0 && "call next() before accessing field value"); - auto len = get_len_and_skip(); + const auto len = get_len_and_skip(); protozero_assert(len % sizeof(T) == 0); - return create_fixed_iterator_pair(m_data-len, m_data); + return iterator_range>{const_fixed_iterator(m_data - len, m_data), + const_fixed_iterator(m_data, m_data)}; } - template inline T get_varint(); - template inline T get_svarint(); + template + T get_varint() { + return static_cast(decode_varint(&m_data, m_end)); + } - inline pbf_length_type get_length() { return get_varint(); } + template + T get_svarint() { + protozero_assert((has_wire_type(pbf_wire_type::varint) || has_wire_type(pbf_wire_type::length_delimited)) && "not a varint"); + return static_cast(decode_zigzag64(decode_varint(&m_data, m_end))); + } - inline void skip_bytes(pbf_length_type len); + pbf_length_type get_length() { + return get_varint(); + } - inline pbf_length_type get_len_and_skip(); + void skip_bytes(pbf_length_type len) { + if (m_data + len > m_end) { + throw end_of_buffer_exception(); + } + m_data += len; + + // In debug builds reset the tag to zero so that we can detect (some) + // wrong code. +#ifndef NDEBUG + m_tag = 0; +#endif + } + + pbf_length_type get_len_and_skip() { + const auto len = get_length(); + skip_bytes(len); + return len; + } + + template + iterator_range get_packed() { + protozero_assert(tag() != 0 && "call next() before accessing field value"); + const auto len = get_len_and_skip(); + return iterator_range{T{m_data - len, m_data}, + T{m_data, m_data}}; + } public: /** - * Construct a pbf_reader message from a data pointer and a length. The pointer - * will be stored inside the pbf_reader object, no data is copied. So you must - * make sure the buffer stays valid as long as the pbf_reader object is used. + * Construct a pbf_reader message from a data_view. The pointer from the + * data_view will be stored inside the pbf_reader object, no data is + * copied. So you must make sure the view stays valid as long as the + * pbf_reader object is used. * * The buffer must contain a complete protobuf message. * * @post There is no current field. */ - inline pbf_reader(const char *data, std::size_t length) noexcept; + explicit pbf_reader(const data_view& view) noexcept + : m_data(view.data()), + m_end(view.data() + view.size()), + m_wire_type(pbf_wire_type::unknown), + m_tag(0) { + } /** - * Construct a pbf_reader message from a data pointer and a length. The pointer - * will be stored inside the pbf_reader object, no data is copied. So you must - * make sure the buffer stays valid as long as the pbf_reader object is used. - * - * The buffer must contain a complete protobuf message. - * - * @post There is no current field. - */ - inline pbf_reader(std::pair data) noexcept; - - /** - * Construct a pbf_reader message from a std::string. A pointer to the string - * internals will be stored inside the pbf_reader object, no data is copied. - * So you must make sure the string is unchanged as long as the pbf_reader + * Construct a pbf_reader message from a data pointer and a length. The + * pointer will be stored inside the pbf_reader object, no data is copied. + * So you must make sure the buffer stays valid as long as the pbf_reader * object is used. * + * The buffer must contain a complete protobuf message. + * + * @post There is no current field. + */ + pbf_reader(const char* data, std::size_t size) noexcept + : m_data(data), + m_end(data + size), + m_wire_type(pbf_wire_type::unknown), + m_tag(0) { + } + + /** + * Construct a pbf_reader message from a data pointer and a length. The + * pointer will be stored inside the pbf_reader object, no data is copied. + * So you must make sure the buffer stays valid as long as the pbf_reader + * object is used. + * + * The buffer must contain a complete protobuf message. + * + * @post There is no current field. + */ + explicit pbf_reader(const std::pair& data) noexcept + : m_data(data.first), + m_end(data.first + data.second), + m_wire_type(pbf_wire_type::unknown), + m_tag(0) { + } + + /** + * Construct a pbf_reader message from a std::string. A pointer to the + * string internals will be stored inside the pbf_reader object, no data + * is copied. So you must make sure the string is unchanged as long as the + * pbf_reader object is used. + * * The string must contain a complete protobuf message. * * @post There is no current field. */ - inline pbf_reader(const std::string& data) noexcept; + explicit pbf_reader(const std::string& data) noexcept + : m_data(data.data()), + m_end(data.data() + data.size()), + m_wire_type(pbf_wire_type::unknown), + m_tag(0) { + } /** * pbf_reader can be default constructed and behaves like it has an empty * buffer. */ - inline pbf_reader() noexcept = default; + pbf_reader() noexcept = default; /// pbf_reader messages can be copied trivially. - inline pbf_reader(const pbf_reader&) noexcept = default; + pbf_reader(const pbf_reader&) noexcept = default; /// pbf_reader messages can be moved trivially. - inline pbf_reader(pbf_reader&&) noexcept = default; + pbf_reader(pbf_reader&&) noexcept = default; /// pbf_reader messages can be copied trivially. - inline pbf_reader& operator=(const pbf_reader& other) noexcept = default; + pbf_reader& operator=(const pbf_reader& other) noexcept = default; /// pbf_reader messages can be moved trivially. - inline pbf_reader& operator=(pbf_reader&& other) noexcept = default; + pbf_reader& operator=(pbf_reader&& other) noexcept = default; - inline ~pbf_reader() = default; + ~pbf_reader() = default; /** - * In a boolean context the pbf_reader class evaluates to `true` if there are - * still fields available and to `false` if the last field has been read. + * Swap the contents of this object with the other. + * + * @param other Other object to swap data with. */ - inline operator bool() const noexcept; + void swap(pbf_reader& other) noexcept { + using std::swap; + swap(m_data, other.m_data); + swap(m_end, other.m_end); + swap(m_wire_type, other.m_wire_type); + swap(m_tag, other.m_tag); + } + + /** + * In a boolean context the pbf_reader class evaluates to `true` if there + * are still fields available and to `false` if the last field has been + * read. + */ + operator bool() const noexcept { + return m_data < m_end; + } /** * Return the length in bytes of the current message. If you have @@ -272,7 +273,32 @@ public: * @pre There must be no current field. * @post If it returns `true` there is a current field now. */ - inline bool next(); + bool next() { + if (m_data == m_end) { + return false; + } + + const auto value = get_varint(); + m_tag = pbf_tag_type(value >> 3); + + // tags 0 and 19000 to 19999 are not allowed as per + // https://developers.google.com/protocol-buffers/docs/proto + protozero_assert(((m_tag > 0 && m_tag < 19000) || + (m_tag > 19999 && m_tag <= ((1 << 29) - 1))) && "tag out of range"); + + m_wire_type = pbf_wire_type(value & 0x07); + switch (m_wire_type) { + case pbf_wire_type::varint: + case pbf_wire_type::fixed64: + case pbf_wire_type::length_delimited: + case pbf_wire_type::fixed32: + break; + default: + throw unknown_pbf_wire_type_exception(); + } + + return true; + } /** * Set next field with given tag in the message as the current field. @@ -295,11 +321,62 @@ public: * } * @endcode * + * Note that this will not check the wire type. The two-argument version + * of this function will also check the wire type. + * * @returns `true` if there is a next field with this tag. * @pre There must be no current field. * @post If it returns `true` there is a current field now with the given tag. */ - inline bool next(pbf_tag_type tag); + bool next(pbf_tag_type next_tag) { + while (next()) { + if (m_tag == next_tag) { + return true; + } else { + skip(); + } + } + return false; + } + + /** + * Set next field with given tag and wire type in the message as the + * current field. Fields with other tags are skipped. This is usually + * called in a while loop for repeated fields: + * + * @code + * pbf_reader message(...); + * while (message.next(17, pbf_wire_type::varint)) { + * // handle field + * } + * @endcode + * + * or you can call it just once to get the one field with this tag: + * + * @code + * pbf_reader message(...); + * if (message.next(17, pbf_wire_type::varint)) { + * // handle field + * } + * @endcode + * + * Note that this will also check the wire type. The one-argument version + * of this function will not check the wire type. + * + * @returns `true` if there is a next field with this tag. + * @pre There must be no current field. + * @post If it returns `true` there is a current field now with the given tag. + */ + bool next(pbf_tag_type next_tag, pbf_wire_type type) { + while (next()) { + if (m_tag == next_tag && m_wire_type == type) { + return true; + } else { + skip(); + } + } + return false; + } /** * The tag of the current field. The tag is the field number from the @@ -310,7 +387,9 @@ public: * @returns tag of the current field. * @pre There must be a current field (ie. next() must have returned `true`). */ - inline pbf_tag_type tag() const noexcept; + pbf_tag_type tag() const noexcept { + return m_tag; + } /** * Get the wire type of the current field. The wire types are: @@ -327,7 +406,35 @@ public: * @returns wire type of the current field. * @pre There must be a current field (ie. next() must have returned `true`). */ - inline pbf_wire_type wire_type() const noexcept; + pbf_wire_type wire_type() const noexcept { + return m_wire_type; + } + + /** + * Get the tag and wire type of the current field in one integer suitable + * for comparison with a switch statement. + * + * Use it like this: + * + * @code + * pbf_reader message(...); + * while (message.next()) { + * switch (message.tag_and_type()) { + * case tag_and_type(17, pbf_wire_type::length_delimited): + * .... + * break; + * case tag_and_type(21, pbf_wire_type::varint): + * .... + * break; + * default: + * message.skip(); + * } + * } + * @endcode + */ + uint32_t tag_and_type() const noexcept { + return protozero::tag_and_type(tag(), wire_type()); + } /** * Check the wire type of the current field. @@ -335,7 +442,9 @@ public: * @returns `true` if the current field has the given wire type. * @pre There must be a current field (ie. next() must have returned `true`). */ - inline bool has_wire_type(pbf_wire_type type) const noexcept; + bool has_wire_type(pbf_wire_type type) const noexcept { + return wire_type() == type; + } /** * Consume the current field. @@ -343,7 +452,25 @@ public: * @pre There must be a current field (ie. next() must have returned `true`). * @post The current field was consumed and there is no current field now. */ - inline void skip(); + void skip() { + protozero_assert(tag() != 0 && "call next() before calling skip()"); + switch (wire_type()) { + case pbf_wire_type::varint: + skip_varint(&m_data, m_end); + break; + case pbf_wire_type::fixed64: + skip_bytes(8); + break; + case pbf_wire_type::length_delimited: + skip_bytes(get_length()); + break; + case pbf_wire_type::fixed32: + skip_bytes(4); + break; + default: + protozero_assert(false && "can not be here because next() should have thrown already"); + } + } ///@{ /** @@ -357,7 +484,13 @@ public: * @pre The current field must be of type "bool". * @post The current field was consumed and there is no current field now. */ - inline bool get_bool(); + bool get_bool() { + protozero_assert(tag() != 0 && "call next() before accessing field value"); + protozero_assert(has_wire_type(pbf_wire_type::varint) && "not a varint"); + protozero_assert((*m_data & 0x80) == 0 && "not a 1 byte varint"); + skip_bytes(1); + return m_data[-1] != 0; // -1 okay because we incremented m_data the line before + } /** * Consume and return value of current "enum" field. @@ -366,7 +499,7 @@ public: * @pre The current field must be of type "enum". * @post The current field was consumed and there is no current field now. */ - inline int32_t get_enum() { + int32_t get_enum() { protozero_assert(has_wire_type(pbf_wire_type::varint) && "not a varint"); return get_varint(); } @@ -378,7 +511,7 @@ public: * @pre The current field must be of type "int32". * @post The current field was consumed and there is no current field now. */ - inline int32_t get_int32() { + int32_t get_int32() { protozero_assert(has_wire_type(pbf_wire_type::varint) && "not a varint"); return get_varint(); } @@ -390,7 +523,7 @@ public: * @pre The current field must be of type "sint32". * @post The current field was consumed and there is no current field now. */ - inline int32_t get_sint32() { + int32_t get_sint32() { protozero_assert(has_wire_type(pbf_wire_type::varint) && "not a varint"); return get_svarint(); } @@ -402,7 +535,7 @@ public: * @pre The current field must be of type "uint32". * @post The current field was consumed and there is no current field now. */ - inline uint32_t get_uint32() { + uint32_t get_uint32() { protozero_assert(has_wire_type(pbf_wire_type::varint) && "not a varint"); return get_varint(); } @@ -414,7 +547,7 @@ public: * @pre The current field must be of type "int64". * @post The current field was consumed and there is no current field now. */ - inline int64_t get_int64() { + int64_t get_int64() { protozero_assert(has_wire_type(pbf_wire_type::varint) && "not a varint"); return get_varint(); } @@ -426,7 +559,7 @@ public: * @pre The current field must be of type "sint64". * @post The current field was consumed and there is no current field now. */ - inline int64_t get_sint64() { + int64_t get_sint64() { protozero_assert(has_wire_type(pbf_wire_type::varint) && "not a varint"); return get_svarint(); } @@ -438,7 +571,7 @@ public: * @pre The current field must be of type "uint64". * @post The current field was consumed and there is no current field now. */ - inline uint64_t get_uint64() { + uint64_t get_uint64() { protozero_assert(has_wire_type(pbf_wire_type::varint) && "not a varint"); return get_varint(); } @@ -450,7 +583,11 @@ public: * @pre The current field must be of type "fixed32". * @post The current field was consumed and there is no current field now. */ - inline uint32_t get_fixed32(); + uint32_t get_fixed32() { + protozero_assert(tag() != 0 && "call next() before accessing field value"); + protozero_assert(has_wire_type(pbf_wire_type::fixed32) && "not a 32-bit fixed"); + return get_fixed(); + } /** * Consume and return value of current "sfixed32" field. @@ -459,7 +596,11 @@ public: * @pre The current field must be of type "sfixed32". * @post The current field was consumed and there is no current field now. */ - inline int32_t get_sfixed32(); + int32_t get_sfixed32() { + protozero_assert(tag() != 0 && "call next() before accessing field value"); + protozero_assert(has_wire_type(pbf_wire_type::fixed32) && "not a 32-bit fixed"); + return get_fixed(); + } /** * Consume and return value of current "fixed64" field. @@ -468,7 +609,11 @@ public: * @pre The current field must be of type "fixed64". * @post The current field was consumed and there is no current field now. */ - inline uint64_t get_fixed64(); + uint64_t get_fixed64() { + protozero_assert(tag() != 0 && "call next() before accessing field value"); + protozero_assert(has_wire_type(pbf_wire_type::fixed64) && "not a 64-bit fixed"); + return get_fixed(); + } /** * Consume and return value of current "sfixed64" field. @@ -477,7 +622,11 @@ public: * @pre The current field must be of type "sfixed64". * @post The current field was consumed and there is no current field now. */ - inline int64_t get_sfixed64(); + int64_t get_sfixed64() { + protozero_assert(tag() != 0 && "call next() before accessing field value"); + protozero_assert(has_wire_type(pbf_wire_type::fixed64) && "not a 64-bit fixed"); + return get_fixed(); + } /** * Consume and return value of current "float" field. @@ -486,7 +635,11 @@ public: * @pre The current field must be of type "float". * @post The current field was consumed and there is no current field now. */ - inline float get_float(); + float get_float() { + protozero_assert(tag() != 0 && "call next() before accessing field value"); + protozero_assert(has_wire_type(pbf_wire_type::fixed32) && "not a 32-bit fixed"); + return get_fixed(); + } /** * Consume and return value of current "double" field. @@ -495,8 +648,29 @@ public: * @pre The current field must be of type "double". * @post The current field was consumed and there is no current field now. */ - inline double get_double(); + double get_double() { + protozero_assert(tag() != 0 && "call next() before accessing field value"); + protozero_assert(has_wire_type(pbf_wire_type::fixed64) && "not a 64-bit fixed"); + return get_fixed(); + } + /** + * Consume and return value of current "bytes", "string", or "message" + * field. + * + * @returns A data_view object. + * @pre There must be a current field (ie. next() must have returned `true`). + * @pre The current field must be of type "bytes", "string", or "message". + * @post The current field was consumed and there is no current field now. + */ + data_view get_view() { + protozero_assert(tag() != 0 && "call next() before accessing field value"); + protozero_assert(has_wire_type(pbf_wire_type::length_delimited) && "not of type string, bytes or message"); + const auto len = get_len_and_skip(); + return data_view{m_data - len, len}; + } + +#ifndef PROTOZERO_STRICT_API /** * Consume and return value of current "bytes" or "string" field. * @@ -505,7 +679,13 @@ public: * @pre The current field must be of type "bytes" or "string". * @post The current field was consumed and there is no current field now. */ - inline std::pair get_data(); + std::pair get_data() { + protozero_assert(tag() != 0 && "call next() before accessing field value"); + protozero_assert(has_wire_type(pbf_wire_type::length_delimited) && "not of type string, bytes or message"); + const auto len = get_len_and_skip(); + return std::make_pair(m_data - len, len); + } +#endif /** * Consume and return value of current "bytes" field. @@ -514,7 +694,9 @@ public: * @pre The current field must be of type "bytes". * @post The current field was consumed and there is no current field now. */ - inline std::string get_bytes(); + std::string get_bytes() { + return std::string(get_view()); + } /** * Consume and return value of current "string" field. @@ -523,7 +705,9 @@ public: * @pre The current field must be of type "string". * @post The current field was consumed and there is no current field now. */ - inline std::string get_string(); + std::string get_string() { + return std::string(get_view()); + } /** * Consume and return value of current "message" field. @@ -532,136 +716,35 @@ public: * @pre The current field must be of type "message". * @post The current field was consumed and there is no current field now. */ - inline pbf_reader get_message() { - return pbf_reader(get_data()); + pbf_reader get_message() { + return pbf_reader(get_view()); } ///@} -private: - - template - class const_varint_iterator : public std::iterator { - - protected: - - const char* m_data; - const char* m_end; - - public: - - const_varint_iterator() noexcept : - m_data(nullptr), - m_end(nullptr) { - } - - const_varint_iterator(const char *data, const char* end) noexcept : - m_data(data), - m_end(end) { - } - - const_varint_iterator(const const_varint_iterator&) noexcept = default; - const_varint_iterator(const_varint_iterator&&) noexcept = default; - - const_varint_iterator& operator=(const const_varint_iterator&) noexcept = default; - const_varint_iterator& operator=(const_varint_iterator&&) noexcept = default; - - ~const_varint_iterator() noexcept = default; - - T operator*() { - const char* d = m_data; // will be thrown away - return static_cast(decode_varint(&d, m_end)); - } - - const_varint_iterator& operator++() { - // Ignore the result, we call decode_varint() just for the - // side-effect of updating m_data. - decode_varint(&m_data, m_end); - return *this; - } - - const_varint_iterator operator++(int) { - const const_varint_iterator tmp(*this); - ++(*this); - return tmp; - } - - bool operator==(const const_varint_iterator& rhs) const noexcept { - return m_data == rhs.m_data && m_end == rhs.m_end; - } - - bool operator!=(const const_varint_iterator& rhs) const noexcept { - return !(*this == rhs); - } - - }; // class const_varint_iterator - - template - class const_svarint_iterator : public const_varint_iterator { - - public: - - const_svarint_iterator() noexcept : - const_varint_iterator() { - } - - const_svarint_iterator(const char *data, const char* end) noexcept : - const_varint_iterator(data, end) { - } - - const_svarint_iterator(const const_svarint_iterator&) = default; - const_svarint_iterator(const_svarint_iterator&&) = default; - - const_svarint_iterator& operator=(const const_svarint_iterator&) = default; - const_svarint_iterator& operator=(const_svarint_iterator&&) = default; - - ~const_svarint_iterator() = default; - - T operator*() { - const char* d = this->m_data; // will be thrown away - return static_cast(decode_zigzag64(decode_varint(&d, this->m_end))); - } - - const_svarint_iterator& operator++() { - // Ignore the result, we call decode_varint() just for the - // side-effect of updating m_data. - decode_varint(&this->m_data, this->m_end); - return *this; - } - - const_svarint_iterator operator++(int) { - const const_svarint_iterator tmp(*this); - ++(*this); - return tmp; - } - - }; // class const_svarint_iterator - -public: - /// Forward iterator for iterating over bool (int32 varint) values. - typedef const_varint_iterator< int32_t> const_bool_iterator; + using const_bool_iterator = const_varint_iterator< int32_t>; /// Forward iterator for iterating over enum (int32 varint) values. - typedef const_varint_iterator< int32_t> const_enum_iterator; + using const_enum_iterator = const_varint_iterator< int32_t>; /// Forward iterator for iterating over int32 (varint) values. - typedef const_varint_iterator< int32_t> const_int32_iterator; + using const_int32_iterator = const_varint_iterator< int32_t>; /// Forward iterator for iterating over sint32 (varint) values. - typedef const_svarint_iterator const_sint32_iterator; + using const_sint32_iterator = const_svarint_iterator; /// Forward iterator for iterating over uint32 (varint) values. - typedef const_varint_iterator const_uint32_iterator; + using const_uint32_iterator = const_varint_iterator; /// Forward iterator for iterating over int64 (varint) values. - typedef const_varint_iterator< int64_t> const_int64_iterator; + using const_int64_iterator = const_varint_iterator< int64_t>; /// Forward iterator for iterating over sint64 (varint) values. - typedef const_svarint_iterator const_sint64_iterator; + using const_sint64_iterator = const_svarint_iterator; /// Forward iterator for iterating over uint64 (varint) values. - typedef const_varint_iterator const_uint64_iterator; + using const_uint64_iterator = const_varint_iterator; ///@{ /** @@ -677,7 +760,9 @@ public: * @pre The current field must be of type "repeated packed bool". * @post The current field was consumed and there is no current field now. */ - inline std::pair get_packed_bool(); + iterator_range get_packed_bool() { + return get_packed(); + } /** * Consume current "repeated packed enum" field. @@ -688,7 +773,9 @@ public: * @pre The current field must be of type "repeated packed enum". * @post The current field was consumed and there is no current field now. */ - inline std::pair get_packed_enum(); + iterator_range get_packed_enum() { + return get_packed(); + } /** * Consume current "repeated packed int32" field. @@ -699,7 +786,9 @@ public: * @pre The current field must be of type "repeated packed int32". * @post The current field was consumed and there is no current field now. */ - inline std::pair get_packed_int32(); + iterator_range get_packed_int32() { + return get_packed(); + } /** * Consume current "repeated packed sint32" field. @@ -710,7 +799,9 @@ public: * @pre The current field must be of type "repeated packed sint32". * @post The current field was consumed and there is no current field now. */ - inline std::pair get_packed_sint32(); + iterator_range get_packed_sint32() { + return get_packed(); + } /** * Consume current "repeated packed uint32" field. @@ -721,7 +812,9 @@ public: * @pre The current field must be of type "repeated packed uint32". * @post The current field was consumed and there is no current field now. */ - inline std::pair get_packed_uint32(); + iterator_range get_packed_uint32() { + return get_packed(); + } /** * Consume current "repeated packed int64" field. @@ -732,7 +825,9 @@ public: * @pre The current field must be of type "repeated packed int64". * @post The current field was consumed and there is no current field now. */ - inline std::pair get_packed_int64(); + iterator_range get_packed_int64() { + return get_packed(); + } /** * Consume current "repeated packed sint64" field. @@ -743,7 +838,9 @@ public: * @pre The current field must be of type "repeated packed sint64". * @post The current field was consumed and there is no current field now. */ - inline std::pair get_packed_sint64(); + iterator_range get_packed_sint64() { + return get_packed(); + } /** * Consume current "repeated packed uint64" field. @@ -754,7 +851,9 @@ public: * @pre The current field must be of type "repeated packed uint64". * @post The current field was consumed and there is no current field now. */ - inline std::pair get_packed_uint64(); + iterator_range get_packed_uint64() { + return get_packed(); + } /** * Consume current "repeated packed fixed32" field. @@ -765,7 +864,7 @@ public: * @pre The current field must be of type "repeated packed fixed32". * @post The current field was consumed and there is no current field now. */ - inline auto get_packed_fixed32() -> decltype(packed_fixed()) { + auto get_packed_fixed32() -> decltype(packed_fixed()) { return packed_fixed(); } @@ -778,7 +877,7 @@ public: * @pre The current field must be of type "repeated packed sfixed32". * @post The current field was consumed and there is no current field now. */ - inline auto get_packed_sfixed32() -> decltype(packed_fixed()) { + auto get_packed_sfixed32() -> decltype(packed_fixed()) { return packed_fixed(); } @@ -791,7 +890,7 @@ public: * @pre The current field must be of type "repeated packed fixed64". * @post The current field was consumed and there is no current field now. */ - inline auto get_packed_fixed64() -> decltype(packed_fixed()) { + auto get_packed_fixed64() -> decltype(packed_fixed()) { return packed_fixed(); } @@ -804,7 +903,7 @@ public: * @pre The current field must be of type "repeated packed sfixed64". * @post The current field was consumed and there is no current field now. */ - inline auto get_packed_sfixed64() -> decltype(packed_fixed()) { + auto get_packed_sfixed64() -> decltype(packed_fixed()) { return packed_fixed(); } @@ -817,7 +916,7 @@ public: * @pre The current field must be of type "repeated packed float". * @post The current field was consumed and there is no current field now. */ - inline auto get_packed_float() -> decltype(packed_fixed()) { + auto get_packed_float() -> decltype(packed_fixed()) { return packed_fixed(); } @@ -830,7 +929,7 @@ public: * @pre The current field must be of type "repeated packed double". * @post The current field was consumed and there is no current field now. */ - inline auto get_packed_double() -> decltype(packed_fixed()) { + auto get_packed_double() -> decltype(packed_fixed()) { return packed_fixed(); } @@ -838,238 +937,14 @@ public: }; // class pbf_reader -pbf_reader::pbf_reader(const char *data, std::size_t length) noexcept - : m_data(data), - m_end(data + length), - m_wire_type(pbf_wire_type::unknown), - m_tag(0) { -} - -pbf_reader::pbf_reader(std::pair data) noexcept - : m_data(data.first), - m_end(data.first + data.second), - m_wire_type(pbf_wire_type::unknown), - m_tag(0) { -} - -pbf_reader::pbf_reader(const std::string& data) noexcept - : m_data(data.data()), - m_end(data.data() + data.size()), - m_wire_type(pbf_wire_type::unknown), - m_tag(0) { -} - -pbf_reader::operator bool() const noexcept { - return m_data < m_end; -} - -bool pbf_reader::next() { - if (m_data == m_end) { - return false; - } - - auto value = get_varint(); - m_tag = value >> 3; - - // tags 0 and 19000 to 19999 are not allowed as per - // https://developers.google.com/protocol-buffers/docs/proto - protozero_assert(((m_tag > 0 && m_tag < 19000) || (m_tag > 19999 && m_tag <= ((1 << 29) - 1))) && "tag out of range"); - - m_wire_type = pbf_wire_type(value & 0x07); - switch (m_wire_type) { - case pbf_wire_type::varint: - case pbf_wire_type::fixed64: - case pbf_wire_type::length_delimited: - case pbf_wire_type::fixed32: - break; - default: - throw unknown_pbf_wire_type_exception(); - } - - return true; -} - -bool pbf_reader::next(pbf_tag_type requested_tag) { - while (next()) { - if (m_tag == requested_tag) { - return true; - } else { - skip(); - } - } - return false; -} - -pbf_tag_type pbf_reader::tag() const noexcept { - return m_tag; -} - -pbf_wire_type pbf_reader::wire_type() const noexcept { - return m_wire_type; -} - -bool pbf_reader::has_wire_type(pbf_wire_type type) const noexcept { - return wire_type() == type; -} - -void pbf_reader::skip_bytes(pbf_length_type len) { - if (m_data + len > m_end) { - throw end_of_buffer_exception(); - } - m_data += len; - -// In debug builds reset the tag to zero so that we can detect (some) -// wrong code. -#ifndef NDEBUG - m_tag = 0; -#endif -} - -void pbf_reader::skip() { - protozero_assert(tag() != 0 && "call next() before calling skip()"); - switch (wire_type()) { - case pbf_wire_type::varint: - (void)get_uint32(); // called for the side-effect of skipping value - break; - case pbf_wire_type::fixed64: - skip_bytes(8); - break; - case pbf_wire_type::length_delimited: - skip_bytes(get_length()); - break; - case pbf_wire_type::fixed32: - skip_bytes(4); - break; - default: - protozero_assert(false && "can not be here because next() should have thrown already"); - } -} - -pbf_length_type pbf_reader::get_len_and_skip() { - auto len = get_length(); - skip_bytes(len); - return len; -} - -template -T pbf_reader::get_varint() { - return static_cast(decode_varint(&m_data, m_end)); -} - -template -T pbf_reader::get_svarint() { - protozero_assert((has_wire_type(pbf_wire_type::varint) || has_wire_type(pbf_wire_type::length_delimited)) && "not a varint"); - return static_cast(decode_zigzag64(decode_varint(&m_data, m_end))); -} - -uint32_t pbf_reader::get_fixed32() { - protozero_assert(tag() != 0 && "call next() before accessing field value"); - protozero_assert(has_wire_type(pbf_wire_type::fixed32) && "not a 32-bit fixed"); - return get_fixed(); -} - -int32_t pbf_reader::get_sfixed32() { - protozero_assert(tag() != 0 && "call next() before accessing field value"); - protozero_assert(has_wire_type(pbf_wire_type::fixed32) && "not a 32-bit fixed"); - return get_fixed(); -} - -uint64_t pbf_reader::get_fixed64() { - protozero_assert(tag() != 0 && "call next() before accessing field value"); - protozero_assert(has_wire_type(pbf_wire_type::fixed64) && "not a 64-bit fixed"); - return get_fixed(); -} - -int64_t pbf_reader::get_sfixed64() { - protozero_assert(tag() != 0 && "call next() before accessing field value"); - protozero_assert(has_wire_type(pbf_wire_type::fixed64) && "not a 64-bit fixed"); - return get_fixed(); -} - -float pbf_reader::get_float() { - protozero_assert(tag() != 0 && "call next() before accessing field value"); - protozero_assert(has_wire_type(pbf_wire_type::fixed32) && "not a 32-bit fixed"); - return get_fixed(); -} - -double pbf_reader::get_double() { - protozero_assert(tag() != 0 && "call next() before accessing field value"); - protozero_assert(has_wire_type(pbf_wire_type::fixed64) && "not a 64-bit fixed"); - return get_fixed(); -} - -bool pbf_reader::get_bool() { - protozero_assert(tag() != 0 && "call next() before accessing field value"); - protozero_assert(has_wire_type(pbf_wire_type::varint) && "not a varint"); - protozero_assert((*m_data & 0x80) == 0 && "not a 1 byte varint"); - skip_bytes(1); - return m_data[-1] != 0; // -1 okay because we incremented m_data the line before -} - -std::pair pbf_reader::get_data() { - protozero_assert(tag() != 0 && "call next() before accessing field value"); - protozero_assert(has_wire_type(pbf_wire_type::length_delimited) && "not of type string, bytes or message"); - auto len = get_len_and_skip(); - return std::make_pair(m_data-len, len); -} - -std::string pbf_reader::get_bytes() { - auto d = get_data(); - return std::string(d.first, d.second); -} - -std::string pbf_reader::get_string() { - return get_bytes(); -} - -std::pair pbf_reader::get_packed_bool() { - return get_packed_int32(); -} - -std::pair pbf_reader::get_packed_enum() { - return get_packed_int32(); -} - -std::pair pbf_reader::get_packed_int32() { - protozero_assert(tag() != 0 && "call next() before accessing field value"); - auto len = get_len_and_skip(); - return std::make_pair(pbf_reader::const_int32_iterator(m_data-len, m_data), - pbf_reader::const_int32_iterator(m_data, m_data)); -} - -std::pair pbf_reader::get_packed_uint32() { - protozero_assert(tag() != 0 && "call next() before accessing field value"); - auto len = get_len_and_skip(); - return std::make_pair(pbf_reader::const_uint32_iterator(m_data-len, m_data), - pbf_reader::const_uint32_iterator(m_data, m_data)); -} - -std::pair pbf_reader::get_packed_sint32() { - protozero_assert(tag() != 0 && "call next() before accessing field value"); - auto len = get_len_and_skip(); - return std::make_pair(pbf_reader::const_sint32_iterator(m_data-len, m_data), - pbf_reader::const_sint32_iterator(m_data, m_data)); -} - -std::pair pbf_reader::get_packed_int64() { - protozero_assert(tag() != 0 && "call next() before accessing field value"); - auto len = get_len_and_skip(); - return std::make_pair(pbf_reader::const_int64_iterator(m_data-len, m_data), - pbf_reader::const_int64_iterator(m_data, m_data)); -} - -std::pair pbf_reader::get_packed_uint64() { - protozero_assert(tag() != 0 && "call next() before accessing field value"); - auto len = get_len_and_skip(); - return std::make_pair(pbf_reader::const_uint64_iterator(m_data-len, m_data), - pbf_reader::const_uint64_iterator(m_data, m_data)); -} - -std::pair pbf_reader::get_packed_sint64() { - protozero_assert(tag() != 0 && "call next() before accessing field value"); - auto len = get_len_and_skip(); - return std::make_pair(pbf_reader::const_sint64_iterator(m_data-len, m_data), - pbf_reader::const_sint64_iterator(m_data, m_data)); +/** + * Swap two pbf_reader objects. + * + * @param lhs First object. + * @param rhs Second object. + */ +inline void swap(pbf_reader& lhs, pbf_reader& rhs) noexcept { + lhs.swap(rhs); } } // end namespace protozero diff --git a/protozero/pbf_writer.hpp b/protozero/pbf_writer.hpp index 422e147..af626bd 100644 --- a/protozero/pbf_writer.hpp +++ b/protozero/pbf_writer.hpp @@ -22,6 +22,7 @@ documentation. #include #include #include +#include #include #include @@ -68,38 +69,35 @@ class pbf_writer { // parent to the position where the data of the submessage is written to. std::size_t m_pos = 0; - inline void add_varint(uint64_t value) { + void add_varint(uint64_t value) { protozero_assert(m_pos == 0 && "you can't add fields to a parent pbf_writer if there is an existing pbf_writer for a submessage"); protozero_assert(m_data); write_varint(std::back_inserter(*m_data), value); } - inline void add_field(pbf_tag_type tag, pbf_wire_type type) { + void add_field(pbf_tag_type tag, pbf_wire_type type) { protozero_assert(((tag > 0 && tag < 19000) || (tag > 19999 && tag <= ((1 << 29) - 1))) && "tag out of range"); - uint32_t b = (tag << 3) | uint32_t(type); + const uint32_t b = (tag << 3) | uint32_t(type); add_varint(b); } - inline void add_tagged_varint(pbf_tag_type tag, uint64_t value) { + void add_tagged_varint(pbf_tag_type tag, uint64_t value) { add_field(tag, pbf_wire_type::varint); add_varint(value); } template - inline void add_fixed(T value) { + void add_fixed(T value) { protozero_assert(m_pos == 0 && "you can't add fields to a parent pbf_writer if there is an existing pbf_writer for a submessage"); protozero_assert(m_data); -#if PROTOZERO_BYTE_ORDER == PROTOZERO_LITTLE_ENDIAN - m_data->append(reinterpret_cast(&value), sizeof(T)); -#else - auto size = m_data->size(); - m_data->resize(size + sizeof(T)); - byteswap(reinterpret_cast(&value), const_cast(m_data->data() + size)); +#if PROTOZERO_BYTE_ORDER != PROTOZERO_LITTLE_ENDIAN + detail::byteswap_inplace(&value); #endif + m_data->append(reinterpret_cast(&value), sizeof(T)); } template - inline void add_packed_fixed(pbf_tag_type tag, It first, It last, std::input_iterator_tag) { + void add_packed_fixed(pbf_tag_type tag, It first, It last, std::input_iterator_tag) { if (first == last) { return; } @@ -112,12 +110,12 @@ class pbf_writer { } template - inline void add_packed_fixed(pbf_tag_type tag, It first, It last, std::forward_iterator_tag) { + void add_packed_fixed(pbf_tag_type tag, It first, It last, std::forward_iterator_tag) { if (first == last) { return; } - auto length = std::distance(first, last); + const auto length = std::distance(first, last); add_length_varint(tag, sizeof(T) * pbf_length_type(length)); reserve(sizeof(T) * std::size_t(length)); @@ -127,7 +125,7 @@ class pbf_writer { } template - inline void add_packed_varint(pbf_tag_type tag, It first, It last) { + void add_packed_varint(pbf_tag_type tag, It first, It last) { if (first == last) { return; } @@ -140,7 +138,7 @@ class pbf_writer { } template - inline void add_packed_svarint(pbf_tag_type tag, It first, It last) { + void add_packed_svarint(pbf_tag_type tag, It first, It last) { if (first == last) { return; } @@ -155,14 +153,18 @@ class pbf_writer { // The number of bytes to reserve for the varint holding the length of // a length-delimited field. The length has to fit into pbf_length_type, // and a varint needs 8 bit for every 7 bit. - static const int reserve_bytes = sizeof(pbf_length_type) * 8 / 7 + 1; + enum constant_reserve_bytes : int { + reserve_bytes = sizeof(pbf_length_type) * 8 / 7 + 1 + }; // If m_rollpack_pos is set to this special value, it means that when // the submessage is closed, nothing needs to be done, because the length // of the submessage has already been written correctly. - static const std::size_t size_is_known = std::numeric_limits::max(); + enum constant_size_is_known : std::size_t { + size_is_known = std::numeric_limits::max() + }; - inline void open_submessage(pbf_tag_type tag, std::size_t size) { + void open_submessage(pbf_tag_type tag, std::size_t size) { protozero_assert(m_pos == 0); protozero_assert(m_data); if (size == 0) { @@ -177,7 +179,7 @@ class pbf_writer { m_pos = m_data->size(); } - inline void rollback_submessage() { + void rollback_submessage() { protozero_assert(m_pos != 0); protozero_assert(m_rollback_pos != size_is_known); protozero_assert(m_data); @@ -185,20 +187,20 @@ class pbf_writer { m_pos = 0; } - inline void commit_submessage() { + void commit_submessage() { protozero_assert(m_pos != 0); protozero_assert(m_rollback_pos != size_is_known); protozero_assert(m_data); - auto length = pbf_length_type(m_data->size() - m_pos); + const auto length = pbf_length_type(m_data->size() - m_pos); protozero_assert(m_data->size() >= m_pos - reserve_bytes); - auto n = write_varint(m_data->begin() + long(m_pos) - reserve_bytes, length); + const auto n = write_varint(m_data->begin() + long(m_pos) - reserve_bytes, length); m_data->erase(m_data->begin() + long(m_pos) - reserve_bytes + n, m_data->begin() + long(m_pos)); m_pos = 0; } - inline void close_submessage() { + void close_submessage() { protozero_assert(m_data); if (m_pos == 0 || m_rollback_pos == size_is_known) { return; @@ -210,7 +212,7 @@ class pbf_writer { } } - inline void add_length_varint(pbf_tag_type tag, pbf_length_type length) { + void add_length_varint(pbf_tag_type tag, pbf_length_type length) { add_field(tag, pbf_wire_type::length_delimited); add_varint(length); } @@ -222,20 +224,18 @@ public: * stores a reference to that string and adds all data to it. The string * doesn't have to be empty. The pbf_writer will just append data. */ - inline explicit pbf_writer(std::string& data) noexcept : + explicit pbf_writer(std::string& data) noexcept : m_data(&data), - m_parent_writer(nullptr), - m_pos(0) { + m_parent_writer(nullptr) { } /** * Create a writer without a data store. In this form the writer can not * be used! */ - inline pbf_writer() noexcept : + pbf_writer() noexcept : m_data(nullptr), - m_parent_writer(nullptr), - m_pos(0) { + m_parent_writer(nullptr) { } /** @@ -248,10 +248,9 @@ public: * Setting this allows some optimizations but is only possible in * a few very specific cases. */ - inline pbf_writer(pbf_writer& parent_writer, pbf_tag_type tag, std::size_t size=0) : + pbf_writer(pbf_writer& parent_writer, pbf_tag_type tag, std::size_t size=0) : m_data(parent_writer.m_data), - m_parent_writer(&parent_writer), - m_pos(0) { + m_parent_writer(&parent_writer) { m_parent_writer->open_submessage(tag, size); } @@ -262,17 +261,30 @@ public: pbf_writer& operator=(const pbf_writer&) noexcept = default; /// A pbf_writer object can be moved - inline pbf_writer(pbf_writer&&) noexcept = default; + pbf_writer(pbf_writer&&) noexcept = default; /// A pbf_writer object can be moved - inline pbf_writer& operator=(pbf_writer&&) noexcept = default; + pbf_writer& operator=(pbf_writer&&) noexcept = default; - inline ~pbf_writer() { + ~pbf_writer() { if (m_parent_writer) { m_parent_writer->close_submessage(); } } + /** + * Swap the contents of this object with the other. + * + * @param other Other object to swap data with. + */ + void swap(pbf_writer& other) noexcept { + using std::swap; + swap(m_data, other.m_data); + swap(m_parent_writer, other.m_parent_writer); + swap(m_rollback_pos, other.m_rollback_pos); + swap(m_pos, other.m_pos); + } + /** * Reserve size bytes in the underlying message store in addition to * whatever the message store already holds. So unlike @@ -286,7 +298,14 @@ public: m_data->reserve(m_data->size() + size); } - inline void rollback() { + /** + * Cancel writing of this submessage. The complete submessage will be + * removed as if it was never created and no fields were added. + * + * @pre Must be a pbf_writer of a submessage, ie one opened with the + * pbf_writer constructor taking a parent message. + */ + void rollback() { protozero_assert(m_parent_writer && "you can't call rollback() on a pbf_writer without a parent"); protozero_assert(m_pos == 0 && "you can't call rollback() on a pbf_writer that has an open nested submessage"); m_parent_writer->rollback_submessage(); @@ -304,7 +323,7 @@ public: * @param tag Tag (field number) of the field * @param value Value to be written */ - inline void add_bool(pbf_tag_type tag, bool value) { + void add_bool(pbf_tag_type tag, bool value) { add_field(tag, pbf_wire_type::varint); protozero_assert(m_pos == 0 && "you can't add fields to a parent pbf_writer if there is an existing pbf_writer for a submessage"); protozero_assert(m_data); @@ -317,7 +336,7 @@ public: * @param tag Tag (field number) of the field * @param value Value to be written */ - inline void add_enum(pbf_tag_type tag, int32_t value) { + void add_enum(pbf_tag_type tag, int32_t value) { add_tagged_varint(tag, uint64_t(value)); } @@ -327,7 +346,7 @@ public: * @param tag Tag (field number) of the field * @param value Value to be written */ - inline void add_int32(pbf_tag_type tag, int32_t value) { + void add_int32(pbf_tag_type tag, int32_t value) { add_tagged_varint(tag, uint64_t(value)); } @@ -337,7 +356,7 @@ public: * @param tag Tag (field number) of the field * @param value Value to be written */ - inline void add_sint32(pbf_tag_type tag, int32_t value) { + void add_sint32(pbf_tag_type tag, int32_t value) { add_tagged_varint(tag, encode_zigzag32(value)); } @@ -347,7 +366,7 @@ public: * @param tag Tag (field number) of the field * @param value Value to be written */ - inline void add_uint32(pbf_tag_type tag, uint32_t value) { + void add_uint32(pbf_tag_type tag, uint32_t value) { add_tagged_varint(tag, value); } @@ -357,7 +376,7 @@ public: * @param tag Tag (field number) of the field * @param value Value to be written */ - inline void add_int64(pbf_tag_type tag, int64_t value) { + void add_int64(pbf_tag_type tag, int64_t value) { add_tagged_varint(tag, uint64_t(value)); } @@ -367,7 +386,7 @@ public: * @param tag Tag (field number) of the field * @param value Value to be written */ - inline void add_sint64(pbf_tag_type tag, int64_t value) { + void add_sint64(pbf_tag_type tag, int64_t value) { add_tagged_varint(tag, encode_zigzag64(value)); } @@ -377,7 +396,7 @@ public: * @param tag Tag (field number) of the field * @param value Value to be written */ - inline void add_uint64(pbf_tag_type tag, uint64_t value) { + void add_uint64(pbf_tag_type tag, uint64_t value) { add_tagged_varint(tag, value); } @@ -387,7 +406,7 @@ public: * @param tag Tag (field number) of the field * @param value Value to be written */ - inline void add_fixed32(pbf_tag_type tag, uint32_t value) { + void add_fixed32(pbf_tag_type tag, uint32_t value) { add_field(tag, pbf_wire_type::fixed32); add_fixed(value); } @@ -398,7 +417,7 @@ public: * @param tag Tag (field number) of the field * @param value Value to be written */ - inline void add_sfixed32(pbf_tag_type tag, int32_t value) { + void add_sfixed32(pbf_tag_type tag, int32_t value) { add_field(tag, pbf_wire_type::fixed32); add_fixed(value); } @@ -409,7 +428,7 @@ public: * @param tag Tag (field number) of the field * @param value Value to be written */ - inline void add_fixed64(pbf_tag_type tag, uint64_t value) { + void add_fixed64(pbf_tag_type tag, uint64_t value) { add_field(tag, pbf_wire_type::fixed64); add_fixed(value); } @@ -420,7 +439,7 @@ public: * @param tag Tag (field number) of the field * @param value Value to be written */ - inline void add_sfixed64(pbf_tag_type tag, int64_t value) { + void add_sfixed64(pbf_tag_type tag, int64_t value) { add_field(tag, pbf_wire_type::fixed64); add_fixed(value); } @@ -431,7 +450,7 @@ public: * @param tag Tag (field number) of the field * @param value Value to be written */ - inline void add_float(pbf_tag_type tag, float value) { + void add_float(pbf_tag_type tag, float value) { add_field(tag, pbf_wire_type::fixed32); add_fixed(value); } @@ -442,7 +461,7 @@ public: * @param tag Tag (field number) of the field * @param value Value to be written */ - inline void add_double(pbf_tag_type tag, double value) { + void add_double(pbf_tag_type tag, double value) { add_field(tag, pbf_wire_type::fixed64); add_fixed(value); } @@ -454,7 +473,7 @@ public: * @param value Pointer to value to be written * @param size Number of bytes to be written */ - inline void add_bytes(pbf_tag_type tag, const char* value, std::size_t size) { + void add_bytes(pbf_tag_type tag, const char* value, std::size_t size) { protozero_assert(m_pos == 0 && "you can't add fields to a parent pbf_writer if there is an existing pbf_writer for a submessage"); protozero_assert(m_data); protozero_assert(size <= std::numeric_limits::max()); @@ -468,10 +487,62 @@ public: * @param tag Tag (field number) of the field * @param value Value to be written */ - inline void add_bytes(pbf_tag_type tag, const std::string& value) { + void add_bytes(pbf_tag_type tag, const data_view& value) { add_bytes(tag, value.data(), value.size()); } + /** + * Add "bytes" field to data. + * + * @param tag Tag (field number) of the field + * @param value Value to be written + */ + void add_bytes(pbf_tag_type tag, const std::string& value) { + add_bytes(tag, value.data(), value.size()); + } + + /** + * Add "bytes" field to data. Bytes from the value are written until + * a null byte is encountered. The null byte is not added. + * + * @param tag Tag (field number) of the field + * @param value Pointer to zero-delimited value to be written + */ + void add_bytes(pbf_tag_type tag, const char* value) { + add_bytes(tag, value, std::strlen(value)); + } + + /** + * Add "bytes" field to data using vectored input. All the data in the + * 2nd and further arguments is "concatenated" with only a single copy + * into the final buffer. + * + * This will work with objects of any type supporting the data() and + * size() methods like std::string or protozero::data_view. + * + * Example: + * @code + * std::string data1 = "abc"; + * std::string data2 = "xyz"; + * writer.add_bytes_vectored(1, data1, data2); + * @endcode + * + * @tparam Ts List of types supporting data() and size() methods. + * @param tag Tag (field number) of the field + * @param values List of objects of types Ts with data to be appended. + */ + template + void add_bytes_vectored(pbf_tag_type tag, Ts&&... values) { + protozero_assert(m_pos == 0 && "you can't add fields to a parent pbf_writer if there is an existing pbf_writer for a submessage"); + protozero_assert(m_data); + size_t sum_size = 0; + (void)std::initializer_list{sum_size += values.size()...}; + protozero_assert(sum_size <= std::numeric_limits::max()); + add_length_varint(tag, pbf_length_type(sum_size)); + m_data->reserve(m_data->size() + sum_size); + (void)std::initializer_list{(m_data->append(values.data(), values.size()), 0)...}; + } + /** * Add "string" field to data. * @@ -479,7 +550,7 @@ public: * @param value Pointer to value to be written * @param size Number of bytes to be written */ - inline void add_string(pbf_tag_type tag, const char* value, std::size_t size) { + void add_string(pbf_tag_type tag, const char* value, std::size_t size) { add_bytes(tag, value, size); } @@ -489,7 +560,17 @@ public: * @param tag Tag (field number) of the field * @param value Value to be written */ - inline void add_string(pbf_tag_type tag, const std::string& value) { + void add_string(pbf_tag_type tag, const data_view& value) { + add_bytes(tag, value.data(), value.size()); + } + + /** + * Add "string" field to data. + * + * @param tag Tag (field number) of the field + * @param value Value to be written + */ + void add_string(pbf_tag_type tag, const std::string& value) { add_bytes(tag, value.data(), value.size()); } @@ -500,7 +581,7 @@ public: * @param tag Tag (field number) of the field * @param value Pointer to value to be written */ - inline void add_string(pbf_tag_type tag, const char* value) { + void add_string(pbf_tag_type tag, const char* value) { add_bytes(tag, value, std::strlen(value)); } @@ -511,7 +592,7 @@ public: * @param value Pointer to message to be written * @param size Length of the message */ - inline void add_message(pbf_tag_type tag, const char* value, std::size_t size) { + void add_message(pbf_tag_type tag, const char* value, std::size_t size) { add_bytes(tag, value, size); } @@ -521,7 +602,17 @@ public: * @param tag Tag (field number) of the field * @param value Value to be written. The value must be a complete message. */ - inline void add_message(pbf_tag_type tag, const std::string& value) { + void add_message(pbf_tag_type tag, const data_view& value) { + add_bytes(tag, value.data(), value.size()); + } + + /** + * Add "message" field to data. + * + * @param tag Tag (field number) of the field + * @param value Value to be written. The value must be a complete message. + */ + void add_message(pbf_tag_type tag, const std::string& value) { add_bytes(tag, value.data(), value.size()); } @@ -535,126 +626,126 @@ public: /** * Add "repeated packed bool" field to data. * - * @tparam InputIterator An type satisfying the InputIterator concept. + * @tparam InputIterator A type satisfying the InputIterator concept. * Dereferencing the iterator must yield a type assignable to bool. * @param tag Tag (field number) of the field * @param first Iterator pointing to the beginning of the data * @param last Iterator pointing one past the end of data */ template - inline void add_packed_bool(pbf_tag_type tag, InputIterator first, InputIterator last) { + void add_packed_bool(pbf_tag_type tag, InputIterator first, InputIterator last) { add_packed_varint(tag, first, last); } /** * Add "repeated packed enum" field to data. * - * @tparam InputIterator An type satisfying the InputIterator concept. + * @tparam InputIterator A type satisfying the InputIterator concept. * Dereferencing the iterator must yield a type assignable to int32_t. * @param tag Tag (field number) of the field * @param first Iterator pointing to the beginning of the data * @param last Iterator pointing one past the end of data */ template - inline void add_packed_enum(pbf_tag_type tag, InputIterator first, InputIterator last) { + void add_packed_enum(pbf_tag_type tag, InputIterator first, InputIterator last) { add_packed_varint(tag, first, last); } /** * Add "repeated packed int32" field to data. * - * @tparam InputIterator An type satisfying the InputIterator concept. + * @tparam InputIterator A type satisfying the InputIterator concept. * Dereferencing the iterator must yield a type assignable to int32_t. * @param tag Tag (field number) of the field * @param first Iterator pointing to the beginning of the data * @param last Iterator pointing one past the end of data */ template - inline void add_packed_int32(pbf_tag_type tag, InputIterator first, InputIterator last) { + void add_packed_int32(pbf_tag_type tag, InputIterator first, InputIterator last) { add_packed_varint(tag, first, last); } /** * Add "repeated packed sint32" field to data. * - * @tparam InputIterator An type satisfying the InputIterator concept. + * @tparam InputIterator A type satisfying the InputIterator concept. * Dereferencing the iterator must yield a type assignable to int32_t. * @param tag Tag (field number) of the field * @param first Iterator pointing to the beginning of the data * @param last Iterator pointing one past the end of data */ template - inline void add_packed_sint32(pbf_tag_type tag, InputIterator first, InputIterator last) { + void add_packed_sint32(pbf_tag_type tag, InputIterator first, InputIterator last) { add_packed_svarint(tag, first, last); } /** * Add "repeated packed uint32" field to data. * - * @tparam InputIterator An type satisfying the InputIterator concept. + * @tparam InputIterator A type satisfying the InputIterator concept. * Dereferencing the iterator must yield a type assignable to uint32_t. * @param tag Tag (field number) of the field * @param first Iterator pointing to the beginning of the data * @param last Iterator pointing one past the end of data */ template - inline void add_packed_uint32(pbf_tag_type tag, InputIterator first, InputIterator last) { + void add_packed_uint32(pbf_tag_type tag, InputIterator first, InputIterator last) { add_packed_varint(tag, first, last); } /** * Add "repeated packed int64" field to data. * - * @tparam InputIterator An type satisfying the InputIterator concept. + * @tparam InputIterator A type satisfying the InputIterator concept. * Dereferencing the iterator must yield a type assignable to int64_t. * @param tag Tag (field number) of the field * @param first Iterator pointing to the beginning of the data * @param last Iterator pointing one past the end of data */ template - inline void add_packed_int64(pbf_tag_type tag, InputIterator first, InputIterator last) { + void add_packed_int64(pbf_tag_type tag, InputIterator first, InputIterator last) { add_packed_varint(tag, first, last); } /** * Add "repeated packed sint64" field to data. * - * @tparam InputIterator An type satisfying the InputIterator concept. + * @tparam InputIterator A type satisfying the InputIterator concept. * Dereferencing the iterator must yield a type assignable to int64_t. * @param tag Tag (field number) of the field * @param first Iterator pointing to the beginning of the data * @param last Iterator pointing one past the end of data */ template - inline void add_packed_sint64(pbf_tag_type tag, InputIterator first, InputIterator last) { + void add_packed_sint64(pbf_tag_type tag, InputIterator first, InputIterator last) { add_packed_svarint(tag, first, last); } /** * Add "repeated packed uint64" field to data. * - * @tparam InputIterator An type satisfying the InputIterator concept. + * @tparam InputIterator A type satisfying the InputIterator concept. * Dereferencing the iterator must yield a type assignable to uint64_t. * @param tag Tag (field number) of the field * @param first Iterator pointing to the beginning of the data * @param last Iterator pointing one past the end of data */ template - inline void add_packed_uint64(pbf_tag_type tag, InputIterator first, InputIterator last) { + void add_packed_uint64(pbf_tag_type tag, InputIterator first, InputIterator last) { add_packed_varint(tag, first, last); } /** * Add "repeated packed fixed32" field to data. * - * @tparam InputIterator An type satisfying the InputIterator concept. + * @tparam InputIterator A type satisfying the InputIterator concept. * Dereferencing the iterator must yield a type assignable to uint32_t. * @param tag Tag (field number) of the field * @param first Iterator pointing to the beginning of the data * @param last Iterator pointing one past the end of data */ template - inline void add_packed_fixed32(pbf_tag_type tag, InputIterator first, InputIterator last) { + void add_packed_fixed32(pbf_tag_type tag, InputIterator first, InputIterator last) { add_packed_fixed(tag, first, last, typename std::iterator_traits::iterator_category()); } @@ -662,14 +753,14 @@ public: /** * Add "repeated packed sfixed32" field to data. * - * @tparam InputIterator An type satisfying the InputIterator concept. + * @tparam InputIterator A type satisfying the InputIterator concept. * Dereferencing the iterator must yield a type assignable to int32_t. * @param tag Tag (field number) of the field * @param first Iterator pointing to the beginning of the data * @param last Iterator pointing one past the end of data */ template - inline void add_packed_sfixed32(pbf_tag_type tag, InputIterator first, InputIterator last) { + void add_packed_sfixed32(pbf_tag_type tag, InputIterator first, InputIterator last) { add_packed_fixed(tag, first, last, typename std::iterator_traits::iterator_category()); } @@ -677,14 +768,14 @@ public: /** * Add "repeated packed fixed64" field to data. * - * @tparam InputIterator An type satisfying the InputIterator concept. + * @tparam InputIterator A type satisfying the InputIterator concept. * Dereferencing the iterator must yield a type assignable to uint64_t. * @param tag Tag (field number) of the field * @param first Iterator pointing to the beginning of the data * @param last Iterator pointing one past the end of data */ template - inline void add_packed_fixed64(pbf_tag_type tag, InputIterator first, InputIterator last) { + void add_packed_fixed64(pbf_tag_type tag, InputIterator first, InputIterator last) { add_packed_fixed(tag, first, last, typename std::iterator_traits::iterator_category()); } @@ -692,14 +783,14 @@ public: /** * Add "repeated packed sfixed64" field to data. * - * @tparam InputIterator An type satisfying the InputIterator concept. + * @tparam InputIterator A type satisfying the InputIterator concept. * Dereferencing the iterator must yield a type assignable to int64_t. * @param tag Tag (field number) of the field * @param first Iterator pointing to the beginning of the data * @param last Iterator pointing one past the end of data */ template - inline void add_packed_sfixed64(pbf_tag_type tag, InputIterator first, InputIterator last) { + void add_packed_sfixed64(pbf_tag_type tag, InputIterator first, InputIterator last) { add_packed_fixed(tag, first, last, typename std::iterator_traits::iterator_category()); } @@ -707,14 +798,14 @@ public: /** * Add "repeated packed float" field to data. * - * @tparam InputIterator An type satisfying the InputIterator concept. + * @tparam InputIterator A type satisfying the InputIterator concept. * Dereferencing the iterator must yield a type assignable to float. * @param tag Tag (field number) of the field * @param first Iterator pointing to the beginning of the data * @param last Iterator pointing one past the end of data */ template - inline void add_packed_float(pbf_tag_type tag, InputIterator first, InputIterator last) { + void add_packed_float(pbf_tag_type tag, InputIterator first, InputIterator last) { add_packed_fixed(tag, first, last, typename std::iterator_traits::iterator_category()); } @@ -722,14 +813,14 @@ public: /** * Add "repeated packed double" field to data. * - * @tparam InputIterator An type satisfying the InputIterator concept. + * @tparam InputIterator A type satisfying the InputIterator concept. * Dereferencing the iterator must yield a type assignable to double. * @param tag Tag (field number) of the field * @param first Iterator pointing to the beginning of the data * @param last Iterator pointing one past the end of data */ template - inline void add_packed_double(pbf_tag_type tag, InputIterator first, InputIterator last) { + void add_packed_double(pbf_tag_type tag, InputIterator first, InputIterator last) { add_packed_fixed(tag, first, last, typename std::iterator_traits::iterator_category()); } @@ -742,6 +833,16 @@ public: }; // class pbf_writer +/** + * Swap two pbf_writer objects. + * + * @param lhs First object. + * @param rhs Second object. + */ +inline void swap(pbf_writer& lhs, pbf_writer& rhs) noexcept { + lhs.swap(rhs); +} + namespace detail { class packed_field { @@ -752,6 +853,12 @@ namespace detail { public: + packed_field(const packed_field&) = delete; + packed_field& operator=(const packed_field&) = delete; + + packed_field(packed_field&&) = default; + packed_field& operator=(packed_field&&) = default; + packed_field(pbf_writer& parent_writer, pbf_tag_type tag) : m_writer(parent_writer, tag) { } @@ -771,12 +878,14 @@ namespace detail { public: - packed_field_fixed(pbf_writer& parent_writer, pbf_tag_type tag) : - packed_field(parent_writer, tag) { + template + packed_field_fixed(pbf_writer& parent_writer, P tag) : + packed_field(parent_writer, static_cast(tag)) { } - packed_field_fixed(pbf_writer& parent_writer, pbf_tag_type tag, std::size_t size) : - packed_field(parent_writer, tag, size * sizeof(T)) { + template + packed_field_fixed(pbf_writer& parent_writer, P tag, std::size_t size) : + packed_field(parent_writer, static_cast(tag), size * sizeof(T)) { } void add_element(T value) { @@ -790,8 +899,9 @@ namespace detail { public: - packed_field_varint(pbf_writer& parent_writer, pbf_tag_type tag) : - packed_field(parent_writer, tag) { + template + packed_field_varint(pbf_writer& parent_writer, P tag) : + packed_field(parent_writer, static_cast(tag)) { } void add_element(T value) { @@ -805,8 +915,9 @@ namespace detail { public: - packed_field_svarint(pbf_writer& parent_writer, pbf_tag_type tag) : - packed_field(parent_writer, tag) { + template + packed_field_svarint(pbf_writer& parent_writer, P tag) : + packed_field(parent_writer, static_cast(tag)) { } void add_element(T value) { @@ -817,19 +928,46 @@ namespace detail { } // end namespace detail +/// Class for generating packed repeated bool fields. using packed_field_bool = detail::packed_field_varint; + +/// Class for generating packed repeated enum fields. using packed_field_enum = detail::packed_field_varint; + +/// Class for generating packed repeated int32 fields. using packed_field_int32 = detail::packed_field_varint; + +/// Class for generating packed repeated sint32 fields. using packed_field_sint32 = detail::packed_field_svarint; + +/// Class for generating packed repeated uint32 fields. using packed_field_uint32 = detail::packed_field_varint; + +/// Class for generating packed repeated int64 fields. using packed_field_int64 = detail::packed_field_varint; + +/// Class for generating packed repeated sint64 fields. using packed_field_sint64 = detail::packed_field_svarint; + +/// Class for generating packed repeated uint64 fields. using packed_field_uint64 = detail::packed_field_varint; + +/// Class for generating packed repeated fixed32 fields. using packed_field_fixed32 = detail::packed_field_fixed; + +/// Class for generating packed repeated sfixed32 fields. using packed_field_sfixed32 = detail::packed_field_fixed; + +/// Class for generating packed repeated fixed64 fields. using packed_field_fixed64 = detail::packed_field_fixed; + +/// Class for generating packed repeated sfixed64 fields. using packed_field_sfixed64 = detail::packed_field_fixed; + +/// Class for generating packed repeated float fields. using packed_field_float = detail::packed_field_fixed; + +/// Class for generating packed repeated double fields. using packed_field_double = detail::packed_field_fixed; } // end namespace protozero diff --git a/protozero/types.hpp b/protozero/types.hpp index 6856b3d..3dbdaf1 100644 --- a/protozero/types.hpp +++ b/protozero/types.hpp @@ -16,33 +16,190 @@ documentation. * @brief Contains the declaration of low-level types used in the pbf format. */ +#include +#include #include +#include +#include +#include + +#include namespace protozero { - /** - * The type used for field tags (field numbers). - */ - typedef uint32_t pbf_tag_type; +/** + * The type used for field tags (field numbers). + */ +using pbf_tag_type = uint32_t; + +/** + * The type used to encode type information. + * See the table on + * https://developers.google.com/protocol-buffers/docs/encoding + */ +enum class pbf_wire_type : uint32_t { + varint = 0, // int32/64, uint32/64, sint32/64, bool, enum + fixed64 = 1, // fixed64, sfixed64, double + length_delimited = 2, // string, bytes, embedded messages, + // packed repeated fields + fixed32 = 5, // fixed32, sfixed32, float + unknown = 99 // used for default setting in this library +}; + +/** + * Get the tag and wire type of the current field in one integer suitable + * for comparison with a switch statement. + * + * See pbf_reader.tag_and_type() for an example how to use this. + */ +template +constexpr inline uint32_t tag_and_type(T tag, pbf_wire_type wire_type) noexcept { + return (static_cast(static_cast(tag)) << 3) | static_cast(wire_type); +} + +/** + * The type used for length values, such as the length of a field. + */ +using pbf_length_type = uint32_t; + +#ifdef PROTOZERO_USE_VIEW +using data_view = PROTOZERO_USE_VIEW; +#else + +/** + * Holds a pointer to some data and a length. + * + * This class is supposed to be compatible with the std::string_view + * that will be available in C++17. + */ +class data_view { + + const char* m_data; + std::size_t m_size; + +public: /** - * The type used to encode type information. - * See the table on - * https://developers.google.com/protocol-buffers/docs/encoding + * Default constructor. Construct an empty data_view. */ - enum class pbf_wire_type : uint32_t { - varint = 0, // int32/64, uint32/64, sint32/64, bool, enum - fixed64 = 1, // fixed64, sfixed64, double - length_delimited = 2, // string, bytes, embedded messages, - // packed repeated fields - fixed32 = 5, // fixed32, sfixed32, float - unknown = 99 // used for default setting in this library - }; + constexpr data_view() noexcept + : m_data(nullptr), + m_size(0) { + } /** - * The type used for length values, such as the length of a field. + * Create data_view from pointer and size. + * + * @param ptr Pointer to the data. + * @param length Length of the data. */ - typedef uint32_t pbf_length_type; + constexpr data_view(const char* ptr, std::size_t length) noexcept + : m_data(ptr), + m_size(length) { + } + + /** + * Create data_view from string. + * + * @param str String with the data. + */ + data_view(const std::string& str) noexcept + : m_data(str.data()), + m_size(str.size()) { + } + + /** + * Create data_view from zero-terminated string. + * + * @param ptr Pointer to the data. + */ + data_view(const char* ptr) noexcept + : m_data(ptr), + m_size(std::strlen(ptr)) { + } + + /** + * Swap the contents of this object with the other. + * + * @param other Other object to swap data with. + */ + void swap(data_view& other) noexcept { + using std::swap; + swap(m_data, other.m_data); + swap(m_size, other.m_size); + } + + /// Return pointer to data. + constexpr const char* data() const noexcept { + return m_data; + } + + /// Return length of data in bytes. + constexpr std::size_t size() const noexcept { + return m_size; + } + + /// Returns true if size is 0. + constexpr bool empty() const noexcept { + return m_size == 0; + } + + /** + * Convert data view to string. + * + * @pre Must not be default constructed data_view. + */ + std::string to_string() const { + protozero_assert(m_data); + return std::string{m_data, m_size}; + } + + /** + * Convert data view to string. + * + * @pre Must not be default constructed data_view. + */ + explicit operator std::string() const { + protozero_assert(m_data); + return std::string{m_data, m_size}; + } + +}; // class data_view + +/** + * Swap two data_view objects. + * + * @param lhs First object. + * @param rhs Second object. + */ +inline void swap(data_view& lhs, data_view& rhs) noexcept { + lhs.swap(rhs); +} + +/** + * Two data_view instances are equal if they have the same size and the + * same content. + * + * @param lhs First object. + * @param rhs Second object. + */ +inline bool operator==(const data_view& lhs, const data_view& rhs) noexcept { + return lhs.size() == rhs.size() && std::equal(lhs.data(), lhs.data() + lhs.size(), rhs.data()); +} + +/** + * Two data_view instances are not equal if they have different sizes or the + * content differs. + * + * @param lhs First object. + * @param rhs Second object. + */ +inline bool operator!=(const data_view& lhs, const data_view& rhs) noexcept { + return !(lhs == rhs); +} + +#endif + } // end namespace protozero diff --git a/protozero/varint.hpp b/protozero/varint.hpp index 4242df9..d115d5f 100644 --- a/protozero/varint.hpp +++ b/protozero/varint.hpp @@ -23,13 +23,54 @@ documentation. namespace protozero { /** - * The maximum length of a 64bit varint. + * The maximum length of a 64 bit varint. */ constexpr const int8_t max_varint_length = sizeof(uint64_t) * 8 / 7 + 1; -// from https://github.com/facebook/folly/blob/master/folly/Varint.h +namespace detail { + + // from https://github.com/facebook/folly/blob/master/folly/Varint.h + inline uint64_t decode_varint_impl(const char** data, const char* end) { + const int8_t* begin = reinterpret_cast(*data); + const int8_t* iend = reinterpret_cast(end); + const int8_t* p = begin; + uint64_t val = 0; + + if (iend - begin >= max_varint_length) { // fast path + do { + int64_t b; + b = *p++; val = uint64_t((b & 0x7f) ); if (b >= 0) break; + b = *p++; val |= uint64_t((b & 0x7f) << 7); if (b >= 0) break; + b = *p++; val |= uint64_t((b & 0x7f) << 14); if (b >= 0) break; + b = *p++; val |= uint64_t((b & 0x7f) << 21); if (b >= 0) break; + b = *p++; val |= uint64_t((b & 0x7f) << 28); if (b >= 0) break; + b = *p++; val |= uint64_t((b & 0x7f) << 35); if (b >= 0) break; + b = *p++; val |= uint64_t((b & 0x7f) << 42); if (b >= 0) break; + b = *p++; val |= uint64_t((b & 0x7f) << 49); if (b >= 0) break; + b = *p++; val |= uint64_t((b & 0x7f) << 56); if (b >= 0) break; + b = *p++; val |= uint64_t((b & 0x7f) << 63); if (b >= 0) break; + throw varint_too_long_exception(); + } while (false); + } else { + int shift = 0; + while (p != iend && *p < 0) { + val |= uint64_t(*p++ & 0x7f) << shift; + shift += 7; + } + if (p == iend) { + throw end_of_buffer_exception(); + } + val |= uint64_t(*p++) << shift; + } + + *data = reinterpret_cast(p); + return val; + } + +} // end namespace detail + /** - * Decode a 64bit varint. + * Decode a 64 bit varint. * * Strong exception guarantee: if there is an exception the data pointer will * not be changed. @@ -39,55 +80,69 @@ constexpr const int8_t max_varint_length = sizeof(uint64_t) * 8 / 7 + 1; * @param[in] end Pointer one past the end of the input data. * @returns The decoded integer * @throws varint_too_long_exception if the varint is longer then the maximum - * length that would fit in a 64bit int. Usually this means your data + * length that would fit in a 64 bit int. Usually this means your data * is corrupted or you are trying to read something as a varint that * isn't. * @throws end_of_buffer_exception if the *end* of the buffer was reached * before the end of the varint. */ inline uint64_t decode_varint(const char** data, const char* end) { - const int8_t* begin = reinterpret_cast(*data); - const int8_t* iend = reinterpret_cast(end); - const int8_t* p = begin; - uint64_t val = 0; - - if (iend - begin >= max_varint_length) { // fast path - do { - int64_t b; - b = *p++; val = uint64_t((b & 0x7f) ); if (b >= 0) break; - b = *p++; val |= uint64_t((b & 0x7f) << 7); if (b >= 0) break; - b = *p++; val |= uint64_t((b & 0x7f) << 14); if (b >= 0) break; - b = *p++; val |= uint64_t((b & 0x7f) << 21); if (b >= 0) break; - b = *p++; val |= uint64_t((b & 0x7f) << 28); if (b >= 0) break; - b = *p++; val |= uint64_t((b & 0x7f) << 35); if (b >= 0) break; - b = *p++; val |= uint64_t((b & 0x7f) << 42); if (b >= 0) break; - b = *p++; val |= uint64_t((b & 0x7f) << 49); if (b >= 0) break; - b = *p++; val |= uint64_t((b & 0x7f) << 56); if (b >= 0) break; - b = *p++; val |= uint64_t((b & 0x7f) << 63); if (b >= 0) break; - throw varint_too_long_exception(); - } while (false); - } else { - int shift = 0; - while (p != iend && *p < 0) { - val |= uint64_t(*p++ & 0x7f) << shift; - shift += 7; - } - if (p == iend) { - throw end_of_buffer_exception(); - } - val |= uint64_t(*p++) << shift; + // If this is a one-byte varint, decode it here. + if (end != *data && ((**data & 0x80) == 0)) { + uint64_t val = uint64_t(**data); + ++(*data); + return val; } - - *data = reinterpret_cast(p); - return val; + // If this varint is more than one byte, defer to complete implementation. + return detail::decode_varint_impl(data, end); } /** - * Varint-encode a 64bit integer. + * Skip over a varint. + * + * Strong exception guarantee: if there is an exception the data pointer will + * not be changed. + * + * @param[in,out] data Pointer to pointer to the input data. After the function + * returns this will point to the next data to be read. + * @param[in] end Pointer one past the end of the input data. + * @throws end_of_buffer_exception if the *end* of the buffer was reached + * before the end of the varint. */ -template -inline int write_varint(OutputIterator data, uint64_t value) { - int n=1; +inline void skip_varint(const char** data, const char* end) { + const int8_t* begin = reinterpret_cast(*data); + const int8_t* iend = reinterpret_cast(end); + const int8_t* p = begin; + + while (p != iend && *p < 0) { + ++p; + } + + if (p >= begin + max_varint_length) { + throw varint_too_long_exception(); + } + + if (p == iend) { + throw end_of_buffer_exception(); + } + + ++p; + + *data = reinterpret_cast(p); +} + +/** + * Varint encode a 64 bit integer. + * + * @tparam T An output iterator type. + * @param data Output iterator the varint encoded value will be written to + * byte by byte. + * @param value The integer that will be encoded. + * @throws Any exception thrown by increment or dereference operator on data. + */ +template +inline int write_varint(T data, uint64_t value) { + int n = 1; while (value >= 0x80) { *data++ = char((value & 0x7f) | 0x80); @@ -102,29 +157,29 @@ inline int write_varint(OutputIterator data, uint64_t value) { /** * ZigZag encodes a 32 bit integer. */ -inline uint32_t encode_zigzag32(int32_t value) noexcept { +inline constexpr uint32_t encode_zigzag32(int32_t value) noexcept { return (static_cast(value) << 1) ^ (static_cast(value >> 31)); } /** * ZigZag encodes a 64 bit integer. */ -inline uint64_t encode_zigzag64(int64_t value) noexcept { +inline constexpr uint64_t encode_zigzag64(int64_t value) noexcept { return (static_cast(value) << 1) ^ (static_cast(value >> 63)); } /** * Decodes a 32 bit ZigZag-encoded integer. */ -inline int32_t decode_zigzag32(uint32_t value) noexcept { - return int32_t(value >> 1) ^ -int32_t(value & 1); +inline constexpr int32_t decode_zigzag32(uint32_t value) noexcept { + return static_cast(value >> 1) ^ -static_cast(value & 1); } /** * Decodes a 64 bit ZigZag-encoded integer. */ -inline int64_t decode_zigzag64(uint64_t value) noexcept { - return int64_t(value >> 1) ^ -int64_t(value & 1); +inline constexpr int64_t decode_zigzag64(uint64_t value) noexcept { + return static_cast(value >> 1) ^ -static_cast(value & 1); } } // end namespace protozero diff --git a/protozero/version.hpp b/protozero/version.hpp index 7b60e2e..6d82823 100644 --- a/protozero/version.hpp +++ b/protozero/version.hpp @@ -10,13 +10,25 @@ documentation. *****************************************************************************/ -#define PROTOZERO_VERSION_MAJOR 1 -#define PROTOZERO_VERSION_MINOR 3 -#define PROTOZERO_VERSION_PATCH 0 +/** + * @file version.hpp + * + * @brief Contains macros defining the protozero version. + */ +/// The major version number +#define PROTOZERO_VERSION_MAJOR 1 + +/// The minor version number +#define PROTOZERO_VERSION_MINOR 5 + +/// The patch number +#define PROTOZERO_VERSION_PATCH 2 + +/// The complete version number #define PROTOZERO_VERSION_CODE (PROTOZERO_VERSION_MAJOR * 10000 + PROTOZERO_VERSION_MINOR * 100 + PROTOZERO_VERSION_PATCH) -#define PROTOZERO_VERSION_STRING "1.3.0" - +/// Version number as string +#define PROTOZERO_VERSION_STRING "1.5.2" #endif // PROTOZERO_VERSION_HPP diff --git a/rawtiles.hpp b/rawtiles.hpp deleted file mode 100644 index 1a332c9..0000000 --- a/rawtiles.hpp +++ /dev/null @@ -1 +0,0 @@ -void write_raw_tile(const char *outdir, int z, int tx, int ty, std::string const &pbf); diff --git a/tests/islands/in.json b/tests/islands/in.json index 7746b15..98448c5 100644 --- a/tests/islands/in.json +++ b/tests/islands/in.json @@ -1,2 +1,2 @@ -{ "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", "name_alt": null, "name_local": null, "type": null, "type_en": null, "code_local": null, "code_hasc": "FM.YA", "note": null, "hasc_maybe": null, "region": null, "region_cod": null, "provnum_ne": 0, "gadm_level": 0, "check_me": 0, "scalerank": 10, "datarank": 10, "abbrev": null, "postal": null, "area_sqkm": 0, "sameascity": -99, "labelrank": 20, "featurecla": "Admin-1 scale rank", "name_len": 3, "mapcolor9": 4, "mapcolor13": 13, "fips": "FM04", "fips_alt": null, "woe_id": 2345343, "woe_label": "Yap, FM, Federated States of Micronesia", "woe_name": "Yap", "latitude": 9.5810099999999991, "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_region": null, "gn_a1_code": "FM.04", "region_sub": null, "sub_code": null, "gns_level": 1, "gns_lang": null, "gns_adm1": "FM04", "gns_region": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 143.920339389000134, 7.354966539000131 ], [ 143.915456576000139, 7.344142971000124 ], [ 143.917979363000057, 7.354803778000161 ], [ 143.917491082000055, 7.359930731000176 ], [ 143.920339389000134, 7.354966539000131 ] ] ], [ [ [ 143.843028191, 7.370550848000121 ], [ 143.834971550000063, 7.367824611000145 ], [ 143.839040561000019, 7.377427476000122 ], [ 143.843841993000211, 7.377468166000114 ], [ 143.843028191, 7.370550848000121 ] ] ], [ [ [ 143.858409050000233, 7.37791575700011 ], [ 143.859385613000228, 7.37213776200015 ], [ 143.855642123000194, 7.373846747000158 ], [ 143.858409050000233, 7.37791575700011 ] ] ], [ [ [ 143.918060743000041, 7.373236395000106 ], [ 143.916107618000098, 7.366563218000138 ], [ 143.914642774000214, 7.367295640000165 ], [ 143.908132358000245, 7.370754299000083 ], [ 143.910411004, 7.379461981000148 ], [ 143.918060743000041, 7.373236395000106 ] ] ], [ [ [ 138.184255405000187, 9.544378973000136 ], [ 138.197520379, 9.539007880000085 ], [ 138.219004754000053, 9.548570054000081 ], [ 138.214121941000172, 9.537054755000142 ], [ 138.202403191000172, 9.521185614000117 ], [ 138.188731316000059, 9.506822007000139 ], [ 138.177989129000053, 9.500189520000077 ], [ 138.164073113000228, 9.504828192000105 ], [ 138.15658613399998, 9.525783596000139 ], [ 138.143809441000059, 9.521307684000178 ], [ 138.134450717000192, 9.511867580000157 ], [ 138.079844597000061, 9.425441799000069 ], [ 138.068125847000061, 9.412054755000071 ], [ 138.063812696000156, 9.436102606000105 ], [ 138.073008660000056, 9.470404364000075 ], [ 138.089121941000116, 9.501166083000143 ], [ 138.105967644000117, 9.514471747000158 ], [ 138.112966342000192, 9.521470445000148 ], [ 138.121267123000081, 9.55487702000012 ], [ 138.126231316, 9.565985419000143 ], [ 138.141123894000174, 9.5743675800001 ], [ 138.147227410000056, 9.567368882000125 ], [ 138.150075717000192, 9.541164455000086 ], [ 138.151866082000055, 9.550848700000145 ], [ 138.154958530000073, 9.560736395000148 ], [ 138.159190300000063, 9.569525458000129 ], [ 138.16439863399998, 9.575873114000146 ], [ 138.173187696000156, 9.582342841000155 ], [ 138.184906446000042, 9.588812567000062 ], [ 138.193614129000053, 9.588853257000054 ], [ 138.19239342500012, 9.575873114000146 ], [ 138.181651238000114, 9.558742580000114 ], [ 138.184255405000187, 9.544378973000136 ] ] ], [ [ [ 140.524668816000059, 9.764471747000115 ], [ 140.515391472, 9.761175848000079 ], [ 140.51417076900006, 9.76780833500014 ], [ 140.521739129000053, 9.774725653000132 ], [ 140.531260613000228, 9.775580145000134 ], [ 140.532888217000078, 9.771918036000088 ], [ 140.524668816000059, 9.764471747000115 ] ] ] ] } }, +{ "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", "name_alt": null, "name_local": null, "type": null, "type_en": null, "code_local": null, "code_hasc": "FM.YA", "note": null, "hasc_maybe": null, "region": null, "region_cod": null, "provnum_ne": 0, "gadm_level": 0, "check_me": 0, "scalerank": 10, "datarank": 10, "abbrev": null, "postal": null, "area_sqkm": 0, "sameascity": -99, "labelrank": 20, "featurecla": "Admin-1 scale rank", "name_len": 3, "mapcolor9": 4, "mapcolor13": 13, "fips": "FM04", "fips_alt": null, "woe_id": 2345343, "woe_label": "Yap, FM, Federated States of Micronesia", "woe_name": "Yap", "latitude": 9.5810099999999991, "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_region": null, "gn_a1_code": "FM.04", "region_sub": null, "sub_code": null, "gns_level": 1, "gns_lang": null, "gns_adm1": "FM04", "gns_region": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 143.920339389000134, 7.354966539000131 ], [ 143.915456576000139, 7.344142971000124 ], [ 143.917979363000057, 7.354803778000161 ], [ 143.917491082000055, 7.359930731000176 ], [ 143.920339389000134, 7.354966539000131 ] ] ], [ [ [ 143.843028191, 7.370550848000121 ], [ 143.834971550000063, 7.367824611000145 ], [ 143.839040561000019, 7.377427476000122 ], [ 143.843841993000211, 7.377468166000114 ], [ 143.843028191, 7.370550848000121 ] ] ], [ [ [ 143.858409050000233, 7.37791575700011 ], [ 143.859385613000228, 7.37213776200015 ], [ 143.855642123000194, 7.373846747000158 ], [ 143.858409050000233, 7.37791575700011 ] ] ], [ [ [ 143.918060743000041, 7.373236395000106 ], [ 143.916107618000098, 7.366563218000138 ], [ 143.914642774000214, 7.367295640000165 ], [ 143.908132358000245, 7.370754299000083 ], [ 143.910411004, 7.379461981000148 ], [ 143.918060743000041, 7.373236395000106 ] ] ], [ [ [ 138.184255405000187, 9.544378973000136 ], [ 138.197520379, 9.539007880000085 ], [ 138.219004754000053, 9.548570054000081 ], [ 138.214121941000172, 9.537054755000142 ], [ 138.202403191000172, 9.521185614000117 ], [ 138.188731316000059, 9.506822007000139 ], [ 138.177989129000053, 9.500189520000077 ], [ 138.164073113000228, 9.504828192000105 ], [ 138.15658613399998, 9.525783596000139 ], [ 138.143809441000059, 9.521307684000178 ], [ 138.134450717000192, 9.511867580000157 ], [ 138.079844597000061, 9.425441799000069 ], [ 138.068125847000061, 9.412054755000071 ], [ 138.063812696000156, 9.436102606000105 ], [ 138.073008660000056, 9.470404364000075 ], [ 138.089121941000116, 9.501166083000143 ], [ 138.105967644000117, 9.514471747000158 ], [ 138.112966342000192, 9.521470445000148 ], [ 138.121267123000081, 9.55487702000012 ], [ 138.126231316, 9.565985419000143 ], [ 138.141123894000174, 9.5743675800001 ], [ 138.147227410000056, 9.567368882000125 ], [ 138.150075717000192, 9.541164455000086 ], [ 138.151866082000055, 9.550848700000145 ], [ 138.154958530000073, 9.560736395000148 ], [ 138.159190300000063, 9.569525458000129 ], [ 138.16439863399998, 9.575873114000146 ], [ 138.173187696000156, 9.582342841000155 ], [ 138.184906446000042, 9.588812567000062 ], [ 138.193614129000053, 9.588853257000054 ], [ 138.19239342500012, 9.575873114000146 ], [ 138.181651238000114, 9.558742580000114 ], [ 138.184255405000187, 9.544378973000136 ] ] ], [ [ [ 140.524668816000059, 9.764471747000115 ], [ 140.515391472, 9.761175848000079 ], [ 140.51417076900006, 9.76780833500014 ], [ 140.521739129000053, 9.774725653000132 ], [ 140.531260613000228, 9.775580145000134 ], [ 140.532888217000078, 9.771918036000088 ], [ 140.524668816000059, 9.764471747000115 ] ] ] ] } }, { "type": "Feature", "properties": { "adm1_code": "KIR+99?", "OBJECTID_1": 3643, "diss_me": 10097, "adm1_cod_1": "KIR+99?", "iso_3166_2": "KI-", "wikipedia": null, "iso_a2": "KI", "adm0_sr": 5, "name": null, "name_alt": null, "name_local": null, "type": null, "type_en": null, "code_local": null, "code_hasc": "-99", "note": "KIR-99 (Kiribati minor island)", "hasc_maybe": null, "region": null, "region_cod": null, "provnum_ne": 0, "gadm_level": 0, "check_me": 0, "scalerank": 11, "datarank": 11, "abbrev": null, "postal": null, "area_sqkm": 0, "sameascity": -99, "labelrank": 20, "featurecla": "Admin-1 minor island", "name_len": 0, "mapcolor9": 6, "mapcolor13": 12, "fips": null, "fips_alt": null, "woe_id": -99, "woe_label": null, "woe_name": null, "latitude": -4.6896699999999996, "longitude": -174.511, "sov_a3": "KIR", "adm0_a3": "KIR", "adm0_label": 7, "admin": "Kiribati", "geonunit": "Kiribati", "gu_a3": "KIR", "gn_id": 0, "gn_name": null, "gns_id": 0, "gns_name": null, "gn_level": 0, "gn_region": null, "gn_a1_code": "KI.", "region_sub": null, "sub_code": null, "gns_level": 0, "gns_lang": null, "gns_adm1": null, "gns_region": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -150.231231248999904, -10.007582289999874 ], [ -150.236154751999948, -10.00986093499985 ], [ -150.24282792899993, -10.005547783999845 ], [ -150.241769985999952, -10.000339450999846 ], [ -150.235585089999887, -10.001234632999839 ], [ -150.231231248999904, -10.007582289999874 ] ] ], [ [ [ -150.206410285999937, -9.955336195999863 ], [ -150.208159959999932, -9.960056247999873 ], [ -150.207793748999904, -9.931817315999893 ], [ -150.20754960799988, -9.932142835999827 ], [ -150.206410285999937, -9.955336195999863 ] ] ], [ [ [ -150.211537238999881, -9.919203382999825 ], [ -150.208526170999846, -9.927260023999864 ], [ -150.212676561999899, -9.923109632999825 ], [ -150.216013149999924, -9.914971612999892 ], [ -150.211537238999881, -9.919203382999825 ] ] ], [ [ [ -155.906809048999946, -5.611993096999825 ], [ -155.899322068999879, -5.616794528999904 ], [ -155.879628058999913, -5.609470309999892 ], [ -155.865061001999891, -5.615166924999883 ], [ -155.859811977999925, -5.625095309999878 ], [ -155.867990688999896, -5.630303643999881 ], [ -155.906442837999919, -5.635349216999899 ], [ -155.92247473899991, -5.629978122999859 ], [ -155.933461066999882, -5.609144789999874 ], [ -155.923898891999897, -5.608086846999825 ], [ -155.914987758999928, -5.609063408999887 ], [ -155.906809048999946, -5.611993096999825 ] ] ], [ [ [ -174.500681118999864, -4.694268487999977 ], [ -174.501535610999866, -4.697360934999963 ], [ -174.512155727999925, -4.691989841999913 ], [ -174.521555141999926, -4.68385182099982 ], [ -174.516713019999855, -4.68425872199991 ], [ -174.506418423999946, -4.689141533999887 ], [ -174.500681118999864, -4.694268487999977 ] ] ], [ [ [ -174.527902798999889, -4.683526299999883 ], [ -174.527658657999922, -4.68385182099982 ], [ -174.533884243999893, -4.680759373 ], [ -174.541737433999856, -4.672784112999864 ], [ -174.540109829999949, -4.672051690999837 ], [ -174.535878058999913, -4.677504164999959 ], [ -174.529286261999943, -4.682712497999873 ], [ -174.527902798999889, -4.683526299999883 ] ] ], [ [ [ -174.501535610999866, -4.687676690999822 ], [ -174.500843878999945, -4.69109465899983 ], [ -174.513986782999893, -4.676202080999872 ], [ -174.528269008999871, -4.667413018999909 ], [ -174.538075324999909, -4.665215752999828 ], [ -174.543405727999868, -4.660251559999864 ], [ -174.538400844999927, -4.656508070999834 ], [ -174.52440344999988, -4.664483330999971 ], [ -174.501535610999866, -4.687676690999822 ] ] ], [ [ [ -171.236520962999862, -4.468519790000016 ], [ -171.249582485999952, -4.469821872999844 ], [ -171.259632941999939, -4.465264580999886 ], [ -171.264027472999913, -4.456312757999868 ], [ -171.259958462999947, -4.444105726999894 ], [ -171.259917772999955, -4.444105726999894 ], [ -171.244984503999916, -4.441338799999841 ], [ -171.233876105999883, -4.448988539999945 ], [ -171.230051235999866, -4.46054452899989 ], [ -171.236520962999862, -4.468519790000016 ] ] ], [ [ [ -171.087269660999908, -3.143161716999856 ], [ -171.092477993999921, -3.145440362999921 ], [ -171.093576626999948, -3.131442966999956 ], [ -171.090036587999862, -3.120863539999917 ], [ -171.08543860599994, -3.111260674999841 ], [ -171.083119269999884, -3.129978122999901 ], [ -171.087269660999908, -3.143161716999856 ] ] ], [ [ [ 174.237478061000132, -0.526543877999899 ], [ 174.245290561000076, -0.529310804999952 ], [ 174.245778842000249, -0.531182549999841 ], [ 174.240896030000187, -0.528252862999821 ], [ 174.236745639000077, -0.529636325999974 ], [ 174.234141472000175, -0.529717705999957 ], [ 174.237478061000132, -0.526543877999899 ] ] ], [ [ [ 173.550466342000192, 0.173895575000103 ], [ 173.542002800000176, 0.171576239000046 ], [ 173.537282748000251, 0.17194245000006 ], [ 173.529714388999906, 0.174343166000099 ], [ 173.525075716999964, 0.178778387000165 ], [ 173.534434441000172, 0.183579820000148 ], [ 173.550466342000192, 0.18105703300013 ], [ 173.550466342000192, 0.173895575000103 ] ] ], [ [ [ 173.413910352000215, 0.2071800800001 ], [ 173.391449415000096, 0.19277578300013 ], [ 173.383148633999923, 0.199571031000147 ], [ 173.377614780000187, 0.214748440000136 ], [ 173.37973066500021, 0.223334052000055 ], [ 173.389170769000231, 0.225775458000086 ], [ 173.398529493000268, 0.223089911000116 ], [ 173.414073113000228, 0.211859442000105 ], [ 173.413910352000215, 0.2071800800001 ] ] ], [ [ [ 173.372894727000158, 0.242092190000108 ], [ 173.368337436000132, 0.2378604190001 ], [ 173.348155144, 0.254380601000079 ], [ 173.347585483000074, 0.263291734000106 ], [ 173.354828321000156, 0.268296617000061 ], [ 173.364349806000263, 0.261623440000093 ], [ 173.371104363, 0.253566799000069 ], [ 173.372894727000158, 0.242092190000108 ] ] ], [ [ [ 173.937103712000095, 0.310003973000093 ], [ 173.933604363000228, 0.308986721000124 ], [ 173.927582227000215, 0.312079169000114 ], [ 173.927093946000213, 0.315537828000032 ], [ 173.930511915000153, 0.318467515000052 ], [ 173.936045769000231, 0.320746161000116 ], [ 173.938975457000168, 0.327622789000117 ], [ 173.940521681000206, 0.340399481000162 ], [ 173.938649935999962, 0.344427802000126 ], [ 173.937754754000167, 0.349391994000172 ], [ 173.937998894000287, 0.357245184000163 ], [ 173.925466342000192, 0.399562893000081 ], [ 173.928314649000214, 0.405829169000114 ], [ 173.93246504000021, 0.401271877000084 ], [ 173.937510613000285, 0.388861395000148 ], [ 173.946950717000135, 0.360337632000054 ], [ 173.947032097000118, 0.322577216000084 ], [ 173.942800326000196, 0.315375067000147 ], [ 173.937103712000095, 0.310003973000093 ] ] ] ] } }, diff --git a/tests/join-population/merged-folder.mbtiles.json b/tests/join-population/merged-folder.mbtiles.json new file mode 100644 index 0000000..2d3fa7e --- /dev/null +++ b/tests/join-population/merged-folder.mbtiles.json @@ -0,0 +1,3398 @@ +{ "type": "FeatureCollection", "properties": { +"bounds": "-122.343750,37.695438,-122.104097,37.926868", +"center": "-122.299805,37.892187,12", +"description": "tests/join-population/tabblock_06001420-folder", +"format": "pbf", +"json": "{\"vector_layers\": [ { \"id\": \"macarthur\", \"description\": \"\", \"minzoom\": 5, \"maxzoom\": 11, \"fields\": {\"FULLNAME\": \"String\", \"LINEARID\": \"String\", \"MTFCC\": \"String\", \"RTTYP\": \"String\"} }, { \"id\": \"tabblock_06001420\", \"description\": \"\", \"minzoom\": 3, \"maxzoom\": 12, \"fields\": {\"ALAND10\": \"Number\", \"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\"} } ] }", +"maxzoom": "12", +"minzoom": "0", +"name": "tests/join-population/macarthur-folder + tests/join-population/macarthur2-folder + tests/join-population/tabblock_06001420-folder", +"type": "overlay", +"version": "2" +}, "features": [ +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "GEOID10": "060014204001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.8842028", "INTPTLON10": "-122.3237534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.321777, 37.892196 ], [ -122.321777, 37.874853 ], [ -122.343750, 37.874853 ], [ -122.343750, 37.892196 ], [ -122.321777, 37.892196 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 6 }, "features": [ +{ "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.8928912", "INTPTLON10": "-122.3202957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.316284, 37.900865 ], [ -122.310791, 37.896530 ], [ -122.310791, 37.892196 ], [ -122.338257, 37.892196 ], [ -122.316284, 37.900865 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1001", "GEOID10": "060014203001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16165, "AWATER10": 0, "INTPTLAT10": "+37.8948170", "INTPTLON10": "-122.3018829" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.900865 ], [ -122.299805, 37.892196 ], [ -122.310791, 37.892196 ], [ -122.310791, 37.900865 ], [ -122.299805, 37.900865 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "GEOID10": "060014204001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.8842028", "INTPTLON10": "-122.3237534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.321777, 37.892196 ], [ -122.316284, 37.883525 ], [ -122.332764, 37.879189 ], [ -122.338257, 37.892196 ], [ -122.321777, 37.892196 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "GEOID10": "060014203001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.8906969", "INTPTLON10": "-122.3023492" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.896530 ], [ -122.299805, 37.887860 ], [ -122.310791, 37.887860 ], [ -122.310791, 37.896530 ], [ -122.299805, 37.896530 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1014", "GEOID10": "060014201001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5007, "AWATER10": 0, "INTPTLAT10": "+37.8938437", "INTPTLON10": "-122.2929060" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.900865 ], [ -122.288818, 37.892196 ], [ -122.299805, 37.892196 ], [ -122.299805, 37.900865 ], [ -122.288818, 37.900865 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3004", "GEOID10": "060014201003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18095, "AWATER10": 0, "INTPTLAT10": "+37.8918241", "INTPTLON10": "-122.2897641" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.900865 ], [ -122.288818, 37.892196 ], [ -122.299805, 37.892196 ], [ -122.299805, 37.900865 ], [ -122.288818, 37.900865 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "macarthur", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104486392881", "FULLNAME": "W Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.255859, 37.822802 ], [ -122.272339, 37.829311 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1102638069562", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.242126, 37.807614 ], [ -122.239380, 37.807614 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104486090991", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.297058, 37.833649 ], [ -122.291565, 37.827141 ], [ -122.258606, 37.822802 ], [ -122.250366, 37.811954 ], [ -122.231140, 37.801104 ], [ -122.211914, 37.796763 ], [ -122.195435, 37.785911 ], [ -122.178955, 37.783740 ], [ -122.159729, 37.772886 ], [ -122.148743, 37.759859 ], [ -122.151489, 37.751172 ], [ -122.140503, 37.738141 ], [ -122.132263, 37.714245 ], [ -122.104797, 37.696861 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104474748623", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.104797, 37.696861 ], [ -122.132263, 37.716418 ], [ -122.143250, 37.738141 ], [ -122.154236, 37.751172 ], [ -122.148743, 37.762030 ], [ -122.159729, 37.775057 ], [ -122.250366, 37.811954 ], [ -122.261353, 37.822802 ], [ -122.294312, 37.831480 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103690483032", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.184448, 37.777228 ], [ -122.181702, 37.775057 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103690483026", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.178955, 37.772886 ], [ -122.176208, 37.772886 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1102954918511", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.173462, 37.770715 ], [ -122.162476, 37.757687 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103690383700", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.162476, 37.753344 ], [ -122.159729, 37.751172 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103690474249", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.159729, 37.751172 ], [ -122.159729, 37.749001 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103690474250", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.143250, 37.740313 ], [ -122.159729, 37.749001 ] ] } } +] } +, +{ "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.8928912", "INTPTLON10": "-122.3202957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.313538, 37.898698 ], [ -122.310791, 37.894363 ], [ -122.310791, 37.890028 ], [ -122.316284, 37.894363 ], [ -122.335510, 37.890028 ], [ -122.335510, 37.894363 ], [ -122.313538, 37.898698 ] ] ] } } +, +{ "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.8905867", "INTPTLON10": "-122.3181131" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.316284, 37.894363 ], [ -122.310791, 37.890028 ], [ -122.330017, 37.892196 ], [ -122.316284, 37.894363 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "GEOID10": "060014203002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.8949184", "INTPTLON10": "-122.3048891" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.898698 ], [ -122.305298, 37.892196 ], [ -122.308044, 37.890028 ], [ -122.310791, 37.898698 ], [ -122.302551, 37.898698 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "GEOID10": "060014203001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.8926328", "INTPTLON10": "-122.3029106" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.894363 ], [ -122.302551, 37.890028 ], [ -122.308044, 37.890028 ], [ -122.308044, 37.894363 ], [ -122.302551, 37.894363 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "GEOID10": "060014204001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.8842028", "INTPTLON10": "-122.3237534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.319031, 37.890028 ], [ -122.313538, 37.883525 ], [ -122.330017, 37.879189 ], [ -122.335510, 37.890028 ], [ -122.319031, 37.890028 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1011", "GEOID10": "060014204001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 542505, "AWATER10": 0, "INTPTLAT10": "+37.8862375", "INTPTLON10": "-122.3141377" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.313538, 37.890028 ], [ -122.310791, 37.887860 ], [ -122.310791, 37.883525 ], [ -122.313538, 37.883525 ], [ -122.319031, 37.890028 ], [ -122.313538, 37.890028 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1006", "GEOID10": "060014204001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59431, "AWATER10": 0, "INTPTLAT10": "+37.8849426", "INTPTLON10": "-122.3081455" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.885693 ], [ -122.308044, 37.881357 ], [ -122.313538, 37.881357 ], [ -122.313538, 37.885693 ], [ -122.308044, 37.885693 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "GEOID10": "060014203001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.8910287", "INTPTLON10": "-122.3006658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.894363 ], [ -122.299805, 37.890028 ], [ -122.305298, 37.890028 ], [ -122.305298, 37.894363 ], [ -122.299805, 37.894363 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "GEOID10": "060014204001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.8837071", "INTPTLON10": "-122.3049494" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.887860 ], [ -122.302551, 37.883525 ], [ -122.308044, 37.883525 ], [ -122.308044, 37.887860 ], [ -122.302551, 37.887860 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1013", "GEOID10": "060014202001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14541, "AWATER10": 0, "INTPTLAT10": "+37.8968185", "INTPTLON10": "-122.2960835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.900865 ], [ -122.294312, 37.896530 ], [ -122.299805, 37.896530 ], [ -122.299805, 37.900865 ], [ -122.294312, 37.900865 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2006", "GEOID10": "060014202002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14158, "AWATER10": 0, "INTPTLAT10": "+37.8932322", "INTPTLON10": "-122.2967302" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.896530 ], [ -122.294312, 37.892196 ], [ -122.299805, 37.892196 ], [ -122.299805, 37.896530 ], [ -122.294312, 37.896530 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1012", "GEOID10": "060014201001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 48606, "AWATER10": 0, "INTPTLAT10": "+37.8957510", "INTPTLON10": "-122.2913507" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.898698 ], [ -122.288818, 37.894363 ], [ -122.294312, 37.894363 ], [ -122.294312, 37.898698 ], [ -122.288818, 37.898698 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1014", "GEOID10": "060014203001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21543, "AWATER10": 0, "INTPTLAT10": "+37.8889340", "INTPTLON10": "-122.2990835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.890028 ], [ -122.297058, 37.885693 ], [ -122.302551, 37.885693 ], [ -122.302551, 37.890028 ], [ -122.297058, 37.890028 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1000", "GEOID10": "060014204001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11282, "AWATER10": 0, "INTPTLAT10": "+37.8873799", "INTPTLON10": "-122.2988707" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.890028 ], [ -122.297058, 37.885693 ], [ -122.302551, 37.885693 ], [ -122.302551, 37.890028 ], [ -122.297058, 37.890028 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2012", "GEOID10": "060014205002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12579, "AWATER10": 0, "INTPTLAT10": "+37.8835272", "INTPTLON10": "-122.2945038" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.887860 ], [ -122.294312, 37.883525 ], [ -122.299805, 37.883525 ], [ -122.299805, 37.887860 ], [ -122.294312, 37.887860 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3001", "GEOID10": "060014206003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22452, "AWATER10": 0, "INTPTLAT10": "+37.8895187", "INTPTLON10": "-122.2899595" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.894363 ], [ -122.288818, 37.890028 ], [ -122.294312, 37.890028 ], [ -122.294312, 37.894363 ], [ -122.288818, 37.894363 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2016", "GEOID10": "060014205002016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5264, "AWATER10": 0, "INTPTLAT10": "+37.8839955", "INTPTLON10": "-122.2913154" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.887860 ], [ -122.288818, 37.883525 ], [ -122.294312, 37.883525 ], [ -122.294312, 37.887860 ], [ -122.288818, 37.887860 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1014", "GEOID10": "060014206001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22296, "AWATER10": 0, "INTPTLAT10": "+37.8880279", "INTPTLON10": "-122.2834249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.890028 ], [ -122.283325, 37.885693 ], [ -122.288818, 37.885693 ], [ -122.288818, 37.890028 ], [ -122.283325, 37.890028 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1029", "GEOID10": "060014206001029", "NAME10": "Block 1029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16994, "AWATER10": 0, "INTPTLAT10": "+37.8853080", "INTPTLON10": "-122.2836511" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.887860 ], [ -122.283325, 37.883525 ], [ -122.288818, 37.883525 ], [ -122.288818, 37.887860 ], [ -122.283325, 37.887860 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 6, "x": 10, "y": 24 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "macarthur", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104486392881", "FULLNAME": "W Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.255859, 37.821718 ], [ -122.259979, 37.824972 ], [ -122.272339, 37.828226 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1102638069562", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.242126, 37.807614 ], [ -122.238007, 37.806529 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1102156241736", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.194061, 37.786996 ], [ -122.195435, 37.786996 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104486090991", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.295685, 37.833649 ], [ -122.294312, 37.828226 ], [ -122.290192, 37.827141 ], [ -122.281952, 37.828226 ], [ -122.259979, 37.822802 ], [ -122.253113, 37.818463 ], [ -122.248993, 37.810869 ], [ -122.236633, 37.805444 ], [ -122.229767, 37.801104 ], [ -122.211914, 37.796763 ], [ -122.194061, 37.785911 ], [ -122.178955, 37.783740 ], [ -122.158356, 37.773971 ], [ -122.148743, 37.759859 ], [ -122.151489, 37.750087 ], [ -122.141876, 37.737055 ], [ -122.137756, 37.725108 ], [ -122.132263, 37.714245 ], [ -122.110291, 37.701207 ], [ -122.104797, 37.695774 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104474748623", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.104797, 37.695774 ], [ -122.110291, 37.701207 ], [ -122.132263, 37.715331 ], [ -122.137756, 37.726194 ], [ -122.140503, 37.738141 ], [ -122.151489, 37.751172 ], [ -122.148743, 37.760944 ], [ -122.158356, 37.773971 ], [ -122.178955, 37.783740 ], [ -122.194061, 37.785911 ], [ -122.210541, 37.796763 ], [ -122.229767, 37.801104 ], [ -122.236633, 37.806529 ], [ -122.250366, 37.810869 ], [ -122.254486, 37.819548 ], [ -122.259979, 37.822802 ], [ -122.281952, 37.828226 ], [ -122.290192, 37.827141 ], [ -122.294312, 37.829311 ], [ -122.294312, 37.831480 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103690483032", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.184448, 37.777228 ], [ -122.180328, 37.773971 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103690483026", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.177582, 37.771800 ], [ -122.176208, 37.771800 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1102954918511", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.172089, 37.769629 ], [ -122.163849, 37.762030 ], [ -122.162476, 37.756601 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103690383700", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.161102, 37.753344 ], [ -122.159729, 37.750087 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103690474249", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.159729, 37.750087 ], [ -122.158356, 37.749001 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103690474250", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.143250, 37.739227 ], [ -122.152863, 37.742485 ], [ -122.158356, 37.747915 ] ] } } +] } +, +{ "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.8928912", "INTPTLON10": "-122.3202957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.313538, 37.897614 ], [ -122.309418, 37.893279 ], [ -122.310791, 37.888944 ], [ -122.314911, 37.893279 ], [ -122.320404, 37.890028 ], [ -122.325897, 37.893279 ], [ -122.328644, 37.890028 ], [ -122.335510, 37.890028 ], [ -122.334137, 37.893279 ], [ -122.313538, 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.8905867", "INTPTLON10": "-122.3181131" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.309418, 37.891112 ], [ -122.309418, 37.888944 ], [ -122.310791, 37.888944 ], [ -122.309418, 37.891112 ] ] ], [ [ [ -122.320404, 37.890028 ], [ -122.314911, 37.893279 ], [ -122.310791, 37.888944 ], [ -122.320404, 37.890028 ] ] ], [ [ [ -122.323151, 37.890028 ], [ -122.328644, 37.890028 ], [ -122.328644, 37.892196 ], [ -122.324524, 37.893279 ], [ -122.323151, 37.890028 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3004", "GEOID10": "060014203003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59347, "AWATER10": 0, "INTPTLAT10": "+37.8955812", "INTPTLON10": "-122.3094534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.312164, 37.898698 ], [ -122.309418, 37.897614 ], [ -122.309418, 37.891112 ], [ -122.312164, 37.898698 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3006", "GEOID10": "060014203003006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19563, "AWATER10": 24, "INTPTLAT10": "+37.8904059", "INTPTLON10": "-122.3086941" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.310791, 37.898698 ], [ -122.310791, 37.896530 ], [ -122.313538, 37.896530 ], [ -122.313538, 37.898698 ], [ -122.310791, 37.898698 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3000", "GEOID10": "060014203003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27350, "AWATER10": 0, "INTPTLAT10": "+37.8907736", "INTPTLON10": "-122.3067658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305298, 37.894363 ], [ -122.305298, 37.892196 ], [ -122.308044, 37.892196 ], [ -122.308044, 37.894363 ], [ -122.305298, 37.894363 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "GEOID10": "060014203002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.8949184", "INTPTLON10": "-122.3048891" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.898698 ], [ -122.305298, 37.891112 ], [ -122.306671, 37.890028 ], [ -122.309418, 37.898698 ], [ -122.302551, 37.898698 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "GEOID10": "060014203001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.8926328", "INTPTLON10": "-122.3029106" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.893279 ], [ -122.302551, 37.891112 ], [ -122.305298, 37.891112 ], [ -122.305298, 37.893279 ], [ -122.302551, 37.893279 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1007", "GEOID10": "060014203001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16120, "AWATER10": 0, "INTPTLAT10": "+37.8927903", "INTPTLON10": "-122.3021281" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.895447 ], [ -122.301178, 37.893279 ], [ -122.303925, 37.893279 ], [ -122.303925, 37.895447 ], [ -122.301178, 37.895447 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "GEOID10": "060014204001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.8842028", "INTPTLON10": "-122.3237534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.328644, 37.890028 ], [ -122.325897, 37.888944 ], [ -122.317657, 37.890028 ], [ -122.317657, 37.885693 ], [ -122.313538, 37.882441 ], [ -122.328644, 37.878105 ], [ -122.335510, 37.890028 ], [ -122.328644, 37.890028 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1011", "GEOID10": "060014204001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 542505, "AWATER10": 0, "INTPTLAT10": "+37.8862375", "INTPTLON10": "-122.3141377" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.317657, 37.890028 ], [ -122.312164, 37.890028 ], [ -122.309418, 37.887860 ], [ -122.309418, 37.882441 ], [ -122.313538, 37.882441 ], [ -122.317657, 37.885693 ], [ -122.317657, 37.890028 ] ] ], [ [ [ -122.317657, 37.890028 ], [ -122.325897, 37.888944 ], [ -122.328644, 37.890028 ], [ -122.317657, 37.890028 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3011", "GEOID10": "060014203003011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10961, "AWATER10": 0, "INTPTLAT10": "+37.8885068", "INTPTLON10": "-122.3086806" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.888944 ], [ -122.308044, 37.886777 ], [ -122.310791, 37.886777 ], [ -122.310791, 37.888944 ], [ -122.308044, 37.888944 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3014", "GEOID10": "060014203003014", "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10339, "AWATER10": 0, "INTPTLAT10": "+37.8884185", "INTPTLON10": "-122.3064403" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.890028 ], [ -122.306671, 37.887860 ], [ -122.309418, 37.887860 ], [ -122.309418, 37.890028 ], [ -122.306671, 37.890028 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1006", "GEOID10": "060014204001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59431, "AWATER10": 0, "INTPTLAT10": "+37.8849426", "INTPTLON10": "-122.3081455" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.887860 ], [ -122.308044, 37.882441 ], [ -122.309418, 37.883525 ], [ -122.309418, 37.887860 ], [ -122.308044, 37.887860 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1005", "GEOID10": "060014204001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 52400, "AWATER10": 0, "INTPTLAT10": "+37.8837458", "INTPTLON10": "-122.3069617" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305298, 37.884609 ], [ -122.305298, 37.882441 ], [ -122.308044, 37.882441 ], [ -122.308044, 37.884609 ], [ -122.305298, 37.884609 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3019", "GEOID10": "060014203003019", "NAME10": "Block 3019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17581, "AWATER10": 0, "INTPTLAT10": "+37.8895455", "INTPTLON10": "-122.3046051" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.891112 ], [ -122.302551, 37.888944 ], [ -122.305298, 37.888944 ], [ -122.305298, 37.891112 ], [ -122.302551, 37.891112 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "GEOID10": "060014203001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.8906969", "INTPTLON10": "-122.3023492" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.891112 ], [ -122.301178, 37.888944 ], [ -122.303925, 37.888944 ], [ -122.303925, 37.891112 ], [ -122.301178, 37.891112 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "GEOID10": "060014203001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.8910287", "INTPTLON10": "-122.3006658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.893279 ], [ -122.299805, 37.891112 ], [ -122.302551, 37.891112 ], [ -122.302551, 37.893279 ], [ -122.299805, 37.893279 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1015", "GEOID10": "060014203001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19773, "AWATER10": 0, "INTPTLAT10": "+37.8888596", "INTPTLON10": "-122.2999642" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.891112 ], [ -122.299805, 37.888944 ], [ -122.302551, 37.888944 ], [ -122.302551, 37.891112 ], [ -122.299805, 37.891112 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1001", "GEOID10": "060014204001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 98716, "AWATER10": 0, "INTPTLAT10": "+37.8865962", "INTPTLON10": "-122.3039801" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.887860 ], [ -122.301178, 37.886777 ], [ -122.305298, 37.886777 ], [ -122.308044, 37.885693 ], [ -122.308044, 37.887860 ], [ -122.301178, 37.887860 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "GEOID10": "060014204001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.8837071", "INTPTLON10": "-122.3049494" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305298, 37.885693 ], [ -122.302551, 37.883525 ], [ -122.306671, 37.882441 ], [ -122.308044, 37.885693 ], [ -122.305298, 37.885693 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "GEOID10": "060014204001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.8846770", "INTPTLON10": "-122.3015769" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.886777 ], [ -122.301178, 37.883525 ], [ -122.303925, 37.883525 ], [ -122.303925, 37.886777 ], [ -122.301178, 37.886777 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "GEOID10": "060014204001020", "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.8829654", "INTPTLON10": "-122.3013966" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.884609 ], [ -122.299805, 37.882441 ], [ -122.302551, 37.882441 ], [ -122.302551, 37.884609 ], [ -122.299805, 37.884609 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "GEOID10": "060014202001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.8966536", "INTPTLON10": "-122.2969317" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.897614 ], [ -122.295685, 37.895447 ], [ -122.298431, 37.895447 ], [ -122.298431, 37.897614 ], [ -122.295685, 37.897614 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "GEOID10": "060014202001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.8963113", "INTPTLON10": "-122.2986013" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.898698 ], [ -122.298431, 37.896530 ], [ -122.301178, 37.896530 ], [ -122.301178, 37.898698 ], [ -122.298431, 37.898698 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "GEOID10": "060014202002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.8948540", "INTPTLON10": "-122.2972427" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.897614 ], [ -122.297058, 37.895447 ], [ -122.299805, 37.895447 ], [ -122.299805, 37.897614 ], [ -122.297058, 37.897614 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "GEOID10": "060014202003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.8930639", "INTPTLON10": "-122.2975700" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.895447 ], [ -122.297058, 37.893279 ], [ -122.299805, 37.893279 ], [ -122.299805, 37.895447 ], [ -122.297058, 37.895447 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2003", "GEOID10": "060014202002003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14449, "AWATER10": 0, "INTPTLAT10": "+37.8951947", "INTPTLON10": "-122.2955660" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.897614 ], [ -122.294312, 37.895447 ], [ -122.297058, 37.895447 ], [ -122.297058, 37.897614 ], [ -122.294312, 37.897614 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1005", "GEOID10": "060014201001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8083, "AWATER10": 0, "INTPTLAT10": "+37.8982104", "INTPTLON10": "-122.2941387" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.900865 ], [ -122.294312, 37.898698 ], [ -122.297058, 37.898698 ], [ -122.297058, 37.900865 ], [ -122.294312, 37.900865 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1008", "GEOID10": "060014201001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25122, "AWATER10": 0, "INTPTLAT10": "+37.8962273", "INTPTLON10": "-122.2942136" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.899781 ], [ -122.292938, 37.897614 ], [ -122.295685, 37.897614 ], [ -122.295685, 37.899781 ], [ -122.292938, 37.899781 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1016", "GEOID10": "060014201001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8255, "AWATER10": 0, "INTPTLAT10": "+37.8939086", "INTPTLON10": "-122.2941575" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.896530 ], [ -122.292938, 37.894363 ], [ -122.295685, 37.894363 ], [ -122.295685, 37.896530 ], [ -122.292938, 37.896530 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1012", "GEOID10": "060014201001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 48606, "AWATER10": 0, "INTPTLAT10": "+37.8957510", "INTPTLON10": "-122.2913507" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.897614 ], [ -122.288818, 37.895447 ], [ -122.291565, 37.895447 ], [ -122.291565, 37.897614 ], [ -122.288818, 37.897614 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3001", "GEOID10": "060014201003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16246, "AWATER10": 0, "INTPTLAT10": "+37.8938831", "INTPTLON10": "-122.2913917" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.896530 ], [ -122.291565, 37.894363 ], [ -122.294312, 37.894363 ], [ -122.294312, 37.896530 ], [ -122.291565, 37.896530 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2002", "GEOID10": "060014201002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16183, "AWATER10": 0, "INTPTLAT10": "+37.8975006", "INTPTLON10": "-122.2876349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.898698 ], [ -122.287445, 37.896530 ], [ -122.290192, 37.896530 ], [ -122.290192, 37.898698 ], [ -122.287445, 37.898698 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2014", "GEOID10": "060014201002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16117, "AWATER10": 0, "INTPTLAT10": "+37.8938093", "INTPTLON10": "-122.2887874" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.896530 ], [ -122.287445, 37.894363 ], [ -122.290192, 37.894363 ], [ -122.290192, 37.896530 ], [ -122.287445, 37.896530 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3009", "GEOID10": "060014202003009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15100, "AWATER10": 0, "INTPTLAT10": "+37.8912058", "INTPTLON10": "-122.2978563" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.893279 ], [ -122.297058, 37.891112 ], [ -122.299805, 37.891112 ], [ -122.299805, 37.893279 ], [ -122.297058, 37.893279 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1007", "GEOID10": "060014205001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 32096, "AWATER10": 0, "INTPTLAT10": "+37.8884580", "INTPTLON10": "-122.2979153" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.887860 ], [ -122.297058, 37.885693 ], [ -122.299805, 37.885693 ], [ -122.299805, 37.887860 ], [ -122.297058, 37.887860 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2008", "GEOID10": "060014202002008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18377, "AWATER10": 0, "INTPTLAT10": "+37.8915386", "INTPTLON10": "-122.2952863" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.892196 ], [ -122.294312, 37.890028 ], [ -122.297058, 37.890028 ], [ -122.297058, 37.892196 ], [ -122.294312, 37.892196 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1014", "GEOID10": "060014205001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28068, "AWATER10": 0, "INTPTLAT10": "+37.8887349", "INTPTLON10": "-122.2961756" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.892196 ], [ -122.297058, 37.890028 ], [ -122.299805, 37.890028 ], [ -122.299805, 37.892196 ], [ -122.297058, 37.892196 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1011", "GEOID10": "060014205001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26518, "AWATER10": 0, "INTPTLAT10": "+37.8889300", "INTPTLON10": "-122.2944569" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.888944 ], [ -122.294312, 37.886777 ], [ -122.297058, 37.886777 ], [ -122.297058, 37.888944 ], [ -122.294312, 37.888944 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1015", "GEOID10": "060014204001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 79019, "AWATER10": 0, "INTPTLAT10": "+37.8858279", "INTPTLON10": "-122.2991231" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.887860 ], [ -122.298431, 37.886777 ], [ -122.298431, 37.884609 ], [ -122.301178, 37.884609 ], [ -122.301178, 37.887860 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1019", "GEOID10": "060014204001019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11921, "AWATER10": 0, "INTPTLAT10": "+37.8839314", "INTPTLON10": "-122.2976037" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.885693 ], [ -122.297058, 37.883525 ], [ -122.299805, 37.883525 ], [ -122.299805, 37.885693 ], [ -122.297058, 37.885693 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2005", "GEOID10": "060014205002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24545, "AWATER10": 0, "INTPTLAT10": "+37.8854914", "INTPTLON10": "-122.2960301" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.888944 ], [ -122.295685, 37.886777 ], [ -122.298431, 37.886777 ], [ -122.298431, 37.888944 ], [ -122.295685, 37.888944 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2012", "GEOID10": "060014205002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12579, "AWATER10": 0, "INTPTLAT10": "+37.8835272", "INTPTLON10": "-122.2945038" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.885693 ], [ -122.294312, 37.883525 ], [ -122.297058, 37.883525 ], [ -122.297058, 37.885693 ], [ -122.294312, 37.885693 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1006", "GEOID10": "060014205001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25175, "AWATER10": 0, "INTPTLAT10": "+37.8890495", "INTPTLON10": "-122.2935928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.888944 ], [ -122.291565, 37.886777 ], [ -122.294312, 37.886777 ], [ -122.294312, 37.888944 ], [ -122.291565, 37.888944 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3007", "GEOID10": "060014206003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27950, "AWATER10": 0, "INTPTLAT10": "+37.8892518", "INTPTLON10": "-122.2920141" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.892196 ], [ -122.291565, 37.890028 ], [ -122.294312, 37.890028 ], [ -122.294312, 37.892196 ], [ -122.291565, 37.892196 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3004", "GEOID10": "060014201003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18095, "AWATER10": 0, "INTPTLAT10": "+37.8918241", "INTPTLON10": "-122.2897641" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.894363 ], [ -122.288818, 37.892196 ], [ -122.291565, 37.892196 ], [ -122.291565, 37.894363 ], [ -122.288818, 37.894363 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3001", "GEOID10": "060014206003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22452, "AWATER10": 0, "INTPTLAT10": "+37.8895187", "INTPTLON10": "-122.2899595" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.892196 ], [ -122.288818, 37.890028 ], [ -122.291565, 37.890028 ], [ -122.291565, 37.892196 ], [ -122.288818, 37.892196 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2002", "GEOID10": "060014205002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24228, "AWATER10": 0, "INTPTLAT10": "+37.8859970", "INTPTLON10": "-122.2935084" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.888944 ], [ -122.294312, 37.886777 ], [ -122.297058, 37.886777 ], [ -122.297058, 37.888944 ], [ -122.294312, 37.888944 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2014", "GEOID10": "060014205002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13013, "AWATER10": 0, "INTPTLAT10": "+37.8838362", "INTPTLON10": "-122.2927774" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.885693 ], [ -122.291565, 37.883525 ], [ -122.294312, 37.883525 ], [ -122.294312, 37.885693 ], [ -122.291565, 37.885693 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "GEOID10": "060014206003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.8875706", "INTPTLON10": "-122.2892190" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.890028 ], [ -122.287445, 37.887860 ], [ -122.290192, 37.887860 ], [ -122.290192, 37.890028 ], [ -122.287445, 37.890028 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2016", "GEOID10": "060014205002016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5264, "AWATER10": 0, "INTPTLAT10": "+37.8839955", "INTPTLON10": "-122.2913154" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.886777 ], [ -122.290192, 37.884609 ], [ -122.292938, 37.884609 ], [ -122.292938, 37.886777 ], [ -122.290192, 37.886777 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3007", "GEOID10": "060014201003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18637, "AWATER10": 0, "INTPTLAT10": "+37.8917853", "INTPTLON10": "-122.2879697" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.892196 ], [ -122.287445, 37.890028 ], [ -122.290192, 37.890028 ], [ -122.290192, 37.892196 ], [ -122.287445, 37.892196 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2002", "GEOID10": "060014206002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16691, "AWATER10": 0, "INTPTLAT10": "+37.8900585", "INTPTLON10": "-122.2869139" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.892196 ], [ -122.287445, 37.890028 ], [ -122.290192, 37.890028 ], [ -122.290192, 37.892196 ], [ -122.287445, 37.892196 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1004", "GEOID10": "060014206001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19676, "AWATER10": 0, "INTPTLAT10": "+37.8901108", "INTPTLON10": "-122.2837239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.892196 ], [ -122.283325, 37.890028 ], [ -122.286072, 37.890028 ], [ -122.286072, 37.892196 ], [ -122.283325, 37.892196 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1014", "GEOID10": "060014206001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22296, "AWATER10": 0, "INTPTLAT10": "+37.8880279", "INTPTLON10": "-122.2834249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.888944 ], [ -122.283325, 37.886777 ], [ -122.286072, 37.886777 ], [ -122.286072, 37.888944 ], [ -122.283325, 37.888944 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2011", "GEOID10": "060014206002011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 36927, "AWATER10": 0, "INTPTLAT10": "+37.8868308", "INTPTLON10": "-122.2883823" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.887860 ], [ -122.288818, 37.885693 ], [ -122.291565, 37.885693 ], [ -122.291565, 37.887860 ], [ -122.288818, 37.887860 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2014", "GEOID10": "060014206002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 41589, "AWATER10": 0, "INTPTLAT10": "+37.8849195", "INTPTLON10": "-122.2873798" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.885693 ], [ -122.287445, 37.883525 ], [ -122.290192, 37.883525 ], [ -122.290192, 37.885693 ], [ -122.287445, 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.8843388", "INTPTLON10": "-122.2859716" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284698, 37.886777 ], [ -122.284698, 37.884609 ], [ -122.287445, 37.884609 ], [ -122.287445, 37.886777 ], [ -122.284698, 37.886777 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1029", "GEOID10": "060014206001029", "NAME10": "Block 1029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16994, "AWATER10": 0, "INTPTLAT10": "+37.8853080", "INTPTLON10": "-122.2836511" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.886777 ], [ -122.283325, 37.884609 ], [ -122.286072, 37.884609 ], [ -122.286072, 37.886777 ], [ -122.283325, 37.886777 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1026", "GEOID10": "060014206001026", "NAME10": "Block 1026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 63728, "AWATER10": 0, "INTPTLAT10": "+37.8834939", "INTPTLON10": "-122.2837979" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.885693 ], [ -122.283325, 37.883525 ], [ -122.286072, 37.883525 ], [ -122.283325, 37.885693 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1016", "GEOID10": "060014206001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9100, "AWATER10": 0, "INTPTLAT10": "+37.8864607", "INTPTLON10": "-122.2830673" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281952, 37.887860 ], [ -122.281952, 37.885693 ], [ -122.284698, 37.885693 ], [ -122.284698, 37.887860 ], [ -122.281952, 37.887860 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 7, "x": 20, "y": 49 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "macarthur", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104486392881", "FULLNAME": "W Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.255173, 37.821718 ], [ -122.259293, 37.824430 ], [ -122.272339, 37.827684 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1102156510290", "FULLNAME": "W Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.254486, 37.820090 ], [ -122.254486, 37.820633 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1102654602215", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.253113, 37.817378 ], [ -122.252426, 37.816836 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1102638069562", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.242126, 37.807614 ], [ -122.237320, 37.805986 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1102156241736", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.194061, 37.786453 ], [ -122.194748, 37.786996 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104486090991", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.294998, 37.833107 ], [ -122.293625, 37.828768 ], [ -122.290878, 37.827141 ], [ -122.288132, 37.826599 ], [ -122.281265, 37.827684 ], [ -122.260666, 37.822260 ], [ -122.253113, 37.818463 ], [ -122.250366, 37.811954 ], [ -122.248993, 37.810326 ], [ -122.235947, 37.805444 ], [ -122.229080, 37.801104 ], [ -122.211227, 37.796763 ], [ -122.205734, 37.794593 ], [ -122.200928, 37.789167 ], [ -122.194061, 37.785911 ], [ -122.189255, 37.784283 ], [ -122.178268, 37.783740 ], [ -122.158356, 37.773429 ], [ -122.155609, 37.770715 ], [ -122.148056, 37.759859 ], [ -122.148743, 37.757144 ], [ -122.152176, 37.753887 ], [ -122.151489, 37.750087 ], [ -122.149429, 37.745743 ], [ -122.141190, 37.737055 ], [ -122.138443, 37.725651 ], [ -122.131577, 37.714788 ], [ -122.121277, 37.707183 ], [ -122.109604, 37.700664 ], [ -122.104797, 37.695774 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104474748623", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.104111, 37.695774 ], [ -122.109604, 37.700664 ], [ -122.121964, 37.707726 ], [ -122.131577, 37.714788 ], [ -122.137756, 37.725651 ], [ -122.140503, 37.737598 ], [ -122.149429, 37.745743 ], [ -122.151489, 37.750629 ], [ -122.151489, 37.753887 ], [ -122.148743, 37.757144 ], [ -122.148056, 37.760401 ], [ -122.155609, 37.771258 ], [ -122.158356, 37.773429 ], [ -122.177582, 37.783740 ], [ -122.193375, 37.785911 ], [ -122.199554, 37.789167 ], [ -122.205734, 37.794050 ], [ -122.210541, 37.796763 ], [ -122.229080, 37.801104 ], [ -122.235947, 37.805986 ], [ -122.249680, 37.810869 ], [ -122.253799, 37.819006 ], [ -122.259979, 37.822802 ], [ -122.281265, 37.827684 ], [ -122.289505, 37.827141 ], [ -122.293625, 37.828768 ], [ -122.293625, 37.830938 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1102155930810", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.185822, 37.775600 ], [ -122.185822, 37.776142 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103690483032", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.184448, 37.776685 ], [ -122.180328, 37.773971 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103690483026", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.176895, 37.771258 ], [ -122.175522, 37.771258 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1102954918511", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.172089, 37.769629 ], [ -122.167969, 37.766372 ], [ -122.163849, 37.762030 ], [ -122.161789, 37.756601 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103690383700", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.160416, 37.753344 ], [ -122.159042, 37.750087 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103690474249", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.159042, 37.750087 ], [ -122.158356, 37.748458 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103690474250", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.143250, 37.738684 ], [ -122.152176, 37.742485 ], [ -122.157669, 37.747915 ] ] } } +] } +, +{ "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.8928912", "INTPTLON10": "-122.3202957" }, "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.8905867", "INTPTLON10": "-122.3181131" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -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.310104, 37.888944 ], [ -122.309418, 37.892737 ], [ -122.309418, 37.887860 ], [ -122.310104, 37.888944 ] ] ], [ [ [ -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 ] ] ] ] } } +, +{ "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.8946697", "INTPTLON10": "-122.3084294" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309418, 37.898156 ], [ -122.308044, 37.892196 ], [ -122.308731, 37.892196 ], [ -122.309418, 37.898156 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3005", "GEOID10": "060014203003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 30820, "AWATER10": 0, "INTPTLAT10": "+37.8910154", "INTPTLON10": "-122.3085406" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.312164, 37.897614 ], [ -122.309418, 37.894905 ], [ -122.308731, 37.891112 ], [ -122.312164, 37.897614 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3004", "GEOID10": "060014203003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59347, "AWATER10": 0, "INTPTLAT10": "+37.8955812", "INTPTLON10": "-122.3094534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.311478, 37.898156 ], [ -122.309418, 37.897614 ], [ -122.308731, 37.891112 ], [ -122.311478, 37.898156 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3006", "GEOID10": "060014203003006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19563, "AWATER10": 24, "INTPTLAT10": "+37.8904059", "INTPTLON10": "-122.3086941" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.311478, 37.895447 ], [ -122.310104, 37.895447 ], [ -122.310104, 37.893821 ], [ -122.311478, 37.893821 ], [ -122.311478, 37.895447 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3001", "GEOID10": "060014203003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24651, "AWATER10": 0, "INTPTLAT10": "+37.8921989", "INTPTLON10": "-122.3075517" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.893821 ], [ -122.307358, 37.892737 ], [ -122.308044, 37.890028 ], [ -122.308044, 37.893821 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3000", "GEOID10": "060014203003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27350, "AWATER10": 0, "INTPTLAT10": "+37.8907736", "INTPTLON10": "-122.3067658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309418, 37.898156 ], [ -122.306671, 37.892737 ], [ -122.308044, 37.890028 ], [ -122.307358, 37.892737 ], [ -122.309418, 37.898156 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1006", "GEOID10": "060014202001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1461, "AWATER10": 0, "INTPTLAT10": "+37.8973748", "INTPTLON10": "-122.3012481" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.899240 ], [ -122.301178, 37.898156 ], [ -122.302551, 37.898156 ], [ -122.302551, 37.899240 ], [ -122.301178, 37.899240 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1005", "GEOID10": "060014202001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14639, "AWATER10": 0, "INTPTLAT10": "+37.8976068", "INTPTLON10": "-122.3008394" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.898698 ], [ -122.300491, 37.897072 ], [ -122.301178, 37.897072 ], [ -122.301865, 37.898698 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "GEOID10": "060014203002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.8949184", "INTPTLON10": "-122.3048891" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.898698 ], [ -122.301178, 37.896530 ], [ -122.303238, 37.895989 ], [ -122.303238, 37.894905 ], [ -122.302551, 37.893821 ], [ -122.303238, 37.893821 ], [ -122.304611, 37.890570 ], [ -122.306671, 37.890028 ], [ -122.309418, 37.898156 ], [ -122.301865, 37.898698 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "GEOID10": "060014203001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.8926328", "INTPTLON10": "-122.3029106" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.894905 ], [ -122.302551, 37.892196 ], [ -122.303238, 37.891654 ], [ -122.303238, 37.894905 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1001", "GEOID10": "060014203001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16165, "AWATER10": 0, "INTPTLAT10": "+37.8948170", "INTPTLON10": "-122.3018829" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.895989 ], [ -122.301178, 37.894363 ], [ -122.302551, 37.893821 ], [ -122.303238, 37.895989 ], [ -122.301865, 37.895989 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "GEOID10": "060014202001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.8959674", "INTPTLON10": "-122.3002912" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.897072 ], [ -122.299805, 37.895447 ], [ -122.300491, 37.895447 ], [ -122.301178, 37.896530 ], [ -122.300491, 37.897072 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1000", "GEOID10": "060014203001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16605, "AWATER10": 0, "INTPTLAT10": "+37.8950031", "INTPTLON10": "-122.3010393" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.896530 ], [ -122.301178, 37.894363 ], [ -122.301865, 37.895989 ], [ -122.301178, 37.896530 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1007", "GEOID10": "060014203001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16120, "AWATER10": 0, "INTPTLAT10": "+37.8927903", "INTPTLON10": "-122.3021281" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.893821 ], [ -122.301865, 37.892196 ], [ -122.302551, 37.892196 ], [ -122.303238, 37.893821 ], [ -122.302551, 37.893821 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1002", "GEOID10": "060014203001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16535, "AWATER10": 0, "INTPTLAT10": "+37.8929602", "INTPTLON10": "-122.3012875" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.894363 ], [ -122.301178, 37.892196 ], [ -122.301865, 37.892196 ], [ -122.302551, 37.893821 ], [ -122.301178, 37.894363 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3003", "GEOID10": "060014202003003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2234, "AWATER10": 0, "INTPTLAT10": "+37.8942520", "INTPTLON10": "-122.3002730" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.895989 ], [ -122.299805, 37.894905 ], [ -122.301178, 37.894905 ], [ -122.301178, 37.895989 ], [ -122.299805, 37.895989 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1003", "GEOID10": "060014203001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16635, "AWATER10": 0, "INTPTLAT10": "+37.8931288", "INTPTLON10": "-122.3004328" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.894363 ], [ -122.300491, 37.893821 ], [ -122.299805, 37.892737 ], [ -122.301178, 37.892196 ], [ -122.301178, 37.894363 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "GEOID10": "060014204001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.8842028", "INTPTLON10": "-122.3237534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.327957, 37.890028 ], [ -122.327957, 37.888944 ], [ -122.325211, 37.888402 ], [ -122.322464, 37.889486 ], [ -122.317657, 37.889486 ], [ -122.316284, 37.887860 ], [ -122.316284, 37.885693 ], [ -122.315598, 37.884067 ], [ -122.312851, 37.881899 ], [ -122.327957, 37.877563 ], [ -122.334824, 37.890028 ], [ -122.327957, 37.890028 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1011", "GEOID10": "060014204001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 542505, "AWATER10": 0, "INTPTLAT10": "+37.8862375", "INTPTLON10": "-122.3141377" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.317657, 37.889486 ], [ -122.311478, 37.889486 ], [ -122.309418, 37.887860 ], [ -122.308731, 37.882441 ], [ -122.312851, 37.881899 ], [ -122.315598, 37.884067 ], [ -122.316284, 37.885693 ], [ -122.316284, 37.887860 ], [ -122.317657, 37.889486 ] ] ], [ [ [ -122.317657, 37.889486 ], [ -122.322464, 37.889486 ], [ -122.325211, 37.888402 ], [ -122.327957, 37.888944 ], [ -122.327957, 37.890028 ], [ -122.317657, 37.889486 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3011", "GEOID10": "060014203003011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10961, "AWATER10": 0, "INTPTLAT10": "+37.8885068", "INTPTLON10": "-122.3086806" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.888402 ], [ -122.308044, 37.887318 ], [ -122.309418, 37.887318 ], [ -122.309418, 37.888402 ], [ -122.308044, 37.888402 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3012", "GEOID10": "060014203003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14539, "AWATER10": 0, "INTPTLAT10": "+37.8894024", "INTPTLON10": "-122.3080555" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.888402 ], [ -122.308044, 37.887318 ], [ -122.309418, 37.887318 ], [ -122.309418, 37.888402 ], [ -122.308044, 37.888402 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3029", "GEOID10": "060014203003029", "NAME10": "Block 3029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14565, "AWATER10": 0, "INTPTLAT10": "+37.8878852", "INTPTLON10": "-122.3078467" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.889486 ], [ -122.307358, 37.887318 ], [ -122.308731, 37.887860 ], [ -122.308044, 37.889486 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3018", "GEOID10": "060014203003018", "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9739, "AWATER10": 0, "INTPTLAT10": "+37.8891261", "INTPTLON10": "-122.3066496" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305984, 37.890570 ], [ -122.305984, 37.889486 ], [ -122.307358, 37.889486 ], [ -122.307358, 37.890570 ], [ -122.305984, 37.890570 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3014", "GEOID10": "060014203003014", "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10339, "AWATER10": 0, "INTPTLAT10": "+37.8884185", "INTPTLON10": "-122.3064403" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.888944 ], [ -122.306671, 37.887860 ], [ -122.308044, 37.887860 ], [ -122.308044, 37.888944 ], [ -122.306671, 37.888944 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1008", "GEOID10": "060014204001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 447, "AWATER10": 0, "INTPTLAT10": "+37.8873248", "INTPTLON10": "-122.3088095" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.887860 ], [ -122.308044, 37.886777 ], [ -122.309418, 37.886777 ], [ -122.309418, 37.887860 ], [ -122.308044, 37.887860 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1006", "GEOID10": "060014204001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59431, "AWATER10": 0, "INTPTLAT10": "+37.8849426", "INTPTLON10": "-122.3081455" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307358, 37.887318 ], [ -122.308044, 37.882441 ], [ -122.308731, 37.883525 ], [ -122.308731, 37.887318 ], [ -122.307358, 37.887318 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1007", "GEOID10": "060014204001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1737, "AWATER10": 0, "INTPTLAT10": "+37.8871632", "INTPTLON10": "-122.3079226" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.887860 ], [ -122.308044, 37.886777 ], [ -122.309418, 37.886777 ], [ -122.309418, 37.887860 ], [ -122.308044, 37.887860 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1005", "GEOID10": "060014204001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 52400, "AWATER10": 0, "INTPTLAT10": "+37.8837458", "INTPTLON10": "-122.3069617" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307358, 37.887318 ], [ -122.306671, 37.883525 ], [ -122.305984, 37.882441 ], [ -122.308044, 37.882441 ], [ -122.307358, 37.887318 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3021", "GEOID10": "060014203003021", "NAME10": "Block 3021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11997, "AWATER10": 0, "INTPTLAT10": "+37.8902784", "INTPTLON10": "-122.3030396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.890028 ], [ -122.303238, 37.888944 ], [ -122.304611, 37.888944 ], [ -122.304611, 37.890028 ], [ -122.303238, 37.890028 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3019", "GEOID10": "060014203003019", "NAME10": "Block 3019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17581, "AWATER10": 0, "INTPTLAT10": "+37.8895455", "INTPTLON10": "-122.3046051" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303925, 37.890570 ], [ -122.303925, 37.889486 ], [ -122.305984, 37.889486 ], [ -122.306671, 37.890028 ], [ -122.303925, 37.890570 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3027", "GEOID10": "060014203003027", "NAME10": "Block 3027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13106, "AWATER10": 0, "INTPTLAT10": "+37.8882387", "INTPTLON10": "-122.3051246" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305298, 37.888402 ], [ -122.305298, 37.887318 ], [ -122.306671, 37.887318 ], [ -122.306671, 37.888402 ], [ -122.305298, 37.888402 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3026", "GEOID10": "060014203003026", "NAME10": "Block 3026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14219, "AWATER10": 0, "INTPTLAT10": "+37.8883405", "INTPTLON10": "-122.3042616" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304611, 37.890028 ], [ -122.304611, 37.888944 ], [ -122.305984, 37.888944 ], [ -122.305984, 37.890028 ], [ -122.304611, 37.890028 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3024", "GEOID10": "060014203003024", "NAME10": "Block 3024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15240, "AWATER10": 0, "INTPTLAT10": "+37.8884411", "INTPTLON10": "-122.3034025" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303925, 37.889486 ], [ -122.303238, 37.887860 ], [ -122.303925, 37.887860 ], [ -122.304611, 37.889486 ], [ -122.303925, 37.889486 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "GEOID10": "060014203001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.8906969", "INTPTLON10": "-122.3023492" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.892196 ], [ -122.301865, 37.890028 ], [ -122.302551, 37.890028 ], [ -122.303238, 37.891654 ], [ -122.302551, 37.892196 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1006", "GEOID10": "060014203001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17308, "AWATER10": 0, "INTPTLAT10": "+37.8908584", "INTPTLON10": "-122.3015099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.892196 ], [ -122.301178, 37.890028 ], [ -122.301865, 37.890028 ], [ -122.302551, 37.892196 ], [ -122.301865, 37.892196 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1004", "GEOID10": "060014203001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17893, "AWATER10": 0, "INTPTLAT10": "+37.8912006", "INTPTLON10": "-122.2998090" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.892196 ], [ -122.299118, 37.890570 ], [ -122.300491, 37.890570 ], [ -122.301178, 37.892196 ], [ -122.299805, 37.892196 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "GEOID10": "060014203001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.8910287", "INTPTLON10": "-122.3006658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.892196 ], [ -122.300491, 37.890570 ], [ -122.301178, 37.890028 ], [ -122.301865, 37.892196 ], [ -122.301178, 37.892196 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3023", "GEOID10": "060014203003023", "NAME10": "Block 3023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16332, "AWATER10": 0, "INTPTLAT10": "+37.8885408", "INTPTLON10": "-122.3025479" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.890028 ], [ -122.301865, 37.887860 ], [ -122.303238, 37.887860 ], [ -122.303925, 37.889486 ], [ -122.302551, 37.890028 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1010", "GEOID10": "060014203001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20386, "AWATER10": 0, "INTPTLAT10": "+37.8886345", "INTPTLON10": "-122.3016225" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.890028 ], [ -122.301178, 37.887860 ], [ -122.301865, 37.887860 ], [ -122.302551, 37.890028 ], [ -122.301865, 37.890028 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1011", "GEOID10": "060014203001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16453, "AWATER10": 0, "INTPTLAT10": "+37.8888638", "INTPTLON10": "-122.3008054" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.890028 ], [ -122.300491, 37.887860 ], [ -122.301865, 37.890028 ], [ -122.301178, 37.890028 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1015", "GEOID10": "060014203001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19773, "AWATER10": 0, "INTPTLAT10": "+37.8888596", "INTPTLON10": "-122.2999642" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.890570 ], [ -122.299805, 37.887860 ], [ -122.300491, 37.887860 ], [ -122.301178, 37.890028 ], [ -122.300491, 37.890570 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1001", "GEOID10": "060014204001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 98716, "AWATER10": 0, "INTPTLAT10": "+37.8865962", "INTPTLON10": "-122.3039801" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.887860 ], [ -122.301178, 37.886777 ], [ -122.304611, 37.886235 ], [ -122.307358, 37.885693 ], [ -122.307358, 37.887318 ], [ -122.301178, 37.887860 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "GEOID10": "060014204001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.8847438", "INTPTLON10": "-122.3040957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.885693 ], [ -122.303238, 37.884609 ], [ -122.304611, 37.884609 ], [ -122.304611, 37.885693 ], [ -122.303238, 37.885693 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "GEOID10": "060014204001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.8837071", "INTPTLON10": "-122.3049494" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304611, 37.885693 ], [ -122.303925, 37.884067 ], [ -122.302551, 37.882983 ], [ -122.305984, 37.882441 ], [ -122.307358, 37.885693 ], [ -122.304611, 37.885693 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1013", "GEOID10": "060014204001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9671, "AWATER10": 0, "INTPTLAT10": "+37.8848967", "INTPTLON10": "-122.3034182" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.884609 ], [ -122.303238, 37.883525 ], [ -122.304611, 37.883525 ], [ -122.304611, 37.884609 ], [ -122.303238, 37.884609 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "GEOID10": "060014204001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.8846770", "INTPTLON10": "-122.3015769" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.886777 ], [ -122.300491, 37.883525 ], [ -122.303238, 37.883525 ], [ -122.303925, 37.886235 ], [ -122.301178, 37.886777 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "GEOID10": "060014204001020", "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.8829654", "INTPTLON10": "-122.3013966" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.884067 ], [ -122.299805, 37.882983 ], [ -122.301178, 37.882983 ], [ -122.301178, 37.884067 ], [ -122.299805, 37.884067 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "GEOID10": "060014202001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.8977494", "INTPTLON10": "-122.2990695" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.899240 ], [ -122.298431, 37.898156 ], [ -122.299805, 37.898156 ], [ -122.299805, 37.899240 ], [ -122.298431, 37.899240 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1002", "GEOID10": "060014202001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11372, "AWATER10": 0, "INTPTLAT10": "+37.8979512", "INTPTLON10": "-122.2982332" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.899781 ], [ -122.297745, 37.898698 ], [ -122.299118, 37.898698 ], [ -122.299118, 37.899781 ], [ -122.297745, 37.899781 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1001", "GEOID10": "060014202001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11928, "AWATER10": 0, "INTPTLAT10": "+37.8981515", "INTPTLON10": "-122.2974109" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.899781 ], [ -122.297058, 37.898698 ], [ -122.298431, 37.898698 ], [ -122.298431, 37.899781 ], [ -122.297058, 37.899781 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1000", "GEOID10": "060014202001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13452, "AWATER10": 0, "INTPTLAT10": "+37.8982712", "INTPTLON10": "-122.2964744" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.898698 ], [ -122.295685, 37.897614 ], [ -122.297058, 37.897614 ], [ -122.297058, 37.898698 ], [ -122.295685, 37.898698 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "GEOID10": "060014202001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.8966536", "INTPTLON10": "-122.2969317" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.896530 ], [ -122.295685, 37.895447 ], [ -122.297058, 37.895447 ], [ -122.297058, 37.896530 ], [ -122.295685, 37.896530 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1013", "GEOID10": "060014202001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14541, "AWATER10": 0, "INTPTLAT10": "+37.8968185", "INTPTLON10": "-122.2960835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.898698 ], [ -122.295685, 37.897614 ], [ -122.297058, 37.897614 ], [ -122.297058, 37.898698 ], [ -122.295685, 37.898698 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1006", "GEOID10": "060014201001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14453, "AWATER10": 0, "INTPTLAT10": "+37.8983329", "INTPTLON10": "-122.2952807" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.899240 ], [ -122.294998, 37.898156 ], [ -122.296371, 37.898156 ], [ -122.296371, 37.899240 ], [ -122.294998, 37.899240 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "GEOID10": "060014202001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.8963113", "INTPTLON10": "-122.2986013" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.898156 ], [ -122.298431, 37.897072 ], [ -122.299805, 37.897072 ], [ -122.299805, 37.898156 ], [ -122.298431, 37.898156 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "GEOID10": "060014202003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.8945232", "INTPTLON10": "-122.2989229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.895989 ], [ -122.298431, 37.894905 ], [ -122.299805, 37.894905 ], [ -122.299805, 37.895989 ], [ -122.298431, 37.895989 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "GEOID10": "060014202001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.8964819", "INTPTLON10": "-122.2977622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.898156 ], [ -122.297058, 37.897072 ], [ -122.298431, 37.897072 ], [ -122.298431, 37.898156 ], [ -122.297058, 37.898156 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "GEOID10": "060014202003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.8946922", "INTPTLON10": "-122.2980853" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.896530 ], [ -122.297745, 37.895447 ], [ -122.299118, 37.895447 ], [ -122.299118, 37.896530 ], [ -122.297745, 37.896530 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "GEOID10": "060014202002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.8948540", "INTPTLON10": "-122.2972427" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.896530 ], [ -122.297058, 37.895447 ], [ -122.298431, 37.895447 ], [ -122.298431, 37.896530 ], [ -122.297058, 37.896530 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "GEOID10": "060014202003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.8943454", "INTPTLON10": "-122.2997703" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.895447 ], [ -122.299118, 37.893821 ], [ -122.300491, 37.893821 ], [ -122.300491, 37.895447 ], [ -122.299805, 37.895447 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "GEOID10": "060014202003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.8927197", "INTPTLON10": "-122.2992493" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893821 ], [ -122.299118, 37.892196 ], [ -122.299805, 37.892737 ], [ -122.300491, 37.893821 ], [ -122.299118, 37.893821 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3006", "GEOID10": "060014202003006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14044, "AWATER10": 0, "INTPTLAT10": "+37.8928963", "INTPTLON10": "-122.2984024" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.894363 ], [ -122.297745, 37.893279 ], [ -122.299118, 37.893279 ], [ -122.299118, 37.894363 ], [ -122.297745, 37.894363 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "GEOID10": "060014202003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.8930639", "INTPTLON10": "-122.2975700" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.894905 ], [ -122.297058, 37.893821 ], [ -122.298431, 37.893821 ], [ -122.298431, 37.894905 ], [ -122.297058, 37.894905 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "GEOID10": "060014202002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.8950194", "INTPTLON10": "-122.2964053" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.894905 ], [ -122.296371, 37.893821 ], [ -122.297745, 37.893821 ], [ -122.297745, 37.894905 ], [ -122.296371, 37.894905 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2000", "GEOID10": "060014202002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7737, "AWATER10": 0, "INTPTLAT10": "+37.8960946", "INTPTLON10": "-122.2952742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.895447 ], [ -122.294312, 37.894363 ], [ -122.295685, 37.894363 ], [ -122.295685, 37.895447 ], [ -122.294312, 37.895447 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1007", "GEOID10": "060014201001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17265, "AWATER10": 0, "INTPTLAT10": "+37.8966238", "INTPTLON10": "-122.2949725" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.898156 ], [ -122.294998, 37.894905 ], [ -122.296371, 37.898156 ], [ -122.294998, 37.898156 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2003", "GEOID10": "060014202002003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14449, "AWATER10": 0, "INTPTLAT10": "+37.8951947", "INTPTLON10": "-122.2955660" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.897072 ], [ -122.294998, 37.895989 ], [ -122.296371, 37.895989 ], [ -122.296371, 37.897072 ], [ -122.294998, 37.897072 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2007", "GEOID10": "060014202002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14053, "AWATER10": 0, "INTPTLAT10": "+37.8933931", "INTPTLON10": "-122.2958883" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.893279 ], [ -122.295685, 37.892196 ], [ -122.297058, 37.892196 ], [ -122.297058, 37.893279 ], [ -122.295685, 37.893279 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2006", "GEOID10": "060014202002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14158, "AWATER10": 0, "INTPTLAT10": "+37.8932322", "INTPTLON10": "-122.2967302" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.893279 ], [ -122.295685, 37.892196 ], [ -122.297058, 37.892196 ], [ -122.297058, 37.893279 ], [ -122.295685, 37.893279 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2002", "GEOID10": "060014202002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14523, "AWATER10": 0, "INTPTLAT10": "+37.8935661", "INTPTLON10": "-122.2950398" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.895447 ], [ -122.294312, 37.894363 ], [ -122.295685, 37.894363 ], [ -122.295685, 37.895447 ], [ -122.294312, 37.895447 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1005", "GEOID10": "060014201001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8083, "AWATER10": 0, "INTPTLAT10": "+37.8982104", "INTPTLON10": "-122.2941387" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.899781 ], [ -122.294312, 37.898698 ], [ -122.295685, 37.898698 ], [ -122.295685, 37.899781 ], [ -122.294312, 37.899781 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1002", "GEOID10": "060014201001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14980, "AWATER10": 0, "INTPTLAT10": "+37.8974821", "INTPTLON10": "-122.2921539" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.898698 ], [ -122.292252, 37.898156 ], [ -122.292252, 37.897072 ], [ -122.292938, 37.897072 ], [ -122.292938, 37.898698 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1001", "GEOID10": "060014201001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11297, "AWATER10": 0, "INTPTLAT10": "+37.8973215", "INTPTLON10": "-122.2912175" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.898698 ], [ -122.290192, 37.897614 ], [ -122.291565, 37.897614 ], [ -122.291565, 37.898698 ], [ -122.290192, 37.898698 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1000", "GEOID10": "060014201001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10019, "AWATER10": 0, "INTPTLAT10": "+37.8972478", "INTPTLON10": "-122.2903402" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.898698 ], [ -122.289505, 37.897614 ], [ -122.290878, 37.897614 ], [ -122.290878, 37.898698 ], [ -122.289505, 37.898698 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1008", "GEOID10": "060014201001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25122, "AWATER10": 0, "INTPTLAT10": "+37.8962273", "INTPTLON10": "-122.2942136" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.898156 ], [ -122.294998, 37.894905 ], [ -122.294998, 37.898156 ], [ -122.294312, 37.898156 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1009", "GEOID10": "060014201001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24911, "AWATER10": 0, "INTPTLAT10": "+37.8962389", "INTPTLON10": "-122.2933649" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.898156 ], [ -122.293625, 37.894905 ], [ -122.294312, 37.894905 ], [ -122.294312, 37.898156 ], [ -122.292938, 37.898156 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1011", "GEOID10": "060014201001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4495, "AWATER10": 0, "INTPTLAT10": "+37.8957842", "INTPTLON10": "-122.2928245" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292252, 37.897614 ], [ -122.292252, 37.896530 ], [ -122.293625, 37.896530 ], [ -122.293625, 37.897614 ], [ -122.292252, 37.897614 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1015", "GEOID10": "060014201001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16238, "AWATER10": 0, "INTPTLAT10": "+37.8938032", "INTPTLON10": "-122.2934559" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.894905 ], [ -122.293625, 37.893279 ], [ -122.294312, 37.893279 ], [ -122.294312, 37.894905 ], [ -122.293625, 37.894905 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1014", "GEOID10": "060014201001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5007, "AWATER10": 0, "INTPTLAT10": "+37.8938437", "INTPTLON10": "-122.2929060" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.893821 ], [ -122.292938, 37.892737 ], [ -122.294312, 37.892737 ], [ -122.294312, 37.893821 ], [ -122.292938, 37.893821 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1013", "GEOID10": "060014201001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18897, "AWATER10": 0, "INTPTLAT10": "+37.8938347", "INTPTLON10": "-122.2923093" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292252, 37.894905 ], [ -122.292252, 37.893279 ], [ -122.292938, 37.893279 ], [ -122.292938, 37.894905 ], [ -122.292252, 37.894905 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1012", "GEOID10": "060014201001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 48606, "AWATER10": 0, "INTPTLAT10": "+37.8957510", "INTPTLON10": "-122.2913507" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.897072 ], [ -122.290192, 37.894905 ], [ -122.292938, 37.894905 ], [ -122.292938, 37.897072 ], [ -122.290192, 37.897072 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2006", "GEOID10": "060014201002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15730, "AWATER10": 0, "INTPTLAT10": "+37.8956964", "INTPTLON10": "-122.2895702" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.897072 ], [ -122.289505, 37.894905 ], [ -122.290192, 37.894905 ], [ -122.290192, 37.897072 ], [ -122.289505, 37.897072 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3001", "GEOID10": "060014201003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16246, "AWATER10": 0, "INTPTLAT10": "+37.8938831", "INTPTLON10": "-122.2913917" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.894905 ], [ -122.291565, 37.893279 ], [ -122.292252, 37.893279 ], [ -122.292252, 37.894905 ], [ -122.291565, 37.894905 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3000", "GEOID10": "060014201003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15665, "AWATER10": 0, "INTPTLAT10": "+37.8938607", "INTPTLON10": "-122.2905229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.894905 ], [ -122.290192, 37.893279 ], [ -122.291565, 37.893279 ], [ -122.291565, 37.894905 ], [ -122.290192, 37.894905 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2015", "GEOID10": "060014201002015", "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15921, "AWATER10": 0, "INTPTLAT10": "+37.8938332", "INTPTLON10": "-122.2896635" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.894905 ], [ -122.289505, 37.893279 ], [ -122.290192, 37.893279 ], [ -122.290192, 37.894905 ], [ -122.289505, 37.894905 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2003", "GEOID10": "060014201002003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1027, "AWATER10": 0, "INTPTLAT10": "+37.8973454", "INTPTLON10": "-122.2881508" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.898698 ], [ -122.288132, 37.897614 ], [ -122.289505, 37.897614 ], [ -122.289505, 37.898698 ], [ -122.288132, 37.898698 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2002", "GEOID10": "060014201002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16183, "AWATER10": 0, "INTPTLAT10": "+37.8975006", "INTPTLON10": "-122.2876349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.898698 ], [ -122.287445, 37.897072 ], [ -122.288818, 37.897072 ], [ -122.287445, 37.898698 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2007", "GEOID10": "060014201002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15930, "AWATER10": 0, "INTPTLAT10": "+37.8956694", "INTPTLON10": "-122.2886965" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.897072 ], [ -122.288818, 37.894905 ], [ -122.289505, 37.894905 ], [ -122.289505, 37.897072 ], [ -122.288818, 37.897072 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2009", "GEOID10": "060014201002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15974, "AWATER10": 0, "INTPTLAT10": "+37.8956464", "INTPTLON10": "-122.2877473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.897072 ], [ -122.287445, 37.894905 ], [ -122.288818, 37.894905 ], [ -122.288818, 37.897072 ], [ -122.287445, 37.897072 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2014", "GEOID10": "060014201002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16117, "AWATER10": 0, "INTPTLAT10": "+37.8938093", "INTPTLON10": "-122.2887874" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.894905 ], [ -122.288818, 37.893279 ], [ -122.289505, 37.893279 ], [ -122.289505, 37.894905 ], [ -122.288818, 37.894905 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2012", "GEOID10": "060014201002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16253, "AWATER10": 0, "INTPTLAT10": "+37.8937801", "INTPTLON10": "-122.2878360" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.894905 ], [ -122.287445, 37.893279 ], [ -122.288818, 37.893279 ], [ -122.288818, 37.894905 ], [ -122.287445, 37.894905 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2011", "GEOID10": "060014201002011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4556, "AWATER10": 0, "INTPTLAT10": "+37.8937317", "INTPTLON10": "-122.2872753" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.895447 ], [ -122.286758, 37.894363 ], [ -122.288132, 37.894363 ], [ -122.288132, 37.895447 ], [ -122.286758, 37.895447 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3010", "GEOID10": "060014202003010", "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14291, "AWATER10": 0, "INTPTLAT10": "+37.8911018", "INTPTLON10": "-122.2987261" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.891112 ], [ -122.298431, 37.890028 ], [ -122.299805, 37.890028 ], [ -122.299805, 37.891112 ], [ -122.298431, 37.891112 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3009", "GEOID10": "060014202003009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15100, "AWATER10": 0, "INTPTLAT10": "+37.8912058", "INTPTLON10": "-122.2978563" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.892196 ], [ -122.297745, 37.890570 ], [ -122.298431, 37.891112 ], [ -122.299118, 37.892196 ], [ -122.297745, 37.892196 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1014", "GEOID10": "060014203001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21543, "AWATER10": 0, "INTPTLAT10": "+37.8889340", "INTPTLON10": "-122.2990835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.890570 ], [ -122.298431, 37.887860 ], [ -122.299805, 37.887860 ], [ -122.300491, 37.890570 ], [ -122.299118, 37.890570 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1007", "GEOID10": "060014205001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 32096, "AWATER10": 0, "INTPTLAT10": "+37.8884580", "INTPTLON10": "-122.2979153" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.890570 ], [ -122.298431, 37.890028 ], [ -122.297058, 37.887318 ], [ -122.298431, 37.886777 ], [ -122.299118, 37.890570 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3008", "GEOID10": "060014202003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16353, "AWATER10": 0, "INTPTLAT10": "+37.8913200", "INTPTLON10": "-122.2970017" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.892737 ], [ -122.296371, 37.890570 ], [ -122.297745, 37.891112 ], [ -122.297745, 37.892196 ], [ -122.297058, 37.892737 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2012", "GEOID10": "060014202002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17230, "AWATER10": 0, "INTPTLAT10": "+37.8914257", "INTPTLON10": "-122.2961445" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.892737 ], [ -122.295685, 37.890570 ], [ -122.296371, 37.890570 ], [ -122.297058, 37.892737 ], [ -122.296371, 37.892737 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2008", "GEOID10": "060014202002008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18377, "AWATER10": 0, "INTPTLAT10": "+37.8915386", "INTPTLON10": "-122.2952863" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.892737 ], [ -122.294998, 37.890570 ], [ -122.295685, 37.890570 ], [ -122.296371, 37.892737 ], [ -122.295685, 37.892737 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2009", "GEOID10": "060014202002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19818, "AWATER10": 0, "INTPTLAT10": "+37.8916581", "INTPTLON10": "-122.2944181" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.893279 ], [ -122.293625, 37.890570 ], [ -122.294998, 37.890570 ], [ -122.295685, 37.892737 ], [ -122.294998, 37.893279 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1015", "GEOID10": "060014205001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29154, "AWATER10": 0, "INTPTLAT10": "+37.8886165", "INTPTLON10": "-122.2970361" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.890570 ], [ -122.296371, 37.887318 ], [ -122.297058, 37.887318 ], [ -122.298431, 37.890570 ], [ -122.297745, 37.890570 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1014", "GEOID10": "060014205001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28068, "AWATER10": 0, "INTPTLAT10": "+37.8887349", "INTPTLON10": "-122.2961756" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.890570 ], [ -122.295685, 37.887318 ], [ -122.296371, 37.887318 ], [ -122.297745, 37.890570 ], [ -122.296371, 37.890570 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1010", "GEOID10": "060014205001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26672, "AWATER10": 0, "INTPTLAT10": "+37.8888488", "INTPTLON10": "-122.2953196" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.890570 ], [ -122.294998, 37.887860 ], [ -122.295685, 37.887318 ], [ -122.296371, 37.890570 ], [ -122.295685, 37.890570 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1011", "GEOID10": "060014205001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26518, "AWATER10": 0, "INTPTLAT10": "+37.8889300", "INTPTLON10": "-122.2944569" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.890570 ], [ -122.293625, 37.887860 ], [ -122.294998, 37.887860 ], [ -122.295685, 37.890570 ], [ -122.294998, 37.890570 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1000", "GEOID10": "060014204001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11282, "AWATER10": 0, "INTPTLAT10": "+37.8873799", "INTPTLON10": "-122.2988707" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.887318 ], [ -122.297745, 37.886235 ], [ -122.299118, 37.886235 ], [ -122.299118, 37.887318 ], [ -122.297745, 37.887318 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1015", "GEOID10": "060014204001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 79019, "AWATER10": 0, "INTPTLAT10": "+37.8858279", "INTPTLON10": "-122.2991231" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.887860 ], [ -122.298431, 37.886777 ], [ -122.297745, 37.884609 ], [ -122.298431, 37.884609 ], [ -122.300491, 37.884067 ], [ -122.301178, 37.887860 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1018", "GEOID10": "060014204001018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22069, "AWATER10": 0, "INTPTLAT10": "+37.8835790", "INTPTLON10": "-122.2990681" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.884609 ], [ -122.298431, 37.883525 ], [ -122.300491, 37.883525 ], [ -122.299805, 37.884609 ], [ -122.298431, 37.884609 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1019", "GEOID10": "060014204001019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11921, "AWATER10": 0, "INTPTLAT10": "+37.8839314", "INTPTLON10": "-122.2976037" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.885151 ], [ -122.297058, 37.884067 ], [ -122.298431, 37.884067 ], [ -122.298431, 37.885151 ], [ -122.297058, 37.885151 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2003", "GEOID10": "060014205002003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24754, "AWATER10": 0, "INTPTLAT10": "+37.8858112", "INTPTLON10": "-122.2943382" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.887318 ], [ -122.293625, 37.884609 ], [ -122.294998, 37.884609 ], [ -122.295685, 37.887318 ], [ -122.294998, 37.887318 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2006", "GEOID10": "060014205002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25305, "AWATER10": 0, "INTPTLAT10": "+37.8853070", "INTPTLON10": "-122.2968750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.887318 ], [ -122.296371, 37.884067 ], [ -122.297058, 37.884067 ], [ -122.298431, 37.886777 ], [ -122.297058, 37.887318 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2005", "GEOID10": "060014205002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24545, "AWATER10": 0, "INTPTLAT10": "+37.8854914", "INTPTLON10": "-122.2960301" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.887318 ], [ -122.295685, 37.884609 ], [ -122.296371, 37.884067 ], [ -122.297058, 37.887318 ], [ -122.296371, 37.887318 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2004", "GEOID10": "060014205002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24848, "AWATER10": 0, "INTPTLAT10": "+37.8856461", "INTPTLON10": "-122.2951842" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.887318 ], [ -122.294998, 37.884609 ], [ -122.295685, 37.884609 ], [ -122.296371, 37.887318 ], [ -122.295685, 37.887318 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2012", "GEOID10": "060014205002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12579, "AWATER10": 0, "INTPTLAT10": "+37.8835272", "INTPTLON10": "-122.2945038" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.885151 ], [ -122.294998, 37.884067 ], [ -122.296371, 37.884067 ], [ -122.296371, 37.885151 ], [ -122.294998, 37.885151 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2010", "GEOID10": "060014202002010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8445, "AWATER10": 0, "INTPTLAT10": "+37.8914852", "INTPTLON10": "-122.2936957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.891654 ], [ -122.292938, 37.890570 ], [ -122.294312, 37.890570 ], [ -122.294312, 37.891654 ], [ -122.292938, 37.891654 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1018", "GEOID10": "060014201001018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4538, "AWATER10": 0, "INTPTLAT10": "+37.8918502", "INTPTLON10": "-122.2929851" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.891654 ], [ -122.292938, 37.890570 ], [ -122.294312, 37.890570 ], [ -122.294312, 37.891654 ], [ -122.292938, 37.891654 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1019", "GEOID10": "060014201001019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20486, "AWATER10": 0, "INTPTLAT10": "+37.8917135", "INTPTLON10": "-122.2923947" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292252, 37.893279 ], [ -122.292252, 37.891112 ], [ -122.292938, 37.891112 ], [ -122.292938, 37.893279 ], [ -122.292252, 37.893279 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1006", "GEOID10": "060014205001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25175, "AWATER10": 0, "INTPTLAT10": "+37.8890495", "INTPTLON10": "-122.2935928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890570 ], [ -122.292938, 37.887860 ], [ -122.293625, 37.887860 ], [ -122.294998, 37.890570 ], [ -122.293625, 37.890570 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3006", "GEOID10": "060014206003006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11825, "AWATER10": 0, "INTPTLAT10": "+37.8893267", "INTPTLON10": "-122.2928119" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.891112 ], [ -122.293625, 37.890028 ], [ -122.294998, 37.890028 ], [ -122.294998, 37.891112 ], [ -122.293625, 37.891112 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3007", "GEOID10": "060014206003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27950, "AWATER10": 0, "INTPTLAT10": "+37.8892518", "INTPTLON10": "-122.2920141" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292252, 37.891112 ], [ -122.291565, 37.888402 ], [ -122.292252, 37.887860 ], [ -122.292938, 37.890570 ], [ -122.292252, 37.891112 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3002", "GEOID10": "060014201003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19544, "AWATER10": 0, "INTPTLAT10": "+37.8918042", "INTPTLON10": "-122.2914745" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.893279 ], [ -122.291565, 37.891112 ], [ -122.292252, 37.891112 ], [ -122.292252, 37.893279 ], [ -122.291565, 37.893279 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3003", "GEOID10": "060014201003003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18064, "AWATER10": 0, "INTPTLAT10": "+37.8918237", "INTPTLON10": "-122.2906157" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.893279 ], [ -122.290878, 37.891112 ], [ -122.291565, 37.891112 ], [ -122.291565, 37.893279 ], [ -122.290192, 37.893279 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3004", "GEOID10": "060014201003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18095, "AWATER10": 0, "INTPTLAT10": "+37.8918241", "INTPTLON10": "-122.2897641" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.893279 ], [ -122.289505, 37.891112 ], [ -122.290878, 37.891112 ], [ -122.290192, 37.893279 ], [ -122.289505, 37.893279 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3005", "GEOID10": "060014201003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16537, "AWATER10": 0, "INTPTLAT10": "+37.8919062", "INTPTLON10": "-122.2889102" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.893279 ], [ -122.289505, 37.891112 ], [ -122.289505, 37.893279 ], [ -122.288818, 37.893279 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3002", "GEOID10": "060014206003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26786, "AWATER10": 0, "INTPTLAT10": "+37.8894113", "INTPTLON10": "-122.2909643" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.891112 ], [ -122.290192, 37.888402 ], [ -122.291565, 37.888402 ], [ -122.292252, 37.891112 ], [ -122.291565, 37.891112 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3001", "GEOID10": "060014206003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22452, "AWATER10": 0, "INTPTLAT10": "+37.8895187", "INTPTLON10": "-122.2899595" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.891112 ], [ -122.289505, 37.888944 ], [ -122.290192, 37.888402 ], [ -122.290878, 37.891112 ], [ -122.290192, 37.891112 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3000", "GEOID10": "060014206003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21823, "AWATER10": 0, "INTPTLAT10": "+37.8896695", "INTPTLON10": "-122.2890200" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.891112 ], [ -122.288818, 37.888944 ], [ -122.289505, 37.888944 ], [ -122.290192, 37.891112 ], [ -122.289505, 37.891112 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2002", "GEOID10": "060014205002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24228, "AWATER10": 0, "INTPTLAT10": "+37.8859970", "INTPTLON10": "-122.2935084" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.887860 ], [ -122.292938, 37.885151 ], [ -122.293625, 37.884609 ], [ -122.294998, 37.887318 ], [ -122.293625, 37.887860 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2001", "GEOID10": "060014205002001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26078, "AWATER10": 0, "INTPTLAT10": "+37.8861973", "INTPTLON10": "-122.2926742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.887860 ], [ -122.292252, 37.885151 ], [ -122.292938, 37.885151 ], [ -122.293625, 37.887860 ], [ -122.292938, 37.887860 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2000", "GEOID10": "060014205002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6434, "AWATER10": 0, "INTPTLAT10": "+37.8862789", "INTPTLON10": "-122.2921162" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292252, 37.888402 ], [ -122.292252, 37.887318 ], [ -122.293625, 37.887318 ], [ -122.293625, 37.888402 ], [ -122.292252, 37.888402 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2013", "GEOID10": "060014205002013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12945, "AWATER10": 0, "INTPTLAT10": "+37.8836932", "INTPTLON10": "-122.2936333" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.885151 ], [ -122.292938, 37.884067 ], [ -122.294312, 37.884067 ], [ -122.294312, 37.885151 ], [ -122.292938, 37.885151 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2014", "GEOID10": "060014205002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13013, "AWATER10": 0, "INTPTLAT10": "+37.8838362", "INTPTLON10": "-122.2927774" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292252, 37.885151 ], [ -122.292252, 37.884067 ], [ -122.293625, 37.884067 ], [ -122.293625, 37.885151 ], [ -122.292252, 37.885151 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2015", "GEOID10": "060014205002015", "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13985, "AWATER10": 0, "INTPTLAT10": "+37.8839739", "INTPTLON10": "-122.2919263" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.884067 ], [ -122.291565, 37.882983 ], [ -122.292938, 37.882983 ], [ -122.292938, 37.884067 ], [ -122.291565, 37.884067 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3014", "GEOID10": "060014206003014", "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29422, "AWATER10": 0, "INTPTLAT10": "+37.8864950", "INTPTLON10": "-122.2911376" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.888402 ], [ -122.290192, 37.885693 ], [ -122.291565, 37.885151 ], [ -122.292252, 37.887860 ], [ -122.291565, 37.888402 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "GEOID10": "060014206003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.8875706", "INTPTLON10": "-122.2892190" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.888944 ], [ -122.289505, 37.886235 ], [ -122.290192, 37.888402 ], [ -122.288818, 37.888944 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3013", "GEOID10": "060014206003013", "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 31172, "AWATER10": 0, "INTPTLAT10": "+37.8866087", "INTPTLON10": "-122.2901174" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.888402 ], [ -122.290192, 37.884609 ], [ -122.290878, 37.885693 ], [ -122.291565, 37.888402 ], [ -122.290192, 37.888402 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3017", "GEOID10": "060014206003017", "NAME10": "Block 3017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6343, "AWATER10": 0, "INTPTLAT10": "+37.8840797", "INTPTLON10": "-122.2909809" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290878, 37.885693 ], [ -122.290878, 37.884609 ], [ -122.292252, 37.884609 ], [ -122.292252, 37.885693 ], [ -122.290878, 37.885693 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3018", "GEOID10": "060014206003018", "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14557, "AWATER10": 0, "INTPTLAT10": "+37.8843696", "INTPTLON10": "-122.2904413" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.884067 ], [ -122.290192, 37.882983 ], [ -122.291565, 37.882983 ], [ -122.291565, 37.884067 ], [ -122.290192, 37.884067 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1023", "GEOID10": "060014206001023", "NAME10": "Block 1023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15260, "AWATER10": 0, "INTPTLAT10": "+37.8840099", "INTPTLON10": "-122.2895305" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.885151 ], [ -122.289505, 37.883525 ], [ -122.290192, 37.883525 ], [ -122.290192, 37.885151 ], [ -122.288818, 37.885151 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2011", "GEOID10": "060014205002011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10125, "AWATER10": 0, "INTPTLAT10": "+37.8834818", "INTPTLON10": "-122.2953591" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.885151 ], [ -122.294998, 37.884067 ], [ -122.296371, 37.884067 ], [ -122.296371, 37.885151 ], [ -122.294998, 37.885151 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3007", "GEOID10": "060014201003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18637, "AWATER10": 0, "INTPTLAT10": "+37.8917853", "INTPTLON10": "-122.2879697" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.893279 ], [ -122.288132, 37.891112 ], [ -122.288818, 37.891112 ], [ -122.288818, 37.893279 ], [ -122.287445, 37.893279 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3008", "GEOID10": "060014201003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5620, "AWATER10": 0, "INTPTLAT10": "+37.8918093", "INTPTLON10": "-122.2873239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.893821 ], [ -122.286758, 37.892737 ], [ -122.288132, 37.892737 ], [ -122.288132, 37.893821 ], [ -122.286758, 37.893821 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2005", "GEOID10": "060014206002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21301, "AWATER10": 0, "INTPTLAT10": "+37.8898284", "INTPTLON10": "-122.2879267" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.891112 ], [ -122.287445, 37.889486 ], [ -122.288132, 37.888944 ], [ -122.288818, 37.891112 ], [ -122.288132, 37.891112 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2002", "GEOID10": "060014206002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16691, "AWATER10": 0, "INTPTLAT10": "+37.8900585", "INTPTLON10": "-122.2869139" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.891112 ], [ -122.286758, 37.889486 ], [ -122.287445, 37.889486 ], [ -122.288132, 37.891112 ], [ -122.286758, 37.891112 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2010", "GEOID10": "060014206002010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15494, "AWATER10": 0, "INTPTLAT10": "+37.8884410", "INTPTLON10": "-122.2866366" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.889486 ], [ -122.286758, 37.887860 ], [ -122.288132, 37.888402 ], [ -122.287445, 37.889486 ], [ -122.286758, 37.889486 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2001", "GEOID10": "060014206002001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14791, "AWATER10": 0, "INTPTLAT10": "+37.8902095", "INTPTLON10": "-122.2859011" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.891112 ], [ -122.285385, 37.890028 ], [ -122.286758, 37.889486 ], [ -122.286758, 37.891112 ], [ -122.286072, 37.891112 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1003", "GEOID10": "060014206001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16431, "AWATER10": 0, "INTPTLAT10": "+37.8902144", "INTPTLON10": "-122.2848310" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284698, 37.891112 ], [ -122.284698, 37.889486 ], [ -122.285385, 37.890028 ], [ -122.286072, 37.891112 ], [ -122.284698, 37.891112 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1004", "GEOID10": "060014206001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19676, "AWATER10": 0, "INTPTLAT10": "+37.8901108", "INTPTLON10": "-122.2837239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284012, 37.891112 ], [ -122.283325, 37.889486 ], [ -122.284698, 37.889486 ], [ -122.284698, 37.891112 ], [ -122.284012, 37.891112 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2009", "GEOID10": "060014206002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19896, "AWATER10": 0, "INTPTLAT10": "+37.8884164", "INTPTLON10": "-122.2856099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.889486 ], [ -122.285385, 37.887860 ], [ -122.286758, 37.887860 ], [ -122.285385, 37.889486 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1009", "GEOID10": "060014206001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22493, "AWATER10": 0, "INTPTLAT10": "+37.8883323", "INTPTLON10": "-122.2844715" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284012, 37.889486 ], [ -122.284698, 37.887318 ], [ -122.285385, 37.887860 ], [ -122.285385, 37.889486 ], [ -122.284012, 37.889486 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1014", "GEOID10": "060014206001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22296, "AWATER10": 0, "INTPTLAT10": "+37.8880279", "INTPTLON10": "-122.2834249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.889486 ], [ -122.283325, 37.887318 ], [ -122.284698, 37.887318 ], [ -122.284012, 37.889486 ], [ -122.283325, 37.889486 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2011", "GEOID10": "060014206002011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 36927, "AWATER10": 0, "INTPTLAT10": "+37.8868308", "INTPTLON10": "-122.2883823" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.889486 ], [ -122.288818, 37.885151 ], [ -122.290192, 37.885151 ], [ -122.289505, 37.886235 ], [ -122.288818, 37.888944 ], [ -122.287445, 37.889486 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2013", "GEOID10": "060014206002013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27693, "AWATER10": 0, "INTPTLAT10": "+37.8861944", "INTPTLON10": "-122.2877578" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.888402 ], [ -122.286758, 37.887860 ], [ -122.288132, 37.884609 ], [ -122.288818, 37.885151 ], [ -122.288132, 37.888402 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2015", "GEOID10": "060014206002015", "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8164, "AWATER10": 0, "INTPTLAT10": "+37.8861594", "INTPTLON10": "-122.2868653" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.887318 ], [ -122.286072, 37.886235 ], [ -122.287445, 37.886235 ], [ -122.287445, 37.887318 ], [ -122.286072, 37.887318 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2014", "GEOID10": "060014206002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 41589, "AWATER10": 0, "INTPTLAT10": "+37.8849195", "INTPTLON10": "-122.2873798" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.887860 ], [ -122.286758, 37.884067 ], [ -122.288132, 37.884609 ], [ -122.288132, 37.886235 ], [ -122.286758, 37.886235 ], [ -122.286758, 37.887860 ], [ -122.285385, 37.887860 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1022", "GEOID10": "060014206001022", "NAME10": "Block 1022", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12213, "AWATER10": 0, "INTPTLAT10": "+37.8838753", "INTPTLON10": "-122.2886289" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.885151 ], [ -122.287445, 37.884067 ], [ -122.288818, 37.884067 ], [ -122.288818, 37.885151 ], [ -122.287445, 37.885151 ] ] ] } } +, +{ "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.8863390", "INTPTLON10": "-122.2851750" }, "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.8843388", "INTPTLON10": "-122.2859716" }, "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": "1013", "GEOID10": "060014206001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28788, "AWATER10": 0, "INTPTLAT10": "+37.8854489", "INTPTLON10": "-122.2845719" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284698, 37.887318 ], [ -122.284012, 37.886235 ], [ -122.286072, 37.884067 ], [ -122.284698, 37.887318 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1029", "GEOID10": "060014206001029", "NAME10": "Block 1029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16994, "AWATER10": 0, "INTPTLAT10": "+37.8853080", "INTPTLON10": "-122.2836511" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.886235 ], [ -122.284012, 37.885151 ], [ -122.284012, 37.886235 ], [ -122.283325, 37.886235 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1026", "GEOID10": "060014206001026", "NAME10": "Block 1026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 63728, "AWATER10": 0, "INTPTLAT10": "+37.8834939", "INTPTLON10": "-122.2837979" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282639, 37.885151 ], [ -122.283325, 37.882983 ], [ -122.286072, 37.882983 ], [ -122.286072, 37.884067 ], [ -122.282639, 37.885151 ] ] ] } } +, +{ "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.8901660", "INTPTLON10": "-122.2826890" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282639, 37.891654 ], [ -122.281952, 37.889486 ], [ -122.283325, 37.889486 ], [ -122.284012, 37.891112 ], [ -122.282639, 37.891654 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1017", "GEOID10": "060014206001017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24687, "AWATER10": 0, "INTPTLAT10": "+37.8879459", "INTPTLON10": "-122.2823713" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281952, 37.889486 ], [ -122.281952, 37.888944 ], [ -122.282639, 37.886777 ], [ -122.283325, 37.887318 ], [ -122.283325, 37.889486 ], [ -122.281952, 37.889486 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1016", "GEOID10": "060014206001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9100, "AWATER10": 0, "INTPTLAT10": "+37.8864607", "INTPTLON10": "-122.2830673" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281952, 37.887318 ], [ -122.281952, 37.886235 ], [ -122.283325, 37.886235 ], [ -122.283325, 37.887318 ], [ -122.281952, 37.887318 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1021", "GEOID10": "060014206001021", "NAME10": "Block 1021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18586, "AWATER10": 0, "INTPTLAT10": "+37.8834620", "INTPTLON10": "-122.2875836" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.884609 ], [ -122.286758, 37.884067 ], [ -122.287445, 37.882983 ], [ -122.288818, 37.883525 ], [ -122.288132, 37.884609 ] ] ] } } +, +{ "type": "Feature", "id": 12345, "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1031", "GEOID10": "060014206001031", "NAME10": "Block 1031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7920, "AWATER10": 0, "INTPTLAT10": "+37.8828579", "INTPTLON10": "-122.2863490" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.883525 ], [ -122.286758, 37.882441 ], [ -122.288132, 37.882441 ], [ -122.288132, 37.883525 ], [ -122.286758, 37.883525 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 40, "y": 98 }, "features": [ +{ "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.8928912", "INTPTLON10": "-122.3202957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.316284, 37.896801 ], [ -122.316284, 37.891383 ], [ -122.320061, 37.890028 ], [ -122.322807, 37.890028 ], [ -122.324181, 37.892466 ], [ -122.325897, 37.892737 ], [ -122.325897, 37.890841 ], [ -122.327614, 37.890841 ], [ -122.327614, 37.889757 ], [ -122.334824, 37.889757 ], [ -122.333450, 37.893008 ], [ -122.316284, 37.896801 ] ] ] } } +, +{ "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.8905867", "INTPTLON10": "-122.3181131" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.325897, 37.892737 ], [ -122.324181, 37.892466 ], [ -122.322807, 37.890028 ], [ -122.320061, 37.890028 ], [ -122.316284, 37.891383 ], [ -122.316284, 37.889757 ], [ -122.327614, 37.889757 ], [ -122.327614, 37.890841 ], [ -122.325897, 37.890841 ], [ -122.325897, 37.892737 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "GEOID10": "060014204001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.8842028", "INTPTLON10": "-122.3237534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.327614, 37.889757 ], [ -122.327614, 37.888944 ], [ -122.324867, 37.888131 ], [ -122.323151, 37.888402 ], [ -122.323151, 37.889215 ], [ -122.322464, 37.889486 ], [ -122.317314, 37.889486 ], [ -122.316284, 37.888402 ], [ -122.316284, 37.880544 ], [ -122.327957, 37.877563 ], [ -122.334824, 37.889757 ], [ -122.327614, 37.889757 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1011", "GEOID10": "060014204001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 542505, "AWATER10": 0, "INTPTLAT10": "+37.8862375", "INTPTLON10": "-122.3141377" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.316284, 37.889757 ], [ -122.316284, 37.888402 ], [ -122.317314, 37.889486 ], [ -122.322464, 37.889486 ], [ -122.323151, 37.889215 ], [ -122.323151, 37.888402 ], [ -122.324867, 37.888131 ], [ -122.327614, 37.888944 ], [ -122.327614, 37.889757 ], [ -122.316284, 37.889757 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 41, "y": 99 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "macarthur", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104486090991", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.144279, 37.740313 ], [ -122.141533, 37.738141 ], [ -122.140503, 37.736784 ], [ -122.138100, 37.725379 ], [ -122.133636, 37.718590 ], [ -122.131577, 37.714517 ], [ -122.129860, 37.712887 ], [ -122.125397, 37.710443 ], [ -122.121277, 37.707183 ], [ -122.117157, 37.705553 ], [ -122.109604, 37.700664 ], [ -122.104454, 37.695503 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104474748623", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.104111, 37.695503 ], [ -122.109261, 37.700664 ], [ -122.115784, 37.705010 ], [ -122.121277, 37.707455 ], [ -122.124023, 37.709628 ], [ -122.129860, 37.713159 ], [ -122.131577, 37.715060 ], [ -122.133293, 37.718590 ], [ -122.137413, 37.725108 ], [ -122.140503, 37.737327 ], [ -122.143936, 37.740313 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103690474250", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.143250, 37.738413 ], [ -122.147369, 37.740313 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 41, "y": 98 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "macarthur", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104486392881", "FULLNAME": "W Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.254829, 37.821446 ], [ -122.258949, 37.824430 ], [ -122.263756, 37.825786 ], [ -122.265816, 37.826599 ], [ -122.271996, 37.827684 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1102156510290", "FULLNAME": "W Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.254143, 37.820090 ], [ -122.254486, 37.820362 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1102654602215", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.253113, 37.817378 ], [ -122.252426, 37.816565 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1102638069562", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.241783, 37.807343 ], [ -122.237320, 37.805715 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1102156241736", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.194061, 37.786453 ], [ -122.194405, 37.786996 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104486090991", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.294655, 37.833107 ], [ -122.293625, 37.828768 ], [ -122.290878, 37.826870 ], [ -122.287788, 37.826599 ], [ -122.281265, 37.827413 ], [ -122.260323, 37.822260 ], [ -122.256203, 37.820362 ], [ -122.253113, 37.817921 ], [ -122.251740, 37.816293 ], [ -122.250366, 37.811954 ], [ -122.249336, 37.810598 ], [ -122.242126, 37.808428 ], [ -122.235603, 37.805444 ], [ -122.229080, 37.801104 ], [ -122.210884, 37.796763 ], [ -122.205391, 37.793779 ], [ -122.199554, 37.788624 ], [ -122.194061, 37.785639 ], [ -122.188911, 37.784283 ], [ -122.178268, 37.783740 ], [ -122.170029, 37.778856 ], [ -122.158356, 37.773429 ], [ -122.155266, 37.770715 ], [ -122.148399, 37.760401 ], [ -122.148056, 37.757959 ], [ -122.151833, 37.753615 ], [ -122.151833, 37.750901 ], [ -122.149429, 37.745743 ], [ -122.145996, 37.742757 ], [ -122.140846, 37.737055 ], [ -122.138100, 37.725379 ], [ -122.133636, 37.718590 ], [ -122.131577, 37.714517 ], [ -122.129860, 37.712887 ], [ -122.125397, 37.710443 ], [ -122.121277, 37.707183 ], [ -122.117157, 37.705553 ], [ -122.109604, 37.700664 ], [ -122.105827, 37.696861 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104474748623", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.105484, 37.696861 ], [ -122.109261, 37.700664 ], [ -122.115784, 37.705010 ], [ -122.121277, 37.707455 ], [ -122.125053, 37.710443 ], [ -122.129173, 37.712615 ], [ -122.131233, 37.714517 ], [ -122.133293, 37.718590 ], [ -122.137413, 37.725108 ], [ -122.140503, 37.737327 ], [ -122.143936, 37.740313 ], [ -122.145653, 37.742757 ], [ -122.148743, 37.745200 ], [ -122.151146, 37.749544 ], [ -122.151833, 37.751172 ], [ -122.151833, 37.752801 ], [ -122.151146, 37.754430 ], [ -122.148399, 37.757144 ], [ -122.148056, 37.759859 ], [ -122.155266, 37.770986 ], [ -122.158012, 37.773157 ], [ -122.170029, 37.779399 ], [ -122.177238, 37.783469 ], [ -122.179642, 37.784283 ], [ -122.188911, 37.784554 ], [ -122.193031, 37.785639 ], [ -122.199554, 37.788895 ], [ -122.205391, 37.794050 ], [ -122.209167, 37.795949 ], [ -122.214317, 37.797848 ], [ -122.228737, 37.801104 ], [ -122.236977, 37.806258 ], [ -122.241096, 37.808428 ], [ -122.248993, 37.810598 ], [ -122.250366, 37.812225 ], [ -122.252426, 37.817921 ], [ -122.255516, 37.820362 ], [ -122.258949, 37.822260 ], [ -122.281265, 37.827684 ], [ -122.284012, 37.827684 ], [ -122.288132, 37.826870 ], [ -122.289505, 37.827141 ], [ -122.293282, 37.828768 ], [ -122.293625, 37.830938 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1102155930810", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.185478, 37.775600 ], [ -122.185478, 37.775871 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103690483032", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.184105, 37.776685 ], [ -122.179985, 37.773971 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1102654601627", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.181702, 37.775057 ], [ -122.181358, 37.775057 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103690483026", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.176552, 37.771258 ], [ -122.175522, 37.770986 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1102954918511", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.172089, 37.769358 ], [ -122.167969, 37.766101 ], [ -122.163849, 37.761758 ], [ -122.161789, 37.756601 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103690383700", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.160416, 37.753073 ], [ -122.159042, 37.750087 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103690474249", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.159042, 37.750087 ], [ -122.158012, 37.748458 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103690474250", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.143250, 37.738413 ], [ -122.151833, 37.742485 ], [ -122.156639, 37.746286 ], [ -122.157326, 37.747643 ] ] } } +] } +, +{ "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.8928912", "INTPTLON10": "-122.3202957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.312508, 37.897614 ], [ -122.310448, 37.894905 ], [ -122.309418, 37.892466 ], [ -122.309418, 37.889757 ], [ -122.310104, 37.888944 ], [ -122.311134, 37.890299 ], [ -122.311478, 37.890028 ], [ -122.314911, 37.892466 ], [ -122.314568, 37.891925 ], [ -122.315941, 37.891925 ], [ -122.316284, 37.891383 ], [ -122.320061, 37.890028 ], [ -122.322807, 37.890028 ], [ -122.324181, 37.892466 ], [ -122.325897, 37.892737 ], [ -122.325897, 37.890841 ], [ -122.327614, 37.890841 ], [ -122.327614, 37.889757 ], [ -122.334824, 37.889757 ], [ -122.333450, 37.893008 ], [ -122.312508, 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.8905867", "INTPTLON10": "-122.3181131" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.309418, 37.892466 ], [ -122.309074, 37.888944 ], [ -122.309418, 37.887860 ], [ -122.311478, 37.889486 ], [ -122.327614, 37.889757 ], [ -122.327614, 37.890841 ], [ -122.325897, 37.890841 ], [ -122.325897, 37.892737 ], [ -122.324181, 37.892466 ], [ -122.322807, 37.890028 ], [ -122.320061, 37.890028 ], [ -122.316284, 37.891383 ], [ -122.315941, 37.891925 ], [ -122.314568, 37.891925 ], [ -122.314911, 37.892466 ], [ -122.311478, 37.890028 ], [ -122.311134, 37.890299 ], [ -122.310104, 37.888944 ], [ -122.309418, 37.889757 ], [ -122.309418, 37.892466 ] ] ], [ [ [ -122.309418, 37.892466 ], [ -122.311821, 37.896801 ], [ -122.309418, 37.893279 ], [ -122.309418, 37.892466 ] ] ] ] } } +, +{ "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.8946697", "INTPTLON10": "-122.3084294" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309418, 37.897885 ], [ -122.308044, 37.894092 ], [ -122.308044, 37.892196 ], [ -122.308388, 37.892196 ], [ -122.309418, 37.897885 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3005", "GEOID10": "060014203003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 30820, "AWATER10": 0, "INTPTLAT10": "+37.8910154", "INTPTLON10": "-122.3085406" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.311478, 37.897885 ], [ -122.309418, 37.894634 ], [ -122.309418, 37.894092 ], [ -122.312164, 37.897614 ], [ -122.311478, 37.897885 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3004", "GEOID10": "060014203003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59347, "AWATER10": 0, "INTPTLAT10": "+37.8955812", "INTPTLON10": "-122.3094534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309761, 37.897885 ], [ -122.309418, 37.897343 ], [ -122.308388, 37.894634 ], [ -122.308388, 37.890841 ], [ -122.309418, 37.894634 ], [ -122.311478, 37.897885 ], [ -122.309761, 37.897885 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3006", "GEOID10": "060014203003006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19563, "AWATER10": 24, "INTPTLAT10": "+37.8904059", "INTPTLON10": "-122.3086941" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.309418, 37.893279 ], [ -122.308388, 37.890299 ], [ -122.309074, 37.888944 ], [ -122.309418, 37.893279 ] ] ], [ [ [ -122.309418, 37.893279 ], [ -122.312164, 37.897614 ], [ -122.310791, 37.895989 ], [ -122.309418, 37.893279 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3001", "GEOID10": "060014203003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24651, "AWATER10": 0, "INTPTLAT10": "+37.8921989", "INTPTLON10": "-122.3075517" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307701, 37.893550 ], [ -122.307358, 37.892737 ], [ -122.307701, 37.889757 ], [ -122.307701, 37.893550 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3000", "GEOID10": "060014203003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27350, "AWATER10": 0, "INTPTLAT10": "+37.8907736", "INTPTLON10": "-122.3067658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309074, 37.898156 ], [ -122.306671, 37.892737 ], [ -122.306671, 37.890841 ], [ -122.307701, 37.889757 ], [ -122.307358, 37.892737 ], [ -122.309418, 37.897885 ], [ -122.309074, 37.898156 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3002", "GEOID10": "060014203003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9773, "AWATER10": 0, "INTPTLAT10": "+37.8920318", "INTPTLON10": "-122.3077138" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308388, 37.895447 ], [ -122.307701, 37.893279 ], [ -122.308044, 37.891112 ], [ -122.308388, 37.895447 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1006", "GEOID10": "060014202001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1461, "AWATER10": 0, "INTPTLAT10": "+37.8973748", "INTPTLON10": "-122.3012481" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301521, 37.898969 ], [ -122.301521, 37.898427 ], [ -122.302208, 37.898427 ], [ -122.302208, 37.898969 ], [ -122.301521, 37.898969 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1005", "GEOID10": "060014202001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14639, "AWATER10": 0, "INTPTLAT10": "+37.8976068", "INTPTLON10": "-122.3008394" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.898698 ], [ -122.300835, 37.898427 ], [ -122.300148, 37.897072 ], [ -122.301178, 37.896801 ], [ -122.301865, 37.898698 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "GEOID10": "060014202001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.8976015", "INTPTLON10": "-122.2999287" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.898427 ], [ -122.299461, 37.897072 ], [ -122.300148, 37.897072 ], [ -122.300835, 37.898427 ], [ -122.299805, 37.898427 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "GEOID10": "060014203002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.8949184", "INTPTLON10": "-122.3048891" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.898698 ], [ -122.301178, 37.896260 ], [ -122.302895, 37.895718 ], [ -122.302208, 37.893821 ], [ -122.302895, 37.893821 ], [ -122.303238, 37.894634 ], [ -122.303581, 37.893008 ], [ -122.303238, 37.891654 ], [ -122.304268, 37.890299 ], [ -122.306328, 37.889757 ], [ -122.306671, 37.892737 ], [ -122.309074, 37.898156 ], [ -122.301865, 37.898698 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "GEOID10": "060014203001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.8926328", "INTPTLON10": "-122.3029106" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.894634 ], [ -122.302551, 37.891925 ], [ -122.303238, 37.891654 ], [ -122.303581, 37.893008 ], [ -122.303238, 37.894634 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1001", "GEOID10": "060014203001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16165, "AWATER10": 0, "INTPTLAT10": "+37.8948170", "INTPTLON10": "-122.3018829" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.895989 ], [ -122.301178, 37.894092 ], [ -122.302208, 37.893821 ], [ -122.302895, 37.895718 ], [ -122.301865, 37.895989 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1014", "GEOID10": "060014202001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1324, "AWATER10": 0, "INTPTLAT10": "+37.8955459", "INTPTLON10": "-122.3006834" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.896530 ], [ -122.300491, 37.895989 ], [ -122.301178, 37.895989 ], [ -122.301178, 37.896530 ], [ -122.300491, 37.896530 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "GEOID10": "060014202001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.8959674", "INTPTLON10": "-122.3002912" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.897072 ], [ -122.299805, 37.895447 ], [ -122.300491, 37.895176 ], [ -122.300835, 37.896260 ], [ -122.301178, 37.896801 ], [ -122.300148, 37.897072 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1000", "GEOID10": "060014203001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16605, "AWATER10": 0, "INTPTLAT10": "+37.8950031", "INTPTLON10": "-122.3010393" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.896260 ], [ -122.300835, 37.895176 ], [ -122.300491, 37.894363 ], [ -122.301178, 37.894092 ], [ -122.301865, 37.895989 ], [ -122.301178, 37.896260 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1007", "GEOID10": "060014203001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16120, "AWATER10": 0, "INTPTLAT10": "+37.8927903", "INTPTLON10": "-122.3021281" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302208, 37.893821 ], [ -122.301521, 37.892196 ], [ -122.302551, 37.891925 ], [ -122.302895, 37.893821 ], [ -122.302208, 37.893821 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1002", "GEOID10": "060014203001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16535, "AWATER10": 0, "INTPTLAT10": "+37.8929602", "INTPTLON10": "-122.3012875" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.894092 ], [ -122.300835, 37.892196 ], [ -122.301521, 37.892196 ], [ -122.302208, 37.893821 ], [ -122.301178, 37.894092 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1003", "GEOID10": "060014203001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16635, "AWATER10": 0, "INTPTLAT10": "+37.8931288", "INTPTLON10": "-122.3004328" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.894363 ], [ -122.300148, 37.893550 ], [ -122.299805, 37.892466 ], [ -122.300835, 37.892196 ], [ -122.301178, 37.894092 ], [ -122.300491, 37.894363 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "GEOID10": "060014202003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.8928701", "INTPTLON10": "-122.2998265" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.893821 ], [ -122.299805, 37.893279 ], [ -122.300491, 37.893279 ], [ -122.300491, 37.893821 ], [ -122.299805, 37.893821 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "GEOID10": "060014204001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.8842028", "INTPTLON10": "-122.3237534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.327614, 37.889757 ], [ -122.327614, 37.888944 ], [ -122.324867, 37.888131 ], [ -122.323151, 37.888402 ], [ -122.323151, 37.889215 ], [ -122.322464, 37.889486 ], [ -122.317314, 37.889486 ], [ -122.315941, 37.887589 ], [ -122.315941, 37.886235 ], [ -122.316628, 37.886235 ], [ -122.316284, 37.885693 ], [ -122.317314, 37.885693 ], [ -122.315941, 37.885422 ], [ -122.315598, 37.884067 ], [ -122.312508, 37.881628 ], [ -122.327957, 37.877563 ], [ -122.334824, 37.889757 ], [ -122.327614, 37.889757 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1011", "GEOID10": "060014204001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 542505, "AWATER10": 0, "INTPTLAT10": "+37.8862375", "INTPTLON10": "-122.3141377" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.317314, 37.889486 ], [ -122.311478, 37.889486 ], [ -122.309418, 37.887860 ], [ -122.309761, 37.886506 ], [ -122.308388, 37.882441 ], [ -122.312508, 37.881628 ], [ -122.315598, 37.884067 ], [ -122.315941, 37.885422 ], [ -122.317314, 37.885693 ], [ -122.316284, 37.885693 ], [ -122.316628, 37.886235 ], [ -122.315941, 37.886235 ], [ -122.315941, 37.887589 ], [ -122.317314, 37.889486 ] ] ], [ [ [ -122.317314, 37.889486 ], [ -122.322464, 37.889486 ], [ -122.323151, 37.889215 ], [ -122.323151, 37.888402 ], [ -122.324867, 37.888131 ], [ -122.327614, 37.888944 ], [ -122.327614, 37.889757 ], [ -122.317314, 37.889486 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3011", "GEOID10": "060014203003011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10961, "AWATER10": 0, "INTPTLAT10": "+37.8885068", "INTPTLON10": "-122.3086806" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308388, 37.890299 ], [ -122.308388, 37.889215 ], [ -122.308731, 37.887589 ], [ -122.309074, 37.887589 ], [ -122.308388, 37.890299 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3016", "GEOID10": "060014203003016", "NAME10": "Block 3016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12044, "AWATER10": 0, "INTPTLAT10": "+37.8899556", "INTPTLON10": "-122.3067458" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.890841 ], [ -122.306671, 37.890299 ], [ -122.306328, 37.889757 ], [ -122.307701, 37.889486 ], [ -122.306671, 37.890841 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3012", "GEOID10": "060014203003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14539, "AWATER10": 0, "INTPTLAT10": "+37.8894024", "INTPTLON10": "-122.3080555" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.891112 ], [ -122.307701, 37.889757 ], [ -122.308731, 37.887860 ], [ -122.308044, 37.891112 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3029", "GEOID10": "060014203003029", "NAME10": "Block 3029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14565, "AWATER10": 0, "INTPTLAT10": "+37.8878852", "INTPTLON10": "-122.3078467" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307701, 37.889215 ], [ -122.307358, 37.887318 ], [ -122.308731, 37.887589 ], [ -122.307701, 37.889215 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3018", "GEOID10": "060014203003018", "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9739, "AWATER10": 0, "INTPTLAT10": "+37.8891261", "INTPTLON10": "-122.3066496" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306328, 37.889757 ], [ -122.305984, 37.889215 ], [ -122.307358, 37.888673 ], [ -122.307701, 37.889486 ], [ -122.306328, 37.889757 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3028", "GEOID10": "060014203003028", "NAME10": "Block 3028", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 444, "AWATER10": 0, "INTPTLAT10": "+37.8890070", "INTPTLON10": "-122.3053896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305641, 37.889215 ], [ -122.305641, 37.888673 ], [ -122.306328, 37.888673 ], [ -122.306328, 37.889215 ], [ -122.305641, 37.889215 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3014", "GEOID10": "060014203003014", "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10339, "AWATER10": 0, "INTPTLAT10": "+37.8884185", "INTPTLON10": "-122.3064403" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305984, 37.888944 ], [ -122.305641, 37.888402 ], [ -122.307358, 37.888131 ], [ -122.307358, 37.888673 ], [ -122.305984, 37.888944 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3013", "GEOID10": "060014203003013", "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7694, "AWATER10": 0, "INTPTLAT10": "+37.8877645", "INTPTLON10": "-122.3071265" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307701, 37.889757 ], [ -122.307014, 37.887589 ], [ -122.305641, 37.887589 ], [ -122.307358, 37.887318 ], [ -122.307701, 37.889757 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1009", "GEOID10": "060014204001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7572, "AWATER10": 0, "INTPTLAT10": "+37.8865874", "INTPTLON10": "-122.3090315" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309074, 37.887589 ], [ -122.308731, 37.887318 ], [ -122.309074, 37.885151 ], [ -122.309074, 37.887589 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1010", "GEOID10": "060014204001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6192, "AWATER10": 0, "INTPTLAT10": "+37.8856733", "INTPTLON10": "-122.3091896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309418, 37.887318 ], [ -122.309418, 37.886506 ], [ -122.309074, 37.885151 ], [ -122.309761, 37.886506 ], [ -122.309418, 37.887318 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1006", "GEOID10": "060014204001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59431, "AWATER10": 0, "INTPTLAT10": "+37.8849426", "INTPTLON10": "-122.3081455" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307358, 37.887318 ], [ -122.308044, 37.882170 ], [ -122.308388, 37.882441 ], [ -122.308731, 37.883525 ], [ -122.309074, 37.885151 ], [ -122.308731, 37.887318 ], [ -122.307358, 37.887318 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3031", "GEOID10": "060014203003031", "NAME10": "Block 3031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9685, "AWATER10": 0, "INTPTLAT10": "+37.8877891", "INTPTLON10": "-122.3061951" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305641, 37.888402 ], [ -122.305641, 37.887589 ], [ -122.307014, 37.887589 ], [ -122.307358, 37.888131 ], [ -122.305641, 37.888402 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1005", "GEOID10": "060014204001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 52400, "AWATER10": 0, "INTPTLAT10": "+37.8837458", "INTPTLON10": "-122.3069617" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307358, 37.887048 ], [ -122.306328, 37.883525 ], [ -122.305984, 37.882170 ], [ -122.308044, 37.882170 ], [ -122.307358, 37.887048 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3021", "GEOID10": "060014203003021", "NAME10": "Block 3021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11997, "AWATER10": 0, "INTPTLAT10": "+37.8902784", "INTPTLON10": "-122.3030396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.891654 ], [ -122.302551, 37.889757 ], [ -122.303581, 37.889486 ], [ -122.303581, 37.890570 ], [ -122.303238, 37.891654 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3019", "GEOID10": "060014203003019", "NAME10": "Block 3019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17581, "AWATER10": 0, "INTPTLAT10": "+37.8895455", "INTPTLON10": "-122.3046051" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303581, 37.890570 ], [ -122.303581, 37.889486 ], [ -122.305984, 37.889215 ], [ -122.306328, 37.889757 ], [ -122.303581, 37.890570 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3027", "GEOID10": "060014203003027", "NAME10": "Block 3027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13106, "AWATER10": 0, "INTPTLAT10": "+37.8882387", "INTPTLON10": "-122.3051246" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304955, 37.889215 ], [ -122.304611, 37.887589 ], [ -122.305641, 37.887589 ], [ -122.305984, 37.888944 ], [ -122.304955, 37.889215 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3026", "GEOID10": "060014203003026", "NAME10": "Block 3026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14219, "AWATER10": 0, "INTPTLAT10": "+37.8883405", "INTPTLON10": "-122.3042616" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304268, 37.889486 ], [ -122.303581, 37.887589 ], [ -122.304611, 37.887589 ], [ -122.304955, 37.889215 ], [ -122.304268, 37.889486 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3025", "GEOID10": "060014203003025", "NAME10": "Block 3025", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 406, "AWATER10": 0, "INTPTLAT10": "+37.8893398", "INTPTLON10": "-122.3036979" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.889757 ], [ -122.303238, 37.889215 ], [ -122.303925, 37.889215 ], [ -122.303925, 37.889757 ], [ -122.303238, 37.889757 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3024", "GEOID10": "060014203003024", "NAME10": "Block 3024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15240, "AWATER10": 0, "INTPTLAT10": "+37.8884411", "INTPTLON10": "-122.3034025" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303581, 37.889486 ], [ -122.302895, 37.887589 ], [ -122.303581, 37.887589 ], [ -122.304268, 37.889486 ], [ -122.303581, 37.889486 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "GEOID10": "060014203001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.8906969", "INTPTLON10": "-122.3023492" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.891925 ], [ -122.301865, 37.890028 ], [ -122.302551, 37.889757 ], [ -122.303238, 37.891654 ], [ -122.302551, 37.891925 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1006", "GEOID10": "060014203001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17308, "AWATER10": 0, "INTPTLAT10": "+37.8908584", "INTPTLON10": "-122.3015099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301521, 37.892196 ], [ -122.300835, 37.890028 ], [ -122.301865, 37.890028 ], [ -122.302551, 37.891925 ], [ -122.301521, 37.892196 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1004", "GEOID10": "060014203001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17893, "AWATER10": 0, "INTPTLAT10": "+37.8912006", "INTPTLON10": "-122.2998090" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.892466 ], [ -122.299805, 37.891925 ], [ -122.299118, 37.890299 ], [ -122.300148, 37.890299 ], [ -122.300835, 37.892196 ], [ -122.299805, 37.892466 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "GEOID10": "060014203001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.8910287", "INTPTLON10": "-122.3006658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.892196 ], [ -122.300148, 37.890299 ], [ -122.300835, 37.890028 ], [ -122.301521, 37.892196 ], [ -122.300835, 37.892196 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3023", "GEOID10": "060014203003023", "NAME10": "Block 3023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16332, "AWATER10": 0, "INTPTLAT10": "+37.8885408", "INTPTLON10": "-122.3025479" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.889757 ], [ -122.301865, 37.887860 ], [ -122.302895, 37.887589 ], [ -122.303581, 37.889486 ], [ -122.302551, 37.889757 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1010", "GEOID10": "060014203001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20386, "AWATER10": 0, "INTPTLAT10": "+37.8886345", "INTPTLON10": "-122.3016225" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.890028 ], [ -122.300835, 37.887860 ], [ -122.301865, 37.887860 ], [ -122.302551, 37.889757 ], [ -122.301865, 37.890028 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1011", "GEOID10": "060014203001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16453, "AWATER10": 0, "INTPTLAT10": "+37.8888638", "INTPTLON10": "-122.3008054" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.890028 ], [ -122.300148, 37.887860 ], [ -122.300835, 37.887860 ], [ -122.301865, 37.890028 ], [ -122.300835, 37.890028 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1015", "GEOID10": "060014203001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19773, "AWATER10": 0, "INTPTLAT10": "+37.8888596", "INTPTLON10": "-122.2999642" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.890299 ], [ -122.299461, 37.887860 ], [ -122.300148, 37.887860 ], [ -122.300835, 37.890028 ], [ -122.300148, 37.890299 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1002", "GEOID10": "060014204001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5453, "AWATER10": 0, "INTPTLAT10": "+37.8874129", "INTPTLON10": "-122.3045679" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302208, 37.887589 ], [ -122.307358, 37.887318 ], [ -122.305641, 37.887589 ], [ -122.302208, 37.887589 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1001", "GEOID10": "060014204001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 98716, "AWATER10": 0, "INTPTLAT10": "+37.8865962", "INTPTLON10": "-122.3039801" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.887860 ], [ -122.300835, 37.886506 ], [ -122.304611, 37.885964 ], [ -122.304611, 37.885422 ], [ -122.307014, 37.885693 ], [ -122.307358, 37.887318 ], [ -122.300835, 37.887860 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "GEOID10": "060014204001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.8847438", "INTPTLON10": "-122.3040957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304268, 37.885964 ], [ -122.303925, 37.884880 ], [ -122.303925, 37.883796 ], [ -122.304268, 37.883796 ], [ -122.304611, 37.885964 ], [ -122.304268, 37.885964 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "GEOID10": "060014204001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.8837071", "INTPTLON10": "-122.3049494" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307014, 37.885693 ], [ -122.304611, 37.885422 ], [ -122.304268, 37.883796 ], [ -122.303581, 37.883796 ], [ -122.303581, 37.882983 ], [ -122.302895, 37.883254 ], [ -122.302551, 37.882712 ], [ -122.305984, 37.882170 ], [ -122.307014, 37.885693 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1017", "GEOID10": "060014204001017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6144, "AWATER10": 0, "INTPTLAT10": "+37.8847470", "INTPTLON10": "-122.3037488" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304268, 37.885151 ], [ -122.303581, 37.885151 ], [ -122.303581, 37.884338 ], [ -122.304268, 37.884338 ], [ -122.304268, 37.885151 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1013", "GEOID10": "060014204001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9671, "AWATER10": 0, "INTPTLAT10": "+37.8848967", "INTPTLON10": "-122.3034182" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303581, 37.885964 ], [ -122.303238, 37.883796 ], [ -122.303581, 37.883796 ], [ -122.304268, 37.885964 ], [ -122.303581, 37.885964 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "GEOID10": "060014204001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.8846770", "INTPTLON10": "-122.3015769" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.886506 ], [ -122.300148, 37.883525 ], [ -122.302895, 37.883254 ], [ -122.303581, 37.885964 ], [ -122.300835, 37.886506 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1004", "GEOID10": "060014204001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5050, "AWATER10": 0, "INTPTLAT10": "+37.8833234", "INTPTLON10": "-122.3030968" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.883796 ], [ -122.302895, 37.883254 ], [ -122.303581, 37.882983 ], [ -122.303581, 37.883796 ], [ -122.303238, 37.883796 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "GEOID10": "060014204001020", "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.8829654", "INTPTLON10": "-122.3013966" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.883525 ], [ -122.300491, 37.883254 ], [ -122.302551, 37.882712 ], [ -122.302895, 37.883254 ], [ -122.301178, 37.883525 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "GEOID10": "060014202001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.8977494", "INTPTLON10": "-122.2990695" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.898698 ], [ -122.298775, 37.897343 ], [ -122.299461, 37.897072 ], [ -122.299805, 37.898427 ], [ -122.299118, 37.898698 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1002", "GEOID10": "060014202001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11372, "AWATER10": 0, "INTPTLAT10": "+37.8979512", "INTPTLON10": "-122.2982332" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.898969 ], [ -122.297745, 37.897614 ], [ -122.298775, 37.897343 ], [ -122.299118, 37.898698 ], [ -122.298088, 37.898969 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1001", "GEOID10": "060014202001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11928, "AWATER10": 0, "INTPTLAT10": "+37.8981515", "INTPTLON10": "-122.2974109" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.898969 ], [ -122.297058, 37.897614 ], [ -122.297745, 37.897614 ], [ -122.298088, 37.898969 ], [ -122.297401, 37.898969 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1000", "GEOID10": "060014202001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13452, "AWATER10": 0, "INTPTLAT10": "+37.8982712", "INTPTLON10": "-122.2964744" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.898969 ], [ -122.296028, 37.897885 ], [ -122.297058, 37.897614 ], [ -122.297401, 37.898969 ], [ -122.296371, 37.898969 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "GEOID10": "060014202001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.8966536", "INTPTLON10": "-122.2969317" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.897614 ], [ -122.296371, 37.895989 ], [ -122.297401, 37.895989 ], [ -122.297745, 37.897614 ], [ -122.297058, 37.897614 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1013", "GEOID10": "060014202001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14541, "AWATER10": 0, "INTPTLAT10": "+37.8968185", "INTPTLON10": "-122.2960835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296028, 37.897885 ], [ -122.295685, 37.896260 ], [ -122.296371, 37.895989 ], [ -122.297058, 37.897614 ], [ -122.296028, 37.897885 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1006", "GEOID10": "060014201001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14453, "AWATER10": 0, "INTPTLAT10": "+37.8983329", "INTPTLON10": "-122.2952807" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.898969 ], [ -122.294655, 37.897885 ], [ -122.296028, 37.897885 ], [ -122.296371, 37.898969 ], [ -122.294655, 37.898969 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "GEOID10": "060014202001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.8961439", "INTPTLON10": "-122.2994424" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299461, 37.897072 ], [ -122.298775, 37.895447 ], [ -122.299805, 37.895447 ], [ -122.300148, 37.897072 ], [ -122.299461, 37.897072 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "GEOID10": "060014202001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.8963113", "INTPTLON10": "-122.2986013" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.897343 ], [ -122.298088, 37.895718 ], [ -122.298775, 37.895447 ], [ -122.299461, 37.897072 ], [ -122.298775, 37.897343 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "GEOID10": "060014202003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.8945232", "INTPTLON10": "-122.2989229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.298431, 37.893821 ], [ -122.299118, 37.893821 ], [ -122.299805, 37.895447 ], [ -122.298775, 37.895447 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "GEOID10": "060014202001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.8964819", "INTPTLON10": "-122.2977622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.897614 ], [ -122.297401, 37.895989 ], [ -122.298088, 37.895718 ], [ -122.298775, 37.897343 ], [ -122.297745, 37.897614 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "GEOID10": "060014202003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.8946922", "INTPTLON10": "-122.2980853" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.895718 ], [ -122.297745, 37.894092 ], [ -122.298431, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.298088, 37.895718 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "GEOID10": "060014202002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.8948540", "INTPTLON10": "-122.2972427" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.895989 ], [ -122.296715, 37.894363 ], [ -122.297745, 37.894092 ], [ -122.298088, 37.895718 ], [ -122.297401, 37.895989 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "GEOID10": "060014202003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.8943454", "INTPTLON10": "-122.2997703" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.895447 ], [ -122.299118, 37.893821 ], [ -122.300148, 37.893550 ], [ -122.300491, 37.895176 ], [ -122.299805, 37.895447 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "GEOID10": "060014202003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.8927197", "INTPTLON10": "-122.2992493" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893821 ], [ -122.298775, 37.892196 ], [ -122.299461, 37.891925 ], [ -122.299805, 37.892466 ], [ -122.300148, 37.893550 ], [ -122.299118, 37.893821 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3006", "GEOID10": "060014202003006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14044, "AWATER10": 0, "INTPTLAT10": "+37.8928963", "INTPTLON10": "-122.2984024" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.893821 ], [ -122.297745, 37.892196 ], [ -122.298775, 37.892196 ], [ -122.299118, 37.893821 ], [ -122.298431, 37.893821 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "GEOID10": "060014202003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.8930639", "INTPTLON10": "-122.2975700" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.894092 ], [ -122.297058, 37.892466 ], [ -122.297745, 37.892196 ], [ -122.298431, 37.893821 ], [ -122.297745, 37.894092 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "GEOID10": "060014202002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.8950194", "INTPTLON10": "-122.2964053" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.895989 ], [ -122.296028, 37.894363 ], [ -122.296715, 37.894363 ], [ -122.297401, 37.895989 ], [ -122.296371, 37.895989 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2000", "GEOID10": "060014202002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7737, "AWATER10": 0, "INTPTLAT10": "+37.8960946", "INTPTLON10": "-122.2952742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296028, 37.897885 ], [ -122.294655, 37.894634 ], [ -122.294998, 37.894634 ], [ -122.296028, 37.897885 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1007", "GEOID10": "060014201001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17265, "AWATER10": 0, "INTPTLAT10": "+37.8966238", "INTPTLON10": "-122.2949725" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.897885 ], [ -122.294655, 37.894634 ], [ -122.296028, 37.897885 ], [ -122.294655, 37.897885 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2003", "GEOID10": "060014202002003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14449, "AWATER10": 0, "INTPTLAT10": "+37.8951947", "INTPTLON10": "-122.2955660" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.896260 ], [ -122.294998, 37.894634 ], [ -122.296028, 37.894363 ], [ -122.296371, 37.895989 ], [ -122.295685, 37.896260 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2007", "GEOID10": "060014202002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14053, "AWATER10": 0, "INTPTLAT10": "+37.8933931", "INTPTLON10": "-122.2958883" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296028, 37.894363 ], [ -122.295341, 37.892737 ], [ -122.296371, 37.892737 ], [ -122.296715, 37.894363 ], [ -122.296028, 37.894363 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2006", "GEOID10": "060014202002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14158, "AWATER10": 0, "INTPTLAT10": "+37.8932322", "INTPTLON10": "-122.2967302" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296715, 37.894363 ], [ -122.296371, 37.892737 ], [ -122.297058, 37.892466 ], [ -122.297745, 37.894092 ], [ -122.296715, 37.894363 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2002", "GEOID10": "060014202002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14523, "AWATER10": 0, "INTPTLAT10": "+37.8935661", "INTPTLON10": "-122.2950398" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.894634 ], [ -122.294655, 37.893008 ], [ -122.295341, 37.892737 ], [ -122.296028, 37.894363 ], [ -122.294998, 37.894634 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2001", "GEOID10": "060014202002001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3995, "AWATER10": 0, "INTPTLAT10": "+37.8936801", "INTPTLON10": "-122.2944928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.894634 ], [ -122.294312, 37.893008 ], [ -122.294998, 37.894634 ], [ -122.294655, 37.894634 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1005", "GEOID10": "060014201001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8083, "AWATER10": 0, "INTPTLAT10": "+37.8982104", "INTPTLON10": "-122.2941387" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.898969 ], [ -122.293968, 37.898698 ], [ -122.293968, 37.897885 ], [ -122.294655, 37.897885 ], [ -122.294655, 37.898969 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1004", "GEOID10": "060014201001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6640, "AWATER10": 0, "INTPTLAT10": "+37.8980962", "INTPTLON10": "-122.2932964" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293968, 37.898698 ], [ -122.292938, 37.898427 ], [ -122.292938, 37.897885 ], [ -122.293968, 37.897885 ], [ -122.293968, 37.898698 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1010", "GEOID10": "060014201001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2269, "AWATER10": 0, "INTPTLAT10": "+37.8971964", "INTPTLON10": "-122.2927567" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292595, 37.898156 ], [ -122.292595, 37.897614 ], [ -122.293282, 37.897614 ], [ -122.293282, 37.898156 ], [ -122.292595, 37.898156 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1002", "GEOID10": "060014201001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14980, "AWATER10": 0, "INTPTLAT10": "+37.8974821", "INTPTLON10": "-122.2921539" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.898427 ], [ -122.291908, 37.898156 ], [ -122.291908, 37.896801 ], [ -122.292938, 37.896801 ], [ -122.292938, 37.898427 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1001", "GEOID10": "060014201001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11297, "AWATER10": 0, "INTPTLAT10": "+37.8973215", "INTPTLON10": "-122.2912175" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290878, 37.898156 ], [ -122.290878, 37.896801 ], [ -122.291908, 37.896801 ], [ -122.291908, 37.898156 ], [ -122.290878, 37.898156 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1000", "GEOID10": "060014201001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10019, "AWATER10": 0, "INTPTLAT10": "+37.8972478", "INTPTLON10": "-122.2903402" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290878, 37.898156 ], [ -122.290192, 37.897885 ], [ -122.290192, 37.896801 ], [ -122.290878, 37.896801 ], [ -122.290878, 37.898156 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2005", "GEOID10": "060014201002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10320, "AWATER10": 0, "INTPTLAT10": "+37.8972288", "INTPTLON10": "-122.2894724" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289162, 37.897885 ], [ -122.289162, 37.896801 ], [ -122.290192, 37.896801 ], [ -122.290192, 37.897885 ], [ -122.289162, 37.897885 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1008", "GEOID10": "060014201001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25122, "AWATER10": 0, "INTPTLAT10": "+37.8962273", "INTPTLON10": "-122.2942136" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293968, 37.897885 ], [ -122.293968, 37.894905 ], [ -122.294655, 37.894634 ], [ -122.294655, 37.897885 ], [ -122.293968, 37.897885 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1009", "GEOID10": "060014201001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24911, "AWATER10": 0, "INTPTLAT10": "+37.8962389", "INTPTLON10": "-122.2933649" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.897885 ], [ -122.293282, 37.894905 ], [ -122.293968, 37.894905 ], [ -122.293968, 37.897885 ], [ -122.292938, 37.897885 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1011", "GEOID10": "060014201001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4495, "AWATER10": 0, "INTPTLAT10": "+37.8957842", "INTPTLON10": "-122.2928245" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.896801 ], [ -122.292938, 37.894905 ], [ -122.293282, 37.894905 ], [ -122.292938, 37.896801 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1016", "GEOID10": "060014201001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8255, "AWATER10": 0, "INTPTLAT10": "+37.8939086", "INTPTLON10": "-122.2941575" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293968, 37.894905 ], [ -122.294312, 37.893008 ], [ -122.294655, 37.894634 ], [ -122.293968, 37.894905 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1015", "GEOID10": "060014201001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16238, "AWATER10": 0, "INTPTLAT10": "+37.8938032", "INTPTLON10": "-122.2934559" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293282, 37.894905 ], [ -122.293282, 37.893008 ], [ -122.293968, 37.893008 ], [ -122.293968, 37.894905 ], [ -122.293282, 37.894905 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1014", "GEOID10": "060014201001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5007, "AWATER10": 0, "INTPTLAT10": "+37.8938437", "INTPTLON10": "-122.2929060" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.894905 ], [ -122.292938, 37.893008 ], [ -122.293282, 37.893008 ], [ -122.292938, 37.894905 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1013", "GEOID10": "060014201001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18897, "AWATER10": 0, "INTPTLAT10": "+37.8938347", "INTPTLON10": "-122.2923093" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.894905 ], [ -122.291908, 37.893008 ], [ -122.292938, 37.893008 ], [ -122.292938, 37.894905 ], [ -122.291908, 37.894905 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1012", "GEOID10": "060014201001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 48606, "AWATER10": 0, "INTPTLAT10": "+37.8957510", "INTPTLON10": "-122.2913507" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.896801 ], [ -122.290192, 37.894905 ], [ -122.292938, 37.894905 ], [ -122.292938, 37.896801 ], [ -122.290192, 37.896801 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2006", "GEOID10": "060014201002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15730, "AWATER10": 0, "INTPTLAT10": "+37.8956964", "INTPTLON10": "-122.2895702" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289162, 37.896801 ], [ -122.289505, 37.894905 ], [ -122.290192, 37.894905 ], [ -122.290192, 37.896801 ], [ -122.289162, 37.896801 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3001", "GEOID10": "060014201003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16246, "AWATER10": 0, "INTPTLAT10": "+37.8938831", "INTPTLON10": "-122.2913917" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291222, 37.894905 ], [ -122.291222, 37.893008 ], [ -122.291908, 37.893008 ], [ -122.291908, 37.894905 ], [ -122.291222, 37.894905 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3000", "GEOID10": "060014201003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15665, "AWATER10": 0, "INTPTLAT10": "+37.8938607", "INTPTLON10": "-122.2905229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.894905 ], [ -122.290192, 37.893008 ], [ -122.291222, 37.893008 ], [ -122.291222, 37.894905 ], [ -122.290192, 37.894905 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2015", "GEOID10": "060014201002015", "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15921, "AWATER10": 0, "INTPTLAT10": "+37.8938332", "INTPTLON10": "-122.2896635" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.894905 ], [ -122.289505, 37.893008 ], [ -122.290192, 37.893008 ], [ -122.290192, 37.894905 ], [ -122.289505, 37.894905 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2004", "GEOID10": "060014201002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11206, "AWATER10": 0, "INTPTLAT10": "+37.8972632", "INTPTLON10": "-122.2886022" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288475, 37.898156 ], [ -122.288475, 37.896801 ], [ -122.289162, 37.896801 ], [ -122.289162, 37.897885 ], [ -122.288475, 37.898156 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2002", "GEOID10": "060014201002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16183, "AWATER10": 0, "INTPTLAT10": "+37.8975006", "INTPTLON10": "-122.2876349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.898698 ], [ -122.287445, 37.896801 ], [ -122.288475, 37.896801 ], [ -122.288132, 37.898156 ], [ -122.287445, 37.898698 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2001", "GEOID10": "060014201002001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2708, "AWATER10": 0, "INTPTLAT10": "+37.8973380", "INTPTLON10": "-122.2871259" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.898427 ], [ -122.286758, 37.897885 ], [ -122.287445, 37.897885 ], [ -122.287445, 37.898427 ], [ -122.286758, 37.898427 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2007", "GEOID10": "060014201002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15930, "AWATER10": 0, "INTPTLAT10": "+37.8956694", "INTPTLON10": "-122.2886965" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288475, 37.896801 ], [ -122.288475, 37.894905 ], [ -122.289505, 37.894905 ], [ -122.289162, 37.896801 ], [ -122.288475, 37.896801 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2009", "GEOID10": "060014201002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15974, "AWATER10": 0, "INTPTLAT10": "+37.8956464", "INTPTLON10": "-122.2877473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.896801 ], [ -122.287445, 37.894905 ], [ -122.288475, 37.894905 ], [ -122.288475, 37.896801 ], [ -122.287445, 37.896801 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2010", "GEOID10": "060014201002010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3628, "AWATER10": 0, "INTPTLAT10": "+37.8956076", "INTPTLON10": "-122.2872058" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.896801 ], [ -122.287445, 37.894905 ], [ -122.287445, 37.896801 ], [ -122.287102, 37.896801 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2014", "GEOID10": "060014201002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16117, "AWATER10": 0, "INTPTLAT10": "+37.8938093", "INTPTLON10": "-122.2887874" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288475, 37.894905 ], [ -122.288475, 37.893008 ], [ -122.289505, 37.893008 ], [ -122.289505, 37.894905 ], [ -122.288475, 37.894905 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2013", "GEOID10": "060014201002013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1269, "AWATER10": 0, "INTPTLAT10": "+37.8937720", "INTPTLON10": "-122.2883131" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.895176 ], [ -122.288132, 37.894634 ], [ -122.288818, 37.894634 ], [ -122.288818, 37.895176 ], [ -122.288132, 37.895176 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2012", "GEOID10": "060014201002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16253, "AWATER10": 0, "INTPTLAT10": "+37.8937801", "INTPTLON10": "-122.2878360" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.894905 ], [ -122.287445, 37.893008 ], [ -122.288475, 37.893008 ], [ -122.288475, 37.894905 ], [ -122.287445, 37.894905 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2011", "GEOID10": "060014201002011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4556, "AWATER10": 0, "INTPTLAT10": "+37.8937317", "INTPTLON10": "-122.2872753" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287788, 37.894905 ], [ -122.287102, 37.894905 ], [ -122.287102, 37.894092 ], [ -122.287788, 37.894092 ], [ -122.287788, 37.894905 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3010", "GEOID10": "060014202003010", "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14291, "AWATER10": 0, "INTPTLAT10": "+37.8911018", "INTPTLON10": "-122.2987261" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.892196 ], [ -122.298088, 37.890570 ], [ -122.299118, 37.890299 ], [ -122.299461, 37.891925 ], [ -122.298775, 37.892196 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1013", "GEOID10": "060014203001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 568, "AWATER10": 0, "INTPTLAT10": "+37.8901726", "INTPTLON10": "-122.2994482" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.890570 ], [ -122.299805, 37.890028 ], [ -122.300491, 37.890028 ], [ -122.300491, 37.890570 ], [ -122.299805, 37.890570 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3009", "GEOID10": "060014202003009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15100, "AWATER10": 0, "INTPTLAT10": "+37.8912058", "INTPTLON10": "-122.2978563" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.892196 ], [ -122.297401, 37.890570 ], [ -122.298088, 37.890570 ], [ -122.298431, 37.890841 ], [ -122.298775, 37.892196 ], [ -122.297745, 37.892196 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1014", "GEOID10": "060014203001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21543, "AWATER10": 0, "INTPTLAT10": "+37.8889340", "INTPTLON10": "-122.2990835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.890299 ], [ -122.298431, 37.887860 ], [ -122.299461, 37.887860 ], [ -122.300148, 37.890299 ], [ -122.299118, 37.890299 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1008", "GEOID10": "060014205001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3061, "AWATER10": 0, "INTPTLAT10": "+37.8890168", "INTPTLON10": "-122.2985896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.888131 ], [ -122.298088, 37.887589 ], [ -122.298775, 37.887589 ], [ -122.298775, 37.888131 ], [ -122.298088, 37.888131 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1007", "GEOID10": "060014205001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 32096, "AWATER10": 0, "INTPTLAT10": "+37.8884580", "INTPTLON10": "-122.2979153" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.890299 ], [ -122.298088, 37.889757 ], [ -122.297058, 37.887048 ], [ -122.298088, 37.886777 ], [ -122.299118, 37.890299 ], [ -122.298088, 37.890299 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3008", "GEOID10": "060014202003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16353, "AWATER10": 0, "INTPTLAT10": "+37.8913200", "INTPTLON10": "-122.2970017" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.892466 ], [ -122.296371, 37.890570 ], [ -122.297401, 37.890570 ], [ -122.297401, 37.890841 ], [ -122.297745, 37.892196 ], [ -122.297058, 37.892466 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2012", "GEOID10": "060014202002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17230, "AWATER10": 0, "INTPTLAT10": "+37.8914257", "INTPTLON10": "-122.2961445" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.892737 ], [ -122.295685, 37.890570 ], [ -122.296371, 37.890570 ], [ -122.297058, 37.892466 ], [ -122.296371, 37.892737 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2008", "GEOID10": "060014202002008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18377, "AWATER10": 0, "INTPTLAT10": "+37.8915386", "INTPTLON10": "-122.2952863" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295341, 37.892737 ], [ -122.294655, 37.890570 ], [ -122.295685, 37.890570 ], [ -122.296371, 37.892737 ], [ -122.295341, 37.892737 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2009", "GEOID10": "060014202002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19818, "AWATER10": 0, "INTPTLAT10": "+37.8916581", "INTPTLON10": "-122.2944181" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.893008 ], [ -122.293625, 37.890570 ], [ -122.294655, 37.890570 ], [ -122.295341, 37.892737 ], [ -122.294655, 37.893008 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1015", "GEOID10": "060014205001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29154, "AWATER10": 0, "INTPTLAT10": "+37.8886165", "INTPTLON10": "-122.2970361" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.890570 ], [ -122.296371, 37.887318 ], [ -122.297058, 37.887048 ], [ -122.298088, 37.890299 ], [ -122.297401, 37.890570 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1014", "GEOID10": "060014205001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28068, "AWATER10": 0, "INTPTLAT10": "+37.8887349", "INTPTLON10": "-122.2961756" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.890570 ], [ -122.295341, 37.887318 ], [ -122.296371, 37.887318 ], [ -122.297401, 37.890570 ], [ -122.296371, 37.890570 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1010", "GEOID10": "060014205001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26672, "AWATER10": 0, "INTPTLAT10": "+37.8888488", "INTPTLON10": "-122.2953196" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.890570 ], [ -122.294655, 37.887589 ], [ -122.295341, 37.887318 ], [ -122.296371, 37.890570 ], [ -122.295685, 37.890570 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1011", "GEOID10": "060014205001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26518, "AWATER10": 0, "INTPTLAT10": "+37.8889300", "INTPTLON10": "-122.2944569" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.890570 ], [ -122.293625, 37.887589 ], [ -122.294655, 37.887589 ], [ -122.295685, 37.890570 ], [ -122.294655, 37.890570 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1000", "GEOID10": "060014204001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11282, "AWATER10": 0, "INTPTLAT10": "+37.8873799", "INTPTLON10": "-122.2988707" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.887860 ], [ -122.298088, 37.886777 ], [ -122.301178, 37.887860 ], [ -122.298431, 37.887860 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1015", "GEOID10": "060014204001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 79019, "AWATER10": 0, "INTPTLAT10": "+37.8858279", "INTPTLON10": "-122.2991231" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.887860 ], [ -122.298088, 37.886777 ], [ -122.297401, 37.884609 ], [ -122.298431, 37.884609 ], [ -122.300148, 37.884067 ], [ -122.301178, 37.887860 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1018", "GEOID10": "060014204001018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22069, "AWATER10": 0, "INTPTLAT10": "+37.8835790", "INTPTLON10": "-122.2990681" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.884609 ], [ -122.298088, 37.883254 ], [ -122.300491, 37.883254 ], [ -122.299805, 37.884338 ], [ -122.298431, 37.884609 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2007", "GEOID10": "060014205002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2761, "AWATER10": 0, "INTPTLAT10": "+37.8856449", "INTPTLON10": "-122.2975097" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.887048 ], [ -122.297745, 37.886506 ], [ -122.298431, 37.886506 ], [ -122.298431, 37.887048 ], [ -122.297745, 37.887048 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1019", "GEOID10": "060014204001019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11921, "AWATER10": 0, "INTPTLAT10": "+37.8839314", "INTPTLON10": "-122.2976037" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.884609 ], [ -122.297058, 37.883525 ], [ -122.298088, 37.883254 ], [ -122.298431, 37.884609 ], [ -122.297401, 37.884609 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1012", "GEOID10": "060014205001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 615, "AWATER10": 0, "INTPTLAT10": "+37.8872675", "INTPTLON10": "-122.2948079" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.887589 ], [ -122.294998, 37.887048 ], [ -122.295685, 37.887048 ], [ -122.295685, 37.887589 ], [ -122.294998, 37.887589 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2003", "GEOID10": "060014205002003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24754, "AWATER10": 0, "INTPTLAT10": "+37.8858112", "INTPTLON10": "-122.2943382" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.887318 ], [ -122.293625, 37.884609 ], [ -122.294655, 37.884338 ], [ -122.295341, 37.887318 ], [ -122.294655, 37.887318 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2006", "GEOID10": "060014205002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25305, "AWATER10": 0, "INTPTLAT10": "+37.8853070", "INTPTLON10": "-122.2968750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.887048 ], [ -122.296028, 37.884067 ], [ -122.297058, 37.884067 ], [ -122.298088, 37.886777 ], [ -122.297058, 37.887048 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2005", "GEOID10": "060014205002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24545, "AWATER10": 0, "INTPTLAT10": "+37.8854914", "INTPTLON10": "-122.2960301" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.887048 ], [ -122.295341, 37.884338 ], [ -122.296028, 37.884067 ], [ -122.297058, 37.887048 ], [ -122.296371, 37.887048 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2004", "GEOID10": "060014205002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24848, "AWATER10": 0, "INTPTLAT10": "+37.8856461", "INTPTLON10": "-122.2951842" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295341, 37.887318 ], [ -122.294655, 37.884338 ], [ -122.295341, 37.884338 ], [ -122.296371, 37.887048 ], [ -122.295341, 37.887318 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2012", "GEOID10": "060014205002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12579, "AWATER10": 0, "INTPTLAT10": "+37.8835272", "INTPTLON10": "-122.2945038" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.884338 ], [ -122.293968, 37.882983 ], [ -122.294998, 37.882983 ], [ -122.295341, 37.884338 ], [ -122.294655, 37.884338 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2010", "GEOID10": "060014202002010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8445, "AWATER10": 0, "INTPTLAT10": "+37.8914852", "INTPTLON10": "-122.2936957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.893008 ], [ -122.293282, 37.891112 ], [ -122.293625, 37.890570 ], [ -122.294655, 37.893008 ], [ -122.294312, 37.893008 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1017", "GEOID10": "060014201001017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10769, "AWATER10": 0, "INTPTLAT10": "+37.8921881", "INTPTLON10": "-122.2934770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293282, 37.893008 ], [ -122.293282, 37.891112 ], [ -122.294312, 37.893008 ], [ -122.293282, 37.893008 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1018", "GEOID10": "060014201001018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4538, "AWATER10": 0, "INTPTLAT10": "+37.8918502", "INTPTLON10": "-122.2929851" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293282, 37.893008 ], [ -122.292938, 37.890841 ], [ -122.293282, 37.891112 ], [ -122.293282, 37.893008 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1019", "GEOID10": "060014201001019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20486, "AWATER10": 0, "INTPTLAT10": "+37.8917135", "INTPTLON10": "-122.2923947" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.893008 ], [ -122.292252, 37.890841 ], [ -122.292938, 37.890841 ], [ -122.292938, 37.893008 ], [ -122.291908, 37.893008 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3004", "GEOID10": "060014206003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 428, "AWATER10": 0, "INTPTLAT10": "+37.8905994", "INTPTLON10": "-122.2924155" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.891112 ], [ -122.291565, 37.890570 ], [ -122.292252, 37.890570 ], [ -122.292252, 37.891112 ], [ -122.291565, 37.891112 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1006", "GEOID10": "060014205001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25175, "AWATER10": 0, "INTPTLAT10": "+37.8890495", "INTPTLON10": "-122.2935928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890570 ], [ -122.292938, 37.887860 ], [ -122.293625, 37.887589 ], [ -122.294655, 37.890570 ], [ -122.293625, 37.890570 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1009", "GEOID10": "060014205001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5818, "AWATER10": 0, "INTPTLAT10": "+37.8888891", "INTPTLON10": "-122.2929659" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890570 ], [ -122.292595, 37.887860 ], [ -122.292938, 37.887860 ], [ -122.293625, 37.890570 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3006", "GEOID10": "060014206003006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11825, "AWATER10": 0, "INTPTLAT10": "+37.8893267", "INTPTLON10": "-122.2928119" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.890570 ], [ -122.292252, 37.887860 ], [ -122.292595, 37.887860 ], [ -122.293968, 37.890570 ], [ -122.292938, 37.890570 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3007", "GEOID10": "060014206003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27950, "AWATER10": 0, "INTPTLAT10": "+37.8892518", "INTPTLON10": "-122.2920141" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.890841 ], [ -122.291222, 37.888131 ], [ -122.292252, 37.887860 ], [ -122.292938, 37.890570 ], [ -122.291908, 37.890841 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3002", "GEOID10": "060014201003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19544, "AWATER10": 0, "INTPTLAT10": "+37.8918042", "INTPTLON10": "-122.2914745" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291222, 37.893008 ], [ -122.291222, 37.890841 ], [ -122.292252, 37.890841 ], [ -122.291908, 37.893008 ], [ -122.291222, 37.893008 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3003", "GEOID10": "060014201003003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18064, "AWATER10": 0, "INTPTLAT10": "+37.8918237", "INTPTLON10": "-122.2906157" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.893008 ], [ -122.290535, 37.890841 ], [ -122.291222, 37.890841 ], [ -122.291222, 37.893008 ], [ -122.290192, 37.893008 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3004", "GEOID10": "060014201003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18095, "AWATER10": 0, "INTPTLAT10": "+37.8918241", "INTPTLON10": "-122.2897641" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289505, 37.893008 ], [ -122.289505, 37.890841 ], [ -122.290535, 37.890841 ], [ -122.290192, 37.893008 ], [ -122.289505, 37.893008 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3005", "GEOID10": "060014201003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16537, "AWATER10": 0, "INTPTLAT10": "+37.8919062", "INTPTLON10": "-122.2889102" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288475, 37.893008 ], [ -122.288475, 37.891654 ], [ -122.289505, 37.890841 ], [ -122.289505, 37.893008 ], [ -122.288475, 37.893008 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3002", "GEOID10": "060014206003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26786, "AWATER10": 0, "INTPTLAT10": "+37.8894113", "INTPTLON10": "-122.2909643" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291222, 37.890841 ], [ -122.290192, 37.888402 ], [ -122.291222, 37.888131 ], [ -122.291908, 37.890841 ], [ -122.291222, 37.890841 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3001", "GEOID10": "060014206003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22452, "AWATER10": 0, "INTPTLAT10": "+37.8895187", "INTPTLON10": "-122.2899595" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.890841 ], [ -122.289162, 37.888673 ], [ -122.290192, 37.888402 ], [ -122.290878, 37.890841 ], [ -122.290192, 37.890841 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3000", "GEOID10": "060014206003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21823, "AWATER10": 0, "INTPTLAT10": "+37.8896695", "INTPTLON10": "-122.2890200" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289162, 37.890841 ], [ -122.288475, 37.888673 ], [ -122.289162, 37.888673 ], [ -122.290192, 37.890841 ], [ -122.289162, 37.890841 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2002", "GEOID10": "060014205002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24228, "AWATER10": 0, "INTPTLAT10": "+37.8859970", "INTPTLON10": "-122.2935084" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.887589 ], [ -122.292938, 37.884880 ], [ -122.293625, 37.884609 ], [ -122.294655, 37.887318 ], [ -122.293625, 37.887589 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2001", "GEOID10": "060014205002001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26078, "AWATER10": 0, "INTPTLAT10": "+37.8861973", "INTPTLON10": "-122.2926742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.887860 ], [ -122.291908, 37.884880 ], [ -122.292938, 37.884880 ], [ -122.293625, 37.887589 ], [ -122.292938, 37.887860 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2000", "GEOID10": "060014205002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6434, "AWATER10": 0, "INTPTLAT10": "+37.8862789", "INTPTLON10": "-122.2921162" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292595, 37.887860 ], [ -122.291908, 37.884880 ], [ -122.292938, 37.887860 ], [ -122.292595, 37.887860 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "GEOID10": "060014206003015", "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.8863229", "INTPTLON10": "-122.2918172" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292252, 37.887860 ], [ -122.291222, 37.885151 ], [ -122.291565, 37.885151 ], [ -122.292595, 37.887860 ], [ -122.292252, 37.887860 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2013", "GEOID10": "060014205002013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12945, "AWATER10": 0, "INTPTLAT10": "+37.8836932", "INTPTLON10": "-122.2936333" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.884609 ], [ -122.293625, 37.884338 ], [ -122.293282, 37.883254 ], [ -122.293968, 37.882983 ], [ -122.294655, 37.884338 ], [ -122.293625, 37.884609 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2014", "GEOID10": "060014205002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13013, "AWATER10": 0, "INTPTLAT10": "+37.8838362", "INTPTLON10": "-122.2927774" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.884880 ], [ -122.292595, 37.884609 ], [ -122.292252, 37.883254 ], [ -122.293282, 37.883254 ], [ -122.293625, 37.884609 ], [ -122.292938, 37.884880 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2015", "GEOID10": "060014205002015", "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13985, "AWATER10": 0, "INTPTLAT10": "+37.8839739", "INTPTLON10": "-122.2919263" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.884880 ], [ -122.291565, 37.883254 ], [ -122.292252, 37.883254 ], [ -122.292938, 37.884880 ], [ -122.291908, 37.884880 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3014", "GEOID10": "060014206003014", "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29422, "AWATER10": 0, "INTPTLAT10": "+37.8864950", "INTPTLON10": "-122.2911376" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291222, 37.888131 ], [ -122.290192, 37.885422 ], [ -122.291222, 37.885151 ], [ -122.292252, 37.887860 ], [ -122.291222, 37.888131 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "GEOID10": "060014206003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.8875706", "INTPTLON10": "-122.2892190" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288475, 37.888673 ], [ -122.289505, 37.886235 ], [ -122.290192, 37.888402 ], [ -122.288475, 37.888673 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3013", "GEOID10": "060014206003013", "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 31172, "AWATER10": 0, "INTPTLAT10": "+37.8866087", "INTPTLON10": "-122.2901174" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.888402 ], [ -122.289505, 37.886235 ], [ -122.289848, 37.884609 ], [ -122.290535, 37.885693 ], [ -122.291222, 37.888131 ], [ -122.290192, 37.888402 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3017", "GEOID10": "060014206003017", "NAME10": "Block 3017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6343, "AWATER10": 0, "INTPTLAT10": "+37.8840797", "INTPTLON10": "-122.2909809" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291222, 37.885151 ], [ -122.290535, 37.883254 ], [ -122.291222, 37.884067 ], [ -122.291565, 37.885151 ], [ -122.291222, 37.885151 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2016", "GEOID10": "060014205002016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5264, "AWATER10": 0, "INTPTLAT10": "+37.8839955", "INTPTLON10": "-122.2913154" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.885151 ], [ -122.291222, 37.883254 ], [ -122.291908, 37.884880 ], [ -122.291565, 37.885151 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3018", "GEOID10": "060014206003018", "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14557, "AWATER10": 0, "INTPTLAT10": "+37.8843696", "INTPTLON10": "-122.2904413" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.885422 ], [ -122.289848, 37.884609 ], [ -122.290535, 37.883254 ], [ -122.291222, 37.885151 ], [ -122.290192, 37.885422 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "GEOID10": "060014206002016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.8853992", "INTPTLON10": "-122.2894711" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289162, 37.886235 ], [ -122.289162, 37.885693 ], [ -122.289848, 37.885693 ], [ -122.289848, 37.886235 ], [ -122.289162, 37.886235 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1023", "GEOID10": "060014206001023", "NAME10": "Block 1023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15260, "AWATER10": 0, "INTPTLAT10": "+37.8840099", "INTPTLON10": "-122.2895305" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289848, 37.885151 ], [ -122.288818, 37.884880 ], [ -122.289505, 37.883525 ], [ -122.290192, 37.883254 ], [ -122.289848, 37.885151 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2010", "GEOID10": "060014205002010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6161, "AWATER10": 0, "INTPTLAT10": "+37.8835363", "INTPTLON10": "-122.2962204" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296028, 37.884067 ], [ -122.296028, 37.883254 ], [ -122.297058, 37.884067 ], [ -122.296028, 37.884067 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2011", "GEOID10": "060014205002011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10125, "AWATER10": 0, "INTPTLAT10": "+37.8834818", "INTPTLON10": "-122.2953591" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295341, 37.884338 ], [ -122.294998, 37.882983 ], [ -122.296028, 37.883254 ], [ -122.296028, 37.884067 ], [ -122.295341, 37.884338 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3007", "GEOID10": "060014201003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18637, "AWATER10": 0, "INTPTLAT10": "+37.8917853", "INTPTLON10": "-122.2879697" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.893008 ], [ -122.287788, 37.891112 ], [ -122.288818, 37.890841 ], [ -122.288475, 37.893008 ], [ -122.287445, 37.893008 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3008", "GEOID10": "060014201003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5620, "AWATER10": 0, "INTPTLAT10": "+37.8918093", "INTPTLON10": "-122.2873239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.892466 ], [ -122.287445, 37.892466 ], [ -122.287445, 37.891654 ], [ -122.288132, 37.891654 ], [ -122.288132, 37.892466 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "GEOID10": "060014206002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.8896802", "INTPTLON10": "-122.2884737" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288475, 37.891112 ], [ -122.288475, 37.890570 ], [ -122.289162, 37.890570 ], [ -122.289162, 37.891112 ], [ -122.288475, 37.891112 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2005", "GEOID10": "060014206002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21301, "AWATER10": 0, "INTPTLAT10": "+37.8898284", "INTPTLON10": "-122.2879267" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287788, 37.890841 ], [ -122.287102, 37.889215 ], [ -122.288132, 37.888944 ], [ -122.288818, 37.890841 ], [ -122.287788, 37.890841 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2002", "GEOID10": "060014206002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16691, "AWATER10": 0, "INTPTLAT10": "+37.8900585", "INTPTLON10": "-122.2869139" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.891112 ], [ -122.286415, 37.889486 ], [ -122.287102, 37.889215 ], [ -122.287788, 37.890841 ], [ -122.286758, 37.891112 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2010", "GEOID10": "060014206002010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15494, "AWATER10": 0, "INTPTLAT10": "+37.8884410", "INTPTLON10": "-122.2866366" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286415, 37.889486 ], [ -122.286415, 37.887860 ], [ -122.287788, 37.888131 ], [ -122.287102, 37.889215 ], [ -122.286415, 37.889486 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2001", "GEOID10": "060014206002001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14791, "AWATER10": 0, "INTPTLAT10": "+37.8902095", "INTPTLON10": "-122.2859011" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285728, 37.891112 ], [ -122.285385, 37.889757 ], [ -122.286415, 37.889486 ], [ -122.286758, 37.891112 ], [ -122.285728, 37.891112 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1002", "GEOID10": "060014206001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 424, "AWATER10": 0, "INTPTLAT10": "+37.8910153", "INTPTLON10": "-122.2850935" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284355, 37.891383 ], [ -122.284355, 37.890841 ], [ -122.285042, 37.890841 ], [ -122.285042, 37.891383 ], [ -122.284355, 37.891383 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1003", "GEOID10": "060014206001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16431, "AWATER10": 0, "INTPTLAT10": "+37.8902144", "INTPTLON10": "-122.2848310" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284698, 37.891112 ], [ -122.284355, 37.889486 ], [ -122.285385, 37.889757 ], [ -122.285728, 37.891112 ], [ -122.284698, 37.891112 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1004", "GEOID10": "060014206001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19676, "AWATER10": 0, "INTPTLAT10": "+37.8901108", "INTPTLON10": "-122.2837239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283669, 37.891112 ], [ -122.282982, 37.889215 ], [ -122.284355, 37.889486 ], [ -122.284698, 37.891112 ], [ -122.283669, 37.891112 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2009", "GEOID10": "060014206002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19896, "AWATER10": 0, "INTPTLAT10": "+37.8884164", "INTPTLON10": "-122.2856099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.889486 ], [ -122.285042, 37.888673 ], [ -122.285385, 37.887589 ], [ -122.286415, 37.887860 ], [ -122.286415, 37.889486 ], [ -122.285385, 37.889486 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1008", "GEOID10": "060014206001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 832, "AWATER10": 0, "INTPTLAT10": "+37.8893913", "INTPTLON10": "-122.2845906" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285042, 37.890028 ], [ -122.285042, 37.889486 ], [ -122.285728, 37.889486 ], [ -122.285728, 37.890028 ], [ -122.285042, 37.890028 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1009", "GEOID10": "060014206001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22493, "AWATER10": 0, "INTPTLAT10": "+37.8883323", "INTPTLON10": "-122.2844715" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.889486 ], [ -122.284012, 37.889215 ], [ -122.284355, 37.887318 ], [ -122.285385, 37.887589 ], [ -122.285385, 37.889486 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1014", "GEOID10": "060014206001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22296, "AWATER10": 0, "INTPTLAT10": "+37.8880279", "INTPTLON10": "-122.2834249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282982, 37.889215 ], [ -122.283325, 37.887048 ], [ -122.283669, 37.887048 ], [ -122.284355, 37.887318 ], [ -122.283669, 37.889215 ], [ -122.282982, 37.889215 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2011", "GEOID10": "060014206002011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 36927, "AWATER10": 0, "INTPTLAT10": "+37.8868308", "INTPTLON10": "-122.2883823" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.889215 ], [ -122.288818, 37.884880 ], [ -122.289848, 37.884880 ], [ -122.289505, 37.885964 ], [ -122.288475, 37.888673 ], [ -122.287102, 37.889215 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2013", "GEOID10": "060014206002013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27693, "AWATER10": 0, "INTPTLAT10": "+37.8861944", "INTPTLON10": "-122.2877578" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287788, 37.888131 ], [ -122.286758, 37.887860 ], [ -122.288132, 37.884609 ], [ -122.288818, 37.884880 ], [ -122.287788, 37.888131 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2015", "GEOID10": "060014206002015", "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8164, "AWATER10": 0, "INTPTLAT10": "+37.8861594", "INTPTLON10": "-122.2868653" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286415, 37.886777 ], [ -122.286758, 37.885693 ], [ -122.287788, 37.885964 ], [ -122.287445, 37.886777 ], [ -122.286415, 37.886777 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2014", "GEOID10": "060014206002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 41589, "AWATER10": 0, "INTPTLAT10": "+37.8849195", "INTPTLON10": "-122.2873798" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.887860 ], [ -122.285385, 37.887589 ], [ -122.286758, 37.884067 ], [ -122.288132, 37.884338 ], [ -122.287788, 37.885964 ], [ -122.286758, 37.885964 ], [ -122.286415, 37.886777 ], [ -122.287445, 37.886777 ], [ -122.286758, 37.887860 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1022", "GEOID10": "060014206001022", "NAME10": "Block 1022", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12213, "AWATER10": 0, "INTPTLAT10": "+37.8838753", "INTPTLON10": "-122.2886289" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.884880 ], [ -122.288132, 37.884609 ], [ -122.288818, 37.883254 ], [ -122.289505, 37.883525 ], [ -122.288818, 37.884880 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1019", "GEOID10": "060014206001019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1466, "AWATER10": 0, "INTPTLAT10": "+37.8847579", "INTPTLON10": "-122.2863241" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285728, 37.885964 ], [ -122.285728, 37.885422 ], [ -122.286415, 37.885422 ], [ -122.286415, 37.885964 ], [ -122.285728, 37.885964 ] ] ] } } +, +{ "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.8863390", "INTPTLON10": "-122.2851750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.887589 ], [ -122.284355, 37.887318 ], [ -122.285385, 37.885422 ], [ -122.286072, 37.885693 ], [ -122.285385, 37.887589 ] ] ] } } +, +{ "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.8843388", "INTPTLON10": "-122.2859716" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.885693 ], [ -122.285385, 37.885422 ], [ -122.285728, 37.883796 ], [ -122.287102, 37.882983 ], [ -122.286758, 37.884067 ], [ -122.286072, 37.885693 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1025", "GEOID10": "060014206001025", "NAME10": "Block 1025", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1018, "AWATER10": 0, "INTPTLAT10": "+37.8838716", "INTPTLON10": "-122.2850766" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284355, 37.884609 ], [ -122.284355, 37.884067 ], [ -122.285042, 37.884067 ], [ -122.285042, 37.884609 ], [ -122.284355, 37.884609 ] ] ] } } +, +{ "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.8854489", "INTPTLON10": "-122.2845719" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284355, 37.887318 ], [ -122.283669, 37.887048 ], [ -122.284012, 37.886235 ], [ -122.284698, 37.884338 ], [ -122.285728, 37.883796 ], [ -122.284355, 37.887318 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1029", "GEOID10": "060014206001029", "NAME10": "Block 1029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16994, "AWATER10": 0, "INTPTLAT10": "+37.8853080", "INTPTLON10": "-122.2836511" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282982, 37.886235 ], [ -122.283669, 37.884880 ], [ -122.284698, 37.884338 ], [ -122.284012, 37.886235 ], [ -122.282982, 37.886235 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1026", "GEOID10": "060014206001026", "NAME10": "Block 1026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 63728, "AWATER10": 0, "INTPTLAT10": "+37.8834939", "INTPTLON10": "-122.2837979" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282295, 37.885151 ], [ -122.282982, 37.882712 ], [ -122.286072, 37.882712 ], [ -122.285728, 37.883796 ], [ -122.282295, 37.885151 ] ] ] } } +, +{ "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.8901660", "INTPTLON10": "-122.2826890" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282639, 37.891383 ], [ -122.281952, 37.889486 ], [ -122.282982, 37.889215 ], [ -122.283669, 37.891112 ], [ -122.282639, 37.891383 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1017", "GEOID10": "060014206001017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24687, "AWATER10": 0, "INTPTLAT10": "+37.8879459", "INTPTLON10": "-122.2823713" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281952, 37.889486 ], [ -122.281952, 37.888673 ], [ -122.282295, 37.886777 ], [ -122.283325, 37.887048 ], [ -122.282982, 37.889215 ], [ -122.281952, 37.889486 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1016", "GEOID10": "060014206001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9100, "AWATER10": 0, "INTPTLAT10": "+37.8864607", "INTPTLON10": "-122.2830673" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283669, 37.887048 ], [ -122.282295, 37.886777 ], [ -122.282982, 37.886235 ], [ -122.284012, 37.886235 ], [ -122.283669, 37.887048 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1028", "GEOID10": "060014206001028", "NAME10": "Block 1028", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1037, "AWATER10": 0, "INTPTLAT10": "+37.8849026", "INTPTLON10": "-122.2826795" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281952, 37.885422 ], [ -122.281952, 37.884880 ], [ -122.282639, 37.884880 ], [ -122.282639, 37.885422 ], [ -122.281952, 37.885422 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1021", "GEOID10": "060014206001021", "NAME10": "Block 1021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18586, "AWATER10": 0, "INTPTLAT10": "+37.8834620", "INTPTLON10": "-122.2875836" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.884338 ], [ -122.286758, 37.884067 ], [ -122.287102, 37.882983 ], [ -122.287445, 37.882712 ], [ -122.288818, 37.883254 ], [ -122.288132, 37.884338 ] ] ] } } +, +{ "type": "Feature", "id": 12345, "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1031", "GEOID10": "060014206001031", "NAME10": "Block 1031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7920, "AWATER10": 0, "INTPTLAT10": "+37.8828579", "INTPTLON10": "-122.2863490" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285728, 37.883796 ], [ -122.286072, 37.882712 ], [ -122.287445, 37.882712 ], [ -122.285728, 37.883796 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 9, "x": 81, "y": 197 }, "features": [ +{ "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.8928912", "INTPTLON10": "-122.3202957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.330017, 37.893686 ], [ -122.330017, 37.889757 ], [ -122.334824, 37.889622 ], [ -122.333450, 37.892873 ], [ -122.330017, 37.893686 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "GEOID10": "060014204001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.8842028", "INTPTLON10": "-122.3237534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.330017, 37.889757 ], [ -122.330017, 37.881493 ], [ -122.334824, 37.889622 ], [ -122.330017, 37.889757 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 9, "x": 82, "y": 198 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "macarthur", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104486090991", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.138615, 37.729453 ], [ -122.137928, 37.725379 ], [ -122.137413, 37.724293 ], [ -122.134666, 37.720763 ], [ -122.133465, 37.718590 ], [ -122.131405, 37.714381 ], [ -122.129860, 37.712751 ], [ -122.127972, 37.711665 ], [ -122.125397, 37.710307 ], [ -122.121105, 37.707183 ], [ -122.117157, 37.705418 ], [ -122.109432, 37.700664 ], [ -122.104454, 37.695503 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104474748623", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.104111, 37.695503 ], [ -122.109089, 37.700664 ], [ -122.115784, 37.704874 ], [ -122.121105, 37.707319 ], [ -122.125053, 37.710307 ], [ -122.129173, 37.712615 ], [ -122.130890, 37.714245 ], [ -122.133121, 37.718590 ], [ -122.137413, 37.724972 ], [ -122.138443, 37.729453 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1102406970094", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.139130, 37.729453 ], [ -122.139130, 37.728910 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1102406970095", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.139130, 37.729453 ], [ -122.139130, 37.728910 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 9, "x": 82, "y": 197 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "macarthur", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104486392881", "FULLNAME": "W Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.254829, 37.821446 ], [ -122.255001, 37.821989 ], [ -122.256203, 37.822802 ], [ -122.258778, 37.824430 ], [ -122.263756, 37.825650 ], [ -122.265644, 37.826599 ], [ -122.271824, 37.827548 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1102156510290", "FULLNAME": "W Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.254143, 37.819955 ], [ -122.254314, 37.820362 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1102654602215", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.252941, 37.817243 ], [ -122.252426, 37.816429 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1102638069562", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.241611, 37.807343 ], [ -122.241268, 37.806936 ], [ -122.239723, 37.806800 ], [ -122.237320, 37.805715 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1102156241736", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.194061, 37.786453 ], [ -122.194405, 37.786860 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104486090991", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.294655, 37.833107 ], [ -122.294140, 37.832158 ], [ -122.293797, 37.828904 ], [ -122.292938, 37.827955 ], [ -122.290707, 37.826735 ], [ -122.289677, 37.826463 ], [ -122.287788, 37.826463 ], [ -122.283325, 37.827277 ], [ -122.281265, 37.827277 ], [ -122.268391, 37.824158 ], [ -122.262383, 37.822938 ], [ -122.259121, 37.821853 ], [ -122.256031, 37.820362 ], [ -122.252941, 37.817921 ], [ -122.251740, 37.816293 ], [ -122.250366, 37.811818 ], [ -122.249165, 37.810598 ], [ -122.241955, 37.808292 ], [ -122.235432, 37.805444 ], [ -122.229767, 37.801375 ], [ -122.228909, 37.800968 ], [ -122.217236, 37.798391 ], [ -122.210884, 37.796628 ], [ -122.205219, 37.793779 ], [ -122.200756, 37.789302 ], [ -122.199554, 37.788488 ], [ -122.193890, 37.785639 ], [ -122.191486, 37.784825 ], [ -122.188740, 37.784283 ], [ -122.179298, 37.783876 ], [ -122.178268, 37.783604 ], [ -122.169857, 37.778856 ], [ -122.164192, 37.776414 ], [ -122.158184, 37.773293 ], [ -122.155266, 37.770715 ], [ -122.152519, 37.766101 ], [ -122.150631, 37.763930 ], [ -122.148399, 37.760401 ], [ -122.148056, 37.758773 ], [ -122.148056, 37.757823 ], [ -122.148743, 37.756601 ], [ -122.151661, 37.753615 ], [ -122.152004, 37.752122 ], [ -122.151833, 37.750765 ], [ -122.149944, 37.746557 ], [ -122.148914, 37.745064 ], [ -122.145824, 37.742621 ], [ -122.144108, 37.740313 ], [ -122.141533, 37.738141 ], [ -122.140675, 37.737055 ], [ -122.138443, 37.728774 ], [ -122.137928, 37.725379 ], [ -122.137070, 37.723750 ], [ -122.134666, 37.720763 ], [ -122.133465, 37.718590 ], [ -122.131405, 37.714381 ], [ -122.129860, 37.712751 ], [ -122.127972, 37.711665 ], [ -122.125397, 37.710307 ], [ -122.121964, 37.707726 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104474748623", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.121620, 37.707726 ], [ -122.125053, 37.710307 ], [ -122.128143, 37.711936 ], [ -122.129688, 37.713159 ], [ -122.131405, 37.715060 ], [ -122.133121, 37.718590 ], [ -122.137413, 37.724972 ], [ -122.138271, 37.729045 ], [ -122.140503, 37.737327 ], [ -122.141361, 37.738413 ], [ -122.143764, 37.740313 ], [ -122.145653, 37.742757 ], [ -122.149086, 37.745472 ], [ -122.151146, 37.749544 ], [ -122.151833, 37.751172 ], [ -122.151661, 37.753073 ], [ -122.150974, 37.754294 ], [ -122.148228, 37.756873 ], [ -122.147884, 37.758094 ], [ -122.147884, 37.759859 ], [ -122.148743, 37.761623 ], [ -122.152348, 37.766237 ], [ -122.155266, 37.770986 ], [ -122.157841, 37.773157 ], [ -122.164192, 37.776549 ], [ -122.170029, 37.779263 ], [ -122.173977, 37.781298 ], [ -122.177067, 37.783333 ], [ -122.179470, 37.784147 ], [ -122.188911, 37.784554 ], [ -122.193031, 37.785639 ], [ -122.199554, 37.788760 ], [ -122.201099, 37.789845 ], [ -122.203846, 37.792829 ], [ -122.205219, 37.794050 ], [ -122.208996, 37.795949 ], [ -122.211399, 37.797034 ], [ -122.214146, 37.797713 ], [ -122.219810, 37.799205 ], [ -122.228565, 37.800968 ], [ -122.229939, 37.801646 ], [ -122.234745, 37.805308 ], [ -122.237320, 37.806529 ], [ -122.241440, 37.808428 ], [ -122.248821, 37.810598 ], [ -122.249508, 37.811140 ], [ -122.250366, 37.812089 ], [ -122.251568, 37.816293 ], [ -122.252426, 37.817785 ], [ -122.253284, 37.818734 ], [ -122.255344, 37.820226 ], [ -122.258949, 37.822124 ], [ -122.262039, 37.823074 ], [ -122.269764, 37.824701 ], [ -122.281094, 37.827548 ], [ -122.283325, 37.827684 ], [ -122.286758, 37.826870 ], [ -122.288132, 37.826735 ], [ -122.289333, 37.827006 ], [ -122.292080, 37.827955 ], [ -122.293110, 37.828768 ], [ -122.293453, 37.829853 ], [ -122.293453, 37.830938 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1102155930810", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.185478, 37.775600 ], [ -122.185307, 37.775735 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103690483032", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.184105, 37.776685 ], [ -122.179813, 37.773971 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1102654601627", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.181530, 37.775057 ], [ -122.181187, 37.774921 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103690483026", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.176552, 37.771258 ], [ -122.175522, 37.770850 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1102654601663", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.169857, 37.767594 ], [ -122.170029, 37.767729 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1102954918511", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.172089, 37.769222 ], [ -122.168140, 37.766508 ], [ -122.163849, 37.761623 ], [ -122.163162, 37.760808 ], [ -122.161789, 37.756601 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103690383700", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.160416, 37.752937 ], [ -122.159901, 37.751444 ], [ -122.158871, 37.750087 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103690474249", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.158871, 37.750087 ], [ -122.157841, 37.748322 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103690474250", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.143078, 37.738277 ], [ -122.151833, 37.742485 ], [ -122.153721, 37.744250 ], [ -122.156467, 37.746286 ], [ -122.157326, 37.747508 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485645649", "FULLNAME": "W Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.279892, 37.828768 ], [ -122.284698, 37.828226 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485605278", "FULLNAME": "W Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.279892, 37.828768 ], [ -122.281952, 37.828226 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1102156217102", "FULLNAME": "W Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.279205, 37.828768 ], [ -122.272339, 37.827684 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104475134288", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.254486, 37.820633 ], [ -122.255173, 37.822260 ], [ -122.258606, 37.824430 ], [ -122.266846, 37.827141 ], [ -122.279892, 37.828768 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104475134436", "FULLNAME": "W Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.254486, 37.820633 ], [ -122.255173, 37.822260 ], [ -122.258606, 37.824430 ], [ -122.266846, 37.827141 ], [ -122.275772, 37.828226 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1102407366406", "FULLNAME": "W Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.254486, 37.820090 ], [ -122.255173, 37.821718 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485773833", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.253113, 37.817378 ], [ -122.255173, 37.821718 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1105089436004", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.252426, 37.816836 ], [ -122.250366, 37.810869 ], [ -122.233887, 37.804359 ], [ -122.229767, 37.801104 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469713187", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.242126, 37.807614 ], [ -122.241440, 37.807614 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1102156248968", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.237320, 37.805986 ], [ -122.235947, 37.805444 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1102638078801", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.229767, 37.801646 ], [ -122.228394, 37.801646 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1105281275689", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.228394, 37.801646 ], [ -122.220840, 37.800019 ], [ -122.218781, 37.801104 ], [ -122.205734, 37.797848 ], [ -122.194061, 37.786453 ], [ -122.188568, 37.784283 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103717593123", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.228394, 37.801646 ], [ -122.220840, 37.800019 ], [ -122.218781, 37.801104 ], [ -122.207794, 37.798933 ], [ -122.202301, 37.795678 ], [ -122.193375, 37.785911 ], [ -122.187881, 37.784825 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1105281275688", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.194061, 37.786453 ], [ -122.192688, 37.785368 ], [ -122.189255, 37.784283 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1105281275434", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.189255, 37.784283 ], [ -122.188568, 37.784283 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1105281275687", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.189255, 37.784283 ], [ -122.187195, 37.780484 ], [ -122.188568, 37.777770 ], [ -122.185822, 37.775600 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1105281275692", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.188568, 37.784283 ], [ -122.187195, 37.780484 ], [ -122.188568, 37.777770 ], [ -122.185822, 37.775600 ], [ -122.184448, 37.776685 ], [ -122.181702, 37.775057 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1102406970092", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.181702, 37.775057 ], [ -122.176895, 37.771258 ], [ -122.172089, 37.769629 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1102406970093", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.172775, 37.769629 ], [ -122.170029, 37.768001 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1105089465114", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.170029, 37.768001 ], [ -122.163849, 37.760944 ], [ -122.160416, 37.751715 ], [ -122.156982, 37.746286 ], [ -122.152176, 37.742485 ], [ -122.146683, 37.739770 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1102954189105", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.161789, 37.756058 ], [ -122.159042, 37.750087 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1105089465116", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.143250, 37.738684 ], [ -122.141190, 37.735969 ], [ -122.139130, 37.730539 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1102406970094", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.139130, 37.730539 ], [ -122.139130, 37.728910 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1102406970095", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.139130, 37.730539 ], [ -122.139130, 37.728910 ] ] } } +] } +, +{ "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.8928912", "INTPTLON10": "-122.3202957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.312508, 37.897479 ], [ -122.312679, 37.897072 ], [ -122.311649, 37.896937 ], [ -122.311649, 37.896260 ], [ -122.311134, 37.896124 ], [ -122.311306, 37.895853 ], [ -122.310791, 37.895582 ], [ -122.310276, 37.894769 ], [ -122.309246, 37.892331 ], [ -122.309418, 37.889757 ], [ -122.309933, 37.888809 ], [ -122.310963, 37.889757 ], [ -122.311134, 37.890299 ], [ -122.311478, 37.890028 ], [ -122.312851, 37.891247 ], [ -122.313709, 37.891925 ], [ -122.314396, 37.892060 ], [ -122.314739, 37.892466 ], [ -122.314568, 37.891925 ], [ -122.315941, 37.891925 ], [ -122.316113, 37.891247 ], [ -122.317657, 37.890976 ], [ -122.319889, 37.890028 ], [ -122.322807, 37.890028 ], [ -122.324009, 37.892466 ], [ -122.325726, 37.892602 ], [ -122.325897, 37.892331 ], [ -122.325554, 37.892060 ], [ -122.325726, 37.890841 ], [ -122.327442, 37.890841 ], [ -122.327442, 37.891518 ], [ -122.327614, 37.891518 ], [ -122.327614, 37.889757 ], [ -122.334824, 37.889622 ], [ -122.333450, 37.892873 ], [ -122.312508, 37.897479 ] ] ] } } +, +{ "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.8905867", "INTPTLON10": "-122.3181131" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.310791, 37.895582 ], [ -122.310104, 37.894769 ], [ -122.309246, 37.893144 ], [ -122.308903, 37.890570 ], [ -122.309074, 37.888809 ], [ -122.309246, 37.887860 ], [ -122.311306, 37.889486 ], [ -122.327614, 37.889757 ], [ -122.327614, 37.891518 ], [ -122.327442, 37.891518 ], [ -122.327442, 37.890841 ], [ -122.325897, 37.890841 ], [ -122.325554, 37.891518 ], [ -122.325897, 37.892602 ], [ -122.324009, 37.892466 ], [ -122.322807, 37.890028 ], [ -122.319889, 37.890028 ], [ -122.317657, 37.890976 ], [ -122.316113, 37.891247 ], [ -122.315941, 37.891925 ], [ -122.314568, 37.891925 ], [ -122.314739, 37.892466 ], [ -122.314396, 37.892060 ], [ -122.313709, 37.891925 ], [ -122.312851, 37.891247 ], [ -122.311478, 37.890028 ], [ -122.311134, 37.890299 ], [ -122.310963, 37.889757 ], [ -122.309933, 37.888809 ], [ -122.309418, 37.889757 ], [ -122.309246, 37.892331 ], [ -122.310276, 37.894769 ], [ -122.310791, 37.895582 ] ] ], [ [ [ -122.311134, 37.896124 ], [ -122.311649, 37.896260 ], [ -122.311649, 37.896801 ], [ -122.311134, 37.896124 ] ] ], [ [ [ -122.311134, 37.896124 ], [ -122.310791, 37.895582 ], [ -122.311306, 37.895853 ], [ -122.311134, 37.896124 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3007", "GEOID10": "060014203003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3648, "AWATER10": 0, "INTPTLAT10": "+37.8971393", "INTPTLON10": "-122.3121267" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.312164, 37.897479 ], [ -122.311649, 37.896937 ], [ -122.312508, 37.896937 ], [ -122.312508, 37.897479 ], [ -122.312164, 37.897479 ] ] ] } } +, +{ "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.8946697", "INTPTLON10": "-122.3084294" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309418, 37.897885 ], [ -122.308044, 37.894092 ], [ -122.307873, 37.892873 ], [ -122.308044, 37.892196 ], [ -122.308388, 37.892196 ], [ -122.308388, 37.894498 ], [ -122.309418, 37.897343 ], [ -122.309589, 37.897885 ], [ -122.309418, 37.897885 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3005", "GEOID10": "060014203003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 30820, "AWATER10": 0, "INTPTLAT10": "+37.8910154", "INTPTLON10": "-122.3085406" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.311478, 37.897750 ], [ -122.309418, 37.894634 ], [ -122.308216, 37.890705 ], [ -122.308388, 37.890163 ], [ -122.309418, 37.893957 ], [ -122.311993, 37.897614 ], [ -122.311478, 37.897750 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3004", "GEOID10": "060014203003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59347, "AWATER10": 0, "INTPTLAT10": "+37.8955812", "INTPTLON10": "-122.3094534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309589, 37.897885 ], [ -122.309418, 37.897343 ], [ -122.308388, 37.894498 ], [ -122.308388, 37.892331 ], [ -122.308044, 37.890976 ], [ -122.308216, 37.890705 ], [ -122.309418, 37.894634 ], [ -122.311478, 37.897750 ], [ -122.310963, 37.897885 ], [ -122.309589, 37.897885 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3006", "GEOID10": "060014203003006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19563, "AWATER10": 24, "INTPTLAT10": "+37.8904059", "INTPTLON10": "-122.3086941" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.309246, 37.893144 ], [ -122.308388, 37.890163 ], [ -122.309074, 37.888809 ], [ -122.308903, 37.890570 ], [ -122.309246, 37.893144 ] ] ], [ [ [ -122.310104, 37.894769 ], [ -122.311649, 37.896937 ], [ -122.312164, 37.897479 ], [ -122.311993, 37.897614 ], [ -122.310619, 37.895853 ], [ -122.310104, 37.894769 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3001", "GEOID10": "060014203003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24651, "AWATER10": 0, "INTPTLAT10": "+37.8921989", "INTPTLON10": "-122.3075517" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308388, 37.895311 ], [ -122.307186, 37.892602 ], [ -122.307186, 37.890976 ], [ -122.307529, 37.889622 ], [ -122.308044, 37.890976 ], [ -122.307701, 37.893415 ], [ -122.308388, 37.895311 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3000", "GEOID10": "060014203003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27350, "AWATER10": 0, "INTPTLAT10": "+37.8907736", "INTPTLON10": "-122.3067658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309074, 37.898021 ], [ -122.306671, 37.892737 ], [ -122.306671, 37.892331 ], [ -122.306499, 37.890841 ], [ -122.306843, 37.890705 ], [ -122.307529, 37.889757 ], [ -122.307186, 37.891247 ], [ -122.307186, 37.892602 ], [ -122.309418, 37.897885 ], [ -122.309074, 37.898021 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3002", "GEOID10": "060014203003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9773, "AWATER10": 0, "INTPTLAT10": "+37.8920318", "INTPTLON10": "-122.3077138" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.307873, 37.892331 ], [ -122.308044, 37.890976 ], [ -122.308388, 37.892196 ], [ -122.307873, 37.892331 ] ] ], [ [ [ -122.307873, 37.892331 ], [ -122.307873, 37.893144 ], [ -122.308388, 37.895311 ], [ -122.307701, 37.893144 ], [ -122.307873, 37.892331 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1006", "GEOID10": "060014202001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1461, "AWATER10": 0, "INTPTLAT10": "+37.8973748", "INTPTLON10": "-122.3012481" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301693, 37.898562 ], [ -122.301006, 37.896801 ], [ -122.301178, 37.896801 ], [ -122.301693, 37.898562 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1005", "GEOID10": "060014202001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14639, "AWATER10": 0, "INTPTLAT10": "+37.8976068", "INTPTLON10": "-122.3008394" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301693, 37.898562 ], [ -122.300663, 37.898427 ], [ -122.300148, 37.896937 ], [ -122.301006, 37.896801 ], [ -122.301693, 37.898562 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "GEOID10": "060014202001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.8976015", "INTPTLON10": "-122.2999287" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300663, 37.898427 ], [ -122.299805, 37.898291 ], [ -122.299290, 37.897072 ], [ -122.300148, 37.896937 ], [ -122.300663, 37.898427 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "GEOID10": "060014203002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.8949184", "INTPTLON10": "-122.3048891" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301693, 37.898562 ], [ -122.301006, 37.896124 ], [ -122.302723, 37.895718 ], [ -122.302036, 37.893821 ], [ -122.302895, 37.893686 ], [ -122.303238, 37.894634 ], [ -122.303238, 37.893550 ], [ -122.303581, 37.892873 ], [ -122.303238, 37.891654 ], [ -122.303581, 37.890570 ], [ -122.304096, 37.890163 ], [ -122.306156, 37.889622 ], [ -122.306843, 37.891789 ], [ -122.306671, 37.892737 ], [ -122.309074, 37.898021 ], [ -122.305470, 37.898427 ], [ -122.301693, 37.898562 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "GEOID10": "060014203001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.8926328", "INTPTLON10": "-122.3029106" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.894634 ], [ -122.302380, 37.891789 ], [ -122.303238, 37.891654 ], [ -122.303581, 37.892873 ], [ -122.303238, 37.893550 ], [ -122.303238, 37.894634 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1001", "GEOID10": "060014203001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16165, "AWATER10": 0, "INTPTLAT10": "+37.8948170", "INTPTLON10": "-122.3018829" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.895853 ], [ -122.301178, 37.894092 ], [ -122.302036, 37.893821 ], [ -122.302723, 37.895718 ], [ -122.301865, 37.895853 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1007", "GEOID10": "060014202001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 914, "AWATER10": 0, "INTPTLAT10": "+37.8963621", "INTPTLON10": "-122.3009413" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.896801 ], [ -122.300835, 37.896124 ], [ -122.301006, 37.896124 ], [ -122.301178, 37.896801 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1014", "GEOID10": "060014202001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1324, "AWATER10": 0, "INTPTLAT10": "+37.8955459", "INTPTLON10": "-122.3006834" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.896124 ], [ -122.300491, 37.895176 ], [ -122.301006, 37.896124 ], [ -122.300835, 37.896124 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "GEOID10": "060014202001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.8959674", "INTPTLON10": "-122.3002912" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.896937 ], [ -122.299633, 37.895311 ], [ -122.300491, 37.895176 ], [ -122.300835, 37.896124 ], [ -122.301006, 37.896801 ], [ -122.300148, 37.896937 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1000", "GEOID10": "060014203001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16605, "AWATER10": 0, "INTPTLAT10": "+37.8950031", "INTPTLON10": "-122.3010393" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301006, 37.896124 ], [ -122.300663, 37.895176 ], [ -122.300491, 37.894228 ], [ -122.301178, 37.894092 ], [ -122.301865, 37.895853 ], [ -122.301006, 37.896124 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1007", "GEOID10": "060014203001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16120, "AWATER10": 0, "INTPTLAT10": "+37.8927903", "INTPTLON10": "-122.3021281" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302036, 37.893821 ], [ -122.301521, 37.892060 ], [ -122.302380, 37.891789 ], [ -122.302895, 37.893686 ], [ -122.302036, 37.893821 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1002", "GEOID10": "060014203001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16535, "AWATER10": 0, "INTPTLAT10": "+37.8929602", "INTPTLON10": "-122.3012875" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.894092 ], [ -122.300663, 37.892196 ], [ -122.301521, 37.892060 ], [ -122.302036, 37.893821 ], [ -122.301178, 37.894092 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3003", "GEOID10": "060014202003003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2234, "AWATER10": 0, "INTPTLAT10": "+37.8942520", "INTPTLON10": "-122.3002730" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.895176 ], [ -122.300148, 37.893550 ], [ -122.300663, 37.894905 ], [ -122.300491, 37.895176 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1003", "GEOID10": "060014203001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16635, "AWATER10": 0, "INTPTLAT10": "+37.8931288", "INTPTLON10": "-122.3004328" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.894228 ], [ -122.300148, 37.893550 ], [ -122.299805, 37.892331 ], [ -122.300663, 37.892196 ], [ -122.301178, 37.894092 ], [ -122.300491, 37.894228 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "GEOID10": "060014202003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.8928701", "INTPTLON10": "-122.2998265" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299976, 37.893550 ], [ -122.299633, 37.892331 ], [ -122.300148, 37.893550 ], [ -122.299976, 37.893550 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "GEOID10": "060014204001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.8842028", "INTPTLON10": "-122.3237534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.327614, 37.889757 ], [ -122.327614, 37.888809 ], [ -122.327099, 37.888809 ], [ -122.324696, 37.887996 ], [ -122.322979, 37.888402 ], [ -122.322979, 37.889080 ], [ -122.322292, 37.889486 ], [ -122.317314, 37.889351 ], [ -122.315941, 37.887454 ], [ -122.315941, 37.886235 ], [ -122.316628, 37.886235 ], [ -122.316456, 37.885964 ], [ -122.316113, 37.885964 ], [ -122.316113, 37.885693 ], [ -122.317142, 37.885828 ], [ -122.317142, 37.885557 ], [ -122.316113, 37.885557 ], [ -122.315769, 37.885286 ], [ -122.315598, 37.884744 ], [ -122.315598, 37.884067 ], [ -122.315083, 37.884067 ], [ -122.314053, 37.882712 ], [ -122.313194, 37.882306 ], [ -122.312508, 37.881493 ], [ -122.327785, 37.877428 ], [ -122.334824, 37.889622 ], [ -122.327614, 37.889757 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1011", "GEOID10": "060014204001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 542505, "AWATER10": 0, "INTPTLAT10": "+37.8862375", "INTPTLON10": "-122.3141377" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.327614, 37.889757 ], [ -122.311306, 37.889486 ], [ -122.309418, 37.887725 ], [ -122.309246, 37.887860 ], [ -122.309589, 37.886506 ], [ -122.308388, 37.882306 ], [ -122.312508, 37.881493 ], [ -122.313194, 37.882306 ], [ -122.314053, 37.882712 ], [ -122.315083, 37.884067 ], [ -122.315598, 37.884067 ], [ -122.315598, 37.884744 ], [ -122.315769, 37.885286 ], [ -122.316113, 37.885557 ], [ -122.317142, 37.885557 ], [ -122.317142, 37.885828 ], [ -122.316113, 37.885693 ], [ -122.316113, 37.885964 ], [ -122.316456, 37.885964 ], [ -122.316628, 37.886235 ], [ -122.315941, 37.886235 ], [ -122.315941, 37.887454 ], [ -122.317314, 37.889351 ], [ -122.322292, 37.889486 ], [ -122.322979, 37.889080 ], [ -122.322979, 37.888402 ], [ -122.324696, 37.887996 ], [ -122.327099, 37.888809 ], [ -122.327614, 37.888809 ], [ -122.327614, 37.889757 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3010", "GEOID10": "060014203003010", "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1835, "AWATER10": 0, "INTPTLAT10": "+37.8878520", "INTPTLON10": "-122.3091212" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309074, 37.888809 ], [ -122.309074, 37.887454 ], [ -122.309418, 37.887318 ], [ -122.309074, 37.888809 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3011", "GEOID10": "060014203003011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10961, "AWATER10": 0, "INTPTLAT10": "+37.8885068", "INTPTLON10": "-122.3086806" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308388, 37.890163 ], [ -122.308388, 37.889215 ], [ -122.308559, 37.887589 ], [ -122.308731, 37.887454 ], [ -122.309074, 37.887454 ], [ -122.309074, 37.888809 ], [ -122.308388, 37.890163 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3016", "GEOID10": "060014203003016", "NAME10": "Block 3016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12044, "AWATER10": 0, "INTPTLAT10": "+37.8899556", "INTPTLON10": "-122.3067458" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306499, 37.890841 ], [ -122.306328, 37.890299 ], [ -122.306671, 37.890299 ], [ -122.306156, 37.889622 ], [ -122.307529, 37.889351 ], [ -122.306843, 37.890705 ], [ -122.306499, 37.890841 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3017", "GEOID10": "060014203003017", "NAME10": "Block 3017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 393, "AWATER10": 0, "INTPTLAT10": "+37.8901345", "INTPTLON10": "-122.3063016" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306156, 37.890434 ], [ -122.306156, 37.890163 ], [ -122.306499, 37.890163 ], [ -122.306499, 37.890434 ], [ -122.306156, 37.890434 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3012", "GEOID10": "060014203003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14539, "AWATER10": 0, "INTPTLAT10": "+37.8894024", "INTPTLON10": "-122.3080555" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.890976 ], [ -122.307529, 37.889622 ], [ -122.308559, 37.887725 ], [ -122.308388, 37.890163 ], [ -122.308044, 37.890976 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3029", "GEOID10": "060014203003029", "NAME10": "Block 3029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14565, "AWATER10": 0, "INTPTLAT10": "+37.8878852", "INTPTLON10": "-122.3078467" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307701, 37.889215 ], [ -122.307358, 37.887318 ], [ -122.308731, 37.887454 ], [ -122.307701, 37.889215 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3018", "GEOID10": "060014203003018", "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9739, "AWATER10": 0, "INTPTLAT10": "+37.8891261", "INTPTLON10": "-122.3066496" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306156, 37.889622 ], [ -122.305984, 37.889080 ], [ -122.307358, 37.888673 ], [ -122.307529, 37.889351 ], [ -122.306156, 37.889622 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3015", "GEOID10": "060014203003015", "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 782, "AWATER10": 0, "INTPTLAT10": "+37.8887826", "INTPTLON10": "-122.3065328" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307186, 37.888809 ], [ -122.307186, 37.888538 ], [ -122.307529, 37.888538 ], [ -122.307529, 37.888809 ], [ -122.307186, 37.888809 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3014", "GEOID10": "060014203003014", "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10339, "AWATER10": 0, "INTPTLAT10": "+37.8884185", "INTPTLON10": "-122.3064403" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305813, 37.888944 ], [ -122.305641, 37.888267 ], [ -122.307186, 37.887996 ], [ -122.307358, 37.888673 ], [ -122.305813, 37.888944 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3013", "GEOID10": "060014203003013", "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7694, "AWATER10": 0, "INTPTLAT10": "+37.8877645", "INTPTLON10": "-122.3071265" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307529, 37.889622 ], [ -122.307014, 37.887589 ], [ -122.305470, 37.887589 ], [ -122.307358, 37.887318 ], [ -122.307701, 37.889215 ], [ -122.307529, 37.889622 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1009", "GEOID10": "060014204001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7572, "AWATER10": 0, "INTPTLAT10": "+37.8865874", "INTPTLON10": "-122.3090315" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309074, 37.887454 ], [ -122.308731, 37.887318 ], [ -122.309074, 37.885151 ], [ -122.309418, 37.886912 ], [ -122.309074, 37.887454 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1010", "GEOID10": "060014204001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6192, "AWATER10": 0, "INTPTLAT10": "+37.8856733", "INTPTLON10": "-122.3091896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309418, 37.887318 ], [ -122.309418, 37.886370 ], [ -122.309074, 37.885151 ], [ -122.308731, 37.883525 ], [ -122.309589, 37.886506 ], [ -122.309418, 37.887318 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1006", "GEOID10": "060014204001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59431, "AWATER10": 0, "INTPTLAT10": "+37.8849426", "INTPTLON10": "-122.3081455" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308731, 37.887318 ], [ -122.307358, 37.887183 ], [ -122.307873, 37.882035 ], [ -122.308388, 37.882306 ], [ -122.308731, 37.883525 ], [ -122.309074, 37.885151 ], [ -122.308731, 37.887318 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1007", "GEOID10": "060014204001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1737, "AWATER10": 0, "INTPTLAT10": "+37.8871632", "INTPTLON10": "-122.3079226" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308559, 37.887454 ], [ -122.308044, 37.887454 ], [ -122.308044, 37.887048 ], [ -122.308559, 37.887048 ], [ -122.308559, 37.887454 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3031", "GEOID10": "060014203003031", "NAME10": "Block 3031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9685, "AWATER10": 0, "INTPTLAT10": "+37.8877891", "INTPTLON10": "-122.3061951" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305641, 37.888267 ], [ -122.305470, 37.887589 ], [ -122.307014, 37.887454 ], [ -122.307186, 37.887996 ], [ -122.305641, 37.888267 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1005", "GEOID10": "060014204001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 52400, "AWATER10": 0, "INTPTLAT10": "+37.8837458", "INTPTLON10": "-122.3069617" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307358, 37.887183 ], [ -122.307186, 37.886912 ], [ -122.306328, 37.883389 ], [ -122.305813, 37.882170 ], [ -122.307358, 37.881899 ], [ -122.307873, 37.882035 ], [ -122.307358, 37.887183 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3021", "GEOID10": "060014203003021", "NAME10": "Block 3021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11997, "AWATER10": 0, "INTPTLAT10": "+37.8902784", "INTPTLON10": "-122.3030396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.891654 ], [ -122.302551, 37.889622 ], [ -122.303410, 37.889486 ], [ -122.303581, 37.890434 ], [ -122.303238, 37.891654 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3019", "GEOID10": "060014203003019", "NAME10": "Block 3019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17581, "AWATER10": 0, "INTPTLAT10": "+37.8895455", "INTPTLON10": "-122.3046051" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303581, 37.890434 ], [ -122.303410, 37.889486 ], [ -122.305984, 37.889080 ], [ -122.306156, 37.889622 ], [ -122.304268, 37.890028 ], [ -122.303581, 37.890434 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3020", "GEOID10": "060014203003020", "NAME10": "Block 3020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 409, "AWATER10": 0, "INTPTLAT10": "+37.8891773", "INTPTLON10": "-122.3045386" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304096, 37.889486 ], [ -122.304096, 37.889215 ], [ -122.304440, 37.889215 ], [ -122.304440, 37.889486 ], [ -122.304096, 37.889486 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3027", "GEOID10": "060014203003027", "NAME10": "Block 3027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13106, "AWATER10": 0, "INTPTLAT10": "+37.8882387", "INTPTLON10": "-122.3051246" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304955, 37.889080 ], [ -122.304611, 37.887589 ], [ -122.305470, 37.887589 ], [ -122.305813, 37.888944 ], [ -122.304955, 37.889080 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3026", "GEOID10": "060014203003026", "NAME10": "Block 3026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14219, "AWATER10": 0, "INTPTLAT10": "+37.8883405", "INTPTLON10": "-122.3042616" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304268, 37.889351 ], [ -122.303581, 37.887589 ], [ -122.304611, 37.887589 ], [ -122.304955, 37.889080 ], [ -122.304268, 37.889351 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3022", "GEOID10": "060014203003022", "NAME10": "Block 3022", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 411, "AWATER10": 0, "INTPTLAT10": "+37.8895077", "INTPTLON10": "-122.3028537" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302380, 37.889757 ], [ -122.302380, 37.889486 ], [ -122.302723, 37.889486 ], [ -122.302723, 37.889757 ], [ -122.302380, 37.889757 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3024", "GEOID10": "060014203003024", "NAME10": "Block 3024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15240, "AWATER10": 0, "INTPTLAT10": "+37.8884411", "INTPTLON10": "-122.3034025" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303410, 37.889486 ], [ -122.302723, 37.887589 ], [ -122.303581, 37.887589 ], [ -122.304268, 37.889351 ], [ -122.303410, 37.889486 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "GEOID10": "060014203001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.8906969", "INTPTLON10": "-122.3023492" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302380, 37.891789 ], [ -122.301693, 37.889893 ], [ -122.302551, 37.889622 ], [ -122.303238, 37.891654 ], [ -122.302380, 37.891789 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1006", "GEOID10": "060014203001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17308, "AWATER10": 0, "INTPTLAT10": "+37.8908584", "INTPTLON10": "-122.3015099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301521, 37.892060 ], [ -122.300835, 37.890028 ], [ -122.301693, 37.889893 ], [ -122.302380, 37.891789 ], [ -122.301521, 37.892060 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1004", "GEOID10": "060014203001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17893, "AWATER10": 0, "INTPTLAT10": "+37.8912006", "INTPTLON10": "-122.2998090" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.892331 ], [ -122.299633, 37.891925 ], [ -122.299118, 37.890299 ], [ -122.299976, 37.890163 ], [ -122.300663, 37.892196 ], [ -122.299805, 37.892331 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "GEOID10": "060014203001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.8910287", "INTPTLON10": "-122.3006658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300663, 37.892196 ], [ -122.299976, 37.890163 ], [ -122.300835, 37.890028 ], [ -122.301521, 37.892060 ], [ -122.300663, 37.892196 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3023", "GEOID10": "060014203003023", "NAME10": "Block 3023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16332, "AWATER10": 0, "INTPTLAT10": "+37.8885408", "INTPTLON10": "-122.3025479" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.889622 ], [ -122.301865, 37.887725 ], [ -122.302723, 37.887589 ], [ -122.303410, 37.889486 ], [ -122.302551, 37.889622 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1010", "GEOID10": "060014203001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20386, "AWATER10": 0, "INTPTLAT10": "+37.8886345", "INTPTLON10": "-122.3016225" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301693, 37.889893 ], [ -122.300835, 37.887860 ], [ -122.301865, 37.887725 ], [ -122.302551, 37.889622 ], [ -122.301693, 37.889893 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1011", "GEOID10": "060014203001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16453, "AWATER10": 0, "INTPTLAT10": "+37.8888638", "INTPTLON10": "-122.3008054" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.890028 ], [ -122.300148, 37.887725 ], [ -122.300835, 37.887860 ], [ -122.301693, 37.889893 ], [ -122.300835, 37.890028 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1015", "GEOID10": "060014203001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19773, "AWATER10": 0, "INTPTLAT10": "+37.8888596", "INTPTLON10": "-122.2999642" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299976, 37.890163 ], [ -122.299290, 37.887860 ], [ -122.300148, 37.887725 ], [ -122.300835, 37.890028 ], [ -122.299976, 37.890163 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1002", "GEOID10": "060014204001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5453, "AWATER10": 0, "INTPTLAT10": "+37.8874129", "INTPTLON10": "-122.3045679" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302208, 37.887589 ], [ -122.307358, 37.887183 ], [ -122.305470, 37.887589 ], [ -122.302208, 37.887589 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1001", "GEOID10": "060014204001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 98716, "AWATER10": 0, "INTPTLAT10": "+37.8865962", "INTPTLON10": "-122.3039801" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.887860 ], [ -122.301006, 37.887725 ], [ -122.300663, 37.886370 ], [ -122.304611, 37.885964 ], [ -122.304611, 37.885422 ], [ -122.306843, 37.885693 ], [ -122.307186, 37.887183 ], [ -122.300835, 37.887860 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "GEOID10": "060014204001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.8847438", "INTPTLON10": "-122.3040957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304268, 37.885964 ], [ -122.303925, 37.884744 ], [ -122.303753, 37.883660 ], [ -122.304096, 37.883660 ], [ -122.304611, 37.885964 ], [ -122.304268, 37.885964 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "GEOID10": "060014204001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.8837071", "INTPTLON10": "-122.3049494" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306843, 37.885693 ], [ -122.304611, 37.885422 ], [ -122.304096, 37.883660 ], [ -122.303581, 37.883796 ], [ -122.303581, 37.882983 ], [ -122.302723, 37.883119 ], [ -122.302380, 37.882577 ], [ -122.305813, 37.882170 ], [ -122.306843, 37.885693 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1017", "GEOID10": "060014204001017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6144, "AWATER10": 0, "INTPTLAT10": "+37.8847470", "INTPTLON10": "-122.3037488" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304096, 37.885964 ], [ -122.303410, 37.883796 ], [ -122.303753, 37.883660 ], [ -122.304268, 37.885964 ], [ -122.304096, 37.885964 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1013", "GEOID10": "060014204001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9671, "AWATER10": 0, "INTPTLAT10": "+37.8848967", "INTPTLON10": "-122.3034182" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303581, 37.885964 ], [ -122.303066, 37.883796 ], [ -122.303410, 37.883796 ], [ -122.304096, 37.885964 ], [ -122.303581, 37.885964 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "GEOID10": "060014204001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.8846770", "INTPTLON10": "-122.3015769" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300663, 37.886370 ], [ -122.299805, 37.884202 ], [ -122.300148, 37.883389 ], [ -122.300320, 37.883254 ], [ -122.301006, 37.883525 ], [ -122.302723, 37.883119 ], [ -122.303581, 37.885964 ], [ -122.300663, 37.886370 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1004", "GEOID10": "060014204001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5050, "AWATER10": 0, "INTPTLAT10": "+37.8833234", "INTPTLON10": "-122.3030968" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303066, 37.883796 ], [ -122.302723, 37.883119 ], [ -122.303581, 37.882983 ], [ -122.303581, 37.883796 ], [ -122.303066, 37.883796 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "GEOID10": "060014204001020", "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.8829654", "INTPTLON10": "-122.3013966" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301006, 37.883525 ], [ -122.300320, 37.883119 ], [ -122.300320, 37.882983 ], [ -122.302380, 37.882577 ], [ -122.302723, 37.883119 ], [ -122.301006, 37.883525 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "GEOID10": "060014202001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.8977494", "INTPTLON10": "-122.2990695" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298946, 37.898562 ], [ -122.298603, 37.897208 ], [ -122.299290, 37.897072 ], [ -122.299805, 37.898291 ], [ -122.298946, 37.898562 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1002", "GEOID10": "060014202001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11372, "AWATER10": 0, "INTPTLAT10": "+37.8979512", "INTPTLON10": "-122.2982332" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.898833 ], [ -122.297745, 37.897479 ], [ -122.298603, 37.897208 ], [ -122.298946, 37.898562 ], [ -122.298088, 37.898833 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1001", "GEOID10": "060014202001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11928, "AWATER10": 0, "INTPTLAT10": "+37.8981515", "INTPTLON10": "-122.2974109" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297230, 37.898969 ], [ -122.296886, 37.897614 ], [ -122.297745, 37.897479 ], [ -122.298088, 37.898833 ], [ -122.297230, 37.898969 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1000", "GEOID10": "060014202001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13452, "AWATER10": 0, "INTPTLAT10": "+37.8982712", "INTPTLON10": "-122.2964744" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.898969 ], [ -122.295856, 37.897885 ], [ -122.296886, 37.897614 ], [ -122.297230, 37.898969 ], [ -122.296371, 37.898969 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "GEOID10": "060014202001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.8966536", "INTPTLON10": "-122.2969317" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296886, 37.897614 ], [ -122.296371, 37.895989 ], [ -122.297230, 37.895853 ], [ -122.297745, 37.897479 ], [ -122.296886, 37.897614 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1013", "GEOID10": "060014202001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14541, "AWATER10": 0, "INTPTLAT10": "+37.8968185", "INTPTLON10": "-122.2960835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296028, 37.897750 ], [ -122.295513, 37.896124 ], [ -122.296371, 37.895989 ], [ -122.296886, 37.897614 ], [ -122.296028, 37.897750 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1006", "GEOID10": "060014201001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14453, "AWATER10": 0, "INTPTLAT10": "+37.8983329", "INTPTLON10": "-122.2952807" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.898969 ], [ -122.294655, 37.898833 ], [ -122.294655, 37.897750 ], [ -122.295856, 37.897885 ], [ -122.296371, 37.898969 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "GEOID10": "060014202001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.8961439", "INTPTLON10": "-122.2994424" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897072 ], [ -122.298775, 37.895447 ], [ -122.299633, 37.895311 ], [ -122.300148, 37.896937 ], [ -122.299290, 37.897072 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "GEOID10": "060014202001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.8963113", "INTPTLON10": "-122.2986013" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298603, 37.897208 ], [ -122.298088, 37.895718 ], [ -122.298775, 37.895447 ], [ -122.299290, 37.897072 ], [ -122.298603, 37.897208 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "GEOID10": "060014202003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.8945232", "INTPTLON10": "-122.2989229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.298260, 37.893821 ], [ -122.299118, 37.893686 ], [ -122.299633, 37.895311 ], [ -122.298775, 37.895447 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "GEOID10": "060014202001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.8964819", "INTPTLON10": "-122.2977622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.897479 ], [ -122.297230, 37.895853 ], [ -122.298088, 37.895718 ], [ -122.298603, 37.897208 ], [ -122.297745, 37.897479 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "GEOID10": "060014202003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.8946922", "INTPTLON10": "-122.2980853" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.895718 ], [ -122.297573, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.298088, 37.895718 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "GEOID10": "060014202002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.8948540", "INTPTLON10": "-122.2972427" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297230, 37.895853 ], [ -122.296715, 37.894228 ], [ -122.297573, 37.893957 ], [ -122.298088, 37.895718 ], [ -122.297230, 37.895853 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "GEOID10": "060014202003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.8943454", "INTPTLON10": "-122.2997703" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.895311 ], [ -122.299118, 37.893686 ], [ -122.299976, 37.893550 ], [ -122.300491, 37.895176 ], [ -122.299633, 37.895311 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "GEOID10": "060014202003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.8927197", "INTPTLON10": "-122.2992493" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893686 ], [ -122.298603, 37.892060 ], [ -122.299461, 37.891925 ], [ -122.299633, 37.892331 ], [ -122.299976, 37.893550 ], [ -122.299118, 37.893686 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3006", "GEOID10": "060014202003006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14044, "AWATER10": 0, "INTPTLAT10": "+37.8928963", "INTPTLON10": "-122.2984024" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298260, 37.893821 ], [ -122.297745, 37.892196 ], [ -122.298603, 37.892060 ], [ -122.299118, 37.893686 ], [ -122.298260, 37.893821 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "GEOID10": "060014202003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.8930639", "INTPTLON10": "-122.2975700" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297573, 37.893957 ], [ -122.297058, 37.892466 ], [ -122.297745, 37.892196 ], [ -122.298260, 37.893821 ], [ -122.297573, 37.893957 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "GEOID10": "060014202002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.8950194", "INTPTLON10": "-122.2964053" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.895989 ], [ -122.295856, 37.894363 ], [ -122.296715, 37.894228 ], [ -122.297230, 37.895853 ], [ -122.296371, 37.895989 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2000", "GEOID10": "060014202002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7737, "AWATER10": 0, "INTPTLAT10": "+37.8960946", "INTPTLON10": "-122.2952742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295856, 37.897885 ], [ -122.294655, 37.894634 ], [ -122.294998, 37.894498 ], [ -122.296028, 37.897750 ], [ -122.295856, 37.897885 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1007", "GEOID10": "060014201001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17265, "AWATER10": 0, "INTPTLAT10": "+37.8966238", "INTPTLON10": "-122.2949725" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295856, 37.897885 ], [ -122.294655, 37.897750 ], [ -122.294827, 37.895447 ], [ -122.294483, 37.894634 ], [ -122.294655, 37.894634 ], [ -122.295856, 37.897885 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2003", "GEOID10": "060014202002003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14449, "AWATER10": 0, "INTPTLAT10": "+37.8951947", "INTPTLON10": "-122.2955660" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295513, 37.896124 ], [ -122.294998, 37.894498 ], [ -122.295856, 37.894363 ], [ -122.296371, 37.895989 ], [ -122.295513, 37.896124 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2007", "GEOID10": "060014202002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14053, "AWATER10": 0, "INTPTLAT10": "+37.8933931", "INTPTLON10": "-122.2958883" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295856, 37.894363 ], [ -122.295341, 37.892737 ], [ -122.296200, 37.892602 ], [ -122.296715, 37.894228 ], [ -122.295856, 37.894363 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2006", "GEOID10": "060014202002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14158, "AWATER10": 0, "INTPTLAT10": "+37.8932322", "INTPTLON10": "-122.2967302" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296715, 37.894228 ], [ -122.296200, 37.892602 ], [ -122.297058, 37.892466 ], [ -122.297573, 37.893957 ], [ -122.296715, 37.894228 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2002", "GEOID10": "060014202002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14523, "AWATER10": 0, "INTPTLAT10": "+37.8935661", "INTPTLON10": "-122.2950398" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.894498 ], [ -122.294483, 37.892873 ], [ -122.295341, 37.892737 ], [ -122.295856, 37.894363 ], [ -122.294998, 37.894498 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2001", "GEOID10": "060014202002001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3995, "AWATER10": 0, "INTPTLAT10": "+37.8936801", "INTPTLON10": "-122.2944928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.894634 ], [ -122.294140, 37.892873 ], [ -122.294483, 37.892873 ], [ -122.294998, 37.894498 ], [ -122.294655, 37.894634 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1005", "GEOID10": "060014201001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8083, "AWATER10": 0, "INTPTLAT10": "+37.8982104", "INTPTLON10": "-122.2941387" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.898833 ], [ -122.293797, 37.898698 ], [ -122.293797, 37.897750 ], [ -122.294655, 37.897750 ], [ -122.294655, 37.898833 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1004", "GEOID10": "060014201001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6640, "AWATER10": 0, "INTPTLAT10": "+37.8980962", "INTPTLON10": "-122.2932964" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293797, 37.898562 ], [ -122.292938, 37.898427 ], [ -122.292938, 37.897750 ], [ -122.293797, 37.897750 ], [ -122.293797, 37.898562 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1003", "GEOID10": "060014201001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1246, "AWATER10": 0, "INTPTLAT10": "+37.8980064", "INTPTLON10": "-122.2927412" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.898427 ], [ -122.292767, 37.897750 ], [ -122.292938, 37.897750 ], [ -122.292938, 37.898427 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1010", "GEOID10": "060014201001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2269, "AWATER10": 0, "INTPTLAT10": "+37.8971964", "INTPTLON10": "-122.2927567" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292767, 37.897750 ], [ -122.292767, 37.896801 ], [ -122.292938, 37.896801 ], [ -122.292938, 37.897750 ], [ -122.292767, 37.897750 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1002", "GEOID10": "060014201001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14980, "AWATER10": 0, "INTPTLAT10": "+37.8974821", "INTPTLON10": "-122.2921539" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292767, 37.898427 ], [ -122.291737, 37.898156 ], [ -122.291737, 37.896801 ], [ -122.292767, 37.896801 ], [ -122.292767, 37.898427 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1001", "GEOID10": "060014201001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11297, "AWATER10": 0, "INTPTLAT10": "+37.8973215", "INTPTLON10": "-122.2912175" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291737, 37.898156 ], [ -122.290878, 37.898021 ], [ -122.290878, 37.896666 ], [ -122.291737, 37.896801 ], [ -122.291737, 37.898156 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1000", "GEOID10": "060014201001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10019, "AWATER10": 0, "INTPTLAT10": "+37.8972478", "INTPTLON10": "-122.2903402" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290878, 37.898021 ], [ -122.290020, 37.897885 ], [ -122.290020, 37.896666 ], [ -122.290878, 37.896666 ], [ -122.290878, 37.898021 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2005", "GEOID10": "060014201002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10320, "AWATER10": 0, "INTPTLAT10": "+37.8972288", "INTPTLON10": "-122.2894724" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289162, 37.897885 ], [ -122.289162, 37.896666 ], [ -122.290020, 37.896666 ], [ -122.290020, 37.897885 ], [ -122.289162, 37.897885 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1008", "GEOID10": "060014201001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25122, "AWATER10": 0, "INTPTLAT10": "+37.8962273", "INTPTLON10": "-122.2942136" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293797, 37.897750 ], [ -122.293968, 37.894769 ], [ -122.294483, 37.894634 ], [ -122.294827, 37.895447 ], [ -122.294655, 37.897750 ], [ -122.293797, 37.897750 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1009", "GEOID10": "060014201001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24911, "AWATER10": 0, "INTPTLAT10": "+37.8962389", "INTPTLON10": "-122.2933649" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.897750 ], [ -122.293110, 37.894905 ], [ -122.293968, 37.894769 ], [ -122.293968, 37.895311 ], [ -122.293797, 37.897750 ], [ -122.292938, 37.897750 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1011", "GEOID10": "060014201001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4495, "AWATER10": 0, "INTPTLAT10": "+37.8957842", "INTPTLON10": "-122.2928245" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292767, 37.896801 ], [ -122.292767, 37.894905 ], [ -122.293110, 37.894905 ], [ -122.292938, 37.896801 ], [ -122.292767, 37.896801 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1016", "GEOID10": "060014201001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8255, "AWATER10": 0, "INTPTLAT10": "+37.8939086", "INTPTLON10": "-122.2941575" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293968, 37.894769 ], [ -122.294140, 37.892873 ], [ -122.294655, 37.894634 ], [ -122.293968, 37.894769 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1015", "GEOID10": "060014201001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16238, "AWATER10": 0, "INTPTLAT10": "+37.8938032", "INTPTLON10": "-122.2934559" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293110, 37.894905 ], [ -122.293110, 37.892873 ], [ -122.293968, 37.892873 ], [ -122.293968, 37.894769 ], [ -122.293110, 37.894905 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1014", "GEOID10": "060014201001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5007, "AWATER10": 0, "INTPTLAT10": "+37.8938437", "INTPTLON10": "-122.2929060" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292767, 37.894905 ], [ -122.292938, 37.892873 ], [ -122.293110, 37.892873 ], [ -122.293110, 37.894905 ], [ -122.292767, 37.894905 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1013", "GEOID10": "060014201001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18897, "AWATER10": 0, "INTPTLAT10": "+37.8938347", "INTPTLON10": "-122.2923093" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.894905 ], [ -122.291908, 37.892873 ], [ -122.292938, 37.892873 ], [ -122.292767, 37.894905 ], [ -122.291908, 37.894905 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1012", "GEOID10": "060014201001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 48606, "AWATER10": 0, "INTPTLAT10": "+37.8957510", "INTPTLON10": "-122.2913507" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292767, 37.896801 ], [ -122.290020, 37.896666 ], [ -122.290020, 37.895853 ], [ -122.290192, 37.894905 ], [ -122.292767, 37.894905 ], [ -122.292767, 37.896801 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2006", "GEOID10": "060014201002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15730, "AWATER10": 0, "INTPTLAT10": "+37.8956964", "INTPTLON10": "-122.2895702" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289162, 37.896666 ], [ -122.289333, 37.894769 ], [ -122.290192, 37.894905 ], [ -122.290020, 37.896666 ], [ -122.289162, 37.896666 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3001", "GEOID10": "060014201003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16246, "AWATER10": 0, "INTPTLAT10": "+37.8938831", "INTPTLON10": "-122.2913917" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291050, 37.894905 ], [ -122.291050, 37.893008 ], [ -122.291908, 37.893008 ], [ -122.291908, 37.894905 ], [ -122.291050, 37.894905 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3000", "GEOID10": "060014201003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15665, "AWATER10": 0, "INTPTLAT10": "+37.8938607", "INTPTLON10": "-122.2905229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.894905 ], [ -122.290192, 37.893008 ], [ -122.291050, 37.893008 ], [ -122.291050, 37.894905 ], [ -122.290192, 37.894905 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2015", "GEOID10": "060014201002015", "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15921, "AWATER10": 0, "INTPTLAT10": "+37.8938332", "INTPTLON10": "-122.2896635" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.894905 ], [ -122.289333, 37.894769 ], [ -122.289333, 37.893008 ], [ -122.290192, 37.893008 ], [ -122.290192, 37.894905 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2004", "GEOID10": "060014201002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11206, "AWATER10": 0, "INTPTLAT10": "+37.8972632", "INTPTLON10": "-122.2886022" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.898156 ], [ -122.288303, 37.896666 ], [ -122.289162, 37.896666 ], [ -122.289162, 37.897885 ], [ -122.288303, 37.898156 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2003", "GEOID10": "060014201002003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1027, "AWATER10": 0, "INTPTLAT10": "+37.8973454", "INTPTLON10": "-122.2881508" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.897885 ], [ -122.288132, 37.897885 ], [ -122.288132, 37.897479 ], [ -122.288303, 37.897479 ], [ -122.288303, 37.897885 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2002", "GEOID10": "060014201002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16183, "AWATER10": 0, "INTPTLAT10": "+37.8975006", "INTPTLON10": "-122.2876349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287273, 37.898698 ], [ -122.287273, 37.896666 ], [ -122.288303, 37.896666 ], [ -122.288132, 37.898156 ], [ -122.287273, 37.898698 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2000", "GEOID10": "060014201002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 948, "AWATER10": 0, "INTPTLAT10": "+37.8984122", "INTPTLON10": "-122.2870554" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.898833 ], [ -122.287273, 37.898156 ], [ -122.287273, 37.898698 ], [ -122.287102, 37.898833 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2001", "GEOID10": "060014201002001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2708, "AWATER10": 0, "INTPTLAT10": "+37.8973380", "INTPTLON10": "-122.2871259" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.898156 ], [ -122.287102, 37.896666 ], [ -122.287273, 37.896666 ], [ -122.287273, 37.898156 ], [ -122.287102, 37.898156 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2007", "GEOID10": "060014201002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15930, "AWATER10": 0, "INTPTLAT10": "+37.8956694", "INTPTLON10": "-122.2886965" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.896666 ], [ -122.288303, 37.894769 ], [ -122.289333, 37.894769 ], [ -122.289162, 37.896666 ], [ -122.288303, 37.896666 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2008", "GEOID10": "060014201002008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1214, "AWATER10": 0, "INTPTLAT10": "+37.8956738", "INTPTLON10": "-122.2882217" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288475, 37.895989 ], [ -122.288132, 37.895989 ], [ -122.288132, 37.895582 ], [ -122.288475, 37.895582 ], [ -122.288475, 37.895989 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2009", "GEOID10": "060014201002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15974, "AWATER10": 0, "INTPTLAT10": "+37.8956464", "INTPTLON10": "-122.2877473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287273, 37.896666 ], [ -122.287445, 37.894769 ], [ -122.288303, 37.894769 ], [ -122.288303, 37.896666 ], [ -122.287273, 37.896666 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2010", "GEOID10": "060014201002010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3628, "AWATER10": 0, "INTPTLAT10": "+37.8956076", "INTPTLON10": "-122.2872058" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.896666 ], [ -122.287273, 37.894769 ], [ -122.287445, 37.894769 ], [ -122.287273, 37.896666 ], [ -122.287102, 37.896666 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2014", "GEOID10": "060014201002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16117, "AWATER10": 0, "INTPTLAT10": "+37.8938093", "INTPTLON10": "-122.2887874" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.894769 ], [ -122.288475, 37.892873 ], [ -122.289333, 37.893008 ], [ -122.289333, 37.894769 ], [ -122.288303, 37.894769 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2013", "GEOID10": "060014201002013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1269, "AWATER10": 0, "INTPTLAT10": "+37.8937720", "INTPTLON10": "-122.2883131" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288647, 37.894498 ], [ -122.288303, 37.894498 ], [ -122.288303, 37.894092 ], [ -122.288647, 37.894092 ], [ -122.288647, 37.894498 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2012", "GEOID10": "060014201002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16253, "AWATER10": 0, "INTPTLAT10": "+37.8937801", "INTPTLON10": "-122.2878360" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.894769 ], [ -122.287445, 37.892873 ], [ -122.288475, 37.892873 ], [ -122.288303, 37.894769 ], [ -122.287445, 37.894769 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2011", "GEOID10": "060014201002011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4556, "AWATER10": 0, "INTPTLAT10": "+37.8937317", "INTPTLON10": "-122.2872753" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287273, 37.894769 ], [ -122.287273, 37.892873 ], [ -122.287445, 37.892873 ], [ -122.287445, 37.894769 ], [ -122.287273, 37.894769 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3012", "GEOID10": "060014202003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 636, "AWATER10": 0, "INTPTLAT10": "+37.8920512", "INTPTLON10": "-122.2995612" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.892466 ], [ -122.299633, 37.892196 ], [ -122.299976, 37.892196 ], [ -122.299976, 37.892466 ], [ -122.299633, 37.892466 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3010", "GEOID10": "060014202003010", "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14291, "AWATER10": 0, "INTPTLAT10": "+37.8911018", "INTPTLON10": "-122.2987261" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298603, 37.892060 ], [ -122.298088, 37.890434 ], [ -122.298946, 37.890299 ], [ -122.299461, 37.891925 ], [ -122.298603, 37.892060 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3011", "GEOID10": "060014202003011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1922, "AWATER10": 0, "INTPTLAT10": "+37.8910433", "INTPTLON10": "-122.2992359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299461, 37.891925 ], [ -122.298946, 37.890299 ], [ -122.299461, 37.891518 ], [ -122.299461, 37.891925 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1013", "GEOID10": "060014203001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 568, "AWATER10": 0, "INTPTLAT10": "+37.8901726", "INTPTLON10": "-122.2994482" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.890299 ], [ -122.299805, 37.890028 ], [ -122.300148, 37.890028 ], [ -122.300148, 37.890299 ], [ -122.299805, 37.890299 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3009", "GEOID10": "060014202003009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15100, "AWATER10": 0, "INTPTLAT10": "+37.8912058", "INTPTLON10": "-122.2978563" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.892196 ], [ -122.297230, 37.890434 ], [ -122.298088, 37.890434 ], [ -122.298260, 37.890705 ], [ -122.298603, 37.892060 ], [ -122.297745, 37.892196 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1004", "GEOID10": "060014205001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 521, "AWATER10": 0, "INTPTLAT10": "+37.8903091", "INTPTLON10": "-122.2975987" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.890570 ], [ -122.297058, 37.890299 ], [ -122.297401, 37.890299 ], [ -122.297401, 37.890570 ], [ -122.297058, 37.890570 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1014", "GEOID10": "060014203001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21543, "AWATER10": 0, "INTPTLAT10": "+37.8889340", "INTPTLON10": "-122.2990835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.890299 ], [ -122.298260, 37.887860 ], [ -122.299290, 37.887860 ], [ -122.299976, 37.890163 ], [ -122.299118, 37.890299 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1008", "GEOID10": "060014205001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3061, "AWATER10": 0, "INTPTLAT10": "+37.8890168", "INTPTLON10": "-122.2985896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298946, 37.890299 ], [ -122.298260, 37.887860 ], [ -122.299118, 37.890299 ], [ -122.298946, 37.890299 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1007", "GEOID10": "060014205001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 32096, "AWATER10": 0, "INTPTLAT10": "+37.8884580", "INTPTLON10": "-122.2979153" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.890299 ], [ -122.297916, 37.889622 ], [ -122.297058, 37.886912 ], [ -122.297916, 37.886777 ], [ -122.298946, 37.890299 ], [ -122.298088, 37.890299 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3008", "GEOID10": "060014202003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16353, "AWATER10": 0, "INTPTLAT10": "+37.8913200", "INTPTLON10": "-122.2970017" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.892466 ], [ -122.296371, 37.890434 ], [ -122.297230, 37.890434 ], [ -122.297401, 37.890841 ], [ -122.297745, 37.892196 ], [ -122.297058, 37.892466 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2012", "GEOID10": "060014202002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17230, "AWATER10": 0, "INTPTLAT10": "+37.8914257", "INTPTLON10": "-122.2961445" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296200, 37.892602 ], [ -122.295513, 37.890570 ], [ -122.296371, 37.890434 ], [ -122.297058, 37.892466 ], [ -122.296200, 37.892602 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1002", "GEOID10": "060014205001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 411, "AWATER10": 0, "INTPTLAT10": "+37.8904111", "INTPTLON10": "-122.2958187" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296200, 37.890570 ], [ -122.296200, 37.890299 ], [ -122.296543, 37.890299 ], [ -122.296543, 37.890570 ], [ -122.296200, 37.890570 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2008", "GEOID10": "060014202002008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18377, "AWATER10": 0, "INTPTLAT10": "+37.8915386", "INTPTLON10": "-122.2952863" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295341, 37.892737 ], [ -122.294655, 37.890570 ], [ -122.295513, 37.890570 ], [ -122.296200, 37.892602 ], [ -122.295341, 37.892737 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2009", "GEOID10": "060014202002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19818, "AWATER10": 0, "INTPTLAT10": "+37.8916581", "INTPTLON10": "-122.2944181" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294483, 37.892873 ], [ -122.293625, 37.890570 ], [ -122.294655, 37.890570 ], [ -122.295341, 37.892737 ], [ -122.294483, 37.892873 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1015", "GEOID10": "060014205001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29154, "AWATER10": 0, "INTPTLAT10": "+37.8886165", "INTPTLON10": "-122.2970361" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297230, 37.890434 ], [ -122.296200, 37.887183 ], [ -122.297058, 37.886912 ], [ -122.298088, 37.890299 ], [ -122.297230, 37.890434 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1014", "GEOID10": "060014205001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28068, "AWATER10": 0, "INTPTLAT10": "+37.8887349", "INTPTLON10": "-122.2961756" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.890434 ], [ -122.295341, 37.887318 ], [ -122.296200, 37.887183 ], [ -122.297230, 37.890434 ], [ -122.296371, 37.890434 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1010", "GEOID10": "060014205001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26672, "AWATER10": 0, "INTPTLAT10": "+37.8888488", "INTPTLON10": "-122.2953196" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295513, 37.890434 ], [ -122.294483, 37.887454 ], [ -122.295341, 37.887318 ], [ -122.296371, 37.890434 ], [ -122.295513, 37.890434 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1011", "GEOID10": "060014205001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26518, "AWATER10": 0, "INTPTLAT10": "+37.8889300", "INTPTLON10": "-122.2944569" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.890570 ], [ -122.293625, 37.887589 ], [ -122.294483, 37.887454 ], [ -122.295513, 37.890434 ], [ -122.294655, 37.890570 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1000", "GEOID10": "060014204001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11282, "AWATER10": 0, "INTPTLAT10": "+37.8873799", "INTPTLON10": "-122.2988707" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298260, 37.887860 ], [ -122.297916, 37.886777 ], [ -122.299633, 37.887589 ], [ -122.301006, 37.887725 ], [ -122.298260, 37.887860 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1015", "GEOID10": "060014204001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 79019, "AWATER10": 0, "INTPTLAT10": "+37.8858279", "INTPTLON10": "-122.2991231" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301006, 37.887725 ], [ -122.299633, 37.887589 ], [ -122.297916, 37.886777 ], [ -122.297401, 37.884609 ], [ -122.298431, 37.884473 ], [ -122.299976, 37.884067 ], [ -122.301006, 37.887725 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1017", "GEOID10": "060014205001017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 621, "AWATER10": 0, "INTPTLAT10": "+37.8867580", "INTPTLON10": "-122.2973472" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.886912 ], [ -122.297745, 37.886641 ], [ -122.298088, 37.886641 ], [ -122.298088, 37.886912 ], [ -122.297745, 37.886912 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1018", "GEOID10": "060014204001018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22069, "AWATER10": 0, "INTPTLAT10": "+37.8835790", "INTPTLON10": "-122.2990681" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.884473 ], [ -122.298088, 37.883254 ], [ -122.300320, 37.882983 ], [ -122.300320, 37.883119 ], [ -122.299805, 37.884202 ], [ -122.298431, 37.884473 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2007", "GEOID10": "060014205002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2761, "AWATER10": 0, "INTPTLAT10": "+37.8856449", "INTPTLON10": "-122.2975097" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.886506 ], [ -122.297573, 37.886506 ], [ -122.297573, 37.885964 ], [ -122.298088, 37.885964 ], [ -122.298088, 37.886506 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1019", "GEOID10": "060014204001019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11921, "AWATER10": 0, "INTPTLAT10": "+37.8839314", "INTPTLON10": "-122.2976037" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.884609 ], [ -122.297058, 37.883525 ], [ -122.298088, 37.883254 ], [ -122.298431, 37.884473 ], [ -122.297401, 37.884609 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1013", "GEOID10": "060014205001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 616, "AWATER10": 0, "INTPTLAT10": "+37.8870993", "INTPTLON10": "-122.2956428" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296028, 37.887318 ], [ -122.296028, 37.887048 ], [ -122.296371, 37.887048 ], [ -122.296371, 37.887318 ], [ -122.296028, 37.887318 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1012", "GEOID10": "060014205001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 615, "AWATER10": 0, "INTPTLAT10": "+37.8872675", "INTPTLON10": "-122.2948079" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295170, 37.887454 ], [ -122.295170, 37.887183 ], [ -122.295513, 37.887183 ], [ -122.295513, 37.887454 ], [ -122.295170, 37.887454 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2003", "GEOID10": "060014205002003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24754, "AWATER10": 0, "INTPTLAT10": "+37.8858112", "INTPTLON10": "-122.2943382" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294483, 37.887318 ], [ -122.293625, 37.884609 ], [ -122.294483, 37.884338 ], [ -122.295341, 37.887183 ], [ -122.294483, 37.887318 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2006", "GEOID10": "060014205002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25305, "AWATER10": 0, "INTPTLAT10": "+37.8853070", "INTPTLON10": "-122.2968750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.886912 ], [ -122.296028, 37.884067 ], [ -122.296886, 37.883931 ], [ -122.297916, 37.886777 ], [ -122.297058, 37.886912 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2005", "GEOID10": "060014205002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24545, "AWATER10": 0, "INTPTLAT10": "+37.8854914", "INTPTLON10": "-122.2960301" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296200, 37.887048 ], [ -122.295170, 37.884202 ], [ -122.296028, 37.884067 ], [ -122.297058, 37.886912 ], [ -122.296200, 37.887048 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2008", "GEOID10": "060014205002008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1060, "AWATER10": 0, "INTPTLAT10": "+37.8841984", "INTPTLON10": "-122.2970500" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297230, 37.884744 ], [ -122.297058, 37.883796 ], [ -122.297401, 37.884609 ], [ -122.297230, 37.884744 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2004", "GEOID10": "060014205002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24848, "AWATER10": 0, "INTPTLAT10": "+37.8856461", "INTPTLON10": "-122.2951842" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295341, 37.887183 ], [ -122.294483, 37.884338 ], [ -122.295170, 37.884202 ], [ -122.296200, 37.887048 ], [ -122.295341, 37.887183 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2012", "GEOID10": "060014205002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12579, "AWATER10": 0, "INTPTLAT10": "+37.8835272", "INTPTLON10": "-122.2945038" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294483, 37.884338 ], [ -122.293968, 37.882983 ], [ -122.294827, 37.882848 ], [ -122.295170, 37.884202 ], [ -122.294483, 37.884338 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2010", "GEOID10": "060014202002010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8445, "AWATER10": 0, "INTPTLAT10": "+37.8914852", "INTPTLON10": "-122.2936957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294140, 37.892873 ], [ -122.293282, 37.891112 ], [ -122.293282, 37.890705 ], [ -122.293625, 37.890570 ], [ -122.294483, 37.892873 ], [ -122.294140, 37.892873 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1017", "GEOID10": "060014201001017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10769, "AWATER10": 0, "INTPTLAT10": "+37.8921881", "INTPTLON10": "-122.2934770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293110, 37.892873 ], [ -122.293282, 37.891112 ], [ -122.294140, 37.892873 ], [ -122.293110, 37.892873 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1018", "GEOID10": "060014201001018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4538, "AWATER10": 0, "INTPTLAT10": "+37.8918502", "INTPTLON10": "-122.2929851" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.892873 ], [ -122.292938, 37.890841 ], [ -122.293282, 37.891112 ], [ -122.293110, 37.892873 ], [ -122.292938, 37.892873 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1000", "GEOID10": "060014205001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 367, "AWATER10": 0, "INTPTLAT10": "+37.8905130", "INTPTLON10": "-122.2941122" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890705 ], [ -122.293625, 37.890434 ], [ -122.293968, 37.890434 ], [ -122.293968, 37.890705 ], [ -122.293625, 37.890705 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2011", "GEOID10": "060014202002011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 700, "AWATER10": 0, "INTPTLAT10": "+37.8907452", "INTPTLON10": "-122.2930474" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293110, 37.890841 ], [ -122.293110, 37.890570 ], [ -122.293453, 37.890570 ], [ -122.293453, 37.890841 ], [ -122.293110, 37.890841 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1019", "GEOID10": "060014201001019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20486, "AWATER10": 0, "INTPTLAT10": "+37.8917135", "INTPTLON10": "-122.2923947" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.892873 ], [ -122.292080, 37.890705 ], [ -122.292938, 37.890705 ], [ -122.292938, 37.892873 ], [ -122.291908, 37.892873 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1006", "GEOID10": "060014205001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25175, "AWATER10": 0, "INTPTLAT10": "+37.8890495", "INTPTLON10": "-122.2935928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.890570 ], [ -122.293625, 37.890434 ], [ -122.292767, 37.887860 ], [ -122.293625, 37.887589 ], [ -122.294655, 37.890570 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1009", "GEOID10": "060014205001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5818, "AWATER10": 0, "INTPTLAT10": "+37.8888891", "INTPTLON10": "-122.2929659" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890434 ], [ -122.293282, 37.889893 ], [ -122.292595, 37.887725 ], [ -122.292767, 37.887860 ], [ -122.293625, 37.890434 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3006", "GEOID10": "060014206003006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11825, "AWATER10": 0, "INTPTLAT10": "+37.8893267", "INTPTLON10": "-122.2928119" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.890570 ], [ -122.292252, 37.887860 ], [ -122.292595, 37.887860 ], [ -122.293282, 37.889893 ], [ -122.293797, 37.890570 ], [ -122.292938, 37.890570 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3007", "GEOID10": "060014206003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27950, "AWATER10": 0, "INTPTLAT10": "+37.8892518", "INTPTLON10": "-122.2920141" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.890705 ], [ -122.291222, 37.888131 ], [ -122.292252, 37.887860 ], [ -122.292938, 37.890570 ], [ -122.291908, 37.890705 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3008", "GEOID10": "060014206003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 783, "AWATER10": 0, "INTPTLAT10": "+37.8879165", "INTPTLON10": "-122.2915924" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292080, 37.887996 ], [ -122.292080, 37.887725 ], [ -122.292423, 37.887725 ], [ -122.292423, 37.887996 ], [ -122.292080, 37.887996 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3002", "GEOID10": "060014201003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19544, "AWATER10": 0, "INTPTLAT10": "+37.8918042", "INTPTLON10": "-122.2914745" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291050, 37.893008 ], [ -122.291222, 37.890705 ], [ -122.292080, 37.890705 ], [ -122.291908, 37.893008 ], [ -122.291050, 37.893008 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3003", "GEOID10": "060014201003003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18064, "AWATER10": 0, "INTPTLAT10": "+37.8918237", "INTPTLON10": "-122.2906157" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.893008 ], [ -122.290363, 37.890841 ], [ -122.291222, 37.890705 ], [ -122.291050, 37.893008 ], [ -122.290192, 37.893008 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3003", "GEOID10": "060014206003003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 344, "AWATER10": 0, "INTPTLAT10": "+37.8906459", "INTPTLON10": "-122.2914849" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291050, 37.890841 ], [ -122.291050, 37.890570 ], [ -122.291393, 37.890570 ], [ -122.291393, 37.890841 ], [ -122.291050, 37.890841 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3004", "GEOID10": "060014201003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18095, "AWATER10": 0, "INTPTLAT10": "+37.8918241", "INTPTLON10": "-122.2897641" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.893008 ], [ -122.289505, 37.890841 ], [ -122.290363, 37.890841 ], [ -122.290192, 37.893008 ], [ -122.289333, 37.893008 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3005", "GEOID10": "060014201003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16537, "AWATER10": 0, "INTPTLAT10": "+37.8919062", "INTPTLON10": "-122.2889102" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.893008 ], [ -122.288475, 37.892873 ], [ -122.288475, 37.891518 ], [ -122.288990, 37.890841 ], [ -122.289505, 37.890841 ], [ -122.289333, 37.893008 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3002", "GEOID10": "060014206003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26786, "AWATER10": 0, "INTPTLAT10": "+37.8894113", "INTPTLON10": "-122.2909643" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290878, 37.890841 ], [ -122.290192, 37.888267 ], [ -122.291222, 37.888131 ], [ -122.291908, 37.890705 ], [ -122.291222, 37.890705 ], [ -122.290878, 37.890841 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3001", "GEOID10": "060014206003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22452, "AWATER10": 0, "INTPTLAT10": "+37.8895187", "INTPTLON10": "-122.2899595" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290020, 37.890841 ], [ -122.289162, 37.888538 ], [ -122.290192, 37.888267 ], [ -122.290878, 37.890841 ], [ -122.290020, 37.890841 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3000", "GEOID10": "060014206003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21823, "AWATER10": 0, "INTPTLAT10": "+37.8896695", "INTPTLON10": "-122.2890200" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288990, 37.890841 ], [ -122.288303, 37.888673 ], [ -122.289162, 37.888538 ], [ -122.290020, 37.890841 ], [ -122.288990, 37.890841 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3010", "GEOID10": "060014206003010", "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 689, "AWATER10": 0, "INTPTLAT10": "+37.8883258", "INTPTLON10": "-122.2895731" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290020, 37.888402 ], [ -122.290020, 37.888131 ], [ -122.290363, 37.888131 ], [ -122.290363, 37.888402 ], [ -122.290020, 37.888402 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2002", "GEOID10": "060014205002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24228, "AWATER10": 0, "INTPTLAT10": "+37.8859970", "INTPTLON10": "-122.2935084" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.887589 ], [ -122.292767, 37.884744 ], [ -122.293625, 37.884609 ], [ -122.294483, 37.887318 ], [ -122.293625, 37.887589 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2001", "GEOID10": "060014205002001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26078, "AWATER10": 0, "INTPTLAT10": "+37.8861973", "INTPTLON10": "-122.2926742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292767, 37.887725 ], [ -122.291908, 37.884880 ], [ -122.292767, 37.884744 ], [ -122.293625, 37.887589 ], [ -122.293625, 37.887725 ], [ -122.292767, 37.887725 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2000", "GEOID10": "060014205002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6434, "AWATER10": 0, "INTPTLAT10": "+37.8862789", "INTPTLON10": "-122.2921162" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292595, 37.887725 ], [ -122.291565, 37.885015 ], [ -122.291737, 37.884880 ], [ -122.292767, 37.887725 ], [ -122.292595, 37.887725 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "GEOID10": "060014206003015", "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.8863229", "INTPTLON10": "-122.2918172" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292252, 37.887860 ], [ -122.291222, 37.885015 ], [ -122.291565, 37.885015 ], [ -122.292595, 37.887725 ], [ -122.292252, 37.887860 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2013", "GEOID10": "060014205002013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12945, "AWATER10": 0, "INTPTLAT10": "+37.8836932", "INTPTLON10": "-122.2936333" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.884609 ], [ -122.293453, 37.884202 ], [ -122.293110, 37.883119 ], [ -122.293968, 37.882983 ], [ -122.294483, 37.884338 ], [ -122.293625, 37.884609 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2014", "GEOID10": "060014205002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13013, "AWATER10": 0, "INTPTLAT10": "+37.8838362", "INTPTLON10": "-122.2927774" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292767, 37.884744 ], [ -122.292595, 37.884473 ], [ -122.292080, 37.883254 ], [ -122.293110, 37.883119 ], [ -122.293625, 37.884609 ], [ -122.292767, 37.884744 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2015", "GEOID10": "060014205002015", "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13985, "AWATER10": 0, "INTPTLAT10": "+37.8839739", "INTPTLON10": "-122.2919263" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.884880 ], [ -122.291393, 37.883254 ], [ -122.292080, 37.883254 ], [ -122.292767, 37.884744 ], [ -122.291908, 37.884880 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3014", "GEOID10": "060014206003014", "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29422, "AWATER10": 0, "INTPTLAT10": "+37.8864950", "INTPTLON10": "-122.2911376" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291222, 37.887996 ], [ -122.290192, 37.885286 ], [ -122.291222, 37.885015 ], [ -122.292252, 37.887860 ], [ -122.291222, 37.887996 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "GEOID10": "060014206003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.8875706", "INTPTLON10": "-122.2892190" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.888673 ], [ -122.289333, 37.886099 ], [ -122.290192, 37.888267 ], [ -122.288303, 37.888673 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3013", "GEOID10": "060014206003013", "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 31172, "AWATER10": 0, "INTPTLAT10": "+37.8866087", "INTPTLON10": "-122.2901174" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.888267 ], [ -122.289333, 37.886099 ], [ -122.289848, 37.884609 ], [ -122.290363, 37.885693 ], [ -122.291222, 37.887996 ], [ -122.290192, 37.888267 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3017", "GEOID10": "060014206003017", "NAME10": "Block 3017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6343, "AWATER10": 0, "INTPTLAT10": "+37.8840797", "INTPTLON10": "-122.2909809" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291222, 37.885015 ], [ -122.290535, 37.883254 ], [ -122.290878, 37.883389 ], [ -122.291222, 37.884067 ], [ -122.291565, 37.885015 ], [ -122.291222, 37.885015 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2016", "GEOID10": "060014205002016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5264, "AWATER10": 0, "INTPTLAT10": "+37.8839955", "INTPTLON10": "-122.2913154" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.885015 ], [ -122.290878, 37.883389 ], [ -122.291222, 37.883254 ], [ -122.291393, 37.883254 ], [ -122.291908, 37.884880 ], [ -122.291565, 37.885015 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3018", "GEOID10": "060014206003018", "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14557, "AWATER10": 0, "INTPTLAT10": "+37.8843696", "INTPTLON10": "-122.2904413" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.885286 ], [ -122.289848, 37.884609 ], [ -122.290363, 37.883119 ], [ -122.290535, 37.883254 ], [ -122.291222, 37.885015 ], [ -122.290192, 37.885286 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "GEOID10": "060014206002016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.8853992", "INTPTLON10": "-122.2894711" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289677, 37.885964 ], [ -122.289333, 37.885964 ], [ -122.289333, 37.885557 ], [ -122.289677, 37.885557 ], [ -122.289677, 37.885964 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1023", "GEOID10": "060014206001023", "NAME10": "Block 1023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15260, "AWATER10": 0, "INTPTLAT10": "+37.8840099", "INTPTLON10": "-122.2895305" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289848, 37.885015 ], [ -122.288818, 37.884744 ], [ -122.289333, 37.883389 ], [ -122.290192, 37.883254 ], [ -122.290363, 37.883119 ], [ -122.289848, 37.885015 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2010", "GEOID10": "060014205002010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6161, "AWATER10": 0, "INTPTLAT10": "+37.8835363", "INTPTLON10": "-122.2962204" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296028, 37.884067 ], [ -122.295856, 37.883119 ], [ -122.296028, 37.883119 ], [ -122.296886, 37.883525 ], [ -122.296886, 37.883931 ], [ -122.296028, 37.884067 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2011", "GEOID10": "060014205002011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10125, "AWATER10": 0, "INTPTLAT10": "+37.8834818", "INTPTLON10": "-122.2953591" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295170, 37.884202 ], [ -122.294827, 37.882848 ], [ -122.295856, 37.883119 ], [ -122.296028, 37.884067 ], [ -122.295170, 37.884202 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3006", "GEOID10": "060014201003006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1509, "AWATER10": 0, "INTPTLAT10": "+37.8926066", "INTPTLON10": "-122.2883829" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.892060 ], [ -122.288475, 37.892060 ], [ -122.288475, 37.891654 ], [ -122.288818, 37.891654 ], [ -122.288818, 37.892060 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3007", "GEOID10": "060014201003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18637, "AWATER10": 0, "INTPTLAT10": "+37.8917853", "INTPTLON10": "-122.2879697" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.892873 ], [ -122.287617, 37.890976 ], [ -122.288818, 37.890841 ], [ -122.288475, 37.891518 ], [ -122.288475, 37.892873 ], [ -122.287445, 37.892873 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2003", "GEOID10": "060014206002003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 446, "AWATER10": 0, "INTPTLAT10": "+37.8908208", "INTPTLON10": "-122.2882377" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287617, 37.890976 ], [ -122.287617, 37.890705 ], [ -122.287960, 37.890705 ], [ -122.287960, 37.890976 ], [ -122.287617, 37.890976 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3008", "GEOID10": "060014201003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5620, "AWATER10": 0, "INTPTLAT10": "+37.8918093", "INTPTLON10": "-122.2873239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287273, 37.892873 ], [ -122.287273, 37.890976 ], [ -122.287617, 37.890976 ], [ -122.287617, 37.891383 ], [ -122.287445, 37.892873 ], [ -122.287273, 37.892873 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2000", "GEOID10": "060014206002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 375, "AWATER10": 0, "INTPTLAT10": "+37.8909521", "INTPTLON10": "-122.2861793" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286587, 37.891112 ], [ -122.286587, 37.890841 ], [ -122.286930, 37.890841 ], [ -122.286930, 37.891112 ], [ -122.286587, 37.891112 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "GEOID10": "060014206002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.8896802", "INTPTLON10": "-122.2884737" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.890841 ], [ -122.288132, 37.888809 ], [ -122.288303, 37.888673 ], [ -122.288303, 37.888944 ], [ -122.288818, 37.890841 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2005", "GEOID10": "060014206002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21301, "AWATER10": 0, "INTPTLAT10": "+37.8898284", "INTPTLON10": "-122.2879267" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287788, 37.890841 ], [ -122.287102, 37.889080 ], [ -122.288132, 37.888809 ], [ -122.288818, 37.890841 ], [ -122.287788, 37.890841 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2006", "GEOID10": "060014206002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 812, "AWATER10": 0, "INTPTLAT10": "+37.8888233", "INTPTLON10": "-122.2875914" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.888809 ], [ -122.288132, 37.888538 ], [ -122.288475, 37.888538 ], [ -122.288475, 37.888809 ], [ -122.288132, 37.888809 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2002", "GEOID10": "060014206002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16691, "AWATER10": 0, "INTPTLAT10": "+37.8900585", "INTPTLON10": "-122.2869139" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.890976 ], [ -122.286243, 37.889486 ], [ -122.287102, 37.889080 ], [ -122.287788, 37.890976 ], [ -122.287617, 37.890841 ], [ -122.286758, 37.890976 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2007", "GEOID10": "060014206002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 740, "AWATER10": 0, "INTPTLAT10": "+37.8892157", "INTPTLON10": "-122.2866157" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286930, 37.889215 ], [ -122.286930, 37.888944 ], [ -122.287273, 37.888944 ], [ -122.287273, 37.889215 ], [ -122.286930, 37.889215 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2010", "GEOID10": "060014206002010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15494, "AWATER10": 0, "INTPTLAT10": "+37.8884410", "INTPTLON10": "-122.2866366" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286243, 37.889351 ], [ -122.286072, 37.888673 ], [ -122.286415, 37.887725 ], [ -122.287617, 37.887996 ], [ -122.287102, 37.889080 ], [ -122.286243, 37.889351 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2001", "GEOID10": "060014206002001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14791, "AWATER10": 0, "INTPTLAT10": "+37.8902095", "INTPTLON10": "-122.2859011" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285728, 37.890976 ], [ -122.285213, 37.889622 ], [ -122.286243, 37.889486 ], [ -122.286758, 37.890976 ], [ -122.285728, 37.890976 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1002", "GEOID10": "060014206001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 424, "AWATER10": 0, "INTPTLAT10": "+37.8910153", "INTPTLON10": "-122.2850935" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284355, 37.891247 ], [ -122.284355, 37.890976 ], [ -122.284698, 37.890976 ], [ -122.284698, 37.891247 ], [ -122.284355, 37.891247 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1003", "GEOID10": "060014206001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16431, "AWATER10": 0, "INTPTLAT10": "+37.8902144", "INTPTLON10": "-122.2848310" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284527, 37.891112 ], [ -122.284184, 37.889351 ], [ -122.285213, 37.889622 ], [ -122.285728, 37.890976 ], [ -122.284527, 37.891112 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1004", "GEOID10": "060014206001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19676, "AWATER10": 0, "INTPTLAT10": "+37.8901108", "INTPTLON10": "-122.2837239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283497, 37.891112 ], [ -122.282982, 37.889215 ], [ -122.284184, 37.889351 ], [ -122.284527, 37.890976 ], [ -122.283497, 37.891112 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2008", "GEOID10": "060014206002008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 676, "AWATER10": 0, "INTPTLAT10": "+37.8894421", "INTPTLON10": "-122.2856518" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.889486 ], [ -122.286072, 37.889215 ], [ -122.286415, 37.889215 ], [ -122.286415, 37.889486 ], [ -122.286072, 37.889486 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2009", "GEOID10": "060014206002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19896, "AWATER10": 0, "INTPTLAT10": "+37.8884164", "INTPTLON10": "-122.2856099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285213, 37.889486 ], [ -122.285042, 37.888673 ], [ -122.285385, 37.887454 ], [ -122.286415, 37.887725 ], [ -122.286072, 37.888673 ], [ -122.286243, 37.889351 ], [ -122.285385, 37.889486 ], [ -122.285213, 37.889486 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1010", "GEOID10": "060014206001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1878, "AWATER10": 0, "INTPTLAT10": "+37.8889080", "INTPTLON10": "-122.2850205" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.888944 ], [ -122.284870, 37.888944 ], [ -122.284870, 37.888538 ], [ -122.285385, 37.888538 ], [ -122.285385, 37.888944 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1008", "GEOID10": "060014206001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 832, "AWATER10": 0, "INTPTLAT10": "+37.8893913", "INTPTLON10": "-122.2845906" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285042, 37.889757 ], [ -122.285042, 37.889486 ], [ -122.285385, 37.889486 ], [ -122.285385, 37.889757 ], [ -122.285042, 37.889757 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1009", "GEOID10": "060014206001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22493, "AWATER10": 0, "INTPTLAT10": "+37.8883323", "INTPTLON10": "-122.2844715" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285213, 37.889486 ], [ -122.283840, 37.889215 ], [ -122.284355, 37.887183 ], [ -122.285385, 37.887454 ], [ -122.285042, 37.888538 ], [ -122.285213, 37.889486 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1014", "GEOID10": "060014206001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22296, "AWATER10": 0, "INTPTLAT10": "+37.8880279", "INTPTLON10": "-122.2834249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283669, 37.889215 ], [ -122.282810, 37.889080 ], [ -122.282810, 37.888673 ], [ -122.283325, 37.886912 ], [ -122.283669, 37.887048 ], [ -122.284355, 37.887183 ], [ -122.283669, 37.889215 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2012", "GEOID10": "060014206002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2533, "AWATER10": 0, "INTPTLAT10": "+37.8872385", "INTPTLON10": "-122.2887646" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288990, 37.887725 ], [ -122.288475, 37.887725 ], [ -122.288475, 37.887183 ], [ -122.288990, 37.887183 ], [ -122.288990, 37.887725 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2011", "GEOID10": "060014206002011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 36927, "AWATER10": 0, "INTPTLAT10": "+37.8868308", "INTPTLON10": "-122.2883823" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.889080 ], [ -122.288818, 37.884744 ], [ -122.289677, 37.884880 ], [ -122.289333, 37.885964 ], [ -122.288303, 37.888673 ], [ -122.287102, 37.889080 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2013", "GEOID10": "060014206002013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27693, "AWATER10": 0, "INTPTLAT10": "+37.8861944", "INTPTLON10": "-122.2877578" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287617, 37.887996 ], [ -122.286758, 37.887725 ], [ -122.287960, 37.884609 ], [ -122.288818, 37.884744 ], [ -122.287617, 37.887996 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2015", "GEOID10": "060014206002015", "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8164, "AWATER10": 0, "INTPTLAT10": "+37.8861594", "INTPTLON10": "-122.2868653" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287273, 37.886777 ], [ -122.286415, 37.886641 ], [ -122.286758, 37.885693 ], [ -122.287617, 37.885828 ], [ -122.287273, 37.886777 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2014", "GEOID10": "060014206002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 41589, "AWATER10": 0, "INTPTLAT10": "+37.8849195", "INTPTLON10": "-122.2873798" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.887725 ], [ -122.285385, 37.887454 ], [ -122.286758, 37.884067 ], [ -122.288132, 37.884338 ], [ -122.287617, 37.885828 ], [ -122.286758, 37.885693 ], [ -122.286587, 37.885828 ], [ -122.286415, 37.886641 ], [ -122.287273, 37.886777 ], [ -122.286758, 37.887725 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1022", "GEOID10": "060014206001022", "NAME10": "Block 1022", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12213, "AWATER10": 0, "INTPTLAT10": "+37.8838753", "INTPTLON10": "-122.2886289" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.884744 ], [ -122.287960, 37.884609 ], [ -122.288647, 37.883119 ], [ -122.289333, 37.883389 ], [ -122.288818, 37.884744 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1019", "GEOID10": "060014206001019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1466, "AWATER10": 0, "INTPTLAT10": "+37.8847579", "INTPTLON10": "-122.2863241" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286587, 37.885015 ], [ -122.286243, 37.885015 ], [ -122.286243, 37.884609 ], [ -122.286587, 37.884609 ], [ -122.286587, 37.885015 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1011", "GEOID10": "060014206001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1704, "AWATER10": 0, "INTPTLAT10": "+37.8864397", "INTPTLON10": "-122.2856823" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285900, 37.886641 ], [ -122.285385, 37.886641 ], [ -122.285385, 37.886235 ], [ -122.285900, 37.886235 ], [ -122.285900, 37.886641 ] ] ] } } +, +{ "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.8863390", "INTPTLON10": "-122.2851750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.887454 ], [ -122.284355, 37.887183 ], [ -122.285213, 37.885422 ], [ -122.286072, 37.885557 ], [ -122.285385, 37.887454 ] ] ] } } +, +{ "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.8843388", "INTPTLON10": "-122.2859716" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.885557 ], [ -122.285213, 37.885422 ], [ -122.285728, 37.883660 ], [ -122.287102, 37.882983 ], [ -122.286587, 37.884067 ], [ -122.286072, 37.885557 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1025", "GEOID10": "060014206001025", "NAME10": "Block 1025", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1018, "AWATER10": 0, "INTPTLAT10": "+37.8838716", "INTPTLON10": "-122.2850766" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284527, 37.884202 ], [ -122.285728, 37.883660 ], [ -122.284870, 37.884202 ], [ -122.284527, 37.884202 ] ] ] } } +, +{ "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.8854489", "INTPTLON10": "-122.2845719" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284355, 37.887183 ], [ -122.283669, 37.887048 ], [ -122.283840, 37.886235 ], [ -122.284527, 37.884202 ], [ -122.285728, 37.883660 ], [ -122.284355, 37.887183 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1029", "GEOID10": "060014206001029", "NAME10": "Block 1029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16994, "AWATER10": 0, "INTPTLAT10": "+37.8853080", "INTPTLON10": "-122.2836511" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283840, 37.886235 ], [ -122.282810, 37.886099 ], [ -122.283497, 37.884744 ], [ -122.284527, 37.884202 ], [ -122.283840, 37.886235 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1027", "GEOID10": "060014206001027", "NAME10": "Block 1027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 906, "AWATER10": 0, "INTPTLAT10": "+37.8844362", "INTPTLON10": "-122.2839247" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283497, 37.884744 ], [ -122.284527, 37.884202 ], [ -122.284012, 37.884609 ], [ -122.283497, 37.884744 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1026", "GEOID10": "060014206001026", "NAME10": "Block 1026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 63728, "AWATER10": 0, "INTPTLAT10": "+37.8834939", "INTPTLON10": "-122.2837979" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282124, 37.885015 ], [ -122.282295, 37.884473 ], [ -122.281952, 37.884473 ], [ -122.282810, 37.882577 ], [ -122.286072, 37.882577 ], [ -122.285728, 37.883660 ], [ -122.283154, 37.884880 ], [ -122.282124, 37.885015 ] ] ] } } +, +{ "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.8901660", "INTPTLON10": "-122.2826890" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282467, 37.891247 ], [ -122.281952, 37.889486 ], [ -122.282982, 37.889215 ], [ -122.283497, 37.891112 ], [ -122.282467, 37.891247 ] ] ] } } +, +{ "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.8891127", "INTPTLON10": "-122.2832122" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283497, 37.889351 ], [ -122.283497, 37.889080 ], [ -122.283840, 37.889080 ], [ -122.283840, 37.889351 ], [ -122.283497, 37.889351 ] ] ] } } +, +{ "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.8892075", "INTPTLON10": "-122.2823202" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282639, 37.889215 ], [ -122.282639, 37.888944 ], [ -122.282982, 37.888944 ], [ -122.282982, 37.889215 ], [ -122.282639, 37.889215 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1017", "GEOID10": "060014206001017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24687, "AWATER10": 0, "INTPTLAT10": "+37.8879459", "INTPTLON10": "-122.2823713" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281952, 37.889351 ], [ -122.281780, 37.888673 ], [ -122.282295, 37.886777 ], [ -122.283325, 37.886912 ], [ -122.282810, 37.888673 ], [ -122.282810, 37.889080 ], [ -122.281952, 37.889351 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1016", "GEOID10": "060014206001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9100, "AWATER10": 0, "INTPTLAT10": "+37.8864607", "INTPTLON10": "-122.2830673" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283669, 37.887048 ], [ -122.282295, 37.886777 ], [ -122.282639, 37.886370 ], [ -122.282810, 37.886099 ], [ -122.283840, 37.886235 ], [ -122.283669, 37.887048 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1028", "GEOID10": "060014206001028", "NAME10": "Block 1028", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1037, "AWATER10": 0, "INTPTLAT10": "+37.8849026", "INTPTLON10": "-122.2826795" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282467, 37.885151 ], [ -122.282124, 37.885015 ], [ -122.283497, 37.884744 ], [ -122.282467, 37.885151 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1021", "GEOID10": "060014206001021", "NAME10": "Block 1021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18586, "AWATER10": 0, "INTPTLAT10": "+37.8834620", "INTPTLON10": "-122.2875836" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.884338 ], [ -122.286758, 37.884067 ], [ -122.287102, 37.882983 ], [ -122.287273, 37.882712 ], [ -122.288647, 37.883119 ], [ -122.288132, 37.884338 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1020", "GEOID10": "060014206001020", "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 979, "AWATER10": 0, "INTPTLAT10": "+37.8834653", "INTPTLON10": "-122.2868181" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286587, 37.884202 ], [ -122.286587, 37.883931 ], [ -122.286930, 37.883931 ], [ -122.286930, 37.884202 ], [ -122.286587, 37.884202 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1024", "GEOID10": "060014206001024", "NAME10": "Block 1024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1201, "AWATER10": 0, "INTPTLAT10": "+37.8832245", "INTPTLON10": "-122.2863663" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286587, 37.883525 ], [ -122.286243, 37.883525 ], [ -122.286243, 37.883119 ], [ -122.286587, 37.883119 ], [ -122.286587, 37.883525 ] ] ] } } +, +{ "type": "Feature", "id": 12345, "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1031", "GEOID10": "060014206001031", "NAME10": "Block 1031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7920, "AWATER10": 0, "INTPTLAT10": "+37.8828579", "INTPTLON10": "-122.2863490" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285728, 37.883660 ], [ -122.286072, 37.882577 ], [ -122.287273, 37.882577 ], [ -122.287102, 37.882983 ], [ -122.285728, 37.883660 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 10, "x": 164, "y": 396 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "macarthur", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104486090991", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.137156, 37.724022 ], [ -122.134666, 37.720695 ], [ -122.133808, 37.719405 ], [ -122.133465, 37.718590 ], [ -122.131319, 37.714381 ], [ -122.129774, 37.712751 ], [ -122.127972, 37.711597 ], [ -122.125311, 37.710307 ], [ -122.121019, 37.707115 ], [ -122.117157, 37.705350 ], [ -122.114067, 37.703584 ], [ -122.109346, 37.700596 ], [ -122.108402, 37.699781 ], [ -122.105570, 37.696589 ], [ -122.104454, 37.695503 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104474748623", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.104111, 37.695503 ], [ -122.107286, 37.699034 ], [ -122.109003, 37.700664 ], [ -122.115698, 37.704807 ], [ -122.117929, 37.705961 ], [ -122.121019, 37.707319 ], [ -122.124281, 37.709899 ], [ -122.129087, 37.712547 ], [ -122.130804, 37.714177 ], [ -122.131920, 37.716078 ], [ -122.133121, 37.718590 ], [ -122.134151, 37.720356 ], [ -122.136898, 37.724022 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 10, "x": 164, "y": 395 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "macarthur", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1102157651658", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.271738, 37.827548 ], [ -122.271824, 37.827548 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104486392881", "FULLNAME": "W Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.254744, 37.821446 ], [ -122.255001, 37.821921 ], [ -122.256117, 37.822802 ], [ -122.258091, 37.824158 ], [ -122.258692, 37.824430 ], [ -122.260580, 37.824972 ], [ -122.263670, 37.825650 ], [ -122.265558, 37.826531 ], [ -122.267962, 37.827006 ], [ -122.271738, 37.827548 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1102156510290", "FULLNAME": "W Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.254143, 37.819887 ], [ -122.254314, 37.820362 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1102654602215", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.252855, 37.817243 ], [ -122.252512, 37.816768 ], [ -122.252426, 37.816361 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1102638069562", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.241526, 37.807343 ], [ -122.241526, 37.807139 ], [ -122.241182, 37.806936 ], [ -122.240496, 37.806800 ], [ -122.239637, 37.806800 ], [ -122.238264, 37.805986 ], [ -122.237320, 37.805647 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1102156241736", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.194061, 37.786386 ], [ -122.194405, 37.786860 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104486090991", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.294569, 37.833039 ], [ -122.294140, 37.832158 ], [ -122.293882, 37.830667 ], [ -122.293797, 37.828836 ], [ -122.292938, 37.827887 ], [ -122.290621, 37.826667 ], [ -122.289591, 37.826396 ], [ -122.287788, 37.826396 ], [ -122.283239, 37.827277 ], [ -122.281265, 37.827277 ], [ -122.275257, 37.825786 ], [ -122.270451, 37.824769 ], [ -122.268391, 37.824158 ], [ -122.267361, 37.824023 ], [ -122.265987, 37.823616 ], [ -122.262383, 37.822938 ], [ -122.259121, 37.821853 ], [ -122.255945, 37.820294 ], [ -122.254572, 37.819412 ], [ -122.252855, 37.817921 ], [ -122.252340, 37.817311 ], [ -122.251740, 37.816226 ], [ -122.250452, 37.811886 ], [ -122.250023, 37.811276 ], [ -122.249079, 37.810530 ], [ -122.246761, 37.809716 ], [ -122.241869, 37.808292 ], [ -122.239637, 37.807411 ], [ -122.235432, 37.805444 ], [ -122.232685, 37.803613 ], [ -122.229767, 37.801307 ], [ -122.228823, 37.800900 ], [ -122.227364, 37.800493 ], [ -122.227020, 37.800493 ], [ -122.217236, 37.798323 ], [ -122.215776, 37.797848 ], [ -122.212172, 37.797034 ], [ -122.210798, 37.796560 ], [ -122.207451, 37.795000 ], [ -122.205219, 37.793779 ], [ -122.204447, 37.793168 ], [ -122.202215, 37.790727 ], [ -122.200670, 37.789234 ], [ -122.199554, 37.788488 ], [ -122.193804, 37.785639 ], [ -122.191401, 37.784825 ], [ -122.188654, 37.784283 ], [ -122.184706, 37.784011 ], [ -122.179298, 37.783876 ], [ -122.178268, 37.783604 ], [ -122.173719, 37.780959 ], [ -122.169771, 37.778856 ], [ -122.164192, 37.776346 ], [ -122.158098, 37.773225 ], [ -122.156467, 37.771936 ], [ -122.155266, 37.770647 ], [ -122.152433, 37.766101 ], [ -122.150545, 37.763862 ], [ -122.148314, 37.760334 ], [ -122.147970, 37.758773 ], [ -122.148056, 37.757823 ], [ -122.148743, 37.756533 ], [ -122.150974, 37.754430 ], [ -122.151575, 37.753615 ], [ -122.152004, 37.752055 ], [ -122.151833, 37.750697 ], [ -122.149858, 37.746490 ], [ -122.148914, 37.745064 ], [ -122.148228, 37.744386 ], [ -122.145824, 37.742621 ], [ -122.144108, 37.740313 ], [ -122.141447, 37.738141 ], [ -122.140675, 37.737055 ], [ -122.140245, 37.736105 ], [ -122.139559, 37.732915 ], [ -122.138357, 37.728706 ], [ -122.137842, 37.725379 ], [ -122.136984, 37.723682 ], [ -122.134666, 37.720695 ], [ -122.133808, 37.719405 ], [ -122.133465, 37.718590 ], [ -122.131319, 37.714381 ], [ -122.130203, 37.713159 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104474748623", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.129774, 37.713159 ], [ -122.130804, 37.714177 ], [ -122.131319, 37.714992 ], [ -122.133121, 37.718590 ], [ -122.134151, 37.720356 ], [ -122.136555, 37.723546 ], [ -122.137413, 37.724904 ], [ -122.137671, 37.725787 ], [ -122.138186, 37.728977 ], [ -122.138872, 37.731150 ], [ -122.140074, 37.736241 ], [ -122.140503, 37.737259 ], [ -122.141361, 37.738345 ], [ -122.143764, 37.740245 ], [ -122.145653, 37.742757 ], [ -122.146511, 37.743503 ], [ -122.148056, 37.744521 ], [ -122.149000, 37.745472 ], [ -122.151489, 37.750358 ], [ -122.151747, 37.751172 ], [ -122.151747, 37.752258 ], [ -122.151575, 37.753005 ], [ -122.150888, 37.754226 ], [ -122.149086, 37.755855 ], [ -122.148142, 37.757008 ], [ -122.147799, 37.758094 ], [ -122.147884, 37.759791 ], [ -122.148142, 37.760537 ], [ -122.148743, 37.761555 ], [ -122.150288, 37.763862 ], [ -122.152262, 37.766237 ], [ -122.153721, 37.768747 ], [ -122.155180, 37.770918 ], [ -122.156639, 37.772343 ], [ -122.157755, 37.773157 ], [ -122.158871, 37.773836 ], [ -122.164106, 37.776481 ], [ -122.167282, 37.777838 ], [ -122.170029, 37.779195 ], [ -122.173977, 37.781298 ], [ -122.177067, 37.783333 ], [ -122.178440, 37.783876 ], [ -122.179470, 37.784079 ], [ -122.184963, 37.784215 ], [ -122.188826, 37.784486 ], [ -122.190886, 37.784893 ], [ -122.193031, 37.785572 ], [ -122.196035, 37.786928 ], [ -122.199469, 37.788692 ], [ -122.201014, 37.789845 ], [ -122.203760, 37.792829 ], [ -122.205133, 37.793982 ], [ -122.206421, 37.794728 ], [ -122.208824, 37.795814 ], [ -122.208910, 37.795949 ], [ -122.211313, 37.796967 ], [ -122.214060, 37.797713 ], [ -122.219725, 37.799137 ], [ -122.228479, 37.800968 ], [ -122.229939, 37.801646 ], [ -122.232943, 37.804088 ], [ -122.234659, 37.805241 ], [ -122.237234, 37.806529 ], [ -122.241354, 37.808360 ], [ -122.247963, 37.810259 ], [ -122.248821, 37.810598 ], [ -122.249508, 37.811072 ], [ -122.250280, 37.812089 ], [ -122.251482, 37.816226 ], [ -122.252340, 37.817717 ], [ -122.253284, 37.818734 ], [ -122.254486, 37.819684 ], [ -122.257147, 37.821243 ], [ -122.258949, 37.822057 ], [ -122.262039, 37.823074 ], [ -122.267618, 37.824226 ], [ -122.269077, 37.824633 ], [ -122.269764, 37.824701 ], [ -122.274485, 37.825989 ], [ -122.281094, 37.827480 ], [ -122.282038, 37.827616 ], [ -122.283325, 37.827616 ], [ -122.286758, 37.826870 ], [ -122.288132, 37.826735 ], [ -122.289248, 37.826938 ], [ -122.291050, 37.827480 ], [ -122.291994, 37.827887 ], [ -122.293110, 37.828701 ], [ -122.293282, 37.828972 ], [ -122.293453, 37.829853 ], [ -122.293367, 37.830938 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1102155930810", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.185392, 37.775532 ], [ -122.185221, 37.775735 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103690483032", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.184105, 37.776617 ], [ -122.180328, 37.774446 ], [ -122.179728, 37.773971 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1102654601627", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.181444, 37.774989 ], [ -122.181187, 37.774921 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103690483026", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.176466, 37.771258 ], [ -122.175436, 37.770783 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1102654601663", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.169771, 37.767594 ], [ -122.170029, 37.767729 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1102954918511", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.172003, 37.769222 ], [ -122.168055, 37.766440 ], [ -122.163849, 37.761623 ], [ -122.163162, 37.760741 ], [ -122.161703, 37.756533 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103690383700", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.160416, 37.752937 ], [ -122.159815, 37.751376 ], [ -122.158871, 37.750019 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103690474249", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.158871, 37.750019 ], [ -122.157755, 37.748322 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103690474250", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.142992, 37.738209 ], [ -122.151747, 37.742417 ], [ -122.152519, 37.743028 ], [ -122.153635, 37.744182 ], [ -122.156467, 37.746218 ], [ -122.157240, 37.747440 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485645649", "FULLNAME": "W Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.279892, 37.828768 ], [ -122.284698, 37.827955 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485605278", "FULLNAME": "W Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.279549, 37.828497 ], [ -122.281609, 37.828226 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1102156217102", "FULLNAME": "W Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.279205, 37.828497 ], [ -122.271996, 37.827684 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104475134288", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.254486, 37.820362 ], [ -122.255173, 37.822260 ], [ -122.258263, 37.824430 ], [ -122.259293, 37.824972 ], [ -122.266846, 37.827141 ], [ -122.279892, 37.828768 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104475134436", "FULLNAME": "W Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.254486, 37.820362 ], [ -122.255173, 37.822260 ], [ -122.258263, 37.824430 ], [ -122.266846, 37.827141 ], [ -122.275429, 37.828226 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1102407366406", "FULLNAME": "W Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.254486, 37.820090 ], [ -122.254829, 37.821446 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485773833", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.253113, 37.817378 ], [ -122.254486, 37.819006 ], [ -122.254829, 37.821446 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1105089436004", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.252426, 37.816565 ], [ -122.251053, 37.811954 ], [ -122.250023, 37.810869 ], [ -122.242813, 37.808156 ], [ -122.241783, 37.807071 ], [ -122.239723, 37.806800 ], [ -122.236290, 37.805173 ], [ -122.233887, 37.804088 ], [ -122.229767, 37.801104 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469713198", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.241783, 37.807343 ], [ -122.241783, 37.807614 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469713187", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.241783, 37.807343 ], [ -122.241440, 37.807343 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1102156248968", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.237320, 37.805715 ], [ -122.235947, 37.805444 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1102638078801", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.229424, 37.801646 ], [ -122.228050, 37.801375 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1105281275689", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.228050, 37.801375 ], [ -122.220840, 37.800019 ], [ -122.219810, 37.800290 ], [ -122.219124, 37.801104 ], [ -122.218437, 37.801104 ], [ -122.209167, 37.798662 ], [ -122.207794, 37.798662 ], [ -122.205734, 37.797848 ], [ -122.201271, 37.794322 ], [ -122.194061, 37.786453 ], [ -122.192688, 37.785639 ], [ -122.188911, 37.784825 ], [ -122.188568, 37.784011 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103717593123", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.228050, 37.801375 ], [ -122.220497, 37.800019 ], [ -122.218781, 37.801104 ], [ -122.209511, 37.798662 ], [ -122.207794, 37.798933 ], [ -122.204704, 37.797306 ], [ -122.202301, 37.795407 ], [ -122.193375, 37.785911 ], [ -122.187881, 37.784554 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1105281275688", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.194061, 37.786453 ], [ -122.192688, 37.785097 ], [ -122.188911, 37.784011 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1105281275434", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.188911, 37.784011 ], [ -122.188568, 37.784011 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1105281275687", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.188911, 37.784011 ], [ -122.187195, 37.780484 ], [ -122.187195, 37.778856 ], [ -122.188225, 37.777770 ], [ -122.185478, 37.775600 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1105281275692", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.188568, 37.784011 ], [ -122.187195, 37.780213 ], [ -122.187195, 37.778585 ], [ -122.188225, 37.777770 ], [ -122.185478, 37.775600 ], [ -122.184105, 37.776685 ], [ -122.181702, 37.775057 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1102406970092", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.181358, 37.775057 ], [ -122.176552, 37.771258 ], [ -122.172089, 37.769358 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1102406970093", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.172432, 37.769358 ], [ -122.170029, 37.767729 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1105089465114", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.170029, 37.767729 ], [ -122.167969, 37.766101 ], [ -122.163506, 37.761216 ], [ -122.160072, 37.751715 ], [ -122.156639, 37.746286 ], [ -122.151833, 37.742485 ], [ -122.146339, 37.739770 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1102954189105", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.161446, 37.755787 ], [ -122.160072, 37.751444 ], [ -122.159042, 37.750087 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1105089465116", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.143250, 37.738413 ], [ -122.141190, 37.737055 ], [ -122.140846, 37.735969 ], [ -122.139130, 37.730539 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1102406970094", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.139130, 37.730539 ], [ -122.138786, 37.728910 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1102406970095", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.139130, 37.730539 ], [ -122.138786, 37.728910 ] ] } } +] } +, +{ "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.8928912", "INTPTLON10": "-122.3202957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.312508, 37.897479 ], [ -122.312593, 37.897072 ], [ -122.311649, 37.896869 ], [ -122.311563, 37.896192 ], [ -122.311134, 37.896056 ], [ -122.311306, 37.895785 ], [ -122.311134, 37.895582 ], [ -122.310705, 37.895514 ], [ -122.310619, 37.895108 ], [ -122.310190, 37.894769 ], [ -122.309504, 37.893482 ], [ -122.309160, 37.892263 ], [ -122.309074, 37.891315 ], [ -122.309332, 37.889757 ], [ -122.309504, 37.889147 ], [ -122.309847, 37.888809 ], [ -122.310104, 37.888944 ], [ -122.310190, 37.889147 ], [ -122.310877, 37.889757 ], [ -122.311049, 37.890231 ], [ -122.311134, 37.890299 ], [ -122.311220, 37.889960 ], [ -122.311392, 37.889960 ], [ -122.311735, 37.890434 ], [ -122.312765, 37.891247 ], [ -122.313709, 37.891925 ], [ -122.314310, 37.891992 ], [ -122.314739, 37.892466 ], [ -122.314825, 37.892466 ], [ -122.314568, 37.891925 ], [ -122.315941, 37.891925 ], [ -122.316027, 37.891180 ], [ -122.317657, 37.890976 ], [ -122.319889, 37.889960 ], [ -122.322721, 37.890028 ], [ -122.323151, 37.891044 ], [ -122.324009, 37.892399 ], [ -122.325726, 37.892534 ], [ -122.325897, 37.892331 ], [ -122.325554, 37.892060 ], [ -122.325640, 37.890841 ], [ -122.327356, 37.890841 ], [ -122.327442, 37.891518 ], [ -122.327528, 37.891586 ], [ -122.327614, 37.891450 ], [ -122.327700, 37.890231 ], [ -122.327614, 37.889689 ], [ -122.334738, 37.889622 ], [ -122.333450, 37.892805 ], [ -122.312508, 37.897479 ] ] ] } } +, +{ "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.8905867", "INTPTLON10": "-122.3181131" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.309160, 37.892263 ], [ -122.308903, 37.890502 ], [ -122.308989, 37.888809 ], [ -122.309246, 37.887860 ], [ -122.309847, 37.888131 ], [ -122.311306, 37.889486 ], [ -122.315598, 37.889689 ], [ -122.315855, 37.889554 ], [ -122.327614, 37.889689 ], [ -122.327614, 37.891450 ], [ -122.327528, 37.891586 ], [ -122.327442, 37.891518 ], [ -122.327356, 37.890841 ], [ -122.325811, 37.890841 ], [ -122.325640, 37.890976 ], [ -122.325554, 37.891518 ], [ -122.325554, 37.892060 ], [ -122.325897, 37.892331 ], [ -122.325897, 37.892534 ], [ -122.324009, 37.892399 ], [ -122.323151, 37.891044 ], [ -122.322721, 37.890028 ], [ -122.319889, 37.889960 ], [ -122.317657, 37.890976 ], [ -122.316027, 37.891180 ], [ -122.315941, 37.891925 ], [ -122.314568, 37.891925 ], [ -122.314825, 37.892466 ], [ -122.314739, 37.892466 ], [ -122.314310, 37.891992 ], [ -122.313709, 37.891925 ], [ -122.312765, 37.891247 ], [ -122.311735, 37.890434 ], [ -122.311392, 37.889960 ], [ -122.311220, 37.889960 ], [ -122.311134, 37.890299 ], [ -122.311049, 37.890231 ], [ -122.310877, 37.889757 ], [ -122.310190, 37.889147 ], [ -122.310104, 37.888944 ], [ -122.309847, 37.888809 ], [ -122.309504, 37.889147 ], [ -122.309332, 37.889757 ], [ -122.309074, 37.891315 ], [ -122.309160, 37.892263 ] ] ], [ [ [ -122.309160, 37.892263 ], [ -122.309504, 37.893482 ], [ -122.310190, 37.894769 ], [ -122.310619, 37.895108 ], [ -122.310705, 37.895514 ], [ -122.311134, 37.895582 ], [ -122.311306, 37.895785 ], [ -122.311134, 37.896056 ], [ -122.311563, 37.896192 ], [ -122.311563, 37.896734 ], [ -122.310705, 37.895785 ], [ -122.310019, 37.894769 ], [ -122.309246, 37.893076 ], [ -122.309160, 37.892263 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3007", "GEOID10": "060014203003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3648, "AWATER10": 0, "INTPTLAT10": "+37.8971393", "INTPTLON10": "-122.3121267" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.312078, 37.897479 ], [ -122.311649, 37.896869 ], [ -122.312508, 37.896937 ], [ -122.312593, 37.897140 ], [ -122.312508, 37.897479 ], [ -122.312078, 37.897479 ] ] ] } } +, +{ "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.8946697", "INTPTLON10": "-122.3084294" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309589, 37.897885 ], [ -122.309332, 37.897817 ], [ -122.308302, 37.895244 ], [ -122.307959, 37.894024 ], [ -122.307873, 37.892805 ], [ -122.307873, 37.892331 ], [ -122.308044, 37.892196 ], [ -122.308302, 37.892196 ], [ -122.308388, 37.894431 ], [ -122.309418, 37.897343 ], [ -122.309589, 37.897885 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3005", "GEOID10": "060014203003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 30820, "AWATER10": 0, "INTPTLAT10": "+37.8910154", "INTPTLON10": "-122.3085406" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.311478, 37.897682 ], [ -122.309933, 37.895718 ], [ -122.309332, 37.894566 ], [ -122.308559, 37.892399 ], [ -122.308130, 37.890638 ], [ -122.308388, 37.890096 ], [ -122.309418, 37.893889 ], [ -122.310534, 37.895853 ], [ -122.311907, 37.897546 ], [ -122.311478, 37.897682 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3004", "GEOID10": "060014203003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59347, "AWATER10": 0, "INTPTLAT10": "+37.8955812", "INTPTLON10": "-122.3094534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309589, 37.897885 ], [ -122.309418, 37.897343 ], [ -122.308388, 37.894431 ], [ -122.308302, 37.892331 ], [ -122.307959, 37.890976 ], [ -122.308130, 37.890638 ], [ -122.308559, 37.892399 ], [ -122.309332, 37.894566 ], [ -122.309933, 37.895718 ], [ -122.311478, 37.897682 ], [ -122.310963, 37.897885 ], [ -122.309589, 37.897885 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3006", "GEOID10": "060014203003006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19563, "AWATER10": 24, "INTPTLAT10": "+37.8904059", "INTPTLON10": "-122.3086941" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.311907, 37.897546 ], [ -122.310534, 37.895853 ], [ -122.309761, 37.894498 ], [ -122.309160, 37.893144 ], [ -122.308388, 37.890096 ], [ -122.308989, 37.888809 ], [ -122.308903, 37.890502 ], [ -122.309246, 37.893076 ], [ -122.310019, 37.894769 ], [ -122.311563, 37.896869 ], [ -122.312078, 37.897479 ], [ -122.311907, 37.897546 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3001", "GEOID10": "060014203003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24651, "AWATER10": 0, "INTPTLAT10": "+37.8921989", "INTPTLON10": "-122.3075517" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309418, 37.897885 ], [ -122.307701, 37.894295 ], [ -122.307100, 37.892602 ], [ -122.307100, 37.890909 ], [ -122.307529, 37.889554 ], [ -122.307959, 37.890976 ], [ -122.307615, 37.892263 ], [ -122.307615, 37.893347 ], [ -122.308302, 37.895244 ], [ -122.309418, 37.897885 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3000", "GEOID10": "060014203003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27350, "AWATER10": 0, "INTPTLAT10": "+37.8907736", "INTPTLON10": "-122.3067658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308989, 37.898021 ], [ -122.306671, 37.892670 ], [ -122.306671, 37.892263 ], [ -122.306757, 37.891721 ], [ -122.306414, 37.890841 ], [ -122.306843, 37.890705 ], [ -122.307444, 37.889757 ], [ -122.307100, 37.891247 ], [ -122.307100, 37.892602 ], [ -122.307701, 37.894295 ], [ -122.309332, 37.897885 ], [ -122.308989, 37.898021 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3002", "GEOID10": "060014203003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9773, "AWATER10": 0, "INTPTLAT10": "+37.8920318", "INTPTLON10": "-122.3077138" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308302, 37.895244 ], [ -122.307615, 37.893144 ], [ -122.307701, 37.891721 ], [ -122.307959, 37.890976 ], [ -122.308302, 37.892196 ], [ -122.308044, 37.892196 ], [ -122.307873, 37.892331 ], [ -122.307873, 37.893076 ], [ -122.308302, 37.895244 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1006", "GEOID10": "060014202001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1461, "AWATER10": 0, "INTPTLAT10": "+37.8973748", "INTPTLON10": "-122.3012481" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301693, 37.898562 ], [ -122.301006, 37.896734 ], [ -122.301178, 37.896734 ], [ -122.301693, 37.898562 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1005", "GEOID10": "060014202001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14639, "AWATER10": 0, "INTPTLAT10": "+37.8976068", "INTPTLON10": "-122.3008394" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301607, 37.898562 ], [ -122.300663, 37.898359 ], [ -122.300148, 37.896869 ], [ -122.301006, 37.896734 ], [ -122.301607, 37.898562 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "GEOID10": "060014202001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.8976015", "INTPTLON10": "-122.2999287" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300663, 37.898359 ], [ -122.299719, 37.898291 ], [ -122.299290, 37.897072 ], [ -122.300148, 37.896869 ], [ -122.300663, 37.898359 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "GEOID10": "060014203002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.8949184", "INTPTLON10": "-122.3048891" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301693, 37.898562 ], [ -122.300920, 37.896056 ], [ -122.302637, 37.895718 ], [ -122.302036, 37.893821 ], [ -122.302895, 37.893686 ], [ -122.303152, 37.894566 ], [ -122.303152, 37.893550 ], [ -122.303495, 37.892873 ], [ -122.303152, 37.891654 ], [ -122.303495, 37.890570 ], [ -122.304010, 37.890096 ], [ -122.306070, 37.889622 ], [ -122.306757, 37.891721 ], [ -122.306671, 37.892670 ], [ -122.308989, 37.898021 ], [ -122.306242, 37.898291 ], [ -122.305384, 37.898427 ], [ -122.301693, 37.898562 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "GEOID10": "060014203001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.8926328", "INTPTLON10": "-122.3029106" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303152, 37.894566 ], [ -122.302294, 37.891789 ], [ -122.303152, 37.891654 ], [ -122.303495, 37.892873 ], [ -122.303152, 37.893550 ], [ -122.303152, 37.894566 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1001", "GEOID10": "060014203001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16165, "AWATER10": 0, "INTPTLAT10": "+37.8948170", "INTPTLON10": "-122.3018829" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301779, 37.895853 ], [ -122.301178, 37.894024 ], [ -122.302036, 37.893821 ], [ -122.302637, 37.895718 ], [ -122.301779, 37.895853 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1007", "GEOID10": "060014202001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 914, "AWATER10": 0, "INTPTLAT10": "+37.8963621", "INTPTLON10": "-122.3009413" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301006, 37.896734 ], [ -122.300835, 37.896056 ], [ -122.300920, 37.896056 ], [ -122.301178, 37.896734 ], [ -122.301006, 37.896734 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1014", "GEOID10": "060014202001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1324, "AWATER10": 0, "INTPTLAT10": "+37.8955459", "INTPTLON10": "-122.3006834" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.896056 ], [ -122.300491, 37.895108 ], [ -122.300663, 37.895108 ], [ -122.300920, 37.896056 ], [ -122.300835, 37.896056 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "GEOID10": "060014202001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.8959674", "INTPTLON10": "-122.3002912" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.896869 ], [ -122.299633, 37.895311 ], [ -122.300491, 37.895108 ], [ -122.300835, 37.896056 ], [ -122.301006, 37.896734 ], [ -122.300148, 37.896869 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1000", "GEOID10": "060014203001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16605, "AWATER10": 0, "INTPTLAT10": "+37.8950031", "INTPTLON10": "-122.3010393" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300920, 37.896056 ], [ -122.300406, 37.894160 ], [ -122.301178, 37.894024 ], [ -122.301779, 37.895853 ], [ -122.300920, 37.896056 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1007", "GEOID10": "060014203001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16120, "AWATER10": 0, "INTPTLAT10": "+37.8927903", "INTPTLON10": "-122.3021281" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302036, 37.893821 ], [ -122.301435, 37.891992 ], [ -122.302294, 37.891789 ], [ -122.302895, 37.893686 ], [ -122.302036, 37.893821 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1002", "GEOID10": "060014203001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16535, "AWATER10": 0, "INTPTLAT10": "+37.8929602", "INTPTLON10": "-122.3012875" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.894024 ], [ -122.300577, 37.892128 ], [ -122.301435, 37.891992 ], [ -122.302036, 37.893821 ], [ -122.301178, 37.894024 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3003", "GEOID10": "060014202003003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2234, "AWATER10": 0, "INTPTLAT10": "+37.8942520", "INTPTLON10": "-122.3002730" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.895108 ], [ -122.299976, 37.893482 ], [ -122.300148, 37.893482 ], [ -122.300577, 37.894905 ], [ -122.300663, 37.895108 ], [ -122.300491, 37.895108 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1003", "GEOID10": "060014203001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16635, "AWATER10": 0, "INTPTLAT10": "+37.8931288", "INTPTLON10": "-122.3004328" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300406, 37.894160 ], [ -122.300148, 37.893482 ], [ -122.299719, 37.892331 ], [ -122.300577, 37.892128 ], [ -122.301178, 37.894024 ], [ -122.300406, 37.894160 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "GEOID10": "060014202003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.8928701", "INTPTLON10": "-122.2998265" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299976, 37.893482 ], [ -122.299633, 37.892331 ], [ -122.299719, 37.892331 ], [ -122.300148, 37.893482 ], [ -122.299976, 37.893482 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "GEOID10": "060014204001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.8842028", "INTPTLON10": "-122.3237534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.327614, 37.889689 ], [ -122.327442, 37.889147 ], [ -122.327614, 37.888741 ], [ -122.327099, 37.888741 ], [ -122.325468, 37.888131 ], [ -122.324610, 37.887928 ], [ -122.322979, 37.888335 ], [ -122.322893, 37.889080 ], [ -122.322292, 37.889418 ], [ -122.320919, 37.889283 ], [ -122.319632, 37.889486 ], [ -122.317314, 37.889283 ], [ -122.316113, 37.887928 ], [ -122.315855, 37.887386 ], [ -122.315941, 37.886235 ], [ -122.316542, 37.886167 ], [ -122.316456, 37.885964 ], [ -122.316027, 37.885964 ], [ -122.316027, 37.885693 ], [ -122.316885, 37.885693 ], [ -122.316885, 37.885760 ], [ -122.317057, 37.885760 ], [ -122.317057, 37.885489 ], [ -122.316027, 37.885557 ], [ -122.316113, 37.885489 ], [ -122.315769, 37.885286 ], [ -122.315512, 37.884744 ], [ -122.315683, 37.884338 ], [ -122.315598, 37.884067 ], [ -122.315083, 37.883999 ], [ -122.314396, 37.883389 ], [ -122.313967, 37.882644 ], [ -122.313108, 37.882238 ], [ -122.312508, 37.881425 ], [ -122.327700, 37.877360 ], [ -122.334738, 37.889622 ], [ -122.327614, 37.889689 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1011", "GEOID10": "060014204001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 542505, "AWATER10": 0, "INTPTLAT10": "+37.8862375", "INTPTLON10": "-122.3141377" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.315598, 37.889689 ], [ -122.311306, 37.889486 ], [ -122.309418, 37.887725 ], [ -122.309246, 37.887860 ], [ -122.309332, 37.887318 ], [ -122.309589, 37.886980 ], [ -122.309589, 37.886506 ], [ -122.308388, 37.882306 ], [ -122.312508, 37.881425 ], [ -122.313108, 37.882238 ], [ -122.313967, 37.882644 ], [ -122.314396, 37.883389 ], [ -122.315083, 37.883999 ], [ -122.315598, 37.884067 ], [ -122.315683, 37.884338 ], [ -122.315512, 37.884744 ], [ -122.315769, 37.885286 ], [ -122.316113, 37.885489 ], [ -122.316027, 37.885557 ], [ -122.317057, 37.885489 ], [ -122.317057, 37.885760 ], [ -122.316885, 37.885760 ], [ -122.316885, 37.885693 ], [ -122.316027, 37.885693 ], [ -122.316027, 37.885964 ], [ -122.316456, 37.885964 ], [ -122.316542, 37.886167 ], [ -122.315941, 37.886235 ], [ -122.315855, 37.887386 ], [ -122.316113, 37.887928 ], [ -122.317314, 37.889283 ], [ -122.319632, 37.889486 ], [ -122.320919, 37.889283 ], [ -122.322292, 37.889418 ], [ -122.322893, 37.889080 ], [ -122.322979, 37.888335 ], [ -122.324610, 37.887928 ], [ -122.325468, 37.888131 ], [ -122.327099, 37.888741 ], [ -122.327614, 37.888741 ], [ -122.327442, 37.889147 ], [ -122.327614, 37.889689 ], [ -122.315855, 37.889554 ], [ -122.315598, 37.889689 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3030", "GEOID10": "060014203003030", "NAME10": "Block 3030", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 744, "AWATER10": 0, "INTPTLAT10": "+37.8878859", "INTPTLON10": "-122.3094998" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309847, 37.888131 ], [ -122.309332, 37.887928 ], [ -122.309418, 37.887725 ], [ -122.309847, 37.888131 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3010", "GEOID10": "060014203003010", "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1835, "AWATER10": 0, "INTPTLAT10": "+37.8878520", "INTPTLON10": "-122.3091212" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308989, 37.888809 ], [ -122.309074, 37.887454 ], [ -122.309332, 37.887318 ], [ -122.308989, 37.888809 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3011", "GEOID10": "060014203003011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10961, "AWATER10": 0, "INTPTLAT10": "+37.8885068", "INTPTLON10": "-122.3086806" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308388, 37.890096 ], [ -122.308388, 37.889215 ], [ -122.308559, 37.887589 ], [ -122.308645, 37.887386 ], [ -122.309074, 37.887454 ], [ -122.308989, 37.888809 ], [ -122.308388, 37.890096 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3016", "GEOID10": "060014203003016", "NAME10": "Block 3016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12044, "AWATER10": 0, "INTPTLAT10": "+37.8899556", "INTPTLON10": "-122.3067458" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306414, 37.890841 ], [ -122.306242, 37.890299 ], [ -122.306671, 37.890231 ], [ -122.306328, 37.890096 ], [ -122.306070, 37.889622 ], [ -122.307529, 37.889351 ], [ -122.307529, 37.889554 ], [ -122.306843, 37.890705 ], [ -122.306414, 37.890841 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3017", "GEOID10": "060014203003017", "NAME10": "Block 3017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 393, "AWATER10": 0, "INTPTLAT10": "+37.8901345", "INTPTLON10": "-122.3063016" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306242, 37.890299 ], [ -122.306156, 37.889960 ], [ -122.306671, 37.890231 ], [ -122.306242, 37.890299 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3012", "GEOID10": "060014203003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14539, "AWATER10": 0, "INTPTLAT10": "+37.8894024", "INTPTLON10": "-122.3080555" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307959, 37.890976 ], [ -122.307529, 37.889554 ], [ -122.308559, 37.887657 ], [ -122.308388, 37.890096 ], [ -122.307959, 37.890976 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3029", "GEOID10": "060014203003029", "NAME10": "Block 3029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14565, "AWATER10": 0, "INTPTLAT10": "+37.8878852", "INTPTLON10": "-122.3078467" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307701, 37.889215 ], [ -122.307272, 37.887251 ], [ -122.308130, 37.887251 ], [ -122.308645, 37.887386 ], [ -122.308645, 37.887454 ], [ -122.307701, 37.889215 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3018", "GEOID10": "060014203003018", "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9739, "AWATER10": 0, "INTPTLAT10": "+37.8891261", "INTPTLON10": "-122.3066496" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306070, 37.889622 ], [ -122.305899, 37.889012 ], [ -122.307358, 37.888673 ], [ -122.307529, 37.889351 ], [ -122.306070, 37.889622 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3028", "GEOID10": "060014203003028", "NAME10": "Block 3028", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 444, "AWATER10": 0, "INTPTLAT10": "+37.8890070", "INTPTLON10": "-122.3053896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304955, 37.889080 ], [ -122.305813, 37.888944 ], [ -122.305899, 37.889012 ], [ -122.304955, 37.889080 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3015", "GEOID10": "060014203003015", "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 782, "AWATER10": 0, "INTPTLAT10": "+37.8887826", "INTPTLON10": "-122.3065328" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305899, 37.889012 ], [ -122.305813, 37.888944 ], [ -122.307358, 37.888673 ], [ -122.305899, 37.889012 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3014", "GEOID10": "060014203003014", "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10339, "AWATER10": 0, "INTPTLAT10": "+37.8884185", "INTPTLON10": "-122.3064403" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305813, 37.888944 ], [ -122.305641, 37.888267 ], [ -122.307186, 37.887996 ], [ -122.307358, 37.888673 ], [ -122.305813, 37.888944 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3013", "GEOID10": "060014203003013", "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7694, "AWATER10": 0, "INTPTLAT10": "+37.8877645", "INTPTLON10": "-122.3071265" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307529, 37.889554 ], [ -122.307014, 37.887522 ], [ -122.305470, 37.887522 ], [ -122.307272, 37.887251 ], [ -122.307701, 37.889215 ], [ -122.307529, 37.889554 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1008", "GEOID10": "060014204001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 447, "AWATER10": 0, "INTPTLAT10": "+37.8873248", "INTPTLON10": "-122.3088095" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309074, 37.887454 ], [ -122.308645, 37.887386 ], [ -122.308731, 37.887251 ], [ -122.309074, 37.887454 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1009", "GEOID10": "060014204001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7572, "AWATER10": 0, "INTPTLAT10": "+37.8865874", "INTPTLON10": "-122.3090315" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309074, 37.887454 ], [ -122.308731, 37.887251 ], [ -122.309074, 37.885151 ], [ -122.309332, 37.886844 ], [ -122.309332, 37.887318 ], [ -122.309074, 37.887454 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1010", "GEOID10": "060014204001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6192, "AWATER10": 0, "INTPTLAT10": "+37.8856733", "INTPTLON10": "-122.3091896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309332, 37.887318 ], [ -122.309332, 37.886370 ], [ -122.309074, 37.885151 ], [ -122.308645, 37.883525 ], [ -122.309589, 37.886506 ], [ -122.309589, 37.887115 ], [ -122.309332, 37.887318 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1006", "GEOID10": "060014204001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59431, "AWATER10": 0, "INTPTLAT10": "+37.8849426", "INTPTLON10": "-122.3081455" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308731, 37.887251 ], [ -122.307272, 37.887115 ], [ -122.307358, 37.886777 ], [ -122.307873, 37.882035 ], [ -122.308388, 37.882238 ], [ -122.308645, 37.883525 ], [ -122.309074, 37.885151 ], [ -122.308731, 37.887251 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1007", "GEOID10": "060014204001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1737, "AWATER10": 0, "INTPTLAT10": "+37.8871632", "INTPTLON10": "-122.3079226" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308645, 37.887386 ], [ -122.308559, 37.887318 ], [ -122.307272, 37.887251 ], [ -122.307272, 37.887115 ], [ -122.308731, 37.887251 ], [ -122.308645, 37.887386 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3031", "GEOID10": "060014203003031", "NAME10": "Block 3031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9685, "AWATER10": 0, "INTPTLAT10": "+37.8877891", "INTPTLON10": "-122.3061951" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305641, 37.888267 ], [ -122.305470, 37.887522 ], [ -122.306929, 37.887454 ], [ -122.307186, 37.887996 ], [ -122.305641, 37.888267 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1005", "GEOID10": "060014204001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 52400, "AWATER10": 0, "INTPTLAT10": "+37.8837458", "INTPTLON10": "-122.3069617" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307272, 37.887115 ], [ -122.307100, 37.886912 ], [ -122.306242, 37.883322 ], [ -122.305813, 37.882102 ], [ -122.307358, 37.881899 ], [ -122.307873, 37.882035 ], [ -122.307358, 37.886777 ], [ -122.307272, 37.887115 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3021", "GEOID10": "060014203003021", "NAME10": "Block 3021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11997, "AWATER10": 0, "INTPTLAT10": "+37.8902784", "INTPTLON10": "-122.3030396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303152, 37.891654 ], [ -122.302465, 37.889622 ], [ -122.303324, 37.889486 ], [ -122.303581, 37.890367 ], [ -122.303152, 37.891654 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3019", "GEOID10": "060014203003019", "NAME10": "Block 3019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17581, "AWATER10": 0, "INTPTLAT10": "+37.8895455", "INTPTLON10": "-122.3046051" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303581, 37.890367 ], [ -122.303324, 37.889486 ], [ -122.305899, 37.889012 ], [ -122.306070, 37.889622 ], [ -122.304182, 37.890028 ], [ -122.303581, 37.890367 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3020", "GEOID10": "060014203003020", "NAME10": "Block 3020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 409, "AWATER10": 0, "INTPTLAT10": "+37.8891773", "INTPTLON10": "-122.3045386" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304525, 37.889351 ], [ -122.304354, 37.889351 ], [ -122.304354, 37.889147 ], [ -122.304525, 37.889147 ], [ -122.304525, 37.889351 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3027", "GEOID10": "060014203003027", "NAME10": "Block 3027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13106, "AWATER10": 0, "INTPTLAT10": "+37.8882387", "INTPTLON10": "-122.3051246" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304955, 37.889080 ], [ -122.304525, 37.887522 ], [ -122.305384, 37.887522 ], [ -122.305813, 37.888944 ], [ -122.304955, 37.889080 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3026", "GEOID10": "060014203003026", "NAME10": "Block 3026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14219, "AWATER10": 0, "INTPTLAT10": "+37.8883405", "INTPTLON10": "-122.3042616" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304182, 37.889283 ], [ -122.303581, 37.887589 ], [ -122.304525, 37.887522 ], [ -122.304955, 37.889080 ], [ -122.304182, 37.889283 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3025", "GEOID10": "060014203003025", "NAME10": "Block 3025", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 406, "AWATER10": 0, "INTPTLAT10": "+37.8893398", "INTPTLON10": "-122.3036979" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303324, 37.889486 ], [ -122.303324, 37.889418 ], [ -122.304182, 37.889283 ], [ -122.303324, 37.889486 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3022", "GEOID10": "060014203003022", "NAME10": "Block 3022", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 411, "AWATER10": 0, "INTPTLAT10": "+37.8895077", "INTPTLON10": "-122.3028537" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302809, 37.889689 ], [ -122.302551, 37.889689 ], [ -122.302551, 37.889486 ], [ -122.302809, 37.889486 ], [ -122.302809, 37.889689 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3024", "GEOID10": "060014203003024", "NAME10": "Block 3024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15240, "AWATER10": 0, "INTPTLAT10": "+37.8884411", "INTPTLON10": "-122.3034025" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303324, 37.889418 ], [ -122.302723, 37.887589 ], [ -122.303581, 37.887589 ], [ -122.304182, 37.889283 ], [ -122.303324, 37.889418 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "GEOID10": "060014203001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.8906969", "INTPTLON10": "-122.3023492" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302294, 37.891789 ], [ -122.301693, 37.889825 ], [ -122.302465, 37.889622 ], [ -122.303152, 37.891654 ], [ -122.302294, 37.891789 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1006", "GEOID10": "060014203001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17308, "AWATER10": 0, "INTPTLAT10": "+37.8908584", "INTPTLON10": "-122.3015099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301435, 37.891992 ], [ -122.300835, 37.889960 ], [ -122.301693, 37.889825 ], [ -122.302294, 37.891789 ], [ -122.301435, 37.891992 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1004", "GEOID10": "060014203001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17893, "AWATER10": 0, "INTPTLAT10": "+37.8912006", "INTPTLON10": "-122.2998090" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299719, 37.892331 ], [ -122.299547, 37.891857 ], [ -122.299118, 37.890299 ], [ -122.299976, 37.890163 ], [ -122.300577, 37.892128 ], [ -122.299719, 37.892331 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "GEOID10": "060014203001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.8910287", "INTPTLON10": "-122.3006658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300577, 37.892128 ], [ -122.299976, 37.890163 ], [ -122.300835, 37.889960 ], [ -122.301435, 37.891992 ], [ -122.300577, 37.892128 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3023", "GEOID10": "060014203003023", "NAME10": "Block 3023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16332, "AWATER10": 0, "INTPTLAT10": "+37.8885408", "INTPTLON10": "-122.3025479" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302465, 37.889622 ], [ -122.301865, 37.887657 ], [ -122.302723, 37.887589 ], [ -122.303324, 37.889418 ], [ -122.302465, 37.889622 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1010", "GEOID10": "060014203001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20386, "AWATER10": 0, "INTPTLAT10": "+37.8886345", "INTPTLON10": "-122.3016225" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301693, 37.889825 ], [ -122.300749, 37.887793 ], [ -122.301865, 37.887657 ], [ -122.302465, 37.889622 ], [ -122.301693, 37.889825 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1012", "GEOID10": "060014203001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 372, "AWATER10": 0, "INTPTLAT10": "+37.8900118", "INTPTLON10": "-122.3003351" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300577, 37.890096 ], [ -122.300320, 37.890096 ], [ -122.300320, 37.889893 ], [ -122.300577, 37.889893 ], [ -122.300577, 37.890096 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1011", "GEOID10": "060014203001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16453, "AWATER10": 0, "INTPTLAT10": "+37.8888638", "INTPTLON10": "-122.3008054" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300835, 37.889960 ], [ -122.300062, 37.887725 ], [ -122.300749, 37.887793 ], [ -122.301693, 37.889825 ], [ -122.300835, 37.889960 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1015", "GEOID10": "060014203001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19773, "AWATER10": 0, "INTPTLAT10": "+37.8888596", "INTPTLON10": "-122.2999642" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299976, 37.890096 ], [ -122.299204, 37.887793 ], [ -122.300062, 37.887725 ], [ -122.300835, 37.889960 ], [ -122.299976, 37.890096 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1002", "GEOID10": "060014204001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5453, "AWATER10": 0, "INTPTLAT10": "+37.8874129", "INTPTLON10": "-122.3045679" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302208, 37.887657 ], [ -122.302122, 37.887522 ], [ -122.305899, 37.887318 ], [ -122.307272, 37.887115 ], [ -122.307272, 37.887251 ], [ -122.305470, 37.887522 ], [ -122.302208, 37.887657 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1001", "GEOID10": "060014204001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 98716, "AWATER10": 0, "INTPTLAT10": "+37.8865962", "INTPTLON10": "-122.3039801" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300749, 37.887793 ], [ -122.301006, 37.887657 ], [ -122.300577, 37.886370 ], [ -122.302380, 37.886031 ], [ -122.304611, 37.885896 ], [ -122.304525, 37.885354 ], [ -122.306843, 37.885625 ], [ -122.307186, 37.887115 ], [ -122.305899, 37.887318 ], [ -122.302122, 37.887522 ], [ -122.302122, 37.887657 ], [ -122.300749, 37.887793 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "GEOID10": "060014204001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.8847438", "INTPTLON10": "-122.3040957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304268, 37.885896 ], [ -122.303925, 37.884744 ], [ -122.303667, 37.883660 ], [ -122.304010, 37.883593 ], [ -122.304611, 37.885896 ], [ -122.304268, 37.885896 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "GEOID10": "060014204001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.8837071", "INTPTLON10": "-122.3049494" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306843, 37.885625 ], [ -122.304525, 37.885354 ], [ -122.304010, 37.883593 ], [ -122.303495, 37.883728 ], [ -122.303495, 37.882915 ], [ -122.302637, 37.883119 ], [ -122.302380, 37.882509 ], [ -122.303324, 37.882306 ], [ -122.305298, 37.882238 ], [ -122.305813, 37.882102 ], [ -122.306843, 37.885625 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1017", "GEOID10": "060014204001017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6144, "AWATER10": 0, "INTPTLAT10": "+37.8847470", "INTPTLON10": "-122.3037488" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304010, 37.885896 ], [ -122.303324, 37.883728 ], [ -122.303667, 37.883660 ], [ -122.304268, 37.885896 ], [ -122.304010, 37.885896 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1013", "GEOID10": "060014204001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9671, "AWATER10": 0, "INTPTLAT10": "+37.8848967", "INTPTLON10": "-122.3034182" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303495, 37.885964 ], [ -122.302980, 37.883796 ], [ -122.303324, 37.883728 ], [ -122.304010, 37.885896 ], [ -122.303495, 37.885964 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "GEOID10": "060014204001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.8846770", "INTPTLON10": "-122.3015769" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300577, 37.886370 ], [ -122.299976, 37.884067 ], [ -122.299805, 37.884135 ], [ -122.300062, 37.883389 ], [ -122.300234, 37.883254 ], [ -122.301006, 37.883457 ], [ -122.302637, 37.883119 ], [ -122.302980, 37.883796 ], [ -122.303495, 37.885964 ], [ -122.300577, 37.886370 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1004", "GEOID10": "060014204001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5050, "AWATER10": 0, "INTPTLAT10": "+37.8833234", "INTPTLON10": "-122.3030968" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302980, 37.883796 ], [ -122.302637, 37.883119 ], [ -122.303495, 37.882915 ], [ -122.303495, 37.883728 ], [ -122.302980, 37.883796 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "GEOID10": "060014204001020", "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.8829654", "INTPTLON10": "-122.3013966" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301006, 37.883457 ], [ -122.300406, 37.883254 ], [ -122.300320, 37.883119 ], [ -122.300234, 37.882915 ], [ -122.302380, 37.882509 ], [ -122.302637, 37.883119 ], [ -122.301006, 37.883457 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "GEOID10": "060014202001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.8977494", "INTPTLON10": "-122.2990695" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298861, 37.898495 ], [ -122.298517, 37.897208 ], [ -122.299290, 37.897072 ], [ -122.299719, 37.898291 ], [ -122.298861, 37.898495 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1002", "GEOID10": "060014202001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11372, "AWATER10": 0, "INTPTLAT10": "+37.8979512", "INTPTLON10": "-122.2982332" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.898766 ], [ -122.297659, 37.897411 ], [ -122.298517, 37.897208 ], [ -122.298861, 37.898495 ], [ -122.298088, 37.898766 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1001", "GEOID10": "060014202001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11928, "AWATER10": 0, "INTPTLAT10": "+37.8981515", "INTPTLON10": "-122.2974109" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297230, 37.898901 ], [ -122.296801, 37.897546 ], [ -122.297659, 37.897411 ], [ -122.298088, 37.898766 ], [ -122.297230, 37.898901 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1000", "GEOID10": "060014202001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13452, "AWATER10": 0, "INTPTLAT10": "+37.8982712", "INTPTLON10": "-122.2964744" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296286, 37.898969 ], [ -122.295771, 37.897817 ], [ -122.296801, 37.897546 ], [ -122.297230, 37.898901 ], [ -122.296286, 37.898969 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "GEOID10": "060014202001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.8966536", "INTPTLON10": "-122.2969317" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296801, 37.897546 ], [ -122.296286, 37.895989 ], [ -122.297144, 37.895785 ], [ -122.297659, 37.897411 ], [ -122.296801, 37.897546 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1013", "GEOID10": "060014202001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14541, "AWATER10": 0, "INTPTLAT10": "+37.8968185", "INTPTLON10": "-122.2960835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295942, 37.897750 ], [ -122.295427, 37.896124 ], [ -122.296286, 37.895989 ], [ -122.296801, 37.897546 ], [ -122.295942, 37.897750 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1006", "GEOID10": "060014201001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14453, "AWATER10": 0, "INTPTLAT10": "+37.8983329", "INTPTLON10": "-122.2952807" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296286, 37.898969 ], [ -122.294569, 37.898766 ], [ -122.294655, 37.897750 ], [ -122.295771, 37.897817 ], [ -122.296286, 37.898969 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "GEOID10": "060014202001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.8961439", "INTPTLON10": "-122.2994424" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897072 ], [ -122.298775, 37.895447 ], [ -122.299633, 37.895311 ], [ -122.300148, 37.896869 ], [ -122.299290, 37.897072 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "GEOID10": "060014202001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.8963113", "INTPTLON10": "-122.2986013" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298517, 37.897208 ], [ -122.298002, 37.895650 ], [ -122.298775, 37.895447 ], [ -122.299290, 37.897072 ], [ -122.298517, 37.897208 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "GEOID10": "060014202003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.8945232", "INTPTLON10": "-122.2989229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.298260, 37.893821 ], [ -122.299118, 37.893686 ], [ -122.299633, 37.895311 ], [ -122.298775, 37.895447 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "GEOID10": "060014202001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.8964819", "INTPTLON10": "-122.2977622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297659, 37.897411 ], [ -122.297144, 37.895785 ], [ -122.298002, 37.895650 ], [ -122.298517, 37.897208 ], [ -122.297659, 37.897411 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "GEOID10": "060014202003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.8946922", "INTPTLON10": "-122.2980853" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298002, 37.895650 ], [ -122.297487, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.298002, 37.895650 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "GEOID10": "060014202002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.8948540", "INTPTLON10": "-122.2972427" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297144, 37.895785 ], [ -122.296629, 37.894160 ], [ -122.297487, 37.893957 ], [ -122.298002, 37.895650 ], [ -122.297144, 37.895785 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "GEOID10": "060014202003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.8943454", "INTPTLON10": "-122.2997703" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.895311 ], [ -122.299118, 37.893686 ], [ -122.299976, 37.893482 ], [ -122.300491, 37.895108 ], [ -122.299633, 37.895311 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "GEOID10": "060014202003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.8927197", "INTPTLON10": "-122.2992493" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893686 ], [ -122.298603, 37.891992 ], [ -122.299461, 37.891857 ], [ -122.299633, 37.892331 ], [ -122.299976, 37.893482 ], [ -122.299118, 37.893686 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3006", "GEOID10": "060014202003006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14044, "AWATER10": 0, "INTPTLAT10": "+37.8928963", "INTPTLON10": "-122.2984024" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298260, 37.893821 ], [ -122.297745, 37.892196 ], [ -122.298603, 37.891992 ], [ -122.299118, 37.893686 ], [ -122.298260, 37.893821 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "GEOID10": "060014202003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.8930639", "INTPTLON10": "-122.2975700" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297487, 37.893957 ], [ -122.296972, 37.892399 ], [ -122.297745, 37.892196 ], [ -122.298260, 37.893821 ], [ -122.297487, 37.893957 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "GEOID10": "060014202002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.8950194", "INTPTLON10": "-122.2964053" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296286, 37.895989 ], [ -122.295771, 37.894295 ], [ -122.296629, 37.894160 ], [ -122.297144, 37.895785 ], [ -122.296286, 37.895989 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2000", "GEOID10": "060014202002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7737, "AWATER10": 0, "INTPTLAT10": "+37.8960946", "INTPTLON10": "-122.2952742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295771, 37.897817 ], [ -122.294655, 37.894566 ], [ -122.294912, 37.894498 ], [ -122.295942, 37.897750 ], [ -122.295771, 37.897817 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1007", "GEOID10": "060014201001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17265, "AWATER10": 0, "INTPTLAT10": "+37.8966238", "INTPTLON10": "-122.2949725" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295771, 37.897817 ], [ -122.294655, 37.897750 ], [ -122.294741, 37.895379 ], [ -122.294397, 37.894566 ], [ -122.294655, 37.894566 ], [ -122.295771, 37.897817 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2003", "GEOID10": "060014202002003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14449, "AWATER10": 0, "INTPTLAT10": "+37.8951947", "INTPTLON10": "-122.2955660" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295427, 37.896124 ], [ -122.294912, 37.894498 ], [ -122.295771, 37.894295 ], [ -122.296286, 37.895989 ], [ -122.295427, 37.896124 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2007", "GEOID10": "060014202002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14053, "AWATER10": 0, "INTPTLAT10": "+37.8933931", "INTPTLON10": "-122.2958883" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295771, 37.894295 ], [ -122.295256, 37.892737 ], [ -122.296114, 37.892534 ], [ -122.296629, 37.894160 ], [ -122.295771, 37.894295 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2006", "GEOID10": "060014202002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14158, "AWATER10": 0, "INTPTLAT10": "+37.8932322", "INTPTLON10": "-122.2967302" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296629, 37.894160 ], [ -122.296114, 37.892534 ], [ -122.296972, 37.892399 ], [ -122.297487, 37.893957 ], [ -122.296629, 37.894160 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2002", "GEOID10": "060014202002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14523, "AWATER10": 0, "INTPTLAT10": "+37.8935661", "INTPTLON10": "-122.2950398" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294912, 37.894498 ], [ -122.294397, 37.892873 ], [ -122.295256, 37.892737 ], [ -122.295771, 37.894295 ], [ -122.294912, 37.894498 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2001", "GEOID10": "060014202002001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3995, "AWATER10": 0, "INTPTLAT10": "+37.8936801", "INTPTLON10": "-122.2944928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.894566 ], [ -122.294140, 37.892873 ], [ -122.294397, 37.892873 ], [ -122.294912, 37.894498 ], [ -122.294655, 37.894566 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1005", "GEOID10": "060014201001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8083, "AWATER10": 0, "INTPTLAT10": "+37.8982104", "INTPTLON10": "-122.2941387" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294569, 37.898766 ], [ -122.293711, 37.898698 ], [ -122.293797, 37.897750 ], [ -122.294655, 37.897750 ], [ -122.294569, 37.898766 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1004", "GEOID10": "060014201001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6640, "AWATER10": 0, "INTPTLAT10": "+37.8980962", "INTPTLON10": "-122.2932964" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293711, 37.898698 ], [ -122.292852, 37.898427 ], [ -122.292852, 37.897750 ], [ -122.293797, 37.897750 ], [ -122.293711, 37.898562 ], [ -122.293711, 37.898698 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1003", "GEOID10": "060014201001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1246, "AWATER10": 0, "INTPTLAT10": "+37.8980064", "INTPTLON10": "-122.2927412" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292852, 37.898427 ], [ -122.292681, 37.898359 ], [ -122.292681, 37.897750 ], [ -122.292852, 37.897750 ], [ -122.292852, 37.898427 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1010", "GEOID10": "060014201001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2269, "AWATER10": 0, "INTPTLAT10": "+37.8971964", "INTPTLON10": "-122.2927567" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292681, 37.897750 ], [ -122.292681, 37.896734 ], [ -122.292938, 37.896734 ], [ -122.292852, 37.897750 ], [ -122.292681, 37.897750 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1002", "GEOID10": "060014201001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14980, "AWATER10": 0, "INTPTLAT10": "+37.8974821", "INTPTLON10": "-122.2921539" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292681, 37.898359 ], [ -122.291651, 37.898156 ], [ -122.291737, 37.896734 ], [ -122.292681, 37.896734 ], [ -122.292681, 37.898359 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1001", "GEOID10": "060014201001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11297, "AWATER10": 0, "INTPTLAT10": "+37.8973215", "INTPTLON10": "-122.2912175" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291651, 37.898156 ], [ -122.290792, 37.897953 ], [ -122.290878, 37.896666 ], [ -122.291737, 37.896734 ], [ -122.291651, 37.898156 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1000", "GEOID10": "060014201001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10019, "AWATER10": 0, "INTPTLAT10": "+37.8972478", "INTPTLON10": "-122.2903402" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290792, 37.897953 ], [ -122.289934, 37.897885 ], [ -122.290020, 37.896666 ], [ -122.290878, 37.896666 ], [ -122.290792, 37.897953 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2005", "GEOID10": "060014201002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10320, "AWATER10": 0, "INTPTLAT10": "+37.8972288", "INTPTLON10": "-122.2894724" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289076, 37.897885 ], [ -122.289162, 37.896666 ], [ -122.290020, 37.896666 ], [ -122.289934, 37.897885 ], [ -122.289076, 37.897885 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1008", "GEOID10": "060014201001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25122, "AWATER10": 0, "INTPTLAT10": "+37.8962273", "INTPTLON10": "-122.2942136" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293797, 37.897750 ], [ -122.293882, 37.894702 ], [ -122.294397, 37.894566 ], [ -122.294741, 37.895379 ], [ -122.294655, 37.897750 ], [ -122.293797, 37.897750 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1009", "GEOID10": "060014201001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24911, "AWATER10": 0, "INTPTLAT10": "+37.8962389", "INTPTLON10": "-122.2933649" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292852, 37.897750 ], [ -122.293024, 37.894905 ], [ -122.293882, 37.894702 ], [ -122.293882, 37.895311 ], [ -122.293797, 37.897750 ], [ -122.292852, 37.897750 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1011", "GEOID10": "060014201001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4495, "AWATER10": 0, "INTPTLAT10": "+37.8957842", "INTPTLON10": "-122.2928245" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292681, 37.896734 ], [ -122.292767, 37.894905 ], [ -122.293024, 37.894905 ], [ -122.292938, 37.896734 ], [ -122.292681, 37.896734 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1016", "GEOID10": "060014201001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8255, "AWATER10": 0, "INTPTLAT10": "+37.8939086", "INTPTLON10": "-122.2941575" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293882, 37.894702 ], [ -122.293968, 37.892873 ], [ -122.294140, 37.892873 ], [ -122.294655, 37.894566 ], [ -122.293882, 37.894702 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1015", "GEOID10": "060014201001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16238, "AWATER10": 0, "INTPTLAT10": "+37.8938032", "INTPTLON10": "-122.2934559" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293024, 37.894905 ], [ -122.293110, 37.892873 ], [ -122.293968, 37.892873 ], [ -122.293882, 37.894702 ], [ -122.293024, 37.894905 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1014", "GEOID10": "060014201001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5007, "AWATER10": 0, "INTPTLAT10": "+37.8938437", "INTPTLON10": "-122.2929060" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292767, 37.894905 ], [ -122.292852, 37.892873 ], [ -122.293110, 37.892873 ], [ -122.293024, 37.894905 ], [ -122.292767, 37.894905 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1013", "GEOID10": "060014201001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18897, "AWATER10": 0, "INTPTLAT10": "+37.8938347", "INTPTLON10": "-122.2923093" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291822, 37.894905 ], [ -122.291908, 37.892873 ], [ -122.292852, 37.892873 ], [ -122.292767, 37.894905 ], [ -122.291822, 37.894905 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1012", "GEOID10": "060014201001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 48606, "AWATER10": 0, "INTPTLAT10": "+37.8957510", "INTPTLON10": "-122.2913507" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292681, 37.896734 ], [ -122.290020, 37.896666 ], [ -122.290020, 37.895853 ], [ -122.290106, 37.894837 ], [ -122.292767, 37.894905 ], [ -122.292681, 37.896734 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2006", "GEOID10": "060014201002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15730, "AWATER10": 0, "INTPTLAT10": "+37.8956964", "INTPTLON10": "-122.2895702" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289162, 37.896666 ], [ -122.289248, 37.894769 ], [ -122.290106, 37.894837 ], [ -122.290020, 37.896666 ], [ -122.289162, 37.896666 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3001", "GEOID10": "060014201003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16246, "AWATER10": 0, "INTPTLAT10": "+37.8938831", "INTPTLON10": "-122.2913917" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291822, 37.894905 ], [ -122.290964, 37.894837 ], [ -122.291050, 37.892941 ], [ -122.291908, 37.893008 ], [ -122.291822, 37.894905 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3000", "GEOID10": "060014201003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15665, "AWATER10": 0, "INTPTLAT10": "+37.8938607", "INTPTLON10": "-122.2905229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290106, 37.894837 ], [ -122.290192, 37.892941 ], [ -122.291050, 37.892941 ], [ -122.290964, 37.894837 ], [ -122.290106, 37.894837 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2015", "GEOID10": "060014201002015", "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15921, "AWATER10": 0, "INTPTLAT10": "+37.8938332", "INTPTLON10": "-122.2896635" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290106, 37.894837 ], [ -122.289248, 37.894769 ], [ -122.289333, 37.892941 ], [ -122.290192, 37.892941 ], [ -122.290106, 37.894837 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2004", "GEOID10": "060014201002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11206, "AWATER10": 0, "INTPTLAT10": "+37.8972632", "INTPTLON10": "-122.2886022" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288218, 37.898156 ], [ -122.288218, 37.896598 ], [ -122.289162, 37.896666 ], [ -122.289076, 37.897885 ], [ -122.288561, 37.897953 ], [ -122.288218, 37.898156 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2003", "GEOID10": "060014201002003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1027, "AWATER10": 0, "INTPTLAT10": "+37.8973454", "INTPTLON10": "-122.2881508" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.898156 ], [ -122.288218, 37.896598 ], [ -122.288218, 37.898156 ], [ -122.288132, 37.898156 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2002", "GEOID10": "060014201002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16183, "AWATER10": 0, "INTPTLAT10": "+37.8975006", "INTPTLON10": "-122.2876349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287188, 37.898698 ], [ -122.287273, 37.896598 ], [ -122.288218, 37.896598 ], [ -122.288132, 37.898156 ], [ -122.287188, 37.898698 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2000", "GEOID10": "060014201002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 948, "AWATER10": 0, "INTPTLAT10": "+37.8984122", "INTPTLON10": "-122.2870554" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287016, 37.898766 ], [ -122.287016, 37.898156 ], [ -122.287188, 37.898156 ], [ -122.287188, 37.898698 ], [ -122.287016, 37.898766 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2001", "GEOID10": "060014201002001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2708, "AWATER10": 0, "INTPTLAT10": "+37.8973380", "INTPTLON10": "-122.2871259" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287016, 37.898156 ], [ -122.287102, 37.896598 ], [ -122.287273, 37.896598 ], [ -122.287188, 37.898156 ], [ -122.287016, 37.898156 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2007", "GEOID10": "060014201002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15930, "AWATER10": 0, "INTPTLAT10": "+37.8956694", "INTPTLON10": "-122.2886965" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289162, 37.896666 ], [ -122.288218, 37.896598 ], [ -122.288303, 37.894769 ], [ -122.289248, 37.894769 ], [ -122.289162, 37.896666 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2008", "GEOID10": "060014201002008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1214, "AWATER10": 0, "INTPTLAT10": "+37.8956738", "INTPTLON10": "-122.2882217" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288475, 37.895921 ], [ -122.288046, 37.895921 ], [ -122.288046, 37.895582 ], [ -122.288475, 37.895582 ], [ -122.288475, 37.895921 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2009", "GEOID10": "060014201002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15974, "AWATER10": 0, "INTPTLAT10": "+37.8956464", "INTPTLON10": "-122.2877473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287273, 37.896598 ], [ -122.287359, 37.894769 ], [ -122.288303, 37.894769 ], [ -122.288218, 37.896598 ], [ -122.287273, 37.896598 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2010", "GEOID10": "060014201002010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3628, "AWATER10": 0, "INTPTLAT10": "+37.8956076", "INTPTLON10": "-122.2872058" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.896598 ], [ -122.287188, 37.894769 ], [ -122.287359, 37.894769 ], [ -122.287273, 37.896598 ], [ -122.287102, 37.896598 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2014", "GEOID10": "060014201002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16117, "AWATER10": 0, "INTPTLAT10": "+37.8938093", "INTPTLON10": "-122.2887874" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.894769 ], [ -122.288475, 37.892873 ], [ -122.289333, 37.892941 ], [ -122.289248, 37.894769 ], [ -122.288303, 37.894769 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2013", "GEOID10": "060014201002013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1269, "AWATER10": 0, "INTPTLAT10": "+37.8937720", "INTPTLON10": "-122.2883131" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288561, 37.894431 ], [ -122.288132, 37.894431 ], [ -122.288132, 37.894092 ], [ -122.288561, 37.894092 ], [ -122.288561, 37.894431 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2012", "GEOID10": "060014201002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16253, "AWATER10": 0, "INTPTLAT10": "+37.8937801", "INTPTLON10": "-122.2878360" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287359, 37.894769 ], [ -122.287445, 37.892873 ], [ -122.288389, 37.892873 ], [ -122.288303, 37.894769 ], [ -122.287359, 37.894769 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2011", "GEOID10": "060014201002011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4556, "AWATER10": 0, "INTPTLAT10": "+37.8937317", "INTPTLON10": "-122.2872753" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287188, 37.894769 ], [ -122.287188, 37.892873 ], [ -122.287445, 37.892873 ], [ -122.287359, 37.894769 ], [ -122.287188, 37.894769 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3012", "GEOID10": "060014202003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 636, "AWATER10": 0, "INTPTLAT10": "+37.8920512", "INTPTLON10": "-122.2995612" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.892331 ], [ -122.299461, 37.891857 ], [ -122.299547, 37.891857 ], [ -122.299719, 37.892331 ], [ -122.299633, 37.892331 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3010", "GEOID10": "060014202003010", "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14291, "AWATER10": 0, "INTPTLAT10": "+37.8911018", "INTPTLON10": "-122.2987261" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298603, 37.891992 ], [ -122.298088, 37.890367 ], [ -122.298946, 37.890299 ], [ -122.299461, 37.891857 ], [ -122.298603, 37.891992 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3011", "GEOID10": "060014202003011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1922, "AWATER10": 0, "INTPTLAT10": "+37.8910433", "INTPTLON10": "-122.2992359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299461, 37.891857 ], [ -122.298946, 37.890299 ], [ -122.299118, 37.890299 ], [ -122.299461, 37.891518 ], [ -122.299547, 37.891857 ], [ -122.299461, 37.891857 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1013", "GEOID10": "060014203001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 568, "AWATER10": 0, "INTPTLAT10": "+37.8901726", "INTPTLON10": "-122.2994482" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299376, 37.890299 ], [ -122.299032, 37.890231 ], [ -122.299290, 37.890231 ], [ -122.299976, 37.890096 ], [ -122.299376, 37.890299 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1005", "GEOID10": "060014205001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 627, "AWATER10": 0, "INTPTLAT10": "+37.8902672", "INTPTLON10": "-122.2984664" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.890367 ], [ -122.298088, 37.890299 ], [ -122.298946, 37.890299 ], [ -122.298517, 37.890367 ], [ -122.298088, 37.890367 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3009", "GEOID10": "060014202003009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15100, "AWATER10": 0, "INTPTLAT10": "+37.8912058", "INTPTLON10": "-122.2978563" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.892196 ], [ -122.297144, 37.890367 ], [ -122.298088, 37.890367 ], [ -122.298174, 37.890705 ], [ -122.298603, 37.891992 ], [ -122.297745, 37.892196 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1004", "GEOID10": "060014205001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 521, "AWATER10": 0, "INTPTLAT10": "+37.8903091", "INTPTLON10": "-122.2975987" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297487, 37.890502 ], [ -122.297316, 37.890502 ], [ -122.297316, 37.890231 ], [ -122.297487, 37.890231 ], [ -122.297487, 37.890502 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1014", "GEOID10": "060014203001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21543, "AWATER10": 0, "INTPTLAT10": "+37.8889340", "INTPTLON10": "-122.2990835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299032, 37.890231 ], [ -122.298260, 37.887793 ], [ -122.299204, 37.887793 ], [ -122.299976, 37.890096 ], [ -122.299032, 37.890231 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1008", "GEOID10": "060014205001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3061, "AWATER10": 0, "INTPTLAT10": "+37.8890168", "INTPTLON10": "-122.2985896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298946, 37.890299 ], [ -122.298174, 37.887793 ], [ -122.298260, 37.887793 ], [ -122.299118, 37.890299 ], [ -122.298946, 37.890299 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1007", "GEOID10": "060014205001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 32096, "AWATER10": 0, "INTPTLAT10": "+37.8884580", "INTPTLON10": "-122.2979153" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298088, 37.890299 ], [ -122.297831, 37.889622 ], [ -122.296972, 37.886912 ], [ -122.297831, 37.886777 ], [ -122.297831, 37.886709 ], [ -122.297916, 37.886709 ], [ -122.298260, 37.887793 ], [ -122.298174, 37.887793 ], [ -122.298946, 37.890231 ], [ -122.298088, 37.890299 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3008", "GEOID10": "060014202003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16353, "AWATER10": 0, "INTPTLAT10": "+37.8913200", "INTPTLON10": "-122.2970017" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296972, 37.892399 ], [ -122.296286, 37.890434 ], [ -122.297144, 37.890367 ], [ -122.297316, 37.890773 ], [ -122.297745, 37.892196 ], [ -122.296972, 37.892399 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2012", "GEOID10": "060014202002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17230, "AWATER10": 0, "INTPTLAT10": "+37.8914257", "INTPTLON10": "-122.2961445" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296114, 37.892534 ], [ -122.295427, 37.890502 ], [ -122.296286, 37.890434 ], [ -122.296972, 37.892399 ], [ -122.296114, 37.892534 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1003", "GEOID10": "060014205001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 422, "AWATER10": 0, "INTPTLAT10": "+37.8903581", "INTPTLON10": "-122.2966969" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296972, 37.890434 ], [ -122.296286, 37.890367 ], [ -122.297144, 37.890367 ], [ -122.296972, 37.890434 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1002", "GEOID10": "060014205001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 411, "AWATER10": 0, "INTPTLAT10": "+37.8904111", "INTPTLON10": "-122.2958187" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295427, 37.890434 ], [ -122.296286, 37.890367 ], [ -122.296286, 37.890434 ], [ -122.295427, 37.890434 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2008", "GEOID10": "060014202002008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18377, "AWATER10": 0, "INTPTLAT10": "+37.8915386", "INTPTLON10": "-122.2952863" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295256, 37.892737 ], [ -122.294569, 37.890570 ], [ -122.295427, 37.890502 ], [ -122.296114, 37.892534 ], [ -122.295256, 37.892737 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2009", "GEOID10": "060014202002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19818, "AWATER10": 0, "INTPTLAT10": "+37.8916581", "INTPTLON10": "-122.2944181" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294397, 37.892873 ], [ -122.293625, 37.890570 ], [ -122.294569, 37.890570 ], [ -122.295256, 37.892737 ], [ -122.294397, 37.892873 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1001", "GEOID10": "060014205001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 419, "AWATER10": 0, "INTPTLAT10": "+37.8904693", "INTPTLON10": "-122.2949399" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294741, 37.890570 ], [ -122.294569, 37.890502 ], [ -122.295427, 37.890502 ], [ -122.294741, 37.890570 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1015", "GEOID10": "060014205001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29154, "AWATER10": 0, "INTPTLAT10": "+37.8886165", "INTPTLON10": "-122.2970361" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297144, 37.890367 ], [ -122.296114, 37.887115 ], [ -122.296972, 37.886912 ], [ -122.298088, 37.890299 ], [ -122.297144, 37.890367 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1014", "GEOID10": "060014205001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28068, "AWATER10": 0, "INTPTLAT10": "+37.8887349", "INTPTLON10": "-122.2961756" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296286, 37.890367 ], [ -122.295256, 37.887251 ], [ -122.296114, 37.887115 ], [ -122.297144, 37.890367 ], [ -122.296286, 37.890367 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1010", "GEOID10": "060014205001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26672, "AWATER10": 0, "INTPTLAT10": "+37.8888488", "INTPTLON10": "-122.2953196" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295427, 37.890434 ], [ -122.294483, 37.887386 ], [ -122.295256, 37.887251 ], [ -122.296286, 37.890367 ], [ -122.295427, 37.890434 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1011", "GEOID10": "060014205001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26518, "AWATER10": 0, "INTPTLAT10": "+37.8889300", "INTPTLON10": "-122.2944569" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294569, 37.890502 ], [ -122.293625, 37.887522 ], [ -122.294397, 37.887318 ], [ -122.294483, 37.887386 ], [ -122.295427, 37.890434 ], [ -122.294569, 37.890502 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1000", "GEOID10": "060014204001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11282, "AWATER10": 0, "INTPTLAT10": "+37.8873799", "INTPTLON10": "-122.2988707" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298260, 37.887793 ], [ -122.297916, 37.886709 ], [ -122.298431, 37.886844 ], [ -122.299633, 37.887522 ], [ -122.301006, 37.887657 ], [ -122.300749, 37.887793 ], [ -122.298260, 37.887793 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1015", "GEOID10": "060014204001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 79019, "AWATER10": 0, "INTPTLAT10": "+37.8858279", "INTPTLON10": "-122.2991231" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301006, 37.887657 ], [ -122.299633, 37.887522 ], [ -122.298431, 37.886844 ], [ -122.297916, 37.886709 ], [ -122.297316, 37.884609 ], [ -122.298346, 37.884406 ], [ -122.299976, 37.884067 ], [ -122.300148, 37.885151 ], [ -122.301006, 37.887657 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1017", "GEOID10": "060014205001017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 621, "AWATER10": 0, "INTPTLAT10": "+37.8867580", "INTPTLON10": "-122.2973472" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296972, 37.886844 ], [ -122.297659, 37.886709 ], [ -122.297831, 37.886709 ], [ -122.297831, 37.886777 ], [ -122.296972, 37.886844 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1018", "GEOID10": "060014204001018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22069, "AWATER10": 0, "INTPTLAT10": "+37.8835790", "INTPTLON10": "-122.2990681" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298346, 37.884406 ], [ -122.298002, 37.883254 ], [ -122.299032, 37.883051 ], [ -122.300234, 37.882915 ], [ -122.300320, 37.883051 ], [ -122.300320, 37.883254 ], [ -122.300062, 37.883389 ], [ -122.299805, 37.884135 ], [ -122.298346, 37.884406 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2007", "GEOID10": "060014205002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2761, "AWATER10": 0, "INTPTLAT10": "+37.8856449", "INTPTLON10": "-122.2975097" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297831, 37.886709 ], [ -122.297144, 37.884677 ], [ -122.297316, 37.884609 ], [ -122.297916, 37.886709 ], [ -122.297831, 37.886709 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1019", "GEOID10": "060014204001019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11921, "AWATER10": 0, "INTPTLAT10": "+37.8839314", "INTPTLON10": "-122.2976037" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297316, 37.884609 ], [ -122.296972, 37.883525 ], [ -122.298002, 37.883254 ], [ -122.298346, 37.884406 ], [ -122.297316, 37.884609 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1016", "GEOID10": "060014205001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 614, "AWATER10": 0, "INTPTLAT10": "+37.8869296", "INTPTLON10": "-122.2964871" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296114, 37.887115 ], [ -122.296114, 37.886980 ], [ -122.296972, 37.886844 ], [ -122.296114, 37.887115 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1013", "GEOID10": "060014205001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 616, "AWATER10": 0, "INTPTLAT10": "+37.8870993", "INTPTLON10": "-122.2956428" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295256, 37.887251 ], [ -122.295256, 37.887183 ], [ -122.296114, 37.886980 ], [ -122.296114, 37.887115 ], [ -122.295256, 37.887251 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1012", "GEOID10": "060014205001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 615, "AWATER10": 0, "INTPTLAT10": "+37.8872675", "INTPTLON10": "-122.2948079" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294483, 37.887386 ], [ -122.294397, 37.887318 ], [ -122.295256, 37.887183 ], [ -122.295256, 37.887251 ], [ -122.294483, 37.887386 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2003", "GEOID10": "060014205002003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24754, "AWATER10": 0, "INTPTLAT10": "+37.8858112", "INTPTLON10": "-122.2943382" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294397, 37.887318 ], [ -122.293539, 37.884541 ], [ -122.294397, 37.884338 ], [ -122.295256, 37.887183 ], [ -122.294397, 37.887318 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2006", "GEOID10": "060014205002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25305, "AWATER10": 0, "INTPTLAT10": "+37.8853070", "INTPTLON10": "-122.2968750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296972, 37.886844 ], [ -122.296028, 37.883999 ], [ -122.296886, 37.883864 ], [ -122.297831, 37.886709 ], [ -122.296972, 37.886844 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2005", "GEOID10": "060014205002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24545, "AWATER10": 0, "INTPTLAT10": "+37.8854914", "INTPTLON10": "-122.2960301" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296114, 37.886980 ], [ -122.295170, 37.884202 ], [ -122.296028, 37.883999 ], [ -122.296972, 37.886844 ], [ -122.296114, 37.886980 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2008", "GEOID10": "060014205002008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1060, "AWATER10": 0, "INTPTLAT10": "+37.8841984", "INTPTLON10": "-122.2970500" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297144, 37.884677 ], [ -122.296886, 37.883864 ], [ -122.297058, 37.883796 ], [ -122.297316, 37.884609 ], [ -122.297144, 37.884677 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2009", "GEOID10": "060014205002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 410, "AWATER10": 0, "INTPTLAT10": "+37.8836558", "INTPTLON10": "-122.2968731" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296886, 37.883864 ], [ -122.296801, 37.883525 ], [ -122.296972, 37.883525 ], [ -122.297058, 37.883796 ], [ -122.296886, 37.883864 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2004", "GEOID10": "060014205002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24848, "AWATER10": 0, "INTPTLAT10": "+37.8856461", "INTPTLON10": "-122.2951842" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295256, 37.887183 ], [ -122.294397, 37.884338 ], [ -122.295170, 37.884202 ], [ -122.296114, 37.886980 ], [ -122.295256, 37.887183 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2012", "GEOID10": "060014205002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12579, "AWATER10": 0, "INTPTLAT10": "+37.8835272", "INTPTLON10": "-122.2945038" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294397, 37.884338 ], [ -122.293882, 37.882983 ], [ -122.294397, 37.882780 ], [ -122.294741, 37.882780 ], [ -122.295170, 37.884202 ], [ -122.294397, 37.884338 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2010", "GEOID10": "060014202002010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8445, "AWATER10": 0, "INTPTLAT10": "+37.8914852", "INTPTLON10": "-122.2936957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294140, 37.892873 ], [ -122.293882, 37.891992 ], [ -122.293196, 37.891044 ], [ -122.293196, 37.890638 ], [ -122.293625, 37.890570 ], [ -122.294397, 37.892873 ], [ -122.294140, 37.892873 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1017", "GEOID10": "060014201001017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10769, "AWATER10": 0, "INTPTLAT10": "+37.8921881", "INTPTLON10": "-122.2934770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293110, 37.892873 ], [ -122.293196, 37.891044 ], [ -122.293882, 37.891992 ], [ -122.294140, 37.892873 ], [ -122.293110, 37.892873 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1018", "GEOID10": "060014201001018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4538, "AWATER10": 0, "INTPTLAT10": "+37.8918502", "INTPTLON10": "-122.2929851" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292852, 37.892873 ], [ -122.292938, 37.890773 ], [ -122.293196, 37.891044 ], [ -122.293110, 37.892873 ], [ -122.292852, 37.892873 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1000", "GEOID10": "060014205001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 367, "AWATER10": 0, "INTPTLAT10": "+37.8905130", "INTPTLON10": "-122.2941122" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294054, 37.890638 ], [ -122.293882, 37.890638 ], [ -122.293882, 37.890434 ], [ -122.294054, 37.890434 ], [ -122.294054, 37.890638 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2011", "GEOID10": "060014202002011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 700, "AWATER10": 0, "INTPTLAT10": "+37.8907452", "INTPTLON10": "-122.2930474" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293196, 37.891044 ], [ -122.292938, 37.890638 ], [ -122.293196, 37.890638 ], [ -122.293196, 37.891044 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3005", "GEOID10": "060014206003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 349, "AWATER10": 0, "INTPTLAT10": "+37.8905539", "INTPTLON10": "-122.2932516" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.890638 ], [ -122.292938, 37.890570 ], [ -122.293625, 37.890570 ], [ -122.292938, 37.890638 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1019", "GEOID10": "060014201001019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20486, "AWATER10": 0, "INTPTLAT10": "+37.8917135", "INTPTLON10": "-122.2923947" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.892873 ], [ -122.291994, 37.890705 ], [ -122.292938, 37.890638 ], [ -122.292852, 37.892873 ], [ -122.291908, 37.892873 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3004", "GEOID10": "060014206003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 428, "AWATER10": 0, "INTPTLAT10": "+37.8905994", "INTPTLON10": "-122.2924155" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.890638 ], [ -122.292938, 37.890570 ], [ -122.292767, 37.890638 ], [ -122.291908, 37.890638 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1006", "GEOID10": "060014205001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25175, "AWATER10": 0, "INTPTLAT10": "+37.8890495", "INTPTLON10": "-122.2935928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293711, 37.890570 ], [ -122.293625, 37.890434 ], [ -122.292767, 37.887793 ], [ -122.292767, 37.887657 ], [ -122.293625, 37.887657 ], [ -122.294569, 37.890502 ], [ -122.293711, 37.890570 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1009", "GEOID10": "060014205001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5818, "AWATER10": 0, "INTPTLAT10": "+37.8888891", "INTPTLON10": "-122.2929659" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890367 ], [ -122.293196, 37.889825 ], [ -122.292509, 37.887725 ], [ -122.292767, 37.887657 ], [ -122.292767, 37.887793 ], [ -122.293625, 37.890367 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3006", "GEOID10": "060014206003006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11825, "AWATER10": 0, "INTPTLAT10": "+37.8893267", "INTPTLON10": "-122.2928119" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292938, 37.890570 ], [ -122.292166, 37.887860 ], [ -122.292509, 37.887793 ], [ -122.293196, 37.889825 ], [ -122.293711, 37.890570 ], [ -122.292938, 37.890570 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3007", "GEOID10": "060014206003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27950, "AWATER10": 0, "INTPTLAT10": "+37.8892518", "INTPTLON10": "-122.2920141" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.890638 ], [ -122.291136, 37.888064 ], [ -122.292166, 37.887860 ], [ -122.292938, 37.890570 ], [ -122.291908, 37.890638 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3008", "GEOID10": "060014206003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 783, "AWATER10": 0, "INTPTLAT10": "+37.8879165", "INTPTLON10": "-122.2915924" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291136, 37.888064 ], [ -122.291136, 37.887996 ], [ -122.292166, 37.887793 ], [ -122.292166, 37.887860 ], [ -122.291136, 37.888064 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3002", "GEOID10": "060014201003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19544, "AWATER10": 0, "INTPTLAT10": "+37.8918042", "INTPTLON10": "-122.2914745" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.893008 ], [ -122.291050, 37.892941 ], [ -122.291136, 37.890705 ], [ -122.291994, 37.890705 ], [ -122.291908, 37.893008 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3003", "GEOID10": "060014201003003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18064, "AWATER10": 0, "INTPTLAT10": "+37.8918237", "INTPTLON10": "-122.2906157" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.892941 ], [ -122.290277, 37.890773 ], [ -122.291136, 37.890705 ], [ -122.291050, 37.892941 ], [ -122.290192, 37.892941 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3003", "GEOID10": "060014206003003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 344, "AWATER10": 0, "INTPTLAT10": "+37.8906459", "INTPTLON10": "-122.2914849" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291479, 37.890773 ], [ -122.291307, 37.890773 ], [ -122.291307, 37.890570 ], [ -122.291479, 37.890570 ], [ -122.291479, 37.890773 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3004", "GEOID10": "060014201003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18095, "AWATER10": 0, "INTPTLAT10": "+37.8918241", "INTPTLON10": "-122.2897641" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.892941 ], [ -122.289419, 37.890841 ], [ -122.290277, 37.890773 ], [ -122.290192, 37.892941 ], [ -122.289333, 37.892941 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3005", "GEOID10": "060014201003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16537, "AWATER10": 0, "INTPTLAT10": "+37.8919062", "INTPTLON10": "-122.2889102" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.892941 ], [ -122.288475, 37.892873 ], [ -122.288475, 37.891518 ], [ -122.288904, 37.890841 ], [ -122.289419, 37.890841 ], [ -122.289333, 37.892941 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3002", "GEOID10": "060014206003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26786, "AWATER10": 0, "INTPTLAT10": "+37.8894113", "INTPTLON10": "-122.2909643" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290792, 37.890773 ], [ -122.290106, 37.888267 ], [ -122.291136, 37.888064 ], [ -122.291908, 37.890638 ], [ -122.291136, 37.890705 ], [ -122.290792, 37.890773 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3009", "GEOID10": "060014206003009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 746, "AWATER10": 0, "INTPTLAT10": "+37.8881229", "INTPTLON10": "-122.2905730" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290106, 37.888267 ], [ -122.290106, 37.888199 ], [ -122.291136, 37.887996 ], [ -122.291136, 37.888064 ], [ -122.290106, 37.888267 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3001", "GEOID10": "060014206003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22452, "AWATER10": 0, "INTPTLAT10": "+37.8895187", "INTPTLON10": "-122.2899595" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289934, 37.890773 ], [ -122.289162, 37.888470 ], [ -122.290106, 37.888267 ], [ -122.290792, 37.890773 ], [ -122.289934, 37.890773 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3000", "GEOID10": "060014206003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21823, "AWATER10": 0, "INTPTLAT10": "+37.8896695", "INTPTLON10": "-122.2890200" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288904, 37.890841 ], [ -122.288303, 37.888673 ], [ -122.289162, 37.888470 ], [ -122.289934, 37.890773 ], [ -122.288904, 37.890841 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3010", "GEOID10": "060014206003010", "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 689, "AWATER10": 0, "INTPTLAT10": "+37.8883258", "INTPTLON10": "-122.2895731" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289162, 37.888470 ], [ -122.289162, 37.888402 ], [ -122.290106, 37.888199 ], [ -122.290106, 37.888267 ], [ -122.289162, 37.888470 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2002", "GEOID10": "060014205002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24228, "AWATER10": 0, "INTPTLAT10": "+37.8859970", "INTPTLON10": "-122.2935084" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.887522 ], [ -122.292681, 37.884677 ], [ -122.293539, 37.884541 ], [ -122.294397, 37.887318 ], [ -122.293625, 37.887522 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3016", "GEOID10": "060014206003016", "NAME10": "Block 3016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 253, "AWATER10": 0, "INTPTLAT10": "+37.8877763", "INTPTLON10": "-122.2922894" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292166, 37.887860 ], [ -122.292166, 37.887793 ], [ -122.292509, 37.887725 ], [ -122.292509, 37.887793 ], [ -122.292166, 37.887860 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2001", "GEOID10": "060014205002001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26078, "AWATER10": 0, "INTPTLAT10": "+37.8861973", "INTPTLON10": "-122.2926742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292767, 37.887657 ], [ -122.291822, 37.884880 ], [ -122.292681, 37.884677 ], [ -122.293625, 37.887522 ], [ -122.293625, 37.887657 ], [ -122.292767, 37.887657 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2000", "GEOID10": "060014205002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6434, "AWATER10": 0, "INTPTLAT10": "+37.8862789", "INTPTLON10": "-122.2921162" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292509, 37.887725 ], [ -122.291565, 37.884948 ], [ -122.291737, 37.884880 ], [ -122.292767, 37.887657 ], [ -122.292509, 37.887725 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "GEOID10": "060014206003015", "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.8863229", "INTPTLON10": "-122.2918172" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292166, 37.887793 ], [ -122.291222, 37.885015 ], [ -122.291565, 37.884948 ], [ -122.292509, 37.887725 ], [ -122.292166, 37.887793 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2013", "GEOID10": "060014205002013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12945, "AWATER10": 0, "INTPTLAT10": "+37.8836932", "INTPTLON10": "-122.2936333" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293539, 37.884541 ], [ -122.293367, 37.884202 ], [ -122.293024, 37.883051 ], [ -122.293882, 37.882983 ], [ -122.294397, 37.884338 ], [ -122.293539, 37.884541 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2014", "GEOID10": "060014205002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13013, "AWATER10": 0, "INTPTLAT10": "+37.8838362", "INTPTLON10": "-122.2927774" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292681, 37.884677 ], [ -122.292595, 37.884406 ], [ -122.292080, 37.883186 ], [ -122.293024, 37.883051 ], [ -122.293539, 37.884541 ], [ -122.292681, 37.884677 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2015", "GEOID10": "060014205002015", "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13985, "AWATER10": 0, "INTPTLAT10": "+37.8839739", "INTPTLON10": "-122.2919263" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291822, 37.884880 ], [ -122.291307, 37.883254 ], [ -122.292080, 37.883186 ], [ -122.292681, 37.884677 ], [ -122.291822, 37.884880 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3014", "GEOID10": "060014206003014", "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29422, "AWATER10": 0, "INTPTLAT10": "+37.8864950", "INTPTLON10": "-122.2911376" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291136, 37.887996 ], [ -122.290192, 37.885219 ], [ -122.291222, 37.885015 ], [ -122.292166, 37.887793 ], [ -122.291136, 37.887996 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "GEOID10": "060014206003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.8875706", "INTPTLON10": "-122.2892190" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.888606 ], [ -122.289333, 37.886031 ], [ -122.290106, 37.888199 ], [ -122.288303, 37.888606 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3013", "GEOID10": "060014206003013", "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 31172, "AWATER10": 0, "INTPTLAT10": "+37.8866087", "INTPTLON10": "-122.2901174" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290106, 37.888199 ], [ -122.289333, 37.886031 ], [ -122.289848, 37.884541 ], [ -122.290363, 37.885693 ], [ -122.291136, 37.887996 ], [ -122.290106, 37.888199 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3017", "GEOID10": "060014206003017", "NAME10": "Block 3017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6343, "AWATER10": 0, "INTPTLAT10": "+37.8840797", "INTPTLON10": "-122.2909809" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291222, 37.885015 ], [ -122.290449, 37.883254 ], [ -122.290878, 37.883322 ], [ -122.291222, 37.883999 ], [ -122.291565, 37.884948 ], [ -122.291222, 37.885015 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2016", "GEOID10": "060014205002016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5264, "AWATER10": 0, "INTPTLAT10": "+37.8839955", "INTPTLON10": "-122.2913154" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.884948 ], [ -122.290878, 37.883322 ], [ -122.291136, 37.883254 ], [ -122.291307, 37.883254 ], [ -122.291822, 37.884880 ], [ -122.291565, 37.884948 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3018", "GEOID10": "060014206003018", "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14557, "AWATER10": 0, "INTPTLAT10": "+37.8843696", "INTPTLON10": "-122.2904413" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.885219 ], [ -122.289848, 37.884541 ], [ -122.290363, 37.883051 ], [ -122.290449, 37.883254 ], [ -122.291222, 37.885015 ], [ -122.290192, 37.885219 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "GEOID10": "060014206002016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.8853992", "INTPTLON10": "-122.2894711" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.885896 ], [ -122.289677, 37.884880 ], [ -122.289762, 37.884948 ], [ -122.289333, 37.885896 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1023", "GEOID10": "060014206001023", "NAME10": "Block 1023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15260, "AWATER10": 0, "INTPTLAT10": "+37.8840099", "INTPTLON10": "-122.2895305" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289762, 37.884948 ], [ -122.288818, 37.884744 ], [ -122.289333, 37.883322 ], [ -122.290106, 37.883186 ], [ -122.290277, 37.883186 ], [ -122.289762, 37.884948 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2010", "GEOID10": "060014205002010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6161, "AWATER10": 0, "INTPTLAT10": "+37.8835363", "INTPTLON10": "-122.2962204" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296028, 37.883999 ], [ -122.295771, 37.883051 ], [ -122.296028, 37.883051 ], [ -122.296801, 37.883525 ], [ -122.296886, 37.883864 ], [ -122.296028, 37.883999 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2011", "GEOID10": "060014205002011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10125, "AWATER10": 0, "INTPTLAT10": "+37.8834818", "INTPTLON10": "-122.2953591" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295170, 37.884202 ], [ -122.294741, 37.882780 ], [ -122.295771, 37.883051 ], [ -122.296028, 37.883999 ], [ -122.295170, 37.884202 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3006", "GEOID10": "060014201003006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1509, "AWATER10": 0, "INTPTLAT10": "+37.8926066", "INTPTLON10": "-122.2883829" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288733, 37.892128 ], [ -122.288389, 37.892128 ], [ -122.288389, 37.891721 ], [ -122.288733, 37.891721 ], [ -122.288733, 37.892128 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3007", "GEOID10": "060014201003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18637, "AWATER10": 0, "INTPTLAT10": "+37.8917853", "INTPTLON10": "-122.2879697" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287445, 37.892873 ], [ -122.287531, 37.890909 ], [ -122.288818, 37.890841 ], [ -122.288475, 37.891518 ], [ -122.288389, 37.892873 ], [ -122.287445, 37.892873 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2003", "GEOID10": "060014206002003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 446, "AWATER10": 0, "INTPTLAT10": "+37.8908208", "INTPTLON10": "-122.2882377" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287703, 37.890841 ], [ -122.288818, 37.890773 ], [ -122.288818, 37.890841 ], [ -122.287703, 37.890841 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3008", "GEOID10": "060014201003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5620, "AWATER10": 0, "INTPTLAT10": "+37.8918093", "INTPTLON10": "-122.2873239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287188, 37.892873 ], [ -122.287188, 37.890976 ], [ -122.287531, 37.890909 ], [ -122.287531, 37.891315 ], [ -122.287445, 37.892873 ], [ -122.287188, 37.892873 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2017", "GEOID10": "060014206002017", "NAME10": "Block 2017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 379, "AWATER10": 0, "INTPTLAT10": "+37.8908918", "INTPTLON10": "-122.2870824" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287188, 37.890976 ], [ -122.286673, 37.890909 ], [ -122.287531, 37.890841 ], [ -122.287188, 37.890976 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2000", "GEOID10": "060014206002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 375, "AWATER10": 0, "INTPTLAT10": "+37.8909521", "INTPTLON10": "-122.2861793" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285728, 37.890976 ], [ -122.286673, 37.890909 ], [ -122.286501, 37.890976 ], [ -122.285728, 37.890976 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "GEOID10": "060014206002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.8896802", "INTPTLON10": "-122.2884737" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.890841 ], [ -122.288132, 37.888741 ], [ -122.288303, 37.888606 ], [ -122.288303, 37.888876 ], [ -122.288904, 37.890705 ], [ -122.288818, 37.890841 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2005", "GEOID10": "060014206002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21301, "AWATER10": 0, "INTPTLAT10": "+37.8898284", "INTPTLON10": "-122.2879267" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287703, 37.890841 ], [ -122.287102, 37.889080 ], [ -122.288132, 37.888741 ], [ -122.288818, 37.890773 ], [ -122.287703, 37.890841 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3011", "GEOID10": "060014206003011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 598, "AWATER10": 0, "INTPTLAT10": "+37.8885114", "INTPTLON10": "-122.2886774" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288990, 37.888673 ], [ -122.288733, 37.888673 ], [ -122.288733, 37.888402 ], [ -122.288990, 37.888402 ], [ -122.288990, 37.888673 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2006", "GEOID10": "060014206002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 812, "AWATER10": 0, "INTPTLAT10": "+37.8888233", "INTPTLON10": "-122.2875914" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287960, 37.888944 ], [ -122.287617, 37.888944 ], [ -122.287617, 37.888673 ], [ -122.287960, 37.888673 ], [ -122.287960, 37.888944 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2002", "GEOID10": "060014206002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16691, "AWATER10": 0, "INTPTLAT10": "+37.8900585", "INTPTLON10": "-122.2869139" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286673, 37.890909 ], [ -122.286158, 37.889418 ], [ -122.287102, 37.889080 ], [ -122.287788, 37.890909 ], [ -122.287531, 37.890841 ], [ -122.286673, 37.890909 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2007", "GEOID10": "060014206002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 740, "AWATER10": 0, "INTPTLAT10": "+37.8892157", "INTPTLON10": "-122.2866157" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286158, 37.889418 ], [ -122.286158, 37.889351 ], [ -122.287102, 37.889012 ], [ -122.286158, 37.889418 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2010", "GEOID10": "060014206002010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15494, "AWATER10": 0, "INTPTLAT10": "+37.8884410", "INTPTLON10": "-122.2866366" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286158, 37.889351 ], [ -122.286072, 37.888606 ], [ -122.286415, 37.887657 ], [ -122.287531, 37.887928 ], [ -122.287273, 37.888267 ], [ -122.287102, 37.889012 ], [ -122.286158, 37.889351 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2001", "GEOID10": "060014206002001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14791, "AWATER10": 0, "INTPTLAT10": "+37.8902095", "INTPTLON10": "-122.2859011" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285728, 37.890976 ], [ -122.285213, 37.889554 ], [ -122.286158, 37.889418 ], [ -122.286673, 37.890909 ], [ -122.285728, 37.890976 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1002", "GEOID10": "060014206001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 424, "AWATER10": 0, "INTPTLAT10": "+37.8910153", "INTPTLON10": "-122.2850935" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284527, 37.891112 ], [ -122.284527, 37.891044 ], [ -122.285728, 37.891044 ], [ -122.284527, 37.891112 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1003", "GEOID10": "060014206001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16431, "AWATER10": 0, "INTPTLAT10": "+37.8902144", "INTPTLON10": "-122.2848310" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284527, 37.891044 ], [ -122.284098, 37.889351 ], [ -122.285213, 37.889554 ], [ -122.285728, 37.890976 ], [ -122.284527, 37.891044 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1001", "GEOID10": "060014206001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 394, "AWATER10": 0, "INTPTLAT10": "+37.8910689", "INTPTLON10": "-122.2839734" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283497, 37.891180 ], [ -122.283497, 37.891112 ], [ -122.284527, 37.891044 ], [ -122.283497, 37.891180 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1004", "GEOID10": "060014206001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19676, "AWATER10": 0, "INTPTLAT10": "+37.8901108", "INTPTLON10": "-122.2837239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283497, 37.891112 ], [ -122.282896, 37.889147 ], [ -122.283497, 37.889215 ], [ -122.284098, 37.889351 ], [ -122.284527, 37.890976 ], [ -122.283497, 37.891112 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2008", "GEOID10": "060014206002008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 676, "AWATER10": 0, "INTPTLAT10": "+37.8894421", "INTPTLON10": "-122.2856518" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285213, 37.889554 ], [ -122.285213, 37.889486 ], [ -122.286158, 37.889351 ], [ -122.286072, 37.889486 ], [ -122.285213, 37.889554 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2009", "GEOID10": "060014206002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19896, "AWATER10": 0, "INTPTLAT10": "+37.8884164", "INTPTLON10": "-122.2856099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285213, 37.889486 ], [ -122.285042, 37.888673 ], [ -122.285385, 37.887386 ], [ -122.286415, 37.887657 ], [ -122.286072, 37.888606 ], [ -122.286158, 37.889351 ], [ -122.285385, 37.889486 ], [ -122.285213, 37.889486 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1010", "GEOID10": "060014206001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1878, "AWATER10": 0, "INTPTLAT10": "+37.8889080", "INTPTLON10": "-122.2850205" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285128, 37.889486 ], [ -122.284956, 37.888538 ], [ -122.285299, 37.887386 ], [ -122.285385, 37.887386 ], [ -122.285042, 37.888538 ], [ -122.285128, 37.889486 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1008", "GEOID10": "060014206001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 832, "AWATER10": 0, "INTPTLAT10": "+37.8893913", "INTPTLON10": "-122.2845906" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285213, 37.889554 ], [ -122.284441, 37.889418 ], [ -122.284098, 37.889351 ], [ -122.284098, 37.889283 ], [ -122.285213, 37.889486 ], [ -122.285213, 37.889554 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1007", "GEOID10": "060014206001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 282, "AWATER10": 0, "INTPTLAT10": "+37.8892140", "INTPTLON10": "-122.2838288" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284098, 37.889351 ], [ -122.283669, 37.889215 ], [ -122.283669, 37.889147 ], [ -122.284098, 37.889283 ], [ -122.284098, 37.889351 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1009", "GEOID10": "060014206001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22493, "AWATER10": 0, "INTPTLAT10": "+37.8883323", "INTPTLON10": "-122.2844715" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285128, 37.889486 ], [ -122.283754, 37.889147 ], [ -122.283754, 37.888809 ], [ -122.284355, 37.887183 ], [ -122.285299, 37.887386 ], [ -122.284956, 37.888538 ], [ -122.285128, 37.889486 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1014", "GEOID10": "060014206001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22296, "AWATER10": 0, "INTPTLAT10": "+37.8880279", "INTPTLON10": "-122.2834249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283669, 37.889147 ], [ -122.282810, 37.889080 ], [ -122.282724, 37.888606 ], [ -122.283325, 37.886912 ], [ -122.284355, 37.887183 ], [ -122.283669, 37.889147 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2012", "GEOID10": "060014206002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2533, "AWATER10": 0, "INTPTLAT10": "+37.8872385", "INTPTLON10": "-122.2887646" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288218, 37.888606 ], [ -122.289333, 37.886031 ], [ -122.288303, 37.888606 ], [ -122.288218, 37.888606 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2011", "GEOID10": "060014206002011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 36927, "AWATER10": 0, "INTPTLAT10": "+37.8868308", "INTPTLON10": "-122.2883823" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.889012 ], [ -122.287273, 37.888267 ], [ -122.287703, 37.887657 ], [ -122.288818, 37.884744 ], [ -122.289677, 37.884880 ], [ -122.289333, 37.885896 ], [ -122.288218, 37.888606 ], [ -122.287102, 37.889012 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2013", "GEOID10": "060014206002013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27693, "AWATER10": 0, "INTPTLAT10": "+37.8861944", "INTPTLON10": "-122.2877578" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287531, 37.887928 ], [ -122.286758, 37.887725 ], [ -122.287960, 37.884541 ], [ -122.288818, 37.884744 ], [ -122.287703, 37.887657 ], [ -122.287531, 37.887928 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2015", "GEOID10": "060014206002015", "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8164, "AWATER10": 0, "INTPTLAT10": "+37.8861594", "INTPTLON10": "-122.2868653" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287188, 37.886777 ], [ -122.286329, 37.886573 ], [ -122.286673, 37.885693 ], [ -122.287531, 37.885828 ], [ -122.287188, 37.886777 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2014", "GEOID10": "060014206002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 41589, "AWATER10": 0, "INTPTLAT10": "+37.8849195", "INTPTLON10": "-122.2873798" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.887725 ], [ -122.285385, 37.887386 ], [ -122.286673, 37.883999 ], [ -122.288132, 37.884270 ], [ -122.287531, 37.885828 ], [ -122.286758, 37.885693 ], [ -122.286587, 37.885828 ], [ -122.286329, 37.886573 ], [ -122.287188, 37.886777 ], [ -122.286758, 37.887725 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1022", "GEOID10": "060014206001022", "NAME10": "Block 1022", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12213, "AWATER10": 0, "INTPTLAT10": "+37.8838753", "INTPTLON10": "-122.2886289" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.884744 ], [ -122.287960, 37.884541 ], [ -122.288561, 37.883051 ], [ -122.289333, 37.883322 ], [ -122.288818, 37.884744 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1019", "GEOID10": "060014206001019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1466, "AWATER10": 0, "INTPTLAT10": "+37.8847579", "INTPTLON10": "-122.2863241" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285986, 37.885557 ], [ -122.286587, 37.883999 ], [ -122.286673, 37.883999 ], [ -122.286587, 37.884338 ], [ -122.286072, 37.885557 ], [ -122.285986, 37.885557 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1011", "GEOID10": "060014206001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1704, "AWATER10": 0, "INTPTLAT10": "+37.8864397", "INTPTLON10": "-122.2856823" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285299, 37.887386 ], [ -122.285986, 37.885557 ], [ -122.286072, 37.885557 ], [ -122.285385, 37.887386 ], [ -122.285299, 37.887386 ] ] ] } } +, +{ "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.8863390", "INTPTLON10": "-122.2851750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285299, 37.887386 ], [ -122.284355, 37.887183 ], [ -122.285128, 37.885354 ], [ -122.285986, 37.885557 ], [ -122.285299, 37.887386 ] ] ] } } +, +{ "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.8843388", "INTPTLON10": "-122.2859716" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285986, 37.885557 ], [ -122.285128, 37.885354 ], [ -122.285728, 37.883660 ], [ -122.287016, 37.882983 ], [ -122.286587, 37.883999 ], [ -122.285986, 37.885557 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1025", "GEOID10": "060014206001025", "NAME10": "Block 1025", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1018, "AWATER10": 0, "INTPTLAT10": "+37.8838716", "INTPTLON10": "-122.2850766" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284527, 37.884202 ], [ -122.284527, 37.884135 ], [ -122.285728, 37.883593 ], [ -122.285728, 37.883660 ], [ -122.284784, 37.884135 ], [ -122.284527, 37.884202 ] ] ] } } +, +{ "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.8854489", "INTPTLON10": "-122.2845719" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284355, 37.887183 ], [ -122.283583, 37.886980 ], [ -122.283840, 37.886235 ], [ -122.284527, 37.884202 ], [ -122.285728, 37.883660 ], [ -122.284355, 37.887183 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1029", "GEOID10": "060014206001029", "NAME10": "Block 1029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16994, "AWATER10": 0, "INTPTLAT10": "+37.8853080", "INTPTLON10": "-122.2836511" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283840, 37.886235 ], [ -122.282724, 37.886031 ], [ -122.283239, 37.885422 ], [ -122.283325, 37.884812 ], [ -122.283411, 37.884744 ], [ -122.284527, 37.884202 ], [ -122.283840, 37.886235 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1027", "GEOID10": "060014206001027", "NAME10": "Block 1027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 906, "AWATER10": 0, "INTPTLAT10": "+37.8844362", "INTPTLON10": "-122.2839247" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283411, 37.884677 ], [ -122.284527, 37.884135 ], [ -122.284527, 37.884202 ], [ -122.283926, 37.884541 ], [ -122.283411, 37.884677 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1026", "GEOID10": "060014206001026", "NAME10": "Block 1026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 63728, "AWATER10": 0, "INTPTLAT10": "+37.8834939", "INTPTLON10": "-122.2837979" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282038, 37.885015 ], [ -122.282295, 37.884406 ], [ -122.281952, 37.884406 ], [ -122.282639, 37.882780 ], [ -122.282810, 37.882577 ], [ -122.286072, 37.882509 ], [ -122.285728, 37.883593 ], [ -122.283154, 37.884812 ], [ -122.282038, 37.885015 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1000", "GEOID10": "060014206001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 443, "AWATER10": 0, "INTPTLAT10": "+37.8911265", "INTPTLON10": "-122.2829474" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283068, 37.891247 ], [ -122.282810, 37.891247 ], [ -122.282810, 37.891044 ], [ -122.283068, 37.891044 ], [ -122.283068, 37.891247 ] ] ] } } +, +{ "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.8901660", "INTPTLON10": "-122.2826890" }, "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.8891127", "INTPTLON10": "-122.2832122" }, "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": "1006", "GEOID10": "060014206001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 691, "AWATER10": 0, "INTPTLAT10": "+37.8892075", "INTPTLON10": "-122.2823202" }, "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 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1017", "GEOID10": "060014206001017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24687, "AWATER10": 0, "INTPTLAT10": "+37.8879459", "INTPTLON10": "-122.2823713" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281866, 37.889351 ], [ -122.281694, 37.888673 ], [ -122.281694, 37.888267 ], [ -122.282295, 37.886709 ], [ -122.283325, 37.886912 ], [ -122.282724, 37.888606 ], [ -122.282810, 37.889080 ], [ -122.281866, 37.889351 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1016", "GEOID10": "060014206001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9100, "AWATER10": 0, "INTPTLAT10": "+37.8864607", "INTPTLON10": "-122.2830673" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283583, 37.886980 ], [ -122.282295, 37.886709 ], [ -122.282553, 37.886370 ], [ -122.282724, 37.886031 ], [ -122.283840, 37.886235 ], [ -122.283583, 37.886980 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1028", "GEOID10": "060014206001028", "NAME10": "Block 1028", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1037, "AWATER10": 0, "INTPTLAT10": "+37.8849026", "INTPTLON10": "-122.2826795" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282038, 37.885083 ], [ -122.282038, 37.885015 ], [ -122.283411, 37.884744 ], [ -122.282467, 37.885083 ], [ -122.282038, 37.885083 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1021", "GEOID10": "060014206001021", "NAME10": "Block 1021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18586, "AWATER10": 0, "INTPTLAT10": "+37.8834620", "INTPTLON10": "-122.2875836" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.884270 ], [ -122.286673, 37.883999 ], [ -122.287102, 37.882915 ], [ -122.287273, 37.882644 ], [ -122.288561, 37.883051 ], [ -122.288132, 37.884270 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1020", "GEOID10": "060014206001020", "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 979, "AWATER10": 0, "INTPTLAT10": "+37.8834653", "INTPTLON10": "-122.2868181" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286587, 37.883999 ], [ -122.287102, 37.882915 ], [ -122.287102, 37.883051 ], [ -122.286673, 37.883999 ], [ -122.286587, 37.883999 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1030", "GEOID10": "060014206001030", "NAME10": "Block 1030", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 280, "AWATER10": 0, "INTPTLAT10": "+37.8827246", "INTPTLON10": "-122.2870976" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287016, 37.882915 ], [ -122.287188, 37.882577 ], [ -122.287188, 37.882712 ], [ -122.287102, 37.882915 ], [ -122.287016, 37.882915 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1024", "GEOID10": "060014206001024", "NAME10": "Block 1024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1201, "AWATER10": 0, "INTPTLAT10": "+37.8832245", "INTPTLON10": "-122.2863663" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285728, 37.883660 ], [ -122.285728, 37.883593 ], [ -122.287016, 37.882915 ], [ -122.285728, 37.883660 ] ] ] } } +, +{ "type": "Feature", "id": 12345, "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1031", "GEOID10": "060014206001031", "NAME10": "Block 1031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7920, "AWATER10": 0, "INTPTLAT10": "+37.8828579", "INTPTLON10": "-122.2863490" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285728, 37.883593 ], [ -122.286072, 37.882509 ], [ -122.287188, 37.882577 ], [ -122.287016, 37.882915 ], [ -122.285728, 37.883593 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 328, "y": 791 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "macarthur", "version": 2, "extent": 1024 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104485645649", "FULLNAME": "W Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.279720, 37.828633 ], [ -122.284527, 37.827684 ], [ -122.284698, 37.827819 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485605278", "FULLNAME": "W Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.279549, 37.828362 ], [ -122.280579, 37.828362 ], [ -122.281437, 37.828091 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1102156217102", "FULLNAME": "W Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.279205, 37.828497 ], [ -122.275429, 37.828226 ], [ -122.271824, 37.827548 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104475134288", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.254314, 37.820362 ], [ -122.254658, 37.821718 ], [ -122.255001, 37.822124 ], [ -122.258091, 37.824430 ], [ -122.259293, 37.824836 ], [ -122.264099, 37.825921 ], [ -122.265301, 37.826599 ], [ -122.266846, 37.827006 ], [ -122.276630, 37.828497 ], [ -122.279720, 37.828633 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104475134436", "FULLNAME": "W Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.254314, 37.820362 ], [ -122.254658, 37.821718 ], [ -122.255001, 37.822124 ], [ -122.258091, 37.824430 ], [ -122.264099, 37.825921 ], [ -122.265301, 37.826599 ], [ -122.266846, 37.827006 ], [ -122.275429, 37.828226 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1102407366406", "FULLNAME": "W Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.254486, 37.820090 ], [ -122.254829, 37.821446 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485773833", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.252941, 37.817243 ], [ -122.254314, 37.819006 ], [ -122.254829, 37.821446 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1105089436004", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.252426, 37.816429 ], [ -122.251225, 37.813581 ], [ -122.250710, 37.811547 ], [ -122.249851, 37.810733 ], [ -122.248993, 37.810191 ], [ -122.246933, 37.809648 ], [ -122.246418, 37.809241 ], [ -122.242813, 37.808156 ], [ -122.241611, 37.807071 ], [ -122.240925, 37.806800 ], [ -122.239723, 37.806800 ], [ -122.237835, 37.805715 ], [ -122.236118, 37.805173 ], [ -122.233887, 37.804088 ], [ -122.229767, 37.800968 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469713198", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.241611, 37.807343 ], [ -122.241783, 37.807614 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469713187", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.241611, 37.807343 ], [ -122.241440, 37.807207 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1102156248968", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.237320, 37.805715 ], [ -122.235775, 37.805308 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1102638078801", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.229252, 37.801646 ], [ -122.227879, 37.801375 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1105281275689", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.227879, 37.801375 ], [ -122.220840, 37.800019 ], [ -122.219982, 37.800019 ], [ -122.219124, 37.800968 ], [ -122.218266, 37.800968 ], [ -122.215862, 37.800154 ], [ -122.215176, 37.800154 ], [ -122.209167, 37.798527 ], [ -122.207794, 37.798662 ], [ -122.205563, 37.797713 ], [ -122.200756, 37.793915 ], [ -122.194061, 37.786453 ], [ -122.192688, 37.785639 ], [ -122.190628, 37.785368 ], [ -122.189083, 37.784825 ], [ -122.188568, 37.784418 ], [ -122.188396, 37.783876 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1103717593123", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.227879, 37.801375 ], [ -122.220497, 37.800019 ], [ -122.220154, 37.800019 ], [ -122.219124, 37.801104 ], [ -122.218609, 37.801104 ], [ -122.209339, 37.798662 ], [ -122.207794, 37.798798 ], [ -122.204876, 37.797441 ], [ -122.202129, 37.795271 ], [ -122.194920, 37.787403 ], [ -122.193203, 37.785911 ], [ -122.192516, 37.785639 ], [ -122.190971, 37.785504 ], [ -122.187710, 37.784554 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1105281275688", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.194061, 37.786453 ], [ -122.193890, 37.786046 ], [ -122.192688, 37.785097 ], [ -122.191486, 37.784554 ], [ -122.188911, 37.783876 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1105281275434", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.188911, 37.783876 ], [ -122.188396, 37.783876 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1105281275687", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.188911, 37.783876 ], [ -122.188396, 37.783604 ], [ -122.187195, 37.780484 ], [ -122.187195, 37.778720 ], [ -122.188225, 37.778042 ], [ -122.188225, 37.777770 ], [ -122.185478, 37.775464 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1105281275692", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.188396, 37.783876 ], [ -122.187023, 37.780213 ], [ -122.187195, 37.778585 ], [ -122.188053, 37.778042 ], [ -122.188053, 37.777770 ], [ -122.187195, 37.776821 ], [ -122.185307, 37.775464 ], [ -122.184105, 37.776549 ], [ -122.181530, 37.775057 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1102406970092", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.181187, 37.774921 ], [ -122.177753, 37.772343 ], [ -122.176895, 37.771393 ], [ -122.172089, 37.769222 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1102406970093", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.172260, 37.769222 ], [ -122.170029, 37.767729 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1105089465114", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.169857, 37.767594 ], [ -122.167969, 37.766237 ], [ -122.164536, 37.762166 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 328, "y": 790 }, "features": [ +{ "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.8928912", "INTPTLON10": "-122.3202957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.312508, 37.897445 ], [ -122.312551, 37.897038 ], [ -122.312465, 37.896937 ], [ -122.312164, 37.896937 ], [ -122.311606, 37.896835 ], [ -122.311521, 37.896734 ], [ -122.311606, 37.896497 ], [ -122.311521, 37.896192 ], [ -122.311134, 37.896056 ], [ -122.311306, 37.895752 ], [ -122.311134, 37.895548 ], [ -122.310705, 37.895514 ], [ -122.310705, 37.895277 ], [ -122.310576, 37.895074 ], [ -122.310147, 37.894769 ], [ -122.309461, 37.893482 ], [ -122.309117, 37.892229 ], [ -122.309074, 37.891315 ], [ -122.309289, 37.889723 ], [ -122.309461, 37.889147 ], [ -122.309675, 37.888876 ], [ -122.309804, 37.888809 ], [ -122.310061, 37.888910 ], [ -122.310147, 37.889147 ], [ -122.310877, 37.889757 ], [ -122.310963, 37.889859 ], [ -122.311006, 37.890197 ], [ -122.311134, 37.890265 ], [ -122.311220, 37.890163 ], [ -122.311220, 37.889926 ], [ -122.311349, 37.889926 ], [ -122.311692, 37.890401 ], [ -122.312722, 37.891213 ], [ -122.313709, 37.891891 ], [ -122.314267, 37.891958 ], [ -122.314396, 37.892060 ], [ -122.314696, 37.892466 ], [ -122.314825, 37.892466 ], [ -122.314610, 37.892162 ], [ -122.314525, 37.891925 ], [ -122.314696, 37.891891 ], [ -122.315941, 37.891891 ], [ -122.315984, 37.891247 ], [ -122.316027, 37.891146 ], [ -122.317615, 37.890942 ], [ -122.319846, 37.889960 ], [ -122.322721, 37.889994 ], [ -122.323151, 37.891010 ], [ -122.323966, 37.892399 ], [ -122.325726, 37.892534 ], [ -122.325854, 37.892500 ], [ -122.325897, 37.892297 ], [ -122.325640, 37.892162 ], [ -122.325554, 37.892060 ], [ -122.325554, 37.891518 ], [ -122.325597, 37.890942 ], [ -122.325640, 37.890841 ], [ -122.325811, 37.890807 ], [ -122.326198, 37.890807 ], [ -122.326627, 37.890875 ], [ -122.327313, 37.890807 ], [ -122.327399, 37.890909 ], [ -122.327399, 37.891484 ], [ -122.327528, 37.891552 ], [ -122.327614, 37.891450 ], [ -122.327700, 37.890231 ], [ -122.327571, 37.889689 ], [ -122.334738, 37.889588 ], [ -122.333407, 37.892805 ], [ -122.312508, 37.897445 ] ] ] } } +, +{ "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.8905867", "INTPTLON10": "-122.3181131" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.311521, 37.896734 ], [ -122.310662, 37.895752 ], [ -122.310019, 37.894769 ], [ -122.309546, 37.893855 ], [ -122.309246, 37.893076 ], [ -122.309031, 37.892094 ], [ -122.308989, 37.891247 ], [ -122.308903, 37.890502 ], [ -122.308989, 37.888775 ], [ -122.309246, 37.887860 ], [ -122.309804, 37.888131 ], [ -122.311263, 37.889452 ], [ -122.315598, 37.889655 ], [ -122.315812, 37.889520 ], [ -122.327614, 37.889689 ], [ -122.327700, 37.890231 ], [ -122.327614, 37.891450 ], [ -122.327528, 37.891552 ], [ -122.327399, 37.891484 ], [ -122.327399, 37.890909 ], [ -122.327313, 37.890807 ], [ -122.326627, 37.890875 ], [ -122.325811, 37.890807 ], [ -122.325640, 37.890841 ], [ -122.325597, 37.890942 ], [ -122.325554, 37.891518 ], [ -122.325554, 37.892060 ], [ -122.325640, 37.892162 ], [ -122.325897, 37.892297 ], [ -122.325854, 37.892500 ], [ -122.325554, 37.892534 ], [ -122.324996, 37.892466 ], [ -122.324696, 37.892500 ], [ -122.323966, 37.892399 ], [ -122.323151, 37.891010 ], [ -122.322721, 37.889994 ], [ -122.319846, 37.889960 ], [ -122.317615, 37.890942 ], [ -122.316027, 37.891146 ], [ -122.315984, 37.891247 ], [ -122.315941, 37.891891 ], [ -122.314696, 37.891891 ], [ -122.314525, 37.891925 ], [ -122.314610, 37.892162 ], [ -122.314825, 37.892466 ], [ -122.314696, 37.892466 ], [ -122.314396, 37.892060 ], [ -122.314267, 37.891958 ], [ -122.313709, 37.891891 ], [ -122.312722, 37.891213 ], [ -122.311692, 37.890401 ], [ -122.311349, 37.889926 ], [ -122.311220, 37.889926 ], [ -122.311220, 37.890163 ], [ -122.311134, 37.890265 ], [ -122.311006, 37.890197 ], [ -122.310963, 37.889859 ], [ -122.310877, 37.889757 ], [ -122.310147, 37.889147 ], [ -122.310061, 37.888910 ], [ -122.309804, 37.888809 ], [ -122.309675, 37.888876 ], [ -122.309461, 37.889147 ], [ -122.309289, 37.889723 ], [ -122.309074, 37.891315 ], [ -122.309117, 37.892229 ], [ -122.309461, 37.893482 ], [ -122.310147, 37.894769 ], [ -122.310576, 37.895074 ], [ -122.310705, 37.895277 ], [ -122.310705, 37.895514 ], [ -122.311134, 37.895548 ], [ -122.311306, 37.895752 ], [ -122.311134, 37.896056 ], [ -122.311521, 37.896192 ], [ -122.311606, 37.896293 ], [ -122.311521, 37.896734 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3007", "GEOID10": "060014203003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3648, "AWATER10": 0, "INTPTLAT10": "+37.8971393", "INTPTLON10": "-122.3121267" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.312078, 37.897479 ], [ -122.311606, 37.896869 ], [ -122.311563, 37.896835 ], [ -122.312164, 37.896937 ], [ -122.312465, 37.896937 ], [ -122.312551, 37.897140 ], [ -122.312508, 37.897445 ], [ -122.312078, 37.897479 ] ] ] } } +, +{ "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.8946697", "INTPTLON10": "-122.3084294" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309375, 37.897885 ], [ -122.309332, 37.897817 ], [ -122.308302, 37.895244 ], [ -122.307959, 37.894024 ], [ -122.307830, 37.892805 ], [ -122.307873, 37.892297 ], [ -122.308044, 37.892162 ], [ -122.308259, 37.892196 ], [ -122.308345, 37.894431 ], [ -122.309418, 37.897309 ], [ -122.309546, 37.897851 ], [ -122.309375, 37.897885 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3005", "GEOID10": "060014203003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 30820, "AWATER10": 0, "INTPTLAT10": "+37.8910154", "INTPTLON10": "-122.3085406" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.311478, 37.897648 ], [ -122.309933, 37.895684 ], [ -122.309289, 37.894566 ], [ -122.308989, 37.893923 ], [ -122.308517, 37.892399 ], [ -122.308087, 37.890604 ], [ -122.308345, 37.890096 ], [ -122.308989, 37.892568 ], [ -122.309418, 37.893889 ], [ -122.309890, 37.894837 ], [ -122.310534, 37.895819 ], [ -122.311864, 37.897546 ], [ -122.311478, 37.897648 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3004", "GEOID10": "060014203003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59347, "AWATER10": 0, "INTPTLAT10": "+37.8955812", "INTPTLON10": "-122.3094534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309546, 37.897851 ], [ -122.309418, 37.897309 ], [ -122.308345, 37.894431 ], [ -122.308259, 37.892297 ], [ -122.307916, 37.890976 ], [ -122.308087, 37.890604 ], [ -122.308517, 37.892399 ], [ -122.308989, 37.893923 ], [ -122.309289, 37.894566 ], [ -122.309933, 37.895684 ], [ -122.311478, 37.897648 ], [ -122.310920, 37.897851 ], [ -122.309546, 37.897851 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3006", "GEOID10": "060014203003006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19563, "AWATER10": 24, "INTPTLAT10": "+37.8904059", "INTPTLON10": "-122.3086941" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.311864, 37.897546 ], [ -122.310534, 37.895819 ], [ -122.309718, 37.894465 ], [ -122.309160, 37.893144 ], [ -122.308345, 37.890096 ], [ -122.308989, 37.888775 ], [ -122.308903, 37.890502 ], [ -122.308989, 37.891247 ], [ -122.309031, 37.892094 ], [ -122.309246, 37.893076 ], [ -122.309546, 37.893855 ], [ -122.310019, 37.894769 ], [ -122.310662, 37.895752 ], [ -122.311606, 37.896835 ], [ -122.311563, 37.896835 ], [ -122.312078, 37.897479 ], [ -122.311864, 37.897546 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3001", "GEOID10": "060014203003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24651, "AWATER10": 0, "INTPTLAT10": "+37.8921989", "INTPTLON10": "-122.3075517" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309375, 37.897885 ], [ -122.307701, 37.894261 ], [ -122.307229, 37.893042 ], [ -122.307100, 37.892568 ], [ -122.307014, 37.891925 ], [ -122.307100, 37.890875 ], [ -122.307272, 37.890130 ], [ -122.307529, 37.889520 ], [ -122.307916, 37.890976 ], [ -122.307658, 37.891688 ], [ -122.307572, 37.892263 ], [ -122.307529, 37.892636 ], [ -122.307615, 37.893313 ], [ -122.307787, 37.893990 ], [ -122.308302, 37.895244 ], [ -122.309375, 37.897885 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3000", "GEOID10": "060014203003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27350, "AWATER10": 0, "INTPTLAT10": "+37.8907736", "INTPTLON10": "-122.3067658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308989, 37.897987 ], [ -122.307229, 37.893753 ], [ -122.306671, 37.892670 ], [ -122.306671, 37.892229 ], [ -122.306714, 37.892026 ], [ -122.306714, 37.891721 ], [ -122.306414, 37.890807 ], [ -122.306843, 37.890705 ], [ -122.307401, 37.889757 ], [ -122.307229, 37.890299 ], [ -122.307057, 37.891247 ], [ -122.307014, 37.891925 ], [ -122.307100, 37.892568 ], [ -122.307229, 37.893042 ], [ -122.307701, 37.894261 ], [ -122.309332, 37.897885 ], [ -122.308989, 37.897987 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3002", "GEOID10": "060014203003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9773, "AWATER10": 0, "INTPTLAT10": "+37.8920318", "INTPTLON10": "-122.3077138" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308302, 37.895244 ], [ -122.307701, 37.893720 ], [ -122.307572, 37.893144 ], [ -122.307529, 37.892636 ], [ -122.307658, 37.891688 ], [ -122.307916, 37.890976 ], [ -122.308259, 37.892196 ], [ -122.308044, 37.892162 ], [ -122.307873, 37.892297 ], [ -122.307830, 37.893042 ], [ -122.307873, 37.893652 ], [ -122.308302, 37.895244 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1006", "GEOID10": "060014202001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1461, "AWATER10": 0, "INTPTLAT10": "+37.8973748", "INTPTLON10": "-122.3012481" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301650, 37.898528 ], [ -122.301006, 37.896700 ], [ -122.301135, 37.896700 ], [ -122.301650, 37.898528 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1005", "GEOID10": "060014202001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14639, "AWATER10": 0, "INTPTLAT10": "+37.8976068", "INTPTLON10": "-122.3008394" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301607, 37.898528 ], [ -122.300620, 37.898325 ], [ -122.300148, 37.896869 ], [ -122.301006, 37.896700 ], [ -122.301607, 37.898528 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "GEOID10": "060014202001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.8976015", "INTPTLON10": "-122.2999287" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300620, 37.898325 ], [ -122.300320, 37.898258 ], [ -122.299719, 37.898291 ], [ -122.299290, 37.897072 ], [ -122.300148, 37.896869 ], [ -122.300620, 37.898325 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "GEOID10": "060014203002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.8949184", "INTPTLON10": "-122.3048891" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301650, 37.898528 ], [ -122.300920, 37.896022 ], [ -122.302637, 37.895684 ], [ -122.302036, 37.893821 ], [ -122.302852, 37.893652 ], [ -122.303109, 37.894532 ], [ -122.303152, 37.893550 ], [ -122.303495, 37.892839 ], [ -122.303109, 37.891620 ], [ -122.303452, 37.890536 ], [ -122.303753, 37.890197 ], [ -122.303967, 37.890062 ], [ -122.304440, 37.889926 ], [ -122.306027, 37.889588 ], [ -122.306714, 37.891721 ], [ -122.306714, 37.892026 ], [ -122.306628, 37.892399 ], [ -122.306671, 37.892670 ], [ -122.307229, 37.893753 ], [ -122.308989, 37.897987 ], [ -122.308817, 37.898054 ], [ -122.306199, 37.898258 ], [ -122.305341, 37.898427 ], [ -122.304611, 37.898427 ], [ -122.303753, 37.898528 ], [ -122.301650, 37.898528 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "GEOID10": "060014203001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.8926328", "INTPTLON10": "-122.3029106" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303109, 37.894532 ], [ -122.302251, 37.891789 ], [ -122.303109, 37.891620 ], [ -122.303495, 37.892839 ], [ -122.303152, 37.893550 ], [ -122.303109, 37.894532 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1001", "GEOID10": "060014203001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16165, "AWATER10": 0, "INTPTLAT10": "+37.8948170", "INTPTLON10": "-122.3018829" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301779, 37.895853 ], [ -122.301178, 37.893990 ], [ -122.302036, 37.893821 ], [ -122.302637, 37.895684 ], [ -122.301779, 37.895853 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1007", "GEOID10": "060014202001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 914, "AWATER10": 0, "INTPTLAT10": "+37.8963621", "INTPTLON10": "-122.3009413" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301006, 37.896700 ], [ -122.300792, 37.896056 ], [ -122.300920, 37.896022 ], [ -122.301135, 37.896700 ], [ -122.301006, 37.896700 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1014", "GEOID10": "060014202001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1324, "AWATER10": 0, "INTPTLAT10": "+37.8955459", "INTPTLON10": "-122.3006834" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300792, 37.896056 ], [ -122.300491, 37.895074 ], [ -122.300620, 37.895074 ], [ -122.300920, 37.896022 ], [ -122.300792, 37.896056 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "GEOID10": "060014202001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.8959674", "INTPTLON10": "-122.3002912" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.896869 ], [ -122.299633, 37.895277 ], [ -122.300491, 37.895074 ], [ -122.300792, 37.896056 ], [ -122.301006, 37.896700 ], [ -122.300148, 37.896869 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1000", "GEOID10": "060014203001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16605, "AWATER10": 0, "INTPTLAT10": "+37.8950031", "INTPTLON10": "-122.3010393" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300920, 37.896022 ], [ -122.300620, 37.895074 ], [ -122.300363, 37.894160 ], [ -122.301178, 37.893990 ], [ -122.301779, 37.895853 ], [ -122.300920, 37.896022 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1007", "GEOID10": "060014203001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16120, "AWATER10": 0, "INTPTLAT10": "+37.8927903", "INTPTLON10": "-122.3021281" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302036, 37.893821 ], [ -122.301435, 37.891958 ], [ -122.302251, 37.891789 ], [ -122.302852, 37.893652 ], [ -122.302036, 37.893821 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1002", "GEOID10": "060014203001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16535, "AWATER10": 0, "INTPTLAT10": "+37.8929602", "INTPTLON10": "-122.3012875" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.893990 ], [ -122.300577, 37.892128 ], [ -122.301435, 37.891958 ], [ -122.302036, 37.893821 ], [ -122.301178, 37.893990 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3003", "GEOID10": "060014202003003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2234, "AWATER10": 0, "INTPTLAT10": "+37.8942520", "INTPTLON10": "-122.3002730" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.895074 ], [ -122.299976, 37.893482 ], [ -122.300105, 37.893449 ], [ -122.300577, 37.894871 ], [ -122.300620, 37.895074 ], [ -122.300491, 37.895074 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1003", "GEOID10": "060014203001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16635, "AWATER10": 0, "INTPTLAT10": "+37.8931288", "INTPTLON10": "-122.3004328" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300363, 37.894160 ], [ -122.300105, 37.893449 ], [ -122.299719, 37.892297 ], [ -122.300577, 37.892128 ], [ -122.301178, 37.893990 ], [ -122.300363, 37.894160 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "GEOID10": "060014202003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.8928701", "INTPTLON10": "-122.2998265" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299976, 37.893482 ], [ -122.299590, 37.892331 ], [ -122.299719, 37.892297 ], [ -122.300105, 37.893449 ], [ -122.299976, 37.893482 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "GEOID10": "060014204001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.8842028", "INTPTLON10": "-122.3237534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.327571, 37.889689 ], [ -122.327442, 37.889147 ], [ -122.327571, 37.888707 ], [ -122.327442, 37.888639 ], [ -122.327056, 37.888707 ], [ -122.325468, 37.888097 ], [ -122.324910, 37.887928 ], [ -122.324610, 37.887894 ], [ -122.322936, 37.888301 ], [ -122.322936, 37.888843 ], [ -122.322850, 37.889080 ], [ -122.322550, 37.889317 ], [ -122.322249, 37.889384 ], [ -122.321949, 37.889418 ], [ -122.321348, 37.889283 ], [ -122.320919, 37.889249 ], [ -122.319632, 37.889452 ], [ -122.317271, 37.889283 ], [ -122.316842, 37.888944 ], [ -122.316756, 37.888741 ], [ -122.316070, 37.887928 ], [ -122.315855, 37.887386 ], [ -122.315941, 37.886235 ], [ -122.316499, 37.886133 ], [ -122.316456, 37.885964 ], [ -122.315984, 37.885964 ], [ -122.316027, 37.885659 ], [ -122.316885, 37.885659 ], [ -122.316885, 37.885760 ], [ -122.317057, 37.885760 ], [ -122.317057, 37.885489 ], [ -122.316027, 37.885523 ], [ -122.316113, 37.885456 ], [ -122.315726, 37.885286 ], [ -122.315469, 37.884710 ], [ -122.315683, 37.884304 ], [ -122.315598, 37.884067 ], [ -122.315469, 37.884033 ], [ -122.315340, 37.884067 ], [ -122.315040, 37.883965 ], [ -122.314396, 37.883389 ], [ -122.314138, 37.883085 ], [ -122.313924, 37.882644 ], [ -122.313623, 37.882441 ], [ -122.313066, 37.882204 ], [ -122.312465, 37.881391 ], [ -122.327657, 37.877360 ], [ -122.334738, 37.889588 ], [ -122.327571, 37.889689 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1011", "GEOID10": "060014204001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 542505, "AWATER10": 0, "INTPTLAT10": "+37.8862375", "INTPTLON10": "-122.3141377" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.327571, 37.889689 ], [ -122.315812, 37.889520 ], [ -122.315598, 37.889655 ], [ -122.311263, 37.889452 ], [ -122.310190, 37.888538 ], [ -122.309804, 37.888064 ], [ -122.309375, 37.887691 ], [ -122.309289, 37.887894 ], [ -122.309246, 37.887860 ], [ -122.309289, 37.887318 ], [ -122.309461, 37.887183 ], [ -122.309546, 37.886980 ], [ -122.309546, 37.886472 ], [ -122.308903, 37.884033 ], [ -122.308645, 37.883491 ], [ -122.308388, 37.882306 ], [ -122.312465, 37.881391 ], [ -122.313066, 37.882204 ], [ -122.313623, 37.882441 ], [ -122.313924, 37.882644 ], [ -122.314138, 37.883085 ], [ -122.314396, 37.883389 ], [ -122.315040, 37.883965 ], [ -122.315340, 37.884067 ], [ -122.315469, 37.884033 ], [ -122.315598, 37.884067 ], [ -122.315683, 37.884304 ], [ -122.315469, 37.884710 ], [ -122.315726, 37.885286 ], [ -122.316113, 37.885456 ], [ -122.316027, 37.885523 ], [ -122.317057, 37.885489 ], [ -122.317057, 37.885760 ], [ -122.316885, 37.885760 ], [ -122.316885, 37.885659 ], [ -122.316027, 37.885659 ], [ -122.315984, 37.885964 ], [ -122.316456, 37.885964 ], [ -122.316499, 37.886133 ], [ -122.315941, 37.886235 ], [ -122.315855, 37.887386 ], [ -122.316070, 37.887928 ], [ -122.316756, 37.888741 ], [ -122.316842, 37.888944 ], [ -122.317271, 37.889283 ], [ -122.319632, 37.889452 ], [ -122.320919, 37.889249 ], [ -122.321348, 37.889283 ], [ -122.321949, 37.889418 ], [ -122.322249, 37.889384 ], [ -122.322550, 37.889317 ], [ -122.322850, 37.889080 ], [ -122.322936, 37.888843 ], [ -122.322936, 37.888301 ], [ -122.324610, 37.887894 ], [ -122.324910, 37.887928 ], [ -122.325468, 37.888097 ], [ -122.327056, 37.888707 ], [ -122.327442, 37.888639 ], [ -122.327571, 37.888707 ], [ -122.327442, 37.889147 ], [ -122.327571, 37.889689 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3030", "GEOID10": "060014203003030", "NAME10": "Block 3030", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 744, "AWATER10": 0, "INTPTLAT10": "+37.8878859", "INTPTLON10": "-122.3094998" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309804, 37.888131 ], [ -122.309632, 37.888030 ], [ -122.309332, 37.887894 ], [ -122.309289, 37.887894 ], [ -122.309375, 37.887691 ], [ -122.309804, 37.888064 ], [ -122.309804, 37.888131 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3010", "GEOID10": "060014203003010", "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1835, "AWATER10": 0, "INTPTLAT10": "+37.8878520", "INTPTLON10": "-122.3091212" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308989, 37.888775 ], [ -122.309074, 37.887454 ], [ -122.309289, 37.887318 ], [ -122.309289, 37.887589 ], [ -122.308989, 37.888775 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3011", "GEOID10": "060014203003011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10961, "AWATER10": 0, "INTPTLAT10": "+37.8885068", "INTPTLON10": "-122.3086806" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308345, 37.890096 ], [ -122.308345, 37.889215 ], [ -122.308559, 37.888301 ], [ -122.308559, 37.887556 ], [ -122.308645, 37.887352 ], [ -122.309074, 37.887454 ], [ -122.308989, 37.888775 ], [ -122.308345, 37.890096 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3016", "GEOID10": "060014203003016", "NAME10": "Block 3016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12044, "AWATER10": 0, "INTPTLAT10": "+37.8899556", "INTPTLON10": "-122.3067458" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306414, 37.890807 ], [ -122.306242, 37.890265 ], [ -122.306628, 37.890197 ], [ -122.306328, 37.890096 ], [ -122.306156, 37.889926 ], [ -122.306027, 37.889588 ], [ -122.307487, 37.889317 ], [ -122.307529, 37.889554 ], [ -122.306843, 37.890705 ], [ -122.306414, 37.890807 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3017", "GEOID10": "060014203003017", "NAME10": "Block 3017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 393, "AWATER10": 0, "INTPTLAT10": "+37.8901345", "INTPTLON10": "-122.3063016" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306242, 37.890265 ], [ -122.306156, 37.889926 ], [ -122.306328, 37.890096 ], [ -122.306628, 37.890197 ], [ -122.306242, 37.890265 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3012", "GEOID10": "060014203003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14539, "AWATER10": 0, "INTPTLAT10": "+37.8894024", "INTPTLON10": "-122.3080555" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307916, 37.890976 ], [ -122.307529, 37.889520 ], [ -122.308517, 37.887657 ], [ -122.308559, 37.888301 ], [ -122.308388, 37.889012 ], [ -122.308345, 37.890096 ], [ -122.307916, 37.890976 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3029", "GEOID10": "060014203003029", "NAME10": "Block 3029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14565, "AWATER10": 0, "INTPTLAT10": "+37.8878852", "INTPTLON10": "-122.3078467" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307701, 37.889181 ], [ -122.307229, 37.887217 ], [ -122.308130, 37.887251 ], [ -122.308645, 37.887352 ], [ -122.308602, 37.887454 ], [ -122.307701, 37.889181 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3018", "GEOID10": "060014203003018", "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9739, "AWATER10": 0, "INTPTLAT10": "+37.8891261", "INTPTLON10": "-122.3066496" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306027, 37.889588 ], [ -122.305856, 37.888978 ], [ -122.307315, 37.888673 ], [ -122.307487, 37.889317 ], [ -122.306027, 37.889588 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3028", "GEOID10": "060014203003028", "NAME10": "Block 3028", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 444, "AWATER10": 0, "INTPTLAT10": "+37.8890070", "INTPTLON10": "-122.3053896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304997, 37.889147 ], [ -122.304955, 37.889080 ], [ -122.305813, 37.888910 ], [ -122.305856, 37.888978 ], [ -122.304997, 37.889147 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3015", "GEOID10": "060014203003015", "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 782, "AWATER10": 0, "INTPTLAT10": "+37.8887826", "INTPTLON10": "-122.3065328" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305856, 37.888978 ], [ -122.305813, 37.888910 ], [ -122.307315, 37.888639 ], [ -122.307315, 37.888673 ], [ -122.305856, 37.888978 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3014", "GEOID10": "060014203003014", "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10339, "AWATER10": 0, "INTPTLAT10": "+37.8884185", "INTPTLON10": "-122.3064403" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305813, 37.888910 ], [ -122.305598, 37.888267 ], [ -122.307143, 37.887962 ], [ -122.307315, 37.888639 ], [ -122.305813, 37.888910 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3013", "GEOID10": "060014203003013", "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7694, "AWATER10": 0, "INTPTLAT10": "+37.8877645", "INTPTLON10": "-122.3071265" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307529, 37.889520 ], [ -122.306972, 37.887488 ], [ -122.305427, 37.887488 ], [ -122.307229, 37.887217 ], [ -122.307701, 37.889181 ], [ -122.307529, 37.889520 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1008", "GEOID10": "060014204001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 447, "AWATER10": 0, "INTPTLAT10": "+37.8873248", "INTPTLON10": "-122.3088095" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309074, 37.887454 ], [ -122.308645, 37.887352 ], [ -122.308688, 37.887217 ], [ -122.308989, 37.887352 ], [ -122.309074, 37.887454 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1009", "GEOID10": "060014204001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7572, "AWATER10": 0, "INTPTLAT10": "+37.8865874", "INTPTLON10": "-122.3090315" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309074, 37.887454 ], [ -122.308989, 37.887352 ], [ -122.308688, 37.887217 ], [ -122.308860, 37.886472 ], [ -122.309031, 37.885151 ], [ -122.309332, 37.886844 ], [ -122.309289, 37.887318 ], [ -122.309074, 37.887454 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1010", "GEOID10": "060014204001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6192, "AWATER10": 0, "INTPTLAT10": "+37.8856733", "INTPTLON10": "-122.3091896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309289, 37.887318 ], [ -122.309332, 37.886844 ], [ -122.309289, 37.886336 ], [ -122.309031, 37.885151 ], [ -122.308645, 37.883491 ], [ -122.308903, 37.884033 ], [ -122.309546, 37.886472 ], [ -122.309546, 37.887081 ], [ -122.309289, 37.887318 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1006", "GEOID10": "060014204001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59431, "AWATER10": 0, "INTPTLAT10": "+37.8849426", "INTPTLON10": "-122.3081455" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308688, 37.887217 ], [ -122.308044, 37.887115 ], [ -122.307229, 37.887081 ], [ -122.307358, 37.886743 ], [ -122.307830, 37.882035 ], [ -122.308388, 37.882204 ], [ -122.308645, 37.883491 ], [ -122.309031, 37.885151 ], [ -122.308860, 37.886472 ], [ -122.308688, 37.887217 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1007", "GEOID10": "060014204001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1737, "AWATER10": 0, "INTPTLAT10": "+37.8871632", "INTPTLON10": "-122.3079226" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308645, 37.887352 ], [ -122.308517, 37.887318 ], [ -122.307873, 37.887217 ], [ -122.307229, 37.887217 ], [ -122.307229, 37.887081 ], [ -122.308044, 37.887115 ], [ -122.308688, 37.887217 ], [ -122.308645, 37.887352 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3031", "GEOID10": "060014203003031", "NAME10": "Block 3031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9685, "AWATER10": 0, "INTPTLAT10": "+37.8877891", "INTPTLON10": "-122.3061951" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305598, 37.888267 ], [ -122.305341, 37.887488 ], [ -122.305427, 37.887488 ], [ -122.306070, 37.887522 ], [ -122.306929, 37.887454 ], [ -122.307014, 37.887522 ], [ -122.307143, 37.887962 ], [ -122.305598, 37.888267 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1005", "GEOID10": "060014204001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 52400, "AWATER10": 0, "INTPTLAT10": "+37.8837458", "INTPTLON10": "-122.3069617" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307186, 37.887081 ], [ -122.307100, 37.886878 ], [ -122.306199, 37.883288 ], [ -122.305813, 37.882102 ], [ -122.307100, 37.881899 ], [ -122.307315, 37.881933 ], [ -122.307358, 37.881865 ], [ -122.307830, 37.882035 ], [ -122.307358, 37.886743 ], [ -122.307229, 37.887081 ], [ -122.307186, 37.887081 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3021", "GEOID10": "060014203003021", "NAME10": "Block 3021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11997, "AWATER10": 0, "INTPTLAT10": "+37.8902784", "INTPTLON10": "-122.3030396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303109, 37.891620 ], [ -122.302465, 37.889622 ], [ -122.303324, 37.889452 ], [ -122.303581, 37.890367 ], [ -122.303324, 37.890841 ], [ -122.303109, 37.891620 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3019", "GEOID10": "060014203003019", "NAME10": "Block 3019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17581, "AWATER10": 0, "INTPTLAT10": "+37.8895455", "INTPTLON10": "-122.3046051" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303581, 37.890367 ], [ -122.303324, 37.889452 ], [ -122.305856, 37.888978 ], [ -122.306027, 37.889588 ], [ -122.304182, 37.889994 ], [ -122.303753, 37.890197 ], [ -122.303581, 37.890367 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3020", "GEOID10": "060014203003020", "NAME10": "Block 3020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 409, "AWATER10": 0, "INTPTLAT10": "+37.8891773", "INTPTLON10": "-122.3045386" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304139, 37.889283 ], [ -122.304139, 37.889249 ], [ -122.304955, 37.889080 ], [ -122.304997, 37.889147 ], [ -122.304139, 37.889283 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3027", "GEOID10": "060014203003027", "NAME10": "Block 3027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13106, "AWATER10": 0, "INTPTLAT10": "+37.8882387", "INTPTLON10": "-122.3051246" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304955, 37.889080 ], [ -122.304482, 37.887522 ], [ -122.305341, 37.887488 ], [ -122.305813, 37.888910 ], [ -122.304955, 37.889080 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3026", "GEOID10": "060014203003026", "NAME10": "Block 3026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14219, "AWATER10": 0, "INTPTLAT10": "+37.8883405", "INTPTLON10": "-122.3042616" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304139, 37.889249 ], [ -122.303581, 37.887556 ], [ -122.304482, 37.887522 ], [ -122.304955, 37.889080 ], [ -122.304139, 37.889249 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3025", "GEOID10": "060014203003025", "NAME10": "Block 3025", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 406, "AWATER10": 0, "INTPTLAT10": "+37.8893398", "INTPTLON10": "-122.3036979" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303324, 37.889452 ], [ -122.303281, 37.889418 ], [ -122.304139, 37.889249 ], [ -122.304139, 37.889283 ], [ -122.303324, 37.889452 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3022", "GEOID10": "060014203003022", "NAME10": "Block 3022", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 411, "AWATER10": 0, "INTPTLAT10": "+37.8895077", "INTPTLON10": "-122.3028537" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302465, 37.889622 ], [ -122.302465, 37.889588 ], [ -122.303281, 37.889418 ], [ -122.303324, 37.889452 ], [ -122.302465, 37.889622 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3024", "GEOID10": "060014203003024", "NAME10": "Block 3024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15240, "AWATER10": 0, "INTPTLAT10": "+37.8884411", "INTPTLON10": "-122.3034025" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303281, 37.889418 ], [ -122.302723, 37.887589 ], [ -122.303581, 37.887556 ], [ -122.304139, 37.889249 ], [ -122.303281, 37.889418 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "GEOID10": "060014203001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.8906969", "INTPTLON10": "-122.3023492" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302251, 37.891789 ], [ -122.301650, 37.889791 ], [ -122.302465, 37.889622 ], [ -122.303109, 37.891620 ], [ -122.302251, 37.891789 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1006", "GEOID10": "060014203001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17308, "AWATER10": 0, "INTPTLAT10": "+37.8908584", "INTPTLON10": "-122.3015099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301435, 37.891958 ], [ -122.300792, 37.889960 ], [ -122.301650, 37.889791 ], [ -122.302251, 37.891789 ], [ -122.301435, 37.891958 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1004", "GEOID10": "060014203001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17893, "AWATER10": 0, "INTPTLAT10": "+37.8912006", "INTPTLON10": "-122.2998090" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299719, 37.892297 ], [ -122.299547, 37.891823 ], [ -122.299075, 37.890265 ], [ -122.299933, 37.890130 ], [ -122.300577, 37.892128 ], [ -122.299719, 37.892297 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "GEOID10": "060014203001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.8910287", "INTPTLON10": "-122.3006658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300577, 37.892128 ], [ -122.299933, 37.890130 ], [ -122.300792, 37.889960 ], [ -122.301435, 37.891958 ], [ -122.300577, 37.892128 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3023", "GEOID10": "060014203003023", "NAME10": "Block 3023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16332, "AWATER10": 0, "INTPTLAT10": "+37.8885408", "INTPTLON10": "-122.3025479" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302465, 37.889588 ], [ -122.301822, 37.887623 ], [ -122.302723, 37.887589 ], [ -122.303281, 37.889418 ], [ -122.302465, 37.889588 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1010", "GEOID10": "060014203001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20386, "AWATER10": 0, "INTPTLAT10": "+37.8886345", "INTPTLON10": "-122.3016225" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301650, 37.889791 ], [ -122.300706, 37.887759 ], [ -122.301822, 37.887623 ], [ -122.302465, 37.889588 ], [ -122.302465, 37.889622 ], [ -122.301650, 37.889791 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1012", "GEOID10": "060014203001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 372, "AWATER10": 0, "INTPTLAT10": "+37.8900118", "INTPTLON10": "-122.3003351" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299933, 37.890130 ], [ -122.299933, 37.890096 ], [ -122.300792, 37.889926 ], [ -122.300792, 37.889960 ], [ -122.299933, 37.890130 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1011", "GEOID10": "060014203001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16453, "AWATER10": 0, "INTPTLAT10": "+37.8888638", "INTPTLON10": "-122.3008054" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300792, 37.889960 ], [ -122.300062, 37.887725 ], [ -122.300706, 37.887759 ], [ -122.301650, 37.889791 ], [ -122.300792, 37.889960 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1015", "GEOID10": "060014203001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19773, "AWATER10": 0, "INTPTLAT10": "+37.8888596", "INTPTLON10": "-122.2999642" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299933, 37.890096 ], [ -122.299204, 37.887759 ], [ -122.300062, 37.887725 ], [ -122.300792, 37.889926 ], [ -122.299933, 37.890096 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1002", "GEOID10": "060014204001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5453, "AWATER10": 0, "INTPTLAT10": "+37.8874129", "INTPTLON10": "-122.3045679" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302122, 37.887623 ], [ -122.302079, 37.887522 ], [ -122.305856, 37.887318 ], [ -122.307229, 37.887081 ], [ -122.307229, 37.887217 ], [ -122.305427, 37.887488 ], [ -122.302208, 37.887623 ], [ -122.302122, 37.887623 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1001", "GEOID10": "060014204001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 98716, "AWATER10": 0, "INTPTLAT10": "+37.8865962", "INTPTLON10": "-122.3039801" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300706, 37.887759 ], [ -122.300963, 37.887657 ], [ -122.300534, 37.886336 ], [ -122.302337, 37.886031 ], [ -122.304611, 37.885862 ], [ -122.304482, 37.885354 ], [ -122.306800, 37.885591 ], [ -122.307186, 37.887081 ], [ -122.305856, 37.887318 ], [ -122.302079, 37.887522 ], [ -122.302122, 37.887623 ], [ -122.300706, 37.887759 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "GEOID10": "060014204001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.8847438", "INTPTLON10": "-122.3040957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304225, 37.885896 ], [ -122.303925, 37.884744 ], [ -122.303624, 37.883660 ], [ -122.303967, 37.883593 ], [ -122.304611, 37.885862 ], [ -122.304225, 37.885896 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "GEOID10": "060014204001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.8837071", "INTPTLON10": "-122.3049494" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306800, 37.885591 ], [ -122.304482, 37.885354 ], [ -122.303967, 37.883593 ], [ -122.303452, 37.883694 ], [ -122.303452, 37.882881 ], [ -122.302637, 37.883085 ], [ -122.302380, 37.882509 ], [ -122.302766, 37.882475 ], [ -122.303324, 37.882306 ], [ -122.305255, 37.882238 ], [ -122.305813, 37.882102 ], [ -122.306800, 37.885591 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1017", "GEOID10": "060014204001017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6144, "AWATER10": 0, "INTPTLAT10": "+37.8847470", "INTPTLON10": "-122.3037488" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303967, 37.885896 ], [ -122.303324, 37.883728 ], [ -122.303624, 37.883660 ], [ -122.304225, 37.885896 ], [ -122.303967, 37.885896 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1013", "GEOID10": "060014204001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9671, "AWATER10": 0, "INTPTLAT10": "+37.8848967", "INTPTLON10": "-122.3034182" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303452, 37.885964 ], [ -122.302980, 37.883796 ], [ -122.303324, 37.883728 ], [ -122.303967, 37.885896 ], [ -122.303452, 37.885964 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "GEOID10": "060014204001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.8846770", "INTPTLON10": "-122.3015769" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300534, 37.886336 ], [ -122.299933, 37.884440 ], [ -122.299933, 37.884067 ], [ -122.299805, 37.884101 ], [ -122.300019, 37.883389 ], [ -122.300234, 37.883220 ], [ -122.301006, 37.883423 ], [ -122.301006, 37.883356 ], [ -122.302079, 37.883119 ], [ -122.302637, 37.883085 ], [ -122.302980, 37.883796 ], [ -122.303452, 37.885964 ], [ -122.301822, 37.886099 ], [ -122.300534, 37.886336 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1004", "GEOID10": "060014204001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5050, "AWATER10": 0, "INTPTLAT10": "+37.8833234", "INTPTLON10": "-122.3030968" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302980, 37.883796 ], [ -122.302637, 37.883085 ], [ -122.303452, 37.882881 ], [ -122.303452, 37.883694 ], [ -122.302980, 37.883796 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "GEOID10": "060014204001020", "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.8829654", "INTPTLON10": "-122.3013966" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301006, 37.883423 ], [ -122.300363, 37.883254 ], [ -122.300277, 37.883119 ], [ -122.300234, 37.882881 ], [ -122.301092, 37.882780 ], [ -122.302337, 37.882509 ], [ -122.302637, 37.883085 ], [ -122.302079, 37.883119 ], [ -122.301006, 37.883356 ], [ -122.301006, 37.883423 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "GEOID10": "060014202001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.8977494", "INTPTLON10": "-122.2990695" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298861, 37.898495 ], [ -122.298474, 37.897208 ], [ -122.299290, 37.897072 ], [ -122.299719, 37.898291 ], [ -122.299418, 37.898325 ], [ -122.298861, 37.898495 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1002", "GEOID10": "060014202001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11372, "AWATER10": 0, "INTPTLAT10": "+37.8979512", "INTPTLON10": "-122.2982332" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298045, 37.898766 ], [ -122.297616, 37.897411 ], [ -122.298474, 37.897208 ], [ -122.298861, 37.898495 ], [ -122.298045, 37.898766 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1001", "GEOID10": "060014202001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11928, "AWATER10": 0, "INTPTLAT10": "+37.8981515", "INTPTLON10": "-122.2974109" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297230, 37.898901 ], [ -122.296801, 37.897546 ], [ -122.297616, 37.897411 ], [ -122.298045, 37.898766 ], [ -122.297788, 37.898833 ], [ -122.297230, 37.898901 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1000", "GEOID10": "060014202001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13452, "AWATER10": 0, "INTPTLAT10": "+37.8982712", "INTPTLON10": "-122.2964744" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296243, 37.898935 ], [ -122.295728, 37.897783 ], [ -122.296801, 37.897546 ], [ -122.297230, 37.898901 ], [ -122.296243, 37.898935 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "GEOID10": "060014202001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.8966536", "INTPTLON10": "-122.2969317" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296801, 37.897546 ], [ -122.296286, 37.895955 ], [ -122.297101, 37.895785 ], [ -122.297616, 37.897411 ], [ -122.296801, 37.897546 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1013", "GEOID10": "060014202001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14541, "AWATER10": 0, "INTPTLAT10": "+37.8968185", "INTPTLON10": "-122.2960835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295942, 37.897750 ], [ -122.295427, 37.896090 ], [ -122.296286, 37.895955 ], [ -122.296801, 37.897546 ], [ -122.295942, 37.897750 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1006", "GEOID10": "060014201001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14453, "AWATER10": 0, "INTPTLAT10": "+37.8983329", "INTPTLON10": "-122.2952807" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296243, 37.898935 ], [ -122.294569, 37.898766 ], [ -122.294612, 37.897750 ], [ -122.295728, 37.897783 ], [ -122.296243, 37.898935 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "GEOID10": "060014202001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.8961439", "INTPTLON10": "-122.2994424" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897072 ], [ -122.298775, 37.895447 ], [ -122.299633, 37.895277 ], [ -122.300148, 37.896869 ], [ -122.299290, 37.897072 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "GEOID10": "060014202001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.8963113", "INTPTLON10": "-122.2986013" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298474, 37.897208 ], [ -122.297959, 37.895616 ], [ -122.298775, 37.895447 ], [ -122.299290, 37.897072 ], [ -122.298474, 37.897208 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "GEOID10": "060014202003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.8945232", "INTPTLON10": "-122.2989229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.298260, 37.893821 ], [ -122.299075, 37.893652 ], [ -122.299633, 37.895277 ], [ -122.298775, 37.895447 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "GEOID10": "060014202001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.8964819", "INTPTLON10": "-122.2977622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297616, 37.897411 ], [ -122.297101, 37.895785 ], [ -122.297959, 37.895616 ], [ -122.298474, 37.897208 ], [ -122.297616, 37.897411 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "GEOID10": "060014202003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.8946922", "INTPTLON10": "-122.2980853" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297959, 37.895616 ], [ -122.297444, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.297959, 37.895616 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "GEOID10": "060014202002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.8948540", "INTPTLON10": "-122.2972427" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297101, 37.895785 ], [ -122.296586, 37.894126 ], [ -122.297444, 37.893957 ], [ -122.297959, 37.895616 ], [ -122.297101, 37.895785 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "GEOID10": "060014202003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.8943454", "INTPTLON10": "-122.2997703" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.895277 ], [ -122.299075, 37.893652 ], [ -122.299976, 37.893482 ], [ -122.300491, 37.895074 ], [ -122.299633, 37.895277 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "GEOID10": "060014202003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.8927197", "INTPTLON10": "-122.2992493" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299075, 37.893652 ], [ -122.298560, 37.891992 ], [ -122.299418, 37.891823 ], [ -122.299590, 37.892331 ], [ -122.299976, 37.893482 ], [ -122.299075, 37.893652 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3006", "GEOID10": "060014202003006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14044, "AWATER10": 0, "INTPTLAT10": "+37.8928963", "INTPTLON10": "-122.2984024" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298260, 37.893821 ], [ -122.297745, 37.892196 ], [ -122.298560, 37.891992 ], [ -122.299075, 37.893652 ], [ -122.298260, 37.893821 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "GEOID10": "060014202003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.8930639", "INTPTLON10": "-122.2975700" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297444, 37.893957 ], [ -122.296929, 37.892365 ], [ -122.297745, 37.892196 ], [ -122.298260, 37.893821 ], [ -122.297444, 37.893957 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "GEOID10": "060014202002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.8950194", "INTPTLON10": "-122.2964053" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296286, 37.895955 ], [ -122.295771, 37.894295 ], [ -122.296586, 37.894126 ], [ -122.297101, 37.895785 ], [ -122.296286, 37.895955 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2000", "GEOID10": "060014202002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7737, "AWATER10": 0, "INTPTLAT10": "+37.8960946", "INTPTLON10": "-122.2952742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295771, 37.897783 ], [ -122.294655, 37.894532 ], [ -122.294912, 37.894498 ], [ -122.295942, 37.897750 ], [ -122.295771, 37.897783 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1007", "GEOID10": "060014201001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17265, "AWATER10": 0, "INTPTLAT10": "+37.8966238", "INTPTLON10": "-122.2949725" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295728, 37.897783 ], [ -122.294612, 37.897750 ], [ -122.294741, 37.895379 ], [ -122.294397, 37.894566 ], [ -122.294655, 37.894532 ], [ -122.295728, 37.897783 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2003", "GEOID10": "060014202002003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14449, "AWATER10": 0, "INTPTLAT10": "+37.8951947", "INTPTLON10": "-122.2955660" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295427, 37.896090 ], [ -122.294912, 37.894498 ], [ -122.295771, 37.894295 ], [ -122.296286, 37.895955 ], [ -122.295427, 37.896090 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2007", "GEOID10": "060014202002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14053, "AWATER10": 0, "INTPTLAT10": "+37.8933931", "INTPTLON10": "-122.2958883" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295771, 37.894295 ], [ -122.295256, 37.892704 ], [ -122.296071, 37.892534 ], [ -122.296586, 37.894126 ], [ -122.295771, 37.894295 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2006", "GEOID10": "060014202002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14158, "AWATER10": 0, "INTPTLAT10": "+37.8932322", "INTPTLON10": "-122.2967302" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296586, 37.894126 ], [ -122.296071, 37.892534 ], [ -122.296929, 37.892365 ], [ -122.297444, 37.893957 ], [ -122.296586, 37.894126 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2002", "GEOID10": "060014202002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14523, "AWATER10": 0, "INTPTLAT10": "+37.8935661", "INTPTLON10": "-122.2950398" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294912, 37.894498 ], [ -122.294354, 37.892873 ], [ -122.295256, 37.892704 ], [ -122.295771, 37.894295 ], [ -122.294912, 37.894498 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2001", "GEOID10": "060014202002001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3995, "AWATER10": 0, "INTPTLAT10": "+37.8936801", "INTPTLON10": "-122.2944928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.894532 ], [ -122.294140, 37.892873 ], [ -122.294354, 37.892873 ], [ -122.294912, 37.894498 ], [ -122.294655, 37.894532 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1005", "GEOID10": "060014201001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8083, "AWATER10": 0, "INTPTLAT10": "+37.8982104", "INTPTLON10": "-122.2941387" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294569, 37.898766 ], [ -122.293711, 37.898664 ], [ -122.293754, 37.897716 ], [ -122.294612, 37.897750 ], [ -122.294569, 37.898766 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1004", "GEOID10": "060014201001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6640, "AWATER10": 0, "INTPTLAT10": "+37.8980962", "INTPTLON10": "-122.2932964" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293711, 37.898664 ], [ -122.293196, 37.898427 ], [ -122.292852, 37.898393 ], [ -122.292852, 37.897716 ], [ -122.293754, 37.897716 ], [ -122.293668, 37.898528 ], [ -122.293711, 37.898664 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1003", "GEOID10": "060014201001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1246, "AWATER10": 0, "INTPTLAT10": "+37.8980064", "INTPTLON10": "-122.2927412" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292852, 37.898393 ], [ -122.292681, 37.898359 ], [ -122.292638, 37.897716 ], [ -122.292852, 37.897716 ], [ -122.292852, 37.898393 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1010", "GEOID10": "060014201001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2269, "AWATER10": 0, "INTPTLAT10": "+37.8971964", "INTPTLON10": "-122.2927567" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292638, 37.897716 ], [ -122.292681, 37.896734 ], [ -122.292938, 37.896734 ], [ -122.292852, 37.897716 ], [ -122.292638, 37.897716 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1002", "GEOID10": "060014201001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14980, "AWATER10": 0, "INTPTLAT10": "+37.8974821", "INTPTLON10": "-122.2921539" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292681, 37.898359 ], [ -122.291994, 37.898258 ], [ -122.291608, 37.898122 ], [ -122.291737, 37.896700 ], [ -122.292681, 37.896734 ], [ -122.292638, 37.897716 ], [ -122.292681, 37.898359 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1001", "GEOID10": "060014201001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11297, "AWATER10": 0, "INTPTLAT10": "+37.8973215", "INTPTLON10": "-122.2912175" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291608, 37.898122 ], [ -122.291093, 37.897953 ], [ -122.290750, 37.897919 ], [ -122.290835, 37.896666 ], [ -122.291737, 37.896700 ], [ -122.291608, 37.898122 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1000", "GEOID10": "060014201001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10019, "AWATER10": 0, "INTPTLAT10": "+37.8972478", "INTPTLON10": "-122.2903402" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290750, 37.897919 ], [ -122.289891, 37.897851 ], [ -122.289977, 37.896666 ], [ -122.290835, 37.896666 ], [ -122.290750, 37.897919 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2005", "GEOID10": "060014201002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10320, "AWATER10": 0, "INTPTLAT10": "+37.8972288", "INTPTLON10": "-122.2894724" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289033, 37.897885 ], [ -122.289119, 37.896632 ], [ -122.289977, 37.896666 ], [ -122.289891, 37.897851 ], [ -122.289033, 37.897885 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1008", "GEOID10": "060014201001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25122, "AWATER10": 0, "INTPTLAT10": "+37.8962273", "INTPTLON10": "-122.2942136" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294612, 37.897750 ], [ -122.293754, 37.897716 ], [ -122.293882, 37.894702 ], [ -122.294397, 37.894566 ], [ -122.294741, 37.895379 ], [ -122.294612, 37.897750 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1009", "GEOID10": "060014201001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24911, "AWATER10": 0, "INTPTLAT10": "+37.8962389", "INTPTLON10": "-122.2933649" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292852, 37.897716 ], [ -122.293024, 37.894871 ], [ -122.293882, 37.894702 ], [ -122.293839, 37.895311 ], [ -122.293754, 37.897716 ], [ -122.292852, 37.897716 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1011", "GEOID10": "060014201001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4495, "AWATER10": 0, "INTPTLAT10": "+37.8957842", "INTPTLON10": "-122.2928245" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292681, 37.896734 ], [ -122.292767, 37.894871 ], [ -122.293024, 37.894871 ], [ -122.292938, 37.896734 ], [ -122.292681, 37.896734 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1016", "GEOID10": "060014201001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8255, "AWATER10": 0, "INTPTLAT10": "+37.8939086", "INTPTLON10": "-122.2941575" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293882, 37.894702 ], [ -122.293968, 37.892873 ], [ -122.294140, 37.892873 ], [ -122.294655, 37.894532 ], [ -122.293882, 37.894702 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1015", "GEOID10": "060014201001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16238, "AWATER10": 0, "INTPTLAT10": "+37.8938032", "INTPTLON10": "-122.2934559" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293024, 37.894871 ], [ -122.293110, 37.892839 ], [ -122.293968, 37.892873 ], [ -122.293882, 37.894702 ], [ -122.293024, 37.894871 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1014", "GEOID10": "060014201001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5007, "AWATER10": 0, "INTPTLAT10": "+37.8938437", "INTPTLON10": "-122.2929060" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292767, 37.894871 ], [ -122.292852, 37.892839 ], [ -122.293110, 37.892839 ], [ -122.293024, 37.894871 ], [ -122.292767, 37.894871 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1013", "GEOID10": "060014201001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18897, "AWATER10": 0, "INTPTLAT10": "+37.8938347", "INTPTLON10": "-122.2923093" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291822, 37.894871 ], [ -122.291908, 37.892839 ], [ -122.292852, 37.892839 ], [ -122.292767, 37.894871 ], [ -122.291822, 37.894871 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1012", "GEOID10": "060014201001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 48606, "AWATER10": 0, "INTPTLAT10": "+37.8957510", "INTPTLON10": "-122.2913507" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292681, 37.896734 ], [ -122.289977, 37.896666 ], [ -122.290020, 37.895853 ], [ -122.290063, 37.894803 ], [ -122.292767, 37.894871 ], [ -122.292681, 37.896734 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2006", "GEOID10": "060014201002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15730, "AWATER10": 0, "INTPTLAT10": "+37.8956964", "INTPTLON10": "-122.2895702" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289977, 37.896666 ], [ -122.289119, 37.896632 ], [ -122.289205, 37.894769 ], [ -122.290063, 37.894803 ], [ -122.289977, 37.896666 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3001", "GEOID10": "060014201003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16246, "AWATER10": 0, "INTPTLAT10": "+37.8938831", "INTPTLON10": "-122.2913917" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291822, 37.894871 ], [ -122.290921, 37.894837 ], [ -122.291007, 37.892941 ], [ -122.291908, 37.892974 ], [ -122.291822, 37.894871 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3000", "GEOID10": "060014201003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15665, "AWATER10": 0, "INTPTLAT10": "+37.8938607", "INTPTLON10": "-122.2905229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290921, 37.894837 ], [ -122.290063, 37.894803 ], [ -122.290149, 37.892907 ], [ -122.291007, 37.892941 ], [ -122.290921, 37.894837 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2015", "GEOID10": "060014201002015", "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15921, "AWATER10": 0, "INTPTLAT10": "+37.8938332", "INTPTLON10": "-122.2896635" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290063, 37.894803 ], [ -122.289205, 37.894769 ], [ -122.289290, 37.892907 ], [ -122.290149, 37.892907 ], [ -122.290063, 37.894803 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2004", "GEOID10": "060014201002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11206, "AWATER10": 0, "INTPTLAT10": "+37.8972632", "INTPTLON10": "-122.2886022" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288175, 37.898122 ], [ -122.288218, 37.896598 ], [ -122.289119, 37.896632 ], [ -122.289033, 37.897885 ], [ -122.288518, 37.897953 ], [ -122.288175, 37.898122 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2003", "GEOID10": "060014201002003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1027, "AWATER10": 0, "INTPTLAT10": "+37.8973454", "INTPTLON10": "-122.2881508" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288132, 37.898156 ], [ -122.288175, 37.896598 ], [ -122.288218, 37.896598 ], [ -122.288175, 37.897817 ], [ -122.288175, 37.898122 ], [ -122.288132, 37.898156 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2002", "GEOID10": "060014201002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16183, "AWATER10": 0, "INTPTLAT10": "+37.8975006", "INTPTLON10": "-122.2876349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287145, 37.898664 ], [ -122.287273, 37.896564 ], [ -122.288175, 37.896598 ], [ -122.288132, 37.898156 ], [ -122.287145, 37.898664 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2000", "GEOID10": "060014201002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 948, "AWATER10": 0, "INTPTLAT10": "+37.8984122", "INTPTLON10": "-122.2870554" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286973, 37.898732 ], [ -122.287016, 37.898156 ], [ -122.287145, 37.898156 ], [ -122.287145, 37.898664 ], [ -122.286973, 37.898732 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2001", "GEOID10": "060014201002001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2708, "AWATER10": 0, "INTPTLAT10": "+37.8973380", "INTPTLON10": "-122.2871259" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287016, 37.898156 ], [ -122.287102, 37.896564 ], [ -122.287273, 37.896564 ], [ -122.287188, 37.898156 ], [ -122.287016, 37.898156 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2007", "GEOID10": "060014201002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15930, "AWATER10": 0, "INTPTLAT10": "+37.8956694", "INTPTLON10": "-122.2886965" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289119, 37.896632 ], [ -122.288218, 37.896598 ], [ -122.288303, 37.894736 ], [ -122.289205, 37.894769 ], [ -122.289119, 37.896632 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2008", "GEOID10": "060014201002008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1214, "AWATER10": 0, "INTPTLAT10": "+37.8956738", "INTPTLON10": "-122.2882217" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288175, 37.896598 ], [ -122.288260, 37.894736 ], [ -122.288303, 37.894736 ], [ -122.288303, 37.895108 ], [ -122.288218, 37.896598 ], [ -122.288175, 37.896598 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2009", "GEOID10": "060014201002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15974, "AWATER10": 0, "INTPTLAT10": "+37.8956464", "INTPTLON10": "-122.2877473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288175, 37.896598 ], [ -122.287273, 37.896564 ], [ -122.287359, 37.894736 ], [ -122.288260, 37.894736 ], [ -122.288175, 37.896598 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2010", "GEOID10": "060014201002010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3628, "AWATER10": 0, "INTPTLAT10": "+37.8956076", "INTPTLON10": "-122.2872058" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.896564 ], [ -122.287145, 37.894736 ], [ -122.287359, 37.894736 ], [ -122.287273, 37.896564 ], [ -122.287102, 37.896564 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2014", "GEOID10": "060014201002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16117, "AWATER10": 0, "INTPTLAT10": "+37.8938093", "INTPTLON10": "-122.2887874" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289205, 37.894769 ], [ -122.288303, 37.894736 ], [ -122.288432, 37.892873 ], [ -122.289290, 37.892907 ], [ -122.289205, 37.894769 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2013", "GEOID10": "060014201002013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1269, "AWATER10": 0, "INTPTLAT10": "+37.8937720", "INTPTLON10": "-122.2883131" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288260, 37.894736 ], [ -122.288346, 37.892873 ], [ -122.288432, 37.892873 ], [ -122.288303, 37.894736 ], [ -122.288260, 37.894736 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2012", "GEOID10": "060014201002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16253, "AWATER10": 0, "INTPTLAT10": "+37.8937801", "INTPTLON10": "-122.2878360" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287359, 37.894736 ], [ -122.287445, 37.892839 ], [ -122.288346, 37.892873 ], [ -122.288260, 37.894736 ], [ -122.287359, 37.894736 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2011", "GEOID10": "060014201002011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4556, "AWATER10": 0, "INTPTLAT10": "+37.8937317", "INTPTLON10": "-122.2872753" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287145, 37.894736 ], [ -122.287188, 37.892839 ], [ -122.287445, 37.892839 ], [ -122.287359, 37.894736 ], [ -122.287145, 37.894736 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3012", "GEOID10": "060014202003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 636, "AWATER10": 0, "INTPTLAT10": "+37.8920512", "INTPTLON10": "-122.2995612" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299590, 37.892331 ], [ -122.299418, 37.891823 ], [ -122.299547, 37.891823 ], [ -122.299719, 37.892297 ], [ -122.299590, 37.892331 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3010", "GEOID10": "060014202003010", "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14291, "AWATER10": 0, "INTPTLAT10": "+37.8911018", "INTPTLON10": "-122.2987261" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298560, 37.891992 ], [ -122.298045, 37.890333 ], [ -122.298946, 37.890299 ], [ -122.299418, 37.891823 ], [ -122.298560, 37.891992 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3011", "GEOID10": "060014202003011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1922, "AWATER10": 0, "INTPTLAT10": "+37.8910433", "INTPTLON10": "-122.2992359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299418, 37.891823 ], [ -122.298946, 37.890299 ], [ -122.299075, 37.890265 ], [ -122.299461, 37.891518 ], [ -122.299547, 37.891823 ], [ -122.299418, 37.891823 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1013", "GEOID10": "060014203001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 568, "AWATER10": 0, "INTPTLAT10": "+37.8901726", "INTPTLON10": "-122.2994482" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299075, 37.890265 ], [ -122.299032, 37.890197 ], [ -122.299290, 37.890197 ], [ -122.299933, 37.890096 ], [ -122.299933, 37.890130 ], [ -122.299333, 37.890265 ], [ -122.299075, 37.890265 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1005", "GEOID10": "060014205001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 627, "AWATER10": 0, "INTPTLAT10": "+37.8902672", "INTPTLON10": "-122.2984664" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298045, 37.890333 ], [ -122.298045, 37.890265 ], [ -122.298946, 37.890231 ], [ -122.298946, 37.890299 ], [ -122.298517, 37.890333 ], [ -122.298045, 37.890333 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3009", "GEOID10": "060014202003009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15100, "AWATER10": 0, "INTPTLAT10": "+37.8912058", "INTPTLON10": "-122.2978563" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.892196 ], [ -122.297144, 37.890367 ], [ -122.298045, 37.890333 ], [ -122.298174, 37.890671 ], [ -122.298560, 37.891992 ], [ -122.297745, 37.892196 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1004", "GEOID10": "060014205001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 521, "AWATER10": 0, "INTPTLAT10": "+37.8903091", "INTPTLON10": "-122.2975987" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297144, 37.890367 ], [ -122.297144, 37.890333 ], [ -122.298045, 37.890265 ], [ -122.298045, 37.890333 ], [ -122.297144, 37.890367 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1014", "GEOID10": "060014203001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21543, "AWATER10": 0, "INTPTLAT10": "+37.8889340", "INTPTLON10": "-122.2990835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299032, 37.890197 ], [ -122.298260, 37.887759 ], [ -122.299204, 37.887759 ], [ -122.299933, 37.890096 ], [ -122.299032, 37.890197 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1008", "GEOID10": "060014205001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3061, "AWATER10": 0, "INTPTLAT10": "+37.8890168", "INTPTLON10": "-122.2985896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298946, 37.890299 ], [ -122.298131, 37.887793 ], [ -122.298260, 37.887759 ], [ -122.299075, 37.890265 ], [ -122.298946, 37.890299 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1007", "GEOID10": "060014205001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 32096, "AWATER10": 0, "INTPTLAT10": "+37.8884580", "INTPTLON10": "-122.2979153" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298045, 37.890265 ], [ -122.297831, 37.889622 ], [ -122.296929, 37.886878 ], [ -122.297788, 37.886743 ], [ -122.297788, 37.886675 ], [ -122.297916, 37.886709 ], [ -122.298260, 37.887759 ], [ -122.298131, 37.887793 ], [ -122.298946, 37.890231 ], [ -122.298045, 37.890265 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3008", "GEOID10": "060014202003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16353, "AWATER10": 0, "INTPTLAT10": "+37.8913200", "INTPTLON10": "-122.2970017" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296929, 37.892365 ], [ -122.296286, 37.890434 ], [ -122.297144, 37.890367 ], [ -122.297273, 37.890739 ], [ -122.297745, 37.892196 ], [ -122.296929, 37.892365 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2012", "GEOID10": "060014202002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17230, "AWATER10": 0, "INTPTLAT10": "+37.8914257", "INTPTLON10": "-122.2961445" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296071, 37.892534 ], [ -122.295427, 37.890468 ], [ -122.296286, 37.890434 ], [ -122.296929, 37.892365 ], [ -122.296071, 37.892534 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1003", "GEOID10": "060014205001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 422, "AWATER10": 0, "INTPTLAT10": "+37.8903581", "INTPTLON10": "-122.2966969" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296286, 37.890434 ], [ -122.296286, 37.890367 ], [ -122.297144, 37.890333 ], [ -122.297144, 37.890367 ], [ -122.296972, 37.890401 ], [ -122.296286, 37.890434 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1002", "GEOID10": "060014205001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 411, "AWATER10": 0, "INTPTLAT10": "+37.8904111", "INTPTLON10": "-122.2958187" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295599, 37.890468 ], [ -122.295384, 37.890434 ], [ -122.296286, 37.890367 ], [ -122.296286, 37.890434 ], [ -122.295599, 37.890468 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2008", "GEOID10": "060014202002008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18377, "AWATER10": 0, "INTPTLAT10": "+37.8915386", "INTPTLON10": "-122.2952863" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295256, 37.892704 ], [ -122.294526, 37.890536 ], [ -122.295427, 37.890468 ], [ -122.296071, 37.892534 ], [ -122.295256, 37.892704 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2009", "GEOID10": "060014202002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19818, "AWATER10": 0, "INTPTLAT10": "+37.8916581", "INTPTLON10": "-122.2944181" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294354, 37.892873 ], [ -122.293625, 37.890570 ], [ -122.294526, 37.890536 ], [ -122.295256, 37.892704 ], [ -122.294354, 37.892873 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1001", "GEOID10": "060014205001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 419, "AWATER10": 0, "INTPTLAT10": "+37.8904693", "INTPTLON10": "-122.2949399" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294698, 37.890536 ], [ -122.294526, 37.890502 ], [ -122.295384, 37.890434 ], [ -122.295427, 37.890468 ], [ -122.294698, 37.890536 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1015", "GEOID10": "060014205001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29154, "AWATER10": 0, "INTPTLAT10": "+37.8886165", "INTPTLON10": "-122.2970361" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297144, 37.890333 ], [ -122.296114, 37.887081 ], [ -122.296929, 37.886878 ], [ -122.298045, 37.890265 ], [ -122.297144, 37.890333 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1014", "GEOID10": "060014205001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28068, "AWATER10": 0, "INTPTLAT10": "+37.8887349", "INTPTLON10": "-122.2961756" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296286, 37.890367 ], [ -122.295256, 37.887251 ], [ -122.296114, 37.887081 ], [ -122.297144, 37.890333 ], [ -122.296286, 37.890367 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1010", "GEOID10": "060014205001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26672, "AWATER10": 0, "INTPTLAT10": "+37.8888488", "INTPTLON10": "-122.2953196" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295384, 37.890434 ], [ -122.294440, 37.887386 ], [ -122.295256, 37.887251 ], [ -122.296286, 37.890367 ], [ -122.295384, 37.890434 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1011", "GEOID10": "060014205001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26518, "AWATER10": 0, "INTPTLAT10": "+37.8889300", "INTPTLON10": "-122.2944569" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294526, 37.890502 ], [ -122.293582, 37.887522 ], [ -122.294397, 37.887318 ], [ -122.294440, 37.887386 ], [ -122.295384, 37.890434 ], [ -122.294526, 37.890502 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1000", "GEOID10": "060014204001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11282, "AWATER10": 0, "INTPTLAT10": "+37.8873799", "INTPTLON10": "-122.2988707" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298260, 37.887759 ], [ -122.297916, 37.886709 ], [ -122.298431, 37.886844 ], [ -122.299590, 37.887488 ], [ -122.300191, 37.887623 ], [ -122.300963, 37.887657 ], [ -122.300706, 37.887759 ], [ -122.298260, 37.887759 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1015", "GEOID10": "060014204001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 79019, "AWATER10": 0, "INTPTLAT10": "+37.8858279", "INTPTLON10": "-122.2991231" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300963, 37.887657 ], [ -122.300191, 37.887623 ], [ -122.299590, 37.887488 ], [ -122.298431, 37.886844 ], [ -122.297916, 37.886709 ], [ -122.297273, 37.884609 ], [ -122.298303, 37.884406 ], [ -122.299933, 37.884067 ], [ -122.299933, 37.884440 ], [ -122.300148, 37.885117 ], [ -122.300963, 37.887657 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1017", "GEOID10": "060014205001017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 621, "AWATER10": 0, "INTPTLAT10": "+37.8867580", "INTPTLON10": "-122.2973472" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296929, 37.886878 ], [ -122.296929, 37.886844 ], [ -122.297616, 37.886675 ], [ -122.297788, 37.886675 ], [ -122.297788, 37.886743 ], [ -122.296929, 37.886878 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1018", "GEOID10": "060014204001018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22069, "AWATER10": 0, "INTPTLAT10": "+37.8835790", "INTPTLON10": "-122.2990681" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298303, 37.884406 ], [ -122.298002, 37.883254 ], [ -122.298989, 37.883017 ], [ -122.300234, 37.882881 ], [ -122.300320, 37.883220 ], [ -122.300019, 37.883389 ], [ -122.299805, 37.884101 ], [ -122.298303, 37.884406 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2007", "GEOID10": "060014205002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2761, "AWATER10": 0, "INTPTLAT10": "+37.8856449", "INTPTLON10": "-122.2975097" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.886709 ], [ -122.297788, 37.886675 ], [ -122.297144, 37.884643 ], [ -122.297273, 37.884609 ], [ -122.297916, 37.886709 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1019", "GEOID10": "060014204001019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11921, "AWATER10": 0, "INTPTLAT10": "+37.8839314", "INTPTLON10": "-122.2976037" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297273, 37.884609 ], [ -122.296929, 37.883525 ], [ -122.297788, 37.883356 ], [ -122.298002, 37.883254 ], [ -122.298303, 37.884406 ], [ -122.297273, 37.884609 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1016", "GEOID10": "060014205001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 614, "AWATER10": 0, "INTPTLAT10": "+37.8869296", "INTPTLON10": "-122.2964871" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296114, 37.887081 ], [ -122.296071, 37.886980 ], [ -122.296929, 37.886844 ], [ -122.296929, 37.886878 ], [ -122.296114, 37.887081 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1013", "GEOID10": "060014205001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 616, "AWATER10": 0, "INTPTLAT10": "+37.8870993", "INTPTLON10": "-122.2956428" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295256, 37.887251 ], [ -122.295213, 37.887183 ], [ -122.296071, 37.886980 ], [ -122.296114, 37.887081 ], [ -122.295256, 37.887251 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1012", "GEOID10": "060014205001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 615, "AWATER10": 0, "INTPTLAT10": "+37.8872675", "INTPTLON10": "-122.2948079" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294440, 37.887386 ], [ -122.294397, 37.887318 ], [ -122.295213, 37.887183 ], [ -122.295256, 37.887251 ], [ -122.294440, 37.887386 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2003", "GEOID10": "060014205002003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24754, "AWATER10": 0, "INTPTLAT10": "+37.8858112", "INTPTLON10": "-122.2943382" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294397, 37.887318 ], [ -122.293496, 37.884507 ], [ -122.294354, 37.884338 ], [ -122.295213, 37.887183 ], [ -122.294397, 37.887318 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2006", "GEOID10": "060014205002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25305, "AWATER10": 0, "INTPTLAT10": "+37.8853070", "INTPTLON10": "-122.2968750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296929, 37.886844 ], [ -122.295985, 37.883999 ], [ -122.296886, 37.883830 ], [ -122.297788, 37.886675 ], [ -122.296929, 37.886844 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2005", "GEOID10": "060014205002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24545, "AWATER10": 0, "INTPTLAT10": "+37.8854914", "INTPTLON10": "-122.2960301" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296071, 37.886980 ], [ -122.295170, 37.884169 ], [ -122.295985, 37.883999 ], [ -122.296929, 37.886844 ], [ -122.296071, 37.886980 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2008", "GEOID10": "060014205002008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1060, "AWATER10": 0, "INTPTLAT10": "+37.8841984", "INTPTLON10": "-122.2970500" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297144, 37.884643 ], [ -122.296886, 37.883830 ], [ -122.297015, 37.883796 ], [ -122.297273, 37.884609 ], [ -122.297144, 37.884643 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2009", "GEOID10": "060014205002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 410, "AWATER10": 0, "INTPTLAT10": "+37.8836558", "INTPTLON10": "-122.2968731" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296886, 37.883830 ], [ -122.296758, 37.883525 ], [ -122.296929, 37.883525 ], [ -122.297015, 37.883796 ], [ -122.296886, 37.883830 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2004", "GEOID10": "060014205002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24848, "AWATER10": 0, "INTPTLAT10": "+37.8856461", "INTPTLON10": "-122.2951842" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295213, 37.887183 ], [ -122.294354, 37.884338 ], [ -122.295170, 37.884169 ], [ -122.296071, 37.886980 ], [ -122.295213, 37.887183 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2012", "GEOID10": "060014205002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12579, "AWATER10": 0, "INTPTLAT10": "+37.8835272", "INTPTLON10": "-122.2945038" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294354, 37.884338 ], [ -122.293882, 37.882949 ], [ -122.294397, 37.882780 ], [ -122.294741, 37.882780 ], [ -122.295170, 37.884169 ], [ -122.294354, 37.884338 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2010", "GEOID10": "060014202002010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8445, "AWATER10": 0, "INTPTLAT10": "+37.8914852", "INTPTLON10": "-122.2936957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294140, 37.892873 ], [ -122.293839, 37.891992 ], [ -122.293153, 37.891044 ], [ -122.293196, 37.890604 ], [ -122.293625, 37.890570 ], [ -122.294354, 37.892873 ], [ -122.294140, 37.892873 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1017", "GEOID10": "060014201001017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10769, "AWATER10": 0, "INTPTLAT10": "+37.8921881", "INTPTLON10": "-122.2934770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294140, 37.892873 ], [ -122.293110, 37.892839 ], [ -122.293153, 37.891044 ], [ -122.293839, 37.891992 ], [ -122.294140, 37.892873 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1018", "GEOID10": "060014201001018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4538, "AWATER10": 0, "INTPTLAT10": "+37.8918502", "INTPTLON10": "-122.2929851" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292852, 37.892839 ], [ -122.292938, 37.890739 ], [ -122.293153, 37.891044 ], [ -122.293067, 37.892839 ], [ -122.292852, 37.892839 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1000", "GEOID10": "060014205001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 367, "AWATER10": 0, "INTPTLAT10": "+37.8905130", "INTPTLON10": "-122.2941122" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293754, 37.890570 ], [ -122.293711, 37.890536 ], [ -122.294526, 37.890502 ], [ -122.294397, 37.890536 ], [ -122.293754, 37.890570 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2011", "GEOID10": "060014202002011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 700, "AWATER10": 0, "INTPTLAT10": "+37.8907452", "INTPTLON10": "-122.2930474" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293153, 37.891044 ], [ -122.292938, 37.890739 ], [ -122.292895, 37.890604 ], [ -122.293196, 37.890604 ], [ -122.293153, 37.891044 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3005", "GEOID10": "060014206003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 349, "AWATER10": 0, "INTPTLAT10": "+37.8905539", "INTPTLON10": "-122.2932516" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292895, 37.890604 ], [ -122.292895, 37.890570 ], [ -122.293410, 37.890536 ], [ -122.293625, 37.890536 ], [ -122.293625, 37.890570 ], [ -122.292895, 37.890604 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1019", "GEOID10": "060014201001019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20486, "AWATER10": 0, "INTPTLAT10": "+37.8917135", "INTPTLON10": "-122.2923947" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.892839 ], [ -122.291951, 37.890671 ], [ -122.292895, 37.890604 ], [ -122.292852, 37.892839 ], [ -122.291908, 37.892839 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3004", "GEOID10": "060014206003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 428, "AWATER10": 0, "INTPTLAT10": "+37.8905994", "INTPTLON10": "-122.2924155" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.890638 ], [ -122.292895, 37.890570 ], [ -122.292895, 37.890604 ], [ -122.292724, 37.890638 ], [ -122.291908, 37.890638 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1006", "GEOID10": "060014205001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25175, "AWATER10": 0, "INTPTLAT10": "+37.8890495", "INTPTLON10": "-122.2935928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293711, 37.890536 ], [ -122.293625, 37.890434 ], [ -122.292724, 37.887759 ], [ -122.292724, 37.887657 ], [ -122.293582, 37.887657 ], [ -122.293582, 37.887522 ], [ -122.294526, 37.890502 ], [ -122.293711, 37.890536 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1009", "GEOID10": "060014205001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5818, "AWATER10": 0, "INTPTLAT10": "+37.8888891", "INTPTLON10": "-122.2929659" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293582, 37.890333 ], [ -122.293153, 37.889825 ], [ -122.292466, 37.887725 ], [ -122.292724, 37.887657 ], [ -122.292724, 37.887759 ], [ -122.293582, 37.890333 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3006", "GEOID10": "060014206003006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11825, "AWATER10": 0, "INTPTLAT10": "+37.8893267", "INTPTLON10": "-122.2928119" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890570 ], [ -122.293625, 37.890536 ], [ -122.292895, 37.890570 ], [ -122.292809, 37.890028 ], [ -122.292166, 37.887860 ], [ -122.292509, 37.887793 ], [ -122.293153, 37.889825 ], [ -122.293711, 37.890536 ], [ -122.293754, 37.890570 ], [ -122.293625, 37.890570 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3007", "GEOID10": "060014206003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27950, "AWATER10": 0, "INTPTLAT10": "+37.8892518", "INTPTLON10": "-122.2920141" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.890638 ], [ -122.291093, 37.888064 ], [ -122.292166, 37.887860 ], [ -122.292809, 37.890028 ], [ -122.292895, 37.890570 ], [ -122.291908, 37.890638 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3008", "GEOID10": "060014206003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 783, "AWATER10": 0, "INTPTLAT10": "+37.8879165", "INTPTLON10": "-122.2915924" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291093, 37.888064 ], [ -122.291093, 37.887996 ], [ -122.292123, 37.887793 ], [ -122.292166, 37.887860 ], [ -122.291093, 37.888064 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3002", "GEOID10": "060014201003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19544, "AWATER10": 0, "INTPTLAT10": "+37.8918042", "INTPTLON10": "-122.2914745" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.892974 ], [ -122.291007, 37.892941 ], [ -122.291093, 37.890705 ], [ -122.291951, 37.890671 ], [ -122.291908, 37.892974 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3003", "GEOID10": "060014201003003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18064, "AWATER10": 0, "INTPTLAT10": "+37.8918237", "INTPTLON10": "-122.2906157" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291007, 37.892941 ], [ -122.290149, 37.892907 ], [ -122.290277, 37.890739 ], [ -122.291093, 37.890705 ], [ -122.291007, 37.892941 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3003", "GEOID10": "060014206003003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 344, "AWATER10": 0, "INTPTLAT10": "+37.8906459", "INTPTLON10": "-122.2914849" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291093, 37.890705 ], [ -122.291093, 37.890671 ], [ -122.291951, 37.890671 ], [ -122.291093, 37.890705 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3004", "GEOID10": "060014201003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18095, "AWATER10": 0, "INTPTLAT10": "+37.8918241", "INTPTLON10": "-122.2897641" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289290, 37.892907 ], [ -122.289419, 37.890807 ], [ -122.290277, 37.890739 ], [ -122.290149, 37.892907 ], [ -122.289290, 37.892907 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3005", "GEOID10": "060014201003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16537, "AWATER10": 0, "INTPTLAT10": "+37.8919062", "INTPTLON10": "-122.2889102" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289290, 37.892907 ], [ -122.288432, 37.892873 ], [ -122.288475, 37.891484 ], [ -122.288818, 37.891078 ], [ -122.288861, 37.890841 ], [ -122.289419, 37.890807 ], [ -122.289290, 37.892907 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3002", "GEOID10": "060014206003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26786, "AWATER10": 0, "INTPTLAT10": "+37.8894113", "INTPTLON10": "-122.2909643" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290792, 37.890739 ], [ -122.290106, 37.888267 ], [ -122.291093, 37.888064 ], [ -122.291908, 37.890638 ], [ -122.291093, 37.890671 ], [ -122.291093, 37.890705 ], [ -122.290792, 37.890739 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3009", "GEOID10": "060014206003009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 746, "AWATER10": 0, "INTPTLAT10": "+37.8881229", "INTPTLON10": "-122.2905730" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290106, 37.888267 ], [ -122.290063, 37.888199 ], [ -122.291093, 37.887996 ], [ -122.291093, 37.888064 ], [ -122.290106, 37.888267 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3001", "GEOID10": "060014206003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22452, "AWATER10": 0, "INTPTLAT10": "+37.8895187", "INTPTLON10": "-122.2899595" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289891, 37.890773 ], [ -122.289119, 37.888470 ], [ -122.290106, 37.888267 ], [ -122.290792, 37.890739 ], [ -122.289891, 37.890773 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3000", "GEOID10": "060014206003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21823, "AWATER10": 0, "INTPTLAT10": "+37.8896695", "INTPTLON10": "-122.2890200" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288861, 37.890841 ], [ -122.288260, 37.888876 ], [ -122.288260, 37.888673 ], [ -122.289119, 37.888470 ], [ -122.289891, 37.890739 ], [ -122.288861, 37.890841 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3010", "GEOID10": "060014206003010", "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 689, "AWATER10": 0, "INTPTLAT10": "+37.8883258", "INTPTLON10": "-122.2895731" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289119, 37.888470 ], [ -122.289119, 37.888402 ], [ -122.290063, 37.888199 ], [ -122.290106, 37.888267 ], [ -122.289119, 37.888470 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2002", "GEOID10": "060014205002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24228, "AWATER10": 0, "INTPTLAT10": "+37.8859970", "INTPTLON10": "-122.2935084" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293582, 37.887522 ], [ -122.292638, 37.884677 ], [ -122.293496, 37.884507 ], [ -122.294397, 37.887318 ], [ -122.293582, 37.887522 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3016", "GEOID10": "060014206003016", "NAME10": "Block 3016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 253, "AWATER10": 0, "INTPTLAT10": "+37.8877763", "INTPTLON10": "-122.2922894" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292166, 37.887860 ], [ -122.292123, 37.887793 ], [ -122.292466, 37.887725 ], [ -122.292509, 37.887793 ], [ -122.292166, 37.887860 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2001", "GEOID10": "060014205002001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26078, "AWATER10": 0, "INTPTLAT10": "+37.8861973", "INTPTLON10": "-122.2926742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292724, 37.887657 ], [ -122.291780, 37.884880 ], [ -122.292638, 37.884677 ], [ -122.293582, 37.887522 ], [ -122.293582, 37.887657 ], [ -122.292724, 37.887657 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2000", "GEOID10": "060014205002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6434, "AWATER10": 0, "INTPTLAT10": "+37.8862789", "INTPTLON10": "-122.2921162" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292466, 37.887725 ], [ -122.291694, 37.885286 ], [ -122.291522, 37.884914 ], [ -122.291737, 37.884880 ], [ -122.291780, 37.884880 ], [ -122.292724, 37.887657 ], [ -122.292466, 37.887725 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "GEOID10": "060014206003015", "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.8863229", "INTPTLON10": "-122.2918172" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292123, 37.887793 ], [ -122.291179, 37.884981 ], [ -122.291522, 37.884914 ], [ -122.291694, 37.885286 ], [ -122.292466, 37.887725 ], [ -122.292123, 37.887793 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2013", "GEOID10": "060014205002013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12945, "AWATER10": 0, "INTPTLAT10": "+37.8836932", "INTPTLON10": "-122.2936333" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293496, 37.884507 ], [ -122.293367, 37.884202 ], [ -122.292981, 37.883051 ], [ -122.293882, 37.882949 ], [ -122.294354, 37.884338 ], [ -122.293496, 37.884507 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2014", "GEOID10": "060014205002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13013, "AWATER10": 0, "INTPTLAT10": "+37.8838362", "INTPTLON10": "-122.2927774" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292638, 37.884677 ], [ -122.292552, 37.884406 ], [ -122.292080, 37.883152 ], [ -122.292509, 37.883152 ], [ -122.292981, 37.883051 ], [ -122.293496, 37.884507 ], [ -122.292638, 37.884677 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2015", "GEOID10": "060014205002015", "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13985, "AWATER10": 0, "INTPTLAT10": "+37.8839739", "INTPTLON10": "-122.2919263" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291780, 37.884880 ], [ -122.291265, 37.883254 ], [ -122.292080, 37.883152 ], [ -122.292638, 37.884677 ], [ -122.291780, 37.884880 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3014", "GEOID10": "060014206003014", "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29422, "AWATER10": 0, "INTPTLAT10": "+37.8864950", "INTPTLON10": "-122.2911376" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291093, 37.887996 ], [ -122.290192, 37.885219 ], [ -122.291179, 37.884981 ], [ -122.292123, 37.887793 ], [ -122.291093, 37.887996 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "GEOID10": "060014206003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.8875706", "INTPTLON10": "-122.2892190" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.888572 ], [ -122.289333, 37.885998 ], [ -122.290063, 37.888199 ], [ -122.288303, 37.888572 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3013", "GEOID10": "060014206003013", "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 31172, "AWATER10": 0, "INTPTLAT10": "+37.8866087", "INTPTLON10": "-122.2901174" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290063, 37.888199 ], [ -122.289333, 37.885998 ], [ -122.289848, 37.884507 ], [ -122.290363, 37.885693 ], [ -122.291093, 37.887996 ], [ -122.290063, 37.888199 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3017", "GEOID10": "060014206003017", "NAME10": "Block 3017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6343, "AWATER10": 0, "INTPTLAT10": "+37.8840797", "INTPTLON10": "-122.2909809" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291179, 37.884981 ], [ -122.290406, 37.883220 ], [ -122.290835, 37.883322 ], [ -122.291179, 37.883999 ], [ -122.291522, 37.884914 ], [ -122.291179, 37.884981 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2016", "GEOID10": "060014205002016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5264, "AWATER10": 0, "INTPTLAT10": "+37.8839955", "INTPTLON10": "-122.2913154" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291522, 37.884914 ], [ -122.290835, 37.883322 ], [ -122.291093, 37.883254 ], [ -122.291265, 37.883254 ], [ -122.291780, 37.884880 ], [ -122.291522, 37.884914 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3018", "GEOID10": "060014206003018", "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14557, "AWATER10": 0, "INTPTLAT10": "+37.8843696", "INTPTLON10": "-122.2904413" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290192, 37.885219 ], [ -122.289848, 37.884507 ], [ -122.290320, 37.883051 ], [ -122.290320, 37.883220 ], [ -122.290406, 37.883220 ], [ -122.291179, 37.884981 ], [ -122.290192, 37.885219 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "GEOID10": "060014206002016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.8853992", "INTPTLON10": "-122.2894711" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.885998 ], [ -122.289290, 37.885862 ], [ -122.289634, 37.884880 ], [ -122.289720, 37.884914 ], [ -122.289333, 37.885998 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1023", "GEOID10": "060014206001023", "NAME10": "Block 1023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15260, "AWATER10": 0, "INTPTLAT10": "+37.8840099", "INTPTLON10": "-122.2895305" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289720, 37.884914 ], [ -122.288775, 37.884710 ], [ -122.289333, 37.883288 ], [ -122.289977, 37.883152 ], [ -122.290106, 37.883186 ], [ -122.290277, 37.883186 ], [ -122.289720, 37.884914 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2010", "GEOID10": "060014205002010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6161, "AWATER10": 0, "INTPTLAT10": "+37.8835363", "INTPTLON10": "-122.2962204" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295985, 37.883999 ], [ -122.295728, 37.883017 ], [ -122.295985, 37.883051 ], [ -122.296114, 37.883085 ], [ -122.296371, 37.883356 ], [ -122.296758, 37.883525 ], [ -122.296886, 37.883830 ], [ -122.295985, 37.883999 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2011", "GEOID10": "060014205002011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10125, "AWATER10": 0, "INTPTLAT10": "+37.8834818", "INTPTLON10": "-122.2953591" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295170, 37.884169 ], [ -122.294741, 37.882780 ], [ -122.295728, 37.883017 ], [ -122.295985, 37.883999 ], [ -122.295170, 37.884169 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3006", "GEOID10": "060014201003006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1509, "AWATER10": 0, "INTPTLAT10": "+37.8926066", "INTPTLON10": "-122.2883829" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288346, 37.892873 ], [ -122.288432, 37.891484 ], [ -122.288775, 37.891044 ], [ -122.288775, 37.890841 ], [ -122.288861, 37.890841 ], [ -122.288818, 37.891078 ], [ -122.288475, 37.891484 ], [ -122.288432, 37.892873 ], [ -122.288346, 37.892873 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3007", "GEOID10": "060014201003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18637, "AWATER10": 0, "INTPTLAT10": "+37.8917853", "INTPTLON10": "-122.2879697" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288346, 37.892873 ], [ -122.287445, 37.892839 ], [ -122.287531, 37.890909 ], [ -122.288775, 37.890841 ], [ -122.288775, 37.891044 ], [ -122.288432, 37.891484 ], [ -122.288346, 37.892873 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2003", "GEOID10": "060014206002003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 446, "AWATER10": 0, "INTPTLAT10": "+37.8908208", "INTPTLON10": "-122.2882377" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287960, 37.890875 ], [ -122.287703, 37.890841 ], [ -122.288775, 37.890773 ], [ -122.288775, 37.890841 ], [ -122.287960, 37.890875 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3008", "GEOID10": "060014201003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5620, "AWATER10": 0, "INTPTLAT10": "+37.8918093", "INTPTLON10": "-122.2873239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287188, 37.892839 ], [ -122.287188, 37.890942 ], [ -122.287531, 37.890909 ], [ -122.287531, 37.891281 ], [ -122.287445, 37.892839 ], [ -122.287188, 37.892839 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2017", "GEOID10": "060014206002017", "NAME10": "Block 2017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 379, "AWATER10": 0, "INTPTLAT10": "+37.8908918", "INTPTLON10": "-122.2870824" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287188, 37.890942 ], [ -122.286673, 37.890909 ], [ -122.287531, 37.890841 ], [ -122.287531, 37.890909 ], [ -122.287188, 37.890942 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2000", "GEOID10": "060014206002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 375, "AWATER10": 0, "INTPTLAT10": "+37.8909521", "INTPTLON10": "-122.2861793" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285728, 37.891010 ], [ -122.285686, 37.890976 ], [ -122.286673, 37.890909 ], [ -122.286458, 37.890976 ], [ -122.285728, 37.891010 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "GEOID10": "060014206002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.8896802", "INTPTLON10": "-122.2884737" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288775, 37.890841 ], [ -122.288775, 37.890671 ], [ -122.288132, 37.888707 ], [ -122.288175, 37.888606 ], [ -122.288303, 37.888572 ], [ -122.288218, 37.888741 ], [ -122.288260, 37.888876 ], [ -122.288861, 37.890705 ], [ -122.288861, 37.890841 ], [ -122.288775, 37.890841 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2005", "GEOID10": "060014206002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21301, "AWATER10": 0, "INTPTLAT10": "+37.8898284", "INTPTLON10": "-122.2879267" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287703, 37.890841 ], [ -122.287102, 37.889080 ], [ -122.288132, 37.888707 ], [ -122.288775, 37.890773 ], [ -122.287703, 37.890841 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3011", "GEOID10": "060014206003011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 598, "AWATER10": 0, "INTPTLAT10": "+37.8885114", "INTPTLON10": "-122.2886774" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288260, 37.888673 ], [ -122.288303, 37.888572 ], [ -122.288947, 37.888436 ], [ -122.289119, 37.888402 ], [ -122.289119, 37.888470 ], [ -122.288260, 37.888673 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2006", "GEOID10": "060014206002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 812, "AWATER10": 0, "INTPTLAT10": "+37.8888233", "INTPTLON10": "-122.2875914" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.889080 ], [ -122.287102, 37.889012 ], [ -122.287316, 37.888910 ], [ -122.288175, 37.888606 ], [ -122.288132, 37.888707 ], [ -122.287102, 37.889080 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2002", "GEOID10": "060014206002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16691, "AWATER10": 0, "INTPTLAT10": "+37.8900585", "INTPTLON10": "-122.2869139" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286673, 37.890909 ], [ -122.286158, 37.889418 ], [ -122.287102, 37.889080 ], [ -122.287745, 37.890875 ], [ -122.287531, 37.890909 ], [ -122.287531, 37.890841 ], [ -122.286673, 37.890909 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2007", "GEOID10": "060014206002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 740, "AWATER10": 0, "INTPTLAT10": "+37.8892157", "INTPTLON10": "-122.2866157" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286158, 37.889418 ], [ -122.286158, 37.889351 ], [ -122.287102, 37.889012 ], [ -122.287102, 37.889080 ], [ -122.286158, 37.889418 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2010", "GEOID10": "060014206002010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15494, "AWATER10": 0, "INTPTLAT10": "+37.8884410", "INTPTLON10": "-122.2866366" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286158, 37.889351 ], [ -122.286072, 37.889012 ], [ -122.286072, 37.888572 ], [ -122.286415, 37.887623 ], [ -122.287488, 37.887894 ], [ -122.287273, 37.888233 ], [ -122.287102, 37.888843 ], [ -122.287102, 37.889012 ], [ -122.286158, 37.889351 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2001", "GEOID10": "060014206002001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14791, "AWATER10": 0, "INTPTLAT10": "+37.8902095", "INTPTLON10": "-122.2859011" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285686, 37.890976 ], [ -122.285557, 37.890807 ], [ -122.285171, 37.889520 ], [ -122.285600, 37.889520 ], [ -122.286158, 37.889418 ], [ -122.286673, 37.890909 ], [ -122.285686, 37.890976 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1002", "GEOID10": "060014206001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 424, "AWATER10": 0, "INTPTLAT10": "+37.8910153", "INTPTLON10": "-122.2850935" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284484, 37.891078 ], [ -122.284527, 37.891044 ], [ -122.285686, 37.890976 ], [ -122.285728, 37.891010 ], [ -122.284484, 37.891078 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1003", "GEOID10": "060014206001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16431, "AWATER10": 0, "INTPTLAT10": "+37.8902144", "INTPTLON10": "-122.2848310" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284527, 37.891044 ], [ -122.284484, 37.890671 ], [ -122.284055, 37.889317 ], [ -122.284741, 37.889486 ], [ -122.285171, 37.889520 ], [ -122.285557, 37.890807 ], [ -122.285686, 37.890976 ], [ -122.284527, 37.891044 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1001", "GEOID10": "060014206001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 394, "AWATER10": 0, "INTPTLAT10": "+37.8910689", "INTPTLON10": "-122.2839734" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283497, 37.891146 ], [ -122.283497, 37.891078 ], [ -122.284527, 37.891044 ], [ -122.284484, 37.891078 ], [ -122.283497, 37.891146 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1004", "GEOID10": "060014206001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19676, "AWATER10": 0, "INTPTLAT10": "+37.8901108", "INTPTLON10": "-122.2837239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283497, 37.891078 ], [ -122.282982, 37.889452 ], [ -122.282853, 37.889147 ], [ -122.283454, 37.889181 ], [ -122.284055, 37.889317 ], [ -122.284484, 37.890671 ], [ -122.284527, 37.890976 ], [ -122.284527, 37.891044 ], [ -122.283497, 37.891078 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2008", "GEOID10": "060014206002008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 676, "AWATER10": 0, "INTPTLAT10": "+37.8894421", "INTPTLON10": "-122.2856518" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285171, 37.889520 ], [ -122.285213, 37.889452 ], [ -122.285600, 37.889452 ], [ -122.286158, 37.889351 ], [ -122.286158, 37.889418 ], [ -122.286029, 37.889452 ], [ -122.285171, 37.889520 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2009", "GEOID10": "060014206002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19896, "AWATER10": 0, "INTPTLAT10": "+37.8884164", "INTPTLON10": "-122.2856099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285213, 37.889452 ], [ -122.284999, 37.888639 ], [ -122.285171, 37.887894 ], [ -122.285385, 37.887386 ], [ -122.286415, 37.887623 ], [ -122.286072, 37.888572 ], [ -122.286072, 37.889012 ], [ -122.286158, 37.889351 ], [ -122.285385, 37.889452 ], [ -122.285213, 37.889452 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1010", "GEOID10": "060014206001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1878, "AWATER10": 0, "INTPTLAT10": "+37.8889080", "INTPTLON10": "-122.2850205" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285128, 37.889452 ], [ -122.284999, 37.889147 ], [ -122.284913, 37.888504 ], [ -122.285085, 37.887894 ], [ -122.285299, 37.887352 ], [ -122.285385, 37.887386 ], [ -122.285171, 37.887894 ], [ -122.284999, 37.888504 ], [ -122.285085, 37.889046 ], [ -122.285213, 37.889452 ], [ -122.285128, 37.889452 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1008", "GEOID10": "060014206001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 832, "AWATER10": 0, "INTPTLAT10": "+37.8893913", "INTPTLON10": "-122.2845906" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285171, 37.889520 ], [ -122.284441, 37.889418 ], [ -122.284055, 37.889317 ], [ -122.284055, 37.889249 ], [ -122.284698, 37.889418 ], [ -122.285213, 37.889452 ], [ -122.285171, 37.889520 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1007", "GEOID10": "060014206001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 282, "AWATER10": 0, "INTPTLAT10": "+37.8892140", "INTPTLON10": "-122.2838288" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284055, 37.889317 ], [ -122.283669, 37.889215 ], [ -122.283669, 37.889147 ], [ -122.284055, 37.889249 ], [ -122.284055, 37.889317 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1009", "GEOID10": "060014206001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22493, "AWATER10": 0, "INTPTLAT10": "+37.8883323", "INTPTLON10": "-122.2844715" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285128, 37.889452 ], [ -122.284698, 37.889418 ], [ -122.283711, 37.889147 ], [ -122.283711, 37.888775 ], [ -122.284355, 37.887149 ], [ -122.285299, 37.887352 ], [ -122.285085, 37.887894 ], [ -122.284913, 37.888504 ], [ -122.284999, 37.889147 ], [ -122.285128, 37.889452 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1014", "GEOID10": "060014206001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22296, "AWATER10": 0, "INTPTLAT10": "+37.8880279", "INTPTLON10": "-122.2834249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283669, 37.889147 ], [ -122.283111, 37.889080 ], [ -122.282767, 37.889080 ], [ -122.282681, 37.888944 ], [ -122.282681, 37.888606 ], [ -122.283282, 37.886912 ], [ -122.283540, 37.886980 ], [ -122.284355, 37.887149 ], [ -122.283711, 37.888775 ], [ -122.283669, 37.889147 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2012", "GEOID10": "060014206002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2533, "AWATER10": 0, "INTPTLAT10": "+37.8872385", "INTPTLON10": "-122.2887646" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288175, 37.888606 ], [ -122.289290, 37.885862 ], [ -122.289333, 37.885998 ], [ -122.288303, 37.888572 ], [ -122.288175, 37.888606 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2011", "GEOID10": "060014206002011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 36927, "AWATER10": 0, "INTPTLAT10": "+37.8868308", "INTPTLON10": "-122.2883823" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.889012 ], [ -122.287102, 37.888843 ], [ -122.287273, 37.888233 ], [ -122.287703, 37.887623 ], [ -122.288775, 37.884710 ], [ -122.289634, 37.884880 ], [ -122.289290, 37.885862 ], [ -122.288175, 37.888606 ], [ -122.287102, 37.889012 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2013", "GEOID10": "060014206002013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27693, "AWATER10": 0, "INTPTLAT10": "+37.8861944", "INTPTLON10": "-122.2877578" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287488, 37.887894 ], [ -122.286758, 37.887691 ], [ -122.287960, 37.884507 ], [ -122.288775, 37.884710 ], [ -122.287703, 37.887623 ], [ -122.287488, 37.887894 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2015", "GEOID10": "060014206002015", "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8164, "AWATER10": 0, "INTPTLAT10": "+37.8861594", "INTPTLON10": "-122.2868653" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287145, 37.886743 ], [ -122.286286, 37.886539 ], [ -122.286673, 37.885659 ], [ -122.287488, 37.885828 ], [ -122.287145, 37.886743 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2014", "GEOID10": "060014206002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 41589, "AWATER10": 0, "INTPTLAT10": "+37.8849195", "INTPTLON10": "-122.2873798" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.887691 ], [ -122.285385, 37.887386 ], [ -122.286673, 37.883999 ], [ -122.287831, 37.884169 ], [ -122.288089, 37.884270 ], [ -122.287488, 37.885828 ], [ -122.286758, 37.885659 ], [ -122.286673, 37.885659 ], [ -122.286544, 37.885794 ], [ -122.286286, 37.886539 ], [ -122.287145, 37.886743 ], [ -122.286758, 37.887691 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1022", "GEOID10": "060014206001022", "NAME10": "Block 1022", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12213, "AWATER10": 0, "INTPTLAT10": "+37.8838753", "INTPTLON10": "-122.2886289" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288775, 37.884710 ], [ -122.287960, 37.884507 ], [ -122.288518, 37.883051 ], [ -122.289333, 37.883288 ], [ -122.288775, 37.884710 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1019", "GEOID10": "060014206001019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1466, "AWATER10": 0, "INTPTLAT10": "+37.8847579", "INTPTLON10": "-122.2863241" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.885557 ], [ -122.285986, 37.885523 ], [ -122.286587, 37.883999 ], [ -122.286673, 37.883999 ], [ -122.286587, 37.884338 ], [ -122.286072, 37.885557 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1011", "GEOID10": "060014206001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1704, "AWATER10": 0, "INTPTLAT10": "+37.8864397", "INTPTLON10": "-122.2856823" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.887386 ], [ -122.285299, 37.887352 ], [ -122.285986, 37.885523 ], [ -122.286072, 37.885557 ], [ -122.285385, 37.887386 ] ] ] } } +, +{ "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.8863390", "INTPTLON10": "-122.2851750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285299, 37.887352 ], [ -122.284355, 37.887149 ], [ -122.284570, 37.886709 ], [ -122.285085, 37.885320 ], [ -122.285986, 37.885523 ], [ -122.285299, 37.887352 ] ] ] } } +, +{ "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.8843388", "INTPTLON10": "-122.2859716" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285986, 37.885523 ], [ -122.285085, 37.885320 ], [ -122.285686, 37.883660 ], [ -122.286973, 37.882983 ], [ -122.286587, 37.883999 ], [ -122.285986, 37.885523 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1025", "GEOID10": "060014206001025", "NAME10": "Block 1025", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1018, "AWATER10": 0, "INTPTLAT10": "+37.8838716", "INTPTLON10": "-122.2850766" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284527, 37.884202 ], [ -122.284484, 37.884135 ], [ -122.285728, 37.883559 ], [ -122.285686, 37.883660 ], [ -122.284741, 37.884101 ], [ -122.284527, 37.884202 ] ] ] } } +, +{ "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.8854489", "INTPTLON10": "-122.2845719" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284355, 37.887149 ], [ -122.283540, 37.886980 ], [ -122.283840, 37.886235 ], [ -122.284527, 37.884372 ], [ -122.284527, 37.884202 ], [ -122.285686, 37.883660 ], [ -122.284570, 37.886709 ], [ -122.284355, 37.887149 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1029", "GEOID10": "060014206001029", "NAME10": "Block 1029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16994, "AWATER10": 0, "INTPTLAT10": "+37.8853080", "INTPTLON10": "-122.2836511" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283840, 37.886235 ], [ -122.282681, 37.885998 ], [ -122.283196, 37.885388 ], [ -122.283282, 37.884778 ], [ -122.283411, 37.884744 ], [ -122.284527, 37.884202 ], [ -122.284527, 37.884372 ], [ -122.283840, 37.886235 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1027", "GEOID10": "060014206001027", "NAME10": "Block 1027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 906, "AWATER10": 0, "INTPTLAT10": "+37.8844362", "INTPTLON10": "-122.2839247" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283411, 37.884744 ], [ -122.283368, 37.884677 ], [ -122.284484, 37.884135 ], [ -122.284527, 37.884202 ], [ -122.283883, 37.884541 ], [ -122.283411, 37.884744 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1026", "GEOID10": "060014206001026", "NAME10": "Block 1026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 63728, "AWATER10": 0, "INTPTLAT10": "+37.8834939", "INTPTLON10": "-122.2837979" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281995, 37.884981 ], [ -122.282295, 37.884372 ], [ -122.281909, 37.884372 ], [ -122.282596, 37.882746 ], [ -122.282767, 37.882543 ], [ -122.285385, 37.882441 ], [ -122.286072, 37.882475 ], [ -122.285728, 37.883559 ], [ -122.283154, 37.884778 ], [ -122.282424, 37.884981 ], [ -122.281995, 37.884981 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1000", "GEOID10": "060014206001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 443, "AWATER10": 0, "INTPTLAT10": "+37.8911265", "INTPTLON10": "-122.2829474" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282424, 37.891180 ], [ -122.282424, 37.891146 ], [ -122.283497, 37.891078 ], [ -122.283497, 37.891146 ], [ -122.282424, 37.891180 ] ] ] } } +, +{ "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.8901660", "INTPTLON10": "-122.2826890" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282424, 37.891146 ], [ -122.282381, 37.890807 ], [ -122.281909, 37.889418 ], [ -122.282295, 37.889249 ], [ -122.282853, 37.889181 ], [ -122.283497, 37.891078 ], [ -122.282424, 37.891146 ] ] ] } } +, +{ "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.8891127", "INTPTLON10": "-122.2832122" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283669, 37.889215 ], [ -122.283282, 37.889147 ], [ -122.282853, 37.889147 ], [ -122.282767, 37.889080 ], [ -122.283497, 37.889114 ], [ -122.283669, 37.889147 ], [ -122.283669, 37.889215 ] ] ] } } +, +{ "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.8892075", "INTPTLON10": "-122.2823202" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281909, 37.889418 ], [ -122.281866, 37.889351 ], [ -122.282338, 37.889147 ], [ -122.282767, 37.889080 ], [ -122.282853, 37.889147 ], [ -122.282295, 37.889249 ], [ -122.281909, 37.889418 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1017", "GEOID10": "060014206001017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24687, "AWATER10": 0, "INTPTLAT10": "+37.8879459", "INTPTLON10": "-122.2823713" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281866, 37.889351 ], [ -122.281694, 37.888673 ], [ -122.281694, 37.888267 ], [ -122.282295, 37.886675 ], [ -122.283282, 37.886912 ], [ -122.282681, 37.888606 ], [ -122.282681, 37.888944 ], [ -122.282767, 37.889080 ], [ -122.282338, 37.889147 ], [ -122.281866, 37.889351 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1016", "GEOID10": "060014206001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9100, "AWATER10": 0, "INTPTLAT10": "+37.8864607", "INTPTLON10": "-122.2830673" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283540, 37.886980 ], [ -122.282295, 37.886675 ], [ -122.282510, 37.886336 ], [ -122.282681, 37.885998 ], [ -122.283840, 37.886235 ], [ -122.283540, 37.886980 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1028", "GEOID10": "060014206001028", "NAME10": "Block 1028", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1037, "AWATER10": 0, "INTPTLAT10": "+37.8849026", "INTPTLON10": "-122.2826795" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282038, 37.885083 ], [ -122.281995, 37.885049 ], [ -122.281995, 37.884981 ], [ -122.282424, 37.884981 ], [ -122.283368, 37.884677 ], [ -122.283411, 37.884744 ], [ -122.282467, 37.885049 ], [ -122.282038, 37.885083 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1021", "GEOID10": "060014206001021", "NAME10": "Block 1021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18586, "AWATER10": 0, "INTPTLAT10": "+37.8834620", "INTPTLON10": "-122.2875836" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288089, 37.884270 ], [ -122.287831, 37.884169 ], [ -122.286673, 37.883999 ], [ -122.287102, 37.882915 ], [ -122.287230, 37.882610 ], [ -122.288518, 37.883051 ], [ -122.288089, 37.884270 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1020", "GEOID10": "060014206001020", "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 979, "AWATER10": 0, "INTPTLAT10": "+37.8834653", "INTPTLON10": "-122.2868181" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286587, 37.883999 ], [ -122.286973, 37.882983 ], [ -122.287102, 37.882915 ], [ -122.287059, 37.883051 ], [ -122.286673, 37.883999 ], [ -122.286587, 37.883999 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1030", "GEOID10": "060014206001030", "NAME10": "Block 1030", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 280, "AWATER10": 0, "INTPTLAT10": "+37.8827246", "INTPTLON10": "-122.2870976" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.882915 ], [ -122.287016, 37.882881 ], [ -122.287145, 37.882577 ], [ -122.287230, 37.882610 ], [ -122.287188, 37.882678 ], [ -122.287102, 37.882915 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1024", "GEOID10": "060014206001024", "NAME10": "Block 1024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1201, "AWATER10": 0, "INTPTLAT10": "+37.8832245", "INTPTLON10": "-122.2863663" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285686, 37.883660 ], [ -122.285728, 37.883559 ], [ -122.287016, 37.882881 ], [ -122.287102, 37.882915 ], [ -122.285686, 37.883660 ] ] ] } } +, +{ "type": "Feature", "id": 12345, "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1031", "GEOID10": "060014206001031", "NAME10": "Block 1031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7920, "AWATER10": 0, "INTPTLAT10": "+37.8828579", "INTPTLON10": "-122.2863490" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285728, 37.883559 ], [ -122.286072, 37.882475 ], [ -122.286758, 37.882475 ], [ -122.287145, 37.882577 ], [ -122.287016, 37.882881 ], [ -122.285728, 37.883559 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 329, "y": 791 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "macarthur", "version": 2, "extent": 1024 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1102406970093", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.171402, 37.768679 ], [ -122.170029, 37.767729 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1105089465114", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.169857, 37.767594 ], [ -122.167969, 37.766237 ], [ -122.163334, 37.760808 ], [ -122.159901, 37.751308 ], [ -122.156639, 37.746286 ], [ -122.153893, 37.744386 ], [ -122.151833, 37.742349 ], [ -122.146339, 37.739770 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1102954189105", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.161446, 37.755651 ], [ -122.159901, 37.751444 ], [ -122.158871, 37.750087 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1105089465116", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.143078, 37.738277 ], [ -122.141705, 37.737463 ], [ -122.140675, 37.735969 ], [ -122.139130, 37.730403 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1102406970094", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.139130, 37.730403 ], [ -122.138786, 37.728774 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1102406970095", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.139130, 37.730403 ], [ -122.138786, 37.728774 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1102157509691", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.143421, 37.722392 ], [ -122.143421, 37.722257 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 656, "y": 1581 }, "features": [ +{ "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.8928912", "INTPTLON10": "-122.3202957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.312486, 37.897428 ], [ -122.312551, 37.897123 ], [ -122.312529, 37.897021 ], [ -122.312443, 37.896937 ], [ -122.312143, 37.896937 ], [ -122.311606, 37.896835 ], [ -122.311521, 37.896717 ], [ -122.311585, 37.896480 ], [ -122.311585, 37.896293 ], [ -122.311521, 37.896175 ], [ -122.311134, 37.896056 ], [ -122.311306, 37.895735 ], [ -122.311134, 37.895531 ], [ -122.311006, 37.895498 ], [ -122.310705, 37.895498 ], [ -122.310662, 37.895396 ], [ -122.310684, 37.895277 ], [ -122.310555, 37.895074 ], [ -122.310233, 37.894786 ], [ -122.310126, 37.894752 ], [ -122.309461, 37.893466 ], [ -122.309096, 37.892212 ], [ -122.309053, 37.891298 ], [ -122.309268, 37.889706 ], [ -122.309439, 37.889130 ], [ -122.309675, 37.888860 ], [ -122.309804, 37.888809 ], [ -122.309933, 37.888826 ], [ -122.310040, 37.888910 ], [ -122.310147, 37.889147 ], [ -122.310855, 37.889757 ], [ -122.310941, 37.889859 ], [ -122.311006, 37.890197 ], [ -122.311134, 37.890248 ], [ -122.311199, 37.890147 ], [ -122.311199, 37.889909 ], [ -122.311349, 37.889909 ], [ -122.311456, 37.889994 ], [ -122.311606, 37.890316 ], [ -122.311692, 37.890401 ], [ -122.312722, 37.891196 ], [ -122.313688, 37.891891 ], [ -122.314267, 37.891958 ], [ -122.314396, 37.892043 ], [ -122.314589, 37.892348 ], [ -122.314696, 37.892450 ], [ -122.314825, 37.892450 ], [ -122.314589, 37.892145 ], [ -122.314525, 37.891925 ], [ -122.314675, 37.891874 ], [ -122.315361, 37.891908 ], [ -122.315662, 37.891874 ], [ -122.315812, 37.891908 ], [ -122.315941, 37.891891 ], [ -122.315984, 37.891806 ], [ -122.315941, 37.891688 ], [ -122.315962, 37.891247 ], [ -122.316027, 37.891146 ], [ -122.317593, 37.890926 ], [ -122.318988, 37.890350 ], [ -122.319589, 37.890028 ], [ -122.319846, 37.889943 ], [ -122.322571, 37.889943 ], [ -122.322700, 37.889977 ], [ -122.322807, 37.890316 ], [ -122.323022, 37.890655 ], [ -122.323129, 37.890993 ], [ -122.323472, 37.891518 ], [ -122.323816, 37.892212 ], [ -122.323966, 37.892399 ], [ -122.324438, 37.892466 ], [ -122.324696, 37.892483 ], [ -122.324975, 37.892450 ], [ -122.325554, 37.892534 ], [ -122.325704, 37.892534 ], [ -122.325833, 37.892500 ], [ -122.325833, 37.892382 ], [ -122.325897, 37.892297 ], [ -122.325618, 37.892162 ], [ -122.325554, 37.892060 ], [ -122.325575, 37.891857 ], [ -122.325532, 37.891518 ], [ -122.325575, 37.890942 ], [ -122.325640, 37.890841 ], [ -122.325811, 37.890790 ], [ -122.326198, 37.890790 ], [ -122.326627, 37.890858 ], [ -122.327313, 37.890790 ], [ -122.327378, 37.890892 ], [ -122.327399, 37.891467 ], [ -122.327507, 37.891552 ], [ -122.327614, 37.891450 ], [ -122.327657, 37.890993 ], [ -122.327614, 37.890773 ], [ -122.327678, 37.890231 ], [ -122.327592, 37.889926 ], [ -122.327571, 37.889672 ], [ -122.334738, 37.889588 ], [ -122.333407, 37.892805 ], [ -122.312486, 37.897428 ] ] ] } } +, +{ "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.8905867", "INTPTLON10": "-122.3181131" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.311521, 37.896717 ], [ -122.310662, 37.895752 ], [ -122.309997, 37.894769 ], [ -122.309525, 37.893855 ], [ -122.309225, 37.893059 ], [ -122.309096, 37.892585 ], [ -122.309010, 37.892077 ], [ -122.308967, 37.891721 ], [ -122.308989, 37.891247 ], [ -122.308881, 37.890485 ], [ -122.308967, 37.888775 ], [ -122.309225, 37.887843 ], [ -122.309804, 37.888131 ], [ -122.310190, 37.888521 ], [ -122.311242, 37.889452 ], [ -122.315598, 37.889639 ], [ -122.315791, 37.889520 ], [ -122.327592, 37.889672 ], [ -122.327571, 37.889791 ], [ -122.327678, 37.890231 ], [ -122.327614, 37.890773 ], [ -122.327657, 37.890993 ], [ -122.327614, 37.891450 ], [ -122.327507, 37.891552 ], [ -122.327399, 37.891467 ], [ -122.327378, 37.890892 ], [ -122.327313, 37.890790 ], [ -122.326627, 37.890858 ], [ -122.326198, 37.890790 ], [ -122.325811, 37.890790 ], [ -122.325640, 37.890841 ], [ -122.325575, 37.890942 ], [ -122.325532, 37.891518 ], [ -122.325575, 37.891857 ], [ -122.325554, 37.892060 ], [ -122.325618, 37.892162 ], [ -122.325897, 37.892297 ], [ -122.325833, 37.892382 ], [ -122.325833, 37.892500 ], [ -122.325704, 37.892534 ], [ -122.325554, 37.892534 ], [ -122.324975, 37.892450 ], [ -122.324696, 37.892483 ], [ -122.323966, 37.892399 ], [ -122.323816, 37.892212 ], [ -122.323472, 37.891518 ], [ -122.323129, 37.890993 ], [ -122.323022, 37.890655 ], [ -122.322807, 37.890316 ], [ -122.322700, 37.889977 ], [ -122.322571, 37.889943 ], [ -122.319846, 37.889943 ], [ -122.319589, 37.890028 ], [ -122.318988, 37.890350 ], [ -122.317593, 37.890926 ], [ -122.316027, 37.891146 ], [ -122.315962, 37.891247 ], [ -122.315941, 37.891688 ], [ -122.315984, 37.891806 ], [ -122.315941, 37.891891 ], [ -122.315812, 37.891908 ], [ -122.315662, 37.891874 ], [ -122.315361, 37.891908 ], [ -122.314675, 37.891874 ], [ -122.314525, 37.891925 ], [ -122.314589, 37.892145 ], [ -122.314825, 37.892450 ], [ -122.314696, 37.892450 ], [ -122.314589, 37.892348 ], [ -122.314396, 37.892043 ], [ -122.314267, 37.891958 ], [ -122.313688, 37.891891 ], [ -122.312722, 37.891196 ], [ -122.311692, 37.890401 ], [ -122.311606, 37.890316 ], [ -122.311456, 37.889994 ], [ -122.311349, 37.889909 ], [ -122.311199, 37.889909 ], [ -122.311199, 37.890147 ], [ -122.311134, 37.890248 ], [ -122.311006, 37.890197 ], [ -122.310941, 37.889859 ], [ -122.310855, 37.889757 ], [ -122.310147, 37.889147 ], [ -122.310040, 37.888910 ], [ -122.309933, 37.888826 ], [ -122.309804, 37.888809 ], [ -122.309675, 37.888860 ], [ -122.309439, 37.889130 ], [ -122.309268, 37.889706 ], [ -122.309053, 37.891298 ], [ -122.309096, 37.892212 ], [ -122.309461, 37.893466 ], [ -122.310126, 37.894752 ], [ -122.310233, 37.894786 ], [ -122.310555, 37.895074 ], [ -122.310684, 37.895277 ], [ -122.310662, 37.895396 ], [ -122.310705, 37.895498 ], [ -122.311006, 37.895498 ], [ -122.311134, 37.895531 ], [ -122.311306, 37.895735 ], [ -122.311134, 37.896056 ], [ -122.311521, 37.896175 ], [ -122.311585, 37.896293 ], [ -122.311585, 37.896480 ], [ -122.311521, 37.896717 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3007", "GEOID10": "060014203003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3648, "AWATER10": 0, "INTPTLAT10": "+37.8971393", "INTPTLON10": "-122.3121267" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.312078, 37.897479 ], [ -122.311585, 37.896852 ], [ -122.311542, 37.896818 ], [ -122.312143, 37.896937 ], [ -122.312443, 37.896937 ], [ -122.312529, 37.897021 ], [ -122.312551, 37.897123 ], [ -122.312486, 37.897428 ], [ -122.312078, 37.897479 ] ] ] } } +, +{ "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.8946697", "INTPTLON10": "-122.3084294" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309353, 37.897868 ], [ -122.309332, 37.897800 ], [ -122.308280, 37.895227 ], [ -122.307959, 37.894024 ], [ -122.307873, 37.893652 ], [ -122.307808, 37.892788 ], [ -122.307851, 37.892280 ], [ -122.308023, 37.892162 ], [ -122.308238, 37.892179 ], [ -122.308323, 37.893178 ], [ -122.308280, 37.893770 ], [ -122.308345, 37.894414 ], [ -122.309160, 37.896734 ], [ -122.309396, 37.897309 ], [ -122.309525, 37.897834 ], [ -122.309353, 37.897868 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3005", "GEOID10": "060014203003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 30820, "AWATER10": 0, "INTPTLAT10": "+37.8910154", "INTPTLON10": "-122.3085406" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.311478, 37.897631 ], [ -122.309933, 37.895667 ], [ -122.309289, 37.894566 ], [ -122.308989, 37.893923 ], [ -122.308495, 37.892382 ], [ -122.308087, 37.890604 ], [ -122.308345, 37.890079 ], [ -122.308967, 37.892551 ], [ -122.309139, 37.893127 ], [ -122.309418, 37.893889 ], [ -122.309890, 37.894820 ], [ -122.310512, 37.895802 ], [ -122.310941, 37.896412 ], [ -122.311864, 37.897529 ], [ -122.311478, 37.897631 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3004", "GEOID10": "060014203003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59347, "AWATER10": 0, "INTPTLAT10": "+37.8955812", "INTPTLON10": "-122.3094534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309525, 37.897834 ], [ -122.309396, 37.897309 ], [ -122.309160, 37.896734 ], [ -122.308345, 37.894414 ], [ -122.308280, 37.893770 ], [ -122.308323, 37.893178 ], [ -122.308259, 37.892297 ], [ -122.307894, 37.890976 ], [ -122.308087, 37.890604 ], [ -122.308495, 37.892382 ], [ -122.308989, 37.893923 ], [ -122.309289, 37.894566 ], [ -122.309933, 37.895667 ], [ -122.311478, 37.897631 ], [ -122.310898, 37.897834 ], [ -122.309525, 37.897834 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3006", "GEOID10": "060014203003006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19563, "AWATER10": 24, "INTPTLAT10": "+37.8904059", "INTPTLON10": "-122.3086941" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.311864, 37.897529 ], [ -122.310941, 37.896412 ], [ -122.310512, 37.895802 ], [ -122.309697, 37.894465 ], [ -122.309418, 37.893889 ], [ -122.309139, 37.893127 ], [ -122.308710, 37.891603 ], [ -122.308345, 37.890079 ], [ -122.308967, 37.888775 ], [ -122.308881, 37.890485 ], [ -122.308989, 37.891247 ], [ -122.308967, 37.891721 ], [ -122.309010, 37.892077 ], [ -122.309096, 37.892585 ], [ -122.309225, 37.893059 ], [ -122.309525, 37.893855 ], [ -122.309997, 37.894769 ], [ -122.310662, 37.895752 ], [ -122.311606, 37.896835 ], [ -122.311542, 37.896818 ], [ -122.312078, 37.897479 ], [ -122.311864, 37.897529 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3001", "GEOID10": "060014203003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24651, "AWATER10": 0, "INTPTLAT10": "+37.8921989", "INTPTLON10": "-122.3075517" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309353, 37.897868 ], [ -122.309289, 37.897783 ], [ -122.307701, 37.894244 ], [ -122.307229, 37.893042 ], [ -122.307100, 37.892551 ], [ -122.307014, 37.891925 ], [ -122.307079, 37.890875 ], [ -122.307250, 37.890130 ], [ -122.307529, 37.889503 ], [ -122.307894, 37.890976 ], [ -122.307658, 37.891671 ], [ -122.307572, 37.892246 ], [ -122.307529, 37.892619 ], [ -122.307594, 37.893296 ], [ -122.307787, 37.893974 ], [ -122.308280, 37.895227 ], [ -122.309353, 37.897868 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3000", "GEOID10": "060014203003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27350, "AWATER10": 0, "INTPTLAT10": "+37.8907736", "INTPTLON10": "-122.3067658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308967, 37.897987 ], [ -122.308602, 37.897157 ], [ -122.308495, 37.896835 ], [ -122.307229, 37.893753 ], [ -122.306671, 37.892670 ], [ -122.306628, 37.892399 ], [ -122.306650, 37.892229 ], [ -122.306714, 37.892009 ], [ -122.306693, 37.891704 ], [ -122.306414, 37.890807 ], [ -122.306714, 37.890739 ], [ -122.306821, 37.890688 ], [ -122.307229, 37.889994 ], [ -122.307401, 37.889757 ], [ -122.307208, 37.890282 ], [ -122.307036, 37.891230 ], [ -122.307014, 37.891925 ], [ -122.307100, 37.892551 ], [ -122.307229, 37.893042 ], [ -122.307701, 37.894244 ], [ -122.309332, 37.897868 ], [ -122.309010, 37.897953 ], [ -122.308967, 37.897987 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3002", "GEOID10": "060014203003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9773, "AWATER10": 0, "INTPTLAT10": "+37.8920318", "INTPTLON10": "-122.3077138" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308280, 37.895227 ], [ -122.307701, 37.893720 ], [ -122.307572, 37.893127 ], [ -122.307529, 37.892619 ], [ -122.307658, 37.891671 ], [ -122.307894, 37.890976 ], [ -122.308238, 37.892179 ], [ -122.308023, 37.892162 ], [ -122.307851, 37.892280 ], [ -122.307808, 37.893025 ], [ -122.307873, 37.893652 ], [ -122.308280, 37.895227 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1006", "GEOID10": "060014202001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1461, "AWATER10": 0, "INTPTLAT10": "+37.8973748", "INTPTLON10": "-122.3012481" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301629, 37.898528 ], [ -122.301478, 37.898207 ], [ -122.300985, 37.896700 ], [ -122.301135, 37.896683 ], [ -122.301629, 37.898528 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1005", "GEOID10": "060014202001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14639, "AWATER10": 0, "INTPTLAT10": "+37.8976068", "INTPTLON10": "-122.3008394" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301500, 37.898528 ], [ -122.300599, 37.898308 ], [ -122.300127, 37.896869 ], [ -122.300985, 37.896700 ], [ -122.301607, 37.898528 ], [ -122.301500, 37.898528 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "GEOID10": "060014202001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.8976015", "INTPTLON10": "-122.2999287" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300599, 37.898308 ], [ -122.300298, 37.898241 ], [ -122.299719, 37.898291 ], [ -122.299290, 37.897055 ], [ -122.300127, 37.896869 ], [ -122.300599, 37.898308 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "GEOID10": "060014203002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.8949184", "INTPTLON10": "-122.3048891" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301629, 37.898528 ], [ -122.301135, 37.896683 ], [ -122.300920, 37.896022 ], [ -122.302616, 37.895667 ], [ -122.302015, 37.893821 ], [ -122.302852, 37.893652 ], [ -122.303109, 37.894515 ], [ -122.303131, 37.894261 ], [ -122.303088, 37.893855 ], [ -122.303131, 37.893533 ], [ -122.303302, 37.893144 ], [ -122.303495, 37.892839 ], [ -122.303088, 37.891603 ], [ -122.303324, 37.890841 ], [ -122.303452, 37.890536 ], [ -122.303560, 37.890350 ], [ -122.303731, 37.890180 ], [ -122.303967, 37.890045 ], [ -122.304418, 37.889909 ], [ -122.304933, 37.889825 ], [ -122.306027, 37.889588 ], [ -122.306693, 37.891704 ], [ -122.306714, 37.892009 ], [ -122.306628, 37.892399 ], [ -122.306671, 37.892670 ], [ -122.307229, 37.893753 ], [ -122.308495, 37.896835 ], [ -122.308602, 37.897157 ], [ -122.308967, 37.897987 ], [ -122.308795, 37.898037 ], [ -122.306199, 37.898241 ], [ -122.305341, 37.898427 ], [ -122.304590, 37.898427 ], [ -122.303731, 37.898528 ], [ -122.301629, 37.898528 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "GEOID10": "060014203001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.8926328", "INTPTLON10": "-122.3029106" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303109, 37.894515 ], [ -122.302251, 37.891772 ], [ -122.303088, 37.891603 ], [ -122.303495, 37.892839 ], [ -122.303302, 37.893144 ], [ -122.303131, 37.893533 ], [ -122.303088, 37.893855 ], [ -122.303131, 37.894261 ], [ -122.303109, 37.894515 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1001", "GEOID10": "060014203001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16165, "AWATER10": 0, "INTPTLAT10": "+37.8948170", "INTPTLON10": "-122.3018829" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301779, 37.895836 ], [ -122.301178, 37.893990 ], [ -122.302015, 37.893821 ], [ -122.302616, 37.895667 ], [ -122.301779, 37.895836 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1007", "GEOID10": "060014202001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 914, "AWATER10": 0, "INTPTLAT10": "+37.8963621", "INTPTLON10": "-122.3009413" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300985, 37.896700 ], [ -122.300792, 37.896056 ], [ -122.300920, 37.896022 ], [ -122.301135, 37.896683 ], [ -122.300985, 37.896700 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1014", "GEOID10": "060014202001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1324, "AWATER10": 0, "INTPTLAT10": "+37.8955459", "INTPTLON10": "-122.3006834" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300792, 37.896056 ], [ -122.300470, 37.895074 ], [ -122.300599, 37.895057 ], [ -122.300920, 37.896022 ], [ -122.300792, 37.896056 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "GEOID10": "060014202001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.8959674", "INTPTLON10": "-122.3002912" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300127, 37.896869 ], [ -122.299612, 37.895260 ], [ -122.300470, 37.895074 ], [ -122.300792, 37.896056 ], [ -122.300985, 37.896700 ], [ -122.300127, 37.896869 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1000", "GEOID10": "060014203001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16605, "AWATER10": 0, "INTPTLAT10": "+37.8950031", "INTPTLON10": "-122.3010393" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300920, 37.896022 ], [ -122.300599, 37.895057 ], [ -122.300341, 37.894160 ], [ -122.301178, 37.893990 ], [ -122.301779, 37.895836 ], [ -122.300920, 37.896022 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1007", "GEOID10": "060014203001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16120, "AWATER10": 0, "INTPTLAT10": "+37.8927903", "INTPTLON10": "-122.3021281" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302015, 37.893821 ], [ -122.301435, 37.891942 ], [ -122.302251, 37.891772 ], [ -122.302852, 37.893652 ], [ -122.302015, 37.893821 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1002", "GEOID10": "060014203001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16535, "AWATER10": 0, "INTPTLAT10": "+37.8929602", "INTPTLON10": "-122.3012875" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.893990 ], [ -122.300577, 37.892111 ], [ -122.301435, 37.891942 ], [ -122.302015, 37.893821 ], [ -122.301178, 37.893990 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3003", "GEOID10": "060014202003003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2234, "AWATER10": 0, "INTPTLAT10": "+37.8942520", "INTPTLON10": "-122.3002730" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300470, 37.895074 ], [ -122.299955, 37.893466 ], [ -122.300084, 37.893432 ], [ -122.300556, 37.894871 ], [ -122.300599, 37.895057 ], [ -122.300470, 37.895074 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1003", "GEOID10": "060014203001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16635, "AWATER10": 0, "INTPTLAT10": "+37.8931288", "INTPTLON10": "-122.3004328" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300341, 37.894160 ], [ -122.300084, 37.893432 ], [ -122.299719, 37.892297 ], [ -122.300577, 37.892111 ], [ -122.301178, 37.893990 ], [ -122.300341, 37.894160 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "GEOID10": "060014202003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.8928701", "INTPTLON10": "-122.2998265" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299955, 37.893466 ], [ -122.299590, 37.892314 ], [ -122.299719, 37.892297 ], [ -122.300084, 37.893432 ], [ -122.299955, 37.893466 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "GEOID10": "060014204001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.8842028", "INTPTLON10": "-122.3237534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.327571, 37.889672 ], [ -122.327442, 37.889130 ], [ -122.327571, 37.888690 ], [ -122.327421, 37.888622 ], [ -122.327034, 37.888690 ], [ -122.326713, 37.888589 ], [ -122.325447, 37.888081 ], [ -122.324910, 37.887911 ], [ -122.324610, 37.887877 ], [ -122.322936, 37.888284 ], [ -122.322936, 37.888843 ], [ -122.322850, 37.889063 ], [ -122.322764, 37.889164 ], [ -122.322528, 37.889300 ], [ -122.322249, 37.889384 ], [ -122.321928, 37.889401 ], [ -122.321649, 37.889368 ], [ -122.321348, 37.889266 ], [ -122.320919, 37.889249 ], [ -122.319610, 37.889435 ], [ -122.318945, 37.889384 ], [ -122.317808, 37.889351 ], [ -122.317250, 37.889283 ], [ -122.316842, 37.888927 ], [ -122.316756, 37.888741 ], [ -122.316585, 37.888589 ], [ -122.316048, 37.887911 ], [ -122.315834, 37.887386 ], [ -122.315898, 37.886810 ], [ -122.315876, 37.886573 ], [ -122.315941, 37.886235 ], [ -122.316477, 37.886116 ], [ -122.316456, 37.885947 ], [ -122.315984, 37.885947 ], [ -122.316027, 37.885659 ], [ -122.316864, 37.885642 ], [ -122.316864, 37.885760 ], [ -122.317035, 37.885760 ], [ -122.317057, 37.885489 ], [ -122.316027, 37.885506 ], [ -122.316091, 37.885439 ], [ -122.315705, 37.885269 ], [ -122.315447, 37.884710 ], [ -122.315469, 37.884592 ], [ -122.315619, 37.884406 ], [ -122.315662, 37.884287 ], [ -122.315598, 37.884067 ], [ -122.315469, 37.884016 ], [ -122.315319, 37.884067 ], [ -122.315018, 37.883965 ], [ -122.314589, 37.883525 ], [ -122.314374, 37.883373 ], [ -122.314138, 37.883085 ], [ -122.313924, 37.882644 ], [ -122.313602, 37.882424 ], [ -122.313044, 37.882204 ], [ -122.312465, 37.881391 ], [ -122.327635, 37.877360 ], [ -122.334738, 37.889588 ], [ -122.327571, 37.889672 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1011", "GEOID10": "060014204001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 542505, "AWATER10": 0, "INTPTLAT10": "+37.8862375", "INTPTLON10": "-122.3141377" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.327571, 37.889672 ], [ -122.315791, 37.889520 ], [ -122.315598, 37.889639 ], [ -122.311242, 37.889452 ], [ -122.310190, 37.888521 ], [ -122.309804, 37.888131 ], [ -122.309783, 37.888047 ], [ -122.309353, 37.887674 ], [ -122.309289, 37.887877 ], [ -122.309225, 37.887843 ], [ -122.309289, 37.887589 ], [ -122.309289, 37.887318 ], [ -122.309461, 37.887166 ], [ -122.309546, 37.886980 ], [ -122.309525, 37.886455 ], [ -122.308881, 37.884016 ], [ -122.308645, 37.883491 ], [ -122.308388, 37.882289 ], [ -122.312465, 37.881391 ], [ -122.313044, 37.882204 ], [ -122.313602, 37.882424 ], [ -122.313924, 37.882644 ], [ -122.314138, 37.883085 ], [ -122.314374, 37.883373 ], [ -122.314589, 37.883525 ], [ -122.315018, 37.883965 ], [ -122.315319, 37.884067 ], [ -122.315469, 37.884016 ], [ -122.315598, 37.884067 ], [ -122.315662, 37.884287 ], [ -122.315619, 37.884406 ], [ -122.315469, 37.884592 ], [ -122.315447, 37.884710 ], [ -122.315705, 37.885269 ], [ -122.316091, 37.885439 ], [ -122.316027, 37.885506 ], [ -122.317057, 37.885489 ], [ -122.317035, 37.885760 ], [ -122.316864, 37.885760 ], [ -122.316864, 37.885642 ], [ -122.316027, 37.885659 ], [ -122.315984, 37.885947 ], [ -122.316456, 37.885947 ], [ -122.316477, 37.886116 ], [ -122.315941, 37.886235 ], [ -122.315876, 37.886573 ], [ -122.315898, 37.886810 ], [ -122.315834, 37.887386 ], [ -122.316048, 37.887911 ], [ -122.316585, 37.888589 ], [ -122.316756, 37.888741 ], [ -122.316842, 37.888927 ], [ -122.317250, 37.889283 ], [ -122.317808, 37.889351 ], [ -122.318945, 37.889384 ], [ -122.319610, 37.889435 ], [ -122.320919, 37.889249 ], [ -122.321348, 37.889266 ], [ -122.321649, 37.889368 ], [ -122.321928, 37.889401 ], [ -122.322249, 37.889384 ], [ -122.322528, 37.889300 ], [ -122.322764, 37.889164 ], [ -122.322850, 37.889063 ], [ -122.322936, 37.888843 ], [ -122.322936, 37.888284 ], [ -122.324610, 37.887877 ], [ -122.324910, 37.887911 ], [ -122.325447, 37.888081 ], [ -122.326713, 37.888589 ], [ -122.327034, 37.888690 ], [ -122.327421, 37.888622 ], [ -122.327571, 37.888690 ], [ -122.327442, 37.889130 ], [ -122.327571, 37.889672 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3030", "GEOID10": "060014203003030", "NAME10": "Block 3030", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 744, "AWATER10": 0, "INTPTLAT10": "+37.8878859", "INTPTLON10": "-122.3094998" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309804, 37.888131 ], [ -122.309611, 37.888030 ], [ -122.309332, 37.887894 ], [ -122.309289, 37.887877 ], [ -122.309353, 37.887674 ], [ -122.309783, 37.888047 ], [ -122.309804, 37.888131 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3010", "GEOID10": "060014203003010", "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1835, "AWATER10": 0, "INTPTLAT10": "+37.8878520", "INTPTLON10": "-122.3091212" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308967, 37.888775 ], [ -122.309053, 37.887437 ], [ -122.309289, 37.887318 ], [ -122.309289, 37.887589 ], [ -122.309096, 37.888385 ], [ -122.308967, 37.888775 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3011", "GEOID10": "060014203003011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10961, "AWATER10": 0, "INTPTLAT10": "+37.8885068", "INTPTLON10": "-122.3086806" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308345, 37.890079 ], [ -122.308345, 37.889215 ], [ -122.308366, 37.888995 ], [ -122.308538, 37.888284 ], [ -122.308495, 37.887640 ], [ -122.308538, 37.887556 ], [ -122.308624, 37.887335 ], [ -122.308881, 37.887420 ], [ -122.309053, 37.887437 ], [ -122.308967, 37.888775 ], [ -122.308345, 37.890079 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3016", "GEOID10": "060014203003016", "NAME10": "Block 3016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12044, "AWATER10": 0, "INTPTLAT10": "+37.8899556", "INTPTLON10": "-122.3067458" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306414, 37.890807 ], [ -122.306242, 37.890248 ], [ -122.306607, 37.890197 ], [ -122.306306, 37.890096 ], [ -122.306135, 37.889909 ], [ -122.306027, 37.889588 ], [ -122.307487, 37.889317 ], [ -122.307529, 37.889537 ], [ -122.306821, 37.890688 ], [ -122.306714, 37.890739 ], [ -122.306414, 37.890807 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3017", "GEOID10": "060014203003017", "NAME10": "Block 3017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 393, "AWATER10": 0, "INTPTLAT10": "+37.8901345", "INTPTLON10": "-122.3063016" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306242, 37.890248 ], [ -122.306135, 37.889909 ], [ -122.306306, 37.890096 ], [ -122.306607, 37.890197 ], [ -122.306242, 37.890248 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3012", "GEOID10": "060014203003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14539, "AWATER10": 0, "INTPTLAT10": "+37.8894024", "INTPTLON10": "-122.3080555" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307894, 37.890976 ], [ -122.307529, 37.889503 ], [ -122.308323, 37.888047 ], [ -122.308495, 37.887640 ], [ -122.308538, 37.888284 ], [ -122.308366, 37.888995 ], [ -122.308323, 37.889520 ], [ -122.308345, 37.890079 ], [ -122.307894, 37.890976 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3029", "GEOID10": "060014203003029", "NAME10": "Block 3029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14565, "AWATER10": 0, "INTPTLAT10": "+37.8878852", "INTPTLON10": "-122.3078467" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307701, 37.889181 ], [ -122.307208, 37.887200 ], [ -122.307851, 37.887200 ], [ -122.308130, 37.887234 ], [ -122.308624, 37.887335 ], [ -122.308581, 37.887454 ], [ -122.308323, 37.888047 ], [ -122.307701, 37.889181 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3018", "GEOID10": "060014203003018", "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9739, "AWATER10": 0, "INTPTLAT10": "+37.8891261", "INTPTLON10": "-122.3066496" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306027, 37.889588 ], [ -122.305834, 37.888961 ], [ -122.307293, 37.888673 ], [ -122.307487, 37.889317 ], [ -122.306027, 37.889588 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3028", "GEOID10": "060014203003028", "NAME10": "Block 3028", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 444, "AWATER10": 0, "INTPTLAT10": "+37.8890070", "INTPTLON10": "-122.3053896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304976, 37.889130 ], [ -122.304955, 37.889080 ], [ -122.305813, 37.888910 ], [ -122.305834, 37.888961 ], [ -122.304976, 37.889130 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3015", "GEOID10": "060014203003015", "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 782, "AWATER10": 0, "INTPTLAT10": "+37.8887826", "INTPTLON10": "-122.3065328" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305834, 37.888961 ], [ -122.305813, 37.888910 ], [ -122.307293, 37.888622 ], [ -122.307293, 37.888673 ], [ -122.305834, 37.888961 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3014", "GEOID10": "060014203003014", "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10339, "AWATER10": 0, "INTPTLAT10": "+37.8884185", "INTPTLON10": "-122.3064403" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305813, 37.888910 ], [ -122.305598, 37.888250 ], [ -122.307122, 37.887945 ], [ -122.307293, 37.888622 ], [ -122.305813, 37.888910 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3013", "GEOID10": "060014203003013", "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7694, "AWATER10": 0, "INTPTLAT10": "+37.8877645", "INTPTLON10": "-122.3071265" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307529, 37.889503 ], [ -122.307079, 37.887793 ], [ -122.307014, 37.887573 ], [ -122.306950, 37.887471 ], [ -122.306821, 37.887454 ], [ -122.306070, 37.887505 ], [ -122.305512, 37.887505 ], [ -122.305427, 37.887471 ], [ -122.306993, 37.887200 ], [ -122.307208, 37.887200 ], [ -122.307701, 37.889181 ], [ -122.307529, 37.889503 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1008", "GEOID10": "060014204001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 447, "AWATER10": 0, "INTPTLAT10": "+37.8873248", "INTPTLON10": "-122.3088095" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309053, 37.887437 ], [ -122.308881, 37.887420 ], [ -122.308624, 37.887335 ], [ -122.308667, 37.887217 ], [ -122.308967, 37.887335 ], [ -122.309053, 37.887437 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1009", "GEOID10": "060014204001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7572, "AWATER10": 0, "INTPTLAT10": "+37.8865874", "INTPTLON10": "-122.3090315" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309053, 37.887437 ], [ -122.308967, 37.887335 ], [ -122.308667, 37.887217 ], [ -122.308838, 37.886472 ], [ -122.309010, 37.885388 ], [ -122.309010, 37.885134 ], [ -122.309268, 37.886319 ], [ -122.309332, 37.886827 ], [ -122.309289, 37.887318 ], [ -122.309053, 37.887437 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1010", "GEOID10": "060014204001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6192, "AWATER10": 0, "INTPTLAT10": "+37.8856733", "INTPTLON10": "-122.3091896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.309289, 37.887318 ], [ -122.309332, 37.886827 ], [ -122.309268, 37.886319 ], [ -122.309010, 37.885134 ], [ -122.308645, 37.883491 ], [ -122.308881, 37.884016 ], [ -122.309525, 37.886455 ], [ -122.309525, 37.887064 ], [ -122.309461, 37.887166 ], [ -122.309289, 37.887318 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1006", "GEOID10": "060014204001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59431, "AWATER10": 0, "INTPTLAT10": "+37.8849426", "INTPTLON10": "-122.3081455" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308667, 37.887217 ], [ -122.308044, 37.887098 ], [ -122.307401, 37.887064 ], [ -122.307229, 37.887081 ], [ -122.307358, 37.886726 ], [ -122.307572, 37.884169 ], [ -122.307830, 37.882018 ], [ -122.308366, 37.882187 ], [ -122.308645, 37.883491 ], [ -122.309010, 37.885134 ], [ -122.309010, 37.885388 ], [ -122.308838, 37.886472 ], [ -122.308667, 37.887217 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1007", "GEOID10": "060014204001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1737, "AWATER10": 0, "INTPTLAT10": "+37.8871632", "INTPTLON10": "-122.3079226" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308624, 37.887335 ], [ -122.308517, 37.887318 ], [ -122.307851, 37.887200 ], [ -122.307208, 37.887200 ], [ -122.307229, 37.887081 ], [ -122.307401, 37.887064 ], [ -122.308044, 37.887098 ], [ -122.308667, 37.887217 ], [ -122.308624, 37.887335 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3031", "GEOID10": "060014203003031", "NAME10": "Block 3031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9685, "AWATER10": 0, "INTPTLAT10": "+37.8877891", "INTPTLON10": "-122.3061951" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305598, 37.888250 ], [ -122.305341, 37.887471 ], [ -122.305427, 37.887471 ], [ -122.305512, 37.887505 ], [ -122.306070, 37.887505 ], [ -122.306907, 37.887454 ], [ -122.306993, 37.887522 ], [ -122.307122, 37.887945 ], [ -122.305598, 37.888250 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1005", "GEOID10": "060014204001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 52400, "AWATER10": 0, "INTPTLAT10": "+37.8837458", "INTPTLON10": "-122.3069617" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307165, 37.887081 ], [ -122.307100, 37.886878 ], [ -122.306800, 37.885591 ], [ -122.306178, 37.883271 ], [ -122.305813, 37.882102 ], [ -122.307100, 37.881882 ], [ -122.307315, 37.881916 ], [ -122.307358, 37.881865 ], [ -122.307830, 37.882018 ], [ -122.307572, 37.884169 ], [ -122.307358, 37.886726 ], [ -122.307229, 37.887081 ], [ -122.307165, 37.887081 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3021", "GEOID10": "060014203003021", "NAME10": "Block 3021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11997, "AWATER10": 0, "INTPTLAT10": "+37.8902784", "INTPTLON10": "-122.3030396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303088, 37.891603 ], [ -122.302465, 37.889622 ], [ -122.303302, 37.889452 ], [ -122.303560, 37.890350 ], [ -122.303324, 37.890841 ], [ -122.303088, 37.891603 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3019", "GEOID10": "060014203003019", "NAME10": "Block 3019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17581, "AWATER10": 0, "INTPTLAT10": "+37.8895455", "INTPTLON10": "-122.3046051" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303560, 37.890350 ], [ -122.303302, 37.889452 ], [ -122.305834, 37.888961 ], [ -122.306027, 37.889588 ], [ -122.304161, 37.889977 ], [ -122.303967, 37.890045 ], [ -122.303731, 37.890180 ], [ -122.303560, 37.890350 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3020", "GEOID10": "060014203003020", "NAME10": "Block 3020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 409, "AWATER10": 0, "INTPTLAT10": "+37.8891773", "INTPTLON10": "-122.3045386" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304139, 37.889283 ], [ -122.304118, 37.889249 ], [ -122.304955, 37.889080 ], [ -122.304976, 37.889130 ], [ -122.304139, 37.889283 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3027", "GEOID10": "060014203003027", "NAME10": "Block 3027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13106, "AWATER10": 0, "INTPTLAT10": "+37.8882387", "INTPTLON10": "-122.3051246" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304955, 37.889080 ], [ -122.304461, 37.887522 ], [ -122.305341, 37.887471 ], [ -122.305813, 37.888910 ], [ -122.304955, 37.889080 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3026", "GEOID10": "060014203003026", "NAME10": "Block 3026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14219, "AWATER10": 0, "INTPTLAT10": "+37.8883405", "INTPTLON10": "-122.3042616" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304118, 37.889249 ], [ -122.303581, 37.887556 ], [ -122.304461, 37.887522 ], [ -122.304955, 37.889080 ], [ -122.304118, 37.889249 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3025", "GEOID10": "060014203003025", "NAME10": "Block 3025", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 406, "AWATER10": 0, "INTPTLAT10": "+37.8893398", "INTPTLON10": "-122.3036979" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303302, 37.889452 ], [ -122.303281, 37.889401 ], [ -122.304118, 37.889249 ], [ -122.304139, 37.889283 ], [ -122.303302, 37.889452 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3022", "GEOID10": "060014203003022", "NAME10": "Block 3022", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 411, "AWATER10": 0, "INTPTLAT10": "+37.8895077", "INTPTLON10": "-122.3028537" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302465, 37.889622 ], [ -122.302444, 37.889571 ], [ -122.303281, 37.889401 ], [ -122.303302, 37.889452 ], [ -122.302465, 37.889622 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3024", "GEOID10": "060014203003024", "NAME10": "Block 3024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15240, "AWATER10": 0, "INTPTLAT10": "+37.8884411", "INTPTLON10": "-122.3034025" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303281, 37.889401 ], [ -122.302701, 37.887589 ], [ -122.303581, 37.887556 ], [ -122.304118, 37.889249 ], [ -122.303281, 37.889401 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "GEOID10": "060014203001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.8906969", "INTPTLON10": "-122.3023492" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302251, 37.891772 ], [ -122.301714, 37.890113 ], [ -122.301650, 37.889791 ], [ -122.302465, 37.889622 ], [ -122.303088, 37.891603 ], [ -122.302251, 37.891772 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1006", "GEOID10": "060014203001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17308, "AWATER10": 0, "INTPTLAT10": "+37.8908584", "INTPTLON10": "-122.3015099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301435, 37.891942 ], [ -122.300770, 37.889960 ], [ -122.301650, 37.889791 ], [ -122.301714, 37.890113 ], [ -122.302251, 37.891772 ], [ -122.301435, 37.891942 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1004", "GEOID10": "060014203001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17893, "AWATER10": 0, "INTPTLAT10": "+37.8912006", "INTPTLON10": "-122.2998090" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299719, 37.892297 ], [ -122.299547, 37.891806 ], [ -122.299054, 37.890265 ], [ -122.299311, 37.890248 ], [ -122.299933, 37.890130 ], [ -122.300577, 37.892111 ], [ -122.299719, 37.892297 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "GEOID10": "060014203001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.8910287", "INTPTLON10": "-122.3006658" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300577, 37.892111 ], [ -122.299933, 37.890130 ], [ -122.300770, 37.889960 ], [ -122.301435, 37.891942 ], [ -122.300577, 37.892111 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3023", "GEOID10": "060014203003023", "NAME10": "Block 3023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16332, "AWATER10": 0, "INTPTLAT10": "+37.8885408", "INTPTLON10": "-122.3025479" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302444, 37.889571 ], [ -122.301822, 37.887623 ], [ -122.302701, 37.887589 ], [ -122.303281, 37.889401 ], [ -122.302444, 37.889571 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1010", "GEOID10": "060014203001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20386, "AWATER10": 0, "INTPTLAT10": "+37.8886345", "INTPTLON10": "-122.3016225" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301650, 37.889791 ], [ -122.300684, 37.887742 ], [ -122.301822, 37.887623 ], [ -122.302444, 37.889571 ], [ -122.302465, 37.889622 ], [ -122.301650, 37.889791 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1012", "GEOID10": "060014203001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 372, "AWATER10": 0, "INTPTLAT10": "+37.8900118", "INTPTLON10": "-122.3003351" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299933, 37.890130 ], [ -122.299912, 37.890079 ], [ -122.300770, 37.889909 ], [ -122.300770, 37.889960 ], [ -122.300105, 37.890096 ], [ -122.299933, 37.890130 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1011", "GEOID10": "060014203001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16453, "AWATER10": 0, "INTPTLAT10": "+37.8888638", "INTPTLON10": "-122.3008054" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300770, 37.889960 ], [ -122.300062, 37.887725 ], [ -122.300684, 37.887742 ], [ -122.301650, 37.889791 ], [ -122.300770, 37.889960 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1015", "GEOID10": "060014203001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19773, "AWATER10": 0, "INTPTLAT10": "+37.8888596", "INTPTLON10": "-122.2999642" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299912, 37.890079 ], [ -122.299182, 37.887742 ], [ -122.300062, 37.887725 ], [ -122.300770, 37.889909 ], [ -122.299912, 37.890079 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1002", "GEOID10": "060014204001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5453, "AWATER10": 0, "INTPTLAT10": "+37.8874129", "INTPTLON10": "-122.3045679" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302101, 37.887606 ], [ -122.302079, 37.887505 ], [ -122.305834, 37.887318 ], [ -122.307229, 37.887081 ], [ -122.307208, 37.887200 ], [ -122.306993, 37.887200 ], [ -122.305427, 37.887471 ], [ -122.302208, 37.887606 ], [ -122.302101, 37.887606 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1001", "GEOID10": "060014204001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 98716, "AWATER10": 0, "INTPTLAT10": "+37.8865962", "INTPTLON10": "-122.3039801" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300684, 37.887742 ], [ -122.300963, 37.887657 ], [ -122.300513, 37.886319 ], [ -122.302337, 37.886031 ], [ -122.304590, 37.885845 ], [ -122.304482, 37.885337 ], [ -122.306800, 37.885591 ], [ -122.307165, 37.887081 ], [ -122.305834, 37.887318 ], [ -122.302079, 37.887505 ], [ -122.302101, 37.887606 ], [ -122.300684, 37.887742 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "GEOID10": "060014204001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.8847438", "INTPTLON10": "-122.3040957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304225, 37.885879 ], [ -122.303903, 37.884744 ], [ -122.303603, 37.883660 ], [ -122.303967, 37.883593 ], [ -122.304525, 37.885473 ], [ -122.304590, 37.885845 ], [ -122.304225, 37.885879 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "GEOID10": "060014204001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.8837071", "INTPTLON10": "-122.3049494" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306800, 37.885591 ], [ -122.304482, 37.885337 ], [ -122.303967, 37.883593 ], [ -122.303452, 37.883694 ], [ -122.303431, 37.882881 ], [ -122.302938, 37.883017 ], [ -122.302616, 37.883068 ], [ -122.302444, 37.882763 ], [ -122.302358, 37.882509 ], [ -122.302530, 37.882458 ], [ -122.302744, 37.882458 ], [ -122.302959, 37.882407 ], [ -122.303131, 37.882323 ], [ -122.303324, 37.882289 ], [ -122.303967, 37.882255 ], [ -122.304525, 37.882272 ], [ -122.305233, 37.882221 ], [ -122.305813, 37.882102 ], [ -122.306199, 37.883322 ], [ -122.306800, 37.885591 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1017", "GEOID10": "060014204001017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6144, "AWATER10": 0, "INTPTLAT10": "+37.8847470", "INTPTLON10": "-122.3037488" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303946, 37.885896 ], [ -122.303903, 37.885659 ], [ -122.303302, 37.883711 ], [ -122.303603, 37.883660 ], [ -122.304225, 37.885879 ], [ -122.303946, 37.885896 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1013", "GEOID10": "060014204001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9671, "AWATER10": 0, "INTPTLAT10": "+37.8848967", "INTPTLON10": "-122.3034182" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303431, 37.885947 ], [ -122.302959, 37.883796 ], [ -122.303302, 37.883711 ], [ -122.303903, 37.885659 ], [ -122.303946, 37.885896 ], [ -122.303431, 37.885947 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "GEOID10": "060014204001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.8846770", "INTPTLON10": "-122.3015769" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300513, 37.886319 ], [ -122.299933, 37.884440 ], [ -122.299912, 37.884067 ], [ -122.299805, 37.884084 ], [ -122.299826, 37.883881 ], [ -122.300019, 37.883389 ], [ -122.300234, 37.883220 ], [ -122.300534, 37.883288 ], [ -122.300663, 37.883356 ], [ -122.300856, 37.883406 ], [ -122.300985, 37.883406 ], [ -122.300942, 37.883389 ], [ -122.300985, 37.883356 ], [ -122.301114, 37.883356 ], [ -122.301414, 37.883271 ], [ -122.301607, 37.883254 ], [ -122.301650, 37.883220 ], [ -122.302079, 37.883119 ], [ -122.302616, 37.883068 ], [ -122.302959, 37.883796 ], [ -122.303431, 37.885947 ], [ -122.302508, 37.886014 ], [ -122.301800, 37.886099 ], [ -122.300513, 37.886319 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1004", "GEOID10": "060014204001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5050, "AWATER10": 0, "INTPTLAT10": "+37.8833234", "INTPTLON10": "-122.3030968" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302959, 37.883796 ], [ -122.302616, 37.883068 ], [ -122.302938, 37.883017 ], [ -122.303431, 37.882881 ], [ -122.303452, 37.883694 ], [ -122.302959, 37.883796 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "GEOID10": "060014204001020", "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.8829654", "INTPTLON10": "-122.3013966" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300856, 37.883406 ], [ -122.300663, 37.883356 ], [ -122.300534, 37.883288 ], [ -122.300341, 37.883254 ], [ -122.300298, 37.883220 ], [ -122.300277, 37.883119 ], [ -122.300212, 37.882881 ], [ -122.300642, 37.882814 ], [ -122.301092, 37.882780 ], [ -122.301908, 37.882577 ], [ -122.302337, 37.882509 ], [ -122.302616, 37.883068 ], [ -122.302079, 37.883119 ], [ -122.301650, 37.883220 ], [ -122.301607, 37.883254 ], [ -122.301414, 37.883271 ], [ -122.301114, 37.883356 ], [ -122.300985, 37.883356 ], [ -122.300942, 37.883389 ], [ -122.300985, 37.883406 ], [ -122.300856, 37.883406 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "GEOID10": "060014202001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.8977494", "INTPTLON10": "-122.2990695" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298861, 37.898478 ], [ -122.298453, 37.897208 ], [ -122.299290, 37.897055 ], [ -122.299719, 37.898291 ], [ -122.299397, 37.898325 ], [ -122.298861, 37.898478 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1002", "GEOID10": "060014202001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11372, "AWATER10": 0, "INTPTLAT10": "+37.8979512", "INTPTLON10": "-122.2982332" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298045, 37.898749 ], [ -122.297616, 37.897394 ], [ -122.298453, 37.897208 ], [ -122.298861, 37.898478 ], [ -122.298045, 37.898749 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1001", "GEOID10": "060014202001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11928, "AWATER10": 0, "INTPTLAT10": "+37.8981515", "INTPTLON10": "-122.2974109" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297208, 37.898901 ], [ -122.296779, 37.897546 ], [ -122.297616, 37.897394 ], [ -122.298045, 37.898749 ], [ -122.297788, 37.898833 ], [ -122.297208, 37.898901 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1000", "GEOID10": "060014202001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13452, "AWATER10": 0, "INTPTLAT10": "+37.8982712", "INTPTLON10": "-122.2964744" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296221, 37.898935 ], [ -122.295706, 37.897767 ], [ -122.296779, 37.897546 ], [ -122.297208, 37.898901 ], [ -122.297015, 37.898935 ], [ -122.296221, 37.898935 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "GEOID10": "060014202001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.8966536", "INTPTLON10": "-122.2969317" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296779, 37.897546 ], [ -122.296264, 37.895938 ], [ -122.297080, 37.895768 ], [ -122.297616, 37.897394 ], [ -122.296779, 37.897546 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1013", "GEOID10": "060014202001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14541, "AWATER10": 0, "INTPTLAT10": "+37.8968185", "INTPTLON10": "-122.2960835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295921, 37.897733 ], [ -122.295406, 37.896090 ], [ -122.296264, 37.895938 ], [ -122.296779, 37.897546 ], [ -122.295921, 37.897733 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1006", "GEOID10": "060014201001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14453, "AWATER10": 0, "INTPTLAT10": "+37.8983329", "INTPTLON10": "-122.2952807" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295985, 37.898935 ], [ -122.294569, 37.898749 ], [ -122.294590, 37.897750 ], [ -122.295706, 37.897767 ], [ -122.296221, 37.898935 ], [ -122.295985, 37.898935 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "GEOID10": "060014202001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.8961439", "INTPTLON10": "-122.2994424" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897055 ], [ -122.298775, 37.895430 ], [ -122.299612, 37.895260 ], [ -122.300127, 37.896869 ], [ -122.299290, 37.897055 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "GEOID10": "060014202001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.8963113", "INTPTLON10": "-122.2986013" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298453, 37.897208 ], [ -122.297938, 37.895599 ], [ -122.298775, 37.895430 ], [ -122.299290, 37.897055 ], [ -122.298453, 37.897208 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "GEOID10": "060014202003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.8945232", "INTPTLON10": "-122.2989229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895430 ], [ -122.298260, 37.893821 ], [ -122.299075, 37.893635 ], [ -122.299612, 37.895260 ], [ -122.298775, 37.895430 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "GEOID10": "060014202001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.8964819", "INTPTLON10": "-122.2977622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297616, 37.897394 ], [ -122.297080, 37.895768 ], [ -122.297938, 37.895599 ], [ -122.298453, 37.897208 ], [ -122.297616, 37.897394 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "GEOID10": "060014202003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.8946922", "INTPTLON10": "-122.2980853" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297938, 37.895599 ], [ -122.297423, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895430 ], [ -122.297938, 37.895599 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "GEOID10": "060014202002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.8948540", "INTPTLON10": "-122.2972427" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297080, 37.895768 ], [ -122.296565, 37.894126 ], [ -122.297423, 37.893957 ], [ -122.297938, 37.895599 ], [ -122.297080, 37.895768 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "GEOID10": "060014202003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.8943454", "INTPTLON10": "-122.2997703" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299612, 37.895260 ], [ -122.299075, 37.893635 ], [ -122.299955, 37.893466 ], [ -122.300470, 37.895074 ], [ -122.299612, 37.895260 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "GEOID10": "060014202003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.8927197", "INTPTLON10": "-122.2992493" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299075, 37.893635 ], [ -122.298560, 37.891992 ], [ -122.299418, 37.891823 ], [ -122.299590, 37.892314 ], [ -122.299955, 37.893466 ], [ -122.299075, 37.893635 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3006", "GEOID10": "060014202003006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14044, "AWATER10": 0, "INTPTLAT10": "+37.8928963", "INTPTLON10": "-122.2984024" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298260, 37.893821 ], [ -122.297745, 37.892179 ], [ -122.298560, 37.891992 ], [ -122.299075, 37.893635 ], [ -122.298260, 37.893821 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "GEOID10": "060014202003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.8930639", "INTPTLON10": "-122.2975700" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297423, 37.893957 ], [ -122.296908, 37.892348 ], [ -122.297745, 37.892179 ], [ -122.298260, 37.893821 ], [ -122.297423, 37.893957 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "GEOID10": "060014202002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.8950194", "INTPTLON10": "-122.2964053" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296264, 37.895938 ], [ -122.295749, 37.894295 ], [ -122.296565, 37.894126 ], [ -122.297080, 37.895768 ], [ -122.296264, 37.895938 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2000", "GEOID10": "060014202002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7737, "AWATER10": 0, "INTPTLAT10": "+37.8960946", "INTPTLON10": "-122.2952742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295706, 37.897767 ], [ -122.294655, 37.894532 ], [ -122.294891, 37.894482 ], [ -122.295921, 37.897733 ], [ -122.295749, 37.897767 ], [ -122.295706, 37.897767 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1007", "GEOID10": "060014201001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17265, "AWATER10": 0, "INTPTLAT10": "+37.8966238", "INTPTLON10": "-122.2949725" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295706, 37.897767 ], [ -122.294590, 37.897750 ], [ -122.294719, 37.895379 ], [ -122.294397, 37.894566 ], [ -122.294655, 37.894532 ], [ -122.295706, 37.897767 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2003", "GEOID10": "060014202002003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14449, "AWATER10": 0, "INTPTLAT10": "+37.8951947", "INTPTLON10": "-122.2955660" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295406, 37.896090 ], [ -122.294891, 37.894482 ], [ -122.295749, 37.894295 ], [ -122.296264, 37.895938 ], [ -122.295406, 37.896090 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2007", "GEOID10": "060014202002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14053, "AWATER10": 0, "INTPTLAT10": "+37.8933931", "INTPTLON10": "-122.2958883" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295749, 37.894295 ], [ -122.295234, 37.892687 ], [ -122.296071, 37.892517 ], [ -122.296565, 37.894126 ], [ -122.295749, 37.894295 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2006", "GEOID10": "060014202002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14158, "AWATER10": 0, "INTPTLAT10": "+37.8932322", "INTPTLON10": "-122.2967302" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296565, 37.894126 ], [ -122.296071, 37.892517 ], [ -122.296908, 37.892348 ], [ -122.297423, 37.893957 ], [ -122.296565, 37.894126 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2002", "GEOID10": "060014202002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14523, "AWATER10": 0, "INTPTLAT10": "+37.8935661", "INTPTLON10": "-122.2950398" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294891, 37.894482 ], [ -122.294354, 37.892856 ], [ -122.295234, 37.892687 ], [ -122.295749, 37.894295 ], [ -122.294891, 37.894482 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2001", "GEOID10": "060014202002001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3995, "AWATER10": 0, "INTPTLAT10": "+37.8936801", "INTPTLON10": "-122.2944928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294655, 37.894532 ], [ -122.294118, 37.892856 ], [ -122.294354, 37.892856 ], [ -122.294891, 37.894482 ], [ -122.294655, 37.894532 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1005", "GEOID10": "060014201001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8083, "AWATER10": 0, "INTPTLAT10": "+37.8982104", "INTPTLON10": "-122.2941387" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294569, 37.898749 ], [ -122.293689, 37.898647 ], [ -122.293668, 37.898528 ], [ -122.293711, 37.898393 ], [ -122.293732, 37.897716 ], [ -122.294590, 37.897750 ], [ -122.294569, 37.898749 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1004", "GEOID10": "060014201001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6640, "AWATER10": 0, "INTPTLAT10": "+37.8980962", "INTPTLON10": "-122.2932964" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293689, 37.898647 ], [ -122.293582, 37.898630 ], [ -122.293196, 37.898427 ], [ -122.292831, 37.898376 ], [ -122.292852, 37.897699 ], [ -122.293732, 37.897716 ], [ -122.293711, 37.898393 ], [ -122.293668, 37.898528 ], [ -122.293689, 37.898647 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1003", "GEOID10": "060014201001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1246, "AWATER10": 0, "INTPTLAT10": "+37.8980064", "INTPTLON10": "-122.2927412" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292831, 37.898376 ], [ -122.292659, 37.898342 ], [ -122.292659, 37.897987 ], [ -122.292616, 37.897699 ], [ -122.292852, 37.897699 ], [ -122.292831, 37.898376 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1010", "GEOID10": "060014201001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2269, "AWATER10": 0, "INTPTLAT10": "+37.8971964", "INTPTLON10": "-122.2927567" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292616, 37.897699 ], [ -122.292681, 37.896717 ], [ -122.292917, 37.896734 ], [ -122.292852, 37.897699 ], [ -122.292616, 37.897699 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1002", "GEOID10": "060014201001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14980, "AWATER10": 0, "INTPTLAT10": "+37.8974821", "INTPTLON10": "-122.2921539" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292659, 37.898342 ], [ -122.291994, 37.898241 ], [ -122.291608, 37.898105 ], [ -122.291715, 37.896700 ], [ -122.292681, 37.896717 ], [ -122.292616, 37.897699 ], [ -122.292659, 37.897987 ], [ -122.292659, 37.898342 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1001", "GEOID10": "060014201001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11297, "AWATER10": 0, "INTPTLAT10": "+37.8973215", "INTPTLON10": "-122.2912175" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291608, 37.898105 ], [ -122.291093, 37.897936 ], [ -122.290728, 37.897902 ], [ -122.290814, 37.896666 ], [ -122.291715, 37.896700 ], [ -122.291608, 37.898105 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1000", "GEOID10": "060014201001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10019, "AWATER10": 0, "INTPTLAT10": "+37.8972478", "INTPTLON10": "-122.2903402" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290728, 37.897902 ], [ -122.290192, 37.897834 ], [ -122.289870, 37.897834 ], [ -122.289977, 37.896649 ], [ -122.290814, 37.896666 ], [ -122.290728, 37.897902 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2005", "GEOID10": "060014201002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10320, "AWATER10": 0, "INTPTLAT10": "+37.8972288", "INTPTLON10": "-122.2894724" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289011, 37.897885 ], [ -122.289097, 37.896615 ], [ -122.289977, 37.896649 ], [ -122.289870, 37.897834 ], [ -122.289484, 37.897834 ], [ -122.289011, 37.897885 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1008", "GEOID10": "060014201001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25122, "AWATER10": 0, "INTPTLAT10": "+37.8962273", "INTPTLON10": "-122.2942136" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294590, 37.897750 ], [ -122.293732, 37.897716 ], [ -122.293882, 37.894685 ], [ -122.294397, 37.894566 ], [ -122.294719, 37.895379 ], [ -122.294590, 37.897750 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1009", "GEOID10": "060014201001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24911, "AWATER10": 0, "INTPTLAT10": "+37.8962389", "INTPTLON10": "-122.2933649" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293732, 37.897716 ], [ -122.292852, 37.897699 ], [ -122.293003, 37.894871 ], [ -122.293882, 37.894685 ], [ -122.293839, 37.895294 ], [ -122.293732, 37.897716 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1011", "GEOID10": "060014201001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4495, "AWATER10": 0, "INTPTLAT10": "+37.8957842", "INTPTLON10": "-122.2928245" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292917, 37.896734 ], [ -122.292681, 37.896717 ], [ -122.292745, 37.894871 ], [ -122.293003, 37.894871 ], [ -122.292917, 37.896734 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1016", "GEOID10": "060014201001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8255, "AWATER10": 0, "INTPTLAT10": "+37.8939086", "INTPTLON10": "-122.2941575" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293882, 37.894685 ], [ -122.293947, 37.892856 ], [ -122.294118, 37.892856 ], [ -122.294655, 37.894532 ], [ -122.293882, 37.894685 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1015", "GEOID10": "060014201001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16238, "AWATER10": 0, "INTPTLAT10": "+37.8938032", "INTPTLON10": "-122.2934559" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293003, 37.894871 ], [ -122.293088, 37.892839 ], [ -122.293947, 37.892856 ], [ -122.293882, 37.894685 ], [ -122.293003, 37.894871 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1014", "GEOID10": "060014201001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5007, "AWATER10": 0, "INTPTLAT10": "+37.8938437", "INTPTLON10": "-122.2929060" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292745, 37.894871 ], [ -122.292831, 37.892822 ], [ -122.293088, 37.892839 ], [ -122.293003, 37.894871 ], [ -122.292745, 37.894871 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1013", "GEOID10": "060014201001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18897, "AWATER10": 0, "INTPTLAT10": "+37.8938347", "INTPTLON10": "-122.2923093" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292745, 37.894871 ], [ -122.291801, 37.894854 ], [ -122.291887, 37.892822 ], [ -122.292831, 37.892822 ], [ -122.292745, 37.894871 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1012", "GEOID10": "060014201001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 48606, "AWATER10": 0, "INTPTLAT10": "+37.8957510", "INTPTLON10": "-122.2913507" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292681, 37.896717 ], [ -122.289977, 37.896649 ], [ -122.289999, 37.895836 ], [ -122.290063, 37.894786 ], [ -122.292745, 37.894871 ], [ -122.292681, 37.896717 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2006", "GEOID10": "060014201002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15730, "AWATER10": 0, "INTPTLAT10": "+37.8956964", "INTPTLON10": "-122.2895702" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289977, 37.896649 ], [ -122.289097, 37.896615 ], [ -122.289205, 37.894769 ], [ -122.290063, 37.894786 ], [ -122.289977, 37.896649 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3001", "GEOID10": "060014201003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16246, "AWATER10": 0, "INTPTLAT10": "+37.8938831", "INTPTLON10": "-122.2913917" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291801, 37.894854 ], [ -122.290921, 37.894820 ], [ -122.290986, 37.892941 ], [ -122.291887, 37.892974 ], [ -122.291801, 37.894854 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3000", "GEOID10": "060014201003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15665, "AWATER10": 0, "INTPTLAT10": "+37.8938607", "INTPTLON10": "-122.2905229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290921, 37.894820 ], [ -122.290063, 37.894786 ], [ -122.290149, 37.892907 ], [ -122.290986, 37.892941 ], [ -122.290921, 37.894820 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2015", "GEOID10": "060014201002015", "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15921, "AWATER10": 0, "INTPTLAT10": "+37.8938332", "INTPTLON10": "-122.2896635" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290063, 37.894786 ], [ -122.289205, 37.894769 ], [ -122.289290, 37.892890 ], [ -122.290149, 37.892907 ], [ -122.290063, 37.894786 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2004", "GEOID10": "060014201002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11206, "AWATER10": 0, "INTPTLAT10": "+37.8972632", "INTPTLON10": "-122.2886022" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288175, 37.898105 ], [ -122.288218, 37.896598 ], [ -122.289097, 37.896615 ], [ -122.289011, 37.897885 ], [ -122.288496, 37.897936 ], [ -122.288175, 37.898105 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2003", "GEOID10": "060014201002003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1027, "AWATER10": 0, "INTPTLAT10": "+37.8973454", "INTPTLON10": "-122.2881508" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288110, 37.898156 ], [ -122.288153, 37.896598 ], [ -122.288218, 37.896598 ], [ -122.288175, 37.897800 ], [ -122.288175, 37.898105 ], [ -122.288110, 37.898156 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2002", "GEOID10": "060014201002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16183, "AWATER10": 0, "INTPTLAT10": "+37.8975006", "INTPTLON10": "-122.2876349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287145, 37.898647 ], [ -122.287273, 37.896564 ], [ -122.288153, 37.896598 ], [ -122.288110, 37.898156 ], [ -122.287145, 37.898647 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2000", "GEOID10": "060014201002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 948, "AWATER10": 0, "INTPTLAT10": "+37.8984122", "INTPTLON10": "-122.2870554" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286952, 37.898715 ], [ -122.287016, 37.898139 ], [ -122.287145, 37.898139 ], [ -122.287188, 37.898156 ], [ -122.287145, 37.898647 ], [ -122.286952, 37.898715 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2001", "GEOID10": "060014201002001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2708, "AWATER10": 0, "INTPTLAT10": "+37.8973380", "INTPTLON10": "-122.2871259" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287188, 37.898156 ], [ -122.287016, 37.898139 ], [ -122.287080, 37.896564 ], [ -122.287273, 37.896564 ], [ -122.287188, 37.898156 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2007", "GEOID10": "060014201002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15930, "AWATER10": 0, "INTPTLAT10": "+37.8956694", "INTPTLON10": "-122.2886965" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289097, 37.896615 ], [ -122.288218, 37.896598 ], [ -122.288303, 37.894736 ], [ -122.289205, 37.894769 ], [ -122.289097, 37.896615 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2008", "GEOID10": "060014201002008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1214, "AWATER10": 0, "INTPTLAT10": "+37.8956738", "INTPTLON10": "-122.2882217" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288153, 37.896598 ], [ -122.288239, 37.894736 ], [ -122.288303, 37.894736 ], [ -122.288303, 37.895108 ], [ -122.288218, 37.896598 ], [ -122.288153, 37.896598 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2009", "GEOID10": "060014201002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15974, "AWATER10": 0, "INTPTLAT10": "+37.8956464", "INTPTLON10": "-122.2877473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288153, 37.896598 ], [ -122.287273, 37.896564 ], [ -122.287359, 37.894719 ], [ -122.288239, 37.894736 ], [ -122.288153, 37.896598 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2010", "GEOID10": "060014201002010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3628, "AWATER10": 0, "INTPTLAT10": "+37.8956076", "INTPTLON10": "-122.2872058" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287080, 37.896564 ], [ -122.287145, 37.894719 ], [ -122.287359, 37.894719 ], [ -122.287273, 37.896564 ], [ -122.287080, 37.896564 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2014", "GEOID10": "060014201002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16117, "AWATER10": 0, "INTPTLAT10": "+37.8938093", "INTPTLON10": "-122.2887874" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289205, 37.894769 ], [ -122.288303, 37.894736 ], [ -122.288411, 37.892873 ], [ -122.289290, 37.892890 ], [ -122.289205, 37.894769 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2013", "GEOID10": "060014201002013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1269, "AWATER10": 0, "INTPTLAT10": "+37.8937720", "INTPTLON10": "-122.2883131" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288239, 37.894736 ], [ -122.288325, 37.892873 ], [ -122.288411, 37.892873 ], [ -122.288303, 37.894736 ], [ -122.288239, 37.894736 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2012", "GEOID10": "060014201002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16253, "AWATER10": 0, "INTPTLAT10": "+37.8937801", "INTPTLON10": "-122.2878360" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288239, 37.894736 ], [ -122.287359, 37.894719 ], [ -122.287445, 37.892822 ], [ -122.288325, 37.892873 ], [ -122.288239, 37.894736 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2011", "GEOID10": "060014201002011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4556, "AWATER10": 0, "INTPTLAT10": "+37.8937317", "INTPTLON10": "-122.2872753" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287145, 37.894719 ], [ -122.287188, 37.892822 ], [ -122.287445, 37.892822 ], [ -122.287359, 37.894719 ], [ -122.287145, 37.894719 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3012", "GEOID10": "060014202003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 636, "AWATER10": 0, "INTPTLAT10": "+37.8920512", "INTPTLON10": "-122.2995612" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299590, 37.892314 ], [ -122.299418, 37.891823 ], [ -122.299547, 37.891806 ], [ -122.299719, 37.892297 ], [ -122.299590, 37.892314 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3010", "GEOID10": "060014202003010", "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14291, "AWATER10": 0, "INTPTLAT10": "+37.8911018", "INTPTLON10": "-122.2987261" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298560, 37.891992 ], [ -122.298045, 37.890333 ], [ -122.298946, 37.890282 ], [ -122.299418, 37.891823 ], [ -122.298560, 37.891992 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3011", "GEOID10": "060014202003011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1922, "AWATER10": 0, "INTPTLAT10": "+37.8910433", "INTPTLON10": "-122.2992359" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299418, 37.891823 ], [ -122.298946, 37.890282 ], [ -122.299054, 37.890265 ], [ -122.299461, 37.891501 ], [ -122.299547, 37.891806 ], [ -122.299418, 37.891823 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1013", "GEOID10": "060014203001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 568, "AWATER10": 0, "INTPTLAT10": "+37.8901726", "INTPTLON10": "-122.2994482" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299054, 37.890265 ], [ -122.299032, 37.890197 ], [ -122.299290, 37.890180 ], [ -122.299912, 37.890079 ], [ -122.299933, 37.890130 ], [ -122.299311, 37.890248 ], [ -122.299054, 37.890265 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1005", "GEOID10": "060014205001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 627, "AWATER10": 0, "INTPTLAT10": "+37.8902672", "INTPTLON10": "-122.2984664" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298045, 37.890333 ], [ -122.298024, 37.890265 ], [ -122.298925, 37.890214 ], [ -122.298946, 37.890282 ], [ -122.298517, 37.890316 ], [ -122.298045, 37.890333 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3009", "GEOID10": "060014202003009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15100, "AWATER10": 0, "INTPTLAT10": "+37.8912058", "INTPTLON10": "-122.2978563" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.892179 ], [ -122.297144, 37.890367 ], [ -122.298045, 37.890333 ], [ -122.298152, 37.890655 ], [ -122.298560, 37.891992 ], [ -122.297745, 37.892179 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1004", "GEOID10": "060014205001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 521, "AWATER10": 0, "INTPTLAT10": "+37.8903091", "INTPTLON10": "-122.2975987" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297144, 37.890367 ], [ -122.297144, 37.890316 ], [ -122.298024, 37.890265 ], [ -122.298045, 37.890333 ], [ -122.297144, 37.890367 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1014", "GEOID10": "060014203001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21543, "AWATER10": 0, "INTPTLAT10": "+37.8889340", "INTPTLON10": "-122.2990835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299032, 37.890197 ], [ -122.298260, 37.887759 ], [ -122.299182, 37.887742 ], [ -122.299912, 37.890079 ], [ -122.299290, 37.890180 ], [ -122.299032, 37.890197 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1008", "GEOID10": "060014205001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 3061, "AWATER10": 0, "INTPTLAT10": "+37.8890168", "INTPTLON10": "-122.2985896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298946, 37.890282 ], [ -122.298131, 37.887776 ], [ -122.298260, 37.887759 ], [ -122.299054, 37.890265 ], [ -122.298946, 37.890282 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1007", "GEOID10": "060014205001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 32096, "AWATER10": 0, "INTPTLAT10": "+37.8884580", "INTPTLON10": "-122.2979153" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298024, 37.890265 ], [ -122.297809, 37.889622 ], [ -122.296929, 37.886878 ], [ -122.297552, 37.886760 ], [ -122.297788, 37.886743 ], [ -122.297766, 37.886675 ], [ -122.297916, 37.886692 ], [ -122.298260, 37.887759 ], [ -122.298131, 37.887776 ], [ -122.298925, 37.890214 ], [ -122.298024, 37.890265 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3008", "GEOID10": "060014202003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16353, "AWATER10": 0, "INTPTLAT10": "+37.8913200", "INTPTLON10": "-122.2970017" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296908, 37.892348 ], [ -122.296264, 37.890417 ], [ -122.297144, 37.890367 ], [ -122.297273, 37.890739 ], [ -122.297745, 37.892179 ], [ -122.296908, 37.892348 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2012", "GEOID10": "060014202002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17230, "AWATER10": 0, "INTPTLAT10": "+37.8914257", "INTPTLON10": "-122.2961445" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296071, 37.892517 ], [ -122.295406, 37.890468 ], [ -122.296264, 37.890417 ], [ -122.296908, 37.892348 ], [ -122.296071, 37.892517 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1003", "GEOID10": "060014205001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 422, "AWATER10": 0, "INTPTLAT10": "+37.8903581", "INTPTLON10": "-122.2966969" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296264, 37.890417 ], [ -122.296264, 37.890367 ], [ -122.297144, 37.890316 ], [ -122.297144, 37.890367 ], [ -122.296972, 37.890384 ], [ -122.296264, 37.890417 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1002", "GEOID10": "060014205001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 411, "AWATER10": 0, "INTPTLAT10": "+37.8904111", "INTPTLON10": "-122.2958187" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295406, 37.890468 ], [ -122.295384, 37.890434 ], [ -122.296264, 37.890367 ], [ -122.296264, 37.890417 ], [ -122.295578, 37.890468 ], [ -122.295406, 37.890468 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2008", "GEOID10": "060014202002008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18377, "AWATER10": 0, "INTPTLAT10": "+37.8915386", "INTPTLON10": "-122.2952863" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295234, 37.892687 ], [ -122.294505, 37.890519 ], [ -122.295406, 37.890468 ], [ -122.296071, 37.892517 ], [ -122.295234, 37.892687 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2009", "GEOID10": "060014202002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19818, "AWATER10": 0, "INTPTLAT10": "+37.8916581", "INTPTLON10": "-122.2944181" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294354, 37.892856 ], [ -122.293625, 37.890570 ], [ -122.294505, 37.890519 ], [ -122.295234, 37.892687 ], [ -122.294354, 37.892856 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1001", "GEOID10": "060014205001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 419, "AWATER10": 0, "INTPTLAT10": "+37.8904693", "INTPTLON10": "-122.2949399" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294505, 37.890519 ], [ -122.294505, 37.890485 ], [ -122.295384, 37.890434 ], [ -122.295406, 37.890468 ], [ -122.294698, 37.890519 ], [ -122.294505, 37.890519 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1015", "GEOID10": "060014205001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29154, "AWATER10": 0, "INTPTLAT10": "+37.8886165", "INTPTLON10": "-122.2970361" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297144, 37.890316 ], [ -122.296093, 37.887064 ], [ -122.296929, 37.886878 ], [ -122.298024, 37.890265 ], [ -122.297144, 37.890316 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1014", "GEOID10": "060014205001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 28068, "AWATER10": 0, "INTPTLAT10": "+37.8887349", "INTPTLON10": "-122.2961756" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296264, 37.890367 ], [ -122.295234, 37.887234 ], [ -122.296093, 37.887064 ], [ -122.297144, 37.890316 ], [ -122.296264, 37.890367 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1010", "GEOID10": "060014205001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26672, "AWATER10": 0, "INTPTLAT10": "+37.8888488", "INTPTLON10": "-122.2953196" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295384, 37.890434 ], [ -122.294419, 37.887386 ], [ -122.295234, 37.887234 ], [ -122.296264, 37.890367 ], [ -122.295384, 37.890434 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1011", "GEOID10": "060014205001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26518, "AWATER10": 0, "INTPTLAT10": "+37.8889300", "INTPTLON10": "-122.2944569" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294505, 37.890485 ], [ -122.293561, 37.887505 ], [ -122.294397, 37.887318 ], [ -122.295384, 37.890434 ], [ -122.294505, 37.890485 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1000", "GEOID10": "060014204001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11282, "AWATER10": 0, "INTPTLAT10": "+37.8873799", "INTPTLON10": "-122.2988707" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298260, 37.887759 ], [ -122.297916, 37.886692 ], [ -122.298152, 37.886743 ], [ -122.298410, 37.886844 ], [ -122.299311, 37.887352 ], [ -122.299569, 37.887471 ], [ -122.300169, 37.887606 ], [ -122.300577, 37.887623 ], [ -122.300684, 37.887657 ], [ -122.300963, 37.887657 ], [ -122.300684, 37.887742 ], [ -122.300062, 37.887725 ], [ -122.298260, 37.887759 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1015", "GEOID10": "060014204001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 79019, "AWATER10": 0, "INTPTLAT10": "+37.8858279", "INTPTLON10": "-122.2991231" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300684, 37.887657 ], [ -122.300577, 37.887623 ], [ -122.300169, 37.887606 ], [ -122.299569, 37.887471 ], [ -122.299311, 37.887352 ], [ -122.298410, 37.886844 ], [ -122.298152, 37.886743 ], [ -122.297916, 37.886692 ], [ -122.297251, 37.884592 ], [ -122.299912, 37.884067 ], [ -122.299933, 37.884440 ], [ -122.300127, 37.885117 ], [ -122.300963, 37.887657 ], [ -122.300684, 37.887657 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1017", "GEOID10": "060014205001017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 621, "AWATER10": 0, "INTPTLAT10": "+37.8867580", "INTPTLON10": "-122.2973472" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296929, 37.886878 ], [ -122.296908, 37.886827 ], [ -122.297616, 37.886675 ], [ -122.297766, 37.886675 ], [ -122.297788, 37.886743 ], [ -122.297552, 37.886760 ], [ -122.296929, 37.886878 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1018", "GEOID10": "060014204001018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22069, "AWATER10": 0, "INTPTLAT10": "+37.8835790", "INTPTLON10": "-122.2990681" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298281, 37.884389 ], [ -122.298110, 37.883779 ], [ -122.298088, 37.883474 ], [ -122.298002, 37.883254 ], [ -122.298989, 37.883017 ], [ -122.300212, 37.882881 ], [ -122.300255, 37.883034 ], [ -122.300298, 37.883220 ], [ -122.300234, 37.883220 ], [ -122.300019, 37.883389 ], [ -122.299826, 37.883881 ], [ -122.299805, 37.884084 ], [ -122.298281, 37.884389 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2007", "GEOID10": "060014205002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2761, "AWATER10": 0, "INTPTLAT10": "+37.8856449", "INTPTLON10": "-122.2975097" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.886692 ], [ -122.297766, 37.886675 ], [ -122.297122, 37.884626 ], [ -122.297251, 37.884592 ], [ -122.297916, 37.886692 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1019", "GEOID10": "060014204001019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11921, "AWATER10": 0, "INTPTLAT10": "+37.8839314", "INTPTLON10": "-122.2976037" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297251, 37.884592 ], [ -122.296908, 37.883508 ], [ -122.297122, 37.883491 ], [ -122.297766, 37.883356 ], [ -122.298002, 37.883254 ], [ -122.298088, 37.883474 ], [ -122.298110, 37.883779 ], [ -122.298281, 37.884389 ], [ -122.297251, 37.884592 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1016", "GEOID10": "060014205001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 614, "AWATER10": 0, "INTPTLAT10": "+37.8869296", "INTPTLON10": "-122.2964871" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296093, 37.887064 ], [ -122.296071, 37.886980 ], [ -122.296908, 37.886827 ], [ -122.296929, 37.886878 ], [ -122.296093, 37.887064 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1013", "GEOID10": "060014205001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 616, "AWATER10": 0, "INTPTLAT10": "+37.8870993", "INTPTLON10": "-122.2956428" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295234, 37.887234 ], [ -122.295213, 37.887166 ], [ -122.296071, 37.886980 ], [ -122.296093, 37.887064 ], [ -122.295234, 37.887234 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1012", "GEOID10": "060014205001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 615, "AWATER10": 0, "INTPTLAT10": "+37.8872675", "INTPTLON10": "-122.2948079" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294419, 37.887386 ], [ -122.294397, 37.887318 ], [ -122.295213, 37.887166 ], [ -122.295234, 37.887234 ], [ -122.294419, 37.887386 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2003", "GEOID10": "060014205002003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24754, "AWATER10": 0, "INTPTLAT10": "+37.8858112", "INTPTLON10": "-122.2943382" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294397, 37.887318 ], [ -122.293475, 37.884507 ], [ -122.294333, 37.884321 ], [ -122.295213, 37.887166 ], [ -122.294397, 37.887318 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2006", "GEOID10": "060014205002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25305, "AWATER10": 0, "INTPTLAT10": "+37.8853070", "INTPTLON10": "-122.2968750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296908, 37.886827 ], [ -122.295985, 37.883999 ], [ -122.296865, 37.883830 ], [ -122.297766, 37.886675 ], [ -122.297616, 37.886675 ], [ -122.296908, 37.886827 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2005", "GEOID10": "060014205002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24545, "AWATER10": 0, "INTPTLAT10": "+37.8854914", "INTPTLON10": "-122.2960301" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296071, 37.886980 ], [ -122.295170, 37.884169 ], [ -122.295985, 37.883999 ], [ -122.296908, 37.886827 ], [ -122.296071, 37.886980 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2008", "GEOID10": "060014205002008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1060, "AWATER10": 0, "INTPTLAT10": "+37.8841984", "INTPTLON10": "-122.2970500" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297122, 37.884626 ], [ -122.296865, 37.883830 ], [ -122.296994, 37.883796 ], [ -122.297251, 37.884592 ], [ -122.297122, 37.884626 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2009", "GEOID10": "060014205002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 410, "AWATER10": 0, "INTPTLAT10": "+37.8836558", "INTPTLON10": "-122.2968731" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296865, 37.883830 ], [ -122.296758, 37.883525 ], [ -122.296908, 37.883508 ], [ -122.296994, 37.883796 ], [ -122.296865, 37.883830 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2004", "GEOID10": "060014205002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24848, "AWATER10": 0, "INTPTLAT10": "+37.8856461", "INTPTLON10": "-122.2951842" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295213, 37.887166 ], [ -122.294333, 37.884321 ], [ -122.295170, 37.884169 ], [ -122.296071, 37.886980 ], [ -122.295213, 37.887166 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2012", "GEOID10": "060014205002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12579, "AWATER10": 0, "INTPTLAT10": "+37.8835272", "INTPTLON10": "-122.2945038" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294333, 37.884321 ], [ -122.293861, 37.882949 ], [ -122.294011, 37.882915 ], [ -122.294376, 37.882763 ], [ -122.294719, 37.882780 ], [ -122.295170, 37.884169 ], [ -122.294333, 37.884321 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2010", "GEOID10": "060014202002010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8445, "AWATER10": 0, "INTPTLAT10": "+37.8914852", "INTPTLON10": "-122.2936957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294118, 37.892856 ], [ -122.293839, 37.891992 ], [ -122.293153, 37.891027 ], [ -122.293174, 37.890587 ], [ -122.293625, 37.890570 ], [ -122.294354, 37.892856 ], [ -122.294118, 37.892856 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1017", "GEOID10": "060014201001017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10769, "AWATER10": 0, "INTPTLAT10": "+37.8921881", "INTPTLON10": "-122.2934770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294118, 37.892856 ], [ -122.293088, 37.892839 ], [ -122.293153, 37.891027 ], [ -122.293839, 37.891992 ], [ -122.294118, 37.892856 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1018", "GEOID10": "060014201001018", "NAME10": "Block 1018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 4538, "AWATER10": 0, "INTPTLAT10": "+37.8918502", "INTPTLON10": "-122.2929851" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293046, 37.892839 ], [ -122.292831, 37.892822 ], [ -122.292917, 37.890722 ], [ -122.293153, 37.891027 ], [ -122.293088, 37.892839 ], [ -122.293046, 37.892839 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1000", "GEOID10": "060014205001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 367, "AWATER10": 0, "INTPTLAT10": "+37.8905130", "INTPTLON10": "-122.2941122" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293754, 37.890570 ], [ -122.293711, 37.890519 ], [ -122.294505, 37.890485 ], [ -122.294505, 37.890519 ], [ -122.294397, 37.890536 ], [ -122.293754, 37.890570 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2011", "GEOID10": "060014202002011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 700, "AWATER10": 0, "INTPTLAT10": "+37.8907452", "INTPTLON10": "-122.2930474" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293153, 37.891027 ], [ -122.292917, 37.890722 ], [ -122.292895, 37.890604 ], [ -122.293174, 37.890587 ], [ -122.293153, 37.891027 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3005", "GEOID10": "060014206003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 349, "AWATER10": 0, "INTPTLAT10": "+37.8905539", "INTPTLON10": "-122.2932516" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292895, 37.890604 ], [ -122.292895, 37.890553 ], [ -122.293389, 37.890536 ], [ -122.293625, 37.890519 ], [ -122.293625, 37.890570 ], [ -122.292895, 37.890604 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1019", "GEOID10": "060014201001019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20486, "AWATER10": 0, "INTPTLAT10": "+37.8917135", "INTPTLON10": "-122.2923947" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291887, 37.892822 ], [ -122.291951, 37.891078 ], [ -122.291930, 37.890655 ], [ -122.292895, 37.890604 ], [ -122.292917, 37.891146 ], [ -122.292831, 37.892822 ], [ -122.291887, 37.892822 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3004", "GEOID10": "060014206003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 428, "AWATER10": 0, "INTPTLAT10": "+37.8905994", "INTPTLON10": "-122.2924155" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291930, 37.890655 ], [ -122.291908, 37.890621 ], [ -122.292895, 37.890553 ], [ -122.292895, 37.890604 ], [ -122.292702, 37.890621 ], [ -122.291930, 37.890655 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1006", "GEOID10": "060014205001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25175, "AWATER10": 0, "INTPTLAT10": "+37.8890495", "INTPTLON10": "-122.2935928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293711, 37.890519 ], [ -122.293625, 37.890417 ], [ -122.293561, 37.890316 ], [ -122.292724, 37.887742 ], [ -122.292702, 37.887657 ], [ -122.293582, 37.887640 ], [ -122.293561, 37.887505 ], [ -122.294505, 37.890485 ], [ -122.293711, 37.890519 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1009", "GEOID10": "060014205001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5818, "AWATER10": 0, "INTPTLAT10": "+37.8888891", "INTPTLON10": "-122.2929659" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293561, 37.890316 ], [ -122.293131, 37.889825 ], [ -122.292466, 37.887708 ], [ -122.292702, 37.887657 ], [ -122.292724, 37.887742 ], [ -122.293561, 37.890316 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3006", "GEOID10": "060014206003006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11825, "AWATER10": 0, "INTPTLAT10": "+37.8893267", "INTPTLON10": "-122.2928119" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293625, 37.890570 ], [ -122.293625, 37.890519 ], [ -122.292895, 37.890553 ], [ -122.292809, 37.890028 ], [ -122.292144, 37.887860 ], [ -122.292488, 37.887776 ], [ -122.293131, 37.889825 ], [ -122.293711, 37.890519 ], [ -122.293754, 37.890570 ], [ -122.293625, 37.890570 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3007", "GEOID10": "060014206003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27950, "AWATER10": 0, "INTPTLAT10": "+37.8892518", "INTPTLON10": "-122.2920141" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291908, 37.890621 ], [ -122.291093, 37.888064 ], [ -122.292144, 37.887860 ], [ -122.292809, 37.890028 ], [ -122.292895, 37.890553 ], [ -122.291908, 37.890621 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3008", "GEOID10": "060014206003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 783, "AWATER10": 0, "INTPTLAT10": "+37.8879165", "INTPTLON10": "-122.2915924" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291093, 37.888064 ], [ -122.291071, 37.887996 ], [ -122.292123, 37.887793 ], [ -122.292144, 37.887860 ], [ -122.291093, 37.888064 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3002", "GEOID10": "060014201003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19544, "AWATER10": 0, "INTPTLAT10": "+37.8918042", "INTPTLON10": "-122.2914745" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291887, 37.892974 ], [ -122.290986, 37.892941 ], [ -122.291028, 37.892483 ], [ -122.291071, 37.890705 ], [ -122.291930, 37.890655 ], [ -122.291951, 37.891078 ], [ -122.291887, 37.892974 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3003", "GEOID10": "060014201003003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18064, "AWATER10": 0, "INTPTLAT10": "+37.8918237", "INTPTLON10": "-122.2906157" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290986, 37.892941 ], [ -122.290149, 37.892907 ], [ -122.290256, 37.890739 ], [ -122.291071, 37.890705 ], [ -122.291028, 37.892483 ], [ -122.290986, 37.892941 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3003", "GEOID10": "060014206003003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 344, "AWATER10": 0, "INTPTLAT10": "+37.8906459", "INTPTLON10": "-122.2914849" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291071, 37.890705 ], [ -122.291071, 37.890655 ], [ -122.291908, 37.890621 ], [ -122.291930, 37.890655 ], [ -122.291071, 37.890705 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3004", "GEOID10": "060014201003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18095, "AWATER10": 0, "INTPTLAT10": "+37.8918241", "INTPTLON10": "-122.2897641" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290149, 37.892907 ], [ -122.289290, 37.892890 ], [ -122.289398, 37.890790 ], [ -122.290256, 37.890739 ], [ -122.290149, 37.892907 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3005", "GEOID10": "060014201003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16537, "AWATER10": 0, "INTPTLAT10": "+37.8919062", "INTPTLON10": "-122.2889102" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289290, 37.892890 ], [ -122.288411, 37.892873 ], [ -122.288475, 37.891484 ], [ -122.288797, 37.891078 ], [ -122.288861, 37.890824 ], [ -122.289398, 37.890790 ], [ -122.289290, 37.892890 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3002", "GEOID10": "060014206003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26786, "AWATER10": 0, "INTPTLAT10": "+37.8894113", "INTPTLON10": "-122.2909643" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290792, 37.890722 ], [ -122.290084, 37.888267 ], [ -122.291093, 37.888064 ], [ -122.291908, 37.890621 ], [ -122.291071, 37.890655 ], [ -122.291071, 37.890705 ], [ -122.290792, 37.890722 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3009", "GEOID10": "060014206003009", "NAME10": "Block 3009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 746, "AWATER10": 0, "INTPTLAT10": "+37.8881229", "INTPTLON10": "-122.2905730" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290084, 37.888267 ], [ -122.290063, 37.888199 ], [ -122.291071, 37.887996 ], [ -122.291093, 37.888064 ], [ -122.290084, 37.888267 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3001", "GEOID10": "060014206003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22452, "AWATER10": 0, "INTPTLAT10": "+37.8895187", "INTPTLON10": "-122.2899595" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289891, 37.890756 ], [ -122.289119, 37.888470 ], [ -122.290084, 37.888267 ], [ -122.290792, 37.890722 ], [ -122.289891, 37.890756 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3000", "GEOID10": "060014206003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21823, "AWATER10": 0, "INTPTLAT10": "+37.8896695", "INTPTLON10": "-122.2890200" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288861, 37.890824 ], [ -122.288861, 37.890688 ], [ -122.288239, 37.888860 ], [ -122.288239, 37.888656 ], [ -122.289119, 37.888470 ], [ -122.289891, 37.890722 ], [ -122.289891, 37.890756 ], [ -122.288861, 37.890824 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3010", "GEOID10": "060014206003010", "NAME10": "Block 3010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 689, "AWATER10": 0, "INTPTLAT10": "+37.8883258", "INTPTLON10": "-122.2895731" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289119, 37.888470 ], [ -122.289097, 37.888402 ], [ -122.290063, 37.888199 ], [ -122.290084, 37.888267 ], [ -122.289119, 37.888470 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2002", "GEOID10": "060014205002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24228, "AWATER10": 0, "INTPTLAT10": "+37.8859970", "INTPTLON10": "-122.2935084" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293561, 37.887505 ], [ -122.292638, 37.884677 ], [ -122.293475, 37.884507 ], [ -122.294397, 37.887318 ], [ -122.293561, 37.887505 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3016", "GEOID10": "060014206003016", "NAME10": "Block 3016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 253, "AWATER10": 0, "INTPTLAT10": "+37.8877763", "INTPTLON10": "-122.2922894" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292144, 37.887860 ], [ -122.292123, 37.887793 ], [ -122.292466, 37.887708 ], [ -122.292488, 37.887776 ], [ -122.292144, 37.887860 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2001", "GEOID10": "060014205002001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 26078, "AWATER10": 0, "INTPTLAT10": "+37.8861973", "INTPTLON10": "-122.2926742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292702, 37.887657 ], [ -122.291780, 37.884863 ], [ -122.292638, 37.884677 ], [ -122.293561, 37.887505 ], [ -122.293582, 37.887640 ], [ -122.292702, 37.887657 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2000", "GEOID10": "060014205002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6434, "AWATER10": 0, "INTPTLAT10": "+37.8862789", "INTPTLON10": "-122.2921162" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292466, 37.887708 ], [ -122.291694, 37.885286 ], [ -122.291522, 37.884914 ], [ -122.291715, 37.884863 ], [ -122.291780, 37.884863 ], [ -122.292702, 37.887657 ], [ -122.292466, 37.887708 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "GEOID10": "060014206003015", "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.8863229", "INTPTLON10": "-122.2918172" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292123, 37.887793 ], [ -122.291179, 37.884981 ], [ -122.291522, 37.884914 ], [ -122.291694, 37.885286 ], [ -122.292466, 37.887708 ], [ -122.292123, 37.887793 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2013", "GEOID10": "060014205002013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12945, "AWATER10": 0, "INTPTLAT10": "+37.8836932", "INTPTLON10": "-122.2936333" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293475, 37.884507 ], [ -122.293367, 37.884202 ], [ -122.292960, 37.883034 ], [ -122.293131, 37.883000 ], [ -122.293861, 37.882949 ], [ -122.294333, 37.884321 ], [ -122.293475, 37.884507 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2014", "GEOID10": "060014205002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13013, "AWATER10": 0, "INTPTLAT10": "+37.8838362", "INTPTLON10": "-122.2927774" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292638, 37.884677 ], [ -122.292552, 37.884389 ], [ -122.292080, 37.883135 ], [ -122.292488, 37.883135 ], [ -122.292960, 37.883034 ], [ -122.293475, 37.884507 ], [ -122.292638, 37.884677 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2015", "GEOID10": "060014205002015", "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13985, "AWATER10": 0, "INTPTLAT10": "+37.8839739", "INTPTLON10": "-122.2919263" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291780, 37.884863 ], [ -122.291265, 37.883237 ], [ -122.292080, 37.883135 ], [ -122.292638, 37.884677 ], [ -122.291780, 37.884863 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3014", "GEOID10": "060014206003014", "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29422, "AWATER10": 0, "INTPTLAT10": "+37.8864950", "INTPTLON10": "-122.2911376" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291071, 37.887996 ], [ -122.290363, 37.885693 ], [ -122.290170, 37.885219 ], [ -122.291179, 37.884981 ], [ -122.292123, 37.887793 ], [ -122.291071, 37.887996 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "GEOID10": "060014206003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.8875706", "INTPTLON10": "-122.2892190" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.888572 ], [ -122.289333, 37.885981 ], [ -122.290063, 37.888199 ], [ -122.288303, 37.888572 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3013", "GEOID10": "060014206003013", "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 31172, "AWATER10": 0, "INTPTLAT10": "+37.8866087", "INTPTLON10": "-122.2901174" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290063, 37.888199 ], [ -122.289333, 37.885981 ], [ -122.289848, 37.884507 ], [ -122.290041, 37.884897 ], [ -122.290363, 37.885693 ], [ -122.291071, 37.887996 ], [ -122.290063, 37.888199 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3017", "GEOID10": "060014206003017", "NAME10": "Block 3017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6343, "AWATER10": 0, "INTPTLAT10": "+37.8840797", "INTPTLON10": "-122.2909809" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291179, 37.884981 ], [ -122.290943, 37.884372 ], [ -122.290385, 37.883220 ], [ -122.290835, 37.883322 ], [ -122.291157, 37.883999 ], [ -122.291522, 37.884914 ], [ -122.291179, 37.884981 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2016", "GEOID10": "060014205002016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5264, "AWATER10": 0, "INTPTLAT10": "+37.8839955", "INTPTLON10": "-122.2913154" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291522, 37.884914 ], [ -122.291372, 37.884490 ], [ -122.290835, 37.883322 ], [ -122.291071, 37.883254 ], [ -122.291265, 37.883237 ], [ -122.291780, 37.884863 ], [ -122.291522, 37.884914 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3018", "GEOID10": "060014206003018", "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14557, "AWATER10": 0, "INTPTLAT10": "+37.8843696", "INTPTLON10": "-122.2904413" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.290170, 37.885219 ], [ -122.289848, 37.884507 ], [ -122.290170, 37.883576 ], [ -122.290299, 37.883034 ], [ -122.290320, 37.883203 ], [ -122.290385, 37.883220 ], [ -122.290943, 37.884372 ], [ -122.291179, 37.884981 ], [ -122.290170, 37.885219 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "GEOID10": "060014206002016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.8853992", "INTPTLON10": "-122.2894711" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.885981 ], [ -122.289269, 37.885862 ], [ -122.289612, 37.884880 ], [ -122.289720, 37.884897 ], [ -122.289333, 37.885981 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1023", "GEOID10": "060014206001023", "NAME10": "Block 1023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15260, "AWATER10": 0, "INTPTLAT10": "+37.8840099", "INTPTLON10": "-122.2895305" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289720, 37.884897 ], [ -122.288754, 37.884694 ], [ -122.289312, 37.883288 ], [ -122.289355, 37.883305 ], [ -122.289526, 37.883271 ], [ -122.289762, 37.883186 ], [ -122.289977, 37.883152 ], [ -122.290106, 37.883169 ], [ -122.290256, 37.883186 ], [ -122.290170, 37.883576 ], [ -122.289720, 37.884897 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2010", "GEOID10": "060014205002010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6161, "AWATER10": 0, "INTPTLAT10": "+37.8835363", "INTPTLON10": "-122.2962204" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295985, 37.883999 ], [ -122.295706, 37.883017 ], [ -122.296093, 37.883068 ], [ -122.296243, 37.883186 ], [ -122.296371, 37.883339 ], [ -122.296715, 37.883525 ], [ -122.296758, 37.883525 ], [ -122.296865, 37.883830 ], [ -122.295985, 37.883999 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2011", "GEOID10": "060014205002011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10125, "AWATER10": 0, "INTPTLAT10": "+37.8834818", "INTPTLON10": "-122.2953591" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295170, 37.884169 ], [ -122.294719, 37.882780 ], [ -122.295449, 37.882983 ], [ -122.295706, 37.883017 ], [ -122.295985, 37.883999 ], [ -122.295170, 37.884169 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3006", "GEOID10": "060014201003006", "NAME10": "Block 3006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1509, "AWATER10": 0, "INTPTLAT10": "+37.8926066", "INTPTLON10": "-122.2883829" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288325, 37.892873 ], [ -122.288411, 37.891484 ], [ -122.288496, 37.891332 ], [ -122.288754, 37.891027 ], [ -122.288775, 37.890824 ], [ -122.288861, 37.890824 ], [ -122.288797, 37.891078 ], [ -122.288475, 37.891484 ], [ -122.288411, 37.892873 ], [ -122.288325, 37.892873 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3007", "GEOID10": "060014201003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18637, "AWATER10": 0, "INTPTLAT10": "+37.8917853", "INTPTLON10": "-122.2879697" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288325, 37.892873 ], [ -122.287445, 37.892822 ], [ -122.287531, 37.890892 ], [ -122.288775, 37.890824 ], [ -122.288754, 37.891027 ], [ -122.288496, 37.891332 ], [ -122.288411, 37.891484 ], [ -122.288325, 37.892873 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2003", "GEOID10": "060014206002003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 446, "AWATER10": 0, "INTPTLAT10": "+37.8908208", "INTPTLON10": "-122.2882377" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287724, 37.890875 ], [ -122.287703, 37.890841 ], [ -122.288775, 37.890773 ], [ -122.288775, 37.890824 ], [ -122.287939, 37.890875 ], [ -122.287724, 37.890875 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3008", "GEOID10": "060014201003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5620, "AWATER10": 0, "INTPTLAT10": "+37.8918093", "INTPTLON10": "-122.2873239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287188, 37.892822 ], [ -122.287188, 37.890926 ], [ -122.287531, 37.890892 ], [ -122.287467, 37.892433 ], [ -122.287445, 37.892822 ], [ -122.287188, 37.892822 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2017", "GEOID10": "060014206002017", "NAME10": "Block 2017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 379, "AWATER10": 0, "INTPTLAT10": "+37.8908918", "INTPTLON10": "-122.2870824" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286651, 37.890942 ], [ -122.286651, 37.890909 ], [ -122.287531, 37.890841 ], [ -122.287531, 37.890892 ], [ -122.287188, 37.890926 ], [ -122.286651, 37.890942 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2000", "GEOID10": "060014206002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 375, "AWATER10": 0, "INTPTLAT10": "+37.8909521", "INTPTLON10": "-122.2861793" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285707, 37.891010 ], [ -122.285686, 37.890976 ], [ -122.286651, 37.890909 ], [ -122.286651, 37.890942 ], [ -122.286458, 37.890959 ], [ -122.285707, 37.891010 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "GEOID10": "060014206002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.8896802", "INTPTLON10": "-122.2884737" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288775, 37.890824 ], [ -122.288775, 37.890671 ], [ -122.288110, 37.888690 ], [ -122.288153, 37.888606 ], [ -122.288303, 37.888572 ], [ -122.288218, 37.888741 ], [ -122.288239, 37.888860 ], [ -122.288861, 37.890688 ], [ -122.288861, 37.890824 ], [ -122.288775, 37.890824 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2005", "GEOID10": "060014206002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21301, "AWATER10": 0, "INTPTLAT10": "+37.8898284", "INTPTLON10": "-122.2879267" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287703, 37.890841 ], [ -122.287102, 37.889080 ], [ -122.287381, 37.888944 ], [ -122.288110, 37.888690 ], [ -122.288775, 37.890671 ], [ -122.288775, 37.890773 ], [ -122.287703, 37.890841 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3011", "GEOID10": "060014206003011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 598, "AWATER10": 0, "INTPTLAT10": "+37.8885114", "INTPTLON10": "-122.2886774" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288239, 37.888656 ], [ -122.288303, 37.888572 ], [ -122.288926, 37.888436 ], [ -122.289097, 37.888402 ], [ -122.289119, 37.888470 ], [ -122.288239, 37.888656 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2006", "GEOID10": "060014206002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 812, "AWATER10": 0, "INTPTLAT10": "+37.8888233", "INTPTLON10": "-122.2875914" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.889080 ], [ -122.287080, 37.889012 ], [ -122.287316, 37.888893 ], [ -122.288153, 37.888606 ], [ -122.288110, 37.888690 ], [ -122.287381, 37.888944 ], [ -122.287102, 37.889080 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2002", "GEOID10": "060014206002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16691, "AWATER10": 0, "INTPTLAT10": "+37.8900585", "INTPTLON10": "-122.2869139" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286651, 37.890909 ], [ -122.286158, 37.889418 ], [ -122.286458, 37.889334 ], [ -122.287102, 37.889080 ], [ -122.287724, 37.890875 ], [ -122.287531, 37.890892 ], [ -122.287531, 37.890841 ], [ -122.286651, 37.890909 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2007", "GEOID10": "060014206002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 740, "AWATER10": 0, "INTPTLAT10": "+37.8892157", "INTPTLON10": "-122.2866157" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286158, 37.889418 ], [ -122.286136, 37.889351 ], [ -122.286673, 37.889181 ], [ -122.287080, 37.889012 ], [ -122.287102, 37.889080 ], [ -122.286458, 37.889334 ], [ -122.286158, 37.889418 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2010", "GEOID10": "060014206002010", "NAME10": "Block 2010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15494, "AWATER10": 0, "INTPTLAT10": "+37.8884410", "INTPTLON10": "-122.2866366" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286136, 37.889351 ], [ -122.286050, 37.888995 ], [ -122.286050, 37.888555 ], [ -122.286394, 37.887606 ], [ -122.287488, 37.887877 ], [ -122.287273, 37.888216 ], [ -122.287080, 37.888826 ], [ -122.287080, 37.889012 ], [ -122.286673, 37.889181 ], [ -122.286136, 37.889351 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2001", "GEOID10": "060014206002001", "NAME10": "Block 2001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14791, "AWATER10": 0, "INTPTLAT10": "+37.8902095", "INTPTLON10": "-122.2859011" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285686, 37.890976 ], [ -122.285557, 37.890807 ], [ -122.285171, 37.889503 ], [ -122.285600, 37.889503 ], [ -122.286158, 37.889418 ], [ -122.286651, 37.890909 ], [ -122.285686, 37.890976 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1002", "GEOID10": "060014206001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 424, "AWATER10": 0, "INTPTLAT10": "+37.8910153", "INTPTLON10": "-122.2850935" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284484, 37.891078 ], [ -122.284505, 37.891027 ], [ -122.285686, 37.890976 ], [ -122.285707, 37.891010 ], [ -122.284484, 37.891078 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1003", "GEOID10": "060014206001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16431, "AWATER10": 0, "INTPTLAT10": "+37.8902144", "INTPTLON10": "-122.2848310" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284505, 37.891027 ], [ -122.284527, 37.890926 ], [ -122.284484, 37.890671 ], [ -122.284398, 37.890485 ], [ -122.284033, 37.889317 ], [ -122.284741, 37.889486 ], [ -122.285171, 37.889503 ], [ -122.285557, 37.890807 ], [ -122.285686, 37.890976 ], [ -122.284505, 37.891027 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1001", "GEOID10": "060014206001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 394, "AWATER10": 0, "INTPTLAT10": "+37.8910689", "INTPTLON10": "-122.2839734" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283497, 37.891129 ], [ -122.283497, 37.891078 ], [ -122.284505, 37.891027 ], [ -122.284484, 37.891078 ], [ -122.283497, 37.891129 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1004", "GEOID10": "060014206001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19676, "AWATER10": 0, "INTPTLAT10": "+37.8901108", "INTPTLON10": "-122.2837239" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283497, 37.891078 ], [ -122.282982, 37.889435 ], [ -122.282896, 37.889215 ], [ -122.282832, 37.889147 ], [ -122.283454, 37.889164 ], [ -122.284033, 37.889317 ], [ -122.284398, 37.890485 ], [ -122.284484, 37.890671 ], [ -122.284527, 37.890976 ], [ -122.284505, 37.891027 ], [ -122.283497, 37.891078 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2008", "GEOID10": "060014206002008", "NAME10": "Block 2008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 676, "AWATER10": 0, "INTPTLAT10": "+37.8894421", "INTPTLON10": "-122.2856518" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.889520 ], [ -122.285171, 37.889503 ], [ -122.285192, 37.889435 ], [ -122.285600, 37.889435 ], [ -122.286136, 37.889351 ], [ -122.286158, 37.889418 ], [ -122.286007, 37.889452 ], [ -122.285385, 37.889520 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2009", "GEOID10": "060014206002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19896, "AWATER10": 0, "INTPTLAT10": "+37.8884164", "INTPTLON10": "-122.2856099" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.889452 ], [ -122.285192, 37.889435 ], [ -122.285085, 37.889130 ], [ -122.284999, 37.888639 ], [ -122.285042, 37.888250 ], [ -122.285149, 37.887894 ], [ -122.285385, 37.887386 ], [ -122.286394, 37.887606 ], [ -122.286050, 37.888555 ], [ -122.286050, 37.888995 ], [ -122.286136, 37.889351 ], [ -122.285385, 37.889452 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1010", "GEOID10": "060014206001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1878, "AWATER10": 0, "INTPTLAT10": "+37.8889080", "INTPTLON10": "-122.2850205" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285106, 37.889435 ], [ -122.284999, 37.889147 ], [ -122.284913, 37.888504 ], [ -122.284956, 37.888233 ], [ -122.285063, 37.887877 ], [ -122.285299, 37.887352 ], [ -122.285385, 37.887386 ], [ -122.285149, 37.887894 ], [ -122.284999, 37.888487 ], [ -122.285063, 37.889029 ], [ -122.285192, 37.889435 ], [ -122.285106, 37.889435 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1008", "GEOID10": "060014206001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 832, "AWATER10": 0, "INTPTLAT10": "+37.8893913", "INTPTLON10": "-122.2845906" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285171, 37.889503 ], [ -122.284741, 37.889486 ], [ -122.284441, 37.889418 ], [ -122.284033, 37.889317 ], [ -122.284033, 37.889232 ], [ -122.284698, 37.889401 ], [ -122.285192, 37.889435 ], [ -122.285171, 37.889503 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1007", "GEOID10": "060014206001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 282, "AWATER10": 0, "INTPTLAT10": "+37.8892140", "INTPTLON10": "-122.2838288" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284033, 37.889317 ], [ -122.283647, 37.889215 ], [ -122.283669, 37.889130 ], [ -122.284033, 37.889232 ], [ -122.284033, 37.889317 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1009", "GEOID10": "060014206001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22493, "AWATER10": 0, "INTPTLAT10": "+37.8883323", "INTPTLON10": "-122.2844715" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285106, 37.889435 ], [ -122.284698, 37.889401 ], [ -122.283690, 37.889147 ], [ -122.283669, 37.888961 ], [ -122.283711, 37.888775 ], [ -122.284334, 37.887149 ], [ -122.285299, 37.887352 ], [ -122.285063, 37.887877 ], [ -122.284956, 37.888233 ], [ -122.284913, 37.888504 ], [ -122.284999, 37.889147 ], [ -122.285106, 37.889435 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1014", "GEOID10": "060014206001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22296, "AWATER10": 0, "INTPTLAT10": "+37.8880279", "INTPTLON10": "-122.2834249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283669, 37.889130 ], [ -122.283089, 37.889063 ], [ -122.282746, 37.889080 ], [ -122.282660, 37.888944 ], [ -122.282660, 37.888589 ], [ -122.283282, 37.886895 ], [ -122.283540, 37.886963 ], [ -122.284334, 37.887149 ], [ -122.283711, 37.888775 ], [ -122.283669, 37.889130 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2012", "GEOID10": "060014206002012", "NAME10": "Block 2012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2533, "AWATER10": 0, "INTPTLAT10": "+37.8872385", "INTPTLON10": "-122.2887646" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288153, 37.888606 ], [ -122.288325, 37.888284 ], [ -122.289269, 37.885862 ], [ -122.289333, 37.885981 ], [ -122.288303, 37.888572 ], [ -122.288153, 37.888606 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2011", "GEOID10": "060014206002011", "NAME10": "Block 2011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 36927, "AWATER10": 0, "INTPTLAT10": "+37.8868308", "INTPTLON10": "-122.2883823" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287080, 37.889012 ], [ -122.287080, 37.888826 ], [ -122.287273, 37.888216 ], [ -122.287338, 37.888081 ], [ -122.287595, 37.887776 ], [ -122.287681, 37.887623 ], [ -122.288561, 37.885286 ], [ -122.288754, 37.884694 ], [ -122.289612, 37.884880 ], [ -122.289269, 37.885862 ], [ -122.288325, 37.888284 ], [ -122.288153, 37.888606 ], [ -122.287617, 37.888775 ], [ -122.287080, 37.889012 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2013", "GEOID10": "060014206002013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27693, "AWATER10": 0, "INTPTLAT10": "+37.8861944", "INTPTLON10": "-122.2877578" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287488, 37.887877 ], [ -122.286758, 37.887691 ], [ -122.287037, 37.886912 ], [ -122.287488, 37.885828 ], [ -122.287960, 37.884507 ], [ -122.288754, 37.884694 ], [ -122.288561, 37.885286 ], [ -122.287681, 37.887623 ], [ -122.287595, 37.887776 ], [ -122.287488, 37.887877 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2015", "GEOID10": "060014206002015", "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8164, "AWATER10": 0, "INTPTLAT10": "+37.8861594", "INTPTLON10": "-122.2868653" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287123, 37.886726 ], [ -122.286286, 37.886523 ], [ -122.286544, 37.885794 ], [ -122.286651, 37.885642 ], [ -122.286737, 37.885642 ], [ -122.287488, 37.885828 ], [ -122.287123, 37.886726 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2014", "GEOID10": "060014206002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 41589, "AWATER10": 0, "INTPTLAT10": "+37.8849195", "INTPTLON10": "-122.2873798" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.887691 ], [ -122.285385, 37.887386 ], [ -122.286673, 37.883999 ], [ -122.287188, 37.884101 ], [ -122.287810, 37.884169 ], [ -122.288067, 37.884253 ], [ -122.287488, 37.885828 ], [ -122.286737, 37.885642 ], [ -122.286651, 37.885642 ], [ -122.286544, 37.885794 ], [ -122.286286, 37.886523 ], [ -122.287123, 37.886726 ], [ -122.286758, 37.887691 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1022", "GEOID10": "060014206001022", "NAME10": "Block 1022", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12213, "AWATER10": 0, "INTPTLAT10": "+37.8838753", "INTPTLON10": "-122.2886289" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288754, 37.884694 ], [ -122.287960, 37.884507 ], [ -122.288518, 37.883051 ], [ -122.289312, 37.883288 ], [ -122.288754, 37.884694 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1019", "GEOID10": "060014206001019", "NAME10": "Block 1019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1466, "AWATER10": 0, "INTPTLAT10": "+37.8847579", "INTPTLON10": "-122.2863241" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.885557 ], [ -122.285986, 37.885523 ], [ -122.286587, 37.883982 ], [ -122.286673, 37.883999 ], [ -122.286565, 37.884321 ], [ -122.286072, 37.885557 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1011", "GEOID10": "060014206001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1704, "AWATER10": 0, "INTPTLAT10": "+37.8864397", "INTPTLON10": "-122.2856823" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.887386 ], [ -122.285299, 37.887352 ], [ -122.285986, 37.885523 ], [ -122.286072, 37.885557 ], [ -122.285385, 37.887386 ] ] ] } } +, +{ "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.8863390", "INTPTLON10": "-122.2851750" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285299, 37.887352 ], [ -122.284334, 37.887149 ], [ -122.284570, 37.886709 ], [ -122.285085, 37.885320 ], [ -122.285986, 37.885523 ], [ -122.285299, 37.887352 ] ] ] } } +, +{ "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.8843388", "INTPTLON10": "-122.2859716" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285986, 37.885523 ], [ -122.285085, 37.885320 ], [ -122.285600, 37.883999 ], [ -122.285686, 37.883644 ], [ -122.286973, 37.882983 ], [ -122.286587, 37.883982 ], [ -122.285986, 37.885523 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1025", "GEOID10": "060014206001025", "NAME10": "Block 1025", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1018, "AWATER10": 0, "INTPTLAT10": "+37.8838716", "INTPTLON10": "-122.2850766" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284505, 37.884202 ], [ -122.284462, 37.884135 ], [ -122.285707, 37.883542 ], [ -122.285686, 37.883644 ], [ -122.284741, 37.884101 ], [ -122.284505, 37.884202 ] ] ] } } +, +{ "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.8854489", "INTPTLON10": "-122.2845719" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.284334, 37.887149 ], [ -122.283540, 37.886963 ], [ -122.283819, 37.886235 ], [ -122.284505, 37.884372 ], [ -122.284505, 37.884202 ], [ -122.285686, 37.883644 ], [ -122.285600, 37.883999 ], [ -122.284570, 37.886709 ], [ -122.284334, 37.887149 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1029", "GEOID10": "060014206001029", "NAME10": "Block 1029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16994, "AWATER10": 0, "INTPTLAT10": "+37.8853080", "INTPTLON10": "-122.2836511" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283819, 37.886235 ], [ -122.282681, 37.885981 ], [ -122.283175, 37.885371 ], [ -122.283282, 37.884778 ], [ -122.283390, 37.884727 ], [ -122.283862, 37.884541 ], [ -122.284505, 37.884202 ], [ -122.284505, 37.884372 ], [ -122.283819, 37.886235 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1027", "GEOID10": "060014206001027", "NAME10": "Block 1027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 906, "AWATER10": 0, "INTPTLAT10": "+37.8844362", "INTPTLON10": "-122.2839247" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283390, 37.884727 ], [ -122.283347, 37.884677 ], [ -122.284462, 37.884135 ], [ -122.284505, 37.884202 ], [ -122.283862, 37.884541 ], [ -122.283390, 37.884727 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1026", "GEOID10": "060014206001026", "NAME10": "Block 1026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 63728, "AWATER10": 0, "INTPTLAT10": "+37.8834939", "INTPTLON10": "-122.2837979" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282124, 37.884998 ], [ -122.281995, 37.884981 ], [ -122.282295, 37.884372 ], [ -122.281909, 37.884372 ], [ -122.282016, 37.884185 ], [ -122.282574, 37.882729 ], [ -122.282767, 37.882543 ], [ -122.282810, 37.882509 ], [ -122.283025, 37.882526 ], [ -122.283690, 37.882492 ], [ -122.285085, 37.882475 ], [ -122.285385, 37.882441 ], [ -122.286050, 37.882458 ], [ -122.285836, 37.883034 ], [ -122.285707, 37.883542 ], [ -122.283797, 37.884473 ], [ -122.283132, 37.884761 ], [ -122.282424, 37.884965 ], [ -122.282124, 37.884998 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1000", "GEOID10": "060014206001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 443, "AWATER10": 0, "INTPTLAT10": "+37.8911265", "INTPTLON10": "-122.2829474" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282424, 37.891180 ], [ -122.282424, 37.891146 ], [ -122.283497, 37.891078 ], [ -122.283497, 37.891129 ], [ -122.282424, 37.891180 ] ] ] } } +, +{ "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.8901660", "INTPTLON10": "-122.2826890" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282424, 37.891146 ], [ -122.282381, 37.890790 ], [ -122.281909, 37.889418 ], [ -122.282295, 37.889232 ], [ -122.282639, 37.889164 ], [ -122.282853, 37.889164 ], [ -122.282982, 37.889435 ], [ -122.283497, 37.891078 ], [ -122.282424, 37.891146 ] ] ] } } +, +{ "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.8891127", "INTPTLON10": "-122.2832122" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283647, 37.889215 ], [ -122.283282, 37.889147 ], [ -122.282832, 37.889147 ], [ -122.282746, 37.889080 ], [ -122.283089, 37.889063 ], [ -122.283475, 37.889097 ], [ -122.283669, 37.889130 ], [ -122.283647, 37.889215 ] ] ] } } +, +{ "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.8892075", "INTPTLON10": "-122.2823202" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281909, 37.889418 ], [ -122.281866, 37.889351 ], [ -122.282338, 37.889147 ], [ -122.282746, 37.889080 ], [ -122.282832, 37.889147 ], [ -122.282295, 37.889232 ], [ -122.281909, 37.889418 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1017", "GEOID10": "060014206001017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24687, "AWATER10": 0, "INTPTLAT10": "+37.8879459", "INTPTLON10": "-122.2823713" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.281866, 37.889351 ], [ -122.281673, 37.888673 ], [ -122.281673, 37.888250 ], [ -122.282295, 37.886675 ], [ -122.283282, 37.886895 ], [ -122.282660, 37.888589 ], [ -122.282660, 37.888944 ], [ -122.282746, 37.889080 ], [ -122.282338, 37.889147 ], [ -122.281866, 37.889351 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1016", "GEOID10": "060014206001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9100, "AWATER10": 0, "INTPTLAT10": "+37.8864607", "INTPTLON10": "-122.2830673" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283540, 37.886963 ], [ -122.282295, 37.886675 ], [ -122.282488, 37.886319 ], [ -122.282681, 37.885981 ], [ -122.283819, 37.886235 ], [ -122.283540, 37.886963 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1028", "GEOID10": "060014206001028", "NAME10": "Block 1028", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1037, "AWATER10": 0, "INTPTLAT10": "+37.8849026", "INTPTLON10": "-122.2826795" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282038, 37.885066 ], [ -122.281973, 37.885049 ], [ -122.281995, 37.884981 ], [ -122.282124, 37.884998 ], [ -122.282424, 37.884965 ], [ -122.282875, 37.884846 ], [ -122.283347, 37.884677 ], [ -122.283390, 37.884727 ], [ -122.282917, 37.884914 ], [ -122.282445, 37.885032 ], [ -122.282038, 37.885066 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1021", "GEOID10": "060014206001021", "NAME10": "Block 1021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18586, "AWATER10": 0, "INTPTLAT10": "+37.8834620", "INTPTLON10": "-122.2875836" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288067, 37.884253 ], [ -122.287810, 37.884169 ], [ -122.287188, 37.884101 ], [ -122.286673, 37.883999 ], [ -122.287080, 37.882915 ], [ -122.287209, 37.882594 ], [ -122.287939, 37.882881 ], [ -122.288518, 37.883051 ], [ -122.288067, 37.884253 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1020", "GEOID10": "060014206001020", "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 979, "AWATER10": 0, "INTPTLAT10": "+37.8834653", "INTPTLON10": "-122.2868181" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286673, 37.883999 ], [ -122.286587, 37.883982 ], [ -122.286973, 37.882983 ], [ -122.287080, 37.882915 ], [ -122.287037, 37.883051 ], [ -122.286673, 37.883999 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1030", "GEOID10": "060014206001030", "NAME10": "Block 1030", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 280, "AWATER10": 0, "INTPTLAT10": "+37.8827246", "INTPTLON10": "-122.2870976" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287080, 37.882915 ], [ -122.287016, 37.882864 ], [ -122.287123, 37.882560 ], [ -122.287209, 37.882594 ], [ -122.287188, 37.882661 ], [ -122.287080, 37.882915 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1024", "GEOID10": "060014206001024", "NAME10": "Block 1024", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1201, "AWATER10": 0, "INTPTLAT10": "+37.8832245", "INTPTLON10": "-122.2863663" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285686, 37.883644 ], [ -122.285707, 37.883542 ], [ -122.287016, 37.882864 ], [ -122.287080, 37.882915 ], [ -122.285686, 37.883644 ] ] ] } } +, +{ "type": "Feature", "id": 12345, "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1031", "GEOID10": "060014206001031", "NAME10": "Block 1031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7920, "AWATER10": 0, "INTPTLAT10": "+37.8828579", "INTPTLON10": "-122.2863490" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285707, 37.883542 ], [ -122.285836, 37.883034 ], [ -122.286050, 37.882458 ], [ -122.286758, 37.882458 ], [ -122.287123, 37.882560 ], [ -122.287016, 37.882864 ], [ -122.285707, 37.883542 ] ] ] } } +] } +] } +] } diff --git a/tests/join-population/raw-merged-folder-compare/10/164/395.pbf b/tests/join-population/raw-merged-folder-compare/10/164/395.pbf new file mode 100644 index 0000000..3ae7412 Binary files /dev/null and b/tests/join-population/raw-merged-folder-compare/10/164/395.pbf differ diff --git a/tests/join-population/raw-merged-folder-compare/10/164/396.pbf b/tests/join-population/raw-merged-folder-compare/10/164/396.pbf new file mode 100644 index 0000000..16682cd Binary files /dev/null and b/tests/join-population/raw-merged-folder-compare/10/164/396.pbf differ diff --git a/tests/join-population/raw-merged-folder-compare/11/328/790.pbf b/tests/join-population/raw-merged-folder-compare/11/328/790.pbf new file mode 100644 index 0000000..667bd57 Binary files /dev/null and b/tests/join-population/raw-merged-folder-compare/11/328/790.pbf differ diff --git a/tests/join-population/raw-merged-folder-compare/11/328/791.pbf b/tests/join-population/raw-merged-folder-compare/11/328/791.pbf new file mode 100644 index 0000000..1aebd6a Binary files /dev/null and b/tests/join-population/raw-merged-folder-compare/11/328/791.pbf differ diff --git a/tests/join-population/raw-merged-folder-compare/11/329/791.pbf b/tests/join-population/raw-merged-folder-compare/11/329/791.pbf new file mode 100644 index 0000000..ae4820e Binary files /dev/null and b/tests/join-population/raw-merged-folder-compare/11/329/791.pbf differ diff --git a/tests/join-population/raw-merged-folder-compare/12/656/1581.pbf b/tests/join-population/raw-merged-folder-compare/12/656/1581.pbf new file mode 100644 index 0000000..3f56006 Binary files /dev/null and b/tests/join-population/raw-merged-folder-compare/12/656/1581.pbf differ diff --git a/tests/join-population/raw-merged-folder-compare/3/1/3.pbf b/tests/join-population/raw-merged-folder-compare/3/1/3.pbf new file mode 100644 index 0000000..9eea2fc Binary files /dev/null and b/tests/join-population/raw-merged-folder-compare/3/1/3.pbf differ diff --git a/tests/join-population/raw-merged-folder-compare/4/2/6.pbf b/tests/join-population/raw-merged-folder-compare/4/2/6.pbf new file mode 100644 index 0000000..4478ef5 Binary files /dev/null and b/tests/join-population/raw-merged-folder-compare/4/2/6.pbf differ diff --git a/tests/join-population/raw-merged-folder-compare/5/5/12.pbf b/tests/join-population/raw-merged-folder-compare/5/5/12.pbf new file mode 100644 index 0000000..fb0fa91 Binary files /dev/null and b/tests/join-population/raw-merged-folder-compare/5/5/12.pbf differ diff --git a/tests/join-population/raw-merged-folder-compare/6/10/24.pbf b/tests/join-population/raw-merged-folder-compare/6/10/24.pbf new file mode 100644 index 0000000..32cef6e Binary files /dev/null and b/tests/join-population/raw-merged-folder-compare/6/10/24.pbf differ diff --git a/tests/join-population/raw-merged-folder-compare/7/20/49.pbf b/tests/join-population/raw-merged-folder-compare/7/20/49.pbf new file mode 100644 index 0000000..bdfa9db Binary files /dev/null and b/tests/join-population/raw-merged-folder-compare/7/20/49.pbf differ diff --git a/tests/join-population/raw-merged-folder-compare/8/40/98.pbf b/tests/join-population/raw-merged-folder-compare/8/40/98.pbf new file mode 100644 index 0000000..3177a51 Binary files /dev/null and b/tests/join-population/raw-merged-folder-compare/8/40/98.pbf differ diff --git a/tests/join-population/raw-merged-folder-compare/8/41/98.pbf b/tests/join-population/raw-merged-folder-compare/8/41/98.pbf new file mode 100644 index 0000000..51964cd Binary files /dev/null and b/tests/join-population/raw-merged-folder-compare/8/41/98.pbf differ diff --git a/tests/join-population/raw-merged-folder-compare/8/41/99.pbf b/tests/join-population/raw-merged-folder-compare/8/41/99.pbf new file mode 100644 index 0000000..d64337b Binary files /dev/null and b/tests/join-population/raw-merged-folder-compare/8/41/99.pbf differ diff --git a/tests/join-population/raw-merged-folder-compare/9/81/197.pbf b/tests/join-population/raw-merged-folder-compare/9/81/197.pbf new file mode 100644 index 0000000..a449a0e Binary files /dev/null and b/tests/join-population/raw-merged-folder-compare/9/81/197.pbf differ diff --git a/tests/join-population/raw-merged-folder-compare/9/82/197.pbf b/tests/join-population/raw-merged-folder-compare/9/82/197.pbf new file mode 100644 index 0000000..aa12d7c Binary files /dev/null and b/tests/join-population/raw-merged-folder-compare/9/82/197.pbf differ diff --git a/tests/join-population/raw-merged-folder-compare/9/82/198.pbf b/tests/join-population/raw-merged-folder-compare/9/82/198.pbf new file mode 100644 index 0000000..b5e51ae Binary files /dev/null and b/tests/join-population/raw-merged-folder-compare/9/82/198.pbf differ diff --git a/tests/join-population/raw-merged-folder-compare/metadata.json b/tests/join-population/raw-merged-folder-compare/metadata.json new file mode 100644 index 0000000..6ca20d8 --- /dev/null +++ b/tests/join-population/raw-merged-folder-compare/metadata.json @@ -0,0 +1,12 @@ +{ + "name": "tests/join-population/macarthur.mbtiles + tests/join-population/macarthur2.mbtiles + tests/join-population/tabblock_06001420.mbtiles", + "description": "tests/join-population/tabblock_06001420.mbtiles", + "version": "2", + "minzoom": "0", + "maxzoom": "12", + "center": "-122.299805,37.892187,12", + "bounds": "-122.343750,37.695438,-122.104097,37.926868", + "type": "overlay", + "format": "pbf", + "json": "{\"vector_layers\": [ { \"id\": \"macarthur\", \"description\": \"\", \"minzoom\": 5, \"maxzoom\": 11, \"fields\": {\"FULLNAME\": \"String\", \"LINEARID\": \"String\", \"MTFCC\": \"String\", \"RTTYP\": \"String\"} }, { \"id\": \"tabblock_06001420\", \"description\": \"\", \"minzoom\": 3, \"maxzoom\": 12, \"fields\": {\"ALAND10\": \"Number\", \"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\"} } ] }" +} diff --git a/tests/knox/in.json b/tests/knox/in.json new file mode 100644 index 0000000..c75cad8 --- /dev/null +++ b/tests/knox/in.json @@ -0,0 +1,53 @@ +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.56409, 38.490846 ], [ -87.564081, 38.490938 ], [ -87.564075, 38.490997 ], [ -87.564073, 38.49103 ], [ -87.564033, 38.491451 ], [ -87.564023, 38.491558 ], [ -87.564016, 38.491603 ], [ -87.563955, 38.491998 ], [ -87.563772, 38.493184 ], [ -87.563712, 38.49358 ], [ -87.563507, 38.494913 ], [ -87.56294, 38.498603 ], [ -87.562902, 38.498913 ], [ -87.562743, 38.500253 ], [ -87.562491, 38.502023 ], [ -87.562274, 38.503445 ], [ -87.561613, 38.507803 ], [ -87.561436, 38.508642 ], [ -87.561122, 38.509605 ], [ -87.56096, 38.509998 ], [ -87.560558, 38.510787 ], [ -87.560066, 38.511576 ], [ -87.55979, 38.511955 ], [ -87.559344, 38.512487 ], [ -87.559234, 38.51262 ], [ -87.55887, 38.512993 ], [ -87.558076, 38.513721 ], [ -87.55691, 38.514593 ], [ -87.556005, 38.515135 ], [ -87.555464, 38.515422 ], [ -87.55497, 38.515648 ], [ -87.548944, 38.518413 ], [ -87.546936, 38.519335 ], [ -87.545311, 38.52008 ], [ -87.54281, 38.521229 ], [ -87.542465, 38.5214 ], [ -87.541758, 38.521817 ], [ -87.541405, 38.522054 ], [ -87.540704, 38.522598 ], [ -87.54064, 38.52266 ], [ -87.540052, 38.523236 ], [ -87.539622, 38.523724 ], [ -87.539431, 38.523973 ], [ -87.539407, 38.524003 ], [ -87.539335, 38.524096 ], [ -87.539312, 38.524127 ], [ -87.539022, 38.524579 ], [ -87.538822, 38.524974 ], [ -87.538632, 38.525431 ], [ -87.538489, 38.525779 ], [ -87.538243, 38.526728 ], [ -87.538144, 38.527559 ], [ -87.538151, 38.529329 ], [ -87.538155, 38.52979 ], [ -87.53817, 38.531265 ], [ -87.538177, 38.532012 ], [ -87.538198, 38.534255 ], [ -87.538206, 38.535003 ], [ -87.538211, 38.535561 ], [ -87.538222, 38.536626 ], [ -87.538243, 38.538547 ], [ -87.538275, 38.541498 ], [ -87.538293, 38.543122 ], [ -87.538298, 38.54363 ], [ -87.538306, 38.54434 ], [ -87.538314, 38.545155 ], [ -87.53832, 38.545664 ], [ -87.538328, 38.546362 ], [ -87.538345, 38.547516 ], [ -87.538399, 38.551161 ], [ -87.538435, 38.551912 ], [ -87.538513, 38.552679 ], [ -87.538548, 38.553067 ], [ -87.53858, 38.553412 ], [ -87.538598, 38.554223 ], [ -87.538598, 38.554918 ], [ -87.538596, 38.556112 ], [ -87.538592, 38.559697 ], [ -87.538592, 38.560892 ], [ -87.53859, 38.56308 ], [ -87.53859, 38.563512 ], [ -87.538595, 38.569646 ], [ -87.538597, 38.571835 ], [ -87.538597, 38.573302 ], [ -87.538599, 38.574951 ], [ -87.538637, 38.577703 ], [ -87.538658, 38.579171 ], [ -87.538668, 38.579907 ], [ -87.5387, 38.582115 ], [ -87.538711, 38.582852 ], [ -87.538719, 38.583433 ], [ -87.538745, 38.585177 ], [ -87.538754, 38.585759 ], [ -87.538767, 38.587721 ], [ -87.538795, 38.591918 ], [ -87.538834, 38.593609 ], [ -87.538857, 38.594556 ], [ -87.538903, 38.595571 ], [ -87.538977, 38.597237 ], [ -87.539082, 38.599572 ], [ -87.539082, 38.602239 ], [ -87.539082, 38.603908 ], [ -87.539082, 38.604124 ], [ -87.539082, 38.604774 ], [ -87.539082, 38.604991 ], [ -87.539082, 38.606051 ], [ -87.539082, 38.607857 ], [ -87.539058, 38.609232 ], [ -87.539052, 38.609614 ], [ -87.538956, 38.610286 ], [ -87.538925, 38.610506 ], [ -87.538863, 38.610746 ], [ -87.538675, 38.611481 ], [ -87.538485, 38.612004 ], [ -87.538447, 38.612092 ], [ -87.538261, 38.612524 ], [ -87.53814, 38.612801 ], [ -87.537779, 38.613635 ], [ -87.537659, 38.613913 ], [ -87.537172, 38.615036 ], [ -87.537038, 38.615347 ], [ -87.53572, 38.618409 ], [ -87.53524, 38.619525 ], [ -87.535236, 38.619534 ], [ -87.53521, 38.61959 ], [ -87.535134, 38.619759 ], [ -87.53511, 38.619816 ], [ -87.534678, 38.62078 ], [ -87.534641, 38.620871 ], [ -87.5339, 38.62272 ], [ -87.533445, 38.624121 ], [ -87.533419, 38.624204 ], [ -87.533153, 38.625239 ], [ -87.533037, 38.625687 ], [ -87.532875, 38.626509 ], [ -87.532709, 38.627355 ], [ -87.532185, 38.630349 ], [ -87.531962, 38.631631 ], [ -87.531908, 38.63194 ], [ -87.531746, 38.632867 ], [ -87.531692, 38.633176 ], [ -87.531412, 38.634775 ], [ -87.530575, 38.639571 ], [ -87.530296, 38.641171 ], [ -87.53002, 38.642744 ], [ -87.529696, 38.644599 ], [ -87.529446, 38.6455 ], [ -87.52904, 38.646474 ], [ -87.52859, 38.647276 ], [ -87.528576, 38.647302 ], [ -87.528042, 38.648107 ], [ -87.527852, 38.648352 ], [ -87.527771, 38.648443 ], [ -87.527657, 38.648569 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.563988, 38.490831 ], [ -87.563982, 38.490919 ], [ -87.563977, 38.490983 ], [ -87.563976, 38.491007 ], [ -87.563955, 38.491332 ], [ -87.563936, 38.491439 ], [ -87.563919, 38.491538 ], [ -87.563911, 38.49159 ], [ -87.563851, 38.491976 ], [ -87.563673, 38.493133 ], [ -87.563614, 38.49352 ], [ -87.563601, 38.493605 ], [ -87.562851, 38.498481 ], [ -87.562532, 38.500221 ], [ -87.562399, 38.500947 ], [ -87.562089, 38.502856 ], [ -87.561374, 38.507587 ], [ -87.56121, 38.508427 ], [ -87.561052, 38.508989 ], [ -87.560762, 38.509774 ], [ -87.56025, 38.5108 ], [ -87.559826, 38.511461 ], [ -87.559455, 38.511954 ], [ -87.55888, 38.512631 ], [ -87.558507, 38.513007 ], [ -87.55816, 38.513344 ], [ -87.557761, 38.513683 ], [ -87.557184, 38.51413 ], [ -87.556747, 38.514422 ], [ -87.556471, 38.514606 ], [ -87.555593, 38.51511 ], [ -87.554294, 38.515731 ], [ -87.542762, 38.520997 ], [ -87.541919, 38.521445 ], [ -87.541436, 38.521751 ], [ -87.540478, 38.522486 ], [ -87.539669, 38.523259 ], [ -87.539341, 38.523656 ], [ -87.539202, 38.523867 ], [ -87.53898, 38.524205 ], [ -87.538814, 38.524457 ], [ -87.538453, 38.525134 ], [ -87.538181, 38.525858 ], [ -87.538008, 38.526483 ], [ -87.537896, 38.52728 ], [ -87.537872, 38.527702 ], [ -87.537874, 38.529344 ], [ -87.537897, 38.531267 ], [ -87.53794, 38.535006 ], [ -87.537947, 38.535572 ], [ -87.53797, 38.538547 ], [ -87.538004, 38.543126 ], [ -87.538024, 38.545665 ], [ -87.538029, 38.546377 ], [ -87.538083, 38.550241 ], [ -87.538298, 38.554928 ], [ -87.538301, 38.555089 ], [ -87.538325, 38.560899 ], [ -87.538323, 38.571833 ], [ -87.538322, 38.573984 ], [ -87.538399, 38.579172 ], [ -87.538407, 38.579708 ], [ -87.538439, 38.58285 ], [ -87.538468, 38.585767 ], [ -87.53853, 38.591927 ], [ -87.538571, 38.594579 ], [ -87.538619, 38.595576 ], [ -87.538769, 38.598732 ], [ -87.538796, 38.600022 ], [ -87.538798, 38.604991 ], [ -87.5388, 38.609094 ], [ -87.538735, 38.609927 ], [ -87.538546, 38.610926 ], [ -87.538218, 38.611955 ], [ -87.538002, 38.612458 ], [ -87.537628, 38.613328 ], [ -87.537465, 38.613696 ], [ -87.536812, 38.615173 ], [ -87.535801, 38.617583 ], [ -87.534957, 38.619449 ], [ -87.534833, 38.61974 ], [ -87.533858, 38.622042 ], [ -87.533349, 38.623512 ], [ -87.533084, 38.624396 ], [ -87.532866, 38.625236 ], [ -87.532807, 38.625463 ], [ -87.532553, 38.626658 ], [ -87.531674, 38.631706 ], [ -87.53141, 38.633225 ], [ -87.530915, 38.636066 ], [ -87.529443, 38.644486 ], [ -87.529201, 38.645385 ], [ -87.528886, 38.646131 ], [ -87.528413, 38.647049 ], [ -87.52779, 38.647989 ], [ -87.527745, 38.648048 ], [ -87.527665, 38.648135 ], [ -87.527559, 38.648284 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493314, 38.694923 ], [ -87.493265, 38.694947 ], [ -87.492823, 38.695159 ], [ -87.492303, 38.695409 ], [ -87.491137, 38.695968 ], [ -87.490204, 38.696416 ], [ -87.489938, 38.696543 ], [ -87.489139, 38.696927 ], [ -87.488874, 38.697055 ], [ -87.488414, 38.697275 ], [ -87.488053, 38.697449 ], [ -87.487548, 38.697701 ], [ -87.487086, 38.697976 ], [ -87.487065, 38.697989 ], [ -87.486671, 38.698255 ], [ -87.486644, 38.698275 ], [ -87.48606, 38.698715 ], [ -87.485949, 38.6988 ], [ -87.485527, 38.699184 ], [ -87.485126, 38.699597 ], [ -87.484827, 38.699954 ], [ -87.484578, 38.700319 ], [ -87.484282, 38.700756 ], [ -87.484184, 38.700935 ], [ -87.484097, 38.701092 ], [ -87.48403, 38.701215 ], [ -87.483878, 38.701584 ], [ -87.48381, 38.701751 ], [ -87.483733, 38.70194 ], [ -87.483717, 38.701997 ], [ -87.483514, 38.702731 ], [ -87.48351, 38.70276 ], [ -87.483481, 38.703022 ], [ -87.483436, 38.703407 ], [ -87.483415, 38.70359 ], [ -87.48342, 38.70457 ], [ -87.483435, 38.704957 ], [ -87.483468, 38.705802 ], [ -87.483567, 38.708337 ], [ -87.483601, 38.709182 ], [ -87.483606, 38.70933 ], [ -87.483624, 38.709774 ], [ -87.48363, 38.709923 ], [ -87.483653, 38.710531 ], [ -87.483722, 38.712355 ], [ -87.483744, 38.712918 ], [ -87.483747, 38.712963 ], [ -87.483748, 38.713008 ], [ -87.483776, 38.713733 ], [ -87.483866, 38.716045 ], [ -87.483896, 38.716816 ], [ -87.483901, 38.716947 ], [ -87.483916, 38.717343 ], [ -87.483921, 38.717475 ], [ -87.484018, 38.719989 ], [ -87.484057, 38.720981 ], [ -87.484064, 38.722291 ], [ -87.484038, 38.722676 ], [ -87.483989, 38.723176 ], [ -87.48394, 38.723685 ], [ -87.483433, 38.727158 ], [ -87.483383, 38.727493 ], [ -87.48302, 38.729984 ], [ -87.482968, 38.730349 ], [ -87.482811, 38.731445 ], [ -87.48276, 38.731811 ], [ -87.482724, 38.732048 ], [ -87.482616, 38.732759 ], [ -87.482581, 38.732997 ], [ -87.482577, 38.733019 ], [ -87.482568, 38.733085 ], [ -87.482566, 38.733108 ], [ -87.482556, 38.733181 ], [ -87.482525, 38.733403 ], [ -87.482516, 38.733477 ], [ -87.482507, 38.733542 ], [ -87.48243, 38.734012 ], [ -87.482387, 38.734282 ], [ -87.482217, 38.735101 ], [ -87.482086, 38.735602 ], [ -87.481949, 38.736128 ], [ -87.481946, 38.736138 ], [ -87.481857, 38.736412 ], [ -87.481704, 38.736892 ], [ -87.481568, 38.73726 ], [ -87.481466, 38.737541 ], [ -87.481458, 38.73756 ], [ -87.481435, 38.737618 ], [ -87.481428, 38.737638 ], [ -87.481316, 38.737925 ], [ -87.481223, 38.738167 ], [ -87.480976, 38.738787 ], [ -87.480863, 38.739075 ], [ -87.480847, 38.739115 ], [ -87.480821, 38.739175 ], [ -87.480696, 38.739474 ], [ -87.480681, 38.739512 ], [ -87.480657, 38.739575 ], [ -87.480507, 38.739958 ], [ -87.480096, 38.740965 ], [ -87.479425, 38.742642 ], [ -87.478786, 38.744242 ], [ -87.478365, 38.74531 ], [ -87.478009, 38.746181 ], [ -87.475812, 38.751678 ], [ -87.475743, 38.75185 ], [ -87.475162, 38.753318 ], [ -87.474818, 38.754165 ], [ -87.474516, 38.75492 ], [ -87.474172, 38.755781 ], [ -87.474132, 38.755876 ], [ -87.474035, 38.756114 ], [ -87.473944, 38.756354 ], [ -87.473778, 38.756743 ], [ -87.47333, 38.757886 ], [ -87.472978, 38.758745 ], [ -87.472959, 38.758793 ], [ -87.47272, 38.759393 ], [ -87.472596, 38.759703 ], [ -87.471864, 38.761535 ], [ -87.471792, 38.761716 ], [ -87.469651, 38.767025 ], [ -87.469244, 38.768036 ], [ -87.469038, 38.768579 ], [ -87.468921, 38.768859 ], [ -87.468866, 38.768974 ], [ -87.468619, 38.769625 ], [ -87.468579, 38.769733 ], [ -87.468077, 38.771108 ], [ -87.46762, 38.772385 ], [ -87.467563, 38.772547 ], [ -87.467296, 38.773267 ], [ -87.467215, 38.773485 ], [ -87.466869, 38.774439 ], [ -87.466796, 38.774642 ], [ -87.466559, 38.775312 ], [ -87.466109, 38.776532 ], [ -87.465645, 38.777924 ], [ -87.465403, 38.778803 ], [ -87.465328, 38.779077 ], [ -87.465125, 38.779898 ], [ -87.465055, 38.780224 ], [ -87.464968, 38.780624 ], [ -87.46482, 38.781498 ], [ -87.464756, 38.781916 ], [ -87.464258, 38.785225 ], [ -87.464077, 38.786348 ], [ -87.463973, 38.787011 ], [ -87.463885, 38.787581 ], [ -87.463767, 38.788393 ], [ -87.46371, 38.78871 ], [ -87.463673, 38.788915 ], [ -87.463603, 38.789306 ], [ -87.46355, 38.789529 ], [ -87.463503, 38.789733 ], [ -87.463489, 38.789792 ], [ -87.463369, 38.790163 ], [ -87.46324, 38.790605 ], [ -87.46306, 38.7911 ], [ -87.462875, 38.791551 ], [ -87.462673, 38.792005 ], [ -87.462474, 38.792429 ], [ -87.46228, 38.792803 ], [ -87.462265, 38.792833 ], [ -87.46206, 38.793204 ], [ -87.461569, 38.793987 ], [ -87.461218, 38.794502 ], [ -87.460251, 38.795792 ], [ -87.459597, 38.796677 ], [ -87.459129, 38.797299 ], [ -87.458471, 38.798196 ], [ -87.458246, 38.798511 ], [ -87.457374, 38.799655 ], [ -87.456475, 38.800859 ], [ -87.455868, 38.801674 ], [ -87.454485, 38.803507 ], [ -87.454261, 38.803801 ], [ -87.453787, 38.804438 ], [ -87.453705, 38.80455 ], [ -87.453017, 38.80546 ], [ -87.452507, 38.806152 ], [ -87.451693, 38.807231 ], [ -87.451185, 38.807906 ], [ -87.450995, 38.808162 ], [ -87.45015, 38.809304 ], [ -87.449384, 38.81032 ], [ -87.44898, 38.810847 ], [ -87.448804, 38.811079 ], [ -87.448426, 38.811601 ], [ -87.447994, 38.812225 ], [ -87.447602, 38.812835 ], [ -87.447409, 38.813169 ], [ -87.447164, 38.813609 ], [ -87.446918, 38.814063 ], [ -87.446673, 38.814548 ], [ -87.446521, 38.814861 ], [ -87.446432, 38.815071 ], [ -87.446269, 38.815423 ], [ -87.445989, 38.816147 ], [ -87.445693, 38.817046 ], [ -87.445515, 38.817681 ], [ -87.445352, 38.818332 ], [ -87.445205, 38.818886 ], [ -87.444934, 38.819964 ], [ -87.444567, 38.821433 ], [ -87.444296, 38.822491 ], [ -87.444174, 38.822992 ], [ -87.444113, 38.823219 ], [ -87.443991, 38.82368 ], [ -87.443658, 38.824999 ], [ -87.443139, 38.827065 ], [ -87.442906, 38.827969 ], [ -87.442623, 38.829121 ], [ -87.44231, 38.830345 ], [ -87.442005, 38.831542 ], [ -87.441894, 38.831943 ], [ -87.441848, 38.832124 ], [ -87.441765, 38.832447 ], [ -87.441627, 38.833012 ], [ -87.441349, 38.834098 ], [ -87.441153, 38.83487 ], [ -87.440691, 38.836726 ], [ -87.44019, 38.838688 ], [ -87.439926, 38.839743 ], [ -87.439855, 38.84002 ], [ -87.439353, 38.841993 ], [ -87.438614, 38.844924 ], [ -87.438078, 38.847053 ], [ -87.436966, 38.85142 ], [ -87.436771, 38.852169 ], [ -87.436676, 38.852582 ], [ -87.436386, 38.853713 ], [ -87.436226, 38.85434 ], [ -87.436079, 38.854935 ], [ -87.435859, 38.85579 ], [ -87.435648, 38.856645 ], [ -87.435301, 38.858026 ], [ -87.43511, 38.85875 ], [ -87.435048, 38.85899 ], [ -87.434291, 38.861968 ], [ -87.433823, 38.863857 ], [ -87.433508, 38.865069 ], [ -87.43337, 38.865605 ], [ -87.433138, 38.866653 ], [ -87.43305, 38.867147 ], [ -87.433038, 38.86719 ], [ -87.433037, 38.867236 ], [ -87.432967, 38.867852 ], [ -87.432951, 38.868242 ], [ -87.432944, 38.868435 ], [ -87.432961, 38.868971 ], [ -87.433012, 38.869466 ], [ -87.433125, 38.870143 ], [ -87.433251, 38.870644 ], [ -87.433425, 38.871199 ], [ -87.433482, 38.871346 ], [ -87.433644, 38.871763 ], [ -87.433906, 38.872314 ], [ -87.433986, 38.872465 ], [ -87.434154, 38.872781 ], [ -87.434237, 38.872916 ], [ -87.434328, 38.873063 ], [ -87.43453, 38.873371 ], [ -87.434561, 38.873419 ], [ -87.434794, 38.873747 ], [ -87.435087, 38.874126 ], [ -87.435252, 38.874327 ], [ -87.435344, 38.874428 ], [ -87.435633, 38.874742 ], [ -87.43596, 38.875077 ], [ -87.436028, 38.875146 ], [ -87.436952, 38.876073 ], [ -87.437283, 38.876405 ], [ -87.437346, 38.876469 ], [ -87.437477, 38.8766 ], [ -87.437538, 38.876662 ], [ -87.437602, 38.876727 ], [ -87.438442, 38.877584 ], [ -87.438463, 38.877606 ], [ -87.438932, 38.878103 ], [ -87.43928, 38.878505 ], [ -87.439556, 38.878841 ], [ -87.439837, 38.879204 ], [ -87.440264, 38.879815 ], [ -87.440546, 38.880243 ], [ -87.440713, 38.880525 ], [ -87.440839, 38.880739 ], [ -87.441117, 38.881246 ], [ -87.441294, 38.881611 ], [ -87.441343, 38.881713 ], [ -87.441357, 38.881741 ], [ -87.441477, 38.882025 ], [ -87.441522, 38.88213 ], [ -87.441648, 38.8824 ], [ -87.441793, 38.882775 ], [ -87.44192, 38.883148 ], [ -87.442033, 38.883514 ], [ -87.442172, 38.884024 ], [ -87.442202, 38.884131 ], [ -87.442341, 38.884761 ], [ -87.442439, 38.885364 ], [ -87.442495, 38.885775 ], [ -87.442528, 38.886213 ], [ -87.442559, 38.886733 ], [ -87.442555, 38.887282 ], [ -87.442534, 38.887849 ], [ -87.44246, 38.888651 ], [ -87.44239, 38.889095 ], [ -87.442289, 38.889621 ], [ -87.442204, 38.889982 ], [ -87.44216, 38.890171 ], [ -87.442024, 38.890671 ], [ -87.441864, 38.891166 ], [ -87.441585, 38.891889 ], [ -87.441116, 38.893082 ], [ -87.441033, 38.893284 ], [ -87.440815, 38.893818 ], [ -87.43937, 38.897467 ], [ -87.439152, 38.898019 ], [ -87.438838, 38.898807 ], [ -87.438816, 38.898862 ], [ -87.43855, 38.899534 ], [ -87.437756, 38.901552 ], [ -87.437504, 38.902194 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.49368, 38.694877 ], [ -87.493619, 38.694907 ], [ -87.493356, 38.695033 ], [ -87.492434, 38.695476 ], [ -87.492091, 38.695641 ], [ -87.491028, 38.696153 ], [ -87.489038, 38.697112 ], [ -87.488183, 38.697524 ], [ -87.487229, 38.698032 ], [ -87.486822, 38.698294 ], [ -87.486012, 38.698919 ], [ -87.48559, 38.699314 ], [ -87.485047, 38.69993 ], [ -87.484602, 38.700552 ], [ -87.484424, 38.700852 ], [ -87.484082, 38.701568 ], [ -87.484031, 38.701711 ], [ -87.483959, 38.701914 ], [ -87.483808, 38.702442 ], [ -87.48374, 38.702796 ], [ -87.483722, 38.703001 ], [ -87.483653, 38.703788 ], [ -87.483694, 38.704837 ], [ -87.483775, 38.706941 ], [ -87.483999, 38.712722 ], [ -87.484157, 38.716822 ], [ -87.484326, 38.721178 ], [ -87.484296, 38.722676 ], [ -87.484253, 38.723262 ], [ -87.484156, 38.724042 ], [ -87.484036, 38.72489 ], [ -87.483495, 38.728566 ], [ -87.483301, 38.729912 ], [ -87.483294, 38.729957 ], [ -87.483137, 38.731015 ], [ -87.483025, 38.731853 ], [ -87.483022, 38.731873 ], [ -87.482828, 38.733127 ], [ -87.482822, 38.733173 ], [ -87.482791, 38.733398 ], [ -87.48278, 38.733479 ], [ -87.482712, 38.733972 ], [ -87.48261, 38.734581 ], [ -87.482518, 38.735035 ], [ -87.482399, 38.735554 ], [ -87.482217, 38.736259 ], [ -87.482013, 38.736895 ], [ -87.481766, 38.737621 ], [ -87.480901, 38.739755 ], [ -87.480609, 38.740477 ], [ -87.480041, 38.74191 ], [ -87.479729, 38.74268 ], [ -87.479187, 38.744055 ], [ -87.478492, 38.745774 ], [ -87.478267, 38.746345 ], [ -87.477666, 38.747829 ], [ -87.477217, 38.748973 ], [ -87.476687, 38.750287 ], [ -87.476391, 38.751038 ], [ -87.475859, 38.752349 ], [ -87.475324, 38.753687 ], [ -87.474806, 38.754997 ], [ -87.474482, 38.755814 ], [ -87.474376, 38.756064 ], [ -87.473163, 38.759082 ], [ -87.473008, 38.759481 ], [ -87.472902, 38.759754 ], [ -87.472864, 38.759851 ], [ -87.471896, 38.762235 ], [ -87.46963, 38.767872 ], [ -87.469207, 38.768911 ], [ -87.469163, 38.769028 ], [ -87.468812, 38.769967 ], [ -87.468208, 38.771626 ], [ -87.467569, 38.773389 ], [ -87.466888, 38.775267 ], [ -87.466576, 38.776142 ], [ -87.466303, 38.776873 ], [ -87.466049, 38.777653 ], [ -87.465862, 38.778254 ], [ -87.465593, 38.779235 ], [ -87.465363, 38.780229 ], [ -87.465333, 38.780374 ], [ -87.465271, 38.78067 ], [ -87.465022, 38.78219 ], [ -87.464655, 38.784542 ], [ -87.464057, 38.788495 ], [ -87.464021, 38.788706 ], [ -87.463977, 38.788963 ], [ -87.463821, 38.789678 ], [ -87.463692, 38.790198 ], [ -87.46355, 38.7907 ], [ -87.463406, 38.79109 ], [ -87.463191, 38.791632 ], [ -87.462943, 38.792217 ], [ -87.462624, 38.792834 ], [ -87.462362, 38.793321 ], [ -87.461891, 38.794072 ], [ -87.461316, 38.794898 ], [ -87.460649, 38.795766 ], [ -87.459608, 38.797167 ], [ -87.459045, 38.797914 ], [ -87.458287, 38.798939 ], [ -87.45772, 38.799688 ], [ -87.456593, 38.80122 ], [ -87.455937, 38.802093 ], [ -87.45478, 38.803624 ], [ -87.451509, 38.807994 ], [ -87.451085, 38.808548 ], [ -87.450761, 38.808972 ], [ -87.448992, 38.811348 ], [ -87.448448, 38.812094 ], [ -87.447992, 38.812799 ], [ -87.447357, 38.813848 ], [ -87.446969, 38.814613 ], [ -87.44682, 38.814938 ], [ -87.44665, 38.815337 ], [ -87.446511, 38.815685 ], [ -87.446275, 38.816324 ], [ -87.446089, 38.816887 ], [ -87.445871, 38.817638 ], [ -87.445644, 38.818508 ], [ -87.444769, 38.821946 ], [ -87.444488, 38.823033 ], [ -87.444409, 38.823371 ], [ -87.444348, 38.82363 ], [ -87.444216, 38.824039 ], [ -87.443747, 38.826027 ], [ -87.443572, 38.826686 ], [ -87.443214, 38.828114 ], [ -87.443009, 38.828903 ], [ -87.442832, 38.829634 ], [ -87.442347, 38.831557 ], [ -87.442256, 38.831875 ], [ -87.442197, 38.832121 ], [ -87.442124, 38.832422 ], [ -87.441415, 38.835189 ], [ -87.44104, 38.836714 ], [ -87.440192, 38.840023 ], [ -87.439957, 38.840973 ], [ -87.439701, 38.841979 ], [ -87.43961, 38.842336 ], [ -87.439317, 38.84351 ], [ -87.439084, 38.84441 ], [ -87.4386, 38.846336 ], [ -87.437282, 38.851519 ], [ -87.436973, 38.852712 ], [ -87.436797, 38.853452 ], [ -87.436485, 38.854654 ], [ -87.436176, 38.85591 ], [ -87.436041, 38.856412 ], [ -87.435962, 38.856723 ], [ -87.435766, 38.857494 ], [ -87.435541, 38.858421 ], [ -87.435057, 38.860307 ], [ -87.43458, 38.862213 ], [ -87.434206, 38.863657 ], [ -87.433744, 38.865493 ], [ -87.433616, 38.865924 ], [ -87.433418, 38.866762 ], [ -87.433354, 38.867117 ], [ -87.43333, 38.867318 ], [ -87.433275, 38.867687 ], [ -87.433247, 38.868087 ], [ -87.433245, 38.868536 ], [ -87.43326, 38.868957 ], [ -87.4333, 38.869358 ], [ -87.433362, 38.869779 ], [ -87.433437, 38.870158 ], [ -87.433573, 38.870681 ], [ -87.433715, 38.871134 ], [ -87.433883, 38.871574 ], [ -87.434075, 38.872013 ], [ -87.434247, 38.872337 ], [ -87.43444, 38.872703 ], [ -87.434667, 38.873071 ], [ -87.434861, 38.873361 ], [ -87.435005, 38.873576 ], [ -87.435328, 38.873983 ], [ -87.435761, 38.874474 ], [ -87.436447, 38.875189 ], [ -87.436775, 38.875514 ], [ -87.437169, 38.875916 ], [ -87.437407, 38.876154 ], [ -87.437732, 38.876479 ], [ -87.438773, 38.877542 ], [ -87.439122, 38.877907 ], [ -87.439402, 38.878221 ], [ -87.439669, 38.878543 ], [ -87.439991, 38.878947 ], [ -87.440263, 38.879316 ], [ -87.440523, 38.879691 ], [ -87.440782, 38.880089 ], [ -87.441052, 38.880531 ], [ -87.441299, 38.880971 ], [ -87.441732, 38.881872 ], [ -87.441753, 38.881913 ], [ -87.44177, 38.881957 ], [ -87.441931, 38.882331 ], [ -87.442097, 38.882755 ], [ -87.442229, 38.883141 ], [ -87.442411, 38.883743 ], [ -87.442567, 38.884368 ], [ -87.44268, 38.884956 ], [ -87.442779, 38.885617 ], [ -87.44284, 38.886273 ], [ -87.442865, 38.886907 ], [ -87.442855, 38.887509 ], [ -87.442823, 38.888071 ], [ -87.442785, 38.888488 ], [ -87.442657, 38.889313 ], [ -87.442567, 38.889777 ], [ -87.442463, 38.890189 ], [ -87.44232, 38.890705 ], [ -87.442123, 38.891306 ], [ -87.441899, 38.891895 ], [ -87.440923, 38.894364 ], [ -87.439453, 38.898054 ], [ -87.439163, 38.898802 ], [ -87.439126, 38.898893 ], [ -87.437812, 38.902199 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.563988, 38.490831 ], [ -87.563982, 38.490919 ], [ -87.563977, 38.490983 ], [ -87.563976, 38.491007 ], [ -87.563955, 38.491332 ], [ -87.563936, 38.491439 ], [ -87.563919, 38.491538 ], [ -87.563911, 38.49159 ], [ -87.563851, 38.491976 ], [ -87.563673, 38.493133 ], [ -87.563614, 38.49352 ], [ -87.563601, 38.493605 ], [ -87.562851, 38.498481 ], [ -87.562532, 38.500221 ], [ -87.562399, 38.500947 ], [ -87.562089, 38.502856 ], [ -87.561374, 38.507587 ], [ -87.56121, 38.508427 ], [ -87.561052, 38.508989 ], [ -87.560762, 38.509774 ], [ -87.56025, 38.5108 ], [ -87.559826, 38.511461 ], [ -87.559455, 38.511954 ], [ -87.55888, 38.512631 ], [ -87.558507, 38.513007 ], [ -87.55816, 38.513344 ], [ -87.557761, 38.513683 ], [ -87.557184, 38.51413 ], [ -87.556747, 38.514422 ], [ -87.556471, 38.514606 ], [ -87.555593, 38.51511 ], [ -87.554294, 38.515731 ], [ -87.542762, 38.520997 ], [ -87.541919, 38.521445 ], [ -87.541436, 38.521751 ], [ -87.540478, 38.522486 ], [ -87.539669, 38.523259 ], [ -87.539341, 38.523656 ], [ -87.539202, 38.523867 ], [ -87.53898, 38.524205 ], [ -87.538814, 38.524457 ], [ -87.538453, 38.525134 ], [ -87.538181, 38.525858 ], [ -87.538008, 38.526483 ], [ -87.537896, 38.52728 ], [ -87.537872, 38.527702 ], [ -87.537874, 38.529344 ], [ -87.537897, 38.531267 ], [ -87.53794, 38.535006 ], [ -87.537947, 38.535572 ], [ -87.53797, 38.538547 ], [ -87.538004, 38.543126 ], [ -87.538024, 38.545665 ], [ -87.538029, 38.546377 ], [ -87.538083, 38.550241 ], [ -87.538298, 38.554928 ], [ -87.538301, 38.555089 ], [ -87.538325, 38.560899 ], [ -87.538323, 38.571833 ], [ -87.538322, 38.573984 ], [ -87.538399, 38.579172 ], [ -87.538407, 38.579708 ], [ -87.538439, 38.58285 ], [ -87.538468, 38.585767 ], [ -87.53853, 38.591927 ], [ -87.538571, 38.594579 ], [ -87.538619, 38.595576 ], [ -87.538769, 38.598732 ], [ -87.538796, 38.600022 ], [ -87.538798, 38.604991 ], [ -87.5388, 38.609094 ], [ -87.538735, 38.609927 ], [ -87.538546, 38.610926 ], [ -87.538218, 38.611955 ], [ -87.538002, 38.612458 ], [ -87.537628, 38.613328 ], [ -87.537465, 38.613696 ], [ -87.536812, 38.615173 ], [ -87.535801, 38.617583 ], [ -87.534957, 38.619449 ], [ -87.534833, 38.61974 ], [ -87.533858, 38.622042 ], [ -87.533349, 38.623512 ], [ -87.533084, 38.624396 ], [ -87.532866, 38.625236 ], [ -87.532807, 38.625463 ], [ -87.532553, 38.626658 ], [ -87.531674, 38.631706 ], [ -87.53141, 38.633225 ], [ -87.530915, 38.636066 ], [ -87.529443, 38.644486 ], [ -87.529201, 38.645385 ], [ -87.528886, 38.646131 ], [ -87.528413, 38.647049 ], [ -87.52779, 38.647989 ], [ -87.527745, 38.648048 ], [ -87.527665, 38.648135 ], [ -87.527559, 38.648284 ], [ -87.527218, 38.648718 ], [ -87.527079, 38.648862 ], [ -87.526731, 38.649225 ], [ -87.526, 38.649884 ], [ -87.524437, 38.651053 ], [ -87.523133, 38.652016 ], [ -87.522917, 38.652176 ], [ -87.522499, 38.652485 ], [ -87.519595, 38.65462 ], [ -87.516781, 38.656689 ], [ -87.515806, 38.65737 ], [ -87.515018, 38.657921 ], [ -87.513177, 38.659141 ], [ -87.512458, 38.659639 ], [ -87.512395, 38.659683 ], [ -87.51136, 38.660407 ], [ -87.509378, 38.661678 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.474806, 38.754997 ], [ -87.475324, 38.753687 ], [ -87.475859, 38.752349 ], [ -87.476391, 38.751038 ], [ -87.476687, 38.750287 ], [ -87.477217, 38.748973 ], [ -87.477666, 38.747829 ], [ -87.478267, 38.746345 ], [ -87.478492, 38.745774 ], [ -87.479187, 38.744055 ], [ -87.479729, 38.74268 ], [ -87.480041, 38.74191 ], [ -87.480609, 38.740477 ], [ -87.480901, 38.739755 ], [ -87.481766, 38.737621 ], [ -87.482013, 38.736895 ], [ -87.482217, 38.736259 ], [ -87.482399, 38.735554 ], [ -87.482518, 38.735035 ], [ -87.48261, 38.734581 ], [ -87.482712, 38.733972 ], [ -87.48278, 38.733479 ], [ -87.482791, 38.733398 ], [ -87.482822, 38.733173 ], [ -87.482828, 38.733127 ], [ -87.483022, 38.731873 ], [ -87.483025, 38.731853 ], [ -87.483137, 38.731015 ], [ -87.483294, 38.729957 ], [ -87.483301, 38.729912 ], [ -87.483495, 38.728566 ], [ -87.484036, 38.72489 ], [ -87.484156, 38.724042 ], [ -87.484253, 38.723262 ], [ -87.484296, 38.722676 ], [ -87.484326, 38.721178 ], [ -87.484157, 38.716822 ], [ -87.483999, 38.712722 ], [ -87.483775, 38.706941 ], [ -87.483694, 38.704837 ], [ -87.483653, 38.703788 ], [ -87.483722, 38.703001 ], [ -87.48374, 38.702796 ], [ -87.483808, 38.702442 ], [ -87.483959, 38.701914 ], [ -87.484031, 38.701711 ], [ -87.484082, 38.701568 ], [ -87.484424, 38.700852 ], [ -87.484602, 38.700552 ], [ -87.485047, 38.69993 ], [ -87.48559, 38.699314 ], [ -87.486012, 38.698919 ], [ -87.486822, 38.698294 ], [ -87.487229, 38.698032 ], [ -87.488183, 38.697524 ], [ -87.489038, 38.697112 ], [ -87.491028, 38.696153 ], [ -87.492091, 38.695641 ], [ -87.492434, 38.695476 ], [ -87.493356, 38.695033 ], [ -87.493619, 38.694907 ], [ -87.49368, 38.694877 ], [ -87.493637, 38.694768 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485841665", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.490512, 38.687651 ], [ -87.490699, 38.688127 ], [ -87.490838, 38.688491 ], [ -87.490884, 38.688612 ], [ -87.491077, 38.689113 ], [ -87.491096, 38.689164 ], [ -87.49114, 38.689277 ], [ -87.491903, 38.691259 ], [ -87.491965, 38.691422 ], [ -87.492154, 38.691912 ], [ -87.492217, 38.692076 ], [ -87.492523, 38.692869 ], [ -87.493036, 38.694202 ], [ -87.493297, 38.69488 ], [ -87.493314, 38.694923 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485841663", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493637, 38.694768 ], [ -87.49368, 38.694877 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104469613150", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.487757, 38.678537 ], [ -87.487412, 38.678283 ], [ -87.486466, 38.677724 ], [ -87.486408, 38.677698 ], [ -87.485906, 38.67747 ], [ -87.485163, 38.677196 ], [ -87.484366, 38.67698 ], [ -87.481827, 38.676417 ], [ -87.480275, 38.676074 ], [ -87.47846, 38.675672 ], [ -87.477432, 38.675445 ], [ -87.475316, 38.675016 ], [ -87.474559, 38.674913 ], [ -87.473898, 38.674845 ], [ -87.472966, 38.674781 ], [ -87.471113, 38.674656 ], [ -87.470941, 38.674644 ], [ -87.463278, 38.674153 ], [ -87.463007, 38.674135 ], [ -87.460882, 38.674 ], [ -87.458749, 38.673902 ], [ -87.45692, 38.673883 ], [ -87.45595, 38.673908 ], [ -87.453687, 38.674019 ], [ -87.452496, 38.674088 ], [ -87.435916, 38.675052 ], [ -87.430014, 38.675395 ], [ -87.429957, 38.675396 ], [ -87.4299, 38.675401 ], [ -87.429825, 38.675406 ], [ -87.428001, 38.675557 ], [ -87.426917, 38.675704 ], [ -87.425189, 38.676034 ], [ -87.423535, 38.676483 ], [ -87.42007, 38.677504 ], [ -87.41324, 38.679517 ], [ -87.412783, 38.679624 ], [ -87.412588, 38.679669 ], [ -87.411903, 38.679796 ], [ -87.411314, 38.679865 ], [ -87.410627, 38.679911 ], [ -87.408938, 38.679893 ], [ -87.40677, 38.679648 ], [ -87.402888, 38.67914 ], [ -87.399754, 38.678648 ], [ -87.395868, 38.678147 ], [ -87.393277, 38.677872 ], [ -87.389316, 38.677468 ], [ -87.388303, 38.677324 ], [ -87.385956, 38.677051 ], [ -87.381135, 38.676567 ], [ -87.378761, 38.676312 ], [ -87.374723, 38.675858 ], [ -87.373929, 38.675747 ], [ -87.371652, 38.67543 ], [ -87.369264, 38.675058 ], [ -87.368452, 38.674895 ], [ -87.367344, 38.674673 ], [ -87.361682, 38.673536 ], [ -87.356786, 38.672644 ], [ -87.3555, 38.672362 ], [ -87.351278, 38.671481 ], [ -87.349751, 38.671187 ], [ -87.339403, 38.669109 ], [ -87.335218, 38.668251 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335218, 38.668251 ], [ -87.33426, 38.668057 ], [ -87.3334, 38.667877 ], [ -87.332898, 38.667773 ], [ -87.331725, 38.667567 ], [ -87.329113, 38.666923 ], [ -87.328527, 38.666724 ], [ -87.327747, 38.666439 ], [ -87.327283, 38.666279 ], [ -87.32678, 38.666093 ], [ -87.326294, 38.665906 ], [ -87.325641, 38.665626 ], [ -87.324279, 38.665042 ], [ -87.322648, 38.664236 ], [ -87.318258, 38.662122 ], [ -87.317899, 38.661955 ], [ -87.317322, 38.661687 ], [ -87.316209, 38.661251 ], [ -87.310667, 38.658591 ], [ -87.309814, 38.658194 ], [ -87.304662, 38.655679 ], [ -87.301676, 38.654296 ], [ -87.297607, 38.652353 ], [ -87.295148, 38.651201 ], [ -87.294866, 38.651089 ], [ -87.29414, 38.650801 ], [ -87.293121, 38.650419 ], [ -87.292092, 38.650055 ], [ -87.29053, 38.64944 ], [ -87.289312, 38.64909 ], [ -87.288778, 38.648907 ], [ -87.286669, 38.648328 ], [ -87.285823, 38.648092 ], [ -87.282677, 38.647467 ], [ -87.282197, 38.647338 ], [ -87.280773, 38.647102 ], [ -87.276089, 38.646363 ], [ -87.274834, 38.646208 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104471685675", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.274892, 38.646433 ], [ -87.276102, 38.646629 ], [ -87.277635, 38.646882 ], [ -87.277708, 38.646897 ], [ -87.279585, 38.647185 ], [ -87.283584, 38.647863 ], [ -87.284109, 38.647978 ], [ -87.285808, 38.648366 ], [ -87.287834, 38.648907 ], [ -87.288923, 38.649196 ], [ -87.289464, 38.649364 ], [ -87.290476, 38.649691 ], [ -87.290943, 38.649896 ], [ -87.291634, 38.650123 ], [ -87.292661, 38.650479 ], [ -87.29334, 38.650726 ], [ -87.293477, 38.650778 ], [ -87.293501, 38.650787 ], [ -87.294837, 38.651395 ], [ -87.296218, 38.652 ], [ -87.297514, 38.652609 ], [ -87.301423, 38.654461 ], [ -87.304624, 38.655962 ], [ -87.309665, 38.658391 ], [ -87.310435, 38.658752 ], [ -87.311783, 38.659385 ], [ -87.315972, 38.6614 ], [ -87.316888, 38.661815 ], [ -87.319754, 38.663148 ], [ -87.322241, 38.66434 ], [ -87.322712, 38.664594 ], [ -87.324075, 38.6652 ], [ -87.32538, 38.665796 ], [ -87.326572, 38.666269 ], [ -87.328227, 38.666855 ], [ -87.329276, 38.667196 ], [ -87.330411, 38.667489 ], [ -87.331914, 38.667839 ], [ -87.332888, 38.668028 ], [ -87.33502, 38.668478 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.274834, 38.646208 ], [ -87.271649, 38.645728 ], [ -87.269891, 38.645616 ], [ -87.267998, 38.645501 ], [ -87.26543, 38.645452 ], [ -87.263235, 38.645577 ], [ -87.251603, 38.646362 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104472002543", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.251756, 38.646594 ], [ -87.264972, 38.645702 ], [ -87.265562, 38.645689 ], [ -87.266057, 38.645677 ], [ -87.266338, 38.645671 ], [ -87.266637, 38.645677 ], [ -87.267099, 38.645685 ], [ -87.267543, 38.64571 ], [ -87.268038, 38.645739 ], [ -87.269408, 38.645816 ], [ -87.269556, 38.645825 ], [ -87.269878, 38.64582 ], [ -87.271724, 38.645938 ], [ -87.274892, 38.646433 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485841553", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493637, 38.694768 ], [ -87.493618, 38.694722 ], [ -87.493384, 38.694147 ], [ -87.492763, 38.692669 ], [ -87.492343, 38.691572 ], [ -87.49219, 38.691186 ], [ -87.491432, 38.689271 ], [ -87.491408, 38.68921 ], [ -87.491385, 38.689151 ], [ -87.491257, 38.688802 ], [ -87.491194, 38.688616 ], [ -87.491151, 38.688487 ], [ -87.490809, 38.687608 ], [ -87.49068, 38.687259 ], [ -87.490562, 38.686839 ], [ -87.490463, 38.686485 ], [ -87.490279, 38.68541 ], [ -87.490238, 38.684858 ], [ -87.490232, 38.684447 ], [ -87.490222, 38.68364 ], [ -87.490128, 38.682465 ], [ -87.490121, 38.682365 ], [ -87.490018, 38.681839 ], [ -87.489868, 38.681355 ], [ -87.489709, 38.680951 ], [ -87.489303, 38.680211 ], [ -87.489055, 38.679851 ], [ -87.488617, 38.679337 ], [ -87.488491, 38.679188 ], [ -87.488092, 38.678807 ], [ -87.487757, 38.678537 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "110170070318", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492478, 38.674611 ], [ -87.491958, 38.675279 ], [ -87.491722, 38.675625 ], [ -87.491286, 38.676266 ], [ -87.49097, 38.676671 ], [ -87.490676, 38.676989 ], [ -87.490314, 38.677311 ], [ -87.489912, 38.677609 ], [ -87.489474, 38.677872 ], [ -87.489098, 38.678064 ], [ -87.488952, 38.678123 ], [ -87.488611, 38.678263 ], [ -87.487757, 38.678537 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257610285", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.33502, 38.668478 ], [ -87.335885, 38.668653 ], [ -87.337419, 38.668971 ], [ -87.338629, 38.66919 ], [ -87.33935, 38.669333 ], [ -87.341391, 38.66975 ], [ -87.345758, 38.670609 ], [ -87.347253, 38.670927 ], [ -87.348744, 38.671206 ], [ -87.349938, 38.671448 ], [ -87.350852, 38.671635 ], [ -87.351278, 38.671713 ], [ -87.352193, 38.671899 ], [ -87.355452, 38.672596 ], [ -87.3567, 38.672842 ], [ -87.361561, 38.673781 ], [ -87.363219, 38.67409 ], [ -87.366457, 38.674745 ], [ -87.367209, 38.67488 ], [ -87.368309, 38.675077 ], [ -87.369017, 38.675219 ], [ -87.369643, 38.675344 ], [ -87.371126, 38.675642 ], [ -87.372048, 38.675772 ], [ -87.374224, 38.676099 ], [ -87.378563, 38.676539 ], [ -87.380974, 38.676804 ], [ -87.385832, 38.677308 ], [ -87.388114, 38.677532 ], [ -87.393333, 38.678137 ], [ -87.395811, 38.678392 ], [ -87.399783, 38.678913 ], [ -87.402835, 38.679409 ], [ -87.404842, 38.679635 ], [ -87.406106, 38.679778 ], [ -87.406838, 38.679861 ], [ -87.4089, 38.680094 ], [ -87.409158, 38.680119 ], [ -87.410016, 38.680151 ], [ -87.410786, 38.680122 ], [ -87.410874, 38.680112 ], [ -87.411863, 38.680011 ], [ -87.412674, 38.679863 ], [ -87.41287, 38.679815 ], [ -87.413268, 38.679715 ], [ -87.414353, 38.679397 ], [ -87.418792, 38.6781 ], [ -87.420272, 38.677668 ], [ -87.422175, 38.677111 ], [ -87.424345, 38.676477 ], [ -87.425022, 38.676285 ], [ -87.425732, 38.67613 ], [ -87.426394, 38.675999 ], [ -87.427615, 38.675806 ], [ -87.427959, 38.67577 ], [ -87.429089, 38.675654 ], [ -87.429935, 38.675604 ], [ -87.43115, 38.675532 ], [ -87.434797, 38.675318 ], [ -87.436013, 38.675247 ], [ -87.43765, 38.67515 ], [ -87.442561, 38.674862 ], [ -87.444199, 38.674766 ], [ -87.445876, 38.674667 ], [ -87.450911, 38.674372 ], [ -87.452589, 38.674274 ], [ -87.452796, 38.674262 ], [ -87.454727, 38.674158 ], [ -87.455267, 38.674129 ], [ -87.457015, 38.674088 ], [ -87.45864, 38.674101 ], [ -87.46091, 38.674203 ], [ -87.461146, 38.674218 ], [ -87.463007, 38.674339 ], [ -87.463283, 38.674357 ], [ -87.464829, 38.674457 ], [ -87.469467, 38.674759 ], [ -87.471014, 38.67486 ], [ -87.471032, 38.674861 ], [ -87.471088, 38.674864 ], [ -87.471107, 38.674866 ], [ -87.472502, 38.674956 ], [ -87.473207, 38.675024 ], [ -87.473259, 38.675031 ], [ -87.474351, 38.67519 ], [ -87.475361, 38.675395 ], [ -87.476634, 38.675732 ], [ -87.478315, 38.676302 ], [ -87.479491, 38.676731 ], [ -87.48152, 38.677472 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104469553886", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519164, 38.707168 ], [ -87.518035, 38.707236 ], [ -87.510966, 38.707614 ], [ -87.51012, 38.70764 ], [ -87.509043, 38.707618 ], [ -87.507715, 38.707509 ], [ -87.507411, 38.707469 ], [ -87.506619, 38.707365 ], [ -87.505339, 38.70709 ], [ -87.504757, 38.706939 ], [ -87.504247, 38.706786 ], [ -87.503246, 38.706435 ], [ -87.503056, 38.706374 ], [ -87.502074, 38.705954 ], [ -87.500779, 38.705286 ], [ -87.499514, 38.704462 ], [ -87.499166, 38.704186 ], [ -87.498572, 38.703703 ], [ -87.49774, 38.702914 ], [ -87.497455, 38.702593 ], [ -87.496566, 38.701514 ], [ -87.496503, 38.701419 ], [ -87.496245, 38.701028 ], [ -87.496103, 38.700811 ], [ -87.496005, 38.700662 ], [ -87.495964, 38.700589 ], [ -87.495915, 38.700501 ], [ -87.495768, 38.70024 ], [ -87.495732, 38.700177 ], [ -87.495492, 38.699671 ], [ -87.494808, 38.697959 ], [ -87.494534, 38.697258 ], [ -87.494458, 38.696998 ], [ -87.494363, 38.696786 ], [ -87.494297, 38.696639 ], [ -87.494111, 38.696222 ], [ -87.493992, 38.695752 ], [ -87.493809, 38.695239 ], [ -87.49368, 38.694877 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335218, 38.668251 ], [ -87.33426, 38.668057 ], [ -87.3334, 38.667877 ], [ -87.332898, 38.667773 ], [ -87.331725, 38.667567 ], [ -87.329113, 38.666923 ], [ -87.328527, 38.666724 ], [ -87.327747, 38.666439 ], [ -87.327283, 38.666279 ], [ -87.32678, 38.666093 ], [ -87.326294, 38.665906 ], [ -87.325641, 38.665626 ], [ -87.324279, 38.665042 ], [ -87.322648, 38.664236 ], [ -87.318258, 38.662122 ], [ -87.317899, 38.661955 ], [ -87.317322, 38.661687 ], [ -87.316209, 38.661251 ], [ -87.310667, 38.658591 ], [ -87.309814, 38.658194 ], [ -87.304662, 38.655679 ], [ -87.301676, 38.654296 ], [ -87.297607, 38.652353 ], [ -87.295148, 38.651201 ], [ -87.294866, 38.651089 ], [ -87.29414, 38.650801 ], [ -87.293121, 38.650419 ], [ -87.292092, 38.650055 ], [ -87.29053, 38.64944 ], [ -87.289312, 38.64909 ], [ -87.288778, 38.648907 ], [ -87.286669, 38.648328 ], [ -87.285823, 38.648092 ], [ -87.282677, 38.647467 ], [ -87.282197, 38.647338 ], [ -87.280773, 38.647102 ], [ -87.276089, 38.646363 ], [ -87.274834, 38.646208 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.274834, 38.646208 ], [ -87.271649, 38.645728 ], [ -87.269891, 38.645616 ], [ -87.267998, 38.645501 ], [ -87.26543, 38.645452 ], [ -87.263235, 38.645577 ], [ -87.251603, 38.646362 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257622329", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492763, 38.692669 ], [ -87.493384, 38.694147 ], [ -87.493618, 38.694722 ], [ -87.493637, 38.694768 ], [ -87.49368, 38.694877 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "110170070276", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.487757, 38.678537 ], [ -87.488092, 38.678807 ], [ -87.488491, 38.679188 ], [ -87.488617, 38.679337 ], [ -87.489055, 38.679851 ], [ -87.489303, 38.680211 ], [ -87.489709, 38.680951 ], [ -87.489868, 38.681355 ], [ -87.490018, 38.681839 ], [ -87.490121, 38.682365 ], [ -87.490128, 38.682465 ], [ -87.490222, 38.68364 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "110170070320", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.48152, 38.677472 ], [ -87.482067, 38.677672 ], [ -87.48273, 38.677907 ], [ -87.483614, 38.678222 ], [ -87.484159, 38.678394 ], [ -87.48477, 38.678545 ], [ -87.485512, 38.678654 ], [ -87.486068, 38.678689 ], [ -87.48648, 38.67868 ], [ -87.486683, 38.678677 ], [ -87.487757, 38.678537 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485841667", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.496558, 38.693356 ], [ -87.496313, 38.693483 ], [ -87.495395, 38.693924 ], [ -87.494493, 38.694356 ], [ -87.493845, 38.694668 ], [ -87.493637, 38.694768 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624700", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519189, 38.707404 ], [ -87.518072, 38.707485 ], [ -87.510865, 38.707856 ], [ -87.510091, 38.707872 ], [ -87.509778, 38.707879 ], [ -87.50964, 38.707875 ], [ -87.50905, 38.707863 ], [ -87.508293, 38.707814 ], [ -87.507844, 38.707769 ], [ -87.507783, 38.707762 ], [ -87.5076, 38.707744 ], [ -87.50754, 38.707738 ], [ -87.507369, 38.707721 ], [ -87.506317, 38.707568 ], [ -87.505755, 38.707455 ], [ -87.505495, 38.70739 ], [ -87.504492, 38.70714 ], [ -87.503791, 38.706921 ], [ -87.503136, 38.706685 ], [ -87.502313, 38.70635 ], [ -87.500631, 38.705491 ], [ -87.499819, 38.704982 ], [ -87.499797, 38.704966 ], [ -87.498771, 38.70423 ], [ -87.498436, 38.70397 ], [ -87.498145, 38.703713 ], [ -87.497964, 38.703553 ], [ -87.497873, 38.703473 ], [ -87.497446, 38.703048 ], [ -87.497399, 38.703002 ], [ -87.497288, 38.702867 ], [ -87.497089, 38.702626 ], [ -87.496602, 38.702034 ], [ -87.496503, 38.701898 ], [ -87.496321, 38.701646 ], [ -87.496261, 38.701563 ], [ -87.496214, 38.701491 ], [ -87.496024, 38.701197 ], [ -87.495908, 38.701018 ], [ -87.495885, 38.700983 ], [ -87.49582, 38.700883 ], [ -87.495808, 38.70086 ], [ -87.4958, 38.700845 ], [ -87.495776, 38.700802 ], [ -87.495769, 38.700788 ], [ -87.495759, 38.70077 ], [ -87.495732, 38.700719 ], [ -87.495723, 38.700702 ], [ -87.495195, 38.699692 ], [ -87.494787, 38.698755 ], [ -87.494537, 38.698074 ], [ -87.494083, 38.696977 ], [ -87.49404, 38.696775 ], [ -87.493374, 38.69508 ], [ -87.493356, 38.695033 ], [ -87.493314, 38.694923 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "110170070272", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.48152, 38.677472 ], [ -87.482067, 38.677672 ], [ -87.48273, 38.677907 ], [ -87.483614, 38.678222 ], [ -87.484159, 38.678394 ], [ -87.48477, 38.678545 ], [ -87.485512, 38.678654 ], [ -87.486068, 38.678689 ], [ -87.48648, 38.67868 ], [ -87.486683, 38.678677 ], [ -87.487757, 38.678537 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485838817", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.496984, 38.693215 ], [ -87.496856, 38.69325 ], [ -87.496558, 38.693356 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104469613492", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.487757, 38.678537 ], [ -87.487412, 38.678283 ], [ -87.486466, 38.677724 ], [ -87.486408, 38.677698 ], [ -87.485906, 38.67747 ], [ -87.485163, 38.677196 ], [ -87.484366, 38.67698 ], [ -87.481827, 38.676417 ], [ -87.480275, 38.676074 ], [ -87.47846, 38.675672 ], [ -87.477432, 38.675445 ], [ -87.475316, 38.675016 ], [ -87.474559, 38.674913 ], [ -87.473898, 38.674845 ], [ -87.472966, 38.674781 ], [ -87.471113, 38.674656 ], [ -87.470941, 38.674644 ], [ -87.463278, 38.674153 ], [ -87.463007, 38.674135 ], [ -87.460882, 38.674 ], [ -87.458749, 38.673902 ], [ -87.45692, 38.673883 ], [ -87.45595, 38.673908 ], [ -87.453687, 38.674019 ], [ -87.452496, 38.674088 ], [ -87.435916, 38.675052 ], [ -87.430014, 38.675395 ], [ -87.429957, 38.675396 ], [ -87.4299, 38.675401 ], [ -87.429825, 38.675406 ], [ -87.428001, 38.675557 ], [ -87.426917, 38.675704 ], [ -87.425189, 38.676034 ], [ -87.423535, 38.676483 ], [ -87.42007, 38.677504 ], [ -87.41324, 38.679517 ], [ -87.412783, 38.679624 ], [ -87.412588, 38.679669 ], [ -87.411903, 38.679796 ], [ -87.411314, 38.679865 ], [ -87.410627, 38.679911 ], [ -87.408938, 38.679893 ], [ -87.40677, 38.679648 ], [ -87.402888, 38.67914 ], [ -87.399754, 38.678648 ], [ -87.395868, 38.678147 ], [ -87.393277, 38.677872 ], [ -87.389316, 38.677468 ], [ -87.388303, 38.677324 ], [ -87.385956, 38.677051 ], [ -87.381135, 38.676567 ], [ -87.378761, 38.676312 ], [ -87.374723, 38.675858 ], [ -87.373929, 38.675747 ], [ -87.371652, 38.67543 ], [ -87.369264, 38.675058 ], [ -87.368452, 38.674895 ], [ -87.367344, 38.674673 ], [ -87.361682, 38.673536 ], [ -87.356786, 38.672644 ], [ -87.3555, 38.672362 ], [ -87.351278, 38.671481 ], [ -87.349751, 38.671187 ], [ -87.339403, 38.669109 ], [ -87.335218, 38.668251 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.48152, 38.677472 ], [ -87.482563, 38.677884 ], [ -87.483464, 38.678206 ], [ -87.483486, 38.678214 ], [ -87.484369, 38.678599 ], [ -87.485236, 38.679097 ], [ -87.485975, 38.679658 ], [ -87.486335, 38.679985 ], [ -87.486655, 38.68032 ], [ -87.487128, 38.680933 ], [ -87.487605, 38.681735 ], [ -87.487922, 38.68232 ], [ -87.488424, 38.683245 ], [ -87.488943, 38.684131 ], [ -87.489251, 38.684707 ], [ -87.489533, 38.685294 ], [ -87.489922, 38.686156 ], [ -87.490512, 38.687651 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.49368, 38.694877 ], [ -87.493898, 38.694774 ], [ -87.494548, 38.694465 ], [ -87.495334, 38.69408 ], [ -87.495521, 38.69399 ], [ -87.495872, 38.693821 ], [ -87.496417, 38.693559 ], [ -87.496843, 38.693324 ], [ -87.496984, 38.693215 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257627423", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.49185, 38.674263 ], [ -87.491447, 38.674538 ], [ -87.490839, 38.674933 ], [ -87.490179, 38.675364 ], [ -87.489596, 38.675819 ], [ -87.489072, 38.67633 ], [ -87.488635, 38.676833 ], [ -87.488245, 38.67743 ], [ -87.488218, 38.677473 ], [ -87.487888, 38.678143 ], [ -87.487757, 38.678537 ], [ -87.487661, 38.678825 ], [ -87.487569, 38.679206 ], [ -87.487508, 38.67965 ], [ -87.487507, 38.679691 ], [ -87.487499, 38.680355 ], [ -87.487597, 38.681138 ], [ -87.487807, 38.681828 ], [ -87.487964, 38.682206 ], [ -87.488393, 38.68308 ], [ -87.488527, 38.683352 ], [ -87.488943, 38.684131 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624305", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495063, 38.672244 ], [ -87.494983, 38.672303 ], [ -87.494746, 38.672482 ], [ -87.494667, 38.672543 ], [ -87.494589, 38.672602 ], [ -87.494341, 38.672793 ], [ -87.494188, 38.672912 ], [ -87.493712, 38.673281 ], [ -87.49286, 38.674143 ], [ -87.492806, 38.674199 ], [ -87.492496, 38.674586 ], [ -87.492478, 38.674611 ], [ -87.491812, 38.675565 ], [ -87.491404, 38.676211 ], [ -87.490949, 38.676933 ], [ -87.490592, 38.677602 ], [ -87.490421, 38.678039 ], [ -87.490208, 38.678904 ], [ -87.490169, 38.679363 ], [ -87.490198, 38.681712 ], [ -87.490222, 38.68364 ], [ -87.490232, 38.684447 ], [ -87.490238, 38.684858 ], [ -87.490279, 38.68541 ], [ -87.490463, 38.686485 ], [ -87.490562, 38.686839 ], [ -87.49068, 38.687259 ], [ -87.490809, 38.687608 ], [ -87.491151, 38.688487 ], [ -87.491194, 38.688616 ], [ -87.491257, 38.688802 ], [ -87.491385, 38.689151 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473008, 38.759481 ], [ -87.472902, 38.759754 ], [ -87.472864, 38.759851 ], [ -87.471896, 38.762235 ], [ -87.46963, 38.767872 ], [ -87.469207, 38.768911 ], [ -87.469163, 38.769028 ], [ -87.468812, 38.769967 ], [ -87.468208, 38.771626 ], [ -87.467569, 38.773389 ], [ -87.466888, 38.775267 ], [ -87.466576, 38.776142 ], [ -87.466303, 38.776873 ], [ -87.466049, 38.777653 ], [ -87.465862, 38.778254 ], [ -87.465593, 38.779235 ], [ -87.465363, 38.780229 ], [ -87.465333, 38.780374 ], [ -87.465271, 38.78067 ], [ -87.465022, 38.78219 ], [ -87.464655, 38.784542 ], [ -87.464057, 38.788495 ], [ -87.464021, 38.788706 ], [ -87.463977, 38.788963 ], [ -87.463821, 38.789678 ], [ -87.463692, 38.790198 ], [ -87.46355, 38.7907 ], [ -87.463406, 38.79109 ], [ -87.463191, 38.791632 ], [ -87.462943, 38.792217 ], [ -87.462624, 38.792834 ], [ -87.462362, 38.793321 ], [ -87.461891, 38.794072 ], [ -87.461316, 38.794898 ], [ -87.460649, 38.795766 ], [ -87.459608, 38.797167 ], [ -87.459045, 38.797914 ], [ -87.458287, 38.798939 ], [ -87.45772, 38.799688 ], [ -87.456593, 38.80122 ], [ -87.455937, 38.802093 ], [ -87.45478, 38.803624 ], [ -87.451509, 38.807994 ], [ -87.451085, 38.808548 ], [ -87.450761, 38.808972 ], [ -87.448992, 38.811348 ], [ -87.448448, 38.812094 ], [ -87.447992, 38.812799 ], [ -87.447357, 38.813848 ], [ -87.446969, 38.814613 ], [ -87.44682, 38.814938 ], [ -87.44665, 38.815337 ], [ -87.446511, 38.815685 ], [ -87.446275, 38.816324 ], [ -87.446089, 38.816887 ], [ -87.445871, 38.817638 ], [ -87.445644, 38.818508 ], [ -87.444769, 38.821946 ], [ -87.444488, 38.823033 ], [ -87.444409, 38.823371 ], [ -87.444348, 38.82363 ], [ -87.444216, 38.824039 ], [ -87.443747, 38.826027 ], [ -87.443572, 38.826686 ], [ -87.443214, 38.828114 ], [ -87.443009, 38.828903 ], [ -87.442832, 38.829634 ], [ -87.442347, 38.831557 ], [ -87.442256, 38.831875 ], [ -87.442197, 38.832121 ], [ -87.442124, 38.832422 ], [ -87.441415, 38.835189 ], [ -87.44104, 38.836714 ], [ -87.440192, 38.840023 ], [ -87.439957, 38.840973 ], [ -87.439701, 38.841979 ], [ -87.43961, 38.842336 ], [ -87.439317, 38.84351 ], [ -87.439084, 38.84441 ], [ -87.4386, 38.846336 ], [ -87.437282, 38.851519 ], [ -87.436973, 38.852712 ], [ -87.436797, 38.853452 ], [ -87.436485, 38.854654 ], [ -87.436176, 38.85591 ], [ -87.436041, 38.856412 ], [ -87.435962, 38.856723 ], [ -87.435766, 38.857494 ], [ -87.435541, 38.858421 ], [ -87.435057, 38.860307 ], [ -87.43458, 38.862213 ], [ -87.434206, 38.863657 ], [ -87.433744, 38.865493 ], [ -87.433616, 38.865924 ], [ -87.433418, 38.866762 ], [ -87.433354, 38.867117 ], [ -87.43333, 38.867318 ], [ -87.433275, 38.867687 ], [ -87.433247, 38.868087 ], [ -87.433245, 38.868536 ], [ -87.43326, 38.868957 ], [ -87.4333, 38.869358 ], [ -87.433362, 38.869779 ], [ -87.433437, 38.870158 ], [ -87.433573, 38.870681 ], [ -87.433715, 38.871134 ], [ -87.433883, 38.871574 ], [ -87.434075, 38.872013 ], [ -87.434247, 38.872337 ], [ -87.43444, 38.872703 ], [ -87.434667, 38.873071 ], [ -87.434861, 38.873361 ], [ -87.435005, 38.873576 ], [ -87.435328, 38.873983 ], [ -87.435761, 38.874474 ], [ -87.436447, 38.875189 ], [ -87.436775, 38.875514 ], [ -87.437169, 38.875916 ], [ -87.437407, 38.876154 ], [ -87.437732, 38.876479 ], [ -87.438773, 38.877542 ], [ -87.439122, 38.877907 ], [ -87.439402, 38.878221 ], [ -87.439669, 38.878543 ], [ -87.439991, 38.878947 ], [ -87.440263, 38.879316 ], [ -87.440523, 38.879691 ], [ -87.440782, 38.880089 ], [ -87.441052, 38.880531 ], [ -87.441299, 38.880971 ], [ -87.441732, 38.881872 ], [ -87.441753, 38.881913 ], [ -87.44177, 38.881957 ], [ -87.441931, 38.882331 ], [ -87.442097, 38.882755 ], [ -87.442229, 38.883141 ], [ -87.442411, 38.883743 ], [ -87.442567, 38.884368 ], [ -87.44268, 38.884956 ], [ -87.442779, 38.885617 ], [ -87.44284, 38.886273 ], [ -87.442865, 38.886907 ], [ -87.442855, 38.887509 ], [ -87.442823, 38.888071 ], [ -87.442785, 38.888488 ], [ -87.442657, 38.889313 ], [ -87.442567, 38.889777 ], [ -87.442463, 38.890189 ], [ -87.44232, 38.890705 ], [ -87.442123, 38.891306 ], [ -87.441899, 38.891895 ], [ -87.440923, 38.894364 ], [ -87.439453, 38.898054 ], [ -87.439163, 38.898802 ], [ -87.439126, 38.898893 ], [ -87.437812, 38.902199 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104471686635", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.274892, 38.646433 ], [ -87.276102, 38.646629 ], [ -87.277635, 38.646882 ], [ -87.277708, 38.646897 ], [ -87.279585, 38.647185 ], [ -87.283584, 38.647863 ], [ -87.284109, 38.647978 ], [ -87.285808, 38.648366 ], [ -87.287834, 38.648907 ], [ -87.288923, 38.649196 ], [ -87.289464, 38.649364 ], [ -87.290476, 38.649691 ], [ -87.290943, 38.649896 ], [ -87.291634, 38.650123 ], [ -87.292661, 38.650479 ], [ -87.29334, 38.650726 ], [ -87.293477, 38.650778 ], [ -87.293501, 38.650787 ], [ -87.294837, 38.651395 ], [ -87.296218, 38.652 ], [ -87.297514, 38.652609 ], [ -87.301423, 38.654461 ], [ -87.304624, 38.655962 ], [ -87.309665, 38.658391 ], [ -87.310435, 38.658752 ], [ -87.311783, 38.659385 ], [ -87.315972, 38.6614 ], [ -87.316888, 38.661815 ], [ -87.319754, 38.663148 ], [ -87.322241, 38.66434 ], [ -87.322712, 38.664594 ], [ -87.324075, 38.6652 ], [ -87.32538, 38.665796 ], [ -87.326572, 38.666269 ], [ -87.328227, 38.666855 ], [ -87.329276, 38.667196 ], [ -87.330411, 38.667489 ], [ -87.331914, 38.667839 ], [ -87.332888, 38.668028 ], [ -87.33502, 38.668478 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.48152, 38.677472 ], [ -87.482563, 38.677884 ], [ -87.483464, 38.678206 ], [ -87.483486, 38.678214 ], [ -87.484369, 38.678599 ], [ -87.485236, 38.679097 ], [ -87.485975, 38.679658 ], [ -87.486335, 38.679985 ], [ -87.486655, 38.68032 ], [ -87.487128, 38.680933 ], [ -87.487605, 38.681735 ], [ -87.487922, 38.68232 ], [ -87.488424, 38.683245 ], [ -87.488943, 38.684131 ], [ -87.489251, 38.684707 ], [ -87.489533, 38.685294 ], [ -87.489922, 38.686156 ], [ -87.490512, 38.687651 ], [ -87.490699, 38.688127 ], [ -87.490838, 38.688491 ], [ -87.490884, 38.688612 ], [ -87.491077, 38.689113 ], [ -87.491096, 38.689164 ], [ -87.49114, 38.689277 ], [ -87.491903, 38.691259 ], [ -87.491965, 38.691422 ], [ -87.492154, 38.691912 ], [ -87.492217, 38.692076 ], [ -87.492523, 38.692869 ], [ -87.493036, 38.694202 ], [ -87.493297, 38.69488 ], [ -87.493314, 38.694923 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485841555", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493637, 38.694768 ], [ -87.493577, 38.694797 ], [ -87.493314, 38.694923 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485841666", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493637, 38.694768 ], [ -87.493577, 38.694797 ], [ -87.493314, 38.694923 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257616296", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.49185, 38.674263 ], [ -87.48986, 38.675516 ], [ -87.489777, 38.675561 ], [ -87.489377, 38.675785 ], [ -87.4889, 38.676011 ], [ -87.488509, 38.676173 ], [ -87.487619, 38.676457 ], [ -87.486613, 38.676674 ], [ -87.48565, 38.676792 ], [ -87.48494, 38.676804 ], [ -87.484125, 38.676768 ], [ -87.483267, 38.676659 ], [ -87.482675, 38.676543 ], [ -87.480275, 38.676074 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493314, 38.694923 ], [ -87.493265, 38.694947 ], [ -87.492823, 38.695159 ], [ -87.492303, 38.695409 ], [ -87.491137, 38.695968 ], [ -87.490204, 38.696416 ], [ -87.489938, 38.696543 ], [ -87.489139, 38.696927 ], [ -87.488874, 38.697055 ], [ -87.488414, 38.697275 ], [ -87.488053, 38.697449 ], [ -87.487548, 38.697701 ], [ -87.487086, 38.697976 ], [ -87.487065, 38.697989 ], [ -87.486671, 38.698255 ], [ -87.486644, 38.698275 ], [ -87.48606, 38.698715 ], [ -87.485949, 38.6988 ], [ -87.485527, 38.699184 ], [ -87.485126, 38.699597 ], [ -87.484827, 38.699954 ], [ -87.484578, 38.700319 ], [ -87.484282, 38.700756 ], [ -87.484184, 38.700935 ], [ -87.484097, 38.701092 ], [ -87.48403, 38.701215 ], [ -87.483878, 38.701584 ], [ -87.48381, 38.701751 ], [ -87.483733, 38.70194 ], [ -87.483717, 38.701997 ], [ -87.483514, 38.702731 ], [ -87.48351, 38.70276 ], [ -87.483481, 38.703022 ], [ -87.483436, 38.703407 ], [ -87.483415, 38.70359 ], [ -87.48342, 38.70457 ], [ -87.483435, 38.704957 ], [ -87.483468, 38.705802 ], [ -87.483567, 38.708337 ], [ -87.483601, 38.709182 ], [ -87.483606, 38.70933 ], [ -87.483624, 38.709774 ], [ -87.48363, 38.709923 ], [ -87.483653, 38.710531 ], [ -87.483722, 38.712355 ], [ -87.483744, 38.712918 ], [ -87.483747, 38.712963 ], [ -87.483748, 38.713008 ], [ -87.483776, 38.713733 ], [ -87.483866, 38.716045 ], [ -87.483896, 38.716816 ], [ -87.483901, 38.716947 ], [ -87.483916, 38.717343 ], [ -87.483921, 38.717475 ], [ -87.484018, 38.719989 ], [ -87.484057, 38.720981 ], [ -87.484064, 38.722291 ], [ -87.484038, 38.722676 ], [ -87.483989, 38.723176 ], [ -87.48394, 38.723685 ], [ -87.483433, 38.727158 ], [ -87.483383, 38.727493 ], [ -87.48302, 38.729984 ], [ -87.482968, 38.730349 ], [ -87.482811, 38.731445 ], [ -87.48276, 38.731811 ], [ -87.482724, 38.732048 ], [ -87.482616, 38.732759 ], [ -87.482581, 38.732997 ], [ -87.482577, 38.733019 ], [ -87.482568, 38.733085 ], [ -87.482566, 38.733108 ], [ -87.482556, 38.733181 ], [ -87.482525, 38.733403 ], [ -87.482516, 38.733477 ], [ -87.482507, 38.733542 ], [ -87.48243, 38.734012 ], [ -87.482387, 38.734282 ], [ -87.482217, 38.735101 ], [ -87.482086, 38.735602 ], [ -87.481949, 38.736128 ], [ -87.481946, 38.736138 ], [ -87.481857, 38.736412 ], [ -87.481704, 38.736892 ], [ -87.481568, 38.73726 ], [ -87.481466, 38.737541 ], [ -87.481458, 38.73756 ], [ -87.481435, 38.737618 ], [ -87.481428, 38.737638 ], [ -87.481316, 38.737925 ], [ -87.481223, 38.738167 ], [ -87.480976, 38.738787 ], [ -87.480863, 38.739075 ], [ -87.480847, 38.739115 ], [ -87.480821, 38.739175 ], [ -87.480696, 38.739474 ], [ -87.480681, 38.739512 ], [ -87.480657, 38.739575 ], [ -87.480507, 38.739958 ], [ -87.480096, 38.740965 ], [ -87.479425, 38.742642 ], [ -87.478786, 38.744242 ], [ -87.478365, 38.74531 ], [ -87.478009, 38.746181 ], [ -87.475812, 38.751678 ], [ -87.475743, 38.75185 ], [ -87.475162, 38.753318 ], [ -87.474818, 38.754165 ], [ -87.474516, 38.75492 ], [ -87.474172, 38.755781 ], [ -87.474132, 38.755876 ], [ -87.474035, 38.756114 ], [ -87.473944, 38.756354 ], [ -87.473778, 38.756743 ], [ -87.47333, 38.757886 ], [ -87.472978, 38.758745 ], [ -87.472959, 38.758793 ], [ -87.47272, 38.759393 ], [ -87.472596, 38.759703 ], [ -87.471864, 38.761535 ], [ -87.471792, 38.761716 ], [ -87.469651, 38.767025 ], [ -87.469244, 38.768036 ], [ -87.469038, 38.768579 ], [ -87.468921, 38.768859 ], [ -87.468866, 38.768974 ], [ -87.468619, 38.769625 ], [ -87.468579, 38.769733 ], [ -87.468077, 38.771108 ], [ -87.46762, 38.772385 ], [ -87.467563, 38.772547 ], [ -87.467296, 38.773267 ], [ -87.467215, 38.773485 ], [ -87.466869, 38.774439 ], [ -87.466796, 38.774642 ], [ -87.466559, 38.775312 ], [ -87.466109, 38.776532 ], [ -87.465645, 38.777924 ], [ -87.465403, 38.778803 ], [ -87.465328, 38.779077 ], [ -87.465125, 38.779898 ], [ -87.465055, 38.780224 ], [ -87.464968, 38.780624 ], [ -87.46482, 38.781498 ], [ -87.464756, 38.781916 ], [ -87.464258, 38.785225 ], [ -87.464077, 38.786348 ], [ -87.463973, 38.787011 ], [ -87.463885, 38.787581 ], [ -87.463767, 38.788393 ], [ -87.46371, 38.78871 ], [ -87.463673, 38.788915 ], [ -87.463603, 38.789306 ], [ -87.46355, 38.789529 ], [ -87.463503, 38.789733 ], [ -87.463489, 38.789792 ], [ -87.463369, 38.790163 ], [ -87.46324, 38.790605 ], [ -87.46306, 38.7911 ], [ -87.462875, 38.791551 ], [ -87.462673, 38.792005 ], [ -87.462474, 38.792429 ], [ -87.46228, 38.792803 ], [ -87.462265, 38.792833 ], [ -87.46206, 38.793204 ], [ -87.461569, 38.793987 ], [ -87.461218, 38.794502 ], [ -87.460251, 38.795792 ], [ -87.459597, 38.796677 ], [ -87.459129, 38.797299 ], [ -87.458471, 38.798196 ], [ -87.458246, 38.798511 ], [ -87.457374, 38.799655 ], [ -87.456475, 38.800859 ], [ -87.455868, 38.801674 ], [ -87.454485, 38.803507 ], [ -87.454261, 38.803801 ], [ -87.453787, 38.804438 ], [ -87.453705, 38.80455 ], [ -87.453017, 38.80546 ], [ -87.452507, 38.806152 ], [ -87.451693, 38.807231 ], [ -87.451185, 38.807906 ], [ -87.450995, 38.808162 ], [ -87.45015, 38.809304 ], [ -87.449384, 38.81032 ], [ -87.44898, 38.810847 ], [ -87.448804, 38.811079 ], [ -87.448426, 38.811601 ], [ -87.447994, 38.812225 ], [ -87.447602, 38.812835 ], [ -87.447409, 38.813169 ], [ -87.447164, 38.813609 ], [ -87.446918, 38.814063 ], [ -87.446673, 38.814548 ], [ -87.446521, 38.814861 ], [ -87.446432, 38.815071 ], [ -87.446269, 38.815423 ], [ -87.445989, 38.816147 ], [ -87.445693, 38.817046 ], [ -87.445515, 38.817681 ], [ -87.445352, 38.818332 ], [ -87.445205, 38.818886 ], [ -87.444934, 38.819964 ], [ -87.444567, 38.821433 ], [ -87.444296, 38.822491 ], [ -87.444174, 38.822992 ], [ -87.444113, 38.823219 ], [ -87.443991, 38.82368 ], [ -87.443658, 38.824999 ], [ -87.443139, 38.827065 ], [ -87.442906, 38.827969 ], [ -87.442623, 38.829121 ], [ -87.44231, 38.830345 ], [ -87.442005, 38.831542 ], [ -87.441894, 38.831943 ], [ -87.441848, 38.832124 ], [ -87.441765, 38.832447 ], [ -87.441627, 38.833012 ], [ -87.441349, 38.834098 ], [ -87.441153, 38.83487 ], [ -87.440691, 38.836726 ], [ -87.44019, 38.838688 ], [ -87.439926, 38.839743 ], [ -87.439855, 38.84002 ], [ -87.439353, 38.841993 ], [ -87.438614, 38.844924 ], [ -87.438078, 38.847053 ], [ -87.436966, 38.85142 ], [ -87.436771, 38.852169 ], [ -87.436676, 38.852582 ], [ -87.436386, 38.853713 ], [ -87.436226, 38.85434 ], [ -87.436079, 38.854935 ], [ -87.435859, 38.85579 ], [ -87.435648, 38.856645 ], [ -87.435301, 38.858026 ], [ -87.43511, 38.85875 ], [ -87.435048, 38.85899 ], [ -87.434291, 38.861968 ], [ -87.433823, 38.863857 ], [ -87.433508, 38.865069 ], [ -87.43337, 38.865605 ], [ -87.433138, 38.866653 ], [ -87.43305, 38.867147 ], [ -87.433038, 38.86719 ], [ -87.433037, 38.867236 ], [ -87.432967, 38.867852 ], [ -87.432951, 38.868242 ], [ -87.432944, 38.868435 ], [ -87.432961, 38.868971 ], [ -87.433012, 38.869466 ], [ -87.433125, 38.870143 ], [ -87.433251, 38.870644 ], [ -87.433425, 38.871199 ], [ -87.433482, 38.871346 ], [ -87.433644, 38.871763 ], [ -87.433906, 38.872314 ], [ -87.433986, 38.872465 ], [ -87.434154, 38.872781 ], [ -87.434237, 38.872916 ], [ -87.434328, 38.873063 ], [ -87.43453, 38.873371 ], [ -87.434561, 38.873419 ], [ -87.434794, 38.873747 ], [ -87.435087, 38.874126 ], [ -87.435252, 38.874327 ], [ -87.435344, 38.874428 ], [ -87.435633, 38.874742 ], [ -87.43596, 38.875077 ], [ -87.436028, 38.875146 ], [ -87.436952, 38.876073 ], [ -87.437283, 38.876405 ], [ -87.437346, 38.876469 ], [ -87.437477, 38.8766 ], [ -87.437538, 38.876662 ], [ -87.437602, 38.876727 ], [ -87.438442, 38.877584 ], [ -87.438463, 38.877606 ], [ -87.438932, 38.878103 ], [ -87.43928, 38.878505 ], [ -87.439556, 38.878841 ], [ -87.439837, 38.879204 ], [ -87.440264, 38.879815 ], [ -87.440546, 38.880243 ], [ -87.440713, 38.880525 ], [ -87.440839, 38.880739 ], [ -87.441117, 38.881246 ], [ -87.441294, 38.881611 ], [ -87.441343, 38.881713 ], [ -87.441357, 38.881741 ], [ -87.441477, 38.882025 ], [ -87.441522, 38.88213 ], [ -87.441648, 38.8824 ], [ -87.441793, 38.882775 ], [ -87.44192, 38.883148 ], [ -87.442033, 38.883514 ], [ -87.442172, 38.884024 ], [ -87.442202, 38.884131 ], [ -87.442341, 38.884761 ], [ -87.442439, 38.885364 ], [ -87.442495, 38.885775 ], [ -87.442528, 38.886213 ], [ -87.442559, 38.886733 ], [ -87.442555, 38.887282 ], [ -87.442534, 38.887849 ], [ -87.44246, 38.888651 ], [ -87.44239, 38.889095 ], [ -87.442289, 38.889621 ], [ -87.442204, 38.889982 ], [ -87.44216, 38.890171 ], [ -87.442024, 38.890671 ], [ -87.441864, 38.891166 ], [ -87.441585, 38.891889 ], [ -87.441116, 38.893082 ], [ -87.441033, 38.893284 ], [ -87.440815, 38.893818 ], [ -87.43937, 38.897467 ], [ -87.439152, 38.898019 ], [ -87.438838, 38.898807 ], [ -87.438816, 38.898862 ], [ -87.43855, 38.899534 ], [ -87.437756, 38.901552 ], [ -87.437504, 38.902194 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.56409, 38.490846 ], [ -87.564081, 38.490938 ], [ -87.564075, 38.490997 ], [ -87.564073, 38.49103 ], [ -87.564033, 38.491451 ], [ -87.564023, 38.491558 ], [ -87.564016, 38.491603 ], [ -87.563955, 38.491998 ], [ -87.563772, 38.493184 ], [ -87.563712, 38.49358 ], [ -87.563507, 38.494913 ], [ -87.56294, 38.498603 ], [ -87.562902, 38.498913 ], [ -87.562743, 38.500253 ], [ -87.562491, 38.502023 ], [ -87.562274, 38.503445 ], [ -87.561613, 38.507803 ], [ -87.561436, 38.508642 ], [ -87.561122, 38.509605 ], [ -87.56096, 38.509998 ], [ -87.560558, 38.510787 ], [ -87.560066, 38.511576 ], [ -87.55979, 38.511955 ], [ -87.559344, 38.512487 ], [ -87.559234, 38.51262 ], [ -87.55887, 38.512993 ], [ -87.558076, 38.513721 ], [ -87.55691, 38.514593 ], [ -87.556005, 38.515135 ], [ -87.555464, 38.515422 ], [ -87.55497, 38.515648 ], [ -87.548944, 38.518413 ], [ -87.546936, 38.519335 ], [ -87.545311, 38.52008 ], [ -87.54281, 38.521229 ], [ -87.542465, 38.5214 ], [ -87.541758, 38.521817 ], [ -87.541405, 38.522054 ], [ -87.540704, 38.522598 ], [ -87.54064, 38.52266 ], [ -87.540052, 38.523236 ], [ -87.539622, 38.523724 ], [ -87.539431, 38.523973 ], [ -87.539407, 38.524003 ], [ -87.539335, 38.524096 ], [ -87.539312, 38.524127 ], [ -87.539022, 38.524579 ], [ -87.538822, 38.524974 ], [ -87.538632, 38.525431 ], [ -87.538489, 38.525779 ], [ -87.538243, 38.526728 ], [ -87.538144, 38.527559 ], [ -87.538151, 38.529329 ], [ -87.538155, 38.52979 ], [ -87.53817, 38.531265 ], [ -87.538177, 38.532012 ], [ -87.538198, 38.534255 ], [ -87.538206, 38.535003 ], [ -87.538211, 38.535561 ], [ -87.538222, 38.536626 ], [ -87.538243, 38.538547 ], [ -87.538275, 38.541498 ], [ -87.538293, 38.543122 ], [ -87.538298, 38.54363 ], [ -87.538306, 38.54434 ], [ -87.538314, 38.545155 ], [ -87.53832, 38.545664 ], [ -87.538328, 38.546362 ], [ -87.538345, 38.547516 ], [ -87.538399, 38.551161 ], [ -87.538435, 38.551912 ], [ -87.538513, 38.552679 ], [ -87.538548, 38.553067 ], [ -87.53858, 38.553412 ], [ -87.538598, 38.554223 ], [ -87.538598, 38.554918 ], [ -87.538596, 38.556112 ], [ -87.538592, 38.559697 ], [ -87.538592, 38.560892 ], [ -87.53859, 38.56308 ], [ -87.53859, 38.563512 ], [ -87.538595, 38.569646 ], [ -87.538597, 38.571835 ], [ -87.538597, 38.573302 ], [ -87.538599, 38.574951 ], [ -87.538637, 38.577703 ], [ -87.538658, 38.579171 ], [ -87.538668, 38.579907 ], [ -87.5387, 38.582115 ], [ -87.538711, 38.582852 ], [ -87.538719, 38.583433 ], [ -87.538745, 38.585177 ], [ -87.538754, 38.585759 ], [ -87.538767, 38.587721 ], [ -87.538795, 38.591918 ], [ -87.538834, 38.593609 ], [ -87.538857, 38.594556 ], [ -87.538903, 38.595571 ], [ -87.538977, 38.597237 ], [ -87.539082, 38.599572 ], [ -87.539082, 38.602239 ], [ -87.539082, 38.603908 ], [ -87.539082, 38.604124 ], [ -87.539082, 38.604774 ], [ -87.539082, 38.604991 ], [ -87.539082, 38.606051 ], [ -87.539082, 38.607857 ], [ -87.539058, 38.609232 ], [ -87.539052, 38.609614 ], [ -87.538956, 38.610286 ], [ -87.538925, 38.610506 ], [ -87.538863, 38.610746 ], [ -87.538675, 38.611481 ], [ -87.538485, 38.612004 ], [ -87.538447, 38.612092 ], [ -87.538261, 38.612524 ], [ -87.53814, 38.612801 ], [ -87.537779, 38.613635 ], [ -87.537659, 38.613913 ], [ -87.537172, 38.615036 ], [ -87.537038, 38.615347 ], [ -87.53572, 38.618409 ], [ -87.53524, 38.619525 ], [ -87.535236, 38.619534 ], [ -87.53521, 38.61959 ], [ -87.535134, 38.619759 ], [ -87.53511, 38.619816 ], [ -87.534678, 38.62078 ], [ -87.534641, 38.620871 ], [ -87.5339, 38.62272 ], [ -87.533445, 38.624121 ], [ -87.533419, 38.624204 ], [ -87.533153, 38.625239 ], [ -87.533037, 38.625687 ], [ -87.532875, 38.626509 ], [ -87.532709, 38.627355 ], [ -87.532185, 38.630349 ], [ -87.531962, 38.631631 ], [ -87.531908, 38.63194 ], [ -87.531746, 38.632867 ], [ -87.531692, 38.633176 ], [ -87.531412, 38.634775 ], [ -87.530575, 38.639571 ], [ -87.530296, 38.641171 ], [ -87.53002, 38.642744 ], [ -87.529696, 38.644599 ], [ -87.529446, 38.6455 ], [ -87.52904, 38.646474 ], [ -87.52859, 38.647276 ], [ -87.528576, 38.647302 ], [ -87.528042, 38.648107 ], [ -87.527852, 38.648352 ], [ -87.527771, 38.648443 ], [ -87.527657, 38.648569 ], [ -87.52755, 38.648687 ], [ -87.527231, 38.649044 ], [ -87.527178, 38.649104 ], [ -87.52712, 38.649159 ], [ -87.526471, 38.649779 ], [ -87.526353, 38.649873 ], [ -87.525993, 38.650165 ], [ -87.525682, 38.650417 ], [ -87.523846, 38.65177 ], [ -87.523003, 38.652393 ], [ -87.522984, 38.652406 ], [ -87.522928, 38.652448 ], [ -87.52291, 38.652462 ], [ -87.522262, 38.652939 ], [ -87.520318, 38.654371 ], [ -87.519985, 38.654616 ], [ -87.51989, 38.654688 ], [ -87.519671, 38.654849 ], [ -87.518916, 38.655402 ], [ -87.516653, 38.657062 ], [ -87.516564, 38.657128 ], [ -87.515887, 38.6576 ], [ -87.514839, 38.65833 ], [ -87.513328, 38.659356 ], [ -87.513098, 38.659527 ], [ -87.512814, 38.659726 ], [ -87.51264, 38.65985 ], [ -87.512569, 38.6599 ], [ -87.511856, 38.660342 ], [ -87.509523, 38.661853 ], [ -87.509431, 38.661914 ], [ -87.505461, 38.664549 ], [ -87.505408, 38.664584 ], [ -87.505252, 38.664691 ], [ -87.5052, 38.664727 ], [ -87.505031, 38.664842 ], [ -87.504525, 38.665186 ], [ -87.504357, 38.665302 ], [ -87.504107, 38.665473 ], [ -87.503294, 38.666044 ], [ -87.503195, 38.666117 ], [ -87.500576, 38.668082 ], [ -87.499791, 38.668674 ], [ -87.498659, 38.669529 ], [ -87.498332, 38.669775 ], [ -87.497353, 38.670514 ], [ -87.497027, 38.670761 ], [ -87.49683, 38.670909 ], [ -87.496241, 38.671354 ], [ -87.496045, 38.671503 ], [ -87.495848, 38.671651 ], [ -87.495259, 38.672095 ], [ -87.495063, 38.672244 ], [ -87.494983, 38.672303 ], [ -87.494746, 38.672482 ], [ -87.494667, 38.672543 ], [ -87.494589, 38.672602 ], [ -87.494341, 38.672793 ], [ -87.494188, 38.672912 ], [ -87.493712, 38.673281 ], [ -87.49286, 38.674143 ], [ -87.492806, 38.674199 ], [ -87.492496, 38.674586 ], [ -87.492478, 38.674611 ], [ -87.491812, 38.675565 ], [ -87.491404, 38.676211 ], [ -87.490949, 38.676933 ], [ -87.490592, 38.677602 ], [ -87.490421, 38.678039 ], [ -87.490208, 38.678904 ], [ -87.490169, 38.679363 ], [ -87.490198, 38.681712 ], [ -87.490222, 38.68364 ], [ -87.490232, 38.684447 ], [ -87.490238, 38.684858 ], [ -87.490279, 38.68541 ], [ -87.490463, 38.686485 ], [ -87.490562, 38.686839 ], [ -87.49068, 38.687259 ], [ -87.490809, 38.687608 ], [ -87.491151, 38.688487 ], [ -87.491194, 38.688616 ], [ -87.491257, 38.688802 ], [ -87.491385, 38.689151 ], [ -87.491408, 38.68921 ], [ -87.491432, 38.689271 ], [ -87.49219, 38.691186 ], [ -87.492343, 38.691572 ], [ -87.492763, 38.692669 ], [ -87.493384, 38.694147 ], [ -87.493618, 38.694722 ], [ -87.493637, 38.694768 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.48152, 38.677472 ], [ -87.479491, 38.676731 ], [ -87.478315, 38.676302 ], [ -87.476634, 38.675732 ], [ -87.475361, 38.675395 ], [ -87.474351, 38.67519 ], [ -87.473259, 38.675031 ], [ -87.473207, 38.675024 ], [ -87.472502, 38.674956 ], [ -87.471107, 38.674866 ], [ -87.471088, 38.674864 ], [ -87.471032, 38.674861 ], [ -87.471014, 38.67486 ], [ -87.469467, 38.674759 ], [ -87.464829, 38.674457 ], [ -87.463283, 38.674357 ], [ -87.463007, 38.674339 ], [ -87.461146, 38.674218 ], [ -87.46091, 38.674203 ], [ -87.45864, 38.674101 ], [ -87.457015, 38.674088 ], [ -87.455267, 38.674129 ], [ -87.454727, 38.674158 ], [ -87.452796, 38.674262 ], [ -87.452589, 38.674274 ], [ -87.450911, 38.674372 ], [ -87.445876, 38.674667 ], [ -87.444199, 38.674766 ], [ -87.442561, 38.674862 ], [ -87.43765, 38.67515 ], [ -87.436013, 38.675247 ], [ -87.434797, 38.675318 ], [ -87.43115, 38.675532 ], [ -87.429935, 38.675604 ], [ -87.429089, 38.675654 ], [ -87.427959, 38.67577 ], [ -87.427615, 38.675806 ], [ -87.426394, 38.675999 ], [ -87.425732, 38.67613 ], [ -87.425022, 38.676285 ], [ -87.424345, 38.676477 ], [ -87.422175, 38.677111 ], [ -87.420272, 38.677668 ], [ -87.418792, 38.6781 ], [ -87.414353, 38.679397 ], [ -87.413268, 38.679715 ], [ -87.41287, 38.679815 ], [ -87.412674, 38.679863 ], [ -87.411863, 38.680011 ], [ -87.410874, 38.680112 ], [ -87.410786, 38.680122 ], [ -87.410016, 38.680151 ], [ -87.409158, 38.680119 ], [ -87.4089, 38.680094 ], [ -87.406838, 38.679861 ], [ -87.406106, 38.679778 ], [ -87.404842, 38.679635 ], [ -87.402835, 38.679409 ], [ -87.399783, 38.678913 ], [ -87.395811, 38.678392 ], [ -87.393333, 38.678137 ], [ -87.388114, 38.677532 ], [ -87.385832, 38.677308 ], [ -87.380974, 38.676804 ], [ -87.378563, 38.676539 ], [ -87.374224, 38.676099 ], [ -87.372048, 38.675772 ], [ -87.371126, 38.675642 ], [ -87.369643, 38.675344 ], [ -87.369017, 38.675219 ], [ -87.368309, 38.675077 ], [ -87.367209, 38.67488 ], [ -87.366457, 38.674745 ], [ -87.363219, 38.67409 ], [ -87.361561, 38.673781 ], [ -87.3567, 38.672842 ], [ -87.355452, 38.672596 ], [ -87.352193, 38.671899 ], [ -87.351278, 38.671713 ], [ -87.350852, 38.671635 ], [ -87.349938, 38.671448 ], [ -87.348744, 38.671206 ], [ -87.347253, 38.670927 ], [ -87.345758, 38.670609 ], [ -87.341391, 38.66975 ], [ -87.33935, 38.669333 ], [ -87.338629, 38.66919 ], [ -87.337419, 38.668971 ], [ -87.335885, 38.668653 ], [ -87.33502, 38.668478 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104471680885", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.251756, 38.646594 ], [ -87.264972, 38.645702 ], [ -87.265562, 38.645689 ], [ -87.266057, 38.645677 ], [ -87.266338, 38.645671 ], [ -87.266637, 38.645677 ], [ -87.267099, 38.645685 ], [ -87.267543, 38.64571 ], [ -87.268038, 38.645739 ], [ -87.269408, 38.645816 ], [ -87.269556, 38.645825 ], [ -87.269878, 38.64582 ], [ -87.271724, 38.645938 ], [ -87.274892, 38.646433 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257627422", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.50929, 38.661736 ], [ -87.505359, 38.664344 ], [ -87.50504, 38.664555 ], [ -87.504241, 38.66511 ], [ -87.503447, 38.665661 ], [ -87.5018, 38.666881 ], [ -87.500356, 38.667961 ], [ -87.498473, 38.669382 ], [ -87.498433, 38.669413 ], [ -87.498391, 38.669444 ], [ -87.495853, 38.67136 ], [ -87.494971, 38.672025 ], [ -87.49487, 38.6721 ], [ -87.494567, 38.672328 ], [ -87.494467, 38.672405 ], [ -87.494418, 38.672442 ], [ -87.494294, 38.672533 ], [ -87.493951, 38.672787 ], [ -87.493191, 38.673349 ], [ -87.49238, 38.673901 ], [ -87.49185, 38.674263 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257599171", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.490512, 38.687651 ], [ -87.490699, 38.688127 ], [ -87.490838, 38.688491 ], [ -87.490884, 38.688612 ], [ -87.491077, 38.689113 ], [ -87.491096, 38.689164 ], [ -87.49114, 38.689277 ], [ -87.491903, 38.691259 ], [ -87.491965, 38.691422 ], [ -87.492154, 38.691912 ], [ -87.492217, 38.692076 ], [ -87.492523, 38.692869 ], [ -87.493036, 38.694202 ], [ -87.493297, 38.69488 ], [ -87.493314, 38.694923 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "110170070277", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492478, 38.674611 ], [ -87.491958, 38.675279 ], [ -87.491722, 38.675625 ], [ -87.491286, 38.676266 ], [ -87.49097, 38.676671 ], [ -87.490676, 38.676989 ], [ -87.490314, 38.677311 ], [ -87.489912, 38.677609 ], [ -87.489474, 38.677872 ], [ -87.489098, 38.678064 ], [ -87.488952, 38.678123 ], [ -87.488611, 38.678263 ], [ -87.487757, 38.678537 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485841556", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.496558, 38.693356 ], [ -87.496313, 38.693483 ], [ -87.495395, 38.693924 ], [ -87.494493, 38.694356 ], [ -87.493845, 38.694668 ], [ -87.493637, 38.694768 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257640853", "FULLNAME": "E US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.324279, 38.665042 ], [ -87.322648, 38.664236 ], [ -87.318258, 38.662122 ], [ -87.317899, 38.661955 ], [ -87.317322, 38.661687 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104471685645", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.281284, 38.648383 ], [ -87.281833, 38.648788 ], [ -87.283018, 38.649661 ], [ -87.283039, 38.649677 ], [ -87.283098, 38.649712 ], [ -87.283963, 38.650229 ], [ -87.284415, 38.650446 ], [ -87.284506, 38.65049 ], [ -87.285316, 38.650824 ], [ -87.285369, 38.650841 ], [ -87.286376, 38.651161 ], [ -87.286917, 38.651287 ], [ -87.288771, 38.651638 ], [ -87.290255, 38.65192 ], [ -87.290439, 38.651955 ], [ -87.290791, 38.652022 ], [ -87.29099, 38.652065 ], [ -87.291174, 38.652105 ], [ -87.292011, 38.652287 ], [ -87.292103, 38.652314 ], [ -87.292906, 38.652553 ], [ -87.293392, 38.652729 ], [ -87.294282, 38.65311 ], [ -87.294759, 38.653354 ], [ -87.295095, 38.653527 ], [ -87.295578, 38.65384 ], [ -87.295741, 38.653945 ], [ -87.296167, 38.654222 ], [ -87.296227, 38.654269 ], [ -87.296381, 38.654389 ], [ -87.296456, 38.654447 ], [ -87.296681, 38.654622 ], [ -87.296756, 38.654681 ], [ -87.29715, 38.654988 ], [ -87.298333, 38.655911 ], [ -87.298728, 38.656219 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "110170072467", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.251603, 38.646362 ], [ -87.263235, 38.645577 ], [ -87.26543, 38.645452 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "110170071138", "FULLNAME": "E US Hwy 50-150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.471113, 38.674656 ], [ -87.472966, 38.674781 ], [ -87.473898, 38.674845 ], [ -87.474559, 38.674913 ], [ -87.475316, 38.675016 ], [ -87.477432, 38.675445 ], [ -87.47846, 38.675672 ], [ -87.480275, 38.676074 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104471685646", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.251756, 38.646594 ], [ -87.264972, 38.645702 ], [ -87.265562, 38.645689 ], [ -87.266057, 38.645677 ], [ -87.266338, 38.645671 ], [ -87.266637, 38.645677 ], [ -87.267099, 38.645685 ], [ -87.267543, 38.64571 ], [ -87.268038, 38.645739 ], [ -87.269408, 38.645816 ], [ -87.269556, 38.645825 ], [ -87.269878, 38.64582 ], [ -87.271724, 38.645938 ], [ -87.274892, 38.646433 ], [ -87.276102, 38.646629 ], [ -87.277635, 38.646882 ], [ -87.277708, 38.646897 ], [ -87.279585, 38.647185 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493314, 38.694923 ], [ -87.493265, 38.694947 ], [ -87.492823, 38.695159 ], [ -87.492303, 38.695409 ], [ -87.491137, 38.695968 ], [ -87.490204, 38.696416 ], [ -87.489938, 38.696543 ], [ -87.489139, 38.696927 ], [ -87.488874, 38.697055 ], [ -87.488414, 38.697275 ], [ -87.488053, 38.697449 ], [ -87.487548, 38.697701 ], [ -87.487086, 38.697976 ], [ -87.487065, 38.697989 ], [ -87.486671, 38.698255 ], [ -87.486644, 38.698275 ], [ -87.48606, 38.698715 ], [ -87.485949, 38.6988 ], [ -87.485527, 38.699184 ], [ -87.485126, 38.699597 ], [ -87.484827, 38.699954 ], [ -87.484578, 38.700319 ], [ -87.484282, 38.700756 ], [ -87.484184, 38.700935 ], [ -87.484097, 38.701092 ], [ -87.48403, 38.701215 ], [ -87.483878, 38.701584 ], [ -87.48381, 38.701751 ], [ -87.483733, 38.70194 ], [ -87.483717, 38.701997 ], [ -87.483514, 38.702731 ], [ -87.48351, 38.70276 ], [ -87.483481, 38.703022 ], [ -87.483436, 38.703407 ], [ -87.483415, 38.70359 ], [ -87.48342, 38.70457 ], [ -87.483435, 38.704957 ], [ -87.483468, 38.705802 ], [ -87.483567, 38.708337 ], [ -87.483601, 38.709182 ], [ -87.483606, 38.70933 ], [ -87.483624, 38.709774 ], [ -87.48363, 38.709923 ], [ -87.483653, 38.710531 ], [ -87.483722, 38.712355 ], [ -87.483744, 38.712918 ], [ -87.483747, 38.712963 ], [ -87.483748, 38.713008 ], [ -87.483776, 38.713733 ], [ -87.483866, 38.716045 ], [ -87.483896, 38.716816 ], [ -87.483901, 38.716947 ], [ -87.483916, 38.717343 ], [ -87.483921, 38.717475 ], [ -87.484018, 38.719989 ], [ -87.484057, 38.720981 ], [ -87.484064, 38.722291 ], [ -87.484038, 38.722676 ], [ -87.483989, 38.723176 ], [ -87.48394, 38.723685 ], [ -87.483433, 38.727158 ], [ -87.483383, 38.727493 ], [ -87.48302, 38.729984 ], [ -87.482968, 38.730349 ], [ -87.482811, 38.731445 ], [ -87.48276, 38.731811 ], [ -87.482724, 38.732048 ], [ -87.482616, 38.732759 ], [ -87.482581, 38.732997 ], [ -87.482577, 38.733019 ], [ -87.482568, 38.733085 ], [ -87.482566, 38.733108 ], [ -87.482556, 38.733181 ], [ -87.482525, 38.733403 ], [ -87.482516, 38.733477 ], [ -87.482507, 38.733542 ], [ -87.48243, 38.734012 ], [ -87.482387, 38.734282 ], [ -87.482217, 38.735101 ], [ -87.482086, 38.735602 ], [ -87.481949, 38.736128 ], [ -87.481946, 38.736138 ], [ -87.481857, 38.736412 ], [ -87.481704, 38.736892 ], [ -87.481568, 38.73726 ], [ -87.481466, 38.737541 ], [ -87.481458, 38.73756 ], [ -87.481435, 38.737618 ], [ -87.481428, 38.737638 ], [ -87.481316, 38.737925 ], [ -87.481223, 38.738167 ], [ -87.480976, 38.738787 ], [ -87.480863, 38.739075 ], [ -87.480847, 38.739115 ], [ -87.480821, 38.739175 ], [ -87.480696, 38.739474 ], [ -87.480681, 38.739512 ], [ -87.480657, 38.739575 ], [ -87.480507, 38.739958 ], [ -87.480096, 38.740965 ], [ -87.479425, 38.742642 ], [ -87.478786, 38.744242 ], [ -87.478365, 38.74531 ], [ -87.478009, 38.746181 ], [ -87.475812, 38.751678 ], [ -87.475743, 38.75185 ], [ -87.475162, 38.753318 ], [ -87.474818, 38.754165 ], [ -87.474516, 38.75492 ], [ -87.474172, 38.755781 ], [ -87.474132, 38.755876 ], [ -87.474035, 38.756114 ], [ -87.473944, 38.756354 ], [ -87.473778, 38.756743 ], [ -87.47333, 38.757886 ], [ -87.472978, 38.758745 ], [ -87.472959, 38.758793 ], [ -87.47272, 38.759393 ], [ -87.472596, 38.759703 ], [ -87.471864, 38.761535 ], [ -87.471792, 38.761716 ], [ -87.469651, 38.767025 ], [ -87.469244, 38.768036 ], [ -87.469038, 38.768579 ], [ -87.468921, 38.768859 ], [ -87.468866, 38.768974 ], [ -87.468619, 38.769625 ], [ -87.468579, 38.769733 ], [ -87.468077, 38.771108 ], [ -87.46762, 38.772385 ], [ -87.467563, 38.772547 ], [ -87.467296, 38.773267 ], [ -87.467215, 38.773485 ], [ -87.466869, 38.774439 ], [ -87.466796, 38.774642 ], [ -87.466559, 38.775312 ], [ -87.466109, 38.776532 ], [ -87.465645, 38.777924 ], [ -87.465403, 38.778803 ], [ -87.465328, 38.779077 ], [ -87.465125, 38.779898 ], [ -87.465055, 38.780224 ], [ -87.464968, 38.780624 ], [ -87.46482, 38.781498 ], [ -87.464756, 38.781916 ], [ -87.464258, 38.785225 ], [ -87.464077, 38.786348 ], [ -87.463973, 38.787011 ], [ -87.463885, 38.787581 ], [ -87.463767, 38.788393 ], [ -87.46371, 38.78871 ], [ -87.463673, 38.788915 ], [ -87.463603, 38.789306 ], [ -87.46355, 38.789529 ], [ -87.463503, 38.789733 ], [ -87.463489, 38.789792 ], [ -87.463369, 38.790163 ], [ -87.46324, 38.790605 ], [ -87.46306, 38.7911 ], [ -87.462875, 38.791551 ], [ -87.462673, 38.792005 ], [ -87.462474, 38.792429 ], [ -87.46228, 38.792803 ], [ -87.462265, 38.792833 ], [ -87.46206, 38.793204 ], [ -87.461569, 38.793987 ], [ -87.461218, 38.794502 ], [ -87.460251, 38.795792 ], [ -87.459597, 38.796677 ], [ -87.459129, 38.797299 ], [ -87.458471, 38.798196 ], [ -87.458246, 38.798511 ], [ -87.457374, 38.799655 ], [ -87.456475, 38.800859 ], [ -87.455868, 38.801674 ], [ -87.454485, 38.803507 ], [ -87.454261, 38.803801 ], [ -87.453787, 38.804438 ], [ -87.453705, 38.80455 ], [ -87.453017, 38.80546 ], [ -87.452507, 38.806152 ], [ -87.451693, 38.807231 ], [ -87.451185, 38.807906 ], [ -87.450995, 38.808162 ], [ -87.45015, 38.809304 ], [ -87.449384, 38.81032 ], [ -87.44898, 38.810847 ], [ -87.448804, 38.811079 ], [ -87.448426, 38.811601 ], [ -87.447994, 38.812225 ], [ -87.447602, 38.812835 ], [ -87.447409, 38.813169 ], [ -87.447164, 38.813609 ], [ -87.446918, 38.814063 ], [ -87.446673, 38.814548 ], [ -87.446521, 38.814861 ], [ -87.446432, 38.815071 ], [ -87.446269, 38.815423 ], [ -87.445989, 38.816147 ], [ -87.445693, 38.817046 ], [ -87.445515, 38.817681 ], [ -87.445352, 38.818332 ], [ -87.445205, 38.818886 ], [ -87.444934, 38.819964 ], [ -87.444567, 38.821433 ], [ -87.444296, 38.822491 ], [ -87.444174, 38.822992 ], [ -87.444113, 38.823219 ], [ -87.443991, 38.82368 ], [ -87.443658, 38.824999 ], [ -87.443139, 38.827065 ], [ -87.442906, 38.827969 ], [ -87.442623, 38.829121 ], [ -87.44231, 38.830345 ], [ -87.442005, 38.831542 ], [ -87.441894, 38.831943 ], [ -87.441848, 38.832124 ], [ -87.441765, 38.832447 ], [ -87.441627, 38.833012 ], [ -87.441349, 38.834098 ], [ -87.441153, 38.83487 ], [ -87.440691, 38.836726 ], [ -87.44019, 38.838688 ], [ -87.439926, 38.839743 ], [ -87.439855, 38.84002 ], [ -87.439353, 38.841993 ], [ -87.438614, 38.844924 ], [ -87.438078, 38.847053 ], [ -87.436966, 38.85142 ], [ -87.436771, 38.852169 ], [ -87.436676, 38.852582 ], [ -87.436386, 38.853713 ], [ -87.436226, 38.85434 ], [ -87.436079, 38.854935 ], [ -87.435859, 38.85579 ], [ -87.435648, 38.856645 ], [ -87.435301, 38.858026 ], [ -87.43511, 38.85875 ], [ -87.435048, 38.85899 ], [ -87.434291, 38.861968 ], [ -87.433823, 38.863857 ], [ -87.433508, 38.865069 ], [ -87.43337, 38.865605 ], [ -87.433138, 38.866653 ], [ -87.43305, 38.867147 ], [ -87.433038, 38.86719 ], [ -87.433037, 38.867236 ], [ -87.432967, 38.867852 ], [ -87.432951, 38.868242 ], [ -87.432944, 38.868435 ], [ -87.432961, 38.868971 ], [ -87.433012, 38.869466 ], [ -87.433125, 38.870143 ], [ -87.433251, 38.870644 ], [ -87.433425, 38.871199 ], [ -87.433482, 38.871346 ], [ -87.433644, 38.871763 ], [ -87.433906, 38.872314 ], [ -87.433986, 38.872465 ], [ -87.434154, 38.872781 ], [ -87.434237, 38.872916 ], [ -87.434328, 38.873063 ], [ -87.43453, 38.873371 ], [ -87.434561, 38.873419 ], [ -87.434794, 38.873747 ], [ -87.435087, 38.874126 ], [ -87.435252, 38.874327 ], [ -87.435344, 38.874428 ], [ -87.435633, 38.874742 ], [ -87.43596, 38.875077 ], [ -87.436028, 38.875146 ], [ -87.436952, 38.876073 ], [ -87.437283, 38.876405 ], [ -87.437346, 38.876469 ], [ -87.437477, 38.8766 ], [ -87.437538, 38.876662 ], [ -87.437602, 38.876727 ], [ -87.438442, 38.877584 ], [ -87.438463, 38.877606 ], [ -87.438932, 38.878103 ], [ -87.43928, 38.878505 ], [ -87.439556, 38.878841 ], [ -87.439837, 38.879204 ], [ -87.440264, 38.879815 ], [ -87.440546, 38.880243 ], [ -87.440713, 38.880525 ], [ -87.440839, 38.880739 ], [ -87.441117, 38.881246 ], [ -87.441294, 38.881611 ], [ -87.441343, 38.881713 ], [ -87.441357, 38.881741 ], [ -87.441477, 38.882025 ], [ -87.441522, 38.88213 ], [ -87.441648, 38.8824 ], [ -87.441793, 38.882775 ], [ -87.44192, 38.883148 ], [ -87.442033, 38.883514 ], [ -87.442172, 38.884024 ], [ -87.442202, 38.884131 ], [ -87.442341, 38.884761 ], [ -87.442439, 38.885364 ], [ -87.442495, 38.885775 ], [ -87.442528, 38.886213 ], [ -87.442559, 38.886733 ], [ -87.442555, 38.887282 ], [ -87.442534, 38.887849 ], [ -87.44246, 38.888651 ], [ -87.44239, 38.889095 ], [ -87.442289, 38.889621 ], [ -87.442204, 38.889982 ], [ -87.44216, 38.890171 ], [ -87.442024, 38.890671 ], [ -87.441864, 38.891166 ], [ -87.441585, 38.891889 ], [ -87.441116, 38.893082 ], [ -87.441033, 38.893284 ], [ -87.440815, 38.893818 ], [ -87.43937, 38.897467 ], [ -87.439152, 38.898019 ], [ -87.438838, 38.898807 ], [ -87.438816, 38.898862 ], [ -87.43855, 38.899534 ], [ -87.437756, 38.901552 ], [ -87.437504, 38.902194 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "110170070259", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.535472, 38.619951 ], [ -87.534734, 38.621626 ], [ -87.534315, 38.62258 ], [ -87.534109, 38.6231 ], [ -87.533531, 38.625033 ], [ -87.533245, 38.626612 ], [ -87.533222, 38.626877 ], [ -87.533206, 38.627065 ], [ -87.533251, 38.627604 ], [ -87.533507, 38.628675 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "110170070260", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.449051, 38.832091 ], [ -87.449047, 38.832253 ], [ -87.449046, 38.832277 ], [ -87.449044, 38.832676 ], [ -87.449052, 38.832835 ], [ -87.449057, 38.832922 ], [ -87.449056, 38.833021 ], [ -87.449052, 38.833037 ], [ -87.449007, 38.833227 ], [ -87.448978, 38.833408 ], [ -87.448949, 38.833519 ], [ -87.448946, 38.833534 ], [ -87.448932, 38.833631 ], [ -87.448929, 38.833719 ], [ -87.448917, 38.833836 ], [ -87.448837, 38.834286 ], [ -87.448821, 38.834414 ], [ -87.44871, 38.83509 ], [ -87.448697, 38.835172 ], [ -87.448637, 38.83561 ], [ -87.448616, 38.835773 ], [ -87.448591, 38.835934 ], [ -87.448449, 38.836878 ], [ -87.448444, 38.836904 ], [ -87.448408, 38.837113 ], [ -87.448389, 38.837227 ], [ -87.44828, 38.837933 ], [ -87.448188, 38.838494 ], [ -87.448085, 38.839206 ], [ -87.448007, 38.839693 ], [ -87.447952, 38.84011 ], [ -87.44786, 38.840663 ], [ -87.447802, 38.841068 ], [ -87.447774, 38.84127 ], [ -87.447667, 38.84191 ], [ -87.447573, 38.842595 ], [ -87.447472, 38.843225 ], [ -87.447385, 38.843862 ], [ -87.447305, 38.844342 ], [ -87.447284, 38.844526 ], [ -87.447226, 38.844912 ], [ -87.447201, 38.845024 ], [ -87.446951, 38.846679 ], [ -87.446906, 38.847071 ], [ -87.446822, 38.847498 ], [ -87.446736, 38.84788 ], [ -87.446638, 38.848137 ], [ -87.446572, 38.848332 ], [ -87.446475, 38.848557 ], [ -87.446273, 38.848929 ], [ -87.445655, 38.849941 ], [ -87.445458, 38.850279 ], [ -87.44492, 38.851169 ], [ -87.444454, 38.851953 ], [ -87.444426, 38.852033 ], [ -87.444404, 38.852102 ], [ -87.444351, 38.852339 ], [ -87.444339, 38.852515 ], [ -87.44436, 38.852707 ], [ -87.444435, 38.852936 ], [ -87.444525, 38.853126 ], [ -87.44461, 38.853264 ], [ -87.444761, 38.853439 ], [ -87.445058, 38.85368 ], [ -87.445679, 38.854067 ], [ -87.446124, 38.854326 ], [ -87.446547, 38.854587 ], [ -87.446747, 38.854704 ], [ -87.446822, 38.854748 ], [ -87.447212, 38.854979 ], [ -87.447531, 38.855167 ], [ -87.447793, 38.855359 ], [ -87.447969, 38.855517 ], [ -87.448086, 38.855648 ], [ -87.448157, 38.855749 ], [ -87.448223, 38.855856 ], [ -87.448308, 38.856109 ], [ -87.448318, 38.856139 ], [ -87.448351, 38.856363 ], [ -87.44835, 38.856647 ], [ -87.448347, 38.85687 ], [ -87.44832, 38.85719 ], [ -87.448318, 38.857215 ], [ -87.448307, 38.857523 ], [ -87.448276, 38.857926 ], [ -87.448263, 38.858226 ], [ -87.448214, 38.858921 ], [ -87.448202, 38.85911 ], [ -87.448184, 38.859491 ], [ -87.448182, 38.85954 ], [ -87.448149, 38.859899 ], [ -87.448124, 38.860358 ], [ -87.448116, 38.860473 ], [ -87.44806, 38.861331 ], [ -87.448025, 38.861803 ], [ -87.447955, 38.862984 ], [ -87.447945, 38.863073 ], [ -87.447906, 38.86325 ], [ -87.447877, 38.863415 ], [ -87.447848, 38.863583 ], [ -87.447735, 38.863996 ], [ -87.44768, 38.864155 ], [ -87.447632, 38.864312 ], [ -87.447622, 38.864338 ], [ -87.44761, 38.864362 ] ] } } diff --git a/tests/knox/out/-zg.json b/tests/knox/out/-zg.json new file mode 100644 index 0000000..c5185c4 --- /dev/null +++ b/tests/knox/out/-zg.json @@ -0,0 +1,1144 @@ +{ "type": "FeatureCollection", "properties": { +"bounds": "-87.564090,38.490831,-87.251603,38.902199", +"center": "-87.363281,38.685378,10", +"description": "tests/knox/out/-zg.json.check.mbtiles", +"format": "pbf", +"json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 10, \"fields\": {\"FULLNAME\": \"String\", \"LINEARID\": \"String\", \"MTFCC\": \"String\", \"RTTYP\": \"String\"} } ] }", +"maxzoom": "10", +"minzoom": "0", +"name": "tests/knox/out/-zg.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": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.822591 ], [ -87.451172, 38.959409 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.626953, 38.548165 ], [ -87.539062, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.626953, 38.548165 ], [ -87.539062, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.754083 ], [ -87.451172, 38.959409 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.754083 ], [ -87.451172, 38.959409 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.754083 ], [ -87.451172, 38.959409 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.754083 ], [ -87.451172, 38.959409 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.822591 ], [ -87.539062, 38.754083 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841553", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.754083 ], [ -87.539062, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.685510 ], [ -87.539062, 38.754083 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624305", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.685510 ], [ -87.539062, 38.754083 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.685510 ], [ -87.539062, 38.754083 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.626953, 38.548165 ], [ -87.539062, 38.754083 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.626953, 38.548165 ], [ -87.539062, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613150", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.685510 ], [ -87.363281, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613492", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.685510 ], [ -87.363281, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610285", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.363281, 38.685510 ], [ -87.539062, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.685510 ], [ -87.363281, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685675", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.685510 ], [ -87.363281, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686635", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.685510 ], [ -87.363281, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.363281, 38.685510 ], [ -87.275391, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.363281, 38.685510 ], [ -87.275391, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685646", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.685510 ], [ -87.363281, 38.685510 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.788345 ], [ -87.451172, 38.925229 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070260", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.451172, 38.856820 ], [ -87.451172, 38.891033 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.583008, 38.513788 ], [ -87.539062, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.583008, 38.513788 ], [ -87.539062, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.719805 ], [ -87.451172, 38.925229 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.719805 ], [ -87.451172, 38.925229 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.719805 ], [ -87.451172, 38.925229 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.719805 ], [ -87.451172, 38.925229 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624700", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.719805 ], [ -87.495117, 38.719805 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469553886", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.719805 ], [ -87.495117, 38.719805 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.719805 ], [ -87.539062, 38.719805 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.788345 ], [ -87.495117, 38.719805 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841667", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.719805 ], [ -87.495117, 38.719805 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841556", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.719805 ], [ -87.495117, 38.719805 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841553", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.719805 ], [ -87.495117, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.495117, 38.719805 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627422", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.685510 ], [ -87.495117, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624305", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.495117, 38.719805 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.495117, 38.719805 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.583008, 38.513788 ], [ -87.495117, 38.719805 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.583008, 38.513788 ], [ -87.539062, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613150", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.363281, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613492", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.363281, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610285", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.363281, 38.685510 ], [ -87.495117, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.363281, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257640853", "FULLNAME": "E US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.363281, 38.685510 ], [ -87.319336, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685675", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.363281, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686635", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.363281, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.363281, 38.685510 ], [ -87.275391, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.363281, 38.685510 ], [ -87.275391, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685645", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.319336, 38.651198 ], [ -87.319336, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685646", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.319336, 38.651198 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.771216 ], [ -87.451172, 38.908133 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070260", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.451172, 38.839708 ], [ -87.451172, 38.873929 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.583008, 38.496594 ], [ -87.539062, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.583008, 38.496594 ], [ -87.539062, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.702659 ], [ -87.451172, 38.908133 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.702659 ], [ -87.451172, 38.908133 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.702659 ], [ -87.451172, 38.908133 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.702659 ], [ -87.451172, 38.908133 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624700", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.719805 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469553886", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.719805 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.702659 ], [ -87.517090, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.771216 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841667", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.517090, 38.702659 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841556", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.517090, 38.702659 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841553", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.702659 ], [ -87.495117, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627422", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.517090, 38.668356 ], [ -87.495117, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624305", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170071138", "FULLNAME": "E US Hwy 50-150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.685510 ], [ -87.495117, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.583008, 38.496594 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.583008, 38.496594 ], [ -87.517090, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613150", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.341309, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613492", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.341309, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610285", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.341309, 38.685510 ], [ -87.495117, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.341309, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257640853", "FULLNAME": "E US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.341309, 38.668356 ], [ -87.319336, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685675", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.341309, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686635", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.341309, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.341309, 38.668356 ], [ -87.275391, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.341309, 38.668356 ], [ -87.275391, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685645", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.297363, 38.651198 ], [ -87.319336, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685646", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.651198 ], [ -87.297363, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104472002543", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.651198 ], [ -87.275391, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471680885", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.651198 ], [ -87.275391, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.253418, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.253418, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170072467", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.651198 ], [ -87.275391, 38.651198 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.762650 ], [ -87.440186, 38.873929 ], [ -87.440186, 38.908133 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070260", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.451172, 38.839708 ], [ -87.451172, 38.865375 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.572021, 38.496594 ], [ -87.539062, 38.530979 ], [ -87.528076, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.572021, 38.496594 ], [ -87.539062, 38.530979 ], [ -87.528076, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.702659 ], [ -87.451172, 38.831150 ], [ -87.440186, 38.908133 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.702659 ], [ -87.451172, 38.831150 ], [ -87.440186, 38.908133 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.702659 ], [ -87.451172, 38.831150 ], [ -87.440186, 38.908133 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.702659 ], [ -87.451172, 38.831150 ], [ -87.440186, 38.908133 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624700", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.528076, 38.711233 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469553886", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.528076, 38.711233 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.702659 ], [ -87.506104, 38.694085 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.762650 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841667", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.506104, 38.694085 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841556", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.506104, 38.694085 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257622329", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.694085 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841665", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.694085 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257599171", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.694085 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841553", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.702659 ], [ -87.495117, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.685510 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627422", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.517090, 38.668356 ], [ -87.495117, 38.676933 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070259", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.625454 ], [ -87.539062, 38.634036 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624305", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.676933 ], [ -87.495117, 38.694085 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627423", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.676933 ], [ -87.495117, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.685510 ], [ -87.495117, 38.694085 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070320", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.685510 ], [ -87.495117, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070272", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.685510 ], [ -87.495117, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070318", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.676933 ], [ -87.495117, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070277", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.676933 ], [ -87.495117, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257616296", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.676933 ], [ -87.484131, 38.676933 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170071138", "FULLNAME": "E US Hwy 50-150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.676933 ], [ -87.484131, 38.676933 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.572021, 38.496594 ], [ -87.539062, 38.530979 ], [ -87.539062, 38.651198 ], [ -87.495117, 38.685510 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.572021, 38.496594 ], [ -87.539062, 38.530979 ], [ -87.539062, 38.616870 ], [ -87.517090, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613150", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.341309, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613492", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.341309, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610285", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.341309, 38.676933 ], [ -87.484131, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.685510 ], [ -87.341309, 38.676933 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257640853", "FULLNAME": "E US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.330322, 38.668356 ], [ -87.319336, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685675", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.341309, 38.676933 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686635", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.341309, 38.676933 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.341309, 38.668356 ], [ -87.275391, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.341309, 38.668356 ], [ -87.275391, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685645", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.286377, 38.651198 ], [ -87.308350, 38.659778 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685646", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.651198 ], [ -87.286377, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104472002543", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.651198 ], [ -87.275391, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471680885", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.651198 ], [ -87.275391, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.253418, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.253418, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170072467", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.651198 ], [ -87.275391, 38.651198 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.762650 ], [ -87.434692, 38.869652 ], [ -87.445679, 38.891033 ], [ -87.440186, 38.903858 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070260", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.451172, 38.835429 ], [ -87.451172, 38.865375 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.566528, 38.492294 ], [ -87.561035, 38.513788 ], [ -87.539062, 38.530979 ], [ -87.539062, 38.612578 ], [ -87.528076, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.566528, 38.492294 ], [ -87.561035, 38.513788 ], [ -87.539062, 38.530979 ], [ -87.539062, 38.612578 ], [ -87.528076, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.698372 ], [ -87.484131, 38.702659 ], [ -87.484131, 38.741231 ], [ -87.445679, 38.822591 ], [ -87.434692, 38.869652 ], [ -87.445679, 38.891033 ], [ -87.440186, 38.903858 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.698372 ], [ -87.484131, 38.706946 ], [ -87.484131, 38.741231 ], [ -87.467651, 38.796908 ], [ -87.445679, 38.818311 ], [ -87.434692, 38.869652 ], [ -87.445679, 38.891033 ], [ -87.440186, 38.903858 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.698372 ], [ -87.484131, 38.706946 ], [ -87.484131, 38.741231 ], [ -87.467651, 38.796908 ], [ -87.445679, 38.818311 ], [ -87.434692, 38.869652 ], [ -87.445679, 38.891033 ], [ -87.440186, 38.903858 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.698372 ], [ -87.484131, 38.706946 ], [ -87.484131, 38.741231 ], [ -87.467651, 38.796908 ], [ -87.445679, 38.818311 ], [ -87.434692, 38.869652 ], [ -87.445679, 38.891033 ], [ -87.440186, 38.903858 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624700", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.522583, 38.711233 ], [ -87.506104, 38.706946 ], [ -87.495117, 38.698372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469553886", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.522583, 38.711233 ], [ -87.506104, 38.706946 ], [ -87.495117, 38.698372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.698372 ], [ -87.500610, 38.694085 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.478638, 38.758367 ], [ -87.495117, 38.698372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841667", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.500610, 38.694085 ], [ -87.495117, 38.698372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841556", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.500610, 38.694085 ], [ -87.495117, 38.698372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257622329", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.694085 ], [ -87.495117, 38.698372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841665", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.689798 ], [ -87.495117, 38.698372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257599171", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.689798 ], [ -87.495117, 38.698372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841553", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.698372 ], [ -87.489624, 38.681222 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.681222 ], [ -87.495117, 38.698372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627422", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.511597, 38.664067 ], [ -87.495117, 38.676933 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070259", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.621162 ], [ -87.533569, 38.629745 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624305", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.672645 ], [ -87.495117, 38.689798 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627423", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.676933 ], [ -87.489624, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.681222 ], [ -87.495117, 38.689798 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070276", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.489624, 38.681222 ], [ -87.495117, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070320", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.681222 ], [ -87.489624, 38.681222 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070272", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.681222 ], [ -87.489624, 38.681222 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070318", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.676933 ], [ -87.489624, 38.681222 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070277", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.676933 ], [ -87.489624, 38.681222 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257616296", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.676933 ], [ -87.484131, 38.676933 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170071138", "FULLNAME": "E US Hwy 50-150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.676933 ], [ -87.484131, 38.676933 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.566528, 38.492294 ], [ -87.561035, 38.513788 ], [ -87.539062, 38.530979 ], [ -87.539062, 38.612578 ], [ -87.533569, 38.651198 ], [ -87.495117, 38.681222 ], [ -87.495117, 38.698372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.566528, 38.492294 ], [ -87.561035, 38.513788 ], [ -87.539062, 38.530979 ], [ -87.539062, 38.612578 ], [ -87.533569, 38.651198 ], [ -87.511597, 38.664067 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613150", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.489624, 38.681222 ], [ -87.456665, 38.676933 ], [ -87.407227, 38.681222 ], [ -87.335815, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613492", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.489624, 38.681222 ], [ -87.456665, 38.676933 ], [ -87.407227, 38.681222 ], [ -87.335815, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610285", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.672645 ], [ -87.412720, 38.681222 ], [ -87.484131, 38.681222 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.681222 ], [ -87.407227, 38.681222 ], [ -87.335815, 38.672645 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257640853", "FULLNAME": "E US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.324829, 38.668356 ], [ -87.319336, 38.664067 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685675", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.335815, 38.672645 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686635", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.335815, 38.672645 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.668356 ], [ -87.275391, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.668356 ], [ -87.275391, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685645", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.286377, 38.651198 ], [ -87.302856, 38.659778 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685646", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.646908 ], [ -87.280884, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104472002543", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.646908 ], [ -87.275391, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471680885", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.646908 ], [ -87.275391, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.253418, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.253418, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170072467", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.646908 ], [ -87.269897, 38.646908 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.760509 ], [ -87.464905, 38.794768 ], [ -87.448425, 38.818311 ], [ -87.434692, 38.867513 ], [ -87.442932, 38.886757 ], [ -87.440186, 38.903858 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070260", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.451172, 38.833289 ], [ -87.445679, 38.854681 ], [ -87.448425, 38.865375 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.566528, 38.492294 ], [ -87.561035, 38.513788 ], [ -87.539062, 38.528830 ], [ -87.539062, 38.610432 ], [ -87.528076, 38.649053 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.566528, 38.492294 ], [ -87.561035, 38.513788 ], [ -87.541809, 38.522384 ], [ -87.539062, 38.528830 ], [ -87.539062, 38.610432 ], [ -87.528076, 38.649053 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.696229 ], [ -87.484131, 38.702659 ], [ -87.484131, 38.736946 ], [ -87.464905, 38.792627 ], [ -87.445679, 38.820451 ], [ -87.434692, 38.869652 ], [ -87.442932, 38.886757 ], [ -87.440186, 38.903858 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.696229 ], [ -87.484131, 38.704803 ], [ -87.484131, 38.736946 ], [ -87.464905, 38.792627 ], [ -87.445679, 38.818311 ], [ -87.434692, 38.869652 ], [ -87.442932, 38.886757 ], [ -87.440186, 38.903858 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.696229 ], [ -87.484131, 38.704803 ], [ -87.484131, 38.736946 ], [ -87.464905, 38.792627 ], [ -87.445679, 38.818311 ], [ -87.434692, 38.869652 ], [ -87.442932, 38.886757 ], [ -87.440186, 38.903858 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.696229 ], [ -87.484131, 38.704803 ], [ -87.484131, 38.736946 ], [ -87.464905, 38.792627 ], [ -87.445679, 38.818311 ], [ -87.434692, 38.869652 ], [ -87.442932, 38.886757 ], [ -87.440186, 38.903858 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624700", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519836, 38.709089 ], [ -87.503357, 38.706946 ], [ -87.495117, 38.696229 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469553886", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519836, 38.709089 ], [ -87.503357, 38.706946 ], [ -87.495117, 38.696229 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.696229 ], [ -87.497864, 38.694085 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.475891, 38.756225 ], [ -87.484131, 38.734804 ], [ -87.484131, 38.702659 ], [ -87.495117, 38.696229 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841667", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.497864, 38.694085 ], [ -87.495117, 38.696229 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841556", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.497864, 38.694085 ], [ -87.495117, 38.696229 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257622329", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.694085 ], [ -87.495117, 38.696229 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841665", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.687654 ], [ -87.495117, 38.696229 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257599171", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.687654 ], [ -87.495117, 38.696229 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841553", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.696229 ], [ -87.489624, 38.679078 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.679078 ], [ -87.489624, 38.681222 ], [ -87.495117, 38.696229 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627422", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.511597, 38.661922 ], [ -87.492371, 38.674789 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070259", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.536316, 38.621162 ], [ -87.533569, 38.629745 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624305", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.672645 ], [ -87.492371, 38.679078 ], [ -87.492371, 38.689798 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627423", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.674789 ], [ -87.489624, 38.681222 ], [ -87.489624, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.679078 ], [ -87.492371, 38.687654 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070276", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.489624, 38.679078 ], [ -87.492371, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070320", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.679078 ], [ -87.489624, 38.679078 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070272", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.679078 ], [ -87.489624, 38.679078 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070318", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.674789 ], [ -87.489624, 38.679078 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070277", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.674789 ], [ -87.489624, 38.679078 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257616296", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.674789 ], [ -87.481384, 38.676933 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170071138", "FULLNAME": "E US Hwy 50-150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.674789 ], [ -87.481384, 38.676933 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.566528, 38.492294 ], [ -87.561035, 38.513788 ], [ -87.539062, 38.528830 ], [ -87.539062, 38.610432 ], [ -87.530823, 38.646908 ], [ -87.492371, 38.676933 ], [ -87.495117, 38.696229 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.566528, 38.492294 ], [ -87.561035, 38.513788 ], [ -87.539062, 38.526682 ], [ -87.539062, 38.612578 ], [ -87.530823, 38.649053 ], [ -87.511597, 38.661922 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613150", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.489624, 38.679078 ], [ -87.456665, 38.674789 ], [ -87.409973, 38.681222 ], [ -87.335815, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613492", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.489624, 38.679078 ], [ -87.456665, 38.674789 ], [ -87.409973, 38.681222 ], [ -87.335815, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610285", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.670501 ], [ -87.409973, 38.681222 ], [ -87.456665, 38.674789 ], [ -87.484131, 38.679078 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.679078 ], [ -87.456665, 38.674789 ], [ -87.409973, 38.681222 ], [ -87.335815, 38.670501 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257640853", "FULLNAME": "E US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.324829, 38.666212 ], [ -87.319336, 38.661922 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685675", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.294617, 38.651198 ], [ -87.335815, 38.670501 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686635", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.294617, 38.651198 ], [ -87.335815, 38.670501 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.668356 ], [ -87.291870, 38.651198 ], [ -87.275391, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.668356 ], [ -87.291870, 38.651198 ], [ -87.275391, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685645", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.283630, 38.649053 ], [ -87.300110, 38.657633 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685646", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.646908 ], [ -87.280884, 38.649053 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104472002543", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.646908 ], [ -87.275391, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471680885", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.646908 ], [ -87.275391, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.253418, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.253418, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170072467", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.646908 ], [ -87.267151, 38.646908 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 6, "x": 16, "y": 24 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.760509 ], [ -87.463531, 38.792627 ], [ -87.447052, 38.817241 ], [ -87.434692, 38.867513 ], [ -87.434692, 38.872859 ], [ -87.442932, 38.885688 ], [ -87.438812, 38.902790 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070260", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.449799, 38.832220 ], [ -87.445679, 38.853612 ], [ -87.448425, 38.856820 ], [ -87.448425, 38.865375 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.565155, 38.491219 ], [ -87.561035, 38.512714 ], [ -87.541809, 38.522384 ], [ -87.539062, 38.527756 ], [ -87.539062, 38.610432 ], [ -87.533569, 38.624381 ], [ -87.528076, 38.649053 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.565155, 38.491219 ], [ -87.559662, 38.512714 ], [ -87.541809, 38.522384 ], [ -87.539062, 38.526682 ], [ -87.539062, 38.610432 ], [ -87.533569, 38.625454 ], [ -87.528076, 38.649053 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.695157 ], [ -87.484131, 38.702659 ], [ -87.482758, 38.735875 ], [ -87.467651, 38.777640 ], [ -87.463531, 38.791557 ], [ -87.447052, 38.818311 ], [ -87.433319, 38.868583 ], [ -87.434692, 38.872859 ], [ -87.442932, 38.885688 ], [ -87.438812, 38.902790 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.695157 ], [ -87.484131, 38.702659 ], [ -87.482758, 38.735875 ], [ -87.466278, 38.776570 ], [ -87.463531, 38.791557 ], [ -87.445679, 38.818311 ], [ -87.433319, 38.868583 ], [ -87.442932, 38.886757 ], [ -87.438812, 38.902790 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.695157 ], [ -87.484131, 38.702659 ], [ -87.482758, 38.735875 ], [ -87.466278, 38.776570 ], [ -87.463531, 38.791557 ], [ -87.445679, 38.818311 ], [ -87.433319, 38.868583 ], [ -87.442932, 38.886757 ], [ -87.438812, 38.902790 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.695157 ], [ -87.484131, 38.702659 ], [ -87.482758, 38.735875 ], [ -87.466278, 38.776570 ], [ -87.463531, 38.791557 ], [ -87.445679, 38.818311 ], [ -87.433319, 38.868583 ], [ -87.442932, 38.886757 ], [ -87.438812, 38.902790 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624700", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519836, 38.708018 ], [ -87.507477, 38.708018 ], [ -87.501984, 38.705874 ], [ -87.496490, 38.701588 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469553886", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519836, 38.708018 ], [ -87.508850, 38.708018 ], [ -87.501984, 38.705874 ], [ -87.497864, 38.701588 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.695157 ], [ -87.497864, 38.694085 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.475891, 38.755154 ], [ -87.482758, 38.734804 ], [ -87.484131, 38.702659 ], [ -87.486877, 38.698372 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841667", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.497864, 38.694085 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841556", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.497864, 38.694085 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257622329", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.693013 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841665", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.490997, 38.687654 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257599171", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.490997, 38.687654 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841553", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.695157 ], [ -87.488251, 38.679078 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.482758, 38.678006 ], [ -87.488251, 38.681222 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627422", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.510223, 38.661922 ], [ -87.492371, 38.674789 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070259", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.536316, 38.620089 ], [ -87.533569, 38.629745 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624305", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.672645 ], [ -87.490997, 38.679078 ], [ -87.492371, 38.689798 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627423", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.674789 ], [ -87.488251, 38.680150 ], [ -87.489624, 38.684438 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.482758, 38.678006 ], [ -87.486877, 38.681222 ], [ -87.490997, 38.687654 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070276", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.488251, 38.679078 ], [ -87.490997, 38.684438 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070320", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.482758, 38.678006 ], [ -87.488251, 38.679078 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070272", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.482758, 38.678006 ], [ -87.488251, 38.679078 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070318", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.674789 ], [ -87.488251, 38.679078 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070277", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.674789 ], [ -87.488251, 38.679078 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257616296", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.674789 ], [ -87.486877, 38.676933 ], [ -87.481384, 38.676933 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170071138", "FULLNAME": "E US Hwy 50-150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.471771, 38.674789 ], [ -87.481384, 38.676933 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.565155, 38.491219 ], [ -87.561035, 38.512714 ], [ -87.541809, 38.522384 ], [ -87.539062, 38.527756 ], [ -87.539062, 38.610432 ], [ -87.533569, 38.624381 ], [ -87.529449, 38.645836 ], [ -87.526703, 38.651198 ], [ -87.493744, 38.674789 ], [ -87.490997, 38.679078 ], [ -87.490997, 38.685510 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.565155, 38.491219 ], [ -87.559662, 38.512714 ], [ -87.541809, 38.522384 ], [ -87.539062, 38.526682 ], [ -87.539062, 38.611505 ], [ -87.533569, 38.625454 ], [ -87.529449, 38.647981 ], [ -87.510223, 38.661922 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613150", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.488251, 38.679078 ], [ -87.475891, 38.675861 ], [ -87.458038, 38.674789 ], [ -87.429199, 38.675861 ], [ -87.409973, 38.680150 ], [ -87.370148, 38.675861 ], [ -87.335815, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613492", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.488251, 38.679078 ], [ -87.475891, 38.675861 ], [ -87.458038, 38.674789 ], [ -87.429199, 38.675861 ], [ -87.409973, 38.680150 ], [ -87.370148, 38.675861 ], [ -87.335815, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610285", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.669428 ], [ -87.371521, 38.675861 ], [ -87.409973, 38.680150 ], [ -87.427826, 38.675861 ], [ -87.455292, 38.674789 ], [ -87.474518, 38.675861 ], [ -87.482758, 38.678006 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.482758, 38.678006 ], [ -87.474518, 38.675861 ], [ -87.455292, 38.674789 ], [ -87.427826, 38.675861 ], [ -87.409973, 38.680150 ], [ -87.371521, 38.675861 ], [ -87.335815, 38.669428 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257640853", "FULLNAME": "E US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.324829, 38.665139 ], [ -87.317963, 38.661922 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685675", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.294617, 38.651198 ], [ -87.326202, 38.666212 ], [ -87.335815, 38.669428 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686635", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.294617, 38.651198 ], [ -87.326202, 38.666212 ], [ -87.335815, 38.669428 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.668356 ], [ -87.326202, 38.666212 ], [ -87.291870, 38.650126 ], [ -87.275391, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.668356 ], [ -87.326202, 38.666212 ], [ -87.291870, 38.650126 ], [ -87.275391, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685645", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.282257, 38.649053 ], [ -87.298737, 38.656561 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685646", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.252045, 38.646908 ], [ -87.267151, 38.645836 ], [ -87.280884, 38.647981 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104472002543", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.252045, 38.646908 ], [ -87.275391, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471680885", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.252045, 38.646908 ], [ -87.275391, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.252045, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.252045, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170072467", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.252045, 38.646908 ], [ -87.265778, 38.645836 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 7, "x": 32, "y": 49 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.759973 ], [ -87.466278, 38.778711 ], [ -87.463531, 38.792627 ], [ -87.447739, 38.814031 ], [ -87.444992, 38.822591 ], [ -87.434006, 38.865375 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070260", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.449112, 38.832220 ], [ -87.447052, 38.848264 ], [ -87.444992, 38.853077 ], [ -87.448425, 38.856285 ], [ -87.447739, 38.864840 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564468, 38.491219 ], [ -87.561722, 38.507878 ], [ -87.560349, 38.511639 ], [ -87.556229, 38.515400 ], [ -87.541809, 38.522384 ], [ -87.538376, 38.527219 ], [ -87.539062, 38.609896 ], [ -87.533569, 38.624381 ], [ -87.530136, 38.644763 ], [ -87.528076, 38.649053 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564468, 38.491219 ], [ -87.561722, 38.508953 ], [ -87.560349, 38.511639 ], [ -87.556229, 38.515400 ], [ -87.541809, 38.521847 ], [ -87.538376, 38.526682 ], [ -87.539062, 38.610432 ], [ -87.533569, 38.624918 ], [ -87.529449, 38.644763 ], [ -87.528076, 38.648517 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.695157 ], [ -87.486877, 38.698372 ], [ -87.484131, 38.701588 ], [ -87.484818, 38.723019 ], [ -87.482071, 38.736946 ], [ -87.466965, 38.777105 ], [ -87.463531, 38.792627 ], [ -87.447739, 38.814031 ], [ -87.444992, 38.822591 ], [ -87.434006, 38.865375 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.695157 ], [ -87.486877, 38.698372 ], [ -87.484131, 38.702123 ], [ -87.484131, 38.722483 ], [ -87.482071, 38.736946 ], [ -87.466278, 38.776570 ], [ -87.462845, 38.792092 ], [ -87.447739, 38.812961 ], [ -87.444305, 38.822591 ], [ -87.434006, 38.865375 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.695157 ], [ -87.486877, 38.698372 ], [ -87.484131, 38.702123 ], [ -87.484131, 38.722483 ], [ -87.482071, 38.736946 ], [ -87.466278, 38.776570 ], [ -87.462845, 38.792092 ], [ -87.447739, 38.812961 ], [ -87.444305, 38.822591 ], [ -87.434006, 38.865375 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.695157 ], [ -87.486877, 38.698372 ], [ -87.484131, 38.702123 ], [ -87.484131, 38.722483 ], [ -87.482071, 38.736946 ], [ -87.466278, 38.776570 ], [ -87.462845, 38.792092 ], [ -87.447739, 38.812961 ], [ -87.444305, 38.822591 ], [ -87.434006, 38.865375 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624700", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519836, 38.707482 ], [ -87.509537, 38.708018 ], [ -87.502670, 38.706410 ], [ -87.497177, 38.702123 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469553886", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519836, 38.707482 ], [ -87.509537, 38.708018 ], [ -87.502670, 38.706410 ], [ -87.497177, 38.701588 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.695157 ], [ -87.497177, 38.693549 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.475204, 38.755154 ], [ -87.482758, 38.734804 ], [ -87.484818, 38.723019 ], [ -87.484131, 38.702123 ], [ -87.486877, 38.698372 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841667", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.497177, 38.693549 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841556", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.497177, 38.693549 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257622329", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493057, 38.693013 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841665", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.490997, 38.687654 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257599171", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.490997, 38.687654 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841553", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.695157 ], [ -87.490997, 38.687118 ], [ -87.490311, 38.681758 ], [ -87.488251, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.482071, 38.678006 ], [ -87.487564, 38.681222 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627422", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.509537, 38.661922 ], [ -87.492371, 38.674789 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070259", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.535629, 38.620089 ], [ -87.533569, 38.625454 ], [ -87.533569, 38.629209 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624305", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.672645 ], [ -87.493057, 38.674789 ], [ -87.490311, 38.679078 ], [ -87.491684, 38.689262 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627423", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.674789 ], [ -87.489624, 38.676397 ], [ -87.488251, 38.679078 ], [ -87.489624, 38.684438 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.482071, 38.678006 ], [ -87.486877, 38.680686 ], [ -87.490997, 38.687654 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070276", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.488251, 38.678542 ], [ -87.490311, 38.681222 ], [ -87.490311, 38.683902 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070320", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.482071, 38.678006 ], [ -87.488251, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070272", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.482071, 38.678006 ], [ -87.488251, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070318", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493057, 38.674789 ], [ -87.490997, 38.677469 ], [ -87.488251, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070277", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493057, 38.674789 ], [ -87.490997, 38.677469 ], [ -87.488251, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257616296", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.674789 ], [ -87.486877, 38.676933 ], [ -87.480698, 38.676397 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170071138", "FULLNAME": "E US Hwy 50-150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.471771, 38.674789 ], [ -87.480698, 38.676397 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564468, 38.491219 ], [ -87.561722, 38.507878 ], [ -87.560349, 38.511639 ], [ -87.556229, 38.515400 ], [ -87.541809, 38.522384 ], [ -87.538376, 38.527219 ], [ -87.539062, 38.609896 ], [ -87.533569, 38.624381 ], [ -87.529449, 38.645836 ], [ -87.526016, 38.650662 ], [ -87.493057, 38.674789 ], [ -87.490311, 38.679078 ], [ -87.490311, 38.685510 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564468, 38.491219 ], [ -87.561722, 38.508953 ], [ -87.560349, 38.511639 ], [ -87.556229, 38.515400 ], [ -87.541809, 38.521847 ], [ -87.538376, 38.526144 ], [ -87.539062, 38.610969 ], [ -87.533569, 38.624918 ], [ -87.528763, 38.647445 ], [ -87.526016, 38.650126 ], [ -87.509537, 38.661922 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613150", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.488251, 38.678542 ], [ -87.485504, 38.677469 ], [ -87.475891, 38.675325 ], [ -87.457352, 38.674253 ], [ -87.428513, 38.675861 ], [ -87.412720, 38.680150 ], [ -87.409286, 38.680150 ], [ -87.369461, 38.675325 ], [ -87.335815, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613492", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.488251, 38.678542 ], [ -87.485504, 38.677469 ], [ -87.475891, 38.675325 ], [ -87.457352, 38.674253 ], [ -87.428513, 38.675861 ], [ -87.412720, 38.680150 ], [ -87.409286, 38.680150 ], [ -87.369461, 38.675325 ], [ -87.335815, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610285", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335129, 38.668892 ], [ -87.371521, 38.675861 ], [ -87.409286, 38.680150 ], [ -87.412720, 38.680150 ], [ -87.427826, 38.675861 ], [ -87.455292, 38.674253 ], [ -87.473831, 38.675325 ], [ -87.482071, 38.678006 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.482071, 38.678006 ], [ -87.473831, 38.675325 ], [ -87.455292, 38.674253 ], [ -87.427826, 38.675861 ], [ -87.412720, 38.680150 ], [ -87.409286, 38.680150 ], [ -87.371521, 38.675861 ], [ -87.335129, 38.668892 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257640853", "FULLNAME": "E US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.324829, 38.665139 ], [ -87.317963, 38.661922 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685675", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.286377, 38.648517 ], [ -87.293930, 38.651198 ], [ -87.325516, 38.666212 ], [ -87.335129, 38.668892 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686635", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.286377, 38.648517 ], [ -87.293930, 38.651198 ], [ -87.325516, 38.666212 ], [ -87.335129, 38.668892 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.668356 ], [ -87.326202, 38.665675 ], [ -87.291183, 38.649590 ], [ -87.275391, 38.646372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.668356 ], [ -87.326202, 38.665675 ], [ -87.291183, 38.649590 ], [ -87.275391, 38.646372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685645", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.281570, 38.648517 ], [ -87.285690, 38.651198 ], [ -87.294617, 38.653343 ], [ -87.298737, 38.656561 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685646", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.252045, 38.646908 ], [ -87.267151, 38.645836 ], [ -87.280197, 38.647445 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104472002543", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.252045, 38.646908 ], [ -87.266464, 38.645836 ], [ -87.275391, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471680885", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.252045, 38.646908 ], [ -87.266464, 38.645836 ], [ -87.275391, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646372 ], [ -87.265778, 38.645836 ], [ -87.252045, 38.646372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646372 ], [ -87.265778, 38.645836 ], [ -87.252045, 38.646372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170072467", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.252045, 38.646372 ], [ -87.265778, 38.645836 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 7, "x": 32, "y": 48 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.465591, 38.779781 ], [ -87.463531, 38.792627 ], [ -87.447739, 38.814031 ], [ -87.444992, 38.822591 ], [ -87.433319, 38.868048 ], [ -87.434692, 38.872325 ], [ -87.440872, 38.880343 ], [ -87.442932, 38.885688 ], [ -87.442932, 38.891033 ], [ -87.438126, 38.902255 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070260", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.449112, 38.832220 ], [ -87.447052, 38.848264 ], [ -87.444992, 38.853077 ], [ -87.448425, 38.856285 ], [ -87.447739, 38.864840 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.465591, 38.779781 ], [ -87.463531, 38.792627 ], [ -87.447739, 38.814031 ], [ -87.444992, 38.822591 ], [ -87.433319, 38.868048 ], [ -87.434692, 38.872325 ], [ -87.440872, 38.880343 ], [ -87.442932, 38.885688 ], [ -87.442932, 38.891033 ], [ -87.438126, 38.902255 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.465591, 38.779781 ], [ -87.462845, 38.792627 ], [ -87.447739, 38.812961 ], [ -87.444305, 38.822591 ], [ -87.433319, 38.868048 ], [ -87.434006, 38.872859 ], [ -87.440872, 38.880343 ], [ -87.442932, 38.886223 ], [ -87.442245, 38.891033 ], [ -87.438126, 38.902255 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.465591, 38.779781 ], [ -87.462845, 38.792627 ], [ -87.447739, 38.812961 ], [ -87.444305, 38.822591 ], [ -87.433319, 38.868048 ], [ -87.434006, 38.872859 ], [ -87.440872, 38.880343 ], [ -87.442932, 38.886223 ], [ -87.442245, 38.891033 ], [ -87.438126, 38.902255 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.465591, 38.779781 ], [ -87.462845, 38.792627 ], [ -87.447739, 38.812961 ], [ -87.444305, 38.822591 ], [ -87.433319, 38.868048 ], [ -87.434006, 38.872859 ], [ -87.440872, 38.880343 ], [ -87.442932, 38.886223 ], [ -87.442245, 38.891033 ], [ -87.438126, 38.902255 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 65, "y": 98 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.759706 ], [ -87.465935, 38.778443 ], [ -87.464218, 38.789148 ], [ -87.463188, 38.792359 ], [ -87.447395, 38.814031 ], [ -87.444649, 38.822591 ], [ -87.439499, 38.843986 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070260", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.449112, 38.832220 ], [ -87.447395, 38.843986 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564125, 38.490951 ], [ -87.561722, 38.507878 ], [ -87.560349, 38.511639 ], [ -87.556229, 38.515400 ], [ -87.541466, 38.522115 ], [ -87.539406, 38.524264 ], [ -87.538376, 38.526950 ], [ -87.539062, 38.609627 ], [ -87.533569, 38.624381 ], [ -87.529793, 38.644763 ], [ -87.527733, 38.648785 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564125, 38.490951 ], [ -87.561378, 38.508684 ], [ -87.560005, 38.511639 ], [ -87.558289, 38.513520 ], [ -87.555885, 38.515131 ], [ -87.541466, 38.521847 ], [ -87.539406, 38.523727 ], [ -87.538033, 38.526682 ], [ -87.539062, 38.610164 ], [ -87.533226, 38.624649 ], [ -87.529449, 38.644495 ], [ -87.527733, 38.648517 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694889 ], [ -87.486877, 38.698372 ], [ -87.484131, 38.701588 ], [ -87.483788, 38.703999 ], [ -87.484474, 38.722751 ], [ -87.482071, 38.736946 ], [ -87.466621, 38.777105 ], [ -87.463188, 38.792359 ], [ -87.447395, 38.814031 ], [ -87.444649, 38.822591 ], [ -87.439499, 38.843986 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493401, 38.695157 ], [ -87.486877, 38.698372 ], [ -87.485161, 38.699980 ], [ -87.483788, 38.702123 ], [ -87.483444, 38.704803 ], [ -87.484131, 38.722483 ], [ -87.481728, 38.736946 ], [ -87.466278, 38.776570 ], [ -87.463188, 38.791557 ], [ -87.461472, 38.794768 ], [ -87.447739, 38.812961 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.439156, 38.843986 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493401, 38.695157 ], [ -87.486877, 38.698372 ], [ -87.485161, 38.699980 ], [ -87.483788, 38.702123 ], [ -87.483444, 38.704803 ], [ -87.484131, 38.722483 ], [ -87.481728, 38.736946 ], [ -87.466278, 38.776570 ], [ -87.463188, 38.791557 ], [ -87.461472, 38.794768 ], [ -87.447739, 38.812961 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.439156, 38.843986 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493401, 38.695157 ], [ -87.486877, 38.698372 ], [ -87.485161, 38.699980 ], [ -87.483788, 38.702123 ], [ -87.483444, 38.704803 ], [ -87.484131, 38.722483 ], [ -87.481728, 38.736946 ], [ -87.466278, 38.776570 ], [ -87.463188, 38.791557 ], [ -87.461472, 38.794768 ], [ -87.447739, 38.812961 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.439156, 38.843986 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624700", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519493, 38.707482 ], [ -87.509193, 38.708018 ], [ -87.505760, 38.707482 ], [ -87.502327, 38.706410 ], [ -87.498894, 38.704267 ], [ -87.496834, 38.702123 ], [ -87.493401, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469553886", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519493, 38.707214 ], [ -87.509193, 38.707750 ], [ -87.505417, 38.707214 ], [ -87.502327, 38.706142 ], [ -87.499237, 38.704267 ], [ -87.496834, 38.701588 ], [ -87.493744, 38.694889 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485838817", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.497177, 38.693281 ], [ -87.496834, 38.693549 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694889 ], [ -87.497177, 38.693281 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.474861, 38.755154 ], [ -87.482758, 38.734804 ], [ -87.484474, 38.722751 ], [ -87.484131, 38.702123 ], [ -87.485161, 38.699980 ], [ -87.486877, 38.698372 ], [ -87.493744, 38.694889 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841555", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694889 ], [ -87.493401, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841666", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694889 ], [ -87.493401, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841667", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.496834, 38.693549 ], [ -87.493744, 38.694889 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841556", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.496834, 38.693549 ], [ -87.493744, 38.694889 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257622329", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493057, 38.692745 ], [ -87.493744, 38.694889 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841665", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.490654, 38.687654 ], [ -87.493401, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257599171", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.490654, 38.687654 ], [ -87.493401, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841553", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694889 ], [ -87.490654, 38.686850 ], [ -87.489967, 38.681490 ], [ -87.487907, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481728, 38.677738 ], [ -87.485504, 38.679346 ], [ -87.487221, 38.680954 ], [ -87.489967, 38.686314 ], [ -87.493401, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627422", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.509537, 38.661922 ], [ -87.492027, 38.674521 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070259", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.535629, 38.620089 ], [ -87.533569, 38.625186 ], [ -87.533569, 38.628941 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624305", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.672377 ], [ -87.492714, 38.674789 ], [ -87.490311, 38.679078 ], [ -87.490311, 38.685510 ], [ -87.491684, 38.689262 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627423", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492027, 38.674521 ], [ -87.489281, 38.676397 ], [ -87.487907, 38.679078 ], [ -87.487907, 38.681222 ], [ -87.489281, 38.684170 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481728, 38.677738 ], [ -87.484474, 38.678810 ], [ -87.486877, 38.680418 ], [ -87.490654, 38.687654 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070276", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.487907, 38.678542 ], [ -87.489967, 38.680954 ], [ -87.490311, 38.683902 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070320", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481728, 38.677738 ], [ -87.484818, 38.678810 ], [ -87.487907, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070272", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481728, 38.677738 ], [ -87.484818, 38.678810 ], [ -87.487907, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070318", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492714, 38.674789 ], [ -87.490654, 38.677469 ], [ -87.487907, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070277", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492714, 38.674789 ], [ -87.490654, 38.677469 ], [ -87.487907, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257616296", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492027, 38.674521 ], [ -87.488937, 38.676129 ], [ -87.486877, 38.676933 ], [ -87.484131, 38.676933 ], [ -87.480354, 38.676129 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170071138", "FULLNAME": "E US Hwy 50-150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.471428, 38.674789 ], [ -87.475548, 38.675057 ], [ -87.480354, 38.676129 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564125, 38.490951 ], [ -87.561722, 38.507878 ], [ -87.560349, 38.511639 ], [ -87.556229, 38.515400 ], [ -87.541466, 38.522115 ], [ -87.539406, 38.524264 ], [ -87.538376, 38.526950 ], [ -87.539062, 38.609627 ], [ -87.533569, 38.624381 ], [ -87.529449, 38.645568 ], [ -87.528076, 38.648249 ], [ -87.526016, 38.650662 ], [ -87.503357, 38.666212 ], [ -87.492714, 38.674789 ], [ -87.490311, 38.679078 ], [ -87.490311, 38.684974 ], [ -87.490997, 38.687386 ], [ -87.493744, 38.694889 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564125, 38.490951 ], [ -87.561378, 38.508684 ], [ -87.560005, 38.511639 ], [ -87.558289, 38.513520 ], [ -87.555885, 38.515131 ], [ -87.541466, 38.521847 ], [ -87.539406, 38.523727 ], [ -87.538376, 38.525876 ], [ -87.538719, 38.610969 ], [ -87.533226, 38.624649 ], [ -87.529449, 38.644495 ], [ -87.528419, 38.647176 ], [ -87.526016, 38.650126 ], [ -87.509537, 38.661922 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613150", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.487907, 38.678542 ], [ -87.485504, 38.677201 ], [ -87.475548, 38.675057 ], [ -87.457008, 38.673985 ], [ -87.428169, 38.675593 ], [ -87.412720, 38.679882 ], [ -87.408943, 38.680150 ], [ -87.369461, 38.675325 ], [ -87.335472, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613492", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.487907, 38.678542 ], [ -87.485504, 38.677201 ], [ -87.475548, 38.675057 ], [ -87.457008, 38.673985 ], [ -87.428169, 38.675593 ], [ -87.412720, 38.679882 ], [ -87.408943, 38.680150 ], [ -87.369461, 38.675325 ], [ -87.335472, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610285", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335129, 38.668624 ], [ -87.371178, 38.675861 ], [ -87.409286, 38.680150 ], [ -87.412720, 38.679882 ], [ -87.427826, 38.675861 ], [ -87.455292, 38.674253 ], [ -87.473488, 38.675057 ], [ -87.476921, 38.675861 ], [ -87.481728, 38.677738 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481728, 38.677738 ], [ -87.476921, 38.675861 ], [ -87.473488, 38.675057 ], [ -87.455292, 38.674253 ], [ -87.427826, 38.675861 ], [ -87.412720, 38.679882 ], [ -87.409286, 38.680150 ], [ -87.371178, 38.675861 ], [ -87.335129, 38.668624 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257640853", "FULLNAME": "E US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.324486, 38.665139 ], [ -87.317619, 38.661922 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685675", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275047, 38.646640 ], [ -87.286034, 38.648517 ], [ -87.293587, 38.650930 ], [ -87.325516, 38.665944 ], [ -87.329292, 38.667284 ], [ -87.335129, 38.668624 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686635", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275047, 38.646640 ], [ -87.286034, 38.648517 ], [ -87.293587, 38.650930 ], [ -87.325516, 38.665944 ], [ -87.329292, 38.667284 ], [ -87.335129, 38.668624 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335472, 38.668356 ], [ -87.326546, 38.665944 ], [ -87.295303, 38.651466 ], [ -87.290840, 38.649590 ], [ -87.282257, 38.647445 ], [ -87.275047, 38.646372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335472, 38.668356 ], [ -87.326546, 38.665944 ], [ -87.295303, 38.651466 ], [ -87.290840, 38.649590 ], [ -87.282257, 38.647445 ], [ -87.275047, 38.646372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685645", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.281570, 38.648517 ], [ -87.285347, 38.650930 ], [ -87.294617, 38.653343 ], [ -87.298737, 38.656292 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685646", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.252045, 38.646640 ], [ -87.267151, 38.645836 ], [ -87.271957, 38.646104 ], [ -87.279854, 38.647445 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104472002543", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.252045, 38.646640 ], [ -87.266464, 38.645836 ], [ -87.275047, 38.646640 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471680885", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.252045, 38.646640 ], [ -87.266464, 38.645836 ], [ -87.275047, 38.646640 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275047, 38.646372 ], [ -87.265434, 38.645568 ], [ -87.251701, 38.646372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275047, 38.646372 ], [ -87.265434, 38.645568 ], [ -87.251701, 38.646372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170072467", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.251701, 38.646372 ], [ -87.265434, 38.645568 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 65, "y": 97 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.456665, 38.801189 ], [ -87.447395, 38.814031 ], [ -87.444649, 38.822591 ], [ -87.433319, 38.867781 ], [ -87.433662, 38.870186 ], [ -87.434692, 38.872859 ], [ -87.440872, 38.880343 ], [ -87.442932, 38.885688 ], [ -87.442589, 38.890766 ], [ -87.438126, 38.902255 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070260", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.449112, 38.832220 ], [ -87.447052, 38.847997 ], [ -87.444649, 38.852542 ], [ -87.444992, 38.853612 ], [ -87.448425, 38.856285 ], [ -87.447739, 38.864573 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.456665, 38.801189 ], [ -87.447395, 38.814031 ], [ -87.444649, 38.822591 ], [ -87.433319, 38.867781 ], [ -87.433662, 38.870186 ], [ -87.434692, 38.872859 ], [ -87.440872, 38.880343 ], [ -87.442932, 38.885688 ], [ -87.442589, 38.890766 ], [ -87.438126, 38.902255 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.456322, 38.801189 ], [ -87.447739, 38.813229 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.432976, 38.868048 ], [ -87.434006, 38.872592 ], [ -87.440872, 38.880343 ], [ -87.442589, 38.885955 ], [ -87.442245, 38.890766 ], [ -87.437782, 38.902255 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.456322, 38.801189 ], [ -87.447739, 38.813229 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.432976, 38.868048 ], [ -87.434006, 38.872592 ], [ -87.440872, 38.880343 ], [ -87.442589, 38.885955 ], [ -87.442245, 38.890766 ], [ -87.437782, 38.902255 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.456322, 38.801189 ], [ -87.447739, 38.813229 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.432976, 38.868048 ], [ -87.434006, 38.872592 ], [ -87.440872, 38.880343 ], [ -87.442589, 38.885955 ], [ -87.442245, 38.890766 ], [ -87.437782, 38.902255 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 9, "x": 131, "y": 196 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.759572 ], [ -87.469368, 38.768941 ], [ -87.465935, 38.778309 ], [ -87.464046, 38.789014 ], [ -87.463017, 38.792226 ], [ -87.461472, 38.794901 ], [ -87.449112, 38.811356 ], [ -87.447395, 38.813897 ], [ -87.446194, 38.816974 ], [ -87.444649, 38.822591 ], [ -87.441902, 38.833289 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070260", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.449112, 38.832220 ], [ -87.449112, 38.833289 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564125, 38.490951 ], [ -87.561722, 38.507878 ], [ -87.561207, 38.509624 ], [ -87.560177, 38.511639 ], [ -87.558117, 38.513788 ], [ -87.556057, 38.515266 ], [ -87.542839, 38.521310 ], [ -87.541466, 38.522115 ], [ -87.539406, 38.524130 ], [ -87.538376, 38.526816 ], [ -87.539062, 38.609627 ], [ -87.538548, 38.612042 ], [ -87.533569, 38.624247 ], [ -87.529793, 38.644629 ], [ -87.529106, 38.646506 ], [ -87.527733, 38.648651 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564125, 38.490951 ], [ -87.561378, 38.508550 ], [ -87.559834, 38.511505 ], [ -87.558289, 38.513385 ], [ -87.555714, 38.515131 ], [ -87.541466, 38.521847 ], [ -87.539406, 38.523727 ], [ -87.538548, 38.525204 ], [ -87.538033, 38.526547 ], [ -87.538891, 38.610030 ], [ -87.538376, 38.612042 ], [ -87.533913, 38.622101 ], [ -87.533226, 38.624515 ], [ -87.529449, 38.644495 ], [ -87.528934, 38.646238 ], [ -87.527561, 38.648383 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694889 ], [ -87.486877, 38.698372 ], [ -87.485161, 38.699980 ], [ -87.484131, 38.701588 ], [ -87.483788, 38.703865 ], [ -87.484303, 38.722751 ], [ -87.482758, 38.734000 ], [ -87.482071, 38.736946 ], [ -87.469368, 38.768941 ], [ -87.466450, 38.776971 ], [ -87.465420, 38.780718 ], [ -87.463875, 38.789683 ], [ -87.463017, 38.792226 ], [ -87.461472, 38.794901 ], [ -87.449112, 38.811356 ], [ -87.447395, 38.813897 ], [ -87.446194, 38.816974 ], [ -87.444649, 38.822591 ], [ -87.441902, 38.833289 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493401, 38.695023 ], [ -87.486706, 38.698372 ], [ -87.484989, 38.699980 ], [ -87.483788, 38.701989 ], [ -87.483444, 38.704669 ], [ -87.484131, 38.722349 ], [ -87.482414, 38.734402 ], [ -87.481728, 38.736946 ], [ -87.469025, 38.769075 ], [ -87.466278, 38.776570 ], [ -87.465076, 38.780718 ], [ -87.463703, 38.789416 ], [ -87.463017, 38.791557 ], [ -87.461300, 38.794634 ], [ -87.447739, 38.812961 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.441559, 38.833289 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493401, 38.695023 ], [ -87.486706, 38.698372 ], [ -87.484989, 38.699980 ], [ -87.483788, 38.701989 ], [ -87.483444, 38.704669 ], [ -87.484131, 38.722349 ], [ -87.482414, 38.734402 ], [ -87.481728, 38.736946 ], [ -87.469025, 38.769075 ], [ -87.466278, 38.776570 ], [ -87.465076, 38.780718 ], [ -87.463703, 38.789416 ], [ -87.463017, 38.791557 ], [ -87.461300, 38.794634 ], [ -87.447739, 38.812961 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.441559, 38.833289 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493401, 38.695023 ], [ -87.486706, 38.698372 ], [ -87.484989, 38.699980 ], [ -87.483788, 38.701989 ], [ -87.483444, 38.704669 ], [ -87.484131, 38.722349 ], [ -87.482414, 38.734402 ], [ -87.481728, 38.736946 ], [ -87.469025, 38.769075 ], [ -87.466278, 38.776570 ], [ -87.465076, 38.780718 ], [ -87.463703, 38.789416 ], [ -87.463017, 38.791557 ], [ -87.461300, 38.794634 ], [ -87.447739, 38.812961 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.441559, 38.833289 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624700", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519321, 38.707482 ], [ -87.509193, 38.707884 ], [ -87.505760, 38.707482 ], [ -87.502327, 38.706410 ], [ -87.498894, 38.704267 ], [ -87.496662, 38.702123 ], [ -87.495289, 38.699712 ], [ -87.493401, 38.695023 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469553886", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519321, 38.707214 ], [ -87.509193, 38.707750 ], [ -87.505417, 38.707214 ], [ -87.502155, 38.706008 ], [ -87.499237, 38.704267 ], [ -87.496662, 38.701588 ], [ -87.495632, 38.699712 ], [ -87.493744, 38.694889 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485838817", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.497005, 38.693281 ], [ -87.496662, 38.693415 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694889 ], [ -87.497005, 38.693281 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.474861, 38.755020 ], [ -87.481899, 38.737749 ], [ -87.482758, 38.734670 ], [ -87.484303, 38.722751 ], [ -87.483788, 38.703865 ], [ -87.483959, 38.701989 ], [ -87.485161, 38.699980 ], [ -87.486877, 38.698372 ], [ -87.493744, 38.694889 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841555", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694889 ], [ -87.493401, 38.695023 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841666", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694889 ], [ -87.493401, 38.695023 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841667", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.496662, 38.693415 ], [ -87.493744, 38.694889 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841556", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.496662, 38.693415 ], [ -87.493744, 38.694889 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257622329", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492886, 38.692745 ], [ -87.493744, 38.694889 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841665", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.490654, 38.687654 ], [ -87.493401, 38.695023 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257599171", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.490654, 38.687654 ], [ -87.493401, 38.695023 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841553", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694889 ], [ -87.490654, 38.686850 ], [ -87.489967, 38.681356 ], [ -87.489109, 38.679882 ], [ -87.487907, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677604 ], [ -87.485332, 38.679212 ], [ -87.487221, 38.680954 ], [ -87.489967, 38.686180 ], [ -87.493401, 38.695023 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627422", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.509365, 38.661788 ], [ -87.503529, 38.665675 ], [ -87.491856, 38.674387 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070259", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.535629, 38.619955 ], [ -87.533569, 38.625052 ], [ -87.533226, 38.627197 ], [ -87.533569, 38.628807 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624305", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.672377 ], [ -87.492542, 38.674655 ], [ -87.490654, 38.677604 ], [ -87.490311, 38.678944 ], [ -87.490311, 38.685510 ], [ -87.491512, 38.689262 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627423", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.491856, 38.674387 ], [ -87.489109, 38.676397 ], [ -87.488251, 38.677604 ], [ -87.487736, 38.678944 ], [ -87.487736, 38.681222 ], [ -87.489109, 38.684170 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677604 ], [ -87.484474, 38.678676 ], [ -87.486706, 38.680418 ], [ -87.489281, 38.684840 ], [ -87.490654, 38.687654 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070276", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.487907, 38.678542 ], [ -87.489109, 38.679882 ], [ -87.489796, 38.680954 ], [ -87.490311, 38.683768 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070320", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677604 ], [ -87.484818, 38.678676 ], [ -87.486191, 38.678810 ], [ -87.487907, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070272", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677604 ], [ -87.484818, 38.678676 ], [ -87.486191, 38.678810 ], [ -87.487907, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070318", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492542, 38.674655 ], [ -87.490482, 38.677335 ], [ -87.489109, 38.678140 ], [ -87.487907, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070277", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492542, 38.674655 ], [ -87.490482, 38.677335 ], [ -87.489109, 38.678140 ], [ -87.487907, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257616296", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.491856, 38.674387 ], [ -87.488937, 38.676129 ], [ -87.486706, 38.676799 ], [ -87.484131, 38.676799 ], [ -87.480354, 38.676129 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170071138", "FULLNAME": "E US Hwy 50-150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.471256, 38.674789 ], [ -87.475376, 38.675057 ], [ -87.480354, 38.676129 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564125, 38.490951 ], [ -87.561722, 38.507878 ], [ -87.561207, 38.509624 ], [ -87.560177, 38.511639 ], [ -87.558117, 38.513788 ], [ -87.556057, 38.515266 ], [ -87.542839, 38.521310 ], [ -87.541466, 38.522115 ], [ -87.539406, 38.524130 ], [ -87.538376, 38.526816 ], [ -87.539062, 38.609627 ], [ -87.538548, 38.612042 ], [ -87.533569, 38.624247 ], [ -87.529449, 38.645568 ], [ -87.528076, 38.648115 ], [ -87.525845, 38.650528 ], [ -87.516575, 38.657231 ], [ -87.503357, 38.666078 ], [ -87.493744, 38.673315 ], [ -87.492542, 38.674655 ], [ -87.490654, 38.677604 ], [ -87.490311, 38.678944 ], [ -87.490311, 38.684974 ], [ -87.490826, 38.687386 ], [ -87.493744, 38.694889 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564125, 38.490951 ], [ -87.561378, 38.508550 ], [ -87.559834, 38.511505 ], [ -87.558289, 38.513385 ], [ -87.555714, 38.515131 ], [ -87.541466, 38.521847 ], [ -87.539406, 38.523727 ], [ -87.538204, 38.525876 ], [ -87.538033, 38.529367 ], [ -87.538891, 38.600103 ], [ -87.538891, 38.609225 ], [ -87.538548, 38.610969 ], [ -87.533913, 38.622101 ], [ -87.533226, 38.624515 ], [ -87.529449, 38.644495 ], [ -87.528419, 38.647176 ], [ -87.527390, 38.648785 ], [ -87.526016, 38.649992 ], [ -87.516918, 38.656695 ], [ -87.509537, 38.661788 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613150", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.487907, 38.678542 ], [ -87.485332, 38.677201 ], [ -87.475376, 38.675057 ], [ -87.457008, 38.673985 ], [ -87.428169, 38.675593 ], [ -87.425251, 38.676129 ], [ -87.412720, 38.679748 ], [ -87.408943, 38.680016 ], [ -87.395897, 38.678274 ], [ -87.374783, 38.675861 ], [ -87.369289, 38.675191 ], [ -87.335300, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613492", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.487907, 38.678542 ], [ -87.485332, 38.677201 ], [ -87.475376, 38.675057 ], [ -87.457008, 38.673985 ], [ -87.428169, 38.675593 ], [ -87.425251, 38.676129 ], [ -87.412720, 38.679748 ], [ -87.408943, 38.680016 ], [ -87.395897, 38.678274 ], [ -87.374783, 38.675861 ], [ -87.369289, 38.675191 ], [ -87.335300, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610285", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335129, 38.668490 ], [ -87.371178, 38.675727 ], [ -87.395897, 38.678408 ], [ -87.409286, 38.680150 ], [ -87.412720, 38.679882 ], [ -87.425079, 38.676397 ], [ -87.427654, 38.675861 ], [ -87.455292, 38.674253 ], [ -87.460957, 38.674253 ], [ -87.473316, 38.675057 ], [ -87.476749, 38.675861 ], [ -87.481556, 38.677604 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677604 ], [ -87.476749, 38.675861 ], [ -87.473316, 38.675057 ], [ -87.460957, 38.674253 ], [ -87.455292, 38.674253 ], [ -87.427654, 38.675861 ], [ -87.425079, 38.676397 ], [ -87.412720, 38.679882 ], [ -87.409286, 38.680150 ], [ -87.395897, 38.678408 ], [ -87.371178, 38.675727 ], [ -87.335129, 38.668490 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257640853", "FULLNAME": "E US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.324314, 38.665139 ], [ -87.317448, 38.661788 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685675", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275047, 38.646506 ], [ -87.285862, 38.648383 ], [ -87.289467, 38.649456 ], [ -87.293415, 38.650796 ], [ -87.325516, 38.665810 ], [ -87.329292, 38.667284 ], [ -87.335129, 38.668490 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686635", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275047, 38.646506 ], [ -87.285862, 38.648383 ], [ -87.289467, 38.649456 ], [ -87.293415, 38.650796 ], [ -87.325516, 38.665810 ], [ -87.329292, 38.667284 ], [ -87.335129, 38.668490 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335300, 38.668356 ], [ -87.329121, 38.667016 ], [ -87.326374, 38.665944 ], [ -87.295303, 38.651332 ], [ -87.290668, 38.649456 ], [ -87.285862, 38.648115 ], [ -87.282257, 38.647445 ], [ -87.274876, 38.646238 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335300, 38.668356 ], [ -87.329121, 38.667016 ], [ -87.326374, 38.665944 ], [ -87.295303, 38.651332 ], [ -87.290668, 38.649456 ], [ -87.285862, 38.648115 ], [ -87.282257, 38.647445 ], [ -87.274876, 38.646238 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685645", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.281399, 38.648517 ], [ -87.283115, 38.649724 ], [ -87.285347, 38.650930 ], [ -87.292042, 38.652405 ], [ -87.294445, 38.653209 ], [ -87.296333, 38.654282 ], [ -87.298737, 38.656292 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685646", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.251873, 38.646640 ], [ -87.267151, 38.645702 ], [ -87.271786, 38.645970 ], [ -87.279682, 38.647310 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104472002543", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.251873, 38.646640 ], [ -87.266464, 38.645702 ], [ -87.271786, 38.645970 ], [ -87.275047, 38.646506 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471680885", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.251873, 38.646640 ], [ -87.266464, 38.645702 ], [ -87.271786, 38.645970 ], [ -87.275047, 38.646506 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.274876, 38.646238 ], [ -87.271786, 38.645836 ], [ -87.265434, 38.645568 ], [ -87.251701, 38.646372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.274876, 38.646238 ], [ -87.271786, 38.645836 ], [ -87.265434, 38.645568 ], [ -87.251701, 38.646372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170072467", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.251701, 38.646372 ], [ -87.265434, 38.645568 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 9, "x": 131, "y": 195 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.448597, 38.811891 ], [ -87.446537, 38.815770 ], [ -87.444649, 38.822591 ], [ -87.433319, 38.867781 ], [ -87.433491, 38.870186 ], [ -87.434521, 38.872726 ], [ -87.435894, 38.874597 ], [ -87.439499, 38.878339 ], [ -87.440872, 38.880209 ], [ -87.442245, 38.882882 ], [ -87.442932, 38.885688 ], [ -87.442932, 38.888093 ], [ -87.442417, 38.890766 ], [ -87.437954, 38.902255 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070260", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.449112, 38.832220 ], [ -87.446880, 38.847997 ], [ -87.444477, 38.852542 ], [ -87.444820, 38.853478 ], [ -87.447910, 38.855483 ], [ -87.448425, 38.856152 ], [ -87.448082, 38.863103 ], [ -87.447739, 38.864439 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.448597, 38.811891 ], [ -87.446537, 38.815770 ], [ -87.444649, 38.822591 ], [ -87.433319, 38.867781 ], [ -87.433491, 38.870186 ], [ -87.434521, 38.872726 ], [ -87.435894, 38.874597 ], [ -87.439499, 38.878339 ], [ -87.440872, 38.880209 ], [ -87.442245, 38.882882 ], [ -87.442932, 38.885688 ], [ -87.442932, 38.888093 ], [ -87.442417, 38.890766 ], [ -87.437954, 38.902255 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.448254, 38.811891 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.432976, 38.867914 ], [ -87.433147, 38.870186 ], [ -87.434006, 38.872592 ], [ -87.435379, 38.874329 ], [ -87.438984, 38.878205 ], [ -87.440701, 38.880343 ], [ -87.441902, 38.882882 ], [ -87.442589, 38.885822 ], [ -87.442589, 38.888761 ], [ -87.442074, 38.890766 ], [ -87.437611, 38.902255 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.448254, 38.811891 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.432976, 38.867914 ], [ -87.433147, 38.870186 ], [ -87.434006, 38.872592 ], [ -87.435379, 38.874329 ], [ -87.438984, 38.878205 ], [ -87.440701, 38.880343 ], [ -87.441902, 38.882882 ], [ -87.442589, 38.885822 ], [ -87.442589, 38.888761 ], [ -87.442074, 38.890766 ], [ -87.437611, 38.902255 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.448254, 38.811891 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.432976, 38.867914 ], [ -87.433147, 38.870186 ], [ -87.434006, 38.872592 ], [ -87.435379, 38.874329 ], [ -87.438984, 38.878205 ], [ -87.440701, 38.880343 ], [ -87.441902, 38.882882 ], [ -87.442589, 38.885822 ], [ -87.442589, 38.888761 ], [ -87.442074, 38.890766 ], [ -87.437611, 38.902255 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 10, "x": 262, "y": 393 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564125, 38.490883 ], [ -87.561636, 38.507811 ], [ -87.561035, 38.510027 ], [ -87.559834, 38.511975 ], [ -87.558117, 38.513721 ], [ -87.556057, 38.515199 ], [ -87.542839, 38.521243 ], [ -87.541809, 38.521847 ], [ -87.540092, 38.523257 ], [ -87.539062, 38.524533 ], [ -87.538548, 38.525809 ], [ -87.538204, 38.527622 ], [ -87.538462, 38.551186 ], [ -87.538633, 38.553535 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564039, 38.490883 ], [ -87.561293, 38.508483 ], [ -87.560778, 38.509826 ], [ -87.559834, 38.511505 ], [ -87.558203, 38.513385 ], [ -87.556486, 38.514661 ], [ -87.554340, 38.515736 ], [ -87.541981, 38.521511 ], [ -87.540522, 38.522518 ], [ -87.539749, 38.523324 ], [ -87.539062, 38.524130 ], [ -87.538204, 38.525876 ], [ -87.537947, 38.527756 ], [ -87.538118, 38.550246 ], [ -87.538290, 38.553535 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564125, 38.490883 ], [ -87.561636, 38.507811 ], [ -87.561035, 38.510027 ], [ -87.559834, 38.511975 ], [ -87.558117, 38.513721 ], [ -87.556057, 38.515199 ], [ -87.542839, 38.521243 ], [ -87.541809, 38.521847 ], [ -87.540092, 38.523257 ], [ -87.539062, 38.524533 ], [ -87.538548, 38.525809 ], [ -87.538204, 38.527622 ], [ -87.538462, 38.551186 ], [ -87.538633, 38.553535 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564039, 38.490883 ], [ -87.561293, 38.508483 ], [ -87.560778, 38.509826 ], [ -87.559834, 38.511505 ], [ -87.558203, 38.513385 ], [ -87.556486, 38.514661 ], [ -87.554340, 38.515736 ], [ -87.541981, 38.521511 ], [ -87.540522, 38.522518 ], [ -87.539749, 38.523324 ], [ -87.539062, 38.524130 ], [ -87.538204, 38.525876 ], [ -87.537947, 38.527756 ], [ -87.538118, 38.550246 ], [ -87.538290, 38.553535 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 10, "x": 262, "y": 392 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.538290, 38.542795 ], [ -87.538462, 38.551186 ], [ -87.538633, 38.554274 ], [ -87.538633, 38.575011 ], [ -87.538805, 38.591919 ], [ -87.539062, 38.599164 ], [ -87.539062, 38.609024 ], [ -87.538977, 38.610566 ], [ -87.538548, 38.612042 ], [ -87.534685, 38.620827 ], [ -87.533484, 38.624180 ], [ -87.533054, 38.625722 ], [ -87.532196, 38.630349 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.538033, 38.542795 ], [ -87.538118, 38.550246 ], [ -87.538376, 38.555146 ], [ -87.538376, 38.574005 ], [ -87.538633, 38.594602 ], [ -87.538805, 38.600036 ], [ -87.538805, 38.609158 ], [ -87.538548, 38.610969 ], [ -87.538290, 38.611975 ], [ -87.533913, 38.622101 ], [ -87.533398, 38.623576 ], [ -87.532883, 38.625521 ], [ -87.532196, 38.628740 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070259", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.535543, 38.619955 ], [ -87.534170, 38.623107 ], [ -87.533569, 38.625052 ], [ -87.533226, 38.627130 ], [ -87.533569, 38.628740 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.538290, 38.542795 ], [ -87.538462, 38.551186 ], [ -87.538633, 38.554274 ], [ -87.538633, 38.575011 ], [ -87.538805, 38.591919 ], [ -87.539062, 38.599164 ], [ -87.539062, 38.609024 ], [ -87.538977, 38.610566 ], [ -87.538548, 38.612042 ], [ -87.534685, 38.620827 ], [ -87.533484, 38.624180 ], [ -87.533054, 38.625722 ], [ -87.532196, 38.630349 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.538033, 38.542795 ], [ -87.538118, 38.550246 ], [ -87.538376, 38.555146 ], [ -87.538376, 38.574005 ], [ -87.538633, 38.594602 ], [ -87.538805, 38.600036 ], [ -87.538805, 38.609158 ], [ -87.538548, 38.610969 ], [ -87.538290, 38.611975 ], [ -87.533913, 38.622101 ], [ -87.533398, 38.623576 ], [ -87.532883, 38.625521 ], [ -87.532196, 38.628740 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 10, "x": 263, "y": 393 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.545929, 38.519832 ], [ -87.542496, 38.521444 ], [ -87.541466, 38.522115 ], [ -87.540092, 38.523257 ], [ -87.539062, 38.524533 ], [ -87.538548, 38.525809 ], [ -87.538204, 38.527622 ], [ -87.538376, 38.548165 ], [ -87.538633, 38.553535 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.545929, 38.519564 ], [ -87.542839, 38.521041 ], [ -87.541466, 38.521780 ], [ -87.539749, 38.523324 ], [ -87.539062, 38.524130 ], [ -87.538204, 38.525876 ], [ -87.537947, 38.527756 ], [ -87.538118, 38.548165 ], [ -87.538290, 38.553535 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.545929, 38.519832 ], [ -87.542496, 38.521444 ], [ -87.541466, 38.522115 ], [ -87.540092, 38.523257 ], [ -87.539062, 38.524533 ], [ -87.538548, 38.525809 ], [ -87.538204, 38.527622 ], [ -87.538376, 38.548165 ], [ -87.538633, 38.553535 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.545929, 38.519564 ], [ -87.542839, 38.521041 ], [ -87.541466, 38.521780 ], [ -87.539749, 38.523324 ], [ -87.539062, 38.524130 ], [ -87.538204, 38.525876 ], [ -87.537947, 38.527756 ], [ -87.538118, 38.548165 ], [ -87.538290, 38.553535 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 10, "x": 263, "y": 392 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473059, 38.759505 ], [ -87.469282, 38.768941 ], [ -87.465935, 38.778309 ], [ -87.465334, 38.780718 ], [ -87.464046, 38.789014 ], [ -87.463617, 38.790754 ], [ -87.463017, 38.792226 ], [ -87.461386, 38.794901 ], [ -87.449026, 38.811356 ], [ -87.447395, 38.813897 ], [ -87.446108, 38.816907 ], [ -87.444649, 38.822591 ], [ -87.443275, 38.827940 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.538290, 38.542795 ], [ -87.538376, 38.548165 ], [ -87.538633, 38.554274 ], [ -87.538633, 38.575011 ], [ -87.538805, 38.591919 ], [ -87.539062, 38.599164 ], [ -87.539062, 38.609024 ], [ -87.538977, 38.610566 ], [ -87.538548, 38.612042 ], [ -87.534685, 38.620827 ], [ -87.533484, 38.624247 ], [ -87.532711, 38.627399 ], [ -87.529707, 38.644629 ], [ -87.529106, 38.646506 ], [ -87.527733, 38.648584 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.538033, 38.542795 ], [ -87.538118, 38.548165 ], [ -87.538376, 38.555146 ], [ -87.538376, 38.574005 ], [ -87.538633, 38.594602 ], [ -87.538805, 38.600036 ], [ -87.538805, 38.609963 ], [ -87.538290, 38.611975 ], [ -87.533913, 38.622101 ], [ -87.533140, 38.624448 ], [ -87.532625, 38.626661 ], [ -87.529449, 38.644495 ], [ -87.528934, 38.646171 ], [ -87.527561, 38.648316 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694889 ], [ -87.488251, 38.697568 ], [ -87.486877, 38.698305 ], [ -87.486019, 38.698975 ], [ -87.485075, 38.699980 ], [ -87.484131, 38.701588 ], [ -87.483873, 38.702458 ], [ -87.483702, 38.703798 ], [ -87.484303, 38.722684 ], [ -87.482758, 38.734000 ], [ -87.482071, 38.736946 ], [ -87.469282, 38.768941 ], [ -87.466364, 38.776904 ], [ -87.465334, 38.780718 ], [ -87.463875, 38.789683 ], [ -87.463017, 38.792226 ], [ -87.461386, 38.794901 ], [ -87.449026, 38.811356 ], [ -87.447395, 38.813897 ], [ -87.446108, 38.816907 ], [ -87.444649, 38.822591 ], [ -87.443275, 38.827940 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493315, 38.694956 ], [ -87.487564, 38.697702 ], [ -87.486706, 38.698305 ], [ -87.485590, 38.699243 ], [ -87.484903, 38.699980 ], [ -87.484303, 38.700784 ], [ -87.483788, 38.701989 ], [ -87.483530, 38.702793 ], [ -87.483444, 38.704602 ], [ -87.484131, 38.722349 ], [ -87.482586, 38.733598 ], [ -87.481728, 38.736946 ], [ -87.468939, 38.769008 ], [ -87.466192, 38.776570 ], [ -87.464991, 38.780651 ], [ -87.463617, 38.789349 ], [ -87.462931, 38.791557 ], [ -87.462072, 38.793229 ], [ -87.461300, 38.794567 ], [ -87.448854, 38.811088 ], [ -87.447653, 38.812894 ], [ -87.446709, 38.814566 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.442932, 38.827940 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493315, 38.694956 ], [ -87.487564, 38.697702 ], [ -87.486706, 38.698305 ], [ -87.485590, 38.699243 ], [ -87.484903, 38.699980 ], [ -87.484303, 38.700784 ], [ -87.483788, 38.701989 ], [ -87.483530, 38.702793 ], [ -87.483444, 38.704602 ], [ -87.484131, 38.722349 ], [ -87.482586, 38.733598 ], [ -87.481728, 38.736946 ], [ -87.468939, 38.769008 ], [ -87.466192, 38.776570 ], [ -87.464991, 38.780651 ], [ -87.463617, 38.789349 ], [ -87.462931, 38.791557 ], [ -87.462072, 38.793229 ], [ -87.461300, 38.794567 ], [ -87.448854, 38.811088 ], [ -87.447653, 38.812894 ], [ -87.446709, 38.814566 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.442932, 38.827940 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493315, 38.694956 ], [ -87.487564, 38.697702 ], [ -87.486706, 38.698305 ], [ -87.485590, 38.699243 ], [ -87.484903, 38.699980 ], [ -87.484303, 38.700784 ], [ -87.483788, 38.701989 ], [ -87.483530, 38.702793 ], [ -87.483444, 38.704602 ], [ -87.484131, 38.722349 ], [ -87.482586, 38.733598 ], [ -87.481728, 38.736946 ], [ -87.468939, 38.769008 ], [ -87.466192, 38.776570 ], [ -87.464991, 38.780651 ], [ -87.463617, 38.789349 ], [ -87.462931, 38.791557 ], [ -87.462072, 38.793229 ], [ -87.461300, 38.794567 ], [ -87.448854, 38.811088 ], [ -87.447653, 38.812894 ], [ -87.446709, 38.814566 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.442932, 38.827940 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624700", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519236, 38.707415 ], [ -87.510910, 38.707884 ], [ -87.509108, 38.707884 ], [ -87.505760, 38.707482 ], [ -87.503872, 38.706946 ], [ -87.502327, 38.706410 ], [ -87.500696, 38.705539 ], [ -87.498808, 38.704267 ], [ -87.497435, 38.703061 ], [ -87.496662, 38.702056 ], [ -87.495203, 38.699712 ], [ -87.493315, 38.694956 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469553886", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519236, 38.707214 ], [ -87.510996, 38.707616 ], [ -87.509108, 38.707683 ], [ -87.506704, 38.707415 ], [ -87.505417, 38.707147 ], [ -87.503099, 38.706410 ], [ -87.502155, 38.706008 ], [ -87.500782, 38.705339 ], [ -87.499237, 38.704200 ], [ -87.497778, 38.702927 ], [ -87.496576, 38.701521 ], [ -87.495546, 38.699712 ], [ -87.493744, 38.694889 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485838817", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.497005, 38.693281 ], [ -87.496576, 38.693415 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694889 ], [ -87.497005, 38.693281 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.474861, 38.755020 ], [ -87.481813, 38.737683 ], [ -87.482672, 38.734603 ], [ -87.484303, 38.722684 ], [ -87.483702, 38.703798 ], [ -87.483959, 38.701922 ], [ -87.484474, 38.700918 ], [ -87.485075, 38.699980 ], [ -87.486019, 38.698975 ], [ -87.486877, 38.698305 ], [ -87.488251, 38.697568 ], [ -87.493744, 38.694889 ], [ -87.493658, 38.694822 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841663", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493658, 38.694822 ], [ -87.493744, 38.694889 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841555", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493658, 38.694822 ], [ -87.493315, 38.694956 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841666", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493658, 38.694822 ], [ -87.493315, 38.694956 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841667", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.496576, 38.693415 ], [ -87.493658, 38.694822 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841556", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.496576, 38.693415 ], [ -87.493658, 38.694822 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257622329", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492800, 38.692678 ], [ -87.493744, 38.694889 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841665", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.490568, 38.687654 ], [ -87.493315, 38.694956 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257599171", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.490568, 38.687654 ], [ -87.493315, 38.694956 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841553", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493658, 38.694822 ], [ -87.490568, 38.686850 ], [ -87.490311, 38.685443 ], [ -87.490139, 38.682428 ], [ -87.489882, 38.681356 ], [ -87.489109, 38.679882 ], [ -87.487822, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677537 ], [ -87.484388, 38.678609 ], [ -87.485247, 38.679145 ], [ -87.486362, 38.680016 ], [ -87.487135, 38.680954 ], [ -87.489023, 38.684170 ], [ -87.489967, 38.686180 ], [ -87.493315, 38.694956 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627422", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.509365, 38.661788 ], [ -87.503529, 38.665675 ], [ -87.491856, 38.674320 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070259", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.535543, 38.619955 ], [ -87.534170, 38.623107 ], [ -87.533569, 38.625052 ], [ -87.533226, 38.627130 ], [ -87.533569, 38.628740 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624305", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.672310 ], [ -87.493744, 38.673315 ], [ -87.492542, 38.674588 ], [ -87.490654, 38.677604 ], [ -87.490225, 38.678944 ], [ -87.490311, 38.685443 ], [ -87.490740, 38.687319 ], [ -87.491426, 38.689195 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627423", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.491856, 38.674320 ], [ -87.490225, 38.675392 ], [ -87.489109, 38.676330 ], [ -87.488251, 38.677537 ], [ -87.487736, 38.678877 ], [ -87.487564, 38.679681 ], [ -87.487650, 38.681155 ], [ -87.487993, 38.682227 ], [ -87.489023, 38.684170 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677537 ], [ -87.484388, 38.678609 ], [ -87.485247, 38.679145 ], [ -87.486706, 38.680351 ], [ -87.487650, 38.681758 ], [ -87.489281, 38.684773 ], [ -87.490568, 38.687654 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070276", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.487822, 38.678542 ], [ -87.489109, 38.679882 ], [ -87.489710, 38.680954 ], [ -87.490139, 38.682428 ], [ -87.490225, 38.683701 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070320", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677537 ], [ -87.484818, 38.678609 ], [ -87.486105, 38.678743 ], [ -87.487822, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070272", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677537 ], [ -87.484818, 38.678609 ], [ -87.486105, 38.678743 ], [ -87.487822, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070318", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492542, 38.674655 ], [ -87.490997, 38.676732 ], [ -87.490396, 38.677335 ], [ -87.489109, 38.678073 ], [ -87.487822, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070277", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492542, 38.674655 ], [ -87.490997, 38.676732 ], [ -87.490396, 38.677335 ], [ -87.489109, 38.678073 ], [ -87.487822, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257616296", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.491856, 38.674320 ], [ -87.488937, 38.676062 ], [ -87.487650, 38.676464 ], [ -87.486620, 38.676732 ], [ -87.485676, 38.676799 ], [ -87.484131, 38.676799 ], [ -87.480354, 38.676129 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170071138", "FULLNAME": "E US Hwy 50-150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.471170, 38.674722 ], [ -87.475376, 38.675057 ], [ -87.480354, 38.676129 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.538290, 38.542795 ], [ -87.538376, 38.548165 ], [ -87.538633, 38.554274 ], [ -87.538633, 38.575011 ], [ -87.538805, 38.591919 ], [ -87.539062, 38.599164 ], [ -87.539062, 38.609024 ], [ -87.538977, 38.610566 ], [ -87.538548, 38.612042 ], [ -87.534685, 38.620827 ], [ -87.533484, 38.624247 ], [ -87.532711, 38.627399 ], [ -87.529707, 38.644629 ], [ -87.529106, 38.646506 ], [ -87.528076, 38.648115 ], [ -87.527218, 38.649120 ], [ -87.525759, 38.650461 ], [ -87.516575, 38.657164 ], [ -87.503357, 38.666078 ], [ -87.493744, 38.673315 ], [ -87.492542, 38.674588 ], [ -87.490654, 38.677604 ], [ -87.490225, 38.679413 ], [ -87.490311, 38.684907 ], [ -87.490482, 38.686515 ], [ -87.491426, 38.689195 ], [ -87.493658, 38.694822 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.538033, 38.542795 ], [ -87.538118, 38.548165 ], [ -87.538376, 38.555146 ], [ -87.538376, 38.574005 ], [ -87.538548, 38.591986 ], [ -87.538805, 38.600036 ], [ -87.538805, 38.609158 ], [ -87.538548, 38.610969 ], [ -87.538290, 38.611975 ], [ -87.533913, 38.622101 ], [ -87.533140, 38.624448 ], [ -87.532625, 38.626661 ], [ -87.529449, 38.644495 ], [ -87.529278, 38.645433 ], [ -87.528419, 38.647109 ], [ -87.527304, 38.648718 ], [ -87.526016, 38.649925 ], [ -87.516832, 38.656695 ], [ -87.509451, 38.661721 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613150", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.487822, 38.678542 ], [ -87.486534, 38.677738 ], [ -87.485247, 38.677201 ], [ -87.475376, 38.675057 ], [ -87.473917, 38.674856 ], [ -87.460957, 38.674052 ], [ -87.456923, 38.673918 ], [ -87.428083, 38.675593 ], [ -87.425251, 38.676062 ], [ -87.412634, 38.679681 ], [ -87.410660, 38.679949 ], [ -87.408943, 38.679949 ], [ -87.395897, 38.678207 ], [ -87.374783, 38.675861 ], [ -87.369289, 38.675124 ], [ -87.356844, 38.672645 ], [ -87.335300, 38.668289 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613492", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.487822, 38.678542 ], [ -87.486534, 38.677738 ], [ -87.485247, 38.677201 ], [ -87.475376, 38.675057 ], [ -87.473917, 38.674856 ], [ -87.460957, 38.674052 ], [ -87.456923, 38.673918 ], [ -87.428083, 38.675593 ], [ -87.425251, 38.676062 ], [ -87.412634, 38.679681 ], [ -87.410660, 38.679949 ], [ -87.408943, 38.679949 ], [ -87.395897, 38.678207 ], [ -87.374783, 38.675861 ], [ -87.369289, 38.675124 ], [ -87.356844, 38.672645 ], [ -87.335300, 38.668289 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610285", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335043, 38.668490 ], [ -87.371178, 38.675660 ], [ -87.374268, 38.676129 ], [ -87.395811, 38.678408 ], [ -87.402849, 38.679413 ], [ -87.409201, 38.680150 ], [ -87.410831, 38.680150 ], [ -87.412720, 38.679882 ], [ -87.425079, 38.676330 ], [ -87.427654, 38.675861 ], [ -87.455292, 38.674186 ], [ -87.458725, 38.674119 ], [ -87.460957, 38.674253 ], [ -87.473230, 38.675057 ], [ -87.475376, 38.675459 ], [ -87.476664, 38.675794 ], [ -87.481556, 38.677537 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677537 ], [ -87.476664, 38.675794 ], [ -87.475376, 38.675459 ], [ -87.473230, 38.675057 ], [ -87.460957, 38.674253 ], [ -87.458725, 38.674119 ], [ -87.455292, 38.674186 ], [ -87.427654, 38.675861 ], [ -87.425079, 38.676330 ], [ -87.412720, 38.679882 ], [ -87.410831, 38.680150 ], [ -87.409201, 38.680150 ], [ -87.402849, 38.679413 ], [ -87.395811, 38.678408 ], [ -87.374268, 38.676129 ], [ -87.371178, 38.675660 ], [ -87.335043, 38.668490 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257640853", "FULLNAME": "E US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.324314, 38.665072 ], [ -87.317362, 38.661721 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685675", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.274961, 38.646439 ], [ -87.283630, 38.647914 ], [ -87.285862, 38.648383 ], [ -87.289467, 38.649388 ], [ -87.293415, 38.650729 ], [ -87.297535, 38.652673 ], [ -87.325430, 38.665810 ], [ -87.329292, 38.667217 ], [ -87.335043, 38.668490 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686635", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.274961, 38.646439 ], [ -87.283630, 38.647914 ], [ -87.285862, 38.648383 ], [ -87.289467, 38.649388 ], [ -87.293415, 38.650729 ], [ -87.297535, 38.652673 ], [ -87.325430, 38.665810 ], [ -87.329292, 38.667217 ], [ -87.335043, 38.668490 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335300, 38.668289 ], [ -87.331781, 38.667619 ], [ -87.329121, 38.666949 ], [ -87.326374, 38.665944 ], [ -87.316246, 38.661252 ], [ -87.295218, 38.651265 ], [ -87.290583, 38.649456 ], [ -87.285862, 38.648115 ], [ -87.282257, 38.647377 ], [ -87.274876, 38.646238 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335300, 38.668289 ], [ -87.331781, 38.667619 ], [ -87.329121, 38.666949 ], [ -87.326374, 38.665944 ], [ -87.316246, 38.661252 ], [ -87.295218, 38.651265 ], [ -87.290583, 38.649456 ], [ -87.285862, 38.648115 ], [ -87.282257, 38.647377 ], [ -87.274876, 38.646238 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685645", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.281313, 38.648450 ], [ -87.283115, 38.649724 ], [ -87.283974, 38.650260 ], [ -87.285347, 38.650863 ], [ -87.286978, 38.651332 ], [ -87.292042, 38.652338 ], [ -87.294359, 38.653142 ], [ -87.296247, 38.654282 ], [ -87.298737, 38.656225 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685646", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.251787, 38.646640 ], [ -87.265005, 38.645769 ], [ -87.267151, 38.645702 ], [ -87.271786, 38.645970 ], [ -87.279596, 38.647243 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104472002543", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.251787, 38.646640 ], [ -87.266378, 38.645702 ], [ -87.271786, 38.645970 ], [ -87.274961, 38.646439 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471680885", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.251787, 38.646640 ], [ -87.266378, 38.645702 ], [ -87.271786, 38.645970 ], [ -87.274961, 38.646439 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.274876, 38.646238 ], [ -87.271700, 38.645769 ], [ -87.265434, 38.645501 ], [ -87.251616, 38.646372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.274876, 38.646238 ], [ -87.271700, 38.645769 ], [ -87.265434, 38.645501 ], [ -87.251616, 38.646372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170072467", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.251616, 38.646372 ], [ -87.265434, 38.645501 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 10, "x": 263, "y": 391 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.446022, 38.817241 ], [ -87.444649, 38.822591 ], [ -87.433662, 38.865976 ], [ -87.433319, 38.867714 ], [ -87.433319, 38.868984 ], [ -87.433491, 38.870186 ], [ -87.433920, 38.871590 ], [ -87.434521, 38.872726 ], [ -87.435808, 38.874530 ], [ -87.439413, 38.878272 ], [ -87.440786, 38.880143 ], [ -87.442160, 38.882815 ], [ -87.442846, 38.885621 ], [ -87.442846, 38.888093 ], [ -87.442331, 38.890766 ], [ -87.437868, 38.902255 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070260", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.449112, 38.832153 ], [ -87.449112, 38.833022 ], [ -87.446795, 38.847930 ], [ -87.446280, 38.848933 ], [ -87.444477, 38.852008 ], [ -87.444391, 38.852542 ], [ -87.444477, 38.852943 ], [ -87.444820, 38.853478 ], [ -87.447824, 38.855417 ], [ -87.448339, 38.856152 ], [ -87.447996, 38.863036 ], [ -87.447653, 38.864372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.446022, 38.817241 ], [ -87.444649, 38.822591 ], [ -87.433662, 38.865976 ], [ -87.433319, 38.867714 ], [ -87.433319, 38.868984 ], [ -87.433491, 38.870186 ], [ -87.433920, 38.871590 ], [ -87.434521, 38.872726 ], [ -87.435808, 38.874530 ], [ -87.439413, 38.878272 ], [ -87.440786, 38.880143 ], [ -87.442160, 38.882815 ], [ -87.442846, 38.885621 ], [ -87.442846, 38.888093 ], [ -87.442331, 38.890766 ], [ -87.437868, 38.902255 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.445679, 38.817241 ], [ -87.444305, 38.822591 ], [ -87.433405, 38.865642 ], [ -87.432976, 38.867914 ], [ -87.433147, 38.870186 ], [ -87.433491, 38.871256 ], [ -87.434006, 38.872525 ], [ -87.435293, 38.874329 ], [ -87.438984, 38.878138 ], [ -87.440615, 38.880276 ], [ -87.441816, 38.882815 ], [ -87.442245, 38.884152 ], [ -87.442503, 38.885822 ], [ -87.442503, 38.888695 ], [ -87.442074, 38.890699 ], [ -87.437525, 38.902255 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.445679, 38.817241 ], [ -87.444305, 38.822591 ], [ -87.433405, 38.865642 ], [ -87.432976, 38.867914 ], [ -87.433147, 38.870186 ], [ -87.433491, 38.871256 ], [ -87.434006, 38.872525 ], [ -87.435293, 38.874329 ], [ -87.438984, 38.878138 ], [ -87.440615, 38.880276 ], [ -87.441816, 38.882815 ], [ -87.442245, 38.884152 ], [ -87.442503, 38.885822 ], [ -87.442503, 38.888695 ], [ -87.442074, 38.890699 ], [ -87.437525, 38.902255 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.445679, 38.817241 ], [ -87.444305, 38.822591 ], [ -87.433405, 38.865642 ], [ -87.432976, 38.867914 ], [ -87.433147, 38.870186 ], [ -87.433491, 38.871256 ], [ -87.434006, 38.872525 ], [ -87.435293, 38.874329 ], [ -87.438984, 38.878138 ], [ -87.440615, 38.880276 ], [ -87.441816, 38.882815 ], [ -87.442245, 38.884152 ], [ -87.442503, 38.885822 ], [ -87.442503, 38.888695 ], [ -87.442074, 38.890699 ], [ -87.437525, 38.902255 ] ] } } +] } +] } +] } diff --git a/tests/knox/out/-zg_-P.json b/tests/knox/out/-zg_-P.json new file mode 100644 index 0000000..3eb9784 --- /dev/null +++ b/tests/knox/out/-zg_-P.json @@ -0,0 +1,1144 @@ +{ "type": "FeatureCollection", "properties": { +"bounds": "-87.564090,38.490831,-87.251603,38.902199", +"center": "-87.363281,38.685378,10", +"description": "tests/knox/out/-zg_-P.json.check.mbtiles", +"format": "pbf", +"json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 10, \"fields\": {\"FULLNAME\": \"String\", \"LINEARID\": \"String\", \"MTFCC\": \"String\", \"RTTYP\": \"String\"} } ] }", +"maxzoom": "10", +"minzoom": "0", +"name": "tests/knox/out/-zg_-P.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": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.822591 ], [ -87.451172, 38.959409 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.626953, 38.548165 ], [ -87.539062, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.626953, 38.548165 ], [ -87.539062, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.754083 ], [ -87.451172, 38.959409 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.754083 ], [ -87.451172, 38.959409 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.754083 ], [ -87.451172, 38.959409 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.754083 ], [ -87.451172, 38.959409 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.822591 ], [ -87.539062, 38.754083 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841553", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.754083 ], [ -87.539062, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.685510 ], [ -87.539062, 38.754083 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624305", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.685510 ], [ -87.539062, 38.754083 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.685510 ], [ -87.539062, 38.754083 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.626953, 38.548165 ], [ -87.539062, 38.754083 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.626953, 38.548165 ], [ -87.539062, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613150", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.685510 ], [ -87.363281, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613492", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.685510 ], [ -87.363281, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610285", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.363281, 38.685510 ], [ -87.539062, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.685510 ], [ -87.363281, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685675", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.685510 ], [ -87.363281, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686635", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.685510 ], [ -87.363281, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.363281, 38.685510 ], [ -87.275391, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.363281, 38.685510 ], [ -87.275391, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685646", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.685510 ], [ -87.363281, 38.685510 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.788345 ], [ -87.451172, 38.925229 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070260", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.451172, 38.856820 ], [ -87.451172, 38.891033 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.583008, 38.513788 ], [ -87.539062, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.583008, 38.513788 ], [ -87.539062, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.719805 ], [ -87.451172, 38.925229 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.719805 ], [ -87.451172, 38.925229 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.719805 ], [ -87.451172, 38.925229 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.719805 ], [ -87.451172, 38.925229 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624700", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.719805 ], [ -87.495117, 38.719805 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469553886", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.719805 ], [ -87.495117, 38.719805 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.719805 ], [ -87.539062, 38.719805 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.788345 ], [ -87.495117, 38.719805 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841667", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.719805 ], [ -87.495117, 38.719805 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841556", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.719805 ], [ -87.495117, 38.719805 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841553", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.719805 ], [ -87.495117, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.495117, 38.719805 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627422", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.685510 ], [ -87.495117, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624305", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.495117, 38.719805 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.495117, 38.719805 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.583008, 38.513788 ], [ -87.495117, 38.719805 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.583008, 38.513788 ], [ -87.539062, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613150", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.363281, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613492", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.363281, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610285", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.363281, 38.685510 ], [ -87.495117, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.363281, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257640853", "FULLNAME": "E US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.363281, 38.685510 ], [ -87.319336, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685675", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.363281, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686635", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.363281, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.363281, 38.685510 ], [ -87.275391, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.363281, 38.685510 ], [ -87.275391, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685645", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.319336, 38.651198 ], [ -87.319336, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685646", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.319336, 38.651198 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.771216 ], [ -87.451172, 38.908133 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070260", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.451172, 38.839708 ], [ -87.451172, 38.873929 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.583008, 38.496594 ], [ -87.539062, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.583008, 38.496594 ], [ -87.539062, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.702659 ], [ -87.451172, 38.908133 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.702659 ], [ -87.451172, 38.908133 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.702659 ], [ -87.451172, 38.908133 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.702659 ], [ -87.451172, 38.908133 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624700", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.719805 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469553886", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.719805 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.702659 ], [ -87.517090, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.771216 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841667", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.517090, 38.702659 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841556", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.517090, 38.702659 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841553", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.702659 ], [ -87.495117, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627422", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.517090, 38.668356 ], [ -87.495117, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624305", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170071138", "FULLNAME": "E US Hwy 50-150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.685510 ], [ -87.495117, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.583008, 38.496594 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.583008, 38.496594 ], [ -87.517090, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613150", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.341309, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613492", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.341309, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610285", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.341309, 38.685510 ], [ -87.495117, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.341309, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257640853", "FULLNAME": "E US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.341309, 38.668356 ], [ -87.319336, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685675", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.341309, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686635", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.341309, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.341309, 38.668356 ], [ -87.275391, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.341309, 38.668356 ], [ -87.275391, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685645", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.297363, 38.651198 ], [ -87.319336, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685646", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.651198 ], [ -87.297363, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104472002543", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.651198 ], [ -87.275391, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471680885", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.651198 ], [ -87.275391, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.253418, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.253418, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170072467", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.651198 ], [ -87.275391, 38.651198 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.762650 ], [ -87.440186, 38.873929 ], [ -87.440186, 38.908133 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070260", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.451172, 38.839708 ], [ -87.451172, 38.865375 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.572021, 38.496594 ], [ -87.539062, 38.530979 ], [ -87.528076, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.572021, 38.496594 ], [ -87.539062, 38.530979 ], [ -87.528076, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.702659 ], [ -87.451172, 38.831150 ], [ -87.440186, 38.908133 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.702659 ], [ -87.451172, 38.831150 ], [ -87.440186, 38.908133 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.702659 ], [ -87.451172, 38.831150 ], [ -87.440186, 38.908133 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.702659 ], [ -87.451172, 38.831150 ], [ -87.440186, 38.908133 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624700", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.528076, 38.711233 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469553886", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.528076, 38.711233 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.702659 ], [ -87.506104, 38.694085 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.762650 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841667", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.506104, 38.694085 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841556", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.506104, 38.694085 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257622329", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.694085 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841665", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.694085 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257599171", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.694085 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841553", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.702659 ], [ -87.495117, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.685510 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627422", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.517090, 38.668356 ], [ -87.495117, 38.676933 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070259", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.625454 ], [ -87.539062, 38.634036 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624305", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.676933 ], [ -87.495117, 38.694085 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627423", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.676933 ], [ -87.495117, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.685510 ], [ -87.495117, 38.694085 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070320", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.685510 ], [ -87.495117, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070272", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.685510 ], [ -87.495117, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070318", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.676933 ], [ -87.495117, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070277", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.676933 ], [ -87.495117, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257616296", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.676933 ], [ -87.484131, 38.676933 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170071138", "FULLNAME": "E US Hwy 50-150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.676933 ], [ -87.484131, 38.676933 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.572021, 38.496594 ], [ -87.539062, 38.530979 ], [ -87.539062, 38.651198 ], [ -87.495117, 38.685510 ], [ -87.495117, 38.702659 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.572021, 38.496594 ], [ -87.539062, 38.530979 ], [ -87.539062, 38.616870 ], [ -87.517090, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613150", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.341309, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613492", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.341309, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610285", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.341309, 38.676933 ], [ -87.484131, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.685510 ], [ -87.341309, 38.676933 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257640853", "FULLNAME": "E US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.330322, 38.668356 ], [ -87.319336, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685675", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.341309, 38.676933 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686635", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.341309, 38.676933 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.341309, 38.668356 ], [ -87.275391, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.341309, 38.668356 ], [ -87.275391, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685645", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.286377, 38.651198 ], [ -87.308350, 38.659778 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685646", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.651198 ], [ -87.286377, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104472002543", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.651198 ], [ -87.275391, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471680885", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.651198 ], [ -87.275391, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.253418, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.253418, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170072467", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.651198 ], [ -87.275391, 38.651198 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.762650 ], [ -87.434692, 38.869652 ], [ -87.445679, 38.891033 ], [ -87.440186, 38.903858 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070260", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.451172, 38.835429 ], [ -87.451172, 38.865375 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.566528, 38.492294 ], [ -87.561035, 38.513788 ], [ -87.539062, 38.530979 ], [ -87.539062, 38.612578 ], [ -87.528076, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.566528, 38.492294 ], [ -87.561035, 38.513788 ], [ -87.539062, 38.530979 ], [ -87.539062, 38.612578 ], [ -87.528076, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.698372 ], [ -87.484131, 38.702659 ], [ -87.484131, 38.741231 ], [ -87.445679, 38.822591 ], [ -87.434692, 38.869652 ], [ -87.445679, 38.891033 ], [ -87.440186, 38.903858 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.698372 ], [ -87.484131, 38.706946 ], [ -87.484131, 38.741231 ], [ -87.467651, 38.796908 ], [ -87.445679, 38.818311 ], [ -87.434692, 38.869652 ], [ -87.445679, 38.891033 ], [ -87.440186, 38.903858 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.698372 ], [ -87.484131, 38.706946 ], [ -87.484131, 38.741231 ], [ -87.467651, 38.796908 ], [ -87.445679, 38.818311 ], [ -87.434692, 38.869652 ], [ -87.445679, 38.891033 ], [ -87.440186, 38.903858 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.698372 ], [ -87.484131, 38.706946 ], [ -87.484131, 38.741231 ], [ -87.467651, 38.796908 ], [ -87.445679, 38.818311 ], [ -87.434692, 38.869652 ], [ -87.445679, 38.891033 ], [ -87.440186, 38.903858 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624700", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.522583, 38.711233 ], [ -87.506104, 38.706946 ], [ -87.495117, 38.698372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469553886", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.522583, 38.711233 ], [ -87.506104, 38.706946 ], [ -87.495117, 38.698372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.698372 ], [ -87.500610, 38.694085 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.478638, 38.758367 ], [ -87.495117, 38.698372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841667", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.500610, 38.694085 ], [ -87.495117, 38.698372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841556", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.500610, 38.694085 ], [ -87.495117, 38.698372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257622329", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.694085 ], [ -87.495117, 38.698372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841665", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.689798 ], [ -87.495117, 38.698372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257599171", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.689798 ], [ -87.495117, 38.698372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841553", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.698372 ], [ -87.489624, 38.681222 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.681222 ], [ -87.495117, 38.698372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627422", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.511597, 38.664067 ], [ -87.495117, 38.676933 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070259", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.621162 ], [ -87.533569, 38.629745 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624305", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.672645 ], [ -87.495117, 38.689798 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627423", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.676933 ], [ -87.489624, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.681222 ], [ -87.495117, 38.689798 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070276", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.489624, 38.681222 ], [ -87.495117, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070320", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.681222 ], [ -87.489624, 38.681222 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070272", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.681222 ], [ -87.489624, 38.681222 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070318", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.676933 ], [ -87.489624, 38.681222 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070277", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.676933 ], [ -87.489624, 38.681222 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257616296", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.676933 ], [ -87.484131, 38.676933 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170071138", "FULLNAME": "E US Hwy 50-150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.676933 ], [ -87.484131, 38.676933 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.566528, 38.492294 ], [ -87.561035, 38.513788 ], [ -87.539062, 38.530979 ], [ -87.539062, 38.612578 ], [ -87.533569, 38.651198 ], [ -87.495117, 38.681222 ], [ -87.495117, 38.698372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.566528, 38.492294 ], [ -87.561035, 38.513788 ], [ -87.539062, 38.530979 ], [ -87.539062, 38.612578 ], [ -87.533569, 38.651198 ], [ -87.511597, 38.664067 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613150", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.489624, 38.681222 ], [ -87.456665, 38.676933 ], [ -87.407227, 38.681222 ], [ -87.335815, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613492", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.489624, 38.681222 ], [ -87.456665, 38.676933 ], [ -87.407227, 38.681222 ], [ -87.335815, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610285", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.672645 ], [ -87.412720, 38.681222 ], [ -87.484131, 38.681222 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.681222 ], [ -87.407227, 38.681222 ], [ -87.335815, 38.672645 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257640853", "FULLNAME": "E US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.324829, 38.668356 ], [ -87.319336, 38.664067 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685675", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.335815, 38.672645 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686635", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.335815, 38.672645 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.668356 ], [ -87.275391, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.668356 ], [ -87.275391, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685645", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.286377, 38.651198 ], [ -87.302856, 38.659778 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685646", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.646908 ], [ -87.280884, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104472002543", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.646908 ], [ -87.275391, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471680885", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.646908 ], [ -87.275391, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.253418, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.253418, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170072467", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.646908 ], [ -87.269897, 38.646908 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.760509 ], [ -87.464905, 38.794768 ], [ -87.448425, 38.818311 ], [ -87.434692, 38.867513 ], [ -87.442932, 38.886757 ], [ -87.440186, 38.903858 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070260", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.451172, 38.833289 ], [ -87.445679, 38.854681 ], [ -87.448425, 38.865375 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.566528, 38.492294 ], [ -87.561035, 38.513788 ], [ -87.539062, 38.528830 ], [ -87.539062, 38.610432 ], [ -87.528076, 38.649053 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.566528, 38.492294 ], [ -87.561035, 38.513788 ], [ -87.541809, 38.522384 ], [ -87.539062, 38.528830 ], [ -87.539062, 38.610432 ], [ -87.528076, 38.649053 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.696229 ], [ -87.484131, 38.702659 ], [ -87.484131, 38.736946 ], [ -87.464905, 38.792627 ], [ -87.445679, 38.820451 ], [ -87.434692, 38.869652 ], [ -87.442932, 38.886757 ], [ -87.440186, 38.903858 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.696229 ], [ -87.484131, 38.704803 ], [ -87.484131, 38.736946 ], [ -87.464905, 38.792627 ], [ -87.445679, 38.818311 ], [ -87.434692, 38.869652 ], [ -87.442932, 38.886757 ], [ -87.440186, 38.903858 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.696229 ], [ -87.484131, 38.704803 ], [ -87.484131, 38.736946 ], [ -87.464905, 38.792627 ], [ -87.445679, 38.818311 ], [ -87.434692, 38.869652 ], [ -87.442932, 38.886757 ], [ -87.440186, 38.903858 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.696229 ], [ -87.484131, 38.704803 ], [ -87.484131, 38.736946 ], [ -87.464905, 38.792627 ], [ -87.445679, 38.818311 ], [ -87.434692, 38.869652 ], [ -87.442932, 38.886757 ], [ -87.440186, 38.903858 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624700", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519836, 38.709089 ], [ -87.503357, 38.706946 ], [ -87.495117, 38.696229 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469553886", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519836, 38.709089 ], [ -87.503357, 38.706946 ], [ -87.495117, 38.696229 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.696229 ], [ -87.497864, 38.694085 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.475891, 38.756225 ], [ -87.484131, 38.734804 ], [ -87.484131, 38.702659 ], [ -87.495117, 38.696229 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841667", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.497864, 38.694085 ], [ -87.495117, 38.696229 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841556", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.497864, 38.694085 ], [ -87.495117, 38.696229 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257622329", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.694085 ], [ -87.495117, 38.696229 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841665", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.687654 ], [ -87.495117, 38.696229 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257599171", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.687654 ], [ -87.495117, 38.696229 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841553", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.696229 ], [ -87.489624, 38.679078 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.679078 ], [ -87.489624, 38.681222 ], [ -87.495117, 38.696229 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627422", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.511597, 38.661922 ], [ -87.492371, 38.674789 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070259", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.536316, 38.621162 ], [ -87.533569, 38.629745 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624305", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.672645 ], [ -87.492371, 38.679078 ], [ -87.492371, 38.689798 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627423", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.674789 ], [ -87.489624, 38.681222 ], [ -87.489624, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.679078 ], [ -87.492371, 38.687654 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070276", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.489624, 38.679078 ], [ -87.492371, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070320", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.679078 ], [ -87.489624, 38.679078 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070272", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.679078 ], [ -87.489624, 38.679078 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070318", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.674789 ], [ -87.489624, 38.679078 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070277", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.674789 ], [ -87.489624, 38.679078 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257616296", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.674789 ], [ -87.481384, 38.676933 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170071138", "FULLNAME": "E US Hwy 50-150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.674789 ], [ -87.481384, 38.676933 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.566528, 38.492294 ], [ -87.561035, 38.513788 ], [ -87.539062, 38.528830 ], [ -87.539062, 38.610432 ], [ -87.530823, 38.646908 ], [ -87.492371, 38.676933 ], [ -87.495117, 38.696229 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.566528, 38.492294 ], [ -87.561035, 38.513788 ], [ -87.539062, 38.526682 ], [ -87.539062, 38.612578 ], [ -87.530823, 38.649053 ], [ -87.511597, 38.661922 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613150", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.489624, 38.679078 ], [ -87.456665, 38.674789 ], [ -87.409973, 38.681222 ], [ -87.335815, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613492", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.489624, 38.679078 ], [ -87.456665, 38.674789 ], [ -87.409973, 38.681222 ], [ -87.335815, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610285", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.670501 ], [ -87.409973, 38.681222 ], [ -87.456665, 38.674789 ], [ -87.484131, 38.679078 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.679078 ], [ -87.456665, 38.674789 ], [ -87.409973, 38.681222 ], [ -87.335815, 38.670501 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257640853", "FULLNAME": "E US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.324829, 38.666212 ], [ -87.319336, 38.661922 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685675", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.294617, 38.651198 ], [ -87.335815, 38.670501 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686635", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.294617, 38.651198 ], [ -87.335815, 38.670501 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.668356 ], [ -87.291870, 38.651198 ], [ -87.275391, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.668356 ], [ -87.291870, 38.651198 ], [ -87.275391, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685645", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.283630, 38.649053 ], [ -87.300110, 38.657633 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685646", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.646908 ], [ -87.280884, 38.649053 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104472002543", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.646908 ], [ -87.275391, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471680885", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.646908 ], [ -87.275391, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.253418, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.253418, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170072467", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.646908 ], [ -87.267151, 38.646908 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 6, "x": 16, "y": 24 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.760509 ], [ -87.463531, 38.792627 ], [ -87.447052, 38.817241 ], [ -87.434692, 38.867513 ], [ -87.434692, 38.872859 ], [ -87.442932, 38.885688 ], [ -87.438812, 38.902790 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070260", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.449799, 38.832220 ], [ -87.445679, 38.853612 ], [ -87.448425, 38.856820 ], [ -87.448425, 38.865375 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.565155, 38.491219 ], [ -87.561035, 38.512714 ], [ -87.541809, 38.522384 ], [ -87.539062, 38.527756 ], [ -87.539062, 38.610432 ], [ -87.533569, 38.624381 ], [ -87.528076, 38.649053 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.565155, 38.491219 ], [ -87.559662, 38.512714 ], [ -87.541809, 38.522384 ], [ -87.539062, 38.526682 ], [ -87.539062, 38.610432 ], [ -87.533569, 38.625454 ], [ -87.528076, 38.649053 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.695157 ], [ -87.484131, 38.702659 ], [ -87.482758, 38.735875 ], [ -87.467651, 38.777640 ], [ -87.463531, 38.791557 ], [ -87.447052, 38.818311 ], [ -87.433319, 38.868583 ], [ -87.434692, 38.872859 ], [ -87.442932, 38.885688 ], [ -87.438812, 38.902790 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.695157 ], [ -87.484131, 38.702659 ], [ -87.482758, 38.735875 ], [ -87.466278, 38.776570 ], [ -87.463531, 38.791557 ], [ -87.445679, 38.818311 ], [ -87.433319, 38.868583 ], [ -87.442932, 38.886757 ], [ -87.438812, 38.902790 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.695157 ], [ -87.484131, 38.702659 ], [ -87.482758, 38.735875 ], [ -87.466278, 38.776570 ], [ -87.463531, 38.791557 ], [ -87.445679, 38.818311 ], [ -87.433319, 38.868583 ], [ -87.442932, 38.886757 ], [ -87.438812, 38.902790 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.695157 ], [ -87.484131, 38.702659 ], [ -87.482758, 38.735875 ], [ -87.466278, 38.776570 ], [ -87.463531, 38.791557 ], [ -87.445679, 38.818311 ], [ -87.433319, 38.868583 ], [ -87.442932, 38.886757 ], [ -87.438812, 38.902790 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624700", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519836, 38.708018 ], [ -87.507477, 38.708018 ], [ -87.501984, 38.705874 ], [ -87.496490, 38.701588 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469553886", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519836, 38.708018 ], [ -87.508850, 38.708018 ], [ -87.501984, 38.705874 ], [ -87.497864, 38.701588 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.695157 ], [ -87.497864, 38.694085 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.475891, 38.755154 ], [ -87.482758, 38.734804 ], [ -87.484131, 38.702659 ], [ -87.486877, 38.698372 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841667", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.497864, 38.694085 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841556", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.497864, 38.694085 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257622329", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.693013 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841665", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.490997, 38.687654 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257599171", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.490997, 38.687654 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841553", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.695157 ], [ -87.488251, 38.679078 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.482758, 38.678006 ], [ -87.488251, 38.681222 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627422", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.510223, 38.661922 ], [ -87.492371, 38.674789 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070259", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.536316, 38.620089 ], [ -87.533569, 38.629745 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624305", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.672645 ], [ -87.490997, 38.679078 ], [ -87.492371, 38.689798 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627423", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.674789 ], [ -87.488251, 38.680150 ], [ -87.489624, 38.684438 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.482758, 38.678006 ], [ -87.486877, 38.681222 ], [ -87.490997, 38.687654 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070276", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.488251, 38.679078 ], [ -87.490997, 38.684438 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070320", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.482758, 38.678006 ], [ -87.488251, 38.679078 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070272", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.482758, 38.678006 ], [ -87.488251, 38.679078 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070318", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.674789 ], [ -87.488251, 38.679078 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070277", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.674789 ], [ -87.488251, 38.679078 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257616296", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.674789 ], [ -87.486877, 38.676933 ], [ -87.481384, 38.676933 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170071138", "FULLNAME": "E US Hwy 50-150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.471771, 38.674789 ], [ -87.481384, 38.676933 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.565155, 38.491219 ], [ -87.561035, 38.512714 ], [ -87.541809, 38.522384 ], [ -87.539062, 38.527756 ], [ -87.539062, 38.610432 ], [ -87.533569, 38.624381 ], [ -87.529449, 38.645836 ], [ -87.526703, 38.651198 ], [ -87.493744, 38.674789 ], [ -87.490997, 38.679078 ], [ -87.490997, 38.685510 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.565155, 38.491219 ], [ -87.559662, 38.512714 ], [ -87.541809, 38.522384 ], [ -87.539062, 38.526682 ], [ -87.539062, 38.611505 ], [ -87.533569, 38.625454 ], [ -87.529449, 38.647981 ], [ -87.510223, 38.661922 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613150", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.488251, 38.679078 ], [ -87.475891, 38.675861 ], [ -87.458038, 38.674789 ], [ -87.429199, 38.675861 ], [ -87.409973, 38.680150 ], [ -87.370148, 38.675861 ], [ -87.335815, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613492", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.488251, 38.679078 ], [ -87.475891, 38.675861 ], [ -87.458038, 38.674789 ], [ -87.429199, 38.675861 ], [ -87.409973, 38.680150 ], [ -87.370148, 38.675861 ], [ -87.335815, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610285", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.669428 ], [ -87.371521, 38.675861 ], [ -87.409973, 38.680150 ], [ -87.427826, 38.675861 ], [ -87.455292, 38.674789 ], [ -87.474518, 38.675861 ], [ -87.482758, 38.678006 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.482758, 38.678006 ], [ -87.474518, 38.675861 ], [ -87.455292, 38.674789 ], [ -87.427826, 38.675861 ], [ -87.409973, 38.680150 ], [ -87.371521, 38.675861 ], [ -87.335815, 38.669428 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257640853", "FULLNAME": "E US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.324829, 38.665139 ], [ -87.317963, 38.661922 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685675", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.294617, 38.651198 ], [ -87.326202, 38.666212 ], [ -87.335815, 38.669428 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686635", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.294617, 38.651198 ], [ -87.326202, 38.666212 ], [ -87.335815, 38.669428 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.668356 ], [ -87.326202, 38.666212 ], [ -87.291870, 38.650126 ], [ -87.275391, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.668356 ], [ -87.326202, 38.666212 ], [ -87.291870, 38.650126 ], [ -87.275391, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685645", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.282257, 38.649053 ], [ -87.298737, 38.656561 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685646", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.252045, 38.646908 ], [ -87.267151, 38.645836 ], [ -87.280884, 38.647981 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104472002543", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.252045, 38.646908 ], [ -87.275391, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471680885", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.252045, 38.646908 ], [ -87.275391, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.252045, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.252045, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170072467", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.252045, 38.646908 ], [ -87.265778, 38.645836 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 7, "x": 32, "y": 49 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.759973 ], [ -87.466278, 38.778711 ], [ -87.463531, 38.792627 ], [ -87.447739, 38.814031 ], [ -87.444992, 38.822591 ], [ -87.434006, 38.865375 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070260", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.449112, 38.832220 ], [ -87.447052, 38.848264 ], [ -87.444992, 38.853077 ], [ -87.448425, 38.856285 ], [ -87.447739, 38.864840 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564468, 38.491219 ], [ -87.561722, 38.507878 ], [ -87.560349, 38.511639 ], [ -87.556229, 38.515400 ], [ -87.541809, 38.522384 ], [ -87.538376, 38.527219 ], [ -87.539062, 38.609896 ], [ -87.533569, 38.624381 ], [ -87.530136, 38.644763 ], [ -87.528076, 38.649053 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564468, 38.491219 ], [ -87.561722, 38.508953 ], [ -87.560349, 38.511639 ], [ -87.556229, 38.515400 ], [ -87.541809, 38.521847 ], [ -87.538376, 38.526682 ], [ -87.539062, 38.610432 ], [ -87.533569, 38.624918 ], [ -87.529449, 38.644763 ], [ -87.528076, 38.648517 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.695157 ], [ -87.486877, 38.698372 ], [ -87.484131, 38.701588 ], [ -87.484818, 38.723019 ], [ -87.482071, 38.736946 ], [ -87.466965, 38.777105 ], [ -87.463531, 38.792627 ], [ -87.447739, 38.814031 ], [ -87.444992, 38.822591 ], [ -87.434006, 38.865375 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.695157 ], [ -87.486877, 38.698372 ], [ -87.484131, 38.702123 ], [ -87.484131, 38.722483 ], [ -87.482071, 38.736946 ], [ -87.466278, 38.776570 ], [ -87.462845, 38.792092 ], [ -87.447739, 38.812961 ], [ -87.444305, 38.822591 ], [ -87.434006, 38.865375 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.695157 ], [ -87.486877, 38.698372 ], [ -87.484131, 38.702123 ], [ -87.484131, 38.722483 ], [ -87.482071, 38.736946 ], [ -87.466278, 38.776570 ], [ -87.462845, 38.792092 ], [ -87.447739, 38.812961 ], [ -87.444305, 38.822591 ], [ -87.434006, 38.865375 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.695157 ], [ -87.486877, 38.698372 ], [ -87.484131, 38.702123 ], [ -87.484131, 38.722483 ], [ -87.482071, 38.736946 ], [ -87.466278, 38.776570 ], [ -87.462845, 38.792092 ], [ -87.447739, 38.812961 ], [ -87.444305, 38.822591 ], [ -87.434006, 38.865375 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624700", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519836, 38.707482 ], [ -87.509537, 38.708018 ], [ -87.502670, 38.706410 ], [ -87.497177, 38.702123 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469553886", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519836, 38.707482 ], [ -87.509537, 38.708018 ], [ -87.502670, 38.706410 ], [ -87.497177, 38.701588 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.695157 ], [ -87.497177, 38.693549 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.475204, 38.755154 ], [ -87.482758, 38.734804 ], [ -87.484818, 38.723019 ], [ -87.484131, 38.702123 ], [ -87.486877, 38.698372 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841667", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.497177, 38.693549 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841556", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.497177, 38.693549 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257622329", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493057, 38.693013 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841665", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.490997, 38.687654 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257599171", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.490997, 38.687654 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841553", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.695157 ], [ -87.490997, 38.687118 ], [ -87.490311, 38.681758 ], [ -87.488251, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.482071, 38.678006 ], [ -87.487564, 38.681222 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627422", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.509537, 38.661922 ], [ -87.492371, 38.674789 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070259", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.535629, 38.620089 ], [ -87.533569, 38.625454 ], [ -87.533569, 38.629209 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624305", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.672645 ], [ -87.493057, 38.674789 ], [ -87.490311, 38.679078 ], [ -87.491684, 38.689262 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627423", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.674789 ], [ -87.489624, 38.676397 ], [ -87.488251, 38.679078 ], [ -87.489624, 38.684438 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.482071, 38.678006 ], [ -87.486877, 38.680686 ], [ -87.490997, 38.687654 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070276", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.488251, 38.678542 ], [ -87.490311, 38.681222 ], [ -87.490311, 38.683902 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070320", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.482071, 38.678006 ], [ -87.488251, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070272", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.482071, 38.678006 ], [ -87.488251, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070318", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493057, 38.674789 ], [ -87.490997, 38.677469 ], [ -87.488251, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070277", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493057, 38.674789 ], [ -87.490997, 38.677469 ], [ -87.488251, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257616296", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.674789 ], [ -87.486877, 38.676933 ], [ -87.480698, 38.676397 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170071138", "FULLNAME": "E US Hwy 50-150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.471771, 38.674789 ], [ -87.480698, 38.676397 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564468, 38.491219 ], [ -87.561722, 38.507878 ], [ -87.560349, 38.511639 ], [ -87.556229, 38.515400 ], [ -87.541809, 38.522384 ], [ -87.538376, 38.527219 ], [ -87.539062, 38.609896 ], [ -87.533569, 38.624381 ], [ -87.529449, 38.645836 ], [ -87.526016, 38.650662 ], [ -87.493057, 38.674789 ], [ -87.490311, 38.679078 ], [ -87.490311, 38.685510 ], [ -87.493744, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564468, 38.491219 ], [ -87.561722, 38.508953 ], [ -87.560349, 38.511639 ], [ -87.556229, 38.515400 ], [ -87.541809, 38.521847 ], [ -87.538376, 38.526144 ], [ -87.539062, 38.610969 ], [ -87.533569, 38.624918 ], [ -87.528763, 38.647445 ], [ -87.526016, 38.650126 ], [ -87.509537, 38.661922 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613150", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.488251, 38.678542 ], [ -87.485504, 38.677469 ], [ -87.475891, 38.675325 ], [ -87.457352, 38.674253 ], [ -87.428513, 38.675861 ], [ -87.412720, 38.680150 ], [ -87.409286, 38.680150 ], [ -87.369461, 38.675325 ], [ -87.335815, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613492", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.488251, 38.678542 ], [ -87.485504, 38.677469 ], [ -87.475891, 38.675325 ], [ -87.457352, 38.674253 ], [ -87.428513, 38.675861 ], [ -87.412720, 38.680150 ], [ -87.409286, 38.680150 ], [ -87.369461, 38.675325 ], [ -87.335815, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610285", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335129, 38.668892 ], [ -87.371521, 38.675861 ], [ -87.409286, 38.680150 ], [ -87.412720, 38.680150 ], [ -87.427826, 38.675861 ], [ -87.455292, 38.674253 ], [ -87.473831, 38.675325 ], [ -87.482071, 38.678006 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.482071, 38.678006 ], [ -87.473831, 38.675325 ], [ -87.455292, 38.674253 ], [ -87.427826, 38.675861 ], [ -87.412720, 38.680150 ], [ -87.409286, 38.680150 ], [ -87.371521, 38.675861 ], [ -87.335129, 38.668892 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257640853", "FULLNAME": "E US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.324829, 38.665139 ], [ -87.317963, 38.661922 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685675", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.286377, 38.648517 ], [ -87.293930, 38.651198 ], [ -87.325516, 38.666212 ], [ -87.335129, 38.668892 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686635", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.286377, 38.648517 ], [ -87.293930, 38.651198 ], [ -87.325516, 38.666212 ], [ -87.335129, 38.668892 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.668356 ], [ -87.326202, 38.665675 ], [ -87.291183, 38.649590 ], [ -87.275391, 38.646372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.668356 ], [ -87.326202, 38.665675 ], [ -87.291183, 38.649590 ], [ -87.275391, 38.646372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685645", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.281570, 38.648517 ], [ -87.285690, 38.651198 ], [ -87.294617, 38.653343 ], [ -87.298737, 38.656561 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685646", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.252045, 38.646908 ], [ -87.267151, 38.645836 ], [ -87.280197, 38.647445 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104472002543", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.252045, 38.646908 ], [ -87.266464, 38.645836 ], [ -87.275391, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471680885", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.252045, 38.646908 ], [ -87.266464, 38.645836 ], [ -87.275391, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646372 ], [ -87.265778, 38.645836 ], [ -87.252045, 38.646372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646372 ], [ -87.265778, 38.645836 ], [ -87.252045, 38.646372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170072467", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.252045, 38.646372 ], [ -87.265778, 38.645836 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 7, "x": 32, "y": 48 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.465591, 38.779781 ], [ -87.463531, 38.792627 ], [ -87.447739, 38.814031 ], [ -87.444992, 38.822591 ], [ -87.433319, 38.868048 ], [ -87.434692, 38.872325 ], [ -87.440872, 38.880343 ], [ -87.442932, 38.885688 ], [ -87.442932, 38.891033 ], [ -87.438126, 38.902255 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070260", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.449112, 38.832220 ], [ -87.447052, 38.848264 ], [ -87.444992, 38.853077 ], [ -87.448425, 38.856285 ], [ -87.447739, 38.864840 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.465591, 38.779781 ], [ -87.463531, 38.792627 ], [ -87.447739, 38.814031 ], [ -87.444992, 38.822591 ], [ -87.433319, 38.868048 ], [ -87.434692, 38.872325 ], [ -87.440872, 38.880343 ], [ -87.442932, 38.885688 ], [ -87.442932, 38.891033 ], [ -87.438126, 38.902255 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.465591, 38.779781 ], [ -87.462845, 38.792627 ], [ -87.447739, 38.812961 ], [ -87.444305, 38.822591 ], [ -87.433319, 38.868048 ], [ -87.434006, 38.872859 ], [ -87.440872, 38.880343 ], [ -87.442932, 38.886223 ], [ -87.442245, 38.891033 ], [ -87.438126, 38.902255 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.465591, 38.779781 ], [ -87.462845, 38.792627 ], [ -87.447739, 38.812961 ], [ -87.444305, 38.822591 ], [ -87.433319, 38.868048 ], [ -87.434006, 38.872859 ], [ -87.440872, 38.880343 ], [ -87.442932, 38.886223 ], [ -87.442245, 38.891033 ], [ -87.438126, 38.902255 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.465591, 38.779781 ], [ -87.462845, 38.792627 ], [ -87.447739, 38.812961 ], [ -87.444305, 38.822591 ], [ -87.433319, 38.868048 ], [ -87.434006, 38.872859 ], [ -87.440872, 38.880343 ], [ -87.442932, 38.886223 ], [ -87.442245, 38.891033 ], [ -87.438126, 38.902255 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 65, "y": 98 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.759706 ], [ -87.465935, 38.778443 ], [ -87.464218, 38.789148 ], [ -87.463188, 38.792359 ], [ -87.447395, 38.814031 ], [ -87.444649, 38.822591 ], [ -87.439499, 38.843986 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070260", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.449112, 38.832220 ], [ -87.447395, 38.843986 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564125, 38.490951 ], [ -87.561722, 38.507878 ], [ -87.560349, 38.511639 ], [ -87.556229, 38.515400 ], [ -87.541466, 38.522115 ], [ -87.539406, 38.524264 ], [ -87.538376, 38.526950 ], [ -87.539062, 38.609627 ], [ -87.533569, 38.624381 ], [ -87.529793, 38.644763 ], [ -87.527733, 38.648785 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564125, 38.490951 ], [ -87.561378, 38.508684 ], [ -87.560005, 38.511639 ], [ -87.558289, 38.513520 ], [ -87.555885, 38.515131 ], [ -87.541466, 38.521847 ], [ -87.539406, 38.523727 ], [ -87.538033, 38.526682 ], [ -87.539062, 38.610164 ], [ -87.533226, 38.624649 ], [ -87.529449, 38.644495 ], [ -87.527733, 38.648517 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694889 ], [ -87.486877, 38.698372 ], [ -87.484131, 38.701588 ], [ -87.483788, 38.703999 ], [ -87.484474, 38.722751 ], [ -87.482071, 38.736946 ], [ -87.466621, 38.777105 ], [ -87.463188, 38.792359 ], [ -87.447395, 38.814031 ], [ -87.444649, 38.822591 ], [ -87.439499, 38.843986 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493401, 38.695157 ], [ -87.486877, 38.698372 ], [ -87.485161, 38.699980 ], [ -87.483788, 38.702123 ], [ -87.483444, 38.704803 ], [ -87.484131, 38.722483 ], [ -87.481728, 38.736946 ], [ -87.466278, 38.776570 ], [ -87.463188, 38.791557 ], [ -87.461472, 38.794768 ], [ -87.447739, 38.812961 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.439156, 38.843986 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493401, 38.695157 ], [ -87.486877, 38.698372 ], [ -87.485161, 38.699980 ], [ -87.483788, 38.702123 ], [ -87.483444, 38.704803 ], [ -87.484131, 38.722483 ], [ -87.481728, 38.736946 ], [ -87.466278, 38.776570 ], [ -87.463188, 38.791557 ], [ -87.461472, 38.794768 ], [ -87.447739, 38.812961 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.439156, 38.843986 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493401, 38.695157 ], [ -87.486877, 38.698372 ], [ -87.485161, 38.699980 ], [ -87.483788, 38.702123 ], [ -87.483444, 38.704803 ], [ -87.484131, 38.722483 ], [ -87.481728, 38.736946 ], [ -87.466278, 38.776570 ], [ -87.463188, 38.791557 ], [ -87.461472, 38.794768 ], [ -87.447739, 38.812961 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.439156, 38.843986 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624700", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519493, 38.707482 ], [ -87.509193, 38.708018 ], [ -87.505760, 38.707482 ], [ -87.502327, 38.706410 ], [ -87.498894, 38.704267 ], [ -87.496834, 38.702123 ], [ -87.493401, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469553886", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519493, 38.707214 ], [ -87.509193, 38.707750 ], [ -87.505417, 38.707214 ], [ -87.502327, 38.706142 ], [ -87.499237, 38.704267 ], [ -87.496834, 38.701588 ], [ -87.493744, 38.694889 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485838817", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.497177, 38.693281 ], [ -87.496834, 38.693549 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694889 ], [ -87.497177, 38.693281 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.474861, 38.755154 ], [ -87.482758, 38.734804 ], [ -87.484474, 38.722751 ], [ -87.484131, 38.702123 ], [ -87.485161, 38.699980 ], [ -87.486877, 38.698372 ], [ -87.493744, 38.694889 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841555", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694889 ], [ -87.493401, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841666", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694889 ], [ -87.493401, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841667", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.496834, 38.693549 ], [ -87.493744, 38.694889 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841556", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.496834, 38.693549 ], [ -87.493744, 38.694889 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257622329", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493057, 38.692745 ], [ -87.493744, 38.694889 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841665", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.490654, 38.687654 ], [ -87.493401, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257599171", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.490654, 38.687654 ], [ -87.493401, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841553", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694889 ], [ -87.490654, 38.686850 ], [ -87.489967, 38.681490 ], [ -87.487907, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481728, 38.677738 ], [ -87.485504, 38.679346 ], [ -87.487221, 38.680954 ], [ -87.489967, 38.686314 ], [ -87.493401, 38.695157 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627422", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.509537, 38.661922 ], [ -87.492027, 38.674521 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070259", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.535629, 38.620089 ], [ -87.533569, 38.625186 ], [ -87.533569, 38.628941 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624305", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.672377 ], [ -87.492714, 38.674789 ], [ -87.490311, 38.679078 ], [ -87.490311, 38.685510 ], [ -87.491684, 38.689262 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627423", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492027, 38.674521 ], [ -87.489281, 38.676397 ], [ -87.487907, 38.679078 ], [ -87.487907, 38.681222 ], [ -87.489281, 38.684170 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481728, 38.677738 ], [ -87.484474, 38.678810 ], [ -87.486877, 38.680418 ], [ -87.490654, 38.687654 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070276", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.487907, 38.678542 ], [ -87.489967, 38.680954 ], [ -87.490311, 38.683902 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070320", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481728, 38.677738 ], [ -87.484818, 38.678810 ], [ -87.487907, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070272", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481728, 38.677738 ], [ -87.484818, 38.678810 ], [ -87.487907, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070318", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492714, 38.674789 ], [ -87.490654, 38.677469 ], [ -87.487907, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070277", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492714, 38.674789 ], [ -87.490654, 38.677469 ], [ -87.487907, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257616296", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492027, 38.674521 ], [ -87.488937, 38.676129 ], [ -87.486877, 38.676933 ], [ -87.484131, 38.676933 ], [ -87.480354, 38.676129 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170071138", "FULLNAME": "E US Hwy 50-150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.471428, 38.674789 ], [ -87.475548, 38.675057 ], [ -87.480354, 38.676129 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564125, 38.490951 ], [ -87.561722, 38.507878 ], [ -87.560349, 38.511639 ], [ -87.556229, 38.515400 ], [ -87.541466, 38.522115 ], [ -87.539406, 38.524264 ], [ -87.538376, 38.526950 ], [ -87.539062, 38.609627 ], [ -87.533569, 38.624381 ], [ -87.529449, 38.645568 ], [ -87.528076, 38.648249 ], [ -87.526016, 38.650662 ], [ -87.503357, 38.666212 ], [ -87.492714, 38.674789 ], [ -87.490311, 38.679078 ], [ -87.490311, 38.684974 ], [ -87.490997, 38.687386 ], [ -87.493744, 38.694889 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564125, 38.490951 ], [ -87.561378, 38.508684 ], [ -87.560005, 38.511639 ], [ -87.558289, 38.513520 ], [ -87.555885, 38.515131 ], [ -87.541466, 38.521847 ], [ -87.539406, 38.523727 ], [ -87.538376, 38.525876 ], [ -87.538719, 38.610969 ], [ -87.533226, 38.624649 ], [ -87.529449, 38.644495 ], [ -87.528419, 38.647176 ], [ -87.526016, 38.650126 ], [ -87.509537, 38.661922 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613150", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.487907, 38.678542 ], [ -87.485504, 38.677201 ], [ -87.475548, 38.675057 ], [ -87.457008, 38.673985 ], [ -87.428169, 38.675593 ], [ -87.412720, 38.679882 ], [ -87.408943, 38.680150 ], [ -87.369461, 38.675325 ], [ -87.335472, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613492", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.487907, 38.678542 ], [ -87.485504, 38.677201 ], [ -87.475548, 38.675057 ], [ -87.457008, 38.673985 ], [ -87.428169, 38.675593 ], [ -87.412720, 38.679882 ], [ -87.408943, 38.680150 ], [ -87.369461, 38.675325 ], [ -87.335472, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610285", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335129, 38.668624 ], [ -87.371178, 38.675861 ], [ -87.409286, 38.680150 ], [ -87.412720, 38.679882 ], [ -87.427826, 38.675861 ], [ -87.455292, 38.674253 ], [ -87.473488, 38.675057 ], [ -87.476921, 38.675861 ], [ -87.481728, 38.677738 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481728, 38.677738 ], [ -87.476921, 38.675861 ], [ -87.473488, 38.675057 ], [ -87.455292, 38.674253 ], [ -87.427826, 38.675861 ], [ -87.412720, 38.679882 ], [ -87.409286, 38.680150 ], [ -87.371178, 38.675861 ], [ -87.335129, 38.668624 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257640853", "FULLNAME": "E US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.324486, 38.665139 ], [ -87.317619, 38.661922 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685675", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275047, 38.646640 ], [ -87.286034, 38.648517 ], [ -87.293587, 38.650930 ], [ -87.325516, 38.665944 ], [ -87.329292, 38.667284 ], [ -87.335129, 38.668624 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686635", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275047, 38.646640 ], [ -87.286034, 38.648517 ], [ -87.293587, 38.650930 ], [ -87.325516, 38.665944 ], [ -87.329292, 38.667284 ], [ -87.335129, 38.668624 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335472, 38.668356 ], [ -87.326546, 38.665944 ], [ -87.295303, 38.651466 ], [ -87.290840, 38.649590 ], [ -87.282257, 38.647445 ], [ -87.275047, 38.646372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335472, 38.668356 ], [ -87.326546, 38.665944 ], [ -87.295303, 38.651466 ], [ -87.290840, 38.649590 ], [ -87.282257, 38.647445 ], [ -87.275047, 38.646372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685645", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.281570, 38.648517 ], [ -87.285347, 38.650930 ], [ -87.294617, 38.653343 ], [ -87.298737, 38.656292 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685646", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.252045, 38.646640 ], [ -87.267151, 38.645836 ], [ -87.271957, 38.646104 ], [ -87.279854, 38.647445 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104472002543", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.252045, 38.646640 ], [ -87.266464, 38.645836 ], [ -87.275047, 38.646640 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471680885", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.252045, 38.646640 ], [ -87.266464, 38.645836 ], [ -87.275047, 38.646640 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275047, 38.646372 ], [ -87.265434, 38.645568 ], [ -87.251701, 38.646372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275047, 38.646372 ], [ -87.265434, 38.645568 ], [ -87.251701, 38.646372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170072467", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.251701, 38.646372 ], [ -87.265434, 38.645568 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 65, "y": 97 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.456665, 38.801189 ], [ -87.447395, 38.814031 ], [ -87.444649, 38.822591 ], [ -87.433319, 38.867781 ], [ -87.433662, 38.870186 ], [ -87.434692, 38.872859 ], [ -87.440872, 38.880343 ], [ -87.442932, 38.885688 ], [ -87.442589, 38.890766 ], [ -87.438126, 38.902255 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070260", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.449112, 38.832220 ], [ -87.447052, 38.847997 ], [ -87.444649, 38.852542 ], [ -87.444992, 38.853612 ], [ -87.448425, 38.856285 ], [ -87.447739, 38.864573 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.456665, 38.801189 ], [ -87.447395, 38.814031 ], [ -87.444649, 38.822591 ], [ -87.433319, 38.867781 ], [ -87.433662, 38.870186 ], [ -87.434692, 38.872859 ], [ -87.440872, 38.880343 ], [ -87.442932, 38.885688 ], [ -87.442589, 38.890766 ], [ -87.438126, 38.902255 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.456322, 38.801189 ], [ -87.447739, 38.813229 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.432976, 38.868048 ], [ -87.434006, 38.872592 ], [ -87.440872, 38.880343 ], [ -87.442589, 38.885955 ], [ -87.442245, 38.890766 ], [ -87.437782, 38.902255 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.456322, 38.801189 ], [ -87.447739, 38.813229 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.432976, 38.868048 ], [ -87.434006, 38.872592 ], [ -87.440872, 38.880343 ], [ -87.442589, 38.885955 ], [ -87.442245, 38.890766 ], [ -87.437782, 38.902255 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.456322, 38.801189 ], [ -87.447739, 38.813229 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.432976, 38.868048 ], [ -87.434006, 38.872592 ], [ -87.440872, 38.880343 ], [ -87.442589, 38.885955 ], [ -87.442245, 38.890766 ], [ -87.437782, 38.902255 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 9, "x": 131, "y": 196 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.759572 ], [ -87.469368, 38.768941 ], [ -87.465935, 38.778309 ], [ -87.464046, 38.789014 ], [ -87.463017, 38.792226 ], [ -87.461472, 38.794901 ], [ -87.449112, 38.811356 ], [ -87.447395, 38.813897 ], [ -87.446194, 38.816974 ], [ -87.444649, 38.822591 ], [ -87.441902, 38.833289 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070260", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.449112, 38.832220 ], [ -87.449112, 38.833289 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564125, 38.490951 ], [ -87.561722, 38.507878 ], [ -87.561207, 38.509624 ], [ -87.560177, 38.511639 ], [ -87.558117, 38.513788 ], [ -87.556057, 38.515266 ], [ -87.542839, 38.521310 ], [ -87.541466, 38.522115 ], [ -87.539406, 38.524130 ], [ -87.538376, 38.526816 ], [ -87.539062, 38.609627 ], [ -87.538548, 38.612042 ], [ -87.533569, 38.624247 ], [ -87.529793, 38.644629 ], [ -87.529106, 38.646506 ], [ -87.527733, 38.648651 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564125, 38.490951 ], [ -87.561378, 38.508550 ], [ -87.559834, 38.511505 ], [ -87.558289, 38.513385 ], [ -87.555714, 38.515131 ], [ -87.541466, 38.521847 ], [ -87.539406, 38.523727 ], [ -87.538548, 38.525204 ], [ -87.538033, 38.526547 ], [ -87.538891, 38.610030 ], [ -87.538376, 38.612042 ], [ -87.533913, 38.622101 ], [ -87.533226, 38.624515 ], [ -87.529449, 38.644495 ], [ -87.528934, 38.646238 ], [ -87.527561, 38.648383 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694889 ], [ -87.486877, 38.698372 ], [ -87.485161, 38.699980 ], [ -87.484131, 38.701588 ], [ -87.483788, 38.703865 ], [ -87.484303, 38.722751 ], [ -87.482758, 38.734000 ], [ -87.482071, 38.736946 ], [ -87.469368, 38.768941 ], [ -87.466450, 38.776971 ], [ -87.465420, 38.780718 ], [ -87.463875, 38.789683 ], [ -87.463017, 38.792226 ], [ -87.461472, 38.794901 ], [ -87.449112, 38.811356 ], [ -87.447395, 38.813897 ], [ -87.446194, 38.816974 ], [ -87.444649, 38.822591 ], [ -87.441902, 38.833289 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493401, 38.695023 ], [ -87.486706, 38.698372 ], [ -87.484989, 38.699980 ], [ -87.483788, 38.701989 ], [ -87.483444, 38.704669 ], [ -87.484131, 38.722349 ], [ -87.482414, 38.734402 ], [ -87.481728, 38.736946 ], [ -87.469025, 38.769075 ], [ -87.466278, 38.776570 ], [ -87.465076, 38.780718 ], [ -87.463703, 38.789416 ], [ -87.463017, 38.791557 ], [ -87.461300, 38.794634 ], [ -87.447739, 38.812961 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.441559, 38.833289 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493401, 38.695023 ], [ -87.486706, 38.698372 ], [ -87.484989, 38.699980 ], [ -87.483788, 38.701989 ], [ -87.483444, 38.704669 ], [ -87.484131, 38.722349 ], [ -87.482414, 38.734402 ], [ -87.481728, 38.736946 ], [ -87.469025, 38.769075 ], [ -87.466278, 38.776570 ], [ -87.465076, 38.780718 ], [ -87.463703, 38.789416 ], [ -87.463017, 38.791557 ], [ -87.461300, 38.794634 ], [ -87.447739, 38.812961 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.441559, 38.833289 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493401, 38.695023 ], [ -87.486706, 38.698372 ], [ -87.484989, 38.699980 ], [ -87.483788, 38.701989 ], [ -87.483444, 38.704669 ], [ -87.484131, 38.722349 ], [ -87.482414, 38.734402 ], [ -87.481728, 38.736946 ], [ -87.469025, 38.769075 ], [ -87.466278, 38.776570 ], [ -87.465076, 38.780718 ], [ -87.463703, 38.789416 ], [ -87.463017, 38.791557 ], [ -87.461300, 38.794634 ], [ -87.447739, 38.812961 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.441559, 38.833289 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624700", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519321, 38.707482 ], [ -87.509193, 38.707884 ], [ -87.505760, 38.707482 ], [ -87.502327, 38.706410 ], [ -87.498894, 38.704267 ], [ -87.496662, 38.702123 ], [ -87.495289, 38.699712 ], [ -87.493401, 38.695023 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469553886", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519321, 38.707214 ], [ -87.509193, 38.707750 ], [ -87.505417, 38.707214 ], [ -87.502155, 38.706008 ], [ -87.499237, 38.704267 ], [ -87.496662, 38.701588 ], [ -87.495632, 38.699712 ], [ -87.493744, 38.694889 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485838817", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.497005, 38.693281 ], [ -87.496662, 38.693415 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694889 ], [ -87.497005, 38.693281 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.474861, 38.755020 ], [ -87.481899, 38.737749 ], [ -87.482758, 38.734670 ], [ -87.484303, 38.722751 ], [ -87.483788, 38.703865 ], [ -87.483959, 38.701989 ], [ -87.485161, 38.699980 ], [ -87.486877, 38.698372 ], [ -87.493744, 38.694889 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841555", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694889 ], [ -87.493401, 38.695023 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841666", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694889 ], [ -87.493401, 38.695023 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841667", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.496662, 38.693415 ], [ -87.493744, 38.694889 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841556", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.496662, 38.693415 ], [ -87.493744, 38.694889 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257622329", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492886, 38.692745 ], [ -87.493744, 38.694889 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841665", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.490654, 38.687654 ], [ -87.493401, 38.695023 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257599171", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.490654, 38.687654 ], [ -87.493401, 38.695023 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841553", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694889 ], [ -87.490654, 38.686850 ], [ -87.489967, 38.681356 ], [ -87.489109, 38.679882 ], [ -87.487907, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677604 ], [ -87.485332, 38.679212 ], [ -87.487221, 38.680954 ], [ -87.489967, 38.686180 ], [ -87.493401, 38.695023 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627422", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.509365, 38.661788 ], [ -87.503529, 38.665675 ], [ -87.491856, 38.674387 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070259", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.535629, 38.619955 ], [ -87.533569, 38.625052 ], [ -87.533226, 38.627197 ], [ -87.533569, 38.628807 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624305", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.672377 ], [ -87.492542, 38.674655 ], [ -87.490654, 38.677604 ], [ -87.490311, 38.678944 ], [ -87.490311, 38.685510 ], [ -87.491512, 38.689262 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627423", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.491856, 38.674387 ], [ -87.489109, 38.676397 ], [ -87.488251, 38.677604 ], [ -87.487736, 38.678944 ], [ -87.487736, 38.681222 ], [ -87.489109, 38.684170 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677604 ], [ -87.484474, 38.678676 ], [ -87.486706, 38.680418 ], [ -87.489281, 38.684840 ], [ -87.490654, 38.687654 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070276", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.487907, 38.678542 ], [ -87.489109, 38.679882 ], [ -87.489796, 38.680954 ], [ -87.490311, 38.683768 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070320", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677604 ], [ -87.484818, 38.678676 ], [ -87.486191, 38.678810 ], [ -87.487907, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070272", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677604 ], [ -87.484818, 38.678676 ], [ -87.486191, 38.678810 ], [ -87.487907, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070318", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492542, 38.674655 ], [ -87.490482, 38.677335 ], [ -87.489109, 38.678140 ], [ -87.487907, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070277", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492542, 38.674655 ], [ -87.490482, 38.677335 ], [ -87.489109, 38.678140 ], [ -87.487907, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257616296", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.491856, 38.674387 ], [ -87.488937, 38.676129 ], [ -87.486706, 38.676799 ], [ -87.484131, 38.676799 ], [ -87.480354, 38.676129 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170071138", "FULLNAME": "E US Hwy 50-150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.471256, 38.674789 ], [ -87.475376, 38.675057 ], [ -87.480354, 38.676129 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564125, 38.490951 ], [ -87.561722, 38.507878 ], [ -87.561207, 38.509624 ], [ -87.560177, 38.511639 ], [ -87.558117, 38.513788 ], [ -87.556057, 38.515266 ], [ -87.542839, 38.521310 ], [ -87.541466, 38.522115 ], [ -87.539406, 38.524130 ], [ -87.538376, 38.526816 ], [ -87.539062, 38.609627 ], [ -87.538548, 38.612042 ], [ -87.533569, 38.624247 ], [ -87.529449, 38.645568 ], [ -87.528076, 38.648115 ], [ -87.525845, 38.650528 ], [ -87.516575, 38.657231 ], [ -87.503357, 38.666078 ], [ -87.493744, 38.673315 ], [ -87.492542, 38.674655 ], [ -87.490654, 38.677604 ], [ -87.490311, 38.678944 ], [ -87.490311, 38.684974 ], [ -87.490826, 38.687386 ], [ -87.493744, 38.694889 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564125, 38.490951 ], [ -87.561378, 38.508550 ], [ -87.559834, 38.511505 ], [ -87.558289, 38.513385 ], [ -87.555714, 38.515131 ], [ -87.541466, 38.521847 ], [ -87.539406, 38.523727 ], [ -87.538204, 38.525876 ], [ -87.538033, 38.529367 ], [ -87.538891, 38.600103 ], [ -87.538891, 38.609225 ], [ -87.538548, 38.610969 ], [ -87.533913, 38.622101 ], [ -87.533226, 38.624515 ], [ -87.529449, 38.644495 ], [ -87.528419, 38.647176 ], [ -87.527390, 38.648785 ], [ -87.526016, 38.649992 ], [ -87.516918, 38.656695 ], [ -87.509537, 38.661788 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613150", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.487907, 38.678542 ], [ -87.485332, 38.677201 ], [ -87.475376, 38.675057 ], [ -87.457008, 38.673985 ], [ -87.428169, 38.675593 ], [ -87.425251, 38.676129 ], [ -87.412720, 38.679748 ], [ -87.408943, 38.680016 ], [ -87.395897, 38.678274 ], [ -87.374783, 38.675861 ], [ -87.369289, 38.675191 ], [ -87.335300, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613492", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.487907, 38.678542 ], [ -87.485332, 38.677201 ], [ -87.475376, 38.675057 ], [ -87.457008, 38.673985 ], [ -87.428169, 38.675593 ], [ -87.425251, 38.676129 ], [ -87.412720, 38.679748 ], [ -87.408943, 38.680016 ], [ -87.395897, 38.678274 ], [ -87.374783, 38.675861 ], [ -87.369289, 38.675191 ], [ -87.335300, 38.668356 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610285", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335129, 38.668490 ], [ -87.371178, 38.675727 ], [ -87.395897, 38.678408 ], [ -87.409286, 38.680150 ], [ -87.412720, 38.679882 ], [ -87.425079, 38.676397 ], [ -87.427654, 38.675861 ], [ -87.455292, 38.674253 ], [ -87.460957, 38.674253 ], [ -87.473316, 38.675057 ], [ -87.476749, 38.675861 ], [ -87.481556, 38.677604 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677604 ], [ -87.476749, 38.675861 ], [ -87.473316, 38.675057 ], [ -87.460957, 38.674253 ], [ -87.455292, 38.674253 ], [ -87.427654, 38.675861 ], [ -87.425079, 38.676397 ], [ -87.412720, 38.679882 ], [ -87.409286, 38.680150 ], [ -87.395897, 38.678408 ], [ -87.371178, 38.675727 ], [ -87.335129, 38.668490 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257640853", "FULLNAME": "E US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.324314, 38.665139 ], [ -87.317448, 38.661788 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685675", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275047, 38.646506 ], [ -87.285862, 38.648383 ], [ -87.289467, 38.649456 ], [ -87.293415, 38.650796 ], [ -87.325516, 38.665810 ], [ -87.329292, 38.667284 ], [ -87.335129, 38.668490 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686635", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275047, 38.646506 ], [ -87.285862, 38.648383 ], [ -87.289467, 38.649456 ], [ -87.293415, 38.650796 ], [ -87.325516, 38.665810 ], [ -87.329292, 38.667284 ], [ -87.335129, 38.668490 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335300, 38.668356 ], [ -87.329121, 38.667016 ], [ -87.326374, 38.665944 ], [ -87.295303, 38.651332 ], [ -87.290668, 38.649456 ], [ -87.285862, 38.648115 ], [ -87.282257, 38.647445 ], [ -87.274876, 38.646238 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335300, 38.668356 ], [ -87.329121, 38.667016 ], [ -87.326374, 38.665944 ], [ -87.295303, 38.651332 ], [ -87.290668, 38.649456 ], [ -87.285862, 38.648115 ], [ -87.282257, 38.647445 ], [ -87.274876, 38.646238 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685645", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.281399, 38.648517 ], [ -87.283115, 38.649724 ], [ -87.285347, 38.650930 ], [ -87.292042, 38.652405 ], [ -87.294445, 38.653209 ], [ -87.296333, 38.654282 ], [ -87.298737, 38.656292 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685646", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.251873, 38.646640 ], [ -87.267151, 38.645702 ], [ -87.271786, 38.645970 ], [ -87.279682, 38.647310 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104472002543", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.251873, 38.646640 ], [ -87.266464, 38.645702 ], [ -87.271786, 38.645970 ], [ -87.275047, 38.646506 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471680885", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.251873, 38.646640 ], [ -87.266464, 38.645702 ], [ -87.271786, 38.645970 ], [ -87.275047, 38.646506 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.274876, 38.646238 ], [ -87.271786, 38.645836 ], [ -87.265434, 38.645568 ], [ -87.251701, 38.646372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.274876, 38.646238 ], [ -87.271786, 38.645836 ], [ -87.265434, 38.645568 ], [ -87.251701, 38.646372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170072467", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.251701, 38.646372 ], [ -87.265434, 38.645568 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 9, "x": 131, "y": 195 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.448597, 38.811891 ], [ -87.446537, 38.815770 ], [ -87.444649, 38.822591 ], [ -87.433319, 38.867781 ], [ -87.433491, 38.870186 ], [ -87.434521, 38.872726 ], [ -87.435894, 38.874597 ], [ -87.439499, 38.878339 ], [ -87.440872, 38.880209 ], [ -87.442245, 38.882882 ], [ -87.442932, 38.885688 ], [ -87.442932, 38.888093 ], [ -87.442417, 38.890766 ], [ -87.437954, 38.902255 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070260", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.449112, 38.832220 ], [ -87.446880, 38.847997 ], [ -87.444477, 38.852542 ], [ -87.444820, 38.853478 ], [ -87.447910, 38.855483 ], [ -87.448425, 38.856152 ], [ -87.448082, 38.863103 ], [ -87.447739, 38.864439 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.448597, 38.811891 ], [ -87.446537, 38.815770 ], [ -87.444649, 38.822591 ], [ -87.433319, 38.867781 ], [ -87.433491, 38.870186 ], [ -87.434521, 38.872726 ], [ -87.435894, 38.874597 ], [ -87.439499, 38.878339 ], [ -87.440872, 38.880209 ], [ -87.442245, 38.882882 ], [ -87.442932, 38.885688 ], [ -87.442932, 38.888093 ], [ -87.442417, 38.890766 ], [ -87.437954, 38.902255 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.448254, 38.811891 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.432976, 38.867914 ], [ -87.433147, 38.870186 ], [ -87.434006, 38.872592 ], [ -87.435379, 38.874329 ], [ -87.438984, 38.878205 ], [ -87.440701, 38.880343 ], [ -87.441902, 38.882882 ], [ -87.442589, 38.885822 ], [ -87.442589, 38.888761 ], [ -87.442074, 38.890766 ], [ -87.437611, 38.902255 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.448254, 38.811891 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.432976, 38.867914 ], [ -87.433147, 38.870186 ], [ -87.434006, 38.872592 ], [ -87.435379, 38.874329 ], [ -87.438984, 38.878205 ], [ -87.440701, 38.880343 ], [ -87.441902, 38.882882 ], [ -87.442589, 38.885822 ], [ -87.442589, 38.888761 ], [ -87.442074, 38.890766 ], [ -87.437611, 38.902255 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.448254, 38.811891 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.432976, 38.867914 ], [ -87.433147, 38.870186 ], [ -87.434006, 38.872592 ], [ -87.435379, 38.874329 ], [ -87.438984, 38.878205 ], [ -87.440701, 38.880343 ], [ -87.441902, 38.882882 ], [ -87.442589, 38.885822 ], [ -87.442589, 38.888761 ], [ -87.442074, 38.890766 ], [ -87.437611, 38.902255 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 10, "x": 262, "y": 393 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564125, 38.490883 ], [ -87.561636, 38.507811 ], [ -87.561035, 38.510027 ], [ -87.559834, 38.511975 ], [ -87.558117, 38.513721 ], [ -87.556057, 38.515199 ], [ -87.542839, 38.521243 ], [ -87.541809, 38.521847 ], [ -87.540092, 38.523257 ], [ -87.539062, 38.524533 ], [ -87.538548, 38.525809 ], [ -87.538204, 38.527622 ], [ -87.538462, 38.551186 ], [ -87.538633, 38.553535 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564039, 38.490883 ], [ -87.561293, 38.508483 ], [ -87.560778, 38.509826 ], [ -87.559834, 38.511505 ], [ -87.558203, 38.513385 ], [ -87.556486, 38.514661 ], [ -87.554340, 38.515736 ], [ -87.541981, 38.521511 ], [ -87.540522, 38.522518 ], [ -87.539749, 38.523324 ], [ -87.539062, 38.524130 ], [ -87.538204, 38.525876 ], [ -87.537947, 38.527756 ], [ -87.538118, 38.550246 ], [ -87.538290, 38.553535 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564125, 38.490883 ], [ -87.561636, 38.507811 ], [ -87.561035, 38.510027 ], [ -87.559834, 38.511975 ], [ -87.558117, 38.513721 ], [ -87.556057, 38.515199 ], [ -87.542839, 38.521243 ], [ -87.541809, 38.521847 ], [ -87.540092, 38.523257 ], [ -87.539062, 38.524533 ], [ -87.538548, 38.525809 ], [ -87.538204, 38.527622 ], [ -87.538462, 38.551186 ], [ -87.538633, 38.553535 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564039, 38.490883 ], [ -87.561293, 38.508483 ], [ -87.560778, 38.509826 ], [ -87.559834, 38.511505 ], [ -87.558203, 38.513385 ], [ -87.556486, 38.514661 ], [ -87.554340, 38.515736 ], [ -87.541981, 38.521511 ], [ -87.540522, 38.522518 ], [ -87.539749, 38.523324 ], [ -87.539062, 38.524130 ], [ -87.538204, 38.525876 ], [ -87.537947, 38.527756 ], [ -87.538118, 38.550246 ], [ -87.538290, 38.553535 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 10, "x": 262, "y": 392 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.538290, 38.542795 ], [ -87.538462, 38.551186 ], [ -87.538633, 38.554274 ], [ -87.538633, 38.575011 ], [ -87.538805, 38.591919 ], [ -87.539062, 38.599164 ], [ -87.539062, 38.609024 ], [ -87.538977, 38.610566 ], [ -87.538548, 38.612042 ], [ -87.534685, 38.620827 ], [ -87.533484, 38.624180 ], [ -87.533054, 38.625722 ], [ -87.532196, 38.630349 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.538033, 38.542795 ], [ -87.538118, 38.550246 ], [ -87.538376, 38.555146 ], [ -87.538376, 38.574005 ], [ -87.538633, 38.594602 ], [ -87.538805, 38.600036 ], [ -87.538805, 38.609158 ], [ -87.538548, 38.610969 ], [ -87.538290, 38.611975 ], [ -87.533913, 38.622101 ], [ -87.533398, 38.623576 ], [ -87.532883, 38.625521 ], [ -87.532196, 38.628740 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070259", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.535543, 38.619955 ], [ -87.534170, 38.623107 ], [ -87.533569, 38.625052 ], [ -87.533226, 38.627130 ], [ -87.533569, 38.628740 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.538290, 38.542795 ], [ -87.538462, 38.551186 ], [ -87.538633, 38.554274 ], [ -87.538633, 38.575011 ], [ -87.538805, 38.591919 ], [ -87.539062, 38.599164 ], [ -87.539062, 38.609024 ], [ -87.538977, 38.610566 ], [ -87.538548, 38.612042 ], [ -87.534685, 38.620827 ], [ -87.533484, 38.624180 ], [ -87.533054, 38.625722 ], [ -87.532196, 38.630349 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.538033, 38.542795 ], [ -87.538118, 38.550246 ], [ -87.538376, 38.555146 ], [ -87.538376, 38.574005 ], [ -87.538633, 38.594602 ], [ -87.538805, 38.600036 ], [ -87.538805, 38.609158 ], [ -87.538548, 38.610969 ], [ -87.538290, 38.611975 ], [ -87.533913, 38.622101 ], [ -87.533398, 38.623576 ], [ -87.532883, 38.625521 ], [ -87.532196, 38.628740 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 10, "x": 263, "y": 393 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.545929, 38.519832 ], [ -87.542496, 38.521444 ], [ -87.541466, 38.522115 ], [ -87.540092, 38.523257 ], [ -87.539062, 38.524533 ], [ -87.538548, 38.525809 ], [ -87.538204, 38.527622 ], [ -87.538376, 38.548165 ], [ -87.538633, 38.553535 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.545929, 38.519564 ], [ -87.542839, 38.521041 ], [ -87.541466, 38.521780 ], [ -87.539749, 38.523324 ], [ -87.539062, 38.524130 ], [ -87.538204, 38.525876 ], [ -87.537947, 38.527756 ], [ -87.538118, 38.548165 ], [ -87.538290, 38.553535 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.545929, 38.519832 ], [ -87.542496, 38.521444 ], [ -87.541466, 38.522115 ], [ -87.540092, 38.523257 ], [ -87.539062, 38.524533 ], [ -87.538548, 38.525809 ], [ -87.538204, 38.527622 ], [ -87.538376, 38.548165 ], [ -87.538633, 38.553535 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.545929, 38.519564 ], [ -87.542839, 38.521041 ], [ -87.541466, 38.521780 ], [ -87.539749, 38.523324 ], [ -87.539062, 38.524130 ], [ -87.538204, 38.525876 ], [ -87.537947, 38.527756 ], [ -87.538118, 38.548165 ], [ -87.538290, 38.553535 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 10, "x": 263, "y": 392 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473059, 38.759505 ], [ -87.469282, 38.768941 ], [ -87.465935, 38.778309 ], [ -87.465334, 38.780718 ], [ -87.464046, 38.789014 ], [ -87.463617, 38.790754 ], [ -87.463017, 38.792226 ], [ -87.461386, 38.794901 ], [ -87.449026, 38.811356 ], [ -87.447395, 38.813897 ], [ -87.446108, 38.816907 ], [ -87.444649, 38.822591 ], [ -87.443275, 38.827940 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.538290, 38.542795 ], [ -87.538376, 38.548165 ], [ -87.538633, 38.554274 ], [ -87.538633, 38.575011 ], [ -87.538805, 38.591919 ], [ -87.539062, 38.599164 ], [ -87.539062, 38.609024 ], [ -87.538977, 38.610566 ], [ -87.538548, 38.612042 ], [ -87.534685, 38.620827 ], [ -87.533484, 38.624247 ], [ -87.532711, 38.627399 ], [ -87.529707, 38.644629 ], [ -87.529106, 38.646506 ], [ -87.527733, 38.648584 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.538033, 38.542795 ], [ -87.538118, 38.548165 ], [ -87.538376, 38.555146 ], [ -87.538376, 38.574005 ], [ -87.538633, 38.594602 ], [ -87.538805, 38.600036 ], [ -87.538805, 38.609963 ], [ -87.538290, 38.611975 ], [ -87.533913, 38.622101 ], [ -87.533140, 38.624448 ], [ -87.532625, 38.626661 ], [ -87.529449, 38.644495 ], [ -87.528934, 38.646171 ], [ -87.527561, 38.648316 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694889 ], [ -87.488251, 38.697568 ], [ -87.486877, 38.698305 ], [ -87.486019, 38.698975 ], [ -87.485075, 38.699980 ], [ -87.484131, 38.701588 ], [ -87.483873, 38.702458 ], [ -87.483702, 38.703798 ], [ -87.484303, 38.722684 ], [ -87.482758, 38.734000 ], [ -87.482071, 38.736946 ], [ -87.469282, 38.768941 ], [ -87.466364, 38.776904 ], [ -87.465334, 38.780718 ], [ -87.463875, 38.789683 ], [ -87.463017, 38.792226 ], [ -87.461386, 38.794901 ], [ -87.449026, 38.811356 ], [ -87.447395, 38.813897 ], [ -87.446108, 38.816907 ], [ -87.444649, 38.822591 ], [ -87.443275, 38.827940 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493315, 38.694956 ], [ -87.487564, 38.697702 ], [ -87.486706, 38.698305 ], [ -87.485590, 38.699243 ], [ -87.484903, 38.699980 ], [ -87.484303, 38.700784 ], [ -87.483788, 38.701989 ], [ -87.483530, 38.702793 ], [ -87.483444, 38.704602 ], [ -87.484131, 38.722349 ], [ -87.482586, 38.733598 ], [ -87.481728, 38.736946 ], [ -87.468939, 38.769008 ], [ -87.466192, 38.776570 ], [ -87.464991, 38.780651 ], [ -87.463617, 38.789349 ], [ -87.462931, 38.791557 ], [ -87.462072, 38.793229 ], [ -87.461300, 38.794567 ], [ -87.448854, 38.811088 ], [ -87.447653, 38.812894 ], [ -87.446709, 38.814566 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.442932, 38.827940 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493315, 38.694956 ], [ -87.487564, 38.697702 ], [ -87.486706, 38.698305 ], [ -87.485590, 38.699243 ], [ -87.484903, 38.699980 ], [ -87.484303, 38.700784 ], [ -87.483788, 38.701989 ], [ -87.483530, 38.702793 ], [ -87.483444, 38.704602 ], [ -87.484131, 38.722349 ], [ -87.482586, 38.733598 ], [ -87.481728, 38.736946 ], [ -87.468939, 38.769008 ], [ -87.466192, 38.776570 ], [ -87.464991, 38.780651 ], [ -87.463617, 38.789349 ], [ -87.462931, 38.791557 ], [ -87.462072, 38.793229 ], [ -87.461300, 38.794567 ], [ -87.448854, 38.811088 ], [ -87.447653, 38.812894 ], [ -87.446709, 38.814566 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.442932, 38.827940 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493315, 38.694956 ], [ -87.487564, 38.697702 ], [ -87.486706, 38.698305 ], [ -87.485590, 38.699243 ], [ -87.484903, 38.699980 ], [ -87.484303, 38.700784 ], [ -87.483788, 38.701989 ], [ -87.483530, 38.702793 ], [ -87.483444, 38.704602 ], [ -87.484131, 38.722349 ], [ -87.482586, 38.733598 ], [ -87.481728, 38.736946 ], [ -87.468939, 38.769008 ], [ -87.466192, 38.776570 ], [ -87.464991, 38.780651 ], [ -87.463617, 38.789349 ], [ -87.462931, 38.791557 ], [ -87.462072, 38.793229 ], [ -87.461300, 38.794567 ], [ -87.448854, 38.811088 ], [ -87.447653, 38.812894 ], [ -87.446709, 38.814566 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.442932, 38.827940 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624700", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519236, 38.707415 ], [ -87.510910, 38.707884 ], [ -87.509108, 38.707884 ], [ -87.505760, 38.707482 ], [ -87.503872, 38.706946 ], [ -87.502327, 38.706410 ], [ -87.500696, 38.705539 ], [ -87.498808, 38.704267 ], [ -87.497435, 38.703061 ], [ -87.496662, 38.702056 ], [ -87.495203, 38.699712 ], [ -87.493315, 38.694956 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469553886", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519236, 38.707214 ], [ -87.510996, 38.707616 ], [ -87.509108, 38.707683 ], [ -87.506704, 38.707415 ], [ -87.505417, 38.707147 ], [ -87.503099, 38.706410 ], [ -87.502155, 38.706008 ], [ -87.500782, 38.705339 ], [ -87.499237, 38.704200 ], [ -87.497778, 38.702927 ], [ -87.496576, 38.701521 ], [ -87.495546, 38.699712 ], [ -87.493744, 38.694889 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485838817", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.497005, 38.693281 ], [ -87.496576, 38.693415 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694889 ], [ -87.497005, 38.693281 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.474861, 38.755020 ], [ -87.481813, 38.737683 ], [ -87.482672, 38.734603 ], [ -87.484303, 38.722684 ], [ -87.483702, 38.703798 ], [ -87.483959, 38.701922 ], [ -87.484474, 38.700918 ], [ -87.485075, 38.699980 ], [ -87.486019, 38.698975 ], [ -87.486877, 38.698305 ], [ -87.488251, 38.697568 ], [ -87.493744, 38.694889 ], [ -87.493658, 38.694822 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841663", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493658, 38.694822 ], [ -87.493744, 38.694889 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841555", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493658, 38.694822 ], [ -87.493315, 38.694956 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841666", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493658, 38.694822 ], [ -87.493315, 38.694956 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841667", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.496576, 38.693415 ], [ -87.493658, 38.694822 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841556", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.496576, 38.693415 ], [ -87.493658, 38.694822 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257622329", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492800, 38.692678 ], [ -87.493744, 38.694889 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841665", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.490568, 38.687654 ], [ -87.493315, 38.694956 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257599171", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.490568, 38.687654 ], [ -87.493315, 38.694956 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841553", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493658, 38.694822 ], [ -87.490568, 38.686850 ], [ -87.490311, 38.685443 ], [ -87.490139, 38.682428 ], [ -87.489882, 38.681356 ], [ -87.489109, 38.679882 ], [ -87.487822, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677537 ], [ -87.484388, 38.678609 ], [ -87.485247, 38.679145 ], [ -87.486362, 38.680016 ], [ -87.487135, 38.680954 ], [ -87.489023, 38.684170 ], [ -87.489967, 38.686180 ], [ -87.493315, 38.694956 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627422", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.509365, 38.661788 ], [ -87.503529, 38.665675 ], [ -87.491856, 38.674320 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070259", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.535543, 38.619955 ], [ -87.534170, 38.623107 ], [ -87.533569, 38.625052 ], [ -87.533226, 38.627130 ], [ -87.533569, 38.628740 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624305", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.672310 ], [ -87.493744, 38.673315 ], [ -87.492542, 38.674588 ], [ -87.490654, 38.677604 ], [ -87.490225, 38.678944 ], [ -87.490311, 38.685443 ], [ -87.490740, 38.687319 ], [ -87.491426, 38.689195 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257627423", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.491856, 38.674320 ], [ -87.490225, 38.675392 ], [ -87.489109, 38.676330 ], [ -87.488251, 38.677537 ], [ -87.487736, 38.678877 ], [ -87.487564, 38.679681 ], [ -87.487650, 38.681155 ], [ -87.487993, 38.682227 ], [ -87.489023, 38.684170 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677537 ], [ -87.484388, 38.678609 ], [ -87.485247, 38.679145 ], [ -87.486706, 38.680351 ], [ -87.487650, 38.681758 ], [ -87.489281, 38.684773 ], [ -87.490568, 38.687654 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070276", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.487822, 38.678542 ], [ -87.489109, 38.679882 ], [ -87.489710, 38.680954 ], [ -87.490139, 38.682428 ], [ -87.490225, 38.683701 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070320", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677537 ], [ -87.484818, 38.678609 ], [ -87.486105, 38.678743 ], [ -87.487822, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070272", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677537 ], [ -87.484818, 38.678609 ], [ -87.486105, 38.678743 ], [ -87.487822, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070318", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492542, 38.674655 ], [ -87.490997, 38.676732 ], [ -87.490396, 38.677335 ], [ -87.489109, 38.678073 ], [ -87.487822, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070277", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492542, 38.674655 ], [ -87.490997, 38.676732 ], [ -87.490396, 38.677335 ], [ -87.489109, 38.678073 ], [ -87.487822, 38.678542 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257616296", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.491856, 38.674320 ], [ -87.488937, 38.676062 ], [ -87.487650, 38.676464 ], [ -87.486620, 38.676732 ], [ -87.485676, 38.676799 ], [ -87.484131, 38.676799 ], [ -87.480354, 38.676129 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170071138", "FULLNAME": "E US Hwy 50-150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.471170, 38.674722 ], [ -87.475376, 38.675057 ], [ -87.480354, 38.676129 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.538290, 38.542795 ], [ -87.538376, 38.548165 ], [ -87.538633, 38.554274 ], [ -87.538633, 38.575011 ], [ -87.538805, 38.591919 ], [ -87.539062, 38.599164 ], [ -87.539062, 38.609024 ], [ -87.538977, 38.610566 ], [ -87.538548, 38.612042 ], [ -87.534685, 38.620827 ], [ -87.533484, 38.624247 ], [ -87.532711, 38.627399 ], [ -87.529707, 38.644629 ], [ -87.529106, 38.646506 ], [ -87.528076, 38.648115 ], [ -87.527218, 38.649120 ], [ -87.525759, 38.650461 ], [ -87.516575, 38.657164 ], [ -87.503357, 38.666078 ], [ -87.493744, 38.673315 ], [ -87.492542, 38.674588 ], [ -87.490654, 38.677604 ], [ -87.490225, 38.679413 ], [ -87.490311, 38.684907 ], [ -87.490482, 38.686515 ], [ -87.491426, 38.689195 ], [ -87.493658, 38.694822 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.538033, 38.542795 ], [ -87.538118, 38.548165 ], [ -87.538376, 38.555146 ], [ -87.538376, 38.574005 ], [ -87.538548, 38.591986 ], [ -87.538805, 38.600036 ], [ -87.538805, 38.609158 ], [ -87.538548, 38.610969 ], [ -87.538290, 38.611975 ], [ -87.533913, 38.622101 ], [ -87.533140, 38.624448 ], [ -87.532625, 38.626661 ], [ -87.529449, 38.644495 ], [ -87.529278, 38.645433 ], [ -87.528419, 38.647109 ], [ -87.527304, 38.648718 ], [ -87.526016, 38.649925 ], [ -87.516832, 38.656695 ], [ -87.509451, 38.661721 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613150", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.487822, 38.678542 ], [ -87.486534, 38.677738 ], [ -87.485247, 38.677201 ], [ -87.475376, 38.675057 ], [ -87.473917, 38.674856 ], [ -87.460957, 38.674052 ], [ -87.456923, 38.673918 ], [ -87.428083, 38.675593 ], [ -87.425251, 38.676062 ], [ -87.412634, 38.679681 ], [ -87.410660, 38.679949 ], [ -87.408943, 38.679949 ], [ -87.395897, 38.678207 ], [ -87.374783, 38.675861 ], [ -87.369289, 38.675124 ], [ -87.356844, 38.672645 ], [ -87.335300, 38.668289 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104469613492", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.487822, 38.678542 ], [ -87.486534, 38.677738 ], [ -87.485247, 38.677201 ], [ -87.475376, 38.675057 ], [ -87.473917, 38.674856 ], [ -87.460957, 38.674052 ], [ -87.456923, 38.673918 ], [ -87.428083, 38.675593 ], [ -87.425251, 38.676062 ], [ -87.412634, 38.679681 ], [ -87.410660, 38.679949 ], [ -87.408943, 38.679949 ], [ -87.395897, 38.678207 ], [ -87.374783, 38.675861 ], [ -87.369289, 38.675124 ], [ -87.356844, 38.672645 ], [ -87.335300, 38.668289 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610285", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335043, 38.668490 ], [ -87.371178, 38.675660 ], [ -87.374268, 38.676129 ], [ -87.395811, 38.678408 ], [ -87.402849, 38.679413 ], [ -87.409201, 38.680150 ], [ -87.410831, 38.680150 ], [ -87.412720, 38.679882 ], [ -87.425079, 38.676330 ], [ -87.427654, 38.675861 ], [ -87.455292, 38.674186 ], [ -87.458725, 38.674119 ], [ -87.460957, 38.674253 ], [ -87.473230, 38.675057 ], [ -87.475376, 38.675459 ], [ -87.476664, 38.675794 ], [ -87.481556, 38.677537 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677537 ], [ -87.476664, 38.675794 ], [ -87.475376, 38.675459 ], [ -87.473230, 38.675057 ], [ -87.460957, 38.674253 ], [ -87.458725, 38.674119 ], [ -87.455292, 38.674186 ], [ -87.427654, 38.675861 ], [ -87.425079, 38.676330 ], [ -87.412720, 38.679882 ], [ -87.410831, 38.680150 ], [ -87.409201, 38.680150 ], [ -87.402849, 38.679413 ], [ -87.395811, 38.678408 ], [ -87.374268, 38.676129 ], [ -87.371178, 38.675660 ], [ -87.335043, 38.668490 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257640853", "FULLNAME": "E US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.324314, 38.665072 ], [ -87.317362, 38.661721 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685675", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.274961, 38.646439 ], [ -87.283630, 38.647914 ], [ -87.285862, 38.648383 ], [ -87.289467, 38.649388 ], [ -87.293415, 38.650729 ], [ -87.297535, 38.652673 ], [ -87.325430, 38.665810 ], [ -87.329292, 38.667217 ], [ -87.335043, 38.668490 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686635", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.274961, 38.646439 ], [ -87.283630, 38.647914 ], [ -87.285862, 38.648383 ], [ -87.289467, 38.649388 ], [ -87.293415, 38.650729 ], [ -87.297535, 38.652673 ], [ -87.325430, 38.665810 ], [ -87.329292, 38.667217 ], [ -87.335043, 38.668490 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335300, 38.668289 ], [ -87.331781, 38.667619 ], [ -87.329121, 38.666949 ], [ -87.326374, 38.665944 ], [ -87.316246, 38.661252 ], [ -87.295218, 38.651265 ], [ -87.290583, 38.649456 ], [ -87.285862, 38.648115 ], [ -87.282257, 38.647377 ], [ -87.274876, 38.646238 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335300, 38.668289 ], [ -87.331781, 38.667619 ], [ -87.329121, 38.666949 ], [ -87.326374, 38.665944 ], [ -87.316246, 38.661252 ], [ -87.295218, 38.651265 ], [ -87.290583, 38.649456 ], [ -87.285862, 38.648115 ], [ -87.282257, 38.647377 ], [ -87.274876, 38.646238 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685645", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.281313, 38.648450 ], [ -87.283115, 38.649724 ], [ -87.283974, 38.650260 ], [ -87.285347, 38.650863 ], [ -87.286978, 38.651332 ], [ -87.292042, 38.652338 ], [ -87.294359, 38.653142 ], [ -87.296247, 38.654282 ], [ -87.298737, 38.656225 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685646", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.251787, 38.646640 ], [ -87.265005, 38.645769 ], [ -87.267151, 38.645702 ], [ -87.271786, 38.645970 ], [ -87.279596, 38.647243 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104472002543", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.251787, 38.646640 ], [ -87.266378, 38.645702 ], [ -87.271786, 38.645970 ], [ -87.274961, 38.646439 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471680885", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.251787, 38.646640 ], [ -87.266378, 38.645702 ], [ -87.271786, 38.645970 ], [ -87.274961, 38.646439 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.274876, 38.646238 ], [ -87.271700, 38.645769 ], [ -87.265434, 38.645501 ], [ -87.251616, 38.646372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.274876, 38.646238 ], [ -87.271700, 38.645769 ], [ -87.265434, 38.645501 ], [ -87.251616, 38.646372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170072467", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.251616, 38.646372 ], [ -87.265434, 38.645501 ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 10, "x": 263, "y": 391 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.446022, 38.817241 ], [ -87.444649, 38.822591 ], [ -87.433662, 38.865976 ], [ -87.433319, 38.867714 ], [ -87.433319, 38.868984 ], [ -87.433491, 38.870186 ], [ -87.433920, 38.871590 ], [ -87.434521, 38.872726 ], [ -87.435808, 38.874530 ], [ -87.439413, 38.878272 ], [ -87.440786, 38.880143 ], [ -87.442160, 38.882815 ], [ -87.442846, 38.885621 ], [ -87.442846, 38.888093 ], [ -87.442331, 38.890766 ], [ -87.437868, 38.902255 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070260", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.449112, 38.832153 ], [ -87.449112, 38.833022 ], [ -87.446795, 38.847930 ], [ -87.446280, 38.848933 ], [ -87.444477, 38.852008 ], [ -87.444391, 38.852542 ], [ -87.444477, 38.852943 ], [ -87.444820, 38.853478 ], [ -87.447824, 38.855417 ], [ -87.448339, 38.856152 ], [ -87.447996, 38.863036 ], [ -87.447653, 38.864372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.446022, 38.817241 ], [ -87.444649, 38.822591 ], [ -87.433662, 38.865976 ], [ -87.433319, 38.867714 ], [ -87.433319, 38.868984 ], [ -87.433491, 38.870186 ], [ -87.433920, 38.871590 ], [ -87.434521, 38.872726 ], [ -87.435808, 38.874530 ], [ -87.439413, 38.878272 ], [ -87.440786, 38.880143 ], [ -87.442160, 38.882815 ], [ -87.442846, 38.885621 ], [ -87.442846, 38.888093 ], [ -87.442331, 38.890766 ], [ -87.437868, 38.902255 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.445679, 38.817241 ], [ -87.444305, 38.822591 ], [ -87.433405, 38.865642 ], [ -87.432976, 38.867914 ], [ -87.433147, 38.870186 ], [ -87.433491, 38.871256 ], [ -87.434006, 38.872525 ], [ -87.435293, 38.874329 ], [ -87.438984, 38.878138 ], [ -87.440615, 38.880276 ], [ -87.441816, 38.882815 ], [ -87.442245, 38.884152 ], [ -87.442503, 38.885822 ], [ -87.442503, 38.888695 ], [ -87.442074, 38.890699 ], [ -87.437525, 38.902255 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.445679, 38.817241 ], [ -87.444305, 38.822591 ], [ -87.433405, 38.865642 ], [ -87.432976, 38.867914 ], [ -87.433147, 38.870186 ], [ -87.433491, 38.871256 ], [ -87.434006, 38.872525 ], [ -87.435293, 38.874329 ], [ -87.438984, 38.878138 ], [ -87.440615, 38.880276 ], [ -87.441816, 38.882815 ], [ -87.442245, 38.884152 ], [ -87.442503, 38.885822 ], [ -87.442503, 38.888695 ], [ -87.442074, 38.890699 ], [ -87.437525, 38.902255 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.445679, 38.817241 ], [ -87.444305, 38.822591 ], [ -87.433405, 38.865642 ], [ -87.432976, 38.867914 ], [ -87.433147, 38.870186 ], [ -87.433491, 38.871256 ], [ -87.434006, 38.872525 ], [ -87.435293, 38.874329 ], [ -87.438984, 38.878138 ], [ -87.440615, 38.880276 ], [ -87.441816, 38.882815 ], [ -87.442245, 38.884152 ], [ -87.442503, 38.885822 ], [ -87.442503, 38.888695 ], [ -87.442074, 38.890699 ], [ -87.437525, 38.902255 ] ] } } +] } +] } +] } diff --git a/tests/longattr/out/-z0.json b/tests/longattr/out/-z0.json new file mode 100644 index 0000000..7bd134e --- /dev/null +++ b/tests/longattr/out/-z0.json @@ -0,0 +1,18 @@ +{ "type": "FeatureCollection", "properties": { +"bounds": "0.000000,0.000000,0.000000,0.000000", +"center": "0.000000,0.000000,0", +"description": "tests/longattr/out/-z0.json.check.mbtiles", +"format": "pbf", +"json": "{\"vector_layers\": [ { \"id\": \"sherlock\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"sherlock\": \"String\"} } ] }", +"maxzoom": "0", +"minzoom": "0", +"name": "tests/longattr/out/-z0.json.check.mbtiles", +"type": "overlay", +"version": "2" +}, "features": [ +{ "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "sherlock", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "sherlock": "The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\u000a\u000aThis eBook is for the use of anyone anywhere at no cost and with\u000aalmost no restrictions whatsoever. You may copy it, give it away or\u000are-use it under the terms of the Project Gutenberg License included\u000awith this eBook or online at www.gutenberg.org\u000a\u000a\u000aTitle: A Study In Scarlet\u000a\u000aAuthor: Arthur Conan Doyle\u000a\u000aPosting Date: July 12, 2008 [EBook #244]\u000aRelease Date: April, 1995\u000aLast Updated: September 30, 2016\u000a\u000aLanguage: English\u000a\u000aCharacter set encoding: UTF-8\u000a\u000a*** START OF THIS PROJECT GUTENBERG EBOOK A STUDY IN SCARLET ***\u000a\u000a\u000a\u000a\u000aProduced by Roger Squires\u000a\u000a\u000a\u000a\u000a\u000aA STUDY IN SCARLET.\u000a\u000aBy A. Conan Doyle\u000a\u000a[1]\u000a\u000a\u000a\u000a Original Transcriber’s Note: This etext is prepared directly\u000a from an 1887 edition, and care has been taken to duplicate the\u000a original exactly, including typographical and punctuation\u000a vagaries.\u000a\u000a Additions to the text include adding the underscore character to\u000a indicate italics, and textual end-notes in square braces.\u000a\u000a Project Gutenberg Editor’s Note: In reproofing and moving old PG\u000a files such as this to the present PG directory system it is the\u000a policy to reformat the text to conform to present PG Standards.\u000a In this case however, in consideration of the note above of the\u000a original transcriber describing his care to try to duplicate the\u000a original 1887 edition as to typography and punctuation vagaries,\u000a no changes have been made in this ascii text file. However, in\u000a the Latin-1 file and this html file, present standards are\u000a followed and the several French and Spanish words have been\u000a given their proper accents.\u000a\u000a\u0009 Part II, The Country of the Saints, deals much with the Mormon Church.\u000a\u000a\u000a\u000a\u000aA STUDY IN SCARLET.\u000a\u000a\u000a\u000a\u000a\u000aPART I.\u000a\u000a(_Being a reprint from the reminiscences of_ JOHN H. WATSON, M.D., _late\u000aof the Army Medical Department._) [2]\u000a\u000a\u000a\u000a\u000aCHAPTER I. MR. SHERLOCK HOLMES.\u000a\u000a\u000aIN the year 1878 I took my degree of Doctor of Medicine of the\u000aUniversity of London, and proceeded to Netley to go through the course\u000aprescribed for surgeons in the army. Having completed my studies there,\u000aI was duly attached to the Fifth Northumberland Fusiliers as Assistant\u000aSurgeon. The regiment was stationed in India at the time, and before\u000aI could join it, the second Afghan war had broken out. On landing at\u000aBombay, I learned that my corps had advanced through the passes, and\u000awas already deep in the enemy’s country. I followed, however, with many\u000aother officers who were in the same situation as myself, and succeeded\u000ain reaching Candahar in safety, where I found my regiment, and at once\u000aentered upon my new duties.\u000a\u000aThe campaign brought honours and promotion to many, but for me it had\u000anothing but misfortune and disaster. I was removed from my brigade and\u000aattached to the Berkshires, with whom I served at the fatal battle of\u000aMaiwand. There I was struck on the shoulder by a Jezail bullet, which\u000ashattered the bone and grazed the subclavian artery. I should have\u000afallen into the hands of the murderous Ghazis had it not been for the\u000adevotion and courage shown by Murray, my orderly, who threw me across a\u000apack-horse, and succeeded in bringing me safely to the British lines.\u000a\u000aWorn with pain, and weak from the prolonged hardships which I had\u000aundergone, I was removed, with a great train of wounded sufferers, to\u000athe base hospital at Peshawar. Here I rallied, and had already improved\u000aso far as to be able to walk about the wards, and even to bask a little\u000aupon the verandah, when I was struck down by enteric fever, that curse\u000aof our Indian possessions. For months my life was despaired of, and\u000awhen at last I came to myself and became convalescent, I was so weak and\u000aemaciated that a medical board determined that not a day should be lost\u000ain sending me back to England. I was dispatched, accordingly, in the\u000atroopship “Orontes,” and landed a month later on Portsmouth jetty, with\u000amy health irretrievably ruined, but with permission from a paternal\u000agovernment to spend the next nine months in attempting to improve it.\u000a\u000aI had neither kith nor kin in England, and was therefore as free as\u000aair--or as free as an income of eleven shillings and sixpence a day will\u000apermit a man to be. Under such circumstances, I naturally gravitated to\u000aLondon, that great cesspool into which all the loungers and idlers of\u000athe Empire are irresistibly drained. There I stayed for some time at\u000aa private hotel in the Strand, leading a comfortless, meaningless\u000aexistence, and spending such money as I had, considerably more freely\u000athan I ought. So alarming did the state of my finances become, that\u000aI soon realized that I must either leave the metropolis and rusticate\u000asomewhere in the country, or that I must make a complete alteration in\u000amy style of living. Choosing the latter alternative, I began by making\u000aup my mind to leave the hotel, and to take up my quarters in some less\u000apretentious and less expensive domicile.\u000a\u000aOn the very day that I had come to this conclusion, I was standing at\u000athe Criterion Bar, when some one tapped me on the shoulder, and turning\u000around I recognized young Stamford, who had been a dresser under me at\u000aBarts. The sight of a friendly face in the great wilderness of London is\u000aa pleasant thing indeed to a lonely man. In old days Stamford had never\u000abeen a particular crony of mine, but now I hailed him with enthusiasm,\u000aand he, in his turn, appeared to be delighted to see me. In the\u000aexuberance of my joy, I asked him to lunch with me at the Holborn, and\u000awe started off together in a hansom.\u000a\u000a“Whatever have you been doing with yourself, Watson?” he asked in\u000aundisguised wonder, as we rattled through the crowded London streets.\u000a“You are as thin as a lath and as brown as a nut.”\u000a\u000aI gave him a short sketch of my adventures, and had hardly concluded it\u000aby the time that we reached our destination.\u000a\u000a“Poor devil!” he said, commiseratingly, after he had listened to my\u000amisfortunes. “What are you up to now?”\u000a\u000a“Looking for lodgings.” [3] I answered. “Trying to solve the problem\u000aas to whether it is possible to get comfortable rooms at a reasonable\u000aprice.”\u000a\u000a“That’s a strange thing,” remarked my companion; “you are the second man\u000ato-day that has used that expression to me.”\u000a\u000a“And who was the first?” I asked.\u000a\u000a“A fellow who is working at the chemical laboratory up at the hospital.\u000aHe was bemoaning himself this morning because he could not get someone\u000ato go halves with him in some nice rooms which he had found, and which\u000awere too much for his purse.”\u000a\u000a“By Jove!” I cried, “if he really wants someone to share the rooms and\u000athe expense, I am the very man for him. I should prefer having a partner\u000ato being alone.”\u000a\u000aYoung Stamford looked rather strangely at me over his wine-glass. “You\u000adon’t know Sherlock Holmes yet,” he said; “perhaps you would not care\u000afor him as a constant companion.”\u000a\u000a“Why, what is there against him?”\u000a\u000a“Oh, I didn’t say there was anything against him. He is a little queer\u000ain his ideas--an enthusiast in some branches of science. As far as I\u000aknow he is a decent fellow enough.”\u000a\u000a“A medical student, I suppose?” said I.\u000a\u000a“No--I have no idea what he intends to go in for. I believe he is well\u000aup in anatomy, and he is a first-class chemist; but, as far as I know,\u000ahe has never taken out any systematic medical classes. His studies are\u000avery desultory and eccentric, but he has amassed a lot of out-of-the way\u000aknowledge which would astonish his professors.”\u000a\u000a“Did you never ask him what he was going in for?” I asked.\u000a\u000a“No; he is not a man that it is easy to draw out, though he can be\u000acommunicative enough when the fancy seizes him.”\u000a\u000a“I should like to meet him,” I said. “If I am to lodge with anyone, I\u000ashould prefer a man of studious and quiet habits. I am not strong\u000aenough yet to stand much noise or excitement. I had enough of both in\u000aAfghanistan to last me for the remainder of my natural existence. How\u000acould I meet this friend of yours?”\u000a\u000a“He is sure to be at the laboratory,” returned my companion. “He either\u000aavoids the place for weeks, or else he works there from morning to\u000anight. If you like, we shall drive round together after luncheon.”\u000a\u000a“Certainly,” I answered, and the conversation drifted away into other\u000achannels.\u000a\u000aAs we made our way to the hospital after leaving the Holborn, Stamford\u000agave me a few more particulars about the gentleman whom I proposed to\u000atake as a fellow-lodger.\u000a\u000a“You mustn’t blame me if you don’t get on with him,” he said; “I know\u000anothing more of him than I have learned from meeting him occasionally in\u000athe laboratory. You proposed this arrangement, so you must not hold me\u000aresponsible.”\u000a\u000a“If we don’t get on it will be easy to part company,” I answered. “It\u000aseems to me, Stamford,” I added, looking hard at my companion, “that you\u000ahave some reason for washing your hands of the matter. Is this fellow’s\u000atemper so formidable, or what is it? Don’t be mealy-mouthed about it.”\u000a\u000a“It is not easy to express the inexpressible,” he answered with a laugh.\u000a“Holmes is a little too scientific for my tastes--it approaches to\u000acold-bloodedness. I could imagine his giving a friend a little pinch of\u000athe latest vegetable alkaloid, not out of malevolence, you understand,\u000abut simply out of a spirit of inquiry in order to have an accurate idea\u000aof the effects. To do him justice, I think that he would take it himself\u000awith the same readiness. He appears to have a passion for definite and\u000aexact knowledge.”\u000a\u000a“Very right too.”\u000a\u000a“Yes, but it may be pushed to excess. When it comes to beating the\u000asubjects in the dissecting-rooms with a stick, it is certainly taking\u000arather a bizarre shape.”\u000a\u000a“Beating the subjects!”\u000a\u000a“Yes, to verify how far bruises may be produced after death. I saw him\u000aat it with my own eyes.”\u000a\u000a“And yet you say he is not a medical student?”\u000a\u000a“No. Heaven knows what the objects of his studies are. But here we\u000aare, and you must form your own impressions about him.” As he spoke, we\u000aturned down a narrow lane and passed through a small side-door, which\u000aopened into a wing of the great hospital. It was familiar ground to me,\u000aand I needed no guiding as we ascended the bleak stone staircase and\u000amade our way down the long corridor with its vista of whitewashed\u000awall and dun-coloured doors. Near the further end a low arched passage\u000abranched away from it and led to the chemical laboratory.\u000a\u000aThis was a lofty chamber, lined and littered with countless bottles.\u000aBroad, low tables were scattered about, which bristled with retorts,\u000atest-tubes, and little Bunsen lamps, with their blue flickering flames.\u000aThere was only one student in the room, who was bending over a distant\u000atable absorbed in his work. At the sound of our steps he glanced round\u000aand sprang to his feet with a cry of pleasure. “I’ve found it! I’ve\u000afound it,” he shouted to my companion, running towards us with a\u000atest-tube in his hand. “I have found a re-agent which is precipitated\u000aby hoemoglobin, [4] and by nothing else.” Had he discovered a gold mine,\u000agreater delight could not have shone upon his features.\u000a\u000a“Dr. Watson, Mr. Sherlock Holmes,” said Stamford, introducing us.\u000a\u000a“How are you?” he said cordially, gripping my hand with a strength\u000afor which I should hardly have given him credit. “You have been in\u000aAfghanistan, I perceive.”\u000a\u000a“How on earth did you know that?” I asked in astonishment.\u000a\u000a“Never mind,” said he, chuckling to himself. “The question now is about\u000ahoemoglobin. No doubt you see the significance of this discovery of\u000amine?”\u000a\u000a“It is interesting, chemically, no doubt,” I answered, “but\u000apractically----”\u000a\u000a“Why, man, it is the most practical medico-legal discovery for years.\u000aDon’t you see that it gives us an infallible test for blood stains. Come\u000aover here now!” He seized me by the coat-sleeve in his eagerness, and\u000adrew me over to the table at which he had been working. “Let us have\u000asome fresh blood,” he said, digging a long bodkin into his finger, and\u000adrawing off the resulting drop of blood in a chemical pipette. “Now, I\u000aadd this small quantity of blood to a litre of water. You perceive that\u000athe resulting mixture has the appearance of pure water. The proportion\u000aof blood cannot be more than one in a million. I have no doubt, however,\u000athat we shall be able to obtain the characteristic reaction.” As he\u000aspoke, he threw into the vessel a few white crystals, and then added\u000asome drops of a transparent fluid. In an instant the contents assumed a\u000adull mahogany colour, and a brownish dust was precipitated to the bottom\u000aof the glass jar.\u000a\u000a“Ha! ha!” he cried, clapping his hands, and looking as delighted as a\u000achild with a new toy. “What do you think of that?”\u000a\u000a“It seems to be a very delicate test,” I remarked.\u000a\u000a“Beautiful! beautiful! The old Guiacum test was very clumsy and\u000auncertain. So is the microscopic examination for blood corpuscles. The\u000alatter is valueless if the stains are a few hours old. Now, this appears\u000ato act as well whether the blood is old or new. Had this test been\u000ainvented, there are hundreds of men now walking the earth who would long\u000aago have paid the penalty of their crimes.”\u000a\u000a“Indeed!” I murmured.\u000a\u000a“Criminal cases are continually hinging upon that one point. A man is\u000asuspected of a crime months perhaps after it has been committed. His\u000alinen or clothes are examined, and brownish stains discovered upon them.\u000aAre they blood stains, or mud stains, or rust stains, or fruit stains,\u000aor what are they? That is a question which has puzzled many an expert,\u000aand why? Because there was no reliable test. Now we have the Sherlock\u000aHolmes’ test, and there will no longer be any difficulty.”\u000a\u000aHis eyes fairly glittered as he spoke, and he put his hand over his\u000aheart and bowed as if to some applauding crowd conjured up by his\u000aimagination.\u000a\u000a“You are to be congratulated,” I remarked, considerably surprised at his\u000aenthusiasm.\u000a\u000a“There was the case of Von Bischoff at Frankfort last year. He would\u000acertainly have been hung had this test been in existence. Then there was\u000aMason of Bradford, and the notorious Muller, and Lefevre of Montpellier,\u000aand Samson of New Orleans. I could name a score of cases in which it\u000awould have been decisive.”\u000a\u000a“You seem to be a walking calendar of crime,” said Stamford with a\u000alaugh. “You might start a paper on those lines. Call it the ‘Police News\u000aof the Past.’”\u000a\u000a“Very interesting reading it might be made, too,” remarked Sherlock\u000aHolmes, sticking a small piece of plaster over the prick on his finger.\u000a“I have to be careful,” he continued, turning to me with a smile, “for I\u000adabble with poisons a good deal.” He held out his hand as he spoke, and\u000aI noticed that it was all mottled over with similar pieces of plaster,\u000aand discoloured with strong acids.\u000a\u000a“We came here on business,” said Stamford, sitting down on a high\u000athree-legged stool, and pushing another one in my direction with\u000ahis foot. “My friend here wants to take diggings, and as you were\u000acomplaining that you could get no one to go halves with you, I thought\u000athat I had better bring you together.”\u000a\u000aSherlock Holmes seemed delighted at the idea of sharing his rooms with\u000ame. “I have my eye on a suite in Baker Street,” he said, “which would\u000asuit us down to the ground. You don’t mind the smell of strong tobacco,\u000aI hope?”\u000a\u000a“I always smoke ‘ship’s’ myself,” I answered.\u000a\u000a“That’s good enough. I generally have chemicals about, and occasionally\u000ado experiments. Would that annoy you?”\u000a\u000a“By no means.”\u000a\u000a“Let me see--what are my other shortcomings. I get in the dumps at\u000atimes, and don’t open my mouth for days on end. You must not think I am\u000asulky when I do that. Just let me alone, and I’ll soon be right. What\u000ahave you to confess now? It’s just as well for two fellows to know the\u000aworst of one another before they begin to live together.”\u000a\u000aI laughed at this cross-examination. “I keep a bull pup,” I said, “and\u000aI object to rows because my nerves are shaken, and I get up at all sorts\u000aof ungodly hours, and I am extremely lazy. I have another set of vices\u000awhen I’m well, but those are the principal ones at present.”\u000a\u000a“Do you include violin-playing in your category of rows?” he asked,\u000aanxiously.\u000a\u000a“It depends on the player,” I answered. “A well-played violin is a treat\u000afor the gods--a badly-played one----”\u000a\u000a“Oh, that’s all right,” he cried, with a merry laugh. “I think we may\u000aconsider the thing as settled--that is, if the rooms are agreeable to\u000ayou.”\u000a\u000a“When shall we see them?”\u000a\u000a“Call for me here at noon to-morrow, and we’ll go together and settle\u000aeverything,” he answered.\u000a\u000a“All right--noon exactly,” said I, shaking his hand.\u000a\u000aWe left him working among his chemicals, and we walked together towards\u000amy hotel.\u000a\u000a“By the way,” I asked suddenly, stopping and turning upon Stamford, “how\u000athe deuce did he know that I had come from Afghanistan?”\u000a\u000aMy companion smiled an enigmatical smile. “That’s just his little\u000apeculiarity,” he said. “A good many people have wanted to know how he\u000afinds things out.”\u000a\u000a“Oh! a mystery is it?” I cried, rubbing my hands. “This is very piquant.\u000aI am much obliged to you for bringing us together. ‘The proper study of\u000amankind is man,’ you know.”\u000a\u000a“You must study him, then,” Stamford said, as he bade me good-bye.\u000a“You’ll find him a knotty problem, though. I’ll wager he learns more\u000aabout you than you about him. Good-bye.”\u000a\u000a“Good-bye,” I answered, and strolled on to my hotel, considerably\u000ainterested in my new acquaintance.\u000a\u000a\u000a\u000a\u000aCHAPTER II. THE SCIENCE OF DEDUCTION.\u000a\u000a\u000aWE met next day as he had arranged, and inspected the rooms at No. 221B,\u000a[5] Baker Street, of which he had spoken at our meeting. They\u000aconsisted of a couple of comfortable bed-rooms and a single large\u000aairy sitting-room, cheerfully furnished, and illuminated by two broad\u000awindows. So desirable in every way were the apartments, and so moderate\u000adid the terms seem when divided between us, that the bargain was\u000aconcluded upon the spot, and we at once entered into possession.\u000aThat very evening I moved my things round from the hotel, and on the\u000afollowing morning Sherlock Holmes followed me with several boxes and\u000aportmanteaus. For a day or two we were busily employed in unpacking and\u000alaying out our property to the best advantage. That done, we\u000agradually began to settle down and to accommodate ourselves to our new\u000asurroundings.\u000a\u000aHolmes was certainly not a difficult man to live with. He was quiet\u000ain his ways, and his habits were regular. It was rare for him to be\u000aup after ten at night, and he had invariably breakfasted and gone out\u000abefore I rose in the morning. Sometimes he spent his day at the chemical\u000alaboratory, sometimes in the dissecting-rooms, and occasionally in long\u000awalks, which appeared to take him into the lowest portions of the City.\u000aNothing could exceed his energy when the working fit was upon him; but\u000anow and again a reaction would seize him, and for days on end he would\u000alie upon the sofa in the sitting-room, hardly uttering a word or moving\u000aa muscle from morning to night. On these occasions I have noticed such\u000aa dreamy, vacant expression in his eyes, that I might have suspected him\u000aof being addicted to the use of some narcotic, had not the temperance\u000aand cleanliness of his whole life forbidden such a notion.\u000a\u000aAs the weeks went by, my interest in him and my curiosity as to his\u000aaims in life, gradually deepened and increased. His very person and\u000aappearance were such as to strike the attention of the most casual\u000aobserver. In height he was rather over six feet, and so excessively\u000alean that he seemed to be considerably taller. His eyes were sharp and\u000apiercing, save during those intervals of torpor to which I have alluded;\u000aand his thin, hawk-like nose gave his whole expression an air of\u000aalertness and decision. His chin, too, had the prominence and squareness\u000awhich mark the man of determination. His hands were invariably\u000ablotted with ink and stained with chemicals, yet he was possessed of\u000aextraordinary delicacy of touch, as I frequently had occasion to observe\u000awhen I watched him manipulating his fragile philosophical instruments.\u000a\u000aThe reader may set me down as a hopeless busybody, when I confess how\u000amuch this man stimulated my curiosity, and how often I endeavoured\u000ato break through the reticence which he showed on all that concerned\u000ahimself. Before pronouncing judgment, however, be it remembered, how\u000aobjectless was my life, and how little there was to engage my attention.\u000aMy health forbade me from venturing out unless the weather was\u000aexceptionally genial, and I had no friends who would call upon me and\u000abreak the monotony of my daily existence. Under these circumstances, I\u000aeagerly hailed the little mystery which hung around my companion, and\u000aspent much of my time in endeavouring to unravel it.\u000a\u000aHe was not studying medicine. He had himself, in reply to a question,\u000aconfirmed Stamford’s opinion upon that point. Neither did he appear to\u000ahave pursued any course of reading which might fit him for a degree in\u000ascience or any other recognized portal which would give him an entrance\u000ainto the learned world. Yet his zeal for certain studies was remarkable,\u000aand within eccentric limits his knowledge was so extraordinarily ample\u000aand minute that his observations have fairly astounded me. Surely no man\u000awould work so hard or attain such precise information unless he had some\u000adefinite end in view. Desultory readers are seldom remarkable for the\u000aexactness of their learning. No man burdens his mind with small matters\u000aunless he has some very good reason for doing so.\u000a\u000aHis ignorance was as remarkable as his knowledge. Of contemporary\u000aliterature, philosophy and politics he appeared to know next to nothing.\u000aUpon my quoting Thomas Carlyle, he inquired in the naivest way who he\u000amight be and what he had done. My surprise reached a climax, however,\u000awhen I found incidentally that he was ignorant of the Copernican Theory\u000aand of the composition of the Solar System. That any civilized human\u000abeing in this nineteenth century should not be aware that the earth\u000atravelled round the sun appeared to be to me such an extraordinary fact\u000athat I could hardly realize it.\u000a\u000a“You appear to be astonished,” he said, smiling at my expression of\u000asurprise. “Now that I do know it I shall do my best to forget it.”\u000a\u000a“To forget it!”\u000a\u000a“You see,” he explained, “I consider that a man’s brain originally is\u000alike a little empty attic, and you have to stock it with such furniture\u000aas you choose. A fool takes in all the lumber of every sort that he\u000acomes across, so that the knowledge which might be useful to him gets\u000acrowded out, or at best is jumbled up with a lot of other things so that\u000ahe has a difficulty in laying his hands upon it. Now the skilful workman\u000ais very careful indeed as to what he takes into his brain-attic. He will\u000ahave nothing but the tools which may help him in doing his work, but of\u000athese he has a large assortment, and all in the most perfect order. It\u000ais a mistake to think that that little room has elastic walls and can\u000adistend to any extent. Depend upon it there comes a time when for every\u000aaddition of knowledge you forget something that you knew before. It is\u000aof the highest importance, therefore, not to have useless facts elbowing\u000aout the useful ones.”\u000a\u000a“But the Solar System!” I protested.\u000a\u000a“What the deuce is it to me?” he interrupted impatiently; “you say\u000athat we go round the sun. If we went round the moon it would not make a\u000apennyworth of difference to me or to my work.”\u000a\u000aI was on the point of asking him what that work might be, but something\u000ain his manner showed me that the question would be an unwelcome one. I\u000apondered over our short conversation, however, and endeavoured to draw\u000amy deductions from it. He said that he would acquire no knowledge which\u000adid not bear upon his object. Therefore all the knowledge which he\u000apossessed was such as would be useful to him. I enumerated in my own\u000amind all the various points upon which he had shown me that he was\u000aexceptionally well-informed. I even took a pencil and jotted them down.\u000aI could not help smiling at the document when I had completed it. It ran\u000ain this way--\u000a\u000a\u000aSHERLOCK HOLMES--his limits.\u000a\u000a 1. Knowledge of Literature.--Nil.\u000a 2. Philosophy.--Nil.\u000a 3. Astronomy.--Nil.\u000a 4. Politics.--Feeble.\u000a 5. Botany.--Variable. Well up in belladonna,\u000a opium, and poisons generally.\u000a Knows nothing of practical gardening.\u000a 6. Geology.--Practical, but limited.\u000a Tells at a glance different soils\u000a from each other. After walks has\u000a shown me splashes upon his trousers,\u000a and told me by their colour and\u000a consistence in what part of London\u000a he had received them.\u000a 7. Chemistry.--Profound.\u000a 8. Anatomy.--Accurate, but unsystematic.\u000a 9. Sensational Literature.--Immense. He appears\u000a to know every detail of every horror\u000a perpetrated in the century.\u000a 10. Plays the violin well.\u000a 11. Is an expert singlestick player, boxer, and swordsman.\u000a 12. Has a good practical knowledge of British law.\u000a\u000a\u000aWhen I had got so far in my list I threw it into the fire in despair.\u000a“If I can only find what the fellow is driving at by reconciling all\u000athese accomplishments, and discovering a calling which needs them all,”\u000a I said to myself, “I may as well give up the attempt at once.”\u000a\u000aI see that I have alluded above to his powers upon the violin. These\u000awere very remarkable, but as eccentric as all his other accomplishments.\u000aThat he could play pieces, and difficult pieces, I knew well, because\u000aat my request he has played me some of Mendelssohn’s Lieder, and other\u000afavourites. When left to himself, however, he would seldom produce any\u000amusic or attempt any recognized air. Leaning back in his arm-chair of\u000aan evening, he would close his eyes and scrape carelessly at the fiddle\u000awhich was thrown across his knee. Sometimes the chords were sonorous and\u000amelancholy. Occasionally they were fantastic and cheerful. Clearly they\u000areflected the thoughts which possessed him, but whether the music aided\u000athose thoughts, or whether the playing was simply the result of a whim\u000aor fancy was more than I could determine. I might have rebelled against\u000athese exasperating solos had it not been that he usually terminated them\u000aby playing in quick succession a whole series of my favourite airs as a\u000aslight compensation for the trial upon my patience.\u000a\u000aDuring the first week or so we had no callers, and I had begun to think\u000athat my companion was as friendless a man as I was myself. Presently,\u000ahowever, I found that he had many acquaintances, and those in the most\u000adifferent classes of society. There was one little sallow rat-faced,\u000adark-eyed fellow who was introduced to me as Mr. Lestrade, and who came\u000athree or four times in a single week. One morning a young girl called,\u000afashionably dressed, and stayed for half an hour or more. The same\u000aafternoon brought a grey-headed, seedy visitor, looking like a Jew\u000apedlar, who appeared to me to be much excited, and who was closely\u000afollowed by a slip-shod elderly woman. On another occasion an old\u000awhite-haired gentleman had an interview with my companion; and on\u000aanother a railway porter in his velveteen uniform. When any of these\u000anondescript individuals put in an appearance, Sherlock Holmes used to\u000abeg for the use of the sitting-room, and I would retire to my bed-room.\u000aHe always apologized to me for putting me to this inconvenience. “I have\u000ato use this room as a place of business,” he said, “and these people\u000aare my clients.” Again I had an opportunity of asking him a point blank\u000aquestion, and again my delicacy prevented me from forcing another man to\u000aconfide in me. I imagined at the time that he had some strong reason for\u000anot alluding to it, but he soon dispelled the idea by coming round to\u000athe subject of his own accord.\u000a\u000aIt was upon the 4th of March, as I have good reason to remember, that I\u000arose somewhat earlier than usual, and found that Sherlock Holmes had not\u000ayet finished his breakfast. The landlady had become so accustomed to my\u000alate habits that my place had not been laid nor my coffee prepared. With\u000athe unreasonable petulance of mankind I rang the bell and gave a curt\u000aintimation that I was ready. Then I picked up a magazine from the table\u000aand attempted to while away the time with it, while my companion munched\u000asilently at his toast. One of the articles had a pencil mark at the\u000aheading, and I naturally began to run my eye through it.\u000a\u000aIts somewhat ambitious title was “The Book of Life,” and it attempted to\u000ashow how much an observant man might learn by an accurate and systematic\u000aexamination of all that came in his way. It struck me as being a\u000aremarkable mixture of shrewdness and of absurdity. The reasoning was\u000aclose and intense, but the deductions appeared to me to be far-fetched\u000aand exaggerated. The writer claimed by a momentary expression, a twitch\u000aof a muscle or a glance of an eye, to fathom a man’s inmost thoughts.\u000aDeceit, according to him, was an impossibility in the case of one\u000atrained to observation and analysis. His conclusions were as infallible\u000aas so many propositions of Euclid. So startling would his results appear\u000ato the uninitiated that until they learned the processes by which he had\u000aarrived at them they might well consider him as a necromancer.\u000a\u000a“From a drop of water,” said the writer, “a logician could infer the\u000apossibility of an Atlantic or a Niagara without having seen or heard of\u000aone or the other. So all life is a great chain, the nature of which is\u000aknown whenever we are shown a single link of it. Like all other arts,\u000athe Science of Deduction and Analysis is one which can only be acquired\u000aby long and patient study nor is life long enough to allow any mortal\u000ato attain the highest possible perfection in it. Before turning to\u000athose moral and mental aspects of the matter which present the greatest\u000adifficulties, let the enquirer begin by mastering more elementary\u000aproblems. Let him, on meeting a fellow-mortal, learn at a glance to\u000adistinguish the history of the man, and the trade or profession to\u000awhich he belongs. Puerile as such an exercise may seem, it sharpens the\u000afaculties of observation, and teaches one where to look and what to look\u000afor. By a man’s finger nails, by his coat-sleeve, by his boot, by his\u000atrouser knees, by the callosities of his forefinger and thumb, by his\u000aexpression, by his shirt cuffs--by each of these things a man’s calling\u000ais plainly revealed. That all united should fail to enlighten the\u000acompetent enquirer in any case is almost inconceivable.”\u000a\u000a“What ineffable twaddle!” I cried, slapping the magazine down on the\u000atable, “I never read such rubbish in my life.”\u000a\u000a“What is it?” asked Sherlock Holmes.\u000a\u000a“Why, this article,” I said, pointing at it with my egg spoon as I sat\u000adown to my breakfast. “I see that you have read it since you have marked\u000ait. I don’t deny that it is smartly written. It irritates me though. It\u000ais evidently the theory of some arm-chair lounger who evolves all these\u000aneat little paradoxes in the seclusion of his own study. It is not\u000apractical. I should like to see him clapped down in a third class\u000acarriage on the Underground, and asked to give the trades of all his\u000afellow-travellers. I would lay a thousand to one against him.”\u000a\u000a“You would lose your money,” Sherlock Holmes remarked calmly. “As for\u000athe article I wrote it myself.”\u000a\u000a“You!”\u000a\u000a“Yes, I have a turn both for observation and for deduction. The\u000atheories which I have expressed there, and which appear to you to be so\u000achimerical are really extremely practical--so practical that I depend\u000aupon them for my bread and cheese.”\u000a\u000a“And how?” I asked involuntarily.\u000a\u000a“Well, I have a trade of my own. I suppose I am the only one in the\u000aworld. I’m a consulting detective, if you can understand what that is.\u000aHere in London we have lots of Government detectives and lots of private\u000aones. When these fellows are at fault they come to me, and I manage to\u000aput them on the right scent. They lay all the evidence before me, and I\u000aam generally able, by the help of my knowledge of the history of\u000acrime, to set them straight. There is a strong family resemblance about\u000amisdeeds, and if you have all the details of a thousand at your finger\u000aends, it is odd if you can’t unravel the thousand and first. Lestrade\u000ais a well-known detective. He got himself into a fog recently over a\u000aforgery case, and that was what brought him here.”\u000a\u000a“And these other people?”\u000a\u000a“They are mostly sent on by private inquiry agencies. They are\u000aall people who are in trouble about something, and want a little\u000aenlightening. I listen to their story, they listen to my comments, and\u000athen I pocket my fee.”\u000a\u000a“But do you mean to say,” I said, “that without leaving your room you\u000acan unravel some knot which other men can make nothing of, although they\u000ahave seen every detail for themselves?”\u000a\u000a“Quite so. I have a kind of intuition that way. Now and again a case\u000aturns up which is a little more complex. Then I have to bustle about and\u000asee things with my own eyes. You see I have a lot of special knowledge\u000awhich I apply to the problem, and which facilitates matters wonderfully.\u000aThose rules of deduction laid down in that article which aroused your\u000ascorn, are invaluable to me in practical work. Observation with me is\u000asecond nature. You appeared to be surprised when I told you, on our\u000afirst meeting, that you had come from Afghanistan.”\u000a\u000a“You were told, no doubt.”\u000a\u000a“Nothing of the sort. I _knew_ you came from Afghanistan. From long\u000ahabit the train of thoughts ran so swiftly through my mind, that I\u000aarrived at the conclusion without being conscious of intermediate steps.\u000aThere were such steps, however. The train of reasoning ran, ‘Here is a\u000agentleman of a medical type, but with the air of a military man. Clearly\u000aan army doctor, then. He has just come from the tropics, for his face is\u000adark, and that is not the natural tint of his skin, for his wrists are\u000afair. He has undergone hardship and sickness, as his haggard face says\u000aclearly. His left arm has been injured. He holds it in a stiff and\u000aunnatural manner. Where in the tropics could an English army doctor have\u000aseen much hardship and got his arm wounded? Clearly in Afghanistan.’ The\u000awhole train of thought did not occupy a second. I then remarked that you\u000acame from Afghanistan, and you were astonished.”\u000a\u000a“It is simple enough as you explain it,” I said, smiling. “You remind\u000ame of Edgar Allen Poe’s Dupin. I had no idea that such individuals did\u000aexist outside of stories.”\u000a\u000aSherlock Holmes rose and lit his pipe. “No doubt you think that you are\u000acomplimenting me in comparing me to Dupin,” he observed. “Now, in my\u000aopinion, Dupin was a very inferior fellow. That trick of his of breaking\u000ain on his friends’ thoughts with an apropos remark after a quarter of\u000aan hour’s silence is really very showy and superficial. He had some\u000aanalytical genius, no doubt; but he was by no means such a phenomenon as\u000aPoe appeared to imagine.”\u000a\u000a“Have you read Gaboriau’s works?” I asked. “Does Lecoq come up to your\u000aidea of a detective?”\u000a\u000aSherlock Holmes sniffed sardonically. “Lecoq was a miserable bungler,”\u000a he said, in an angry voice; “he had only one thing to recommend him, and\u000athat was his energy. That book made me positively ill. The question was\u000ahow to identify an unknown prisoner. I could have done it in twenty-four\u000ahours. Lecoq took six months or so. It might be made a text-book for\u000adetectives to teach them what to avoid.”\u000a\u000aI felt rather indignant at having two characters whom I had admired\u000atreated in this cavalier style. I walked over to the window, and stood\u000alooking out into the busy street. “This fellow may be very clever,” I\u000asaid to myself, “but he is certainly very conceited.”\u000a\u000a“There are no crimes and no criminals in these days,” he said,\u000aquerulously. “What is the use of having brains in our profession. I know\u000awell that I have it in me to make my name famous. No man lives or has\u000aever lived who has brought the same amount of study and of natural\u000atalent to the detection of crime which I have done. And what is the\u000aresult? There is no crime to detect, or, at most, some bungling villainy\u000awith a motive so transparent that even a Scotland Yard official can see\u000athrough it.”\u000a\u000aI was still annoyed at his bumptious style of conversation. I thought it\u000abest to change the topic.\u000a\u000a“I wonder what that fellow is looking for?” I asked, pointing to a\u000astalwart, plainly-dressed individual who was walking slowly down the\u000aother side of the street, looking anxiously at the numbers. He had\u000aa large blue envelope in his hand, and was evidently the bearer of a\u000amessage.\u000a\u000a“You mean the retired sergeant of Marines,” said Sherlock Holmes.\u000a\u000a“Brag and bounce!” thought I to myself. “He knows that I cannot verify\u000ahis guess.”\u000a\u000aThe thought had hardly passed through my mind when the man whom we were\u000awatching caught sight of the number on our door, and ran rapidly across\u000athe roadway. We heard a loud knock, a deep voice below, and heavy steps\u000aascending the stair.\u000a\u000a“For Mr. Sherlock Holmes,” he said, stepping into the room and handing\u000amy friend the letter.\u000a\u000aHere was an opportunity of taking the conceit out of him. He little\u000athought of this when he made that random shot. “May I ask, my lad,” I\u000asaid, in the blandest voice, “what your trade may be?”\u000a\u000a“Commissionaire, sir,” he said, gruffly. “Uniform away for repairs.”\u000a\u000a“And you were?” I asked, with a slightly malicious glance at my\u000acompanion.\u000a\u000a“A sergeant, sir, Royal Marine Light Infantry, sir. No answer? Right,\u000asir.”\u000a\u000aHe clicked his heels together, raised his hand in a salute, and was\u000agone.\u000a\u000a\u000a\u000a\u000aCHAPTER III. THE LAURISTON GARDEN MYSTERY [6]\u000a\u000a\u000aI CONFESS that I was considerably startled by this fresh proof of the\u000apractical nature of my companion’s theories. My respect for his powers\u000aof analysis increased wondrously. There still remained some lurking\u000asuspicion in my mind, however, that the whole thing was a pre-arranged\u000aepisode, intended to dazzle me, though what earthly object he could have\u000ain taking me in was past my comprehension. When I looked at him he\u000ahad finished reading the note, and his eyes had assumed the vacant,\u000alack-lustre expression which showed mental abstraction.\u000a\u000a“How in the world did you deduce that?” I asked.\u000a\u000a“Deduce what?” said he, petulantly.\u000a\u000a“Why, that he was a retired sergeant of Marines.”\u000a\u000a“I have no time for trifles,” he answered, brusquely; then with a smile,\u000a“Excuse my rudeness. You broke the thread of my thoughts; but perhaps\u000ait is as well. So you actually were not able to see that that man was a\u000asergeant of Marines?”\u000a\u000a“No, indeed.”\u000a\u000a“It was easier to know it than to explain why I knew it. If you\u000awere asked to prove that two and two made four, you might find some\u000adifficulty, and yet you are quite sure of the fact. Even across the\u000astreet I could see a great blue anchor tattooed on the back of the\u000afellow’s hand. That smacked of the sea. He had a military carriage,\u000ahowever, and regulation side whiskers. There we have the marine. He was\u000aa man with some amount of self-importance and a certain air of command.\u000aYou must have observed the way in which he held his head and swung\u000ahis cane. A steady, respectable, middle-aged man, too, on the face of\u000ahim--all facts which led me to believe that he had been a sergeant.”\u000a\u000a“Wonderful!” I ejaculated.\u000a\u000a“Commonplace,” said Holmes, though I thought from his expression that he\u000awas pleased at my evident surprise and admiration. “I said just now that\u000athere were no criminals. It appears that I am wrong--look at this!” He\u000athrew me over the note which the commissionaire had brought. [7]\u000a\u000a“Why,” I cried, as I cast my eye over it, “this is terrible!”\u000a\u000a“It does seem to be a little out of the common,” he remarked, calmly.\u000a“Would you mind reading it to me aloud?”\u000a\u000aThis is the letter which I read to him----\u000a\u000a\u000a“MY DEAR MR. SHERLOCK HOLMES,--\u000a\u000a“There has been a bad business during the night at 3, Lauriston Gardens,\u000aoff the Brixton Road. Our man on the beat saw a light there about two in\u000athe morning, and as the house was an empty one, suspected that something\u000awas amiss. He found the door open, and in the front room, which is bare\u000aof furniture, discovered the body of a gentleman, well dressed, and\u000ahaving cards in his pocket bearing the name of ‘Enoch J. Drebber,\u000aCleveland, Ohio, U.S.A.’ There had been no robbery, nor is there any\u000aevidence as to how the man met his death. There are marks of blood in\u000athe room, but there is no wound upon his person. We are at a loss as to\u000ahow he came into the empty house; indeed, the whole affair is a puzzler.\u000aIf you can come round to the house any time before twelve, you will find\u000ame there. I have left everything _in statu quo_ until I hear from you.\u000aIf you are unable to come I shall give you fuller details, and would\u000aesteem it a great kindness if you would favour me with your opinion.\u000aYours faithfully,\u000a\u000a“TOBIAS GREGSON.”\u000a\u000a\u000a“Gregson is the smartest of the Scotland Yarders,” my friend remarked;\u000a“he and Lestrade are the pick of a bad lot. They are both quick and\u000aenergetic, but conventional--shockingly so. They have their knives\u000ainto one another, too. They are as jealous as a pair of professional\u000abeauties. There will be some fun over this case if they are both put\u000aupon the scent.”\u000a\u000aI was amazed at the calm way in which he rippled on. “Surely there is\u000anot a moment to be lost,” I cried, “shall I go and order you a cab?”\u000a\u000a“I’m not sure about whether I shall go. I am the most incurably lazy\u000adevil that ever stood in shoe leather--that is, when the fit is on me,\u000afor I can be spry enough at times.”\u000a\u000a“Why, it is just such a chance as you have been longing for.”\u000a\u000a“My dear fellow, what does it matter to me. Supposing I unravel the\u000awhole matter, you may be sure that Gregson, Lestrade, and Co. will\u000apocket all the credit. That comes of being an unofficial personage.”\u000a\u000a“But he begs you to help him.”\u000a\u000a“Yes. He knows that I am his superior, and acknowledges it to me; but\u000ahe would cut his tongue out before he would own it to any third person.\u000aHowever, we may as well go and have a look. I shall work it out on my\u000aown hook. I may have a laugh at them if I have nothing else. Come on!”\u000a\u000aHe hustled on his overcoat, and bustled about in a way that showed that\u000aan energetic fit had superseded the apathetic one.\u000a\u000a“Get your hat,” he said.\u000a\u000a“You wish me to come?”\u000a\u000a“Yes, if you have nothing better to do.” A minute later we were both in\u000aa hansom, driving furiously for the Brixton Road.\u000a\u000aIt was a foggy, cloudy morning, and a dun-coloured veil hung over the\u000ahouse-tops, looking like the reflection of the mud-coloured streets\u000abeneath. My companion was in the best of spirits, and prattled away\u000aabout Cremona fiddles, and the difference between a Stradivarius and\u000aan Amati. As for myself, I was silent, for the dull weather and the\u000amelancholy business upon which we were engaged, depressed my spirits.\u000a\u000a“You don’t seem to give much thought to the matter in hand,” I said at\u000alast, interrupting Holmes’ musical disquisition.\u000a\u000a“No data yet,” he answered. “It is a capital mistake to theorize before\u000ayou have all the evidence. It biases the judgment.”\u000a\u000a“You will have your data soon,” I remarked, pointing with my finger;\u000a“this is the Brixton Road, and that is the house, if I am not very much\u000amistaken.”\u000a\u000a“So it is. Stop, driver, stop!” We were still a hundred yards or so from\u000ait, but he insisted upon our alighting, and we finished our journey upon\u000afoot.\u000a\u000aNumber 3, Lauriston Gardens wore an ill-omened and minatory look. It was\u000aone of four which stood back some little way from the street, two being\u000aoccupied and two empty. The latter looked out with three tiers of vacant\u000amelancholy windows, which were blank and dreary, save that here and\u000athere a “To Let” card had developed like a cataract upon the bleared\u000apanes. A small garden sprinkled over with a scattered eruption of sickly\u000aplants separated each of these houses from the street, and was traversed\u000aby a narrow pathway, yellowish in colour, and consisting apparently of a\u000amixture of clay and of gravel. The whole place was very sloppy from the\u000arain which had fallen through the night. The garden was bounded by a\u000athree-foot brick wall with a fringe of wood rails upon the top, and\u000aagainst this wall was leaning a stalwart police constable, surrounded by\u000aa small knot of loafers, who craned their necks and strained their eyes\u000ain the vain hope of catching some glimpse of the proceedings within.\u000a\u000aI had imagined that Sherlock Holmes would at once have hurried into the\u000ahouse and plunged into a study of the mystery. Nothing appeared to be\u000afurther from his intention. With an air of nonchalance which, under the\u000acircumstances, seemed to me to border upon affectation, he lounged up\u000aand down the pavement, and gazed vacantly at the ground, the sky, the\u000aopposite houses and the line of railings. Having finished his scrutiny,\u000ahe proceeded slowly down the path, or rather down the fringe of grass\u000awhich flanked the path, keeping his eyes riveted upon the ground. Twice\u000ahe stopped, and once I saw him smile, and heard him utter an exclamation\u000aof satisfaction. There were many marks of footsteps upon the wet clayey\u000asoil, but since the police had been coming and going over it, I was\u000aunable to see how my companion could hope to learn anything from it.\u000aStill I had had such extraordinary evidence of the quickness of his\u000aperceptive faculties, that I had no doubt that he could see a great deal\u000awhich was hidden from me.\u000a\u000aAt the door of the house we were met by a tall, white-faced,\u000aflaxen-haired man, with a notebook in his hand, who rushed forward and\u000awrung my companion’s hand with effusion. “It is indeed kind of you to\u000acome,” he said, “I have had everything left untouched.”\u000a\u000a“Except that!” my friend answered, pointing at the pathway. “If a herd\u000aof buffaloes had passed along there could not be a greater mess. No\u000adoubt, however, you had drawn your own conclusions, Gregson, before you\u000apermitted this.”\u000a\u000a“I have had so much to do inside the house,” the detective said\u000aevasively. “My colleague, Mr. Lestrade, is here. I had relied upon him\u000ato look after this.”\u000a\u000aHolmes glanced at me and raised his eyebrows sardonically. “With two\u000asuch men as yourself and Lestrade upon the ground, there will not be\u000amuch for a third party to find out,” he said.\u000a\u000aGregson rubbed his hands in a self-satisfied way. “I think we have done\u000aall that can be done,” he answered; “it’s a queer case though, and I\u000aknew your taste for such things.”\u000a\u000a“You did not come here in a cab?” asked Sherlock Holmes.\u000a\u000a“No, sir.”\u000a\u000a“Nor Lestrade?”\u000a\u000a“No, sir.”\u000a\u000a“Then let us go and look at the room.” With which inconsequent remark he\u000astrode on into the house, followed by Gregson, whose features expressed\u000ahis astonishment.\u000a\u000aA short passage, bare planked and dusty, led to the kitchen and offices.\u000aTwo doors opened out of it to the left and to the right. One of these\u000ahad obviously been closed for many weeks. The other belonged to the\u000adining-room, which was the apartment in which the mysterious affair had\u000aoccurred. Holmes walked in, and I followed him with that subdued feeling\u000aat my heart which the presence of death inspires.\u000a\u000aIt was a large square room, looking all the larger from the absence\u000aof all furniture. A vulgar flaring paper adorned the walls, but it was\u000ablotched in places with mildew, and here and there great strips had\u000abecome detached and hung down, exposing the yellow plaster beneath.\u000aOpposite the door was a showy fireplace, surmounted by a mantelpiece of\u000aimitation white marble. On one corner of this was stuck the stump of a\u000ared wax candle. The solitary window was so dirty that the light was\u000ahazy and uncertain, giving a dull grey tinge to everything, which was\u000aintensified by the thick layer of dust which coated the whole apartment.\u000a\u000aAll these details I observed afterwards. At present my attention was\u000acentred upon the single grim motionless figure which lay stretched upon\u000athe boards, with vacant sightless eyes staring up at the discoloured\u000aceiling. It was that of a man about forty-three or forty-four years of\u000aage, middle-sized, broad shouldered, with crisp curling black hair, and\u000aa short stubbly beard. He was dressed in a heavy broadcloth frock coat\u000aand waistcoat, with light-coloured trousers, and immaculate collar\u000aand cuffs. A top hat, well brushed and trim, was placed upon the floor\u000abeside him. His hands were clenched and his arms thrown abroad, while\u000ahis lower limbs were interlocked as though his death struggle had been a\u000agrievous one. On his rigid face there stood an expression of horror,\u000aand as it seemed to me, of hatred, such as I have never seen upon human\u000afeatures. This malignant and terrible contortion, combined with the low\u000aforehead, blunt nose, and prognathous jaw gave the dead man a singularly\u000asimious and ape-like appearance, which was increased by his writhing,\u000aunnatural posture. I have seen death in many forms, but never has\u000ait appeared to me in a more fearsome aspect than in that dark grimy\u000aapartment, which looked out upon one of the main arteries of suburban\u000aLondon.\u000a\u000aLestrade, lean and ferret-like as ever, was standing by the doorway, and\u000agreeted my companion and myself.\u000a\u000a“This case will make a stir, sir,” he remarked. “It beats anything I\u000ahave seen, and I am no chicken.”\u000a\u000a“There is no clue?” said Gregson.\u000a\u000a“None at all,” chimed in Lestrade.\u000a\u000aSherlock Holmes approached the body, and, kneeling down, examined it\u000aintently. “You are sure that there is no wound?” he asked, pointing to\u000anumerous gouts and splashes of blood which lay all round.\u000a\u000a“Positive!” cried both detectives.\u000a\u000a“Then, of course, this blood belongs to a second individual--[8]\u000apresumably the murderer, if murder has been committed. It reminds me of\u000athe circumstances attendant on the death of Van Jansen, in Utrecht, in\u000athe year ‘34. Do you remember the case, Gregson?”\u000a\u000a“No, sir.”\u000a\u000a“Read it up--you really should. There is nothing new under the sun. It\u000ahas all been done before.”\u000a\u000aAs he spoke, his nimble fingers were flying here, there, and everywhere,\u000afeeling, pressing, unbuttoning, examining, while his eyes wore the same\u000afar-away expression which I have already remarked upon. So swiftly was\u000athe examination made, that one would hardly have guessed the minuteness\u000awith which it was conducted. Finally, he sniffed the dead man’s lips,\u000aand then glanced at the soles of his patent leather boots.\u000a\u000a“He has not been moved at all?” he asked.\u000a\u000a“No more than was necessary for the purposes of our examination.”\u000a\u000a“You can take him to the mortuary now,” he said. “There is nothing more\u000ato be learned.”\u000a\u000aGregson had a stretcher and four men at hand. At his call they entered\u000athe room, and the stranger was lifted and carried out. As they raised\u000ahim, a ring tinkled down and rolled across the floor. Lestrade grabbed\u000ait up and stared at it with mystified eyes.\u000a\u000a“There’s been a woman here,” he cried. “It’s a woman’s wedding-ring.”\u000a\u000aHe held it out, as he spoke, upon the palm of his hand. We all gathered\u000around him and gazed at it. There could be no doubt that that circlet of\u000aplain gold had once adorned the finger of a bride.\u000a\u000a“This complicates matters,” said Gregson. “Heaven knows, they were\u000acomplicated enough before.”\u000a\u000a“You’re sure it doesn’t simplify them?” observed Holmes. “There’s\u000anothing to be learned by staring at it. What did you find in his\u000apockets?”\u000a\u000a“We have it all here,” said Gregson, pointing to a litter of objects\u000aupon one of the bottom steps of the stairs. “A gold watch, No. 97163, by\u000aBarraud, of London. Gold Albert chain, very heavy and solid. Gold ring,\u000awith masonic device. Gold pin--bull-dog’s head, with rubies as eyes.\u000aRussian leather card-case, with cards of Enoch J. Drebber of Cleveland,\u000acorresponding with the E. J. D. upon the linen. No purse, but loose\u000amoney to the extent of seven pounds thirteen. Pocket edition of\u000aBoccaccio’s ‘Decameron,’ with name of Joseph Stangerson upon the\u000afly-leaf. Two letters--one addressed to E. J. Drebber and one to Joseph\u000aStangerson.”\u000a\u000a“At what address?”\u000a\u000a“American Exchange, Strand--to be left till called for. They are both\u000afrom the Guion Steamship Company, and refer to the sailing of their\u000aboats from Liverpool. It is clear that this unfortunate man was about to\u000areturn to New York.”\u000a\u000a“Have you made any inquiries as to this man, Stangerson?”\u000a\u000a“I did it at once, sir,” said Gregson. “I have had advertisements\u000asent to all the newspapers, and one of my men has gone to the American\u000aExchange, but he has not returned yet.”\u000a\u000a“Have you sent to Cleveland?”\u000a\u000a“We telegraphed this morning.”\u000a\u000a“How did you word your inquiries?”\u000a\u000a“We simply detailed the circumstances, and said that we should be glad\u000aof any information which could help us.”\u000a\u000a“You did not ask for particulars on any point which appeared to you to\u000abe crucial?”\u000a\u000a“I asked about Stangerson.”\u000a\u000a“Nothing else? Is there no circumstance on which this whole case appears\u000ato hinge? Will you not telegraph again?”\u000a\u000a“I have said all I have to say,” said Gregson, in an offended voice.\u000a\u000aSherlock Holmes chuckled to himself, and appeared to be about to make\u000asome remark, when Lestrade, who had been in the front room while we\u000awere holding this conversation in the hall, reappeared upon the scene,\u000arubbing his hands in a pompous and self-satisfied manner.\u000a\u000a“Mr. Gregson,” he said, “I have just made a discovery of the highest\u000aimportance, and one which would have been overlooked had I not made a\u000acareful examination of the walls.”\u000a\u000aThe little man’s eyes sparkled as he spoke, and he was evidently in\u000aa state of suppressed exultation at having scored a point against his\u000acolleague.\u000a\u000a“Come here,” he said, bustling back into the room, the atmosphere of\u000awhich felt clearer since the removal of its ghastly inmate. “Now, stand\u000athere!”\u000a\u000aHe struck a match on his boot and held it up against the wall.\u000a\u000a“Look at that!” he said, triumphantly.\u000a\u000aI have remarked that the paper had fallen away in parts. In this\u000aparticular corner of the room a large piece had peeled off, leaving a\u000ayellow square of coarse plastering. Across this bare space there was\u000ascrawled in blood-red letters a single word--\u000a\u000a RACHE.\u000a\u000a\u000a“What do you think of that?” cried the detective, with the air of a\u000ashowman exhibiting his show. “This was overlooked because it was in the\u000adarkest corner of the room, and no one thought of looking there. The\u000amurderer has written it with his or her own blood. See this smear where\u000ait has trickled down the wall! That disposes of the idea of suicide\u000aanyhow. Why was that corner chosen to write it on? I will tell you. See\u000athat candle on the mantelpiece. It was lit at the time, and if it was\u000alit this corner would be the brightest instead of the darkest portion of\u000athe wall.”\u000a\u000a“And what does it mean now that you _have_ found it?” asked Gregson in a\u000adepreciatory voice.\u000a\u000a“Mean? Why, it means that the writer was going to put the female name\u000aRachel, but was disturbed before he or she had time to finish. You mark\u000amy words, when this case comes to be cleared up you will find that a\u000awoman named Rachel has something to do with it. It’s all very well for\u000ayou to laugh, Mr. Sherlock Holmes. You may be very smart and clever, but\u000athe old hound is the best, when all is said and done.”\u000a\u000a“I really beg your pardon!” said my companion, who had ruffled the\u000alittle man’s temper by bursting into an explosion of laughter. “You\u000acertainly have the credit of being the first of us to find this out,\u000aand, as you say, it bears every mark of having been written by the other\u000aparticipant in last night’s mystery. I have not had time to examine this\u000aroom yet, but with your permission I shall do so now.”\u000a\u000aAs he spoke, he whipped a tape measure and a large round magnifying\u000aglass from his pocket. With these two implements he trotted noiselessly\u000aabout the room, sometimes stopping, occasionally kneeling, and once\u000alying flat upon his face. So engrossed was he with his occupation that\u000ahe appeared to have forgotten our presence, for he chattered away to\u000ahimself under his breath the whole time, keeping up a running fire\u000aof exclamations, groans, whistles, and little cries suggestive of\u000aencouragement and of hope. As I watched him I was irresistibly reminded\u000aof a pure-blooded well-trained foxhound as it dashes backwards and\u000aforwards through the covert, whining in its eagerness, until it comes\u000aacross the lost scent. For twenty minutes or more he continued his\u000aresearches, measuring with the most exact care the distance between\u000amarks which were entirely invisible to me, and occasionally applying his\u000atape to the walls in an equally incomprehensible manner. In one place\u000ahe gathered up very carefully a little pile of grey dust from the floor,\u000aand packed it away in an envelope. Finally, he examined with his glass\u000athe word upon the wall, going over every letter of it with the most\u000aminute exactness. This done, he appeared to be satisfied, for he\u000areplaced his tape and his glass in his pocket.\u000a\u000a“They say that genius is an infinite capacity for taking pains,” he\u000aremarked with a smile. “It’s a very bad definition, but it does apply to\u000adetective work.”\u000a\u000aGregson and Lestrade had watched the manoeuvres [9] of their amateur\u000acompanion with considerable curiosity and some contempt. They evidently\u000afailed to appreciate the fact, which I had begun to realize, that\u000aSherlock Holmes’ smallest actions were all directed towards some\u000adefinite and practical end.\u000a\u000a“What do you think of it, sir?” they both asked.\u000a\u000a“It would be robbing you of the credit of the case if I was to presume\u000ato help you,” remarked my friend. “You are doing so well now that it\u000awould be a pity for anyone to interfere.” There was a world of\u000asarcasm in his voice as he spoke. “If you will let me know how your\u000ainvestigations go,” he continued, “I shall be happy to give you any help\u000aI can. In the meantime I should like to speak to the constable who found\u000athe body. Can you give me his name and address?”\u000a\u000aLestrade glanced at his note-book. “John Rance,” he said. “He is off\u000aduty now. You will find him at 46, Audley Court, Kennington Park Gate.”\u000a\u000aHolmes took a note of the address.\u000a\u000a“Come along, Doctor,” he said; “we shall go and look him up. I’ll tell\u000ayou one thing which may help you in the case,” he continued, turning to\u000athe two detectives. “There has been murder done, and the murderer was a\u000aman. He was more than six feet high, was in the prime of life, had\u000asmall feet for his height, wore coarse, square-toed boots and smoked a\u000aTrichinopoly cigar. He came here with his victim in a four-wheeled cab,\u000awhich was drawn by a horse with three old shoes and one new one on his\u000aoff fore leg. In all probability the murderer had a florid face, and the\u000afinger-nails of his right hand were remarkably long. These are only a\u000afew indications, but they may assist you.”\u000a\u000aLestrade and Gregson glanced at each other with an incredulous smile.\u000a\u000a“If this man was murdered, how was it done?” asked the former.\u000a\u000a“Poison,” said Sherlock Holmes curtly, and strode off. “One other thing,\u000aLestrade,” he added, turning round at the door: “‘Rache,’ is the German\u000afor ‘revenge;’ so don’t lose your time looking for Miss Rachel.”\u000a\u000aWith which Parthian shot he walked away, leaving the two rivals\u000aopen-mouthed behind him.\u000a\u000a\u000a\u000a\u000aCHAPTER IV. WHAT JOHN RANCE HAD TO TELL.\u000a\u000a\u000aIT was one o’clock when we left No. 3, Lauriston Gardens. Sherlock\u000aHolmes led me to the nearest telegraph office, whence he dispatched a\u000along telegram. He then hailed a cab, and ordered the driver to take us\u000ato the address given us by Lestrade.\u000a\u000a“There is nothing like first hand evidence,” he remarked; “as a matter\u000aof fact, my mind is entirely made up upon the case, but still we may as\u000awell learn all that is to be learned.”\u000a\u000a“You amaze me, Holmes,” said I. “Surely you are not as sure as you\u000apretend to be of all those particulars which you gave.”\u000a\u000a“There’s no room for a mistake,” he answered. “The very first thing\u000awhich I observed on arriving there was that a cab had made two ruts with\u000aits wheels close to the curb. Now, up to last night, we have had no rain\u000afor a week, so that those wheels which left such a deep impression must\u000ahave been there during the night. There were the marks of the horse’s\u000ahoofs, too, the outline of one of which was far more clearly cut than\u000athat of the other three, showing that that was a new shoe. Since the cab\u000awas there after the rain began, and was not there at any time during the\u000amorning--I have Gregson’s word for that--it follows that it must have\u000abeen there during the night, and, therefore, that it brought those two\u000aindividuals to the house.”\u000a\u000a“That seems simple enough,” said I; “but how about the other man’s\u000aheight?”\u000a\u000a“Why, the height of a man, in nine cases out of ten, can be told from\u000athe length of his stride. It is a simple calculation enough, though\u000athere is no use my boring you with figures. I had this fellow’s stride\u000aboth on the clay outside and on the dust within. Then I had a way of\u000achecking my calculation. When a man writes on a wall, his instinct leads\u000ahim to write about the level of his own eyes. Now that writing was just\u000aover six feet from the ground. It was child’s play.”\u000a\u000a“And his age?” I asked.\u000a\u000a“Well, if a man can stride four and a-half feet without the smallest\u000aeffort, he can’t be quite in the sere and yellow. That was the breadth\u000aof a puddle on the garden walk which he had evidently walked across.\u000aPatent-leather boots had gone round, and Square-toes had hopped over.\u000aThere is no mystery about it at all. I am simply applying to ordinary\u000alife a few of those precepts of observation and deduction which I\u000aadvocated in that article. Is there anything else that puzzles you?”\u000a\u000a“The finger nails and the Trichinopoly,” I suggested.\u000a\u000a“The writing on the wall was done with a man’s forefinger dipped in\u000ablood. My glass allowed me to observe that the plaster was slightly\u000ascratched in doing it, which would not have been the case if the man’s\u000anail had been trimmed. I gathered up some scattered ash from the floor.\u000aIt was dark in colour and flakey--such an ash as is only made by a\u000aTrichinopoly. I have made a special study of cigar ashes--in fact, I\u000ahave written a monograph upon the subject. I flatter myself that I can\u000adistinguish at a glance the ash of any known brand, either of cigar\u000aor of tobacco. It is just in such details that the skilled detective\u000adiffers from the Gregson and Lestrade type.”\u000a\u000a“And the florid face?” I asked.\u000a\u000a“Ah, that was a more daring shot, though I have no doubt that I was\u000aright. You must not ask me that at the present state of the affair.”\u000a\u000aI passed my hand over my brow. “My head is in a whirl,” I remarked; “the\u000amore one thinks of it the more mysterious it grows. How came these two\u000amen--if there were two men--into an empty house? What has become of the\u000acabman who drove them? How could one man compel another to take poison?\u000aWhere did the blood come from? What was the object of the murderer,\u000asince robbery had no part in it? How came the woman’s ring there? Above\u000aall, why should the second man write up the German word RACHE before\u000adecamping? I confess that I cannot see any possible way of reconciling\u000aall these facts.”\u000a\u000aMy companion smiled approvingly.\u000a\u000a“You sum up the difficulties of the situation succinctly and well,” he\u000asaid. “There is much that is still obscure, though I have quite made up\u000amy mind on the main facts. As to poor Lestrade’s discovery it was simply\u000aa blind intended to put the police upon a wrong track, by suggesting\u000aSocialism and secret societies. It was not done by a German. The A, if\u000ayou noticed, was printed somewhat after the German fashion. Now, a real\u000aGerman invariably prints in the Latin character, so that we may safely\u000asay that this was not written by one, but by a clumsy imitator who\u000aoverdid his part. It was simply a ruse to divert inquiry into a wrong\u000achannel. I’m not going to tell you much more of the case, Doctor. You\u000aknow a conjuror gets no credit when once he has explained his trick,\u000aand if I show you too much of my method of working, you will come to the\u000aconclusion that I am a very ordinary individual after all.”\u000a\u000a“I shall never do that,” I answered; “you have brought detection as near\u000aan exact science as it ever will be brought in this world.”\u000a\u000aMy companion flushed up with pleasure at my words, and the earnest way\u000ain which I uttered them. I had already observed that he was as sensitive\u000ato flattery on the score of his art as any girl could be of her beauty.\u000a\u000a“I’ll tell you one other thing,” he said. “Patent leathers [10] and\u000aSquare-toes came in the same cab, and they walked down the pathway\u000atogether as friendly as possible--arm-in-arm, in all probability.\u000aWhen they got inside they walked up and down the room--or rather,\u000aPatent-leathers stood still while Square-toes walked up and down. I\u000acould read all that in the dust; and I could read that as he walked he\u000agrew more and more excited. That is shown by the increased length of his\u000astrides. He was talking all the while, and working himself up, no doubt,\u000ainto a fury. Then the tragedy occurred. I’ve told you all I know myself\u000anow, for the rest is mere surmise and conjecture. We have a good working\u000abasis, however, on which to start. We must hurry up, for I want to go to\u000aHalle’s concert to hear Norman Neruda this afternoon.”\u000a\u000aThis conversation had occurred while our cab had been threading its way\u000athrough a long succession of dingy streets and dreary by-ways. In the\u000adingiest and dreariest of them our driver suddenly came to a stand.\u000a“That’s Audley Court in there,” he said, pointing to a narrow slit in\u000athe line of dead-coloured brick. “You’ll find me here when you come\u000aback.”\u000a\u000aAudley Court was not an attractive locality. The narrow passage led us\u000ainto a quadrangle paved with flags and lined by sordid dwellings. We\u000apicked our way among groups of dirty children, and through lines of\u000adiscoloured linen, until we came to Number 46, the door of which\u000awas decorated with a small slip of brass on which the name Rance was\u000aengraved. On enquiry we found that the constable was in bed, and we were\u000ashown into a little front parlour to await his coming.\u000a\u000aHe appeared presently, looking a little irritable at being disturbed in\u000ahis slumbers. “I made my report at the office,” he said.\u000a\u000aHolmes took a half-sovereign from his pocket and played with it\u000apensively. “We thought that we should like to hear it all from your own\u000alips,” he said.\u000a\u000a“I shall be most happy to tell you anything I can,” the constable\u000aanswered with his eyes upon the little golden disk.\u000a\u000a“Just let us hear it all in your own way as it occurred.”\u000a\u000aRance sat down on the horsehair sofa, and knitted his brows as though\u000adetermined not to omit anything in his narrative.\u000a\u000a“I’ll tell it ye from the beginning,” he said. “My time is from ten at\u000anight to six in the morning. At eleven there was a fight at the ‘White\u000aHart’; but bar that all was quiet enough on the beat. At one o’clock it\u000abegan to rain, and I met Harry Murcher--him who has the Holland Grove\u000abeat--and we stood together at the corner of Henrietta Street a-talkin’.\u000aPresently--maybe about two or a little after--I thought I would take\u000aa look round and see that all was right down the Brixton Road. It was\u000aprecious dirty and lonely. Not a soul did I meet all the way down,\u000athough a cab or two went past me. I was a strollin’ down, thinkin’\u000abetween ourselves how uncommon handy a four of gin hot would be, when\u000asuddenly the glint of a light caught my eye in the window of that same\u000ahouse. Now, I knew that them two houses in Lauriston Gardens was empty\u000aon account of him that owns them who won’t have the drains seen to,\u000athough the very last tenant what lived in one of them died o’ typhoid\u000afever. I was knocked all in a heap therefore at seeing a light in\u000athe window, and I suspected as something was wrong. When I got to the\u000adoor----”\u000a\u000a“You stopped, and then walked back to the garden gate,” my companion\u000ainterrupted. “What did you do that for?”\u000a\u000aRance gave a violent jump, and stared at Sherlock Holmes with the utmost\u000aamazement upon his features.\u000a\u000a“Why, that’s true, sir,” he said; “though how you come to know it,\u000aHeaven only knows. Ye see, when I got up to the door it was so still and\u000aso lonesome, that I thought I’d be none the worse for some one with me.\u000aI ain’t afeared of anything on this side o’ the grave; but I thought\u000athat maybe it was him that died o’ the typhoid inspecting the drains\u000awhat killed him. The thought gave me a kind o’ turn, and I walked back\u000ato the gate to see if I could see Murcher’s lantern, but there wasn’t no\u000asign of him nor of anyone else.”\u000a\u000a“There was no one in the street?”\u000a\u000a“Not a livin’ soul, sir, nor as much as a dog. Then I pulled myself\u000atogether and went back and pushed the door open. All was quiet inside,\u000aso I went into the room where the light was a-burnin’. There was a\u000acandle flickerin’ on the mantelpiece--a red wax one--and by its light I\u000asaw----”\u000a\u000a“Yes, I know all that you saw. You walked round the room several times,\u000aand you knelt down by the body, and then you walked through and tried\u000athe kitchen door, and then----”\u000a\u000aJohn Rance sprang to his feet with a frightened face and suspicion in\u000ahis eyes. “Where was you hid to see all that?” he cried. “It seems to me\u000athat you knows a deal more than you should.”\u000a\u000aHolmes laughed and threw his card across the table to the constable.\u000a“Don’t get arresting me for the murder,” he said. “I am one of the\u000ahounds and not the wolf; Mr. Gregson or Mr. Lestrade will answer for\u000athat. Go on, though. What did you do next?”\u000a\u000aRance resumed his seat, without however losing his mystified expression.\u000a“I went back to the gate and sounded my whistle. That brought Murcher\u000aand two more to the spot.”\u000a\u000a“Was the street empty then?”\u000a\u000a“Well, it was, as far as anybody that could be of any good goes.”\u000a\u000a“What do you mean?”\u000a\u000aThe constable’s features broadened into a grin. “I’ve seen many a drunk\u000achap in my time,” he said, “but never anyone so cryin’ drunk as\u000athat cove. He was at the gate when I came out, a-leanin’ up agin the\u000arailings, and a-singin’ at the pitch o’ his lungs about Columbine’s\u000aNew-fangled Banner, or some such stuff. He couldn’t stand, far less\u000ahelp.”\u000a\u000a“What sort of a man was he?” asked Sherlock Holmes.\u000a\u000aJohn Rance appeared to be somewhat irritated at this digression. “He was\u000aan uncommon drunk sort o’ man,” he said. “He’d ha’ found hisself in the\u000astation if we hadn’t been so took up.”\u000a\u000a“His face--his dress--didn’t you notice them?” Holmes broke in\u000aimpatiently.\u000a\u000a“I should think I did notice them, seeing that I had to prop him up--me\u000aand Murcher between us. He was a long chap, with a red face, the lower\u000apart muffled round----”\u000a\u000a“That will do,” cried Holmes. “What became of him?”\u000a\u000a“We’d enough to do without lookin’ after him,” the policeman said, in an\u000aaggrieved voice. “I’ll wager he found his way home all right.”\u000a\u000a“How was he dressed?”\u000a\u000a“A brown overcoat.”\u000a\u000a“Had he a whip in his hand?”\u000a\u000a“A whip--no.”\u000a\u000a“He must have left it behind,” muttered my companion. “You didn’t happen\u000ato see or hear a cab after that?”\u000a\u000a“No.”\u000a\u000a“There’s a half-sovereign for you,” my companion said, standing up and\u000ataking his hat. “I am afraid, Rance, that you will never rise in the\u000aforce. That head of yours should be for use as well as ornament. You\u000amight have gained your sergeant’s stripes last night. The man whom you\u000aheld in your hands is the man who holds the clue of this mystery, and\u000awhom we are seeking. There is no use of arguing about it now; I tell you\u000athat it is so. Come along, Doctor.”\u000a\u000aWe started off for the cab together, leaving our informant incredulous,\u000abut obviously uncomfortable.\u000a\u000a“The blundering fool,” Holmes said, bitterly, as we drove back to our\u000alodgings. “Just to think of his having such an incomparable bit of good\u000aluck, and not taking advantage of it.”\u000a\u000a“I am rather in the dark still. It is true that the description of this\u000aman tallies with your idea of the second party in this mystery. But why\u000ashould he come back to the house after leaving it? That is not the way\u000aof criminals.”\u000a\u000a“The ring, man, the ring: that was what he came back for. If we have no\u000aother way of catching him, we can always bait our line with the ring. I\u000ashall have him, Doctor--I’ll lay you two to one that I have him. I must\u000athank you for it all. I might not have gone but for you, and so have\u000amissed the finest study I ever came across: a study in scarlet, eh?\u000aWhy shouldn’t we use a little art jargon. There’s the scarlet thread of\u000amurder running through the colourless skein of life, and our duty is\u000ato unravel it, and isolate it, and expose every inch of it. And now\u000afor lunch, and then for Norman Neruda. Her attack and her bowing\u000aare splendid. What’s that little thing of Chopin’s she plays so\u000amagnificently: Tra-la-la-lira-lira-lay.”\u000a\u000aLeaning back in the cab, this amateur bloodhound carolled away like a\u000alark while I meditated upon the many-sidedness of the human mind.\u000a\u000a\u000a\u000a\u000aCHAPTER V. OUR ADVERTISEMENT BRINGS A VISITOR.\u000a\u000a\u000aOUR morning’s exertions had been too much for my weak health, and I was\u000atired out in the afternoon. After Holmes’ departure for the concert, I\u000alay down upon the sofa and endeavoured to get a couple of hours’ sleep.\u000aIt was a useless attempt. My mind had been too much excited by all that\u000ahad occurred, and the strangest fancies and surmises crowded into\u000ait. Every time that I closed my eyes I saw before me the distorted\u000ababoon-like countenance of the murdered man. So sinister was the\u000aimpression which that face had produced upon me that I found it\u000adifficult to feel anything but gratitude for him who had removed its\u000aowner from the world. If ever human features bespoke vice of the most\u000amalignant type, they were certainly those of Enoch J. Drebber, of\u000aCleveland. Still I recognized that justice must be done, and that the\u000adepravity of the victim was no condonment [11] in the eyes of the law.\u000a\u000aThe more I thought of it the more extraordinary did my companion’s\u000ahypothesis, that the man had been poisoned, appear. I remembered how he\u000ahad sniffed his lips, and had no doubt that he had detected something\u000awhich had given rise to the idea. Then, again, if not poison, what\u000ahad caused the man’s death, since there was neither wound nor marks of\u000astrangulation? But, on the other hand, whose blood was that which lay so\u000athickly upon the floor? There were no signs of a struggle, nor had the\u000avictim any weapon with which he might have wounded an antagonist. As\u000along as all these questions were unsolved, I felt that sleep would be\u000ano easy matter, either for Holmes or myself. His quiet self-confident\u000amanner convinced me that he had already formed a theory which explained\u000aall the facts, though what it was I could not for an instant conjecture.\u000a\u000aHe was very late in returning--so late, that I knew that the concert\u000acould not have detained him all the time. Dinner was on the table before\u000ahe appeared.\u000a\u000a“It was magnificent,” he said, as he took his seat. “Do you remember\u000awhat Darwin says about music? He claims that the power of producing and\u000aappreciating it existed among the human race long before the power of\u000aspeech was arrived at. Perhaps that is why we are so subtly influenced\u000aby it. There are vague memories in our souls of those misty centuries\u000awhen the world was in its childhood.”\u000a\u000a“That’s rather a broad idea,” I remarked.\u000a\u000a“One’s ideas must be as broad as Nature if they are to interpret\u000aNature,” he answered. “What’s the matter? You’re not looking quite\u000ayourself. This Brixton Road affair has upset you.”\u000a\u000a“To tell the truth, it has,” I said. “I ought to be more case-hardened\u000aafter my Afghan experiences. I saw my own comrades hacked to pieces at\u000aMaiwand without losing my nerve.”\u000a\u000a“I can understand. There is a mystery about this which stimulates the\u000aimagination; where there is no imagination there is no horror. Have you\u000aseen the evening paper?”\u000a\u000a“No.”\u000a\u000a“It gives a fairly good account of the affair. It does not mention the\u000afact that when the man was raised up, a woman’s wedding ring fell upon\u000athe floor. It is just as well it does not.”\u000a\u000a“Why?”\u000a\u000a“Look at this advertisement,” he answered. “I had one sent to every\u000apaper this morning immediately after the affair.”\u000a\u000aHe threw the paper across to me and I glanced at the place indicated. It\u000awas the first announcement in the “Found” column. “In Brixton Road,\u000athis morning,” it ran, “a plain gold wedding ring, found in the roadway\u000abetween the ‘White Hart’ Tavern and Holland Grove. Apply Dr. Watson,\u000a221B, Baker Street, between eight and nine this evening.”\u000a\u000a“Excuse my using your name,” he said. “If I used my own some of these\u000adunderheads would recognize it, and want to meddle in the affair.”\u000a\u000a“That is all right,” I answered. “But supposing anyone applies, I have\u000ano ring.”\u000a\u000a“Oh yes, you have,” said he, handing me one. “This will do very well. It\u000ais almost a facsimile.”\u000a\u000a“And who do you expect will answer this advertisement.”\u000a\u000a“Why, the man in the brown coat--our florid friend with the square toes.\u000aIf he does not come himself he will send an accomplice.”\u000a\u000a“Would he not consider it as too dangerous?”\u000a\u000a“Not at all. If my view of the case is correct, and I have every reason\u000ato believe that it is, this man would rather risk anything than lose the\u000aring. According to my notion he dropped it while stooping over Drebber’s\u000abody, and did not miss it at the time. After leaving the house he\u000adiscovered his loss and hurried back, but found the police already in\u000apossession, owing to his own folly in leaving the candle burning. He had\u000ato pretend to be drunk in order to allay the suspicions which might have\u000abeen aroused by his appearance at the gate. Now put yourself in that\u000aman’s place. On thinking the matter over, it must have occurred to him\u000athat it was possible that he had lost the ring in the road after leaving\u000athe house. What would he do, then? He would eagerly look out for the\u000aevening papers in the hope of seeing it among the articles found. His\u000aeye, of course, would light upon this. He would be overjoyed. Why should\u000ahe fear a trap? There would be no reason in his eyes why the finding\u000aof the ring should be connected with the murder. He would come. He will\u000acome. You shall see him within an hour?”\u000a\u000a“And then?” I asked.\u000a\u000a“Oh, you can leave me to deal with him then. Have you any arms?”\u000a\u000a“I have my old service revolver and a few cartridges.”\u000a\u000a“You had better clean it and load it. He will be a desperate man,\u000aand though I shall take him unawares, it is as well to be ready for\u000aanything.”\u000a\u000aI went to my bedroom and followed his advice. When I returned with\u000athe pistol the table had been cleared, and Holmes was engaged in his\u000afavourite occupation of scraping upon his violin.\u000a\u000a“The plot thickens,” he said, as I entered; “I have just had an answer\u000ato my American telegram. My view of the case is the correct one.”\u000a\u000a“And that is?” I asked eagerly.\u000a\u000a“My fiddle would be the better for new strings,” he remarked. “Put your\u000apistol in your pocket. When the fellow comes speak to him in an ordinary\u000away. Leave the rest to me. Don’t frighten him by looking at him too\u000ahard.”\u000a\u000a“It is eight o’clock now,” I said, glancing at my watch.\u000a\u000a“Yes. He will probably be here in a few minutes. Open the door slightly.\u000aThat will do. Now put the key on the inside. Thank you! This is a\u000aqueer old book I picked up at a stall yesterday--‘De Jure inter\u000aGentes’--published in Latin at Liege in the Lowlands, in 1642. Charles’\u000ahead was still firm on his shoulders when this little brown-backed\u000avolume was struck off.”\u000a\u000a“Who is the printer?”\u000a\u000a“Philippe de Croy, whoever he may have been. On the fly-leaf, in very\u000afaded ink, is written ‘Ex libris Guliolmi Whyte.’ I wonder who William\u000aWhyte was. Some pragmatical seventeenth century lawyer, I suppose. His\u000awriting has a legal twist about it. Here comes our man, I think.”\u000a\u000aAs he spoke there was a sharp ring at the bell. Sherlock Holmes rose\u000asoftly and moved his chair in the direction of the door. We heard the\u000aservant pass along the hall, and the sharp click of the latch as she\u000aopened it.\u000a\u000a“Does Dr. Watson live here?” asked a clear but rather harsh voice. We\u000acould not hear the servant’s reply, but the door closed, and some one\u000abegan to ascend the stairs. The footfall was an uncertain and shuffling\u000aone. A look of surprise passed over the face of my companion as he\u000alistened to it. It came slowly along the passage, and there was a feeble\u000atap at the door.\u000a\u000a“Come in,” I cried.\u000a\u000aAt my summons, instead of the man of violence whom we expected, a very\u000aold and wrinkled woman hobbled into the apartment. She appeared to be\u000adazzled by the sudden blaze of light, and after dropping a curtsey, she\u000astood blinking at us with her bleared eyes and fumbling in her pocket\u000awith nervous, shaky fingers. I glanced at my companion, and his face\u000ahad assumed such a disconsolate expression that it was all I could do to\u000akeep my countenance.\u000a\u000aThe old crone drew out an evening paper, and pointed at our\u000aadvertisement. “It’s this as has brought me, good gentlemen,” she said,\u000adropping another curtsey; “a gold wedding ring in the Brixton Road. It\u000abelongs to my girl Sally, as was married only this time twelvemonth,\u000awhich her husband is steward aboard a Union boat, and what he’d say if\u000ahe come ‘ome and found her without her ring is more than I can think, he\u000abeing short enough at the best o’ times, but more especially when he\u000ahas the drink. If it please you, she went to the circus last night along\u000awith----”\u000a\u000a“Is that her ring?” I asked.\u000a\u000a“The Lord be thanked!” cried the old woman; “Sally will be a glad woman\u000athis night. That’s the ring.”\u000a\u000a“And what may your address be?” I inquired, taking up a pencil.\u000a\u000a“13, Duncan Street, Houndsditch. A weary way from here.”\u000a\u000a“The Brixton Road does not lie between any circus and Houndsditch,” said\u000aSherlock Holmes sharply.\u000a\u000aThe old woman faced round and looked keenly at him from her little\u000ared-rimmed eyes. “The gentleman asked me for _my_ address,” she said.\u000a“Sally lives in lodgings at 3, Mayfield Place, Peckham.”\u000a\u000a“And your name is----?”\u000a\u000a“My name is Sawyer--her’s is Dennis, which Tom Dennis married her--and\u000aa smart, clean lad, too, as long as he’s at sea, and no steward in the\u000acompany more thought of; but when on shore, what with the women and what\u000awith liquor shops----”\u000a\u000a“Here is your ring, Mrs. Sawyer,” I interrupted, in obedience to a sign\u000afrom my companion; “it clearly belongs to your daughter, and I am glad\u000ato be able to restore it to the rightful owner.”\u000a\u000aWith many mumbled blessings and protestations of gratitude the old crone\u000apacked it away in her pocket, and shuffled off down the stairs. Sherlock\u000aHolmes sprang to his feet the moment that she was gone and rushed into\u000ahis room. He returned in a few seconds enveloped in an ulster and\u000aa cravat. “I’ll follow her,” he said, hurriedly; “she must be an\u000aaccomplice, and will lead me to him. Wait up for me.” The hall door had\u000ahardly slammed behind our visitor before Holmes had descended the stair.\u000aLooking through the window I could see her walking feebly along the\u000aother side, while her pursuer dogged her some little distance behind.\u000a“Either his whole theory is incorrect,” I thought to myself, “or else he\u000awill be led now to the heart of the mystery.” There was no need for him\u000ato ask me to wait up for him, for I felt that sleep was impossible until\u000aI heard the result of his adventure.\u000a\u000aIt was close upon nine when he set out. I had no idea how long he might\u000abe, but I sat stolidly puffing at my pipe and skipping over the pages\u000aof Henri Murger’s “Vie de Bohème.” Ten o’clock passed, and I heard the\u000afootsteps of the maid as they pattered off to bed. Eleven, and the\u000amore stately tread of the landlady passed my door, bound for the same\u000adestination. It was close upon twelve before I heard the sharp sound of\u000ahis latch-key. The instant he entered I saw by his face that he had not\u000abeen successful. Amusement and chagrin seemed to be struggling for the\u000amastery, until the former suddenly carried the day, and he burst into a\u000ahearty laugh.\u000a\u000a“I wouldn’t have the Scotland Yarders know it for the world,” he cried,\u000adropping into his chair; “I have chaffed them so much that they would\u000anever have let me hear the end of it. I can afford to laugh, because I\u000aknow that I will be even with them in the long run.”\u000a\u000a“What is it then?” I asked.\u000a\u000a“Oh, I don’t mind telling a story against myself. That creature had\u000agone a little way when she began to limp and show every sign of being\u000afoot-sore. Presently she came to a halt, and hailed a four-wheeler which\u000awas passing. I managed to be close to her so as to hear the address, but\u000aI need not have been so anxious, for she sang it out loud enough to\u000abe heard at the other side of the street, ‘Drive to 13, Duncan Street,\u000aHoundsditch,’ she cried. This begins to look genuine, I thought, and\u000ahaving seen her safely inside, I perched myself behind. That’s an art\u000awhich every detective should be an expert at. Well, away we rattled, and\u000anever drew rein until we reached the street in question. I hopped off\u000abefore we came to the door, and strolled down the street in an easy,\u000alounging way. I saw the cab pull up. The driver jumped down, and I saw\u000ahim open the door and stand expectantly. Nothing came out though. When\u000aI reached him he was groping about frantically in the empty cab, and\u000agiving vent to the finest assorted collection of oaths that ever I\u000alistened to. There was no sign or trace of his passenger, and I fear it\u000awill be some time before he gets his fare. On inquiring at Number 13\u000awe found that the house belonged to a respectable paperhanger, named\u000aKeswick, and that no one of the name either of Sawyer or Dennis had ever\u000abeen heard of there.”\u000a\u000a“You don’t mean to say,” I cried, in amazement, “that that tottering,\u000afeeble old woman was able to get out of the cab while it was in motion,\u000awithout either you or the driver seeing her?”\u000a\u000a“Old woman be damned!” said Sherlock Holmes, sharply. “We were the old\u000awomen to be so taken in. It must have been a young man, and an\u000aactive one, too, besides being an incomparable actor. The get-up was\u000ainimitable. He saw that he was followed, no doubt, and used this means\u000aof giving me the slip. It shows that the man we are after is not as\u000alonely as I imagined he was, but has friends who are ready to risk\u000asomething for him. Now, Doctor, you are looking done-up. Take my advice\u000aand turn in.”\u000a\u000aI was certainly feeling very weary, so I obeyed his injunction. I\u000aleft Holmes seated in front of the smouldering fire, and long into the\u000awatches of the night I heard the low, melancholy wailings of his violin,\u000aand knew that he was still pondering over the strange problem which he\u000ahad set himself to unravel.\u000a\u000a\u000a\u000a\u000aCHAPTER VI. TOBIAS GREGSON SHOWS WHAT HE CAN DO.\u000a\u000a\u000aTHE papers next day were full of the “Brixton Mystery,” as they termed\u000ait. Each had a long account of the affair, and some had leaders upon it\u000ain addition. There was some information in them which was new to me. I\u000astill retain in my scrap-book numerous clippings and extracts bearing\u000aupon the case. Here is a condensation of a few of them:--\u000a\u000aThe _Daily Telegraph_ remarked that in the history of crime there had\u000aseldom been a tragedy which presented stranger features. The German\u000aname of the victim, the absence of all other motive, and the sinister\u000ainscription on the wall, all pointed to its perpetration by political\u000arefugees and revolutionists. The Socialists had many branches in\u000aAmerica, and the deceased had, no doubt, infringed their unwritten laws,\u000aand been tracked down by them. After alluding airily to the Vehmgericht,\u000aaqua tofana, Carbonari, the Marchioness de Brinvilliers, the Darwinian\u000atheory, the principles of Malthus, and the Ratcliff Highway murders, the\u000aarticle concluded by admonishing the Government and advocating a closer\u000awatch over foreigners in England.\u000a\u000aThe _Standard_ commented upon the fact that lawless outrages of the sort\u000ausually occurred under a Liberal Administration. They arose from the\u000aunsettling of the minds of the masses, and the consequent weakening\u000aof all authority. The deceased was an American gentleman who had\u000abeen residing for some weeks in the Metropolis. He had stayed at the\u000aboarding-house of Madame Charpentier, in Torquay Terrace, Camberwell.\u000aHe was accompanied in his travels by his private secretary, Mr. Joseph\u000aStangerson. The two bade adieu to their landlady upon Tuesday, the\u000a4th inst., and departed to Euston Station with the avowed intention of\u000acatching the Liverpool express. They were afterwards seen together upon\u000athe platform. Nothing more is known of them until Mr. Drebber’s body\u000awas, as recorded, discovered in an empty house in the Brixton Road,\u000amany miles from Euston. How he came there, or how he met his fate, are\u000aquestions which are still involved in mystery. Nothing is known of the\u000awhereabouts of Stangerson. We are glad to learn that Mr. Lestrade and\u000aMr. Gregson, of Scotland Yard, are both engaged upon the case, and it\u000ais confidently anticipated that these well-known officers will speedily\u000athrow light upon the matter.\u000a\u000aThe _Daily News_ observed that there was no doubt as to the crime being\u000aa political one. The despotism and hatred of Liberalism which animated\u000athe Continental Governments had had the effect of driving to our shores\u000aa number of men who might have made excellent citizens were they not\u000asoured by the recollection of all that they had undergone. Among these\u000amen there was a stringent code of honour, any infringement of which was\u000apunished by death. Every effort should be made to find the secretary,\u000aStangerson, and to ascertain some particulars of the habits of the\u000adeceased. A great step had been gained by the discovery of the address\u000aof the house at which he had boarded--a result which was entirely due to\u000athe acuteness and energy of Mr. Gregson of Scotland Yard.\u000a\u000aSherlock Holmes and I read these notices over together at breakfast, and\u000athey appeared to afford him considerable amusement.\u000a\u000a“I told you that, whatever happened, Lestrade and Gregson would be sure\u000ato score.”\u000a\u000a“That depends on how it turns out.”\u000a\u000a“Oh, bless you, it doesn’t matter in the least. If the man is caught, it\u000awill be _on account_ of their exertions; if he escapes, it will be _in\u000aspite_ of their exertions. It’s heads I win and tails you lose. Whatever\u000athey do, they will have followers. ‘Un sot trouve toujours un plus sot\u000aqui l’admire.’”\u000a\u000a“What on earth is this?” I cried, for at this moment there came the\u000apattering of many steps in the hall and on the stairs, accompanied by\u000aaudible expressions of disgust upon the part of our landlady.\u000a\u000a“It’s the Baker Street division of the detective police force,” said my\u000acompanion, gravely; and as he spoke there rushed into the room half a\u000adozen of the dirtiest and most ragged street Arabs that ever I clapped\u000aeyes on.\u000a\u000a“‘Tention!” cried Holmes, in a sharp tone, and the six dirty little\u000ascoundrels stood in a line like so many disreputable statuettes. “In\u000afuture you shall send up Wiggins alone to report, and the rest of you\u000amust wait in the street. Have you found it, Wiggins?”\u000a\u000a“No, sir, we hain’t,” said one of the youths.\u000a\u000a“I hardly expected you would. You must keep on until you do. Here are\u000ayour wages.” [13] He handed each of them a shilling.\u000a\u000a“Now, off you go, and come back with a better report next time.”\u000a\u000aHe waved his hand, and they scampered away downstairs like so many rats,\u000aand we heard their shrill voices next moment in the street.\u000a\u000a“There’s more work to be got out of one of those little beggars than\u000aout of a dozen of the force,” Holmes remarked. “The mere sight of an\u000aofficial-looking person seals men’s lips. These youngsters, however, go\u000aeverywhere and hear everything. They are as sharp as needles, too; all\u000athey want is organisation.”\u000a\u000a“Is it on this Brixton case that you are employing them?” I asked.\u000a\u000a“Yes; there is a point which I wish to ascertain. It is merely a matter\u000aof time. Hullo! we are going to hear some news now with a vengeance!\u000aHere is Gregson coming down the road with beatitude written upon every\u000afeature of his face. Bound for us, I know. Yes, he is stopping. There he\u000ais!”\u000a\u000aThere was a violent peal at the bell, and in a few seconds the\u000afair-haired detective came up the stairs, three steps at a time, and\u000aburst into our sitting-room.\u000a\u000a“My dear fellow,” he cried, wringing Holmes’ unresponsive hand,\u000a“congratulate me! I have made the whole thing as clear as day.”\u000a\u000aA shade of anxiety seemed to me to cross my companion’s expressive face.\u000a\u000a“Do you mean that you are on the right track?” he asked.\u000a\u000a“The right track! Why, sir, we have the man under lock and key.”\u000a\u000a“And his name is?”\u000a\u000a“Arthur Charpentier, sub-lieutenant in Her Majesty’s navy,” cried\u000aGregson, pompously, rubbing his fat hands and inflating his chest.\u000a\u000aSherlock Holmes gave a sigh of relief, and relaxed into a smile.\u000a\u000a“Take a seat, and try one of these cigars,” he said. “We are anxious to\u000aknow how you managed it. Will you have some whiskey and water?”\u000a\u000a“I don’t mind if I do,” the detective answered. “The tremendous\u000aexertions which I have gone through during the last day or two have worn\u000ame out. Not so much bodily exertion, you understand, as the strain upon\u000athe mind. You will appreciate that, Mr. Sherlock Holmes, for we are both\u000abrain-workers.”\u000a\u000a“You do me too much honour,” said Holmes, gravely. “Let us hear how you\u000aarrived at this most gratifying result.”\u000a\u000aThe detective seated himself in the arm-chair, and puffed complacently\u000aat his cigar. Then suddenly he slapped his thigh in a paroxysm of\u000aamusement.\u000a\u000a“The fun of it is,” he cried, “that that fool Lestrade, who thinks\u000ahimself so smart, has gone off upon the wrong track altogether. He is\u000aafter the secretary Stangerson, who had no more to do with the crime\u000athan the babe unborn. I have no doubt that he has caught him by this\u000atime.”\u000a\u000aThe idea tickled Gregson so much that he laughed until he choked.\u000a\u000a“And how did you get your clue?”\u000a\u000a“Ah, I’ll tell you all about it. Of course, Doctor Watson, this is\u000astrictly between ourselves. The first difficulty which we had to contend\u000awith was the finding of this American’s antecedents. Some people would\u000ahave waited until their advertisements were answered, or until parties\u000acame forward and volunteered information. That is not Tobias Gregson’s\u000away of going to work. You remember the hat beside the dead man?”\u000a\u000a“Yes,” said Holmes; “by John Underwood and Sons, 129, Camberwell Road.”\u000a\u000aGregson looked quite crest-fallen.\u000a\u000a“I had no idea that you noticed that,” he said. “Have you been there?”\u000a\u000a“No.”\u000a\u000a“Ha!” cried Gregson, in a relieved voice; “you should never neglect a\u000achance, however small it may seem.”\u000a\u000a“To a great mind, nothing is little,” remarked Holmes, sententiously.\u000a\u000a“Well, I went to Underwood, and asked him if he had sold a hat of that\u000asize and description. He looked over his books, and came on it at once.\u000aHe had sent the hat to a Mr. Drebber, residing at Charpentier’s Boarding\u000aEstablishment, Torquay Terrace. Thus I got at his address.”\u000a\u000a“Smart--very smart!” murmured Sherlock Holmes.\u000a\u000a“I next called upon Madame Charpentier,” continued the detective.\u000a“I found her very pale and distressed. Her daughter was in the room,\u000atoo--an uncommonly fine girl she is, too; she was looking red about\u000athe eyes and her lips trembled as I spoke to her. That didn’t escape\u000amy notice. I began to smell a rat. You know the feeling, Mr. Sherlock\u000aHolmes, when you come upon the right scent--a kind of thrill in your\u000anerves. ‘Have you heard of the mysterious death of your late boarder Mr.\u000aEnoch J. Drebber, of Cleveland?’ I asked.\u000a\u000a“The mother nodded. She didn’t seem able to get out a word. The daughter\u000aburst into tears. I felt more than ever that these people knew something\u000aof the matter.\u000a\u000a“‘At what o’clock did Mr. Drebber leave your house for the train?’ I\u000aasked.\u000a\u000a“‘At eight o’clock,’ she said, gulping in her throat to keep down her\u000aagitation. ‘His secretary, Mr. Stangerson, said that there were two\u000atrains--one at 9.15 and one at 11. He was to catch the first. [14]\u000a\u000a“‘And was that the last which you saw of him?’\u000a\u000a“A terrible change came over the woman’s face as I asked the question.\u000aHer features turned perfectly livid. It was some seconds before she\u000acould get out the single word ‘Yes’--and when it did come it was in a\u000ahusky unnatural tone.\u000a\u000a“There was silence for a moment, and then the daughter spoke in a calm\u000aclear voice.\u000a\u000a“‘No good can ever come of falsehood, mother,’ she said. ‘Let us be\u000afrank with this gentleman. We _did_ see Mr. Drebber again.’\u000a\u000a“‘God forgive you!’ cried Madame Charpentier, throwing up her hands and\u000asinking back in her chair. ‘You have murdered your brother.’\u000a\u000a“‘Arthur would rather that we spoke the truth,’ the girl answered\u000afirmly.\u000a\u000a“‘You had best tell me all about it now,’ I said. ‘Half-confidences are\u000aworse than none. Besides, you do not know how much we know of it.’\u000a\u000a“‘On your head be it, Alice!’ cried her mother; and then, turning to me,\u000a‘I will tell you all, sir. Do not imagine that my agitation on behalf\u000aof my son arises from any fear lest he should have had a hand in this\u000aterrible affair. He is utterly innocent of it. My dread is, however,\u000athat in your eyes and in the eyes of others he may appear to be\u000acompromised. That however is surely impossible. His high character, his\u000aprofession, his antecedents would all forbid it.’\u000a\u000a“‘Your best way is to make a clean breast of the facts,’ I answered.\u000a‘Depend upon it, if your son is innocent he will be none the worse.’\u000a\u000a“‘Perhaps, Alice, you had better leave us together,’ she said, and her\u000adaughter withdrew. ‘Now, sir,’ she continued, ‘I had no intention of\u000atelling you all this, but since my poor daughter has disclosed it I\u000ahave no alternative. Having once decided to speak, I will tell you all\u000awithout omitting any particular.’\u000a\u000a“‘It is your wisest course,’ said I.\u000a\u000a“‘Mr. Drebber has been with us nearly three weeks. He and his secretary,\u000aMr. Stangerson, had been travelling on the Continent. I noticed a\u000a“Copenhagen” label upon each of their trunks, showing that that had been\u000atheir last stopping place. Stangerson was a quiet reserved man, but his\u000aemployer, I am sorry to say, was far otherwise. He was coarse in his\u000ahabits and brutish in his ways. The very night of his arrival he became\u000avery much the worse for drink, and, indeed, after twelve o’clock in the\u000aday he could hardly ever be said to be sober. His manners towards the\u000amaid-servants were disgustingly free and familiar. Worst of all, he\u000aspeedily assumed the same attitude towards my daughter, Alice, and spoke\u000ato her more than once in a way which, fortunately, she is too innocent\u000ato understand. On one occasion he actually seized her in his arms and\u000aembraced her--an outrage which caused his own secretary to reproach him\u000afor his unmanly conduct.’\u000a\u000a“‘But why did you stand all this,’ I asked. ‘I suppose that you can get\u000arid of your boarders when you wish.’\u000a\u000a“Mrs. Charpentier blushed at my pertinent question. ‘Would to God that\u000aI had given him notice on the very day that he came,’ she said. ‘But\u000ait was a sore temptation. They were paying a pound a day each--fourteen\u000apounds a week, and this is the slack season. I am a widow, and my boy in\u000athe Navy has cost me much. I grudged to lose the money. I acted for the\u000abest. This last was too much, however, and I gave him notice to leave on\u000aaccount of it. That was the reason of his going.’\u000a\u000a“‘Well?’\u000a\u000a“‘My heart grew light when I saw him drive away. My son is on leave\u000ajust now, but I did not tell him anything of all this, for his temper\u000ais violent, and he is passionately fond of his sister. When I closed the\u000adoor behind them a load seemed to be lifted from my mind. Alas, in\u000aless than an hour there was a ring at the bell, and I learned that Mr.\u000aDrebber had returned. He was much excited, and evidently the worse for\u000adrink. He forced his way into the room, where I was sitting with my\u000adaughter, and made some incoherent remark about having missed his train.\u000aHe then turned to Alice, and before my very face, proposed to her that\u000ashe should fly with him. “You are of age,” he said, “and there is no law\u000ato stop you. I have money enough and to spare. Never mind the old girl\u000ahere, but come along with me now straight away. You shall live like a\u000aprincess.” Poor Alice was so frightened that she shrunk away from him,\u000abut he caught her by the wrist and endeavoured to draw her towards the\u000adoor. I screamed, and at that moment my son Arthur came into the room.\u000aWhat happened then I do not know. I heard oaths and the confused sounds\u000aof a scuffle. I was too terrified to raise my head. When I did look up\u000aI saw Arthur standing in the doorway laughing, with a stick in his hand.\u000a“I don’t think that fine fellow will trouble us again,” he said. “I will\u000ajust go after him and see what he does with himself.” With those words\u000ahe took his hat and started off down the street. The next morning we\u000aheard of Mr. Drebber’s mysterious death.’\u000a\u000a“This statement came from Mrs. Charpentier’s lips with many gasps and\u000apauses. At times she spoke so low that I could hardly catch the words. I\u000amade shorthand notes of all that she said, however, so that there should\u000abe no possibility of a mistake.”\u000a\u000a“It’s quite exciting,” said Sherlock Holmes, with a yawn. “What happened\u000anext?”\u000a\u000a“When Mrs. Charpentier paused,” the detective continued, “I saw that the\u000awhole case hung upon one point. Fixing her with my eye in a way which\u000aI always found effective with women, I asked her at what hour her son\u000areturned.\u000a\u000a“‘I do not know,’ she answered.\u000a\u000a“‘Not know?’\u000a\u000a“‘No; he has a latch-key, and he let himself in.’\u000a\u000a“‘After you went to bed?’\u000a\u000a“‘Yes.’\u000a\u000a“‘When did you go to bed?’\u000a\u000a“‘About eleven.’\u000a\u000a“‘So your son was gone at least two hours?’\u000a\u000a“‘Yes.’\u000a\u000a“‘Possibly four or five?’\u000a\u000a“‘Yes.’\u000a\u000a“‘What was he doing during that time?’\u000a\u000a“‘I do not know,’ she answered, turning white to her very lips.\u000a\u000a“Of course after that there was nothing more to be done. I found\u000aout where Lieutenant Charpentier was, took two officers with me, and\u000aarrested him. When I touched him on the shoulder and warned him to come\u000aquietly with us, he answered us as bold as brass, ‘I suppose you\u000aare arresting me for being concerned in the death of that scoundrel\u000aDrebber,’ he said. We had said nothing to him about it, so that his\u000aalluding to it had a most suspicious aspect.”\u000a\u000a“Very,” said Holmes.\u000a\u000a“He still carried the heavy stick which the mother described him as\u000ahaving with him when he followed Drebber. It was a stout oak cudgel.”\u000a\u000a“What is your theory, then?”\u000a\u000a“Well, my theory is that he followed Drebber as far as the Brixton Road.\u000aWhen there, a fresh altercation arose between them, in the course of\u000awhich Drebber received a blow from the stick, in the pit of the stomach,\u000aperhaps, which killed him without leaving any mark. The night was so\u000awet that no one was about, so Charpentier dragged the body of his victim\u000ainto the empty house. As to the candle, and the blood, and the writing\u000aon the wall, and the ring, they may all be so many tricks to throw the\u000apolice on to the wrong scent.”\u000a\u000a“Well done!” said Holmes in an encouraging voice. “Really, Gregson, you\u000aare getting along. We shall make something of you yet.”\u000a\u000a“I flatter myself that I have managed it rather neatly,” the detective\u000aanswered proudly. “The young man volunteered a statement, in which he\u000asaid that after following Drebber some time, the latter perceived him,\u000aand took a cab in order to get away from him. On his way home he met an\u000aold shipmate, and took a long walk with him. On being asked where this\u000aold shipmate lived, he was unable to give any satisfactory reply. I\u000athink the whole case fits together uncommonly well. What amuses me is to\u000athink of Lestrade, who had started off upon the wrong scent. I am afraid\u000ahe won’t make much of [15] Why, by Jove, here’s the very man himself!”\u000a\u000aIt was indeed Lestrade, who had ascended the stairs while we were\u000atalking, and who now entered the room. The assurance and jauntiness\u000awhich generally marked his demeanour and dress were, however, wanting.\u000aHis face was disturbed and troubled, while his clothes were disarranged\u000aand untidy. He had evidently come with the intention of consulting\u000awith Sherlock Holmes, for on perceiving his colleague he appeared to be\u000aembarrassed and put out. He stood in the centre of the room, fumbling\u000anervously with his hat and uncertain what to do. “This is a most\u000aextraordinary case,” he said at last--“a most incomprehensible affair.”\u000a\u000a“Ah, you find it so, Mr. Lestrade!” cried Gregson, triumphantly. “I\u000athought you would come to that conclusion. Have you managed to find the\u000aSecretary, Mr. Joseph Stangerson?”\u000a\u000a“The Secretary, Mr. Joseph Stangerson,” said Lestrade gravely, “was\u000amurdered at Halliday’s Private Hotel about six o’clock this morning.”\u000a\u000a\u000a\u000a\u000aCHAPTER VII. LIGHT IN THE DARKNESS.\u000a\u000a\u000aTHE intelligence with which Lestrade greeted us was so momentous and so\u000aunexpected, that we were all three fairly dumfoundered. Gregson sprang\u000aout of his chair and upset the remainder of his whiskey and water. I\u000astared in silence at Sherlock Holmes, whose lips were compressed and his\u000abrows drawn down over his eyes.\u000a\u000a“Stangerson too!” he muttered. “The plot thickens.”\u000a\u000a“It was quite thick enough before,” grumbled Lestrade, taking a chair.\u000a“I seem to have dropped into a sort of council of war.”\u000a\u000a“Are you--are you sure of this piece of intelligence?” stammered\u000aGregson.\u000a\u000a“I have just come from his room,” said Lestrade. “I was the first to\u000adiscover what had occurred.”\u000a\u000a“We have been hearing Gregson’s view of the matter,” Holmes observed.\u000a“Would you mind letting us know what you have seen and done?”\u000a\u000a“I have no objection,” Lestrade answered, seating himself. “I freely\u000aconfess that I was of the opinion that Stangerson was concerned in\u000athe death of Drebber. This fresh development has shown me that I was\u000acompletely mistaken. Full of the one idea, I set myself to find out\u000awhat had become of the Secretary. They had been seen together at Euston\u000aStation about half-past eight on the evening of the third. At two in the\u000amorning Drebber had been found in the Brixton Road. The question which\u000aconfronted me was to find out how Stangerson had been employed between\u000a8.30 and the time of the crime, and what had become of him afterwards.\u000aI telegraphed to Liverpool, giving a description of the man, and warning\u000athem to keep a watch upon the American boats. I then set to work calling\u000aupon all the hotels and lodging-houses in the vicinity of Euston. You\u000asee, I argued that if Drebber and his companion had become separated,\u000athe natural course for the latter would be to put up somewhere in the\u000avicinity for the night, and then to hang about the station again next\u000amorning.”\u000a\u000a“They would be likely to agree on some meeting-place beforehand,”\u000a remarked Holmes.\u000a\u000a“So it proved. I spent the whole of yesterday evening in making\u000aenquiries entirely without avail. This morning I began very early, and\u000aat eight o’clock I reached Halliday’s Private Hotel, in Little George\u000aStreet. On my enquiry as to whether a Mr. Stangerson was living there,\u000athey at once answered me in the affirmative.\u000a\u000a“‘No doubt you are the gentleman whom he was expecting,’ they said. ‘He\u000ahas been waiting for a gentleman for two days.’\u000a\u000a“‘Where is he now?’ I asked.\u000a\u000a“‘He is upstairs in bed. He wished to be called at nine.’\u000a\u000a“‘I will go up and see him at once,’ I said.\u000a\u000a“It seemed to me that my sudden appearance might shake his nerves and\u000alead him to say something unguarded. The Boots volunteered to show me\u000athe room: it was on the second floor, and there was a small corridor\u000aleading up to it. The Boots pointed out the door to me, and was about to\u000ago downstairs again when I saw something that made me feel sickish, in\u000aspite of my twenty years’ experience. From under the door there curled\u000aa little red ribbon of blood, which had meandered across the passage and\u000aformed a little pool along the skirting at the other side. I gave a cry,\u000awhich brought the Boots back. He nearly fainted when he saw it. The door\u000awas locked on the inside, but we put our shoulders to it, and knocked it\u000ain. The window of the room was open, and beside the window, all huddled\u000aup, lay the body of a man in his nightdress. He was quite dead, and had\u000abeen for some time, for his limbs were rigid and cold. When we turned\u000ahim over, the Boots recognized him at once as being the same gentleman\u000awho had engaged the room under the name of Joseph Stangerson. The cause\u000aof death was a deep stab in the left side, which must have penetrated\u000athe heart. And now comes the strangest part of the affair. What do you\u000asuppose was above the murdered man?”\u000a\u000aI felt a creeping of the flesh, and a presentiment of coming horror,\u000aeven before Sherlock Holmes answered.\u000a\u000a“The word RACHE, written in letters of blood,” he said.\u000a\u000a“That was it,” said Lestrade, in an awe-struck voice; and we were all\u000asilent for a while.\u000a\u000aThere was something so methodical and so incomprehensible about the\u000adeeds of this unknown assassin, that it imparted a fresh ghastliness to\u000ahis crimes. My nerves, which were steady enough on the field of battle\u000atingled as I thought of it.\u000a\u000a“The man was seen,” continued Lestrade. “A milk boy, passing on his way\u000ato the dairy, happened to walk down the lane which leads from the mews\u000aat the back of the hotel. He noticed that a ladder, which usually lay\u000athere, was raised against one of the windows of the second floor, which\u000awas wide open. After passing, he looked back and saw a man descend the\u000aladder. He came down so quietly and openly that the boy imagined him to\u000abe some carpenter or joiner at work in the hotel. He took no particular\u000anotice of him, beyond thinking in his own mind that it was early for him\u000ato be at work. He has an impression that the man was tall, had a reddish\u000aface, and was dressed in a long, brownish coat. He must have stayed in\u000athe room some little time after the murder, for we found blood-stained\u000awater in the basin, where he had washed his hands, and marks on the\u000asheets where he had deliberately wiped his knife.”\u000a\u000aI glanced at Holmes on hearing the description of the murderer, which\u000atallied so exactly with his own. There was, however, no trace of\u000aexultation or satisfaction upon his face.\u000a\u000a“Did you find nothing in the room which could furnish a clue to the\u000amurderer?” he asked.\u000a\u000a“Nothing. Stangerson had Drebber’s purse in his pocket, but it seems\u000athat this was usual, as he did all the paying. There was eighty odd\u000apounds in it, but nothing had been taken. Whatever the motives of these\u000aextraordinary crimes, robbery is certainly not one of them. There were\u000ano papers or memoranda in the murdered man’s pocket, except a single\u000atelegram, dated from Cleveland about a month ago, and containing\u000athe words, ‘J. H. is in Europe.’ There was no name appended to this\u000amessage.”\u000a\u000a“And there was nothing else?” Holmes asked.\u000a\u000a“Nothing of any importance. The man’s novel, with which he had read\u000ahimself to sleep was lying upon the bed, and his pipe was on a chair\u000abeside him. There was a glass of water on the table, and on the\u000awindow-sill a small chip ointment box containing a couple of pills.”\u000a\u000aSherlock Holmes sprang from his chair with an exclamation of delight.\u000a\u000a“The last link,” he cried, exultantly. “My case is complete.”\u000a\u000aThe two detectives stared at him in amazement.\u000a\u000a“I have now in my hands,” my companion said, confidently, “all the\u000athreads which have formed such a tangle. There are, of course, details\u000ato be filled in, but I am as certain of all the main facts, from the\u000atime that Drebber parted from Stangerson at the station, up to the\u000adiscovery of the body of the latter, as if I had seen them with my own\u000aeyes. I will give you a proof of my knowledge. Could you lay your hand\u000aupon those pills?”\u000a\u000a“I have them,” said Lestrade, producing a small white box; “I took them\u000aand the purse and the telegram, intending to have them put in a place of\u000asafety at the Police Station. It was the merest chance my taking these\u000apills, for I am bound to say that I do not attach any importance to\u000athem.”\u000a\u000a“Give them here,” said Holmes. “Now, Doctor,” turning to me, “are those\u000aordinary pills?”\u000a\u000aThey certainly were not. They were of a pearly grey colour, small,\u000around, and almost transparent against the light. “From their lightness\u000aand transparency, I should imagine that they are soluble in water,” I\u000aremarked.\u000a\u000a“Precisely so,” answered Holmes. “Now would you mind going down and\u000afetching that poor little devil of a terrier which has been bad so long,\u000aand which the landlady wanted you to put out of its pain yesterday.”\u000a\u000aI went downstairs and carried the dog upstair in my arms. It’s laboured\u000abreathing and glazing eye showed that it was not far from its end.\u000aIndeed, its snow-white muzzle proclaimed that it had already exceeded\u000athe usual term of canine existence. I placed it upon a cushion on the\u000arug.\u000a\u000a“I will now cut one of these pills in two,” said Holmes, and drawing his\u000apenknife he suited the action to the word. “One half we return into the\u000abox for future purposes. The other half I will place in this wine glass,\u000ain which is a teaspoonful of water. You perceive that our friend, the\u000aDoctor, is right, and that it readily dissolves.”\u000a\u000a“This may be very interesting,” said Lestrade, in the injured tone of\u000aone who suspects that he is being laughed at, “I cannot see, however,\u000awhat it has to do with the death of Mr. Joseph Stangerson.”\u000a\u000a“Patience, my friend, patience! You will find in time that it has\u000aeverything to do with it. I shall now add a little milk to make the\u000amixture palatable, and on presenting it to the dog we find that he laps\u000ait up readily enough.”\u000a\u000aAs he spoke he turned the contents of the wine glass into a saucer and\u000aplaced it in front of the terrier, who speedily licked it dry. Sherlock\u000aHolmes’ earnest demeanour had so far convinced us that we all sat in\u000asilence, watching the animal intently, and expecting some startling\u000aeffect. None such appeared, however. The dog continued to lie stretched\u000aupon tho [16] cushion, breathing in a laboured way, but apparently\u000aneither the better nor the worse for its draught.\u000a\u000aHolmes had taken out his watch, and as minute followed minute without\u000aresult, an expression of the utmost chagrin and disappointment appeared\u000aupon his features. He gnawed his lip, drummed his fingers upon the\u000atable, and showed every other symptom of acute impatience. So great\u000awas his emotion, that I felt sincerely sorry for him, while the two\u000adetectives smiled derisively, by no means displeased at this check which\u000ahe had met.\u000a\u000a“It can’t be a coincidence,” he cried, at last springing from his chair\u000aand pacing wildly up and down the room; “it is impossible that it should\u000abe a mere coincidence. The very pills which I suspected in the case of\u000aDrebber are actually found after the death of Stangerson. And yet they\u000aare inert. What can it mean? Surely my whole chain of reasoning cannot\u000ahave been false. It is impossible! And yet this wretched dog is none the\u000aworse. Ah, I have it! I have it!” With a perfect shriek of delight he\u000arushed to the box, cut the other pill in two, dissolved it, added milk,\u000aand presented it to the terrier. The unfortunate creature’s tongue\u000aseemed hardly to have been moistened in it before it gave a convulsive\u000ashiver in every limb, and lay as rigid and lifeless as if it had been\u000astruck by lightning.\u000a\u000aSherlock Holmes drew a long breath, and wiped the perspiration from his\u000aforehead. “I should have more faith,” he said; “I ought to know by\u000athis time that when a fact appears to be opposed to a long train of\u000adeductions, it invariably proves to be capable of bearing some other\u000ainterpretation. Of the two pills in that box one was of the most deadly\u000apoison, and the other was entirely harmless. I ought to have known that\u000abefore ever I saw the box at all.”\u000a\u000aThis last statement appeared to me to be so startling, that I could\u000ahardly believe that he was in his sober senses. There was the dead dog,\u000ahowever, to prove that his conjecture had been correct. It seemed to me\u000athat the mists in my own mind were gradually clearing away, and I began\u000ato have a dim, vague perception of the truth.\u000a\u000a“All this seems strange to you,” continued Holmes, “because you failed\u000aat the beginning of the inquiry to grasp the importance of the single\u000areal clue which was presented to you. I had the good fortune to seize\u000aupon that, and everything which has occurred since then has served to\u000aconfirm my original supposition, and, indeed, was the logical sequence\u000aof it. Hence things which have perplexed you and made the case more\u000aobscure, have served to enlighten me and to strengthen my conclusions.\u000aIt is a mistake to confound strangeness with mystery. The most\u000acommonplace crime is often the most mysterious because it presents no\u000anew or special features from which deductions may be drawn. This murder\u000awould have been infinitely more difficult to unravel had the body of\u000athe victim been simply found lying in the roadway without any of\u000athose _outré_ and sensational accompaniments which have rendered\u000ait remarkable. These strange details, far from making the case more\u000adifficult, have really had the effect of making it less so.”\u000a\u000aMr. Gregson, who had listened to this address with considerable\u000aimpatience, could contain himself no longer. “Look here, Mr. Sherlock\u000aHolmes,” he said, “we are all ready to acknowledge that you are a smart\u000aman, and that you have your own methods of working. We want something\u000amore than mere theory and preaching now, though. It is a case of taking\u000athe man. I have made my case out, and it seems I was wrong. Young\u000aCharpentier could not have been engaged in this second affair. Lestrade\u000awent after his man, Stangerson, and it appears that he was wrong too.\u000aYou have thrown out hints here, and hints there, and seem to know more\u000athan we do, but the time has come when we feel that we have a right to\u000aask you straight how much you do know of the business. Can you name the\u000aman who did it?”\u000a\u000a“I cannot help feeling that Gregson is right, sir,” remarked Lestrade.\u000a“We have both tried, and we have both failed. You have remarked more\u000athan once since I have been in the room that you had all the evidence\u000awhich you require. Surely you will not withhold it any longer.”\u000a\u000a“Any delay in arresting the assassin,” I observed, “might give him time\u000ato perpetrate some fresh atrocity.”\u000a\u000aThus pressed by us all, Holmes showed signs of irresolution. He\u000acontinued to walk up and down the room with his head sunk on his chest\u000aand his brows drawn down, as was his habit when lost in thought.\u000a\u000a“There will be no more murders,” he said at last, stopping abruptly and\u000afacing us. “You can put that consideration out of the question. You have\u000aasked me if I know the name of the assassin. I do. The mere knowing of\u000ahis name is a small thing, however, compared with the power of laying\u000aour hands upon him. This I expect very shortly to do. I have good hopes\u000aof managing it through my own arrangements; but it is a thing which\u000aneeds delicate handling, for we have a shrewd and desperate man to deal\u000awith, who is supported, as I have had occasion to prove, by another who\u000ais as clever as himself. As long as this man has no idea that anyone\u000acan have a clue there is some chance of securing him; but if he had the\u000aslightest suspicion, he would change his name, and vanish in an instant\u000aamong the four million inhabitants of this great city. Without meaning\u000ato hurt either of your feelings, I am bound to say that I consider these\u000amen to be more than a match for the official force, and that is why I\u000ahave not asked your assistance. If I fail I shall, of course, incur all\u000athe blame due to this omission; but that I am prepared for. At present\u000aI am ready to promise that the instant that I can communicate with you\u000awithout endangering my own combinations, I shall do so.”\u000a\u000aGregson and Lestrade seemed to be far from satisfied by this assurance,\u000aor by the depreciating allusion to the detective police. The former had\u000aflushed up to the roots of his flaxen hair, while the other’s beady eyes\u000aglistened with curiosity and resentment. Neither of them had time to\u000aspeak, however, before there was a tap at the door, and the spokesman\u000aof the street Arabs, young Wiggins, introduced his insignificant and\u000aunsavoury person.\u000a\u000a“Please, sir,” he said, touching his forelock, “I have the cab\u000adownstairs.”\u000a\u000a“Good boy,” said Holmes, blandly. “Why don’t you introduce this pattern\u000aat Scotland Yard?” he continued, taking a pair of steel handcuffs from\u000aa drawer. “See how beautifully the spring works. They fasten in an\u000ainstant.”\u000a\u000a“The old pattern is good enough,” remarked Lestrade, “if we can only\u000afind the man to put them on.”\u000a\u000a“Very good, very good,” said Holmes, smiling. “The cabman may as well\u000ahelp me with my boxes. Just ask him to step up, Wiggins.”\u000a\u000aI was surprised to find my companion speaking as though he were about\u000ato set out on a journey, since he had not said anything to me about it.\u000aThere was a small portmanteau in the room, and this he pulled out and\u000abegan to strap. He was busily engaged at it when the cabman entered the\u000aroom.\u000a\u000a“Just give me a help with this buckle, cabman,” he said, kneeling over\u000ahis task, and never turning his head.\u000a\u000aThe fellow came forward with a somewhat sullen, defiant air, and put\u000adown his hands to assist. At that instant there was a sharp click, the\u000ajangling of metal, and Sherlock Holmes sprang to his feet again.\u000a\u000a“Gentlemen,” he cried, with flashing eyes, “let me introduce you to Mr.\u000aJefferson Hope, the murderer of Enoch Drebber and of Joseph Stangerson.”\u000a\u000aThe whole thing occurred in a moment--so quickly that I had no time\u000ato realize it. I have a vivid recollection of that instant, of Holmes’\u000atriumphant expression and the ring of his voice, of the cabman’s\u000adazed, savage face, as he glared at the glittering handcuffs, which had\u000aappeared as if by magic upon his wrists. For a second or two we might\u000ahave been a group of statues. Then, with an inarticulate roar of fury,\u000athe prisoner wrenched himself free from Holmes’s grasp, and hurled\u000ahimself through the window. Woodwork and glass gave way before him; but\u000abefore he got quite through, Gregson, Lestrade, and Holmes sprang upon\u000ahim like so many staghounds. He was dragged back into the room, and then\u000acommenced a terrific conflict. So powerful and so fierce was he, that\u000athe four of us were shaken off again and again. He appeared to have the\u000aconvulsive strength of a man in an epileptic fit. His face and hands\u000awere terribly mangled by his passage through the glass, but loss of\u000ablood had no effect in diminishing his resistance. It was not until\u000aLestrade succeeded in getting his hand inside his neckcloth and\u000ahalf-strangling him that we made him realize that his struggles were of\u000ano avail; and even then we felt no security until we had pinioned his\u000afeet as well as his hands. That done, we rose to our feet breathless and\u000apanting.\u000a\u000a“We have his cab,” said Sherlock Holmes. “It will serve to take him to\u000aScotland Yard. And now, gentlemen,” he continued, with a pleasant smile,\u000a“we have reached the end of our little mystery. You are very welcome to\u000aput any questions that you like to me now, and there is no danger that I\u000awill refuse to answer them.”\u000a\u000a\u000a\u000a\u000a\u000aPART II. _The Country of the Saints._\u000a\u000a\u000a\u000a\u000aCHAPTER I. ON THE GREAT ALKALI PLAIN.\u000a\u000a\u000aIN the central portion of the great North American Continent there lies\u000aan arid and repulsive desert, which for many a long year served as a\u000abarrier against the advance of civilisation. From the Sierra Nevada to\u000aNebraska, and from the Yellowstone River in the north to the Colorado\u000aupon the south, is a region of desolation and silence. Nor is Nature\u000aalways in one mood throughout this grim district. It comprises\u000asnow-capped and lofty mountains, and dark and gloomy valleys. There are\u000aswift-flowing rivers which dash through jagged cañons; and there are\u000aenormous plains, which in winter are white with snow, and in summer are\u000agrey with the saline alkali dust. They all preserve, however, the common\u000acharacteristics of barrenness, inhospitality, and misery.\u000a\u000aThere are no inhabitants of this land of despair. A band of Pawnees\u000aor of Blackfeet may occasionally traverse it in order to reach other\u000ahunting-grounds, but the hardiest of the braves are glad to lose sight\u000aof those awesome plains, and to find themselves once more upon their\u000aprairies. The coyote skulks among the scrub, the buzzard flaps heavily\u000athrough the air, and the clumsy grizzly bear lumbers through the dark\u000aravines, and picks up such sustenance as it can amongst the rocks. These\u000aare the sole dwellers in the wilderness.\u000a\u000aIn the whole world there can be no more dreary view than that from\u000athe northern slope of the Sierra Blanco. As far as the eye can reach\u000astretches the great flat plain-land, all dusted over with patches of\u000aalkali, and intersected by clumps of the dwarfish chaparral bushes. On\u000athe extreme verge of the horizon lie a long chain of mountain peaks,\u000awith their rugged summits flecked with snow. In this great stretch of\u000acountry there is no sign of life, nor of anything appertaining to life.\u000aThere is no bird in the steel-blue heaven, no movement upon the dull,\u000agrey earth--above all, there is absolute silence. Listen as one may,\u000athere is no shadow of a sound in all that mighty wilderness; nothing but\u000asilence--complete and heart-subduing silence.\u000a\u000aIt has been said there is nothing appertaining to life upon the broad\u000aplain. That is hardly true. Looking down from the Sierra Blanco, one\u000asees a pathway traced out across the desert, which winds away and is\u000alost in the extreme distance. It is rutted with wheels and trodden down\u000aby the feet of many adventurers. Here and there there are scattered\u000awhite objects which glisten in the sun, and stand out against the dull\u000adeposit of alkali. Approach, and examine them! They are bones: some\u000alarge and coarse, others smaller and more delicate. The former have\u000abelonged to oxen, and the latter to men. For fifteen hundred miles one\u000amay trace this ghastly caravan route by these scattered remains of those\u000awho had fallen by the wayside.\u000a\u000aLooking down on this very scene, there stood upon the fourth of May,\u000aeighteen hundred and forty-seven, a solitary traveller. His appearance\u000awas such that he might have been the very genius or demon of the region.\u000aAn observer would have found it difficult to say whether he was nearer\u000ato forty or to sixty. His face was lean and haggard, and the brown\u000aparchment-like skin was drawn tightly over the projecting bones; his\u000along, brown hair and beard were all flecked and dashed with white; his\u000aeyes were sunken in his head, and burned with an unnatural lustre; while\u000athe hand which grasped his rifle was hardly more fleshy than that of a\u000askeleton. As he stood, he leaned upon his weapon for support, and yet\u000ahis tall figure and the massive framework of his bones suggested a wiry\u000aand vigorous constitution. His gaunt face, however, and his clothes,\u000awhich hung so baggily over his shrivelled limbs, proclaimed what it\u000awas that gave him that senile and decrepit appearance. The man was\u000adying--dying from hunger and from thirst.\u000a\u000aHe had toiled painfully down the ravine, and on to this little\u000aelevation, in the vain hope of seeing some signs of water. Now the great\u000asalt plain stretched before his eyes, and the distant belt of savage\u000amountains, without a sign anywhere of plant or tree, which might\u000aindicate the presence of moisture. In all that broad landscape there\u000awas no gleam of hope. North, and east, and west he looked with wild\u000aquestioning eyes, and then he realised that his wanderings had come to\u000aan end, and that there, on that barren crag, he was about to die. “Why\u000anot here, as well as in a feather bed, twenty years hence,” he muttered,\u000aas he seated himself in the shelter of a boulder.\u000a\u000aBefore sitting down, he had deposited upon the ground his useless rifle,\u000aand also a large bundle tied up in a grey shawl, which he had carried\u000aslung over his right shoulder. It appeared to be somewhat too heavy for\u000ahis strength, for in lowering it, it came down on the ground with some\u000alittle violence. Instantly there broke from the grey parcel a little\u000amoaning cry, and from it there protruded a small, scared face, with very\u000abright brown eyes, and two little speckled, dimpled fists.\u000a\u000a“You’ve hurt me!” said a childish voice reproachfully.\u000a\u000a“Have I though,” the man answered penitently, “I didn’t go for to do\u000ait.” As he spoke he unwrapped the grey shawl and extricated a pretty\u000alittle girl of about five years of age, whose dainty shoes and smart\u000apink frock with its little linen apron all bespoke a mother’s care. The\u000achild was pale and wan, but her healthy arms and legs showed that she\u000ahad suffered less than her companion.\u000a\u000a“How is it now?” he answered anxiously, for she was still rubbing the\u000atowsy golden curls which covered the back of her head.\u000a\u000a“Kiss it and make it well,” she said, with perfect gravity, shoving\u000a[19] the injured part up to him. “That’s what mother used to do. Where’s\u000amother?”\u000a\u000a“Mother’s gone. I guess you’ll see her before long.”\u000a\u000a“Gone, eh!” said the little girl. “Funny, she didn’t say good-bye; she\u000a‘most always did if she was just goin’ over to Auntie’s for tea, and now\u000ashe’s been away three days. Say, it’s awful dry, ain’t it? Ain’t there\u000ano water, nor nothing to eat?”\u000a\u000a“No, there ain’t nothing, dearie. You’ll just need to be patient awhile,\u000aand then you’ll be all right. Put your head up agin me like that, and\u000athen you’ll feel bullier. It ain’t easy to talk when your lips is like\u000aleather, but I guess I’d best let you know how the cards lie. What’s\u000athat you’ve got?”\u000a\u000a“Pretty things! fine things!” cried the little girl enthusiastically,\u000aholding up two glittering fragments of mica. “When we goes back to home\u000aI’ll give them to brother Bob.”\u000a\u000a“You’ll see prettier things than them soon,” said the man confidently.\u000a“You just wait a bit. I was going to tell you though--you remember when\u000awe left the river?”\u000a\u000a“Oh, yes.”\u000a\u000a“Well, we reckoned we’d strike another river soon, d’ye see. But there\u000awas somethin’ wrong; compasses, or map, or somethin’, and it didn’t\u000aturn up. Water ran out. Just except a little drop for the likes of you\u000aand--and----”\u000a\u000a“And you couldn’t wash yourself,” interrupted his companion gravely,\u000astaring up at his grimy visage.\u000a\u000a“No, nor drink. And Mr. Bender, he was the fust to go, and then Indian\u000aPete, and then Mrs. McGregor, and then Johnny Hones, and then, dearie,\u000ayour mother.”\u000a\u000a“Then mother’s a deader too,” cried the little girl dropping her face in\u000aher pinafore and sobbing bitterly.\u000a\u000a“Yes, they all went except you and me. Then I thought there was some\u000achance of water in this direction, so I heaved you over my shoulder and\u000awe tramped it together. It don’t seem as though we’ve improved matters.\u000aThere’s an almighty small chance for us now!”\u000a\u000a“Do you mean that we are going to die too?” asked the child, checking\u000aher sobs, and raising her tear-stained face.\u000a\u000a“I guess that’s about the size of it.”\u000a\u000a“Why didn’t you say so before?” she said, laughing gleefully. “You gave\u000ame such a fright. Why, of course, now as long as we die we’ll be with\u000amother again.”\u000a\u000a“Yes, you will, dearie.”\u000a\u000a“And you too. I’ll tell her how awful good you’ve been. I’ll bet she\u000ameets us at the door of Heaven with a big pitcher of water, and a lot\u000aof buckwheat cakes, hot, and toasted on both sides, like Bob and me was\u000afond of. How long will it be first?”\u000a\u000a“I don’t know--not very long.” The man’s eyes were fixed upon the\u000anorthern horizon. In the blue vault of the heaven there had appeared\u000athree little specks which increased in size every moment, so rapidly did\u000athey approach. They speedily resolved themselves into three large brown\u000abirds, which circled over the heads of the two wanderers, and then\u000asettled upon some rocks which overlooked them. They were buzzards, the\u000avultures of the west, whose coming is the forerunner of death.\u000a\u000a“Cocks and hens,” cried the little girl gleefully, pointing at their\u000aill-omened forms, and clapping her hands to make them rise. “Say, did\u000aGod make this country?”\u000a\u000a“In course He did,” said her companion, rather startled by this\u000aunexpected question.\u000a\u000a“He made the country down in Illinois, and He made the Missouri,” the\u000alittle girl continued. “I guess somebody else made the country in these\u000aparts. It’s not nearly so well done. They forgot the water and the\u000atrees.”\u000a\u000a“What would ye think of offering up prayer?” the man asked diffidently.\u000a\u000a“It ain’t night yet,” she answered.\u000a\u000a“It don’t matter. It ain’t quite regular, but He won’t mind that, you\u000abet. You say over them ones that you used to say every night in the\u000awaggon when we was on the Plains.”\u000a\u000a“Why don’t you say some yourself?” the child asked, with wondering eyes.\u000a\u000a“I disremember them,” he answered. “I hain’t said none since I was half\u000athe height o’ that gun. I guess it’s never too late. You say them out,\u000aand I’ll stand by and come in on the choruses.”\u000a\u000a“Then you’ll need to kneel down, and me too,” she said, laying the shawl\u000aout for that purpose. “You’ve got to put your hands up like this. It\u000amakes you feel kind o’ good.”\u000a\u000aIt was a strange sight had there been anything but the buzzards to see\u000ait. Side by side on the narrow shawl knelt the two wanderers, the little\u000aprattling child and the reckless, hardened adventurer. Her chubby face,\u000aand his haggard, angular visage were both turned up to the cloudless\u000aheaven in heartfelt entreaty to that dread being with whom they were\u000aface to face, while the two voices--the one thin and clear, the other\u000adeep and harsh--united in the entreaty for mercy and forgiveness. The\u000aprayer finished, they resumed their seat in the shadow of the boulder\u000auntil the child fell asleep, nestling upon the broad breast of her\u000aprotector. He watched over her slumber for some time, but Nature proved\u000ato be too strong for him. For three days and three nights he had allowed\u000ahimself neither rest nor repose. Slowly the eyelids drooped over the\u000atired eyes, and the head sunk lower and lower upon the breast, until the\u000aman’s grizzled beard was mixed with the gold tresses of his companion,\u000aand both slept the same deep and dreamless slumber.\u000a\u000aHad the wanderer remained awake for another half hour a strange sight\u000awould have met his eyes. Far away on the extreme verge of the alkali\u000aplain there rose up a little spray of dust, very slight at first, and\u000ahardly to be distinguished from the mists of the distance, but gradually\u000agrowing higher and broader until it formed a solid, well-defined cloud.\u000aThis cloud continued to increase in size until it became evident that it\u000acould only be raised by a great multitude of moving creatures. In more\u000afertile spots the observer would have come to the conclusion that one\u000aof those great herds of bisons which graze upon the prairie land was\u000aapproaching him. This was obviously impossible in these arid wilds. As\u000athe whirl of dust drew nearer to the solitary bluff upon which the two\u000acastaways were reposing, the canvas-covered tilts of waggons and the\u000afigures of armed horsemen began to show up through the haze, and the\u000aapparition revealed itself as being a great caravan upon its journey for\u000athe West. But what a caravan! When the head of it had reached the base\u000aof the mountains, the rear was not yet visible on the horizon. Right\u000aacross the enormous plain stretched the straggling array, waggons\u000aand carts, men on horseback, and men on foot. Innumerable women who\u000astaggered along under burdens, and children who toddled beside the\u000awaggons or peeped out from under the white coverings. This was evidently\u000ano ordinary party of immigrants, but rather some nomad people who had\u000abeen compelled from stress of circumstances to seek themselves a new\u000acountry. There rose through the clear air a confused clattering and\u000arumbling from this great mass of humanity, with the creaking of wheels\u000aand the neighing of horses. Loud as it was, it was not sufficient to\u000arouse the two tired wayfarers above them.\u000a\u000aAt the head of the column there rode a score or more of grave ironfaced\u000amen, clad in sombre homespun garments and armed with rifles. On reaching\u000athe base of the bluff they halted, and held a short council among\u000athemselves.\u000a\u000a“The wells are to the right, my brothers,” said one, a hard-lipped,\u000aclean-shaven man with grizzly hair.\u000a\u000a“To the right of the Sierra Blanco--so we shall reach the Rio Grande,”\u000a said another.\u000a\u000a“Fear not for water,” cried a third. “He who could draw it from the\u000arocks will not now abandon His own chosen people.”\u000a\u000a“Amen! Amen!” responded the whole party.\u000a\u000aThey were about to resume their journey when one of the youngest and\u000akeenest-eyed uttered an exclamation and pointed up at the rugged crag\u000aabove them. From its summit there fluttered a little wisp of pink,\u000ashowing up hard and bright against the grey rocks behind. At the sight\u000athere was a general reining up of horses and unslinging of guns, while\u000afresh horsemen came galloping up to reinforce the vanguard. The word\u000a‘Redskins’ was on every lip.\u000a\u000a“There can’t be any number of Injuns here,” said the elderly man who\u000aappeared to be in command. “We have passed the Pawnees, and there are no\u000aother tribes until we cross the great mountains.”\u000a\u000a“Shall I go forward and see, Brother Stangerson,” asked one of the band.\u000a\u000a“And I,” “and I,” cried a dozen voices.\u000a\u000a“Leave your horses below and we will await you here,” the Elder\u000aanswered. In a moment the young fellows had dismounted, fastened their\u000ahorses, and were ascending the precipitous slope which led up to the\u000aobject which had excited their curiosity. They advanced rapidly and\u000anoiselessly, with the confidence and dexterity of practised scouts.\u000aThe watchers from the plain below could see them flit from rock to rock\u000auntil their figures stood out against the skyline. The young man who had\u000afirst given the alarm was leading them. Suddenly his followers saw him\u000athrow up his hands, as though overcome with astonishment, and on joining\u000ahim they were affected in the same way by the sight which met their\u000aeyes.\u000a\u000aOn the little plateau which crowned the barren hill there stood a\u000asingle giant boulder, and against this boulder there lay a tall man,\u000along-bearded and hard-featured, but of an excessive thinness. His placid\u000aface and regular breathing showed that he was fast asleep. Beside him\u000alay a little child, with her round white arms encircling his brown\u000asinewy neck, and her golden haired head resting upon the breast of his\u000avelveteen tunic. Her rosy lips were parted, showing the regular line of\u000asnow-white teeth within, and a playful smile played over her infantile\u000afeatures. Her plump little white legs terminating in white socks and\u000aneat shoes with shining buckles, offered a strange contrast to the long\u000ashrivelled members of her companion. On the ledge of rock above this\u000astrange couple there stood three solemn buzzards, who, at the sight of\u000athe new comers uttered raucous screams of disappointment and flapped\u000asullenly away.\u000a\u000aThe cries of the foul birds awoke the two sleepers who stared about [20]\u000athem in bewilderment. The man staggered to his feet and looked down upon\u000athe plain which had been so desolate when sleep had overtaken him, and\u000awhich was now traversed by this enormous body of men and of beasts. His\u000aface assumed an expression of incredulity as he gazed, and he passed his\u000aboney hand over his eyes. “This is what they call delirium, I guess,”\u000a he muttered. The child stood beside him, holding on to the skirt of\u000ahis coat, and said nothing but looked all round her with the wondering\u000aquestioning gaze of childhood.\u000a\u000aThe rescuing party were speedily able to convince the two castaways that\u000atheir appearance was no delusion. One of them seized the little girl,\u000aand hoisted her upon his shoulder, while two others supported her gaunt\u000acompanion, and assisted him towards the waggons.\u000a\u000a“My name is John Ferrier,” the wanderer explained; “me and that little\u000aun are all that’s left o’ twenty-one people. The rest is all dead o’\u000athirst and hunger away down in the south.”\u000a\u000a“Is she your child?” asked someone.\u000a\u000a“I guess she is now,” the other cried, defiantly; “she’s mine ‘cause I\u000asaved her. No man will take her from me. She’s Lucy Ferrier from this\u000aday on. Who are you, though?” he continued, glancing with curiosity at\u000ahis stalwart, sunburned rescuers; “there seems to be a powerful lot of\u000aye.”\u000a\u000a“Nigh upon ten thousand,” said one of the young men; “we are the\u000apersecuted children of God--the chosen of the Angel Merona.”\u000a\u000a“I never heard tell on him,” said the wanderer. “He appears to have\u000achosen a fair crowd of ye.”\u000a\u000a“Do not jest at that which is sacred,” said the other sternly. “We are\u000aof those who believe in those sacred writings, drawn in Egyptian letters\u000aon plates of beaten gold, which were handed unto the holy Joseph Smith\u000aat Palmyra. We have come from Nauvoo, in the State of Illinois, where we\u000ahad founded our temple. We have come to seek a refuge from the violent\u000aman and from the godless, even though it be the heart of the desert.”\u000a\u000aThe name of Nauvoo evidently recalled recollections to John Ferrier. “I\u000asee,” he said, “you are the Mormons.”\u000a\u000a“We are the Mormons,” answered his companions with one voice.\u000a\u000a“And where are you going?”\u000a\u000a“We do not know. The hand of God is leading us under the person of our\u000aProphet. You must come before him. He shall say what is to be done with\u000ayou.”\u000a\u000aThey had reached the base of the hill by this time, and were surrounded\u000aby crowds of the pilgrims--pale-faced meek-looking women, strong\u000alaughing children, and anxious earnest-eyed men. Many were the cries\u000aof astonishment and of commiseration which arose from them when they\u000aperceived the youth of one of the strangers and the destitution of the\u000aother. Their escort did not halt, however, but pushed on, followed by\u000aa great crowd of Mormons, until they reached a waggon, which was\u000aconspicuous for its great size and for the gaudiness and smartness of\u000aits appearance. Six horses were yoked to it, whereas the others were\u000afurnished with two, or, at most, four a-piece. Beside the driver there\u000asat a man who could not have been more than thirty years of age, but\u000awhose massive head and resolute expression marked him as a leader. He\u000awas reading a brown-backed volume, but as the crowd approached he laid\u000ait aside, and listened attentively to an account of the episode. Then he\u000aturned to the two castaways.\u000a\u000a“If we take you with us,” he said, in solemn words, “it can only be as\u000abelievers in our own creed. We shall have no wolves in our fold. Better\u000afar that your bones should bleach in this wilderness than that you\u000ashould prove to be that little speck of decay which in time corrupts the\u000awhole fruit. Will you come with us on these terms?”\u000a\u000a“Guess I’ll come with you on any terms,” said Ferrier, with such\u000aemphasis that the grave Elders could not restrain a smile. The leader\u000aalone retained his stern, impressive expression.\u000a\u000a“Take him, Brother Stangerson,” he said, “give him food and drink,\u000aand the child likewise. Let it be your task also to teach him our holy\u000acreed. We have delayed long enough. Forward! On, on to Zion!”\u000a\u000a“On, on to Zion!” cried the crowd of Mormons, and the words rippled down\u000athe long caravan, passing from mouth to mouth until they died away in a\u000adull murmur in the far distance. With a cracking of whips and a creaking\u000aof wheels the great waggons got into motion, and soon the whole caravan\u000awas winding along once more. The Elder to whose care the two waifs\u000ahad been committed, led them to his waggon, where a meal was already\u000aawaiting them.\u000a\u000a“You shall remain here,” he said. “In a few days you will have recovered\u000afrom your fatigues. In the meantime, remember that now and for ever you\u000aare of our religion. Brigham Young has said it, and he has spoken with\u000athe voice of Joseph Smith, which is the voice of God.”\u000a\u000a\u000a\u000a\u000aCHAPTER II. THE FLOWER OF UTAH.\u000a\u000a\u000aTHIS is not the place to commemorate the trials and privations endured\u000aby the immigrant Mormons before they came to their final haven. From the\u000ashores of the Mississippi to the western slopes of the Rocky Mountains\u000athey had struggled on with a constancy almost unparalleled in history.\u000aThe savage man, and the savage beast, hunger, thirst, fatigue, and\u000adisease--every impediment which Nature could place in the way, had all\u000abeen overcome with Anglo-Saxon tenacity. Yet the long journey and the\u000aaccumulated terrors had shaken the hearts of the stoutest among them.\u000aThere was not one who did not sink upon his knees in heartfelt prayer\u000awhen they saw the broad valley of Utah bathed in the sunlight beneath\u000athem, and learned from the lips of their leader that this was the\u000apromised land, and that these virgin acres were to be theirs for\u000aevermore.\u000a\u000aYoung speedily proved himself to be a skilful administrator as well as a\u000aresolute chief. Maps were drawn and charts prepared, in which the future\u000acity was sketched out. All around farms were apportioned and allotted in\u000aproportion to the standing of each individual. The tradesman was put\u000ato his trade and the artisan to his calling. In the town streets and\u000asquares sprang up, as if by magic. In the country there was draining\u000aand hedging, planting and clearing, until the next summer saw the whole\u000acountry golden with the wheat crop. Everything prospered in the strange\u000asettlement. Above all, the great temple which they had erected in the\u000acentre of the city grew ever taller and larger. From the first blush of\u000adawn until the closing of the twilight, the clatter of the hammer\u000aand the rasp of the saw was never absent from the monument which the\u000aimmigrants erected to Him who had led them safe through many dangers.\u000a\u000aThe two castaways, John Ferrier and the little girl who had shared his\u000afortunes and had been adopted as his daughter, accompanied the Mormons\u000ato the end of their great pilgrimage. Little Lucy Ferrier was borne\u000aalong pleasantly enough in Elder Stangerson’s waggon, a retreat which\u000ashe shared with the Mormon’s three wives and with his son, a headstrong\u000aforward boy of twelve. Having rallied, with the elasticity of childhood,\u000afrom the shock caused by her mother’s death, she soon became a pet\u000awith the women, and reconciled herself to this new life in her moving\u000acanvas-covered home. In the meantime Ferrier having recovered from his\u000aprivations, distinguished himself as a useful guide and an indefatigable\u000ahunter. So rapidly did he gain the esteem of his new companions, that\u000awhen they reached the end of their wanderings, it was unanimously agreed\u000athat he should be provided with as large and as fertile a tract of land\u000aas any of the settlers, with the exception of Young himself, and of\u000aStangerson, Kemball, Johnston, and Drebber, who were the four principal\u000aElders.\u000a\u000aOn the farm thus acquired John Ferrier built himself a substantial\u000alog-house, which received so many additions in succeeding years that it\u000agrew into a roomy villa. He was a man of a practical turn of mind,\u000akeen in his dealings and skilful with his hands. His iron constitution\u000aenabled him to work morning and evening at improving and tilling his\u000alands. Hence it came about that his farm and all that belonged to\u000ahim prospered exceedingly. In three years he was better off than his\u000aneighbours, in six he was well-to-do, in nine he was rich, and in twelve\u000athere were not half a dozen men in the whole of Salt Lake City who could\u000acompare with him. From the great inland sea to the distant Wahsatch\u000aMountains there was no name better known than that of John Ferrier.\u000a\u000aThere was one way and only one in which he offended the susceptibilities\u000aof his co-religionists. No argument or persuasion could ever induce him\u000ato set up a female establishment after the manner of his companions. He\u000anever gave reasons for this persistent refusal, but contented himself by\u000aresolutely and inflexibly adhering to his determination. There were some\u000awho accused him of lukewarmness in his adopted religion, and others who\u000aput it down to greed of wealth and reluctance to incur expense. Others,\u000aagain, spoke of some early love affair, and of a fair-haired girl who\u000ahad pined away on the shores of the Atlantic. Whatever the reason,\u000aFerrier remained strictly celibate. In every other respect he conformed\u000ato the religion of the young settlement, and gained the name of being an\u000aorthodox and straight-walking man.\u000a\u000aLucy Ferrier grew up within the log-house, and assisted her adopted\u000afather in all his undertakings. The keen air of the mountains and the\u000abalsamic odour of the pine trees took the place of nurse and mother to\u000athe young girl. As year succeeded to year she grew taller and stronger,\u000aher cheek more rudy, and her step more elastic. Many a wayfarer upon\u000athe high road which ran by Ferrier’s farm felt long-forgotten thoughts\u000arevive in their mind as they watched her lithe girlish figure tripping\u000athrough the wheatfields, or met her mounted upon her father’s mustang,\u000aand managing it with all the ease and grace of a true child of the West.\u000aSo the bud blossomed into a flower, and the year which saw her father\u000athe richest of the farmers left her as fair a specimen of American\u000agirlhood as could be found in the whole Pacific slope.\u000a\u000aIt was not the father, however, who first discovered that the child had\u000adeveloped into the woman. It seldom is in such cases. That mysterious\u000achange is too subtle and too gradual to be measured by dates. Least of\u000aall does the maiden herself know it until the tone of a voice or the\u000atouch of a hand sets her heart thrilling within her, and she learns,\u000awith a mixture of pride and of fear, that a new and a larger nature has\u000aawoken within her. There are few who cannot recall that day and remember\u000athe one little incident which heralded the dawn of a new life. In the\u000acase of Lucy Ferrier the occasion was serious enough in itself, apart\u000afrom its future influence on her destiny and that of many besides.\u000a\u000aIt was a warm June morning, and the Latter Day Saints were as busy as\u000athe bees whose hive they have chosen for their emblem. In the fields and\u000ain the streets rose the same hum of human industry. Down the dusty high\u000aroads defiled long streams of heavily-laden mules, all heading to the\u000awest, for the gold fever had broken out in California, and the Overland\u000aRoute lay through the City of the Elect. There, too, were droves of\u000asheep and bullocks coming in from the outlying pasture lands, and trains\u000aof tired immigrants, men and horses equally weary of their interminable\u000ajourney. Through all this motley assemblage, threading her way with the\u000askill of an accomplished rider, there galloped Lucy Ferrier, her fair\u000aface flushed with the exercise and her long chestnut hair floating out\u000abehind her. She had a commission from her father in the City, and was\u000adashing in as she had done many a time before, with all the fearlessness\u000aof youth, thinking only of her task and how it was to be performed. The\u000atravel-stained adventurers gazed after her in astonishment, and even\u000athe unemotional Indians, journeying in with their pelties, relaxed their\u000aaccustomed stoicism as they marvelled at the beauty of the pale-faced\u000amaiden.\u000a\u000aShe had reached the outskirts of the city when she found the road\u000ablocked by a great drove of cattle, driven by a half-dozen wild-looking\u000aherdsmen from the plains. In her impatience she endeavoured to pass this\u000aobstacle by pushing her horse into what appeared to be a gap. Scarcely\u000ahad she got fairly into it, however, before the beasts closed in behind\u000aher, and she found herself completely imbedded in the moving stream of\u000afierce-eyed, long-horned bullocks. Accustomed as she was to deal with\u000acattle, she was not alarmed at her situation, but took advantage of\u000aevery opportunity to urge her horse on in the hopes of pushing her way\u000athrough the cavalcade. Unfortunately the horns of one of the creatures,\u000aeither by accident or design, came in violent contact with the flank of\u000athe mustang, and excited it to madness. In an instant it reared up upon\u000aits hind legs with a snort of rage, and pranced and tossed in a way that\u000awould have unseated any but a most skilful rider. The situation was full\u000aof peril. Every plunge of the excited horse brought it against the horns\u000aagain, and goaded it to fresh madness. It was all that the girl could\u000ado to keep herself in the saddle, yet a slip would mean a terrible death\u000aunder the hoofs of the unwieldy and terrified animals. Unaccustomed to\u000asudden emergencies, her head began to swim, and her grip upon the bridle\u000ato relax. Choked by the rising cloud of dust and by the steam from the\u000astruggling creatures, she might have abandoned her efforts in despair,\u000abut for a kindly voice at her elbow which assured her of assistance. At\u000athe same moment a sinewy brown hand caught the frightened horse by\u000athe curb, and forcing a way through the drove, soon brought her to the\u000aoutskirts.\u000a\u000a“You’re not hurt, I hope, miss,” said her preserver, respectfully.\u000a\u000aShe looked up at his dark, fierce face, and laughed saucily. “I’m awful\u000afrightened,” she said, naively; “whoever would have thought that Poncho\u000awould have been so scared by a lot of cows?”\u000a\u000a“Thank God you kept your seat,” the other said earnestly. He was a tall,\u000asavage-looking young fellow, mounted on a powerful roan horse, and\u000aclad in the rough dress of a hunter, with a long rifle slung over his\u000ashoulders. “I guess you are the daughter of John Ferrier,” he remarked,\u000a“I saw you ride down from his house. When you see him, ask him if he\u000aremembers the Jefferson Hopes of St. Louis. If he’s the same Ferrier, my\u000afather and he were pretty thick.”\u000a\u000a“Hadn’t you better come and ask yourself?” she asked, demurely.\u000a\u000aThe young fellow seemed pleased at the suggestion, and his dark eyes\u000asparkled with pleasure. “I’ll do so,” he said, “we’ve been in the\u000amountains for two months, and are not over and above in visiting\u000acondition. He must take us as he finds us.”\u000a\u000a“He has a good deal to thank you for, and so have I,” she answered,\u000a“he’s awful fond of me. If those cows had jumped on me he’d have never\u000agot over it.”\u000a\u000a“Neither would I,” said her companion.\u000a\u000a“You! Well, I don’t see that it would make much matter to you, anyhow.\u000aYou ain’t even a friend of ours.”\u000a\u000aThe young hunter’s dark face grew so gloomy over this remark that Lucy\u000aFerrier laughed aloud.\u000a\u000a“There, I didn’t mean that,” she said; “of course, you are a friend now.\u000aYou must come and see us. Now I must push along, or father won’t trust\u000ame with his business any more. Good-bye!”\u000a\u000a“Good-bye,” he answered, raising his broad sombrero, and bending over\u000aher little hand. She wheeled her mustang round, gave it a cut with her\u000ariding-whip, and darted away down the broad road in a rolling cloud of\u000adust.\u000a\u000aYoung Jefferson Hope rode on with his companions, gloomy and taciturn.\u000aHe and they had been among the Nevada Mountains prospecting for silver,\u000aand were returning to Salt Lake City in the hope of raising capital\u000aenough to work some lodes which they had discovered. He had been as keen\u000aas any of them upon the business until this sudden incident had drawn\u000ahis thoughts into another channel. The sight of the fair young girl,\u000aas frank and wholesome as the Sierra breezes, had stirred his volcanic,\u000auntamed heart to its very depths. When she had vanished from his sight,\u000ahe realized that a crisis had come in his life, and that neither silver\u000aspeculations nor any other questions could ever be of such importance to\u000ahim as this new and all-absorbing one. The love which had sprung up in\u000ahis heart was not the sudden, changeable fancy of a boy, but rather the\u000awild, fierce passion of a man of strong will and imperious temper. He\u000ahad been accustomed to succeed in all that he undertook. He swore in\u000ahis heart that he would not fail in this if human effort and human\u000aperseverance could render him successful.\u000a\u000aHe called on John Ferrier that night, and many times again, until\u000ahis face was a familiar one at the farm-house. John, cooped up in the\u000avalley, and absorbed in his work, had had little chance of learning\u000athe news of the outside world during the last twelve years. All this\u000aJefferson Hope was able to tell him, and in a style which interested\u000aLucy as well as her father. He had been a pioneer in California, and\u000acould narrate many a strange tale of fortunes made and fortunes lost\u000ain those wild, halcyon days. He had been a scout too, and a trapper, a\u000asilver explorer, and a ranchman. Wherever stirring adventures were to be\u000ahad, Jefferson Hope had been there in search of them. He soon became a\u000afavourite with the old farmer, who spoke eloquently of his virtues. On\u000asuch occasions, Lucy was silent, but her blushing cheek and her bright,\u000ahappy eyes, showed only too clearly that her young heart was no longer\u000aher own. Her honest father may not have observed these symptoms,\u000abut they were assuredly not thrown away upon the man who had won her\u000aaffections.\u000a\u000aIt was a summer evening when he came galloping down the road and pulled\u000aup at the gate. She was at the doorway, and came down to meet him. He\u000athrew the bridle over the fence and strode up the pathway.\u000a\u000a“I am off, Lucy,” he said, taking her two hands in his, and gazing\u000atenderly down into her face; “I won’t ask you to come with me now, but\u000awill you be ready to come when I am here again?”\u000a\u000a“And when will that be?” she asked, blushing and laughing.\u000a\u000a“A couple of months at the outside. I will come and claim you then, my\u000adarling. There’s no one who can stand between us.”\u000a\u000a“And how about father?” she asked.\u000a\u000a“He has given his consent, provided we get these mines working all\u000aright. I have no fear on that head.”\u000a\u000a“Oh, well; of course, if you and father have arranged it all, there’s\u000ano more to be said,” she whispered, with her cheek against his broad\u000abreast.\u000a\u000a“Thank God!” he said, hoarsely, stooping and kissing her. “It is\u000asettled, then. The longer I stay, the harder it will be to go. They are\u000awaiting for me at the cañon. Good-bye, my own darling--good-bye. In two\u000amonths you shall see me.”\u000a\u000aHe tore himself from her as he spoke, and, flinging himself upon his\u000ahorse, galloped furiously away, never even looking round, as though\u000aafraid that his resolution might fail him if he took one glance at\u000awhat he was leaving. She stood at the gate, gazing after him until\u000ahe vanished from her sight. Then she walked back into the house, the\u000ahappiest girl in all Utah.\u000a\u000a\u000a\u000a\u000aCHAPTER III. JOHN FERRIER TALKS WITH THE PROPHET.\u000a\u000a\u000aTHREE weeks had passed since Jefferson Hope and his comrades had\u000adeparted from Salt Lake City. John Ferrier’s heart was sore within him\u000awhen he thought of the young man’s return, and of the impending loss of\u000ahis adopted child. Yet her bright and happy face reconciled him to\u000athe arrangement more than any argument could have done. He had always\u000adetermined, deep down in his resolute heart, that nothing would ever\u000ainduce him to allow his daughter to wed a Mormon. Such a marriage he\u000aregarded as no marriage at all, but as a shame and a disgrace. Whatever\u000ahe might think of the Mormon doctrines, upon that one point he was\u000ainflexible. He had to seal his mouth on the subject, however, for to\u000aexpress an unorthodox opinion was a dangerous matter in those days in\u000athe Land of the Saints.\u000a\u000aYes, a dangerous matter--so dangerous that even the most saintly dared\u000aonly whisper their religious opinions with bated breath, lest something\u000awhich fell from their lips might be misconstrued, and bring down a\u000aswift retribution upon them. The victims of persecution had now turned\u000apersecutors on their own account, and persecutors of the most\u000aterrible description. Not the Inquisition of Seville, nor the German\u000aVehm-gericht, nor the Secret Societies of Italy, were ever able to put\u000aa more formidable machinery in motion than that which cast a cloud over\u000athe State of Utah.\u000a\u000aIts invisibility, and the mystery which was attached to it, made\u000athis organization doubly terrible. It appeared to be omniscient and\u000aomnipotent, and yet was neither seen nor heard. The man who held out\u000aagainst the Church vanished away, and none knew whither he had gone or\u000awhat had befallen him. His wife and his children awaited him at home,\u000abut no father ever returned to tell them how he had fared at the\u000ahands of his secret judges. A rash word or a hasty act was followed\u000aby annihilation, and yet none knew what the nature might be of this\u000aterrible power which was suspended over them. No wonder that men\u000awent about in fear and trembling, and that even in the heart of the\u000awilderness they dared not whisper the doubts which oppressed them.\u000a\u000aAt first this vague and terrible power was exercised only upon the\u000arecalcitrants who, having embraced the Mormon faith, wished afterwards\u000ato pervert or to abandon it. Soon, however, it took a wider range. The\u000asupply of adult women was running short, and polygamy without a female\u000apopulation on which to draw was a barren doctrine indeed. Strange\u000arumours began to be bandied about--rumours of murdered immigrants and\u000arifled camps in regions where Indians had never been seen. Fresh women\u000aappeared in the harems of the Elders--women who pined and wept, and\u000abore upon their faces the traces of an unextinguishable horror. Belated\u000awanderers upon the mountains spoke of gangs of armed men, masked,\u000astealthy, and noiseless, who flitted by them in the darkness. These\u000atales and rumours took substance and shape, and were corroborated and\u000are-corroborated, until they resolved themselves into a definite name.\u000aTo this day, in the lonely ranches of the West, the name of the Danite\u000aBand, or the Avenging Angels, is a sinister and an ill-omened one.\u000a\u000aFuller knowledge of the organization which produced such terrible\u000aresults served to increase rather than to lessen the horror which it\u000ainspired in the minds of men. None knew who belonged to this ruthless\u000asociety. The names of the participators in the deeds of blood and\u000aviolence done under the name of religion were kept profoundly secret.\u000aThe very friend to whom you communicated your misgivings as to the\u000aProphet and his mission, might be one of those who would come forth at\u000anight with fire and sword to exact a terrible reparation. Hence every\u000aman feared his neighbour, and none spoke of the things which were\u000anearest his heart.\u000a\u000aOne fine morning, John Ferrier was about to set out to his wheatfields,\u000awhen he heard the click of the latch, and, looking through the window,\u000asaw a stout, sandy-haired, middle-aged man coming up the pathway. His\u000aheart leapt to his mouth, for this was none other than the great Brigham\u000aYoung himself. Full of trepidation--for he knew that such a visit boded\u000ahim little good--Ferrier ran to the door to greet the Mormon chief. The\u000alatter, however, received his salutations coldly, and followed him with\u000aa stern face into the sitting-room.\u000a\u000a“Brother Ferrier,” he said, taking a seat, and eyeing the farmer keenly\u000afrom under his light-coloured eyelashes, “the true believers have been\u000agood friends to you. We picked you up when you were starving in the\u000adesert, we shared our food with you, led you safe to the Chosen Valley,\u000agave you a goodly share of land, and allowed you to wax rich under our\u000aprotection. Is not this so?”\u000a\u000a“It is so,” answered John Ferrier.\u000a\u000a“In return for all this we asked but one condition: that was, that you\u000ashould embrace the true faith, and conform in every way to its usages.\u000aThis you promised to do, and this, if common report says truly, you have\u000aneglected.”\u000a\u000a“And how have I neglected it?” asked Ferrier, throwing out his hands in\u000aexpostulation. “Have I not given to the common fund? Have I not attended\u000aat the Temple? Have I not----?”\u000a\u000a“Where are your wives?” asked Young, looking round him. “Call them in,\u000athat I may greet them.”\u000a\u000a“It is true that I have not married,” Ferrier answered. “But women\u000awere few, and there were many who had better claims than I. I was not a\u000alonely man: I had my daughter to attend to my wants.”\u000a\u000a“It is of that daughter that I would speak to you,” said the leader\u000aof the Mormons. “She has grown to be the flower of Utah, and has found\u000afavour in the eyes of many who are high in the land.”\u000a\u000aJohn Ferrier groaned internally.\u000a\u000a“There are stories of her which I would fain disbelieve--stories that\u000ashe is sealed to some Gentile. This must be the gossip of idle tongues.\u000aWhat is the thirteenth rule in the code of the sainted Joseph Smith?\u000a‘Let every maiden of the true faith marry one of the elect; for if\u000ashe wed a Gentile, she commits a grievous sin.’ This being so, it is\u000aimpossible that you, who profess the holy creed, should suffer your\u000adaughter to violate it.”\u000a\u000aJohn Ferrier made no answer, but he played nervously with his\u000ariding-whip.\u000a\u000a“Upon this one point your whole faith shall be tested--so it has been\u000adecided in the Sacred Council of Four. The girl is young, and we would\u000anot have her wed grey hairs, neither would we deprive her of all\u000achoice. We Elders have many heifers, [29] but our children must also\u000abe provided. Stangerson has a son, and Drebber has a son, and either of\u000athem would gladly welcome your daughter to their house. Let her choose\u000abetween them. They are young and rich, and of the true faith. What say\u000ayou to that?”\u000a\u000aFerrier remained silent for some little time with his brows knitted.\u000a\u000a“You will give us time,” he said at last. “My daughter is very\u000ayoung--she is scarce of an age to marry.”\u000a\u000a“She shall have a month to choose,” said Young, rising from his seat.\u000a“At the end of that time she shall give her answer.”\u000a\u000aHe was passing through the door, when he turned, with flushed face and\u000aflashing eyes. “It were better for you, John Ferrier,” he thundered,\u000a“that you and she were now lying blanched skeletons upon the Sierra\u000aBlanco, than that you should put your weak wills against the orders of\u000athe Holy Four!”\u000a\u000aWith a threatening gesture of his hand, he turned from the door, and\u000aFerrier heard his heavy step scrunching along the shingly path.\u000a\u000aHe was still sitting with his elbows upon his knees, considering how he\u000ashould broach the matter to his daughter when a soft hand was laid upon\u000ahis, and looking up, he saw her standing beside him. One glance at her\u000apale, frightened face showed him that she had heard what had passed.\u000a\u000a“I could not help it,” she said, in answer to his look. “His voice rang\u000athrough the house. Oh, father, father, what shall we do?”\u000a\u000a“Don’t you scare yourself,” he answered, drawing her to him, and passing\u000ahis broad, rough hand caressingly over her chestnut hair. “We’ll fix it\u000aup somehow or another. You don’t find your fancy kind o’ lessening for\u000athis chap, do you?”\u000a\u000aA sob and a squeeze of his hand was her only answer.\u000a\u000a“No; of course not. I shouldn’t care to hear you say you did. He’s a\u000alikely lad, and he’s a Christian, which is more than these folk here, in\u000aspite o’ all their praying and preaching. There’s a party starting for\u000aNevada to-morrow, and I’ll manage to send him a message letting him know\u000athe hole we are in. If I know anything o’ that young man, he’ll be back\u000ahere with a speed that would whip electro-telegraphs.”\u000a\u000aLucy laughed through her tears at her father’s description.\u000a\u000a“When he comes, he will advise us for the best. But it is for you that\u000aI am frightened, dear. One hears--one hears such dreadful stories about\u000athose who oppose the Prophet: something terrible always happens to\u000athem.”\u000a\u000a“But we haven’t opposed him yet,” her father answered. “It will be time\u000ato look out for squalls when we do. We have a clear month before us; at\u000athe end of that, I guess we had best shin out of Utah.”\u000a\u000a“Leave Utah!”\u000a\u000a“That’s about the size of it.”\u000a\u000a“But the farm?”\u000a\u000a“We will raise as much as we can in money, and let the rest go. To tell\u000athe truth, Lucy, it isn’t the first time I have thought of doing it. I\u000adon’t care about knuckling under to any man, as these folk do to their\u000adarned prophet. I’m a free-born American, and it’s all new to me. Guess\u000aI’m too old to learn. If he comes browsing about this farm, he might\u000achance to run up against a charge of buckshot travelling in the opposite\u000adirection.”\u000a\u000a“But they won’t let us leave,” his daughter objected.\u000a\u000a“Wait till Jefferson comes, and we’ll soon manage that. In the meantime,\u000adon’t you fret yourself, my dearie, and don’t get your eyes swelled up,\u000aelse he’ll be walking into me when he sees you. There’s nothing to be\u000aafeared about, and there’s no danger at all.”\u000a\u000aJohn Ferrier uttered these consoling remarks in a very confident tone,\u000abut she could not help observing that he paid unusual care to the\u000afastening of the doors that night, and that he carefully cleaned and\u000aloaded the rusty old shotgun which hung upon the wall of his bedroom.\u000a\u000a\u000a\u000a\u000aCHAPTER IV. A FLIGHT FOR LIFE.\u000a\u000a\u000aON the morning which followed his interview with the Mormon Prophet,\u000aJohn Ferrier went in to Salt Lake City, and having found his\u000aacquaintance, who was bound for the Nevada Mountains, he entrusted him\u000awith his message to Jefferson Hope. In it he told the young man of the\u000aimminent danger which threatened them, and how necessary it was that he\u000ashould return. Having done thus he felt easier in his mind, and returned\u000ahome with a lighter heart.\u000a\u000aAs he approached his farm, he was surprised to see a horse hitched to\u000aeach of the posts of the gate. Still more surprised was he on entering\u000ato find two young men in possession of his sitting-room. One, with a\u000along pale face, was leaning back in the rocking-chair, with his feet\u000acocked up upon the stove. The other, a bull-necked youth with coarse\u000abloated features, was standing in front of the window with his hands in\u000ahis pocket, whistling a popular hymn. Both of them nodded to Ferrier as\u000ahe entered, and the one in the rocking-chair commenced the conversation.\u000a\u000a“Maybe you don’t know us,” he said. “This here is the son of Elder\u000aDrebber, and I’m Joseph Stangerson, who travelled with you in the desert\u000awhen the Lord stretched out His hand and gathered you into the true\u000afold.”\u000a\u000a“As He will all the nations in His own good time,” said the other in a\u000anasal voice; “He grindeth slowly but exceeding small.”\u000a\u000aJohn Ferrier bowed coldly. He had guessed who his visitors were.\u000a\u000a“We have come,” continued Stangerson, “at the advice of our fathers to\u000asolicit the hand of your daughter for whichever of us may seem good to\u000ayou and to her. As I have but four wives and Brother Drebber here has\u000aseven, it appears to me that my claim is the stronger one.”\u000a\u000a“Nay, nay, Brother Stangerson,” cried the other; “the question is not\u000ahow many wives we have, but how many we can keep. My father has now\u000agiven over his mills to me, and I am the richer man.”\u000a\u000a“But my prospects are better,” said the other, warmly. “When the\u000aLord removes my father, I shall have his tanning yard and his leather\u000afactory. Then I am your elder, and am higher in the Church.”\u000a\u000a“It will be for the maiden to decide,” rejoined young Drebber, smirking\u000aat his own reflection in the glass. “We will leave it all to her\u000adecision.”\u000a\u000aDuring this dialogue, John Ferrier had stood fuming in the doorway,\u000ahardly able to keep his riding-whip from the backs of his two visitors.\u000a\u000a“Look here,” he said at last, striding up to them, “when my daughter\u000asummons you, you can come, but until then I don’t want to see your faces\u000aagain.”\u000a\u000aThe two young Mormons stared at him in amazement. In their eyes this\u000acompetition between them for the maiden’s hand was the highest of\u000ahonours both to her and her father.\u000a\u000a“There are two ways out of the room,” cried Ferrier; “there is the door,\u000aand there is the window. Which do you care to use?”\u000a\u000aHis brown face looked so savage, and his gaunt hands so threatening,\u000athat his visitors sprang to their feet and beat a hurried retreat. The\u000aold farmer followed them to the door.\u000a\u000a“Let me know when you have settled which it is to be,” he said,\u000asardonically.\u000a\u000a“You shall smart for this!” Stangerson cried, white with rage. “You have\u000adefied the Prophet and the Council of Four. You shall rue it to the end\u000aof your days.”\u000a\u000a“The hand of the Lord shall be heavy upon you,” cried young Drebber; “He\u000awill arise and smite you!”\u000a\u000a“Then I’ll start the smiting,” exclaimed Ferrier furiously, and would\u000ahave rushed upstairs for his gun had not Lucy seized him by the arm and\u000arestrained him. Before he could escape from her, the clatter of horses’\u000ahoofs told him that they were beyond his reach.\u000a\u000a“The young canting rascals!” he exclaimed, wiping the perspiration from\u000ahis forehead; “I would sooner see you in your grave, my girl, than the\u000awife of either of them.”\u000a\u000a“And so should I, father,” she answered, with spirit; “but Jefferson\u000awill soon be here.”\u000a\u000a“Yes. It will not be long before he comes. The sooner the better, for we\u000ado not know what their next move may be.”\u000a\u000aIt was, indeed, high time that someone capable of giving advice and\u000ahelp should come to the aid of the sturdy old farmer and his adopted\u000adaughter. In the whole history of the settlement there had never been\u000asuch a case of rank disobedience to the authority of the Elders. If\u000aminor errors were punished so sternly, what would be the fate of this\u000aarch rebel. Ferrier knew that his wealth and position would be of no\u000aavail to him. Others as well known and as rich as himself had been\u000aspirited away before now, and their goods given over to the Church. He\u000awas a brave man, but he trembled at the vague, shadowy terrors which\u000ahung over him. Any known danger he could face with a firm lip, but\u000athis suspense was unnerving. He concealed his fears from his daughter,\u000ahowever, and affected to make light of the whole matter, though she,\u000awith the keen eye of love, saw plainly that he was ill at ease.\u000a\u000aHe expected that he would receive some message or remonstrance from\u000aYoung as to his conduct, and he was not mistaken, though it came in an\u000aunlooked-for manner. Upon rising next morning he found, to his surprise,\u000aa small square of paper pinned on to the coverlet of his bed just over\u000ahis chest. On it was printed, in bold straggling letters:--\u000a\u000a“Twenty-nine days are given you for amendment, and then----”\u000a\u000aThe dash was more fear-inspiring than any threat could have been. How\u000athis warning came into his room puzzled John Ferrier sorely, for his\u000aservants slept in an outhouse, and the doors and windows had all been\u000asecured. He crumpled the paper up and said nothing to his daughter, but\u000athe incident struck a chill into his heart. The twenty-nine days were\u000aevidently the balance of the month which Young had promised. What\u000astrength or courage could avail against an enemy armed with such\u000amysterious powers? The hand which fastened that pin might have struck\u000ahim to the heart, and he could never have known who had slain him.\u000a\u000aStill more shaken was he next morning. They had sat down to their\u000abreakfast when Lucy with a cry of surprise pointed upwards. In the\u000acentre of the ceiling was scrawled, with a burned stick apparently,\u000athe number 28. To his daughter it was unintelligible, and he did not\u000aenlighten her. That night he sat up with his gun and kept watch and\u000award. He saw and he heard nothing, and yet in the morning a great 27 had\u000abeen painted upon the outside of his door.\u000a\u000aThus day followed day; and as sure as morning came he found that his\u000aunseen enemies had kept their register, and had marked up in some\u000aconspicuous position how many days were still left to him out of the\u000amonth of grace. Sometimes the fatal numbers appeared upon the walls,\u000asometimes upon the floors, occasionally they were on small placards\u000astuck upon the garden gate or the railings. With all his vigilance John\u000aFerrier could not discover whence these daily warnings proceeded. A\u000ahorror which was almost superstitious came upon him at the sight of\u000athem. He became haggard and restless, and his eyes had the troubled look\u000aof some hunted creature. He had but one hope in life now, and that was\u000afor the arrival of the young hunter from Nevada.\u000a\u000aTwenty had changed to fifteen and fifteen to ten, but there was no news\u000aof the absentee. One by one the numbers dwindled down, and still there\u000acame no sign of him. Whenever a horseman clattered down the road, or a\u000adriver shouted at his team, the old farmer hurried to the gate thinking\u000athat help had arrived at last. At last, when he saw five give way to\u000afour and that again to three, he lost heart, and abandoned all hope of\u000aescape. Single-handed, and with his limited knowledge of the mountains\u000awhich surrounded the settlement, he knew that he was powerless. The\u000amore-frequented roads were strictly watched and guarded, and none could\u000apass along them without an order from the Council. Turn which way he\u000awould, there appeared to be no avoiding the blow which hung over him.\u000aYet the old man never wavered in his resolution to part with life itself\u000abefore he consented to what he regarded as his daughter’s dishonour.\u000a\u000aHe was sitting alone one evening pondering deeply over his troubles, and\u000asearching vainly for some way out of them. That morning had shown the\u000afigure 2 upon the wall of his house, and the next day would be the last\u000aof the allotted time. What was to happen then? All manner of vague and\u000aterrible fancies filled his imagination. And his daughter--what was to\u000abecome of her after he was gone? Was there no escape from the invisible\u000anetwork which was drawn all round them. He sank his head upon the table\u000aand sobbed at the thought of his own impotence.\u000a\u000aWhat was that? In the silence he heard a gentle scratching sound--low,\u000abut very distinct in the quiet of the night. It came from the door of\u000athe house. Ferrier crept into the hall and listened intently. There\u000awas a pause for a few moments, and then the low insidious sound was\u000arepeated. Someone was evidently tapping very gently upon one of the\u000apanels of the door. Was it some midnight assassin who had come to carry\u000aout the murderous orders of the secret tribunal? Or was it some agent\u000awho was marking up that the last day of grace had arrived. John Ferrier\u000afelt that instant death would be better than the suspense which shook\u000ahis nerves and chilled his heart. Springing forward he drew the bolt and\u000athrew the door open.\u000a\u000aOutside all was calm and quiet. The night was fine, and the stars were\u000atwinkling brightly overhead. The little front garden lay before the\u000afarmer’s eyes bounded by the fence and gate, but neither there nor on\u000athe road was any human being to be seen. With a sigh of relief, Ferrier\u000alooked to right and to left, until happening to glance straight down at\u000ahis own feet he saw to his astonishment a man lying flat upon his face\u000aupon the ground, with arms and legs all asprawl.\u000a\u000aSo unnerved was he at the sight that he leaned up against the wall with\u000ahis hand to his throat to stifle his inclination to call out. His first\u000athought was that the prostrate figure was that of some wounded or dying\u000aman, but as he watched it he saw it writhe along the ground and into the\u000ahall with the rapidity and noiselessness of a serpent. Once within the\u000ahouse the man sprang to his feet, closed the door, and revealed to the\u000aastonished farmer the fierce face and resolute expression of Jefferson\u000aHope.\u000a\u000a“Good God!” gasped John Ferrier. “How you scared me! Whatever made you\u000acome in like that.”\u000a\u000a“Give me food,” the other said, hoarsely. “I have had no time for bite\u000aor sup for eight-and-forty hours.” He flung himself upon the [21] cold\u000ameat and bread which were still lying upon the table from his host’s\u000asupper, and devoured it voraciously. “Does Lucy bear up well?” he asked,\u000awhen he had satisfied his hunger.\u000a\u000a“Yes. She does not know the danger,” her father answered.\u000a\u000a“That is well. The house is watched on every side. That is why I crawled\u000amy way up to it. They may be darned sharp, but they’re not quite sharp\u000aenough to catch a Washoe hunter.”\u000a\u000aJohn Ferrier felt a different man now that he realized that he had\u000aa devoted ally. He seized the young man’s leathery hand and wrung it\u000acordially. “You’re a man to be proud of,” he said. “There are not many\u000awho would come to share our danger and our troubles.”\u000a\u000a“You’ve hit it there, pard,” the young hunter answered. “I have a\u000arespect for you, but if you were alone in this business I’d think twice\u000abefore I put my head into such a hornet’s nest. It’s Lucy that brings me\u000ahere, and before harm comes on her I guess there will be one less o’ the\u000aHope family in Utah.”\u000a\u000a“What are we to do?”\u000a\u000a“To-morrow is your last day, and unless you act to-night you are lost.\u000aI have a mule and two horses waiting in the Eagle Ravine. How much money\u000ahave you?”\u000a\u000a“Two thousand dollars in gold, and five in notes.”\u000a\u000a“That will do. I have as much more to add to it. We must push for Carson\u000aCity through the mountains. You had best wake Lucy. It is as well that\u000athe servants do not sleep in the house.”\u000a\u000aWhile Ferrier was absent, preparing his daughter for the approaching\u000ajourney, Jefferson Hope packed all the eatables that he could find into\u000aa small parcel, and filled a stoneware jar with water, for he knew by\u000aexperience that the mountain wells were few and far between. He had\u000ahardly completed his arrangements before the farmer returned with his\u000adaughter all dressed and ready for a start. The greeting between the\u000alovers was warm, but brief, for minutes were precious, and there was\u000amuch to be done.\u000a\u000a“We must make our start at once,” said Jefferson Hope, speaking in a low\u000abut resolute voice, like one who realizes the greatness of the peril,\u000abut has steeled his heart to meet it. “The front and back entrances are\u000awatched, but with caution we may get away through the side window and\u000aacross the fields. Once on the road we are only two miles from the\u000aRavine where the horses are waiting. By daybreak we should be half-way\u000athrough the mountains.”\u000a\u000a“What if we are stopped,” asked Ferrier.\u000a\u000aHope slapped the revolver butt which protruded from the front of his\u000atunic. “If they are too many for us we shall take two or three of them\u000awith us,” he said with a sinister smile.\u000a\u000aThe lights inside the house had all been extinguished, and from the\u000adarkened window Ferrier peered over the fields which had been his own,\u000aand which he was now about to abandon for ever. He had long nerved\u000ahimself to the sacrifice, however, and the thought of the honour and\u000ahappiness of his daughter outweighed any regret at his ruined fortunes.\u000aAll looked so peaceful and happy, the rustling trees and the broad\u000asilent stretch of grain-land, that it was difficult to realize that\u000athe spirit of murder lurked through it all. Yet the white face and set\u000aexpression of the young hunter showed that in his approach to the house\u000ahe had seen enough to satisfy him upon that head.\u000a\u000aFerrier carried the bag of gold and notes, Jefferson Hope had the scanty\u000aprovisions and water, while Lucy had a small bundle containing a few\u000aof her more valued possessions. Opening the window very slowly and\u000acarefully, they waited until a dark cloud had somewhat obscured the\u000anight, and then one by one passed through into the little garden. With\u000abated breath and crouching figures they stumbled across it, and gained\u000athe shelter of the hedge, which they skirted until they came to the gap\u000awhich opened into the cornfields. They had just reached this point when\u000athe young man seized his two companions and dragged them down into the\u000ashadow, where they lay silent and trembling.\u000a\u000aIt was as well that his prairie training had given Jefferson Hope the\u000aears of a lynx. He and his friends had hardly crouched down before the\u000amelancholy hooting of a mountain owl was heard within a few yards\u000aof them, which was immediately answered by another hoot at a small\u000adistance. At the same moment a vague shadowy figure emerged from the\u000agap for which they had been making, and uttered the plaintive signal cry\u000aagain, on which a second man appeared out of the obscurity.\u000a\u000a“To-morrow at midnight,” said the first who appeared to be in authority.\u000a“When the Whip-poor-Will calls three times.”\u000a\u000a“It is well,” returned the other. “Shall I tell Brother Drebber?”\u000a\u000a“Pass it on to him, and from him to the others. Nine to seven!”\u000a\u000a“Seven to five!” repeated the other, and the two figures flitted away\u000ain different directions. Their concluding words had evidently been some\u000aform of sign and countersign. The instant that their footsteps had died\u000aaway in the distance, Jefferson Hope sprang to his feet, and helping his\u000acompanions through the gap, led the way across the fields at the top\u000aof his speed, supporting and half-carrying the girl when her strength\u000aappeared to fail her.\u000a\u000a“Hurry on! hurry on!” he gasped from time to time. “We are through the\u000aline of sentinels. Everything depends on speed. Hurry on!”\u000a\u000aOnce on the high road they made rapid progress. Only once did they\u000ameet anyone, and then they managed to slip into a field, and so avoid\u000arecognition. Before reaching the town the hunter branched away into a\u000arugged and narrow footpath which led to the mountains. Two dark jagged\u000apeaks loomed above them through the darkness, and the defile which led\u000abetween them was the Eagle Cañon in which the horses were awaiting them.\u000aWith unerring instinct Jefferson Hope picked his way among the great\u000aboulders and along the bed of a dried-up watercourse, until he came to\u000athe retired corner, screened with rocks, where the faithful animals had\u000abeen picketed. The girl was placed upon the mule, and old Ferrier upon\u000aone of the horses, with his money-bag, while Jefferson Hope led the\u000aother along the precipitous and dangerous path.\u000a\u000aIt was a bewildering route for anyone who was not accustomed to face\u000aNature in her wildest moods. On the one side a great crag towered up a\u000athousand feet or more, black, stern, and menacing, with long basaltic\u000acolumns upon its rugged surface like the ribs of some petrified monster.\u000aOn the other hand a wild chaos of boulders and debris made all advance\u000aimpossible. Between the two ran the irregular track, so narrow in places\u000athat they had to travel in Indian file, and so rough that only practised\u000ariders could have traversed it at all. Yet in spite of all dangers and\u000adifficulties, the hearts of the fugitives were light within them,\u000afor every step increased the distance between them and the terrible\u000adespotism from which they were flying.\u000a\u000aThey soon had a proof, however, that they were still within the\u000ajurisdiction of the Saints. They had reached the very wildest and most\u000adesolate portion of the pass when the girl gave a startled cry, and\u000apointed upwards. On a rock which overlooked the track, showing out dark\u000aand plain against the sky, there stood a solitary sentinel. He saw them\u000aas soon as they perceived him, and his military challenge of “Who goes\u000athere?” rang through the silent ravine.\u000a\u000a“Travellers for Nevada,” said Jefferson Hope, with his hand upon the\u000arifle which hung by his saddle.\u000a\u000aThey could see the lonely watcher fingering his gun, and peering down at\u000athem as if dissatisfied at their reply.\u000a\u000a“By whose permission?” he asked.\u000a\u000a“The Holy Four,” answered Ferrier. His Mormon experiences had taught him\u000athat that was the highest authority to which he could refer.\u000a\u000a“Nine from seven,” cried the sentinel.\u000a\u000a“Seven from five,” returned Jefferson Hope promptly, remembering the\u000acountersign which he had heard in the garden.\u000a\u000a“Pass, and the Lord go with you,” said the voice from above. Beyond his\u000apost the path broadened out, and the horses were able to break into a\u000atrot. Looking back, they could see the solitary watcher leaning upon\u000ahis gun, and knew that they had passed the outlying post of the chosen\u000apeople, and that freedom lay before them.\u000a\u000a\u000a\u000a\u000aCHAPTER V. THE AVENGING ANGELS.\u000a\u000a\u000aALL night their course lay through intricate defiles and over irregular\u000aand rock-strewn paths. More than once they lost their way, but Hope’s\u000aintimate knowledge of the mountains enabled them to regain the track\u000aonce more. When morning broke, a scene of marvellous though savage\u000abeauty lay before them. In every direction the great snow-capped peaks\u000ahemmed them in, peeping over each other’s shoulders to the far horizon.\u000aSo steep were the rocky banks on either side of them, that the larch\u000aand the pine seemed to be suspended over their heads, and to need only a\u000agust of wind to come hurtling down upon them. Nor was the fear entirely\u000aan illusion, for the barren valley was thickly strewn with trees and\u000aboulders which had fallen in a similar manner. Even as they passed,\u000aa great rock came thundering down with a hoarse rattle which woke\u000athe echoes in the silent gorges, and startled the weary horses into a\u000agallop.\u000a\u000aAs the sun rose slowly above the eastern horizon, the caps of the great\u000amountains lit up one after the other, like lamps at a festival, until\u000athey were all ruddy and glowing. The magnificent spectacle cheered the\u000ahearts of the three fugitives and gave them fresh energy. At a wild\u000atorrent which swept out of a ravine they called a halt and watered their\u000ahorses, while they partook of a hasty breakfast. Lucy and her father\u000awould fain have rested longer, but Jefferson Hope was inexorable. “They\u000awill be upon our track by this time,” he said. “Everything depends upon\u000aour speed. Once safe in Carson we may rest for the remainder of our\u000alives.”\u000a\u000aDuring the whole of that day they struggled on through the defiles, and\u000aby evening they calculated that they were more than thirty miles from\u000atheir enemies. At night-time they chose the base of a beetling crag,\u000awhere the rocks offered some protection from the chill wind, and there\u000ahuddled together for warmth, they enjoyed a few hours’ sleep. Before\u000adaybreak, however, they were up and on their way once more. They had\u000aseen no signs of any pursuers, and Jefferson Hope began to think that\u000athey were fairly out of the reach of the terrible organization whose\u000aenmity they had incurred. He little knew how far that iron grasp could\u000areach, or how soon it was to close upon them and crush them.\u000a\u000aAbout the middle of the second day of their flight their scanty store\u000aof provisions began to run out. This gave the hunter little uneasiness,\u000ahowever, for there was game to be had among the mountains, and he had\u000afrequently before had to depend upon his rifle for the needs of life.\u000aChoosing a sheltered nook, he piled together a few dried branches and\u000amade a blazing fire, at which his companions might warm themselves, for\u000athey were now nearly five thousand feet above the sea level, and the air\u000awas bitter and keen. Having tethered the horses, and bade Lucy adieu,\u000ahe threw his gun over his shoulder, and set out in search of whatever\u000achance might throw in his way. Looking back he saw the old man and the\u000ayoung girl crouching over the blazing fire, while the three animals\u000astood motionless in the back-ground. Then the intervening rocks hid them\u000afrom his view.\u000a\u000aHe walked for a couple of miles through one ravine after another without\u000asuccess, though from the marks upon the bark of the trees, and other\u000aindications, he judged that there were numerous bears in the vicinity.\u000aAt last, after two or three hours’ fruitless search, he was thinking of\u000aturning back in despair, when casting his eyes upwards he saw a sight\u000awhich sent a thrill of pleasure through his heart. On the edge of a\u000ajutting pinnacle, three or four hundred feet above him, there stood a\u000acreature somewhat resembling a sheep in appearance, but armed with a\u000apair of gigantic horns. The big-horn--for so it is called--was acting,\u000aprobably, as a guardian over a flock which were invisible to the hunter;\u000abut fortunately it was heading in the opposite direction, and had not\u000aperceived him. Lying on his face, he rested his rifle upon a rock, and\u000atook a long and steady aim before drawing the trigger. The animal sprang\u000ainto the air, tottered for a moment upon the edge of the precipice, and\u000athen came crashing down into the valley beneath.\u000a\u000aThe creature was too unwieldy to lift, so the hunter contented himself\u000awith cutting away one haunch and part of the flank. With this trophy\u000aover his shoulder, he hastened to retrace his steps, for the evening was\u000aalready drawing in. He had hardly started, however, before he realized\u000athe difficulty which faced him. In his eagerness he had wandered far\u000apast the ravines which were known to him, and it was no easy matter\u000ato pick out the path which he had taken. The valley in which he found\u000ahimself divided and sub-divided into many gorges, which were so like\u000aeach other that it was impossible to distinguish one from the other.\u000aHe followed one for a mile or more until he came to a mountain torrent\u000awhich he was sure that he had never seen before. Convinced that he had\u000ataken the wrong turn, he tried another, but with the same result. Night\u000awas coming on rapidly, and it was almost dark before he at last found\u000ahimself in a defile which was familiar to him. Even then it was no easy\u000amatter to keep to the right track, for the moon had not yet risen, and\u000athe high cliffs on either side made the obscurity more profound. Weighed\u000adown with his burden, and weary from his exertions, he stumbled along,\u000akeeping up his heart by the reflection that every step brought him\u000anearer to Lucy, and that he carried with him enough to ensure them food\u000afor the remainder of their journey.\u000a\u000aHe had now come to the mouth of the very defile in which he had left\u000athem. Even in the darkness he could recognize the outline of the cliffs\u000awhich bounded it. They must, he reflected, be awaiting him anxiously,\u000afor he had been absent nearly five hours. In the gladness of his heart\u000ahe put his hands to his mouth and made the glen re-echo to a loud halloo\u000aas a signal that he was coming. He paused and listened for an answer.\u000aNone came save his own cry, which clattered up the dreary silent\u000aravines, and was borne back to his ears in countless repetitions. Again\u000ahe shouted, even louder than before, and again no whisper came back from\u000athe friends whom he had left such a short time ago. A vague, nameless\u000adread came over him, and he hurried onwards frantically, dropping the\u000aprecious food in his agitation.\u000a\u000aWhen he turned the corner, he came full in sight of the spot where the\u000afire had been lit. There was still a glowing pile of wood ashes there,\u000abut it had evidently not been tended since his departure. The same\u000adead silence still reigned all round. With his fears all changed to\u000aconvictions, he hurried on. There was no living creature near the\u000aremains of the fire: animals, man, maiden, all were gone. It was only\u000atoo clear that some sudden and terrible disaster had occurred during\u000ahis absence--a disaster which had embraced them all, and yet had left no\u000atraces behind it.\u000a\u000aBewildered and stunned by this blow, Jefferson Hope felt his head spin\u000around, and had to lean upon his rifle to save himself from falling. He\u000awas essentially a man of action, however, and speedily recovered from\u000ahis temporary impotence. Seizing a half-consumed piece of wood from the\u000asmouldering fire, he blew it into a flame, and proceeded with its help\u000ato examine the little camp. The ground was all stamped down by the feet\u000aof horses, showing that a large party of mounted men had overtaken\u000athe fugitives, and the direction of their tracks proved that they had\u000aafterwards turned back to Salt Lake City. Had they carried back both of\u000ahis companions with them? Jefferson Hope had almost persuaded himself\u000athat they must have done so, when his eye fell upon an object which made\u000aevery nerve of his body tingle within him. A little way on one side of\u000athe camp was a low-lying heap of reddish soil, which had assuredly\u000anot been there before. There was no mistaking it for anything but a\u000anewly-dug grave. As the young hunter approached it, he perceived that a\u000astick had been planted on it, with a sheet of paper stuck in the cleft\u000afork of it. The inscription upon the paper was brief, but to the point:\u000a\u000a JOHN FERRIER,\u000a FORMERLY OF SALT LAKE CITY, [22]\u000a Died August 4th, 1860.\u000a\u000aThe sturdy old man, whom he had left so short a time before, was gone,\u000athen, and this was all his epitaph. Jefferson Hope looked wildly round\u000ato see if there was a second grave, but there was no sign of one. Lucy\u000ahad been carried back by their terrible pursuers to fulfil her original\u000adestiny, by becoming one of the harem of the Elder’s son. As the young\u000afellow realized the certainty of her fate, and his own powerlessness to\u000aprevent it, he wished that he, too, was lying with the old farmer in his\u000alast silent resting-place.\u000a\u000aAgain, however, his active spirit shook off the lethargy which springs\u000afrom despair. If there was nothing else left to him, he could at least\u000adevote his life to revenge. With indomitable patience and perseverance,\u000aJefferson Hope possessed also a power of sustained vindictiveness, which\u000ahe may have learned from the Indians amongst whom he had lived. As he\u000astood by the desolate fire, he felt that the only one thing which could\u000aassuage his grief would be thorough and complete retribution, brought\u000aby his own hand upon his enemies. His strong will and untiring energy\u000ashould, he determined, be devoted to that one end. With a grim, white\u000aface, he retraced his steps to where he had dropped the food, and having\u000astirred up the smouldering fire, he cooked enough to last him for a\u000afew days. This he made up into a bundle, and, tired as he was, he\u000aset himself to walk back through the mountains upon the track of the\u000aavenging angels.\u000a\u000aFor five days he toiled footsore and weary through the defiles which he\u000ahad already traversed on horseback. At night he flung himself down among\u000athe rocks, and snatched a few hours of sleep; but before daybreak he was\u000aalways well on his way. On the sixth day, he reached the Eagle Cañon,\u000afrom which they had commenced their ill-fated flight. Thence he could\u000alook down upon the home of the saints. Worn and exhausted, he leaned\u000aupon his rifle and shook his gaunt hand fiercely at the silent\u000awidespread city beneath him. As he looked at it, he observed that\u000athere were flags in some of the principal streets, and other signs of\u000afestivity. He was still speculating as to what this might mean when he\u000aheard the clatter of horse’s hoofs, and saw a mounted man riding towards\u000ahim. As he approached, he recognized him as a Mormon named Cowper, to\u000awhom he had rendered services at different times. He therefore accosted\u000ahim when he got up to him, with the object of finding out what Lucy\u000aFerrier’s fate had been.\u000a\u000a“I am Jefferson Hope,” he said. “You remember me.”\u000a\u000aThe Mormon looked at him with undisguised astonishment--indeed, it was\u000adifficult to recognize in this tattered, unkempt wanderer, with ghastly\u000awhite face and fierce, wild eyes, the spruce young hunter of former\u000adays. Having, however, at last, satisfied himself as to his identity,\u000athe man’s surprise changed to consternation.\u000a\u000a“You are mad to come here,” he cried. “It is as much as my own life is\u000aworth to be seen talking with you. There is a warrant against you from\u000athe Holy Four for assisting the Ferriers away.”\u000a\u000a“I don’t fear them, or their warrant,” Hope said, earnestly. “You must\u000aknow something of this matter, Cowper. I conjure you by everything you\u000ahold dear to answer a few questions. We have always been friends. For\u000aGod’s sake, don’t refuse to answer me.”\u000a\u000a“What is it?” the Mormon asked uneasily. “Be quick. The very rocks have\u000aears and the trees eyes.”\u000a\u000a“What has become of Lucy Ferrier?”\u000a\u000a“She was married yesterday to young Drebber. Hold up, man, hold up, you\u000ahave no life left in you.”\u000a\u000a“Don’t mind me,” said Hope faintly. He was white to the very lips, and\u000ahad sunk down on the stone against which he had been leaning. “Married,\u000ayou say?”\u000a\u000a“Married yesterday--that’s what those flags are for on the Endowment\u000aHouse. There was some words between young Drebber and young Stangerson\u000aas to which was to have her. They’d both been in the party that followed\u000athem, and Stangerson had shot her father, which seemed to give him the\u000abest claim; but when they argued it out in council, Drebber’s party was\u000athe stronger, so the Prophet gave her over to him. No one won’t have\u000aher very long though, for I saw death in her face yesterday. She is more\u000alike a ghost than a woman. Are you off, then?”\u000a\u000a“Yes, I am off,” said Jefferson Hope, who had risen from his seat. His\u000aface might have been chiselled out of marble, so hard and set was its\u000aexpression, while its eyes glowed with a baleful light.\u000a\u000a“Where are you going?”\u000a\u000a“Never mind,” he answered; and, slinging his weapon over his shoulder,\u000astrode off down the gorge and so away into the heart of the mountains to\u000athe haunts of the wild beasts. Amongst them all there was none so fierce\u000aand so dangerous as himself.\u000a\u000aThe prediction of the Mormon was only too well fulfilled. Whether it was\u000athe terrible death of her father or the effects of the hateful marriage\u000ainto which she had been forced, poor Lucy never held up her head again,\u000abut pined away and died within a month. Her sottish husband, who had\u000amarried her principally for the sake of John Ferrier’s property, did not\u000aaffect any great grief at his bereavement; but his other wives mourned\u000aover her, and sat up with her the night before the burial, as is the\u000aMormon custom. They were grouped round the bier in the early hours of\u000athe morning, when, to their inexpressible fear and astonishment,\u000athe door was flung open, and a savage-looking, weather-beaten man in\u000atattered garments strode into the room. Without a glance or a word to\u000athe cowering women, he walked up to the white silent figure which had\u000aonce contained the pure soul of Lucy Ferrier. Stooping over her, he\u000apressed his lips reverently to her cold forehead, and then, snatching\u000aup her hand, he took the wedding-ring from her finger. “She shall not be\u000aburied in that,” he cried with a fierce snarl, and before an alarm could\u000abe raised sprang down the stairs and was gone. So strange and so brief\u000awas the episode, that the watchers might have found it hard to believe\u000ait themselves or persuade other people of it, had it not been for the\u000aundeniable fact that the circlet of gold which marked her as having been\u000aa bride had disappeared.\u000a\u000aFor some months Jefferson Hope lingered among the mountains, leading\u000aa strange wild life, and nursing in his heart the fierce desire for\u000avengeance which possessed him. Tales were told in the City of the weird\u000afigure which was seen prowling about the suburbs, and which haunted\u000athe lonely mountain gorges. Once a bullet whistled through Stangerson’s\u000awindow and flattened itself upon the wall within a foot of him. On\u000aanother occasion, as Drebber passed under a cliff a great boulder\u000acrashed down on him, and he only escaped a terrible death by throwing\u000ahimself upon his face. The two young Mormons were not long in\u000adiscovering the reason of these attempts upon their lives, and led\u000arepeated expeditions into the mountains in the hope of capturing or\u000akilling their enemy, but always without success. Then they adopted the\u000aprecaution of never going out alone or after nightfall, and of having\u000atheir houses guarded. After a time they were able to relax these\u000ameasures, for nothing was either heard or seen of their opponent, and\u000athey hoped that time had cooled his vindictiveness.\u000a\u000aFar from doing so, it had, if anything, augmented it. The hunter’s mind\u000awas of a hard, unyielding nature, and the predominant idea of revenge\u000ahad taken such complete possession of it that there was no room for\u000aany other emotion. He was, however, above all things practical. He soon\u000arealized that even his iron constitution could not stand the incessant\u000astrain which he was putting upon it. Exposure and want of wholesome food\u000awere wearing him out. If he died like a dog among the mountains, what\u000awas to become of his revenge then? And yet such a death was sure to\u000aovertake him if he persisted. He felt that that was to play his enemy’s\u000agame, so he reluctantly returned to the old Nevada mines, there to\u000arecruit his health and to amass money enough to allow him to pursue his\u000aobject without privation.\u000a\u000aHis intention had been to be absent a year at the most, but a\u000acombination of unforeseen circumstances prevented his leaving the mines\u000afor nearly five. At the end of that time, however, his memory of\u000ahis wrongs and his craving for revenge were quite as keen as on that\u000amemorable night when he had stood by John Ferrier’s grave. Disguised,\u000aand under an assumed name, he returned to Salt Lake City, careless\u000awhat became of his own life, as long as he obtained what he knew to\u000abe justice. There he found evil tidings awaiting him. There had been a\u000aschism among the Chosen People a few months before, some of the younger\u000amembers of the Church having rebelled against the authority of the\u000aElders, and the result had been the secession of a certain number of the\u000amalcontents, who had left Utah and become Gentiles. Among these had been\u000aDrebber and Stangerson; and no one knew whither they had gone. Rumour\u000areported that Drebber had managed to convert a large part of his\u000aproperty into money, and that he had departed a wealthy man, while his\u000acompanion, Stangerson, was comparatively poor. There was no clue at all,\u000ahowever, as to their whereabouts.\u000a\u000aMany a man, however vindictive, would have abandoned all thought of\u000arevenge in the face of such a difficulty, but Jefferson Hope never\u000afaltered for a moment. With the small competence he possessed, eked out\u000aby such employment as he could pick up, he travelled from town to town\u000athrough the United States in quest of his enemies. Year passed into\u000ayear, his black hair turned grizzled, but still he wandered on, a human\u000abloodhound, with his mind wholly set upon the one object upon which he\u000ahad devoted his life. At last his perseverance was rewarded. It was\u000abut a glance of a face in a window, but that one glance told him that\u000aCleveland in Ohio possessed the men whom he was in pursuit of. He\u000areturned to his miserable lodgings with his plan of vengeance all\u000aarranged. It chanced, however, that Drebber, looking from his window,\u000ahad recognized the vagrant in the street, and had read murder in\u000ahis eyes. He hurried before a justice of the peace, accompanied by\u000aStangerson, who had become his private secretary, and represented to him\u000athat they were in danger of their lives from the jealousy and hatred of\u000aan old rival. That evening Jefferson Hope was taken into custody, and\u000anot being able to find sureties, was detained for some weeks. When at\u000alast he was liberated, it was only to find that Drebber’s house was\u000adeserted, and that he and his secretary had departed for Europe.\u000a\u000aAgain the avenger had been foiled, and again his concentrated hatred\u000aurged him to continue the pursuit. Funds were wanting, however, and\u000afor some time he had to return to work, saving every dollar for his\u000aapproaching journey. At last, having collected enough to keep life in\u000ahim, he departed for Europe, and tracked his enemies from city to\u000acity, working his way in any menial capacity, but never overtaking the\u000afugitives. When he reached St. Petersburg they had departed for Paris;\u000aand when he followed them there he learned that they had just set off\u000afor Copenhagen. At the Danish capital he was again a few days late, for\u000athey had journeyed on to London, where he at last succeeded in running\u000athem to earth. As to what occurred there, we cannot do better than quote\u000athe old hunter’s own account, as duly recorded in Dr. Watson’s Journal,\u000ato which we are already under such obligations.\u000a\u000a\u000a\u000a\u000aCHAPTER VI. A CONTINUATION OF THE REMINISCENCES OF JOHN WATSON, M.D.\u000a\u000a\u000aOUR prisoner’s furious resistance did not apparently indicate any\u000aferocity in his disposition towards ourselves, for on finding himself\u000apowerless, he smiled in an affable manner, and expressed his hopes that\u000ahe had not hurt any of us in the scuffle. “I guess you’re going to take\u000ame to the police-station,” he remarked to Sherlock Holmes. “My cab’s at\u000athe door. If you’ll loose my legs I’ll walk down to it. I’m not so light\u000ato lift as I used to be.”\u000a\u000aGregson and Lestrade exchanged glances as if they thought this\u000aproposition rather a bold one; but Holmes at once took the prisoner at\u000ahis word, and loosened the towel which we had bound round his ancles.\u000a[23] He rose and stretched his legs, as though to assure himself that\u000athey were free once more. I remember that I thought to myself, as I eyed\u000ahim, that I had seldom seen a more powerfully built man; and his dark\u000asunburned face bore an expression of determination and energy which was\u000aas formidable as his personal strength.\u000a\u000a“If there’s a vacant place for a chief of the police, I reckon you\u000aare the man for it,” he said, gazing with undisguised admiration at my\u000afellow-lodger. “The way you kept on my trail was a caution.”\u000a\u000a“You had better come with me,” said Holmes to the two detectives.\u000a\u000a“I can drive you,” said Lestrade.\u000a\u000a“Good! and Gregson can come inside with me. You too, Doctor, you have\u000ataken an interest in the case and may as well stick to us.”\u000a\u000aI assented gladly, and we all descended together. Our prisoner made no\u000aattempt at escape, but stepped calmly into the cab which had been his,\u000aand we followed him. Lestrade mounted the box, whipped up the horse, and\u000abrought us in a very short time to our destination. We were ushered into\u000aa small chamber where a police Inspector noted down our prisoner’s name\u000aand the names of the men with whose murder he had been charged. The\u000aofficial was a white-faced unemotional man, who went through his\u000aduties in a dull mechanical way. “The prisoner will be put before the\u000amagistrates in the course of the week,” he said; “in the mean time, Mr.\u000aJefferson Hope, have you anything that you wish to say? I must warn you\u000athat your words will be taken down, and may be used against you.”\u000a\u000a“I’ve got a good deal to say,” our prisoner said slowly. “I want to tell\u000ayou gentlemen all about it.”\u000a\u000a“Hadn’t you better reserve that for your trial?” asked the Inspector.\u000a\u000a“I may never be tried,” he answered. “You needn’t look startled. It\u000aisn’t suicide I am thinking of. Are you a Doctor?” He turned his fierce\u000adark eyes upon me as he asked this last question.\u000a\u000a“Yes; I am,” I answered.\u000a\u000a“Then put your hand here,” he said, with a smile, motioning with his\u000amanacled wrists towards his chest.\u000a\u000aI did so; and became at once conscious of an extraordinary throbbing and\u000acommotion which was going on inside. The walls of his chest seemed to\u000athrill and quiver as a frail building would do inside when some powerful\u000aengine was at work. In the silence of the room I could hear a dull\u000ahumming and buzzing noise which proceeded from the same source.\u000a\u000a“Why,” I cried, “you have an aortic aneurism!”\u000a\u000a“That’s what they call it,” he said, placidly. “I went to a Doctor last\u000aweek about it, and he told me that it is bound to burst before many days\u000apassed. It has been getting worse for years. I got it from over-exposure\u000aand under-feeding among the Salt Lake Mountains. I’ve done my work now,\u000aand I don’t care how soon I go, but I should like to leave some account\u000aof the business behind me. I don’t want to be remembered as a common\u000acut-throat.”\u000a\u000aThe Inspector and the two detectives had a hurried discussion as to the\u000aadvisability of allowing him to tell his story.\u000a\u000a“Do you consider, Doctor, that there is immediate danger?” the former\u000aasked, [24]\u000a\u000a“Most certainly there is,” I answered.\u000a\u000a“In that case it is clearly our duty, in the interests of justice, to\u000atake his statement,” said the Inspector. “You are at liberty, sir, to\u000agive your account, which I again warn you will be taken down.”\u000a\u000a“I’ll sit down, with your leave,” the prisoner said, suiting the action\u000ato the word. “This aneurism of mine makes me easily tired, and the\u000atussle we had half an hour ago has not mended matters. I’m on the brink\u000aof the grave, and I am not likely to lie to you. Every word I say is the\u000aabsolute truth, and how you use it is a matter of no consequence to me.”\u000a\u000aWith these words, Jefferson Hope leaned back in his chair and began\u000athe following remarkable statement. He spoke in a calm and methodical\u000amanner, as though the events which he narrated were commonplace enough.\u000aI can vouch for the accuracy of the subjoined account, for I have had\u000aaccess to Lestrade’s note-book, in which the prisoner’s words were taken\u000adown exactly as they were uttered.\u000a\u000a“It don’t much matter to you why I hated these men,” he said; “it’s\u000aenough that they were guilty of the death of two human beings--a father\u000aand a daughter--and that they had, therefore, forfeited their own\u000alives. After the lapse of time that has passed since their crime, it was\u000aimpossible for me to secure a conviction against them in any court. I\u000aknew of their guilt though, and I determined that I should be judge,\u000ajury, and executioner all rolled into one. You’d have done the same, if\u000ayou have any manhood in you, if you had been in my place.\u000a\u000a“That girl that I spoke of was to have married me twenty years ago. She\u000awas forced into marrying that same Drebber, and broke her heart over\u000ait. I took the marriage ring from her dead finger, and I vowed that his\u000adying eyes should rest upon that very ring, and that his last thoughts\u000ashould be of the crime for which he was punished. I have carried\u000ait about with me, and have followed him and his accomplice over two\u000acontinents until I caught them. They thought to tire me out, but they\u000acould not do it. If I die to-morrow, as is likely enough, I die knowing\u000athat my work in this world is done, and well done. They have perished,\u000aand by my hand. There is nothing left for me to hope for, or to desire.\u000a\u000a“They were rich and I was poor, so that it was no easy matter for me to\u000afollow them. When I got to London my pocket was about empty, and I found\u000athat I must turn my hand to something for my living. Driving and riding\u000aare as natural to me as walking, so I applied at a cabowner’s office,\u000aand soon got employment. I was to bring a certain sum a week to the\u000aowner, and whatever was over that I might keep for myself. There was\u000aseldom much over, but I managed to scrape along somehow. The hardest job\u000awas to learn my way about, for I reckon that of all the mazes that ever\u000awere contrived, this city is the most confusing. I had a map beside me\u000athough, and when once I had spotted the principal hotels and stations, I\u000agot on pretty well.\u000a\u000a“It was some time before I found out where my two gentlemen were living;\u000abut I inquired and inquired until at last I dropped across them. They\u000awere at a boarding-house at Camberwell, over on the other side of the\u000ariver. When once I found them out I knew that I had them at my mercy. I\u000ahad grown my beard, and there was no chance of their recognizing me.\u000aI would dog them and follow them until I saw my opportunity. I was\u000adetermined that they should not escape me again.\u000a\u000a“They were very near doing it for all that. Go where they would about\u000aLondon, I was always at their heels. Sometimes I followed them on my\u000acab, and sometimes on foot, but the former was the best, for then they\u000acould not get away from me. It was only early in the morning or late\u000aat night that I could earn anything, so that I began to get behind hand\u000awith my employer. I did not mind that, however, as long as I could lay\u000amy hand upon the men I wanted.\u000a\u000a“They were very cunning, though. They must have thought that there was\u000asome chance of their being followed, for they would never go out alone,\u000aand never after nightfall. During two weeks I drove behind them every\u000aday, and never once saw them separate. Drebber himself was drunk half\u000athe time, but Stangerson was not to be caught napping. I watched them\u000alate and early, but never saw the ghost of a chance; but I was not\u000adiscouraged, for something told me that the hour had almost come. My\u000aonly fear was that this thing in my chest might burst a little too soon\u000aand leave my work undone.\u000a\u000a“At last, one evening I was driving up and down Torquay Terrace, as the\u000astreet was called in which they boarded, when I saw a cab drive up to\u000atheir door. Presently some luggage was brought out, and after a time\u000aDrebber and Stangerson followed it, and drove off. I whipped up my horse\u000aand kept within sight of them, feeling very ill at ease, for I feared\u000athat they were going to shift their quarters. At Euston Station they\u000agot out, and I left a boy to hold my horse, and followed them on to the\u000aplatform. I heard them ask for the Liverpool train, and the guard answer\u000athat one had just gone and there would not be another for some hours.\u000aStangerson seemed to be put out at that, but Drebber was rather pleased\u000athan otherwise. I got so close to them in the bustle that I could hear\u000aevery word that passed between them. Drebber said that he had a little\u000abusiness of his own to do, and that if the other would wait for him he\u000awould soon rejoin him. His companion remonstrated with him, and reminded\u000ahim that they had resolved to stick together. Drebber answered that the\u000amatter was a delicate one, and that he must go alone. I could not catch\u000awhat Stangerson said to that, but the other burst out swearing, and\u000areminded him that he was nothing more than his paid servant, and that he\u000amust not presume to dictate to him. On that the Secretary gave it up\u000aas a bad job, and simply bargained with him that if he missed the last\u000atrain he should rejoin him at Halliday’s Private Hotel; to which Drebber\u000aanswered that he would be back on the platform before eleven, and made\u000ahis way out of the station.\u000a\u000a“The moment for which I had waited so long had at last come. I had my\u000aenemies within my power. Together they could protect each other,\u000abut singly they were at my mercy. I did not act, however, with undue\u000aprecipitation. My plans were already formed. There is no satisfaction in\u000avengeance unless the offender has time to realize who it is that strikes\u000ahim, and why retribution has come upon him. I had my plans arranged by\u000awhich I should have the opportunity of making the man who had wronged me\u000aunderstand that his old sin had found him out. It chanced that some days\u000abefore a gentleman who had been engaged in looking over some houses in\u000athe Brixton Road had dropped the key of one of them in my carriage. It\u000awas claimed that same evening, and returned; but in the interval I had\u000ataken a moulding of it, and had a duplicate constructed. By means of\u000athis I had access to at least one spot in this great city where I could\u000arely upon being free from interruption. How to get Drebber to that house\u000awas the difficult problem which I had now to solve.\u000a\u000a“He walked down the road and went into one or two liquor shops, staying\u000afor nearly half-an-hour in the last of them. When he came out he\u000astaggered in his walk, and was evidently pretty well on. There was a\u000ahansom just in front of me, and he hailed it. I followed it so close\u000athat the nose of my horse was within a yard of his driver the whole way.\u000aWe rattled across Waterloo Bridge and through miles of streets, until,\u000ato my astonishment, we found ourselves back in the Terrace in which he\u000ahad boarded. I could not imagine what his intention was in returning\u000athere; but I went on and pulled up my cab a hundred yards or so from\u000athe house. He entered it, and his hansom drove away. Give me a glass of\u000awater, if you please. My mouth gets dry with the talking.”\u000a\u000aI handed him the glass, and he drank it down.\u000a\u000a“That’s better,” he said. “Well, I waited for a quarter of an hour, or\u000amore, when suddenly there came a noise like people struggling inside the\u000ahouse. Next moment the door was flung open and two men appeared, one of\u000awhom was Drebber, and the other was a young chap whom I had never seen\u000abefore. This fellow had Drebber by the collar, and when they came to\u000athe head of the steps he gave him a shove and a kick which sent him half\u000aacross the road. ‘You hound,’ he cried, shaking his stick at him; ‘I’ll\u000ateach you to insult an honest girl!’ He was so hot that I think he would\u000ahave thrashed Drebber with his cudgel, only that the cur staggered away\u000adown the road as fast as his legs would carry him. He ran as far as the\u000acorner, and then, seeing my cab, he hailed me and jumped in. ‘Drive me\u000ato Halliday’s Private Hotel,’ said he.\u000a\u000a“When I had him fairly inside my cab, my heart jumped so with joy that\u000aI feared lest at this last moment my aneurism might go wrong. I drove\u000aalong slowly, weighing in my own mind what it was best to do. I might\u000atake him right out into the country, and there in some deserted lane\u000ahave my last interview with him. I had almost decided upon this, when he\u000asolved the problem for me. The craze for drink had seized him again, and\u000ahe ordered me to pull up outside a gin palace. He went in, leaving word\u000athat I should wait for him. There he remained until closing time, and\u000awhen he came out he was so far gone that I knew the game was in my own\u000ahands.\u000a\u000a“Don’t imagine that I intended to kill him in cold blood. It would only\u000ahave been rigid justice if I had done so, but I could not bring myself\u000ato do it. I had long determined that he should have a show for his life\u000aif he chose to take advantage of it. Among the many billets which I\u000ahave filled in America during my wandering life, I was once janitor and\u000asweeper out of the laboratory at York College. One day the professor was\u000alecturing on poisions, [25] and he showed his students some alkaloid,\u000aas he called it, which he had extracted from some South American arrow\u000apoison, and which was so powerful that the least grain meant instant\u000adeath. I spotted the bottle in which this preparation was kept, and when\u000athey were all gone, I helped myself to a little of it. I was a fairly\u000agood dispenser, so I worked this alkaloid into small, soluble pills, and\u000aeach pill I put in a box with a similar pill made without the poison.\u000aI determined at the time that when I had my chance, my gentlemen should\u000aeach have a draw out of one of these boxes, while I ate the pill that\u000aremained. It would be quite as deadly, and a good deal less noisy than\u000afiring across a handkerchief. From that day I had always my pill boxes\u000aabout with me, and the time had now come when I was to use them.\u000a\u000a“It was nearer one than twelve, and a wild, bleak night, blowing hard\u000aand raining in torrents. Dismal as it was outside, I was glad within--so\u000aglad that I could have shouted out from pure exultation. If any of you\u000agentlemen have ever pined for a thing, and longed for it during twenty\u000along years, and then suddenly found it within your reach, you would\u000aunderstand my feelings. I lit a cigar, and puffed at it to steady my\u000anerves, but my hands were trembling, and my temples throbbing with\u000aexcitement. As I drove, I could see old John Ferrier and sweet Lucy\u000alooking at me out of the darkness and smiling at me, just as plain as I\u000asee you all in this room. All the way they were ahead of me, one on each\u000aside of the horse until I pulled up at the house in the Brixton Road.\u000a\u000a“There was not a soul to be seen, nor a sound to be heard, except the\u000adripping of the rain. When I looked in at the window, I found Drebber\u000aall huddled together in a drunken sleep. I shook him by the arm, ‘It’s\u000atime to get out,’ I said.\u000a\u000a“‘All right, cabby,’ said he.\u000a\u000a“I suppose he thought we had come to the hotel that he had mentioned,\u000afor he got out without another word, and followed me down the garden.\u000aI had to walk beside him to keep him steady, for he was still a little\u000atop-heavy. When we came to the door, I opened it, and led him into the\u000afront room. I give you my word that all the way, the father and the\u000adaughter were walking in front of us.\u000a\u000a“‘It’s infernally dark,’ said he, stamping about.\u000a\u000a“‘We’ll soon have a light,’ I said, striking a match and putting it to\u000aa wax candle which I had brought with me. ‘Now, Enoch Drebber,’ I\u000acontinued, turning to him, and holding the light to my own face, ‘who am\u000aI?’\u000a\u000a“He gazed at me with bleared, drunken eyes for a moment, and then I\u000asaw a horror spring up in them, and convulse his whole features, which\u000ashowed me that he knew me. He staggered back with a livid face, and I\u000asaw the perspiration break out upon his brow, while his teeth chattered\u000ain his head. At the sight, I leaned my back against the door and laughed\u000aloud and long. I had always known that vengeance would be sweet, but I\u000ahad never hoped for the contentment of soul which now possessed me.\u000a\u000a“‘You dog!’ I said; ‘I have hunted you from Salt Lake City to St.\u000aPetersburg, and you have always escaped me. Now, at last your wanderings\u000ahave come to an end, for either you or I shall never see to-morrow’s sun\u000arise.’ He shrunk still further away as I spoke, and I could see on his\u000aface that he thought I was mad. So I was for the time. The pulses in my\u000atemples beat like sledge-hammers, and I believe I would have had a fit\u000aof some sort if the blood had not gushed from my nose and relieved me.\u000a\u000a“‘What do you think of Lucy Ferrier now?’ I cried, locking the door, and\u000ashaking the key in his face. ‘Punishment has been slow in coming, but it\u000ahas overtaken you at last.’ I saw his coward lips tremble as I spoke. He\u000awould have begged for his life, but he knew well that it was useless.\u000a\u000a“‘Would you murder me?’ he stammered.\u000a\u000a“‘There is no murder,’ I answered. ‘Who talks of murdering a mad dog?\u000aWhat mercy had you upon my poor darling, when you dragged her from her\u000aslaughtered father, and bore her away to your accursed and shameless\u000aharem.’\u000a\u000a“‘It was not I who killed her father,’ he cried.\u000a\u000a“‘But it was you who broke her innocent heart,’ I shrieked, thrusting\u000athe box before him. ‘Let the high God judge between us. Choose and\u000aeat. There is death in one and life in the other. I shall take what you\u000aleave. Let us see if there is justice upon the earth, or if we are ruled\u000aby chance.’\u000a\u000a“He cowered away with wild cries and prayers for mercy, but I drew my\u000aknife and held it to his throat until he had obeyed me. Then I swallowed\u000athe other, and we stood facing one another in silence for a minute or\u000amore, waiting to see which was to live and which was to die. Shall I\u000aever forget the look which came over his face when the first warning\u000apangs told him that the poison was in his system? I laughed as I saw\u000ait, and held Lucy’s marriage ring in front of his eyes. It was but for\u000aa moment, for the action of the alkaloid is rapid. A spasm of pain\u000acontorted his features; he threw his hands out in front of him,\u000astaggered, and then, with a hoarse cry, fell heavily upon the floor. I\u000aturned him over with my foot, and placed my hand upon his heart. There\u000awas no movement. He was dead!\u000a\u000a“The blood had been streaming from my nose, but I had taken no notice of\u000ait. I don’t know what it was that put it into my head to write upon the\u000awall with it. Perhaps it was some mischievous idea of setting the police\u000aupon a wrong track, for I felt light-hearted and cheerful. I remembered\u000aa German being found in New York with RACHE written up above him, and it\u000awas argued at the time in the newspapers that the secret societies must\u000ahave done it. I guessed that what puzzled the New Yorkers would puzzle\u000athe Londoners, so I dipped my finger in my own blood and printed it on\u000aa convenient place on the wall. Then I walked down to my cab and found\u000athat there was nobody about, and that the night was still very wild. I\u000ahad driven some distance when I put my hand into the pocket in which\u000aI usually kept Lucy’s ring, and found that it was not there. I was\u000athunderstruck at this, for it was the only memento that I had of her.\u000aThinking that I might have dropped it when I stooped over Drebber’s\u000abody, I drove back, and leaving my cab in a side street, I went boldly\u000aup to the house--for I was ready to dare anything rather than lose\u000athe ring. When I arrived there, I walked right into the arms of a\u000apolice-officer who was coming out, and only managed to disarm his\u000asuspicions by pretending to be hopelessly drunk.\u000a\u000a“That was how Enoch Drebber came to his end. All I had to do then was\u000ato do as much for Stangerson, and so pay off John Ferrier’s debt. I knew\u000athat he was staying at Halliday’s Private Hotel, and I hung about all\u000aday, but he never came out. [26] fancy that he suspected something when\u000aDrebber failed to put in an appearance. He was cunning, was Stangerson,\u000aand always on his guard. If he thought he could keep me off by staying\u000aindoors he was very much mistaken. I soon found out which was the window\u000aof his bedroom, and early next morning I took advantage of some ladders\u000awhich were lying in the lane behind the hotel, and so made my way into\u000ahis room in the grey of the dawn. I woke him up and told him that the\u000ahour had come when he was to answer for the life he had taken so long\u000abefore. I described Drebber’s death to him, and I gave him the same\u000achoice of the poisoned pills. Instead of grasping at the chance of\u000asafety which that offered him, he sprang from his bed and flew at my\u000athroat. In self-defence I stabbed him to the heart. It would have been\u000athe same in any case, for Providence would never have allowed his guilty\u000ahand to pick out anything but the poison.\u000a\u000a“I have little more to say, and it’s as well, for I am about done up.\u000aI went on cabbing it for a day or so, intending to keep at it until I\u000acould save enough to take me back to America. I was standing in the\u000ayard when a ragged youngster asked if there was a cabby there called\u000aJefferson Hope, and said that his cab was wanted by a gentleman at 221B,\u000aBaker Street. I went round, suspecting no harm, and the next thing I\u000aknew, this young man here had the bracelets on my wrists, and as neatly\u000asnackled [27] as ever I saw in my life. That’s the whole of my story,\u000agentlemen. You may consider me to be a murderer; but I hold that I am\u000ajust as much an officer of justice as you are.”\u000a\u000aSo thrilling had the man’s narrative been, and his manner was so\u000aimpressive that we had sat silent and absorbed. Even the professional\u000adetectives, _blasé_ as they were in every detail of crime, appeared to\u000abe keenly interested in the man’s story. When he finished we sat for\u000asome minutes in a stillness which was only broken by the scratching\u000aof Lestrade’s pencil as he gave the finishing touches to his shorthand\u000aaccount.\u000a\u000a“There is only one point on which I should like a little more\u000ainformation,” Sherlock Holmes said at last. “Who was your accomplice who\u000acame for the ring which I advertised?”\u000a\u000aThe prisoner winked at my friend jocosely. “I can tell my own secrets,”\u000a he said, “but I don’t get other people into trouble. I saw your\u000aadvertisement, and I thought it might be a plant, or it might be the\u000aring which I wanted. My friend volunteered to go and see. I think you’ll\u000aown he did it smartly.”\u000a\u000a“Not a doubt of that,” said Holmes heartily.\u000a\u000a“Now, gentlemen,” the Inspector remarked gravely, “the forms of the law\u000amust be complied with. On Thursday the prisoner will be brought before\u000athe magistrates, and your attendance will be required. Until then I will\u000abe responsible for him.” He rang the bell as he spoke, and Jefferson\u000aHope was led off by a couple of warders, while my friend and I made our\u000away out of the Station and took a cab back to Baker Street.\u000a\u000a\u000a\u000a\u000aCHAPTER VII. THE CONCLUSION.\u000a\u000a\u000aWE had all been warned to appear before the magistrates upon the\u000aThursday; but when the Thursday came there was no occasion for our\u000atestimony. A higher Judge had taken the matter in hand, and Jefferson\u000aHope had been summoned before a tribunal where strict justice would\u000abe meted out to him. On the very night after his capture the aneurism\u000aburst, and he was found in the morning stretched upon the floor of the\u000acell, with a placid smile upon his face, as though he had been able\u000ain his dying moments to look back upon a useful life, and on work well\u000adone.\u000a\u000a“Gregson and Lestrade will be wild about his death,” Holmes remarked, as\u000awe chatted it over next evening. “Where will their grand advertisement\u000abe now?”\u000a\u000a“I don’t see that they had very much to do with his capture,” I\u000aanswered.\u000a\u000a“What you do in this world is a matter of no consequence,” returned my\u000acompanion, bitterly. “The question is, what can you make people believe\u000athat you have done. Never mind,” he continued, more brightly, after a\u000apause. “I would not have missed the investigation for anything. There\u000ahas been no better case within my recollection. Simple as it was, there\u000awere several most instructive points about it.”\u000a\u000a“Simple!” I ejaculated.\u000a\u000a“Well, really, it can hardly be described as otherwise,” said Sherlock\u000aHolmes, smiling at my surprise. “The proof of its intrinsic simplicity\u000ais, that without any help save a few very ordinary deductions I was able\u000ato lay my hand upon the criminal within three days.”\u000a\u000a“That is true,” said I.\u000a\u000a“I have already explained to you that what is out of the common is\u000ausually a guide rather than a hindrance. In solving a problem of this\u000asort, the grand thing is to be able to reason backwards. That is a very\u000auseful accomplishment, and a very easy one, but people do not practise\u000ait much. In the every-day affairs of life it is more useful to reason\u000aforwards, and so the other comes to be neglected. There are fifty who\u000acan reason synthetically for one who can reason analytically.”\u000a\u000a“I confess,” said I, “that I do not quite follow you.”\u000a\u000a“I hardly expected that you would. Let me see if I can make it clearer.\u000aMost people, if you describe a train of events to them, will tell you\u000awhat the result would be. They can put those events together in their\u000aminds, and argue from them that something will come to pass. There are\u000afew people, however, who, if you told them a result, would be able to\u000aevolve from their own inner consciousness what the steps were which led\u000aup to that result. This power is what I mean when I talk of reasoning\u000abackwards, or analytically.”\u000a\u000a“I understand,” said I.\u000a\u000a“Now this was a case in which you were given the result and had to\u000afind everything else for yourself. Now let me endeavour to show you the\u000adifferent steps in my reasoning. To begin at the beginning. I approached\u000athe house, as you know, on foot, and with my mind entirely free from all\u000aimpressions. I naturally began by examining the roadway, and there, as I\u000ahave already explained to you, I saw clearly the marks of a cab, which,\u000aI ascertained by inquiry, must have been there during the night. I\u000asatisfied myself that it was a cab and not a private carriage by the\u000anarrow gauge of the wheels. The ordinary London growler is considerably\u000aless wide than a gentleman’s brougham.\u000a\u000a“This was the first point gained. I then walked slowly down the garden\u000apath, which happened to be composed of a clay soil, peculiarly suitable\u000afor taking impressions. No doubt it appeared to you to be a mere\u000atrampled line of slush, but to my trained eyes every mark upon its\u000asurface had a meaning. There is no branch of detective science which\u000ais so important and so much neglected as the art of tracing footsteps.\u000aHappily, I have always laid great stress upon it, and much practice\u000ahas made it second nature to me. I saw the heavy footmarks of the\u000aconstables, but I saw also the track of the two men who had first passed\u000athrough the garden. It was easy to tell that they had been before the\u000aothers, because in places their marks had been entirely obliterated by\u000athe others coming upon the top of them. In this way my second link was\u000aformed, which told me that the nocturnal visitors were two in number,\u000aone remarkable for his height (as I calculated from the length of his\u000astride), and the other fashionably dressed, to judge from the small and\u000aelegant impression left by his boots.\u000a\u000a“On entering the house this last inference was confirmed. My well-booted\u000aman lay before me. The tall one, then, had done the murder, if murder\u000athere was. There was no wound upon the dead man’s person, but the\u000aagitated expression upon his face assured me that he had foreseen his\u000afate before it came upon him. Men who die from heart disease, or any\u000asudden natural cause, never by any chance exhibit agitation upon their\u000afeatures. Having sniffed the dead man’s lips I detected a slightly sour\u000asmell, and I came to the conclusion that he had had poison forced upon\u000ahim. Again, I argued that it had been forced upon him from the hatred\u000aand fear expressed upon his face. By the method of exclusion, I had\u000aarrived at this result, for no other hypothesis would meet the facts.\u000aDo not imagine that it was a very unheard of idea. The forcible\u000aadministration of poison is by no means a new thing in criminal annals.\u000aThe cases of Dolsky in Odessa, and of Leturier in Montpellier, will\u000aoccur at once to any toxicologist.\u000a\u000a“And now came the great question as to the reason why. Robbery had not\u000abeen the object of the murder, for nothing was taken. Was it politics,\u000athen, or was it a woman? That was the question which confronted me.\u000aI was inclined from the first to the latter supposition. Political\u000aassassins are only too glad to do their work and to fly. This murder\u000ahad, on the contrary, been done most deliberately, and the perpetrator\u000ahad left his tracks all over the room, showing that he had been there\u000aall the time. It must have been a private wrong, and not a political\u000aone, which called for such a methodical revenge. When the inscription\u000awas discovered upon the wall I was more inclined than ever to my\u000aopinion. The thing was too evidently a blind. When the ring was found,\u000ahowever, it settled the question. Clearly the murderer had used it to\u000aremind his victim of some dead or absent woman. It was at this point\u000athat I asked Gregson whether he had enquired in his telegram to\u000aCleveland as to any particular point in Mr. Drebber’s former career. He\u000aanswered, you remember, in the negative.\u000a\u000a“I then proceeded to make a careful examination of the room, which\u000aconfirmed me in my opinion as to the murderer’s height, and furnished me\u000awith the additional details as to the Trichinopoly cigar and the length\u000aof his nails. I had already come to the conclusion, since there were no\u000asigns of a struggle, that the blood which covered the floor had burst\u000afrom the murderer’s nose in his excitement. I could perceive that the\u000atrack of blood coincided with the track of his feet. It is seldom that\u000aany man, unless he is very full-blooded, breaks out in this way through\u000aemotion, so I hazarded the opinion that the criminal was probably a\u000arobust and ruddy-faced man. Events proved that I had judged correctly.\u000a\u000a“Having left the house, I proceeded to do what Gregson had neglected. I\u000atelegraphed to the head of the police at Cleveland, limiting my enquiry\u000ato the circumstances connected with the marriage of Enoch Drebber. The\u000aanswer was conclusive. It told me that Drebber had already applied for\u000athe protection of the law against an old rival in love, named Jefferson\u000aHope, and that this same Hope was at present in Europe. I knew now that\u000aI held the clue to the mystery in my hand, and all that remained was to\u000asecure the murderer.\u000a\u000a“I had already determined in my own mind that the man who had walked\u000ainto the house with Drebber, was none other than the man who had driven\u000athe cab. The marks in the road showed me that the horse had wandered\u000aon in a way which would have been impossible had there been anyone in\u000acharge of it. Where, then, could the driver be, unless he were inside\u000athe house? Again, it is absurd to suppose that any sane man would carry\u000aout a deliberate crime under the very eyes, as it were, of a third\u000aperson, who was sure to betray him. Lastly, supposing one man wished\u000ato dog another through London, what better means could he adopt than\u000ato turn cabdriver. All these considerations led me to the irresistible\u000aconclusion that Jefferson Hope was to be found among the jarveys of the\u000aMetropolis.\u000a\u000a“If he had been one there was no reason to believe that he had ceased to\u000abe. On the contrary, from his point of view, any sudden change would be\u000alikely to draw attention to himself. He would, probably, for a time at\u000aleast, continue to perform his duties. There was no reason to suppose\u000athat he was going under an assumed name. Why should he change his name\u000ain a country where no one knew his original one? I therefore organized\u000amy Street Arab detective corps, and sent them systematically to every\u000acab proprietor in London until they ferreted out the man that I wanted.\u000aHow well they succeeded, and how quickly I took advantage of it, are\u000astill fresh in your recollection. The murder of Stangerson was an\u000aincident which was entirely unexpected, but which could hardly in\u000aany case have been prevented. Through it, as you know, I came into\u000apossession of the pills, the existence of which I had already surmised.\u000aYou see the whole thing is a chain of logical sequences without a break\u000aor flaw.”\u000a\u000a“It is wonderful!” I cried. “Your merits should be publicly recognized.\u000aYou should publish an account of the case. If you won’t, I will for\u000ayou.”\u000a\u000a“You may do what you like, Doctor,” he answered. “See here!” he\u000acontinued, handing a paper over to me, “look at this!”\u000a\u000aIt was the _Echo_ for the day, and the paragraph to which he pointed was\u000adevoted to the case in question.\u000a\u000a“The public,” it said, “have lost a sensational treat through the sudden\u000adeath of the man Hope, who was suspected of the murder of Mr. Enoch\u000aDrebber and of Mr. Joseph Stangerson. The details of the case will\u000aprobably be never known now, though we are informed upon good authority\u000athat the crime was the result of an old standing and romantic feud, in\u000awhich love and Mormonism bore a part. It seems that both the victims\u000abelonged, in their younger days, to the Latter Day Saints, and Hope, the\u000adeceased prisoner, hails also from Salt Lake City. If the case has had\u000ano other effect, it, at least, brings out in the most striking manner\u000athe efficiency of our detective police force, and will serve as a lesson\u000ato all foreigners that they will do wisely to settle their feuds at\u000ahome, and not to carry them on to British soil. It is an open secret\u000athat the credit of this smart capture belongs entirely to the well-known\u000aScotland Yard officials, Messrs. Lestrade and Gregson. The man was\u000aapprehended, it appears, in the rooms of a certain Mr. Sherlock Holmes,\u000awho has himself, as an amateur, shown some talent in the detective\u000aline, and who, with such instructors, may hope in time to attain to some\u000adegree of their skill. It is expected that a testimonial of some sort\u000awill be presented to the two officers as a fitting recognition of their\u000aservices.”\u000a\u000a“Didn’t I tell you so when we started?” cried Sherlock Holmes with a\u000alaugh. “That’s the result of all our Study in Scarlet: to get them a\u000atestimonial!”\u000a\u000a“Never mind,” I answered, “I have all the facts in my journal, and the\u000apublic shall know them. In the meantime you must make yourself contented\u000aby the consciousness of success, like the Roman miser--\u000a\u000a “‘Populus me sibilat, at mihi plaudo\u000a Ipse domi simul ac nummos contemplor in arca.’”\u000a\u000a\u000a\u000a\u000a\u000aORIGINAL TRANSCRIBER’S NOTES:\u000a\u000a\u000a[Footnote 1: Frontispiece, with the caption: “He examined with his glass\u000athe word upon the wall, going over every letter of it with the most\u000aminute exactness.” (_Page_ 23.)]\u000a\u000a[Footnote 2: “JOHN H. WATSON, M.D.”: the initial letters in the name are\u000acapitalized, the other letters in small caps. All chapter titles are in\u000asmall caps. The initial words of chapters are in small caps with first\u000aletter capitalized.]\u000a\u000a[Footnote 3: “lodgings.”: the period should be a comma, as in later\u000aeditions.]\u000a\u000a[Footnote 4: “hoemoglobin”: should be haemoglobin. The o&e are\u000aconcatenated.]\u000a\u000a[Footnote 5: “221B”: the B is in small caps]\u000a\u000a[Footnote 6: “THE LAURISTON GARDEN MYSTERY”: the table-of-contents\u000alists this chapter as “...GARDENS MYSTERY”--plural, and probably more\u000acorrect.]\u000a\u000a[Footnote 7: “brought.\"”: the text has an extra double-quote mark]\u000a\u000a[Footnote 8: “individual--“: illustration this page, with the\u000acaption: “As he spoke, his nimble fingers were flying here, there, and\u000aeverywhere.”]\u000a\u000a[Footnote 9: “manoeuvres”: the o&e are concatenated.]\u000a\u000a[Footnote 10: “Patent leathers”: the hyphen is missing.]\u000a\u000a[Footnote 11: “condonment”: should be condonement.]\u000a\u000a[Footnote 13: “wages.”: ending quote is missing.]\u000a\u000a[Footnote 14: “the first.”: ending quote is missing.]\u000a\u000a[Footnote 15: “make much of...”: Other editions complete this sentence\u000awith an “it.” But there is a gap in the text at this point, and, given\u000athe context, it may have actually been an interjection, a dash. The gap\u000ais just the right size for the characters “it.” and the start of a new\u000asentence, or for a “----“]\u000a\u000a[Footnote 16: “tho cushion”: “tho” should be “the”]\u000a\u000a[Footnote 19: “shoving”: later editions have “showing”. The original is\u000aclearly superior.]\u000a\u000a[Footnote 20: “stared about...”: illustration, with the caption: “One of\u000athem seized the little girl, and hoisted her upon his shoulder.”]\u000a\u000a[Footnote 21: “upon the”: illustration, with the caption: “As he watched\u000ait he saw it writhe along the ground.”]\u000a\u000a[Footnote 22: “FORMERLY...”: F,S,L,C in caps, other letters in this line\u000ain small caps.]\u000a\u000a[Footnote 23: “ancles”: ankles.]\u000a\u000a[Footnote 24: “asked,”: should be “asked.”]\u000a\u000a[Footnote 25: “poisions”: should be “poisons”]\u000a\u000a[Footnote 26: “...fancy”: should be “I fancy”. There is a gap in the\u000atext.]\u000a\u000a[Footnote 27: “snackled”: “shackled” in later texts.]\u000a\u000a[Footnote 29: Heber C. Kemball, in one of his sermons, alludes to his\u000ahundred wives under this endearing epithet.]\u000a\u000a\u000a\u000a\u000a\u000aEnd of Project Gutenberg’s A Study In Scarlet, by Arthur Conan Doyle\u000a\u000a*** END OF THIS PROJECT GUTENBERG EBOOK A STUDY IN SCARLET ***\u000a\u000a***** This file should be named 244-0.txt or 244-0.zip *****\u000aThis and all associated files of various formats will be found in:\u000a http://www.gutenberg.org/2/4/244/\u000a\u000aProduced by Roger Squires\u000a\u000aUpdated editions will replace the previous one--the old editions\u000awill be renamed.\u000a\u000aCreating the works from public domain print editions means that no\u000aone owns a United States copyright in these works, so the Foundation\u000a(and you!) can copy and distribute it in the United States without\u000apermission and without paying copyright royalties. Special rules,\u000aset forth in the General Terms of Use part of this license, apply to\u000acopying and distributing Project Gutenberg-tm electronic works to\u000aprotect the PROJECT GUTENBERG-tm concept and trademark. Project\u000aGutenberg is a registered trademark, and may not be used if you\u000acharge for the eBooks, unless you receive specific permission. If you\u000ado not charge anything for copies of this eBook, complying with the\u000arules is very easy. You may use this eBook for nearly any purpose\u000asuch as creation of derivative works, reports, performances and\u000aresearch. They may be modified and printed and given away--you may do\u000apractically ANYTHING with public domain eBooks. Redistribution is\u000asubject to the trademark license, especially commercial\u000aredistribution.\u000a\u000a\u000a\u000a*** START: FULL LICENSE ***\u000a\u000aTHE FULL PROJECT GUTENBERG LICENSE\u000aPLEASE READ THIS BEFORE YOU DISTRIBUTE OR USE THIS WORK\u000a\u000aTo protect the Project Gutenberg-tm mission of promoting the free\u000adistribution of electronic works, by using or distributing this work\u000a(or any other work associated in any way with the phrase “Project\u000aGutenberg”), you agree to comply with all the terms of the Full Project\u000aGutenberg-tm License (available with this file or online at\u000ahttp://gutenberg.org/license).\u000a\u000a\u000aSection 1. General Terms of Use and Redistributing Project Gutenberg-tm\u000aelectronic works\u000a\u000a1.A. By reading or using any part of this Project Gutenberg-tm\u000aelectronic work, you indicate that you have read, understand, agree to\u000aand accept all the terms of this license and intellectual property\u000a(trademark/copyright) agreement. If you do not agree to abide by all\u000athe terms of this agreement, you must cease using and return or destroy\u000aall copies of Project Gutenberg-tm electronic works in your possession.\u000aIf you paid a fee for obtaining a copy of or access to a Project\u000aGutenberg-tm electronic work and you do not agree to be bound by the\u000aterms of this agreement, you may obtain a refund from the person or\u000aentity to whom you paid the fee as set forth in paragraph 1.E.8.\u000a\u000a1.B. “Project Gutenberg” is a registered trademark. It may only be\u000aused on or associated in any way with an electronic work by people who\u000aagree to be bound by the terms of this agreement. There are a few\u000athings that you can do with most Project Gutenberg-tm electronic works\u000aeven without complying with the full terms of this agreement. See\u000aparagraph 1.C below. There are a lot of things you can do with Project\u000aGutenberg-tm electronic works if you follow the terms of this agreement\u000aand help preserve free future access to Project Gutenberg-tm electronic\u000aworks. See paragraph 1.E below.\u000a\u000a1.C. The Project Gutenberg Literary Archive Foundation (“the Foundation”\u000a or PGLAF), owns a compilation copyright in the collection of Project\u000aGutenberg-tm electronic works. Nearly all the individual works in the\u000acollection are in the public domain in the United States. If an\u000aindividual work is in the public domain in the United States and you are\u000alocated in the United States, we do not claim a right to prevent you from\u000acopying, distributing, performing, displaying or creating derivative\u000aworks based on the work as long as all references to Project Gutenberg\u000aare removed. Of course, we hope that you will support the Project\u000aGutenberg-tm mission of promoting free access to electronic works by\u000afreely sharing Project Gutenberg-tm works in compliance with the terms of\u000athis agreement for keeping the Project Gutenberg-tm name associated with\u000athe work. You can easily comply with the terms of this agreement by\u000akeeping this work in the same format with its attached full Project\u000aGutenberg-tm License when you share it without charge with others.\u000a\u000a1.D. The copyright laws of the place where you are located also govern\u000awhat you can do with this work. Copyright laws in most countries are in\u000aa constant state of change. If you are outside the United States, check\u000athe laws of your country in addition to the terms of this agreement\u000abefore downloading, copying, displaying, performing, distributing or\u000acreating derivative works based on this work or any other Project\u000aGutenberg-tm work. The Foundation makes no representations concerning\u000athe copyright status of any work in any country outside the United\u000aStates.\u000a\u000a1.E. Unless you have removed all references to Project Gutenberg:\u000a\u000a1.E.1. The following sentence, with active links to, or other immediate\u000aaccess to, the full Project Gutenberg-tm License must appear prominently\u000awhenever any copy of a Project Gutenberg-tm work (any work on which the\u000aphrase “Project Gutenberg” appears, or with which the phrase “Project\u000aGutenberg” is associated) is accessed, displayed, performed, viewed,\u000acopied or distributed:\u000a\u000aThis eBook is for the use of anyone anywhere at no cost and with\u000aalmost no restrictions whatsoever. You may copy it, give it away or\u000are-use it under the terms of the Project Gutenberg License included\u000awith this eBook or online at www.gutenberg.org\u000a\u000a1.E.2. If an individual Project Gutenberg-tm electronic work is derived\u000afrom the public domain (does not contain a notice indicating that it is\u000aposted with permission of the copyright holder), the work can be copied\u000aand distributed to anyone in the United States without paying any fees\u000aor charges. If you are redistributing or providing access to a work\u000awith the phrase “Project Gutenberg” associated with or appearing on the\u000awork, you must comply either with the requirements of paragraphs 1.E.1\u000athrough 1.E.7 or obtain permission for the use of the work and the\u000aProject Gutenberg-tm trademark as set forth in paragraphs 1.E.8 or\u000a1.E.9.\u000a\u000a1.E.3. If an individual Project Gutenberg-tm electronic work is posted\u000awith the permission of the copyright holder, your use and distribution\u000amust comply with both paragraphs 1.E.1 through 1.E.7 and any additional\u000aterms imposed by the copyright holder. Additional terms will be linked\u000ato the Project Gutenberg-tm License for all works posted with the\u000apermission of the copyright holder found at the beginning of this work.\u000a\u000a1.E.4. Do not unlink or detach or remove the full Project Gutenberg-tm\u000aLicense terms from this work, or any files containing a part of this\u000awork or any other work associated with Project Gutenberg-tm.\u000a\u000a1.E.5. Do not copy, display, perform, distribute or redistribute this\u000aelectronic work, or any part of this electronic work, without\u000aprominently displaying the sentence set forth in paragraph 1.E.1 with\u000aactive links or immediate access to the full terms of the Project\u000aGutenberg-tm License.\u000a\u000a1.E.6. You may convert to and distribute this work in any binary,\u000acompressed, marked up, nonproprietary or proprietary form, including any\u000aword processing or hypertext form. However, if you provide access to or\u000adistribute copies of a Project Gutenberg-tm work in a format other than\u000a“Plain Vanilla ASCII” or other format used in the official version\u000aposted on the official Project Gutenberg-tm web site (www.gutenberg.org),\u000ayou must, at no additional cost, fee or expense to the user, provide a\u000acopy, a means of exporting a copy, or a means of obtaining a copy upon\u000arequest, of the work in its original “Plain Vanilla ASCII” or other\u000aform. Any alternate format must include the full Project Gutenberg-tm\u000aLicense as specified in paragraph 1.E.1.\u000a\u000a1.E.7. Do not charge a fee for access to, viewing, displaying,\u000aperforming, copying or distributing any Project Gutenberg-tm works\u000aunless you comply with paragraph 1.E.8 or 1.E.9.\u000a\u000a1.E.8. You may charge a reasonable fee for copies of or providing\u000aaccess to or distributing Project Gutenberg-tm electronic works provided\u000athat\u000a\u000a- You pay a royalty fee of 20% of the gross profits you derive from\u000a the use of Project Gutenberg-tm works calculated using the method\u000a you already use to calculate your applicable taxes. The fee is\u000a owed to the owner of the Project Gutenberg-tm trademark, but he\u000a has agreed to donate royalties under this paragraph to the\u000a Project Gutenberg Literary Archive Foundation. Royalty payments\u000a must be paid within 60 days following each date on which you\u000a prepare (or are legally required to prepare) your periodic tax\u000a returns. Royalty payments should be clearly marked as such and\u000a sent to the Project Gutenberg Literary Archive Foundation at the\u000a address specified in Section 4, “Information about donations to\u000a the Project Gutenberg Literary Archive Foundation.”\u000a\u000a- You provide a full refund of any money paid by a user who notifies\u000a you in writing (or by e-mail) within 30 days of receipt that s/he\u000a does not agree to the terms of the full Project Gutenberg-tm\u000a License. You must require such a user to return or\u000a destroy all copies of the works possessed in a physical medium\u000a and discontinue all use of and all access to other copies of\u000a Project Gutenberg-tm works.\u000a\u000a- You provide, in accordance with paragraph 1.F.3, a full refund of any\u000a money paid for a work or a replacement copy, if a defect in the\u000a electronic work is discovered and reported to you within 90 days\u000a of receipt of the work.\u000a\u000a- You comply with all other terms of this agreement for free\u000a distribution of Project Gutenberg-tm works.\u000a\u000a1.E.9. If you wish to charge a fee or distribute a Project Gutenberg-tm\u000aelectronic work or group of works on different terms than are set\u000aforth in this agreement, you must obtain permission in writing from\u000aboth the Project Gutenberg Literary Archive Foundation and Michael\u000aHart, the owner of the Project Gutenberg-tm trademark. Contact the\u000aFoundation as set forth in Section 3 below.\u000a\u000a1.F.\u000a\u000a1.F.1. Project Gutenberg volunteers and employees expend considerable\u000aeffort to identify, do copyright research on, transcribe and proofread\u000apublic domain works in creating the Project Gutenberg-tm\u000acollection. Despite these efforts, Project Gutenberg-tm electronic\u000aworks, and the medium on which they may be stored, may contain\u000a“Defects,” such as, but not limited to, incomplete, inaccurate or\u000acorrupt data, transcription errors, a copyright or other intellectual\u000aproperty infringement, a defective or damaged disk or other medium, a\u000acomputer virus, or computer codes that damage or cannot be read by\u000ayour equipment.\u000a\u000a1.F.2. LIMITED WARRANTY, DISCLAIMER OF DAMAGES - Except for the “Right\u000aof Replacement or Refund” described in paragraph 1.F.3, the Project\u000aGutenberg Literary Archive Foundation, the owner of the Project\u000aGutenberg-tm trademark, and any other party distributing a Project\u000aGutenberg-tm electronic work under this agreement, disclaim all\u000aliability to you for damages, costs and expenses, including legal\u000afees. YOU AGREE THAT YOU HAVE NO REMEDIES FOR NEGLIGENCE, STRICT\u000aLIABILITY, BREACH OF WARRANTY OR BREACH OF CONTRACT EXCEPT THOSE\u000aPROVIDED IN PARAGRAPH F3. YOU AGREE THAT THE FOUNDATION, THE\u000aTRADEMARK OWNER, AND ANY DISTRIBUTOR UNDER THIS AGREEMENT WILL NOT BE\u000aLIABLE TO YOU FOR ACTUAL, DIRECT, INDIRECT, CONSEQUENTIAL, PUNITIVE OR\u000aINCIDENTAL DAMAGES EVEN IF YOU GIVE NOTICE OF THE POSSIBILITY OF SUCH\u000aDAMAGE.\u000a\u000a1.F.3. LIMITED RIGHT OF REPLACEMENT OR REFUND - If you discover a\u000adefect in this electronic work within 90 days of receiving it, you can\u000areceive a refund of the money (if any) you paid for it by sending a\u000awritten explanation to the person you received the work from. If you\u000areceived the work on a physical medium, you must return the medium with\u000ayour written explanation. The person or entity that provided you with\u000athe defective work may elect to provide a replacement copy in lieu of a\u000arefund. If you received the work electronically, the person or entity\u000aproviding it to you may choose to give you a second opportunity to\u000areceive the work electronically in lieu of a refund. If the second copy\u000ais also defective, you may demand a refund in writing without further\u000aopportunities to fix the problem.\u000a\u000a1.F.4. Except for the limited right of replacement or refund set forth\u000ain paragraph 1.F.3, this work is provided to you ‘AS-IS’ WITH NO OTHER\u000aWARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO\u000aWARRANTIES OF MERCHANTIBILITY OR FITNESS FOR ANY PURPOSE.\u000a\u000a1.F.5. Some states do not allow disclaimers of certain implied\u000awarranties or the exclusion or limitation of certain types of damages.\u000aIf any disclaimer or limitation set forth in this agreement violates the\u000alaw of the state applicable to this agreement, the agreement shall be\u000ainterpreted to make the maximum disclaimer or limitation permitted by\u000athe applicable state law. The invalidity or unenforceability of any\u000aprovision of this agreement shall not void the remaining provisions.\u000a\u000a1.F.6. INDEMNITY - You agree to indemnify and hold the Foundation, the\u000atrademark owner, any agent or employee of the Foundation, anyone\u000aproviding copies of Project Gutenberg-tm electronic works in accordance\u000awith this agreement, and any volunteers associated with the production,\u000apromotion and distribution of Project Gutenberg-tm electronic works,\u000aharmless from all liability, costs and expenses, including legal fees,\u000athat arise directly or indirectly from any of the following which you do\u000aor cause to occur: (a) distribution of this or any Project Gutenberg-tm\u000awork, (b) alteration, modification, or additions or deletions to any\u000aProject Gutenberg-tm work, and (c) any Defect you cause.\u000a\u000a\u000aSection 2. Information about the Mission of Project Gutenberg-tm\u000a\u000aProject Gutenberg-tm is synonymous with the free distribution of\u000aelectronic works in formats readable by the widest variety of computers\u000aincluding obsolete, old, middle-aged and new computers. It exists\u000abecause of the efforts of hundreds of volunteers and donations from\u000apeople in all walks of life.\u000a\u000aVolunteers and financial support to provide volunteers with the\u000aassistance they need, is critical to reaching Project Gutenberg-tm’s\u000agoals and ensuring that the Project Gutenberg-tm collection will\u000aremain freely available for generations to come. In 2001, the Project\u000aGutenberg Literary Archive Foundation was created to provide a secure\u000aand permanent future for Project Gutenberg-tm and future generations.\u000aTo learn more about the Project Gutenberg Literary Archive Foundation\u000aand how your efforts and donations can help, see Sections 3 and 4\u000aand the Foundation web page at http://www.pglaf.org.\u000a\u000a\u000aSection 3. Information about the Project Gutenberg Literary Archive\u000aFoundation\u000a\u000aThe Project Gutenberg Literary Archive Foundation is a non profit\u000a501(c)(3) educational corporation organized under the laws of the\u000astate of Mississippi and granted tax exempt status by the Internal\u000aRevenue Service. The Foundation’s EIN or federal tax identification\u000anumber is 64-6221541. Its 501(c)(3) letter is posted at\u000ahttp://pglaf.org/fundraising. Contributions to the Project Gutenberg\u000aLiterary Archive Foundation are tax deductible to the full extent\u000apermitted by U.S. federal laws and your state’s laws.\u000a\u000aThe Foundation’s principal office is located at 4557 Melan Dr. S.\u000aFairbanks, AK, 99712., but its volunteers and employees are scattered\u000athroughout numerous locations. Its business office is located at\u000a809 North 1500 West, Salt Lake City, UT 84116, (801) 596-1887, email\u000abusiness@pglaf.org. Email contact links and up to date contact\u000ainformation can be found at the Foundation’s web site and official\u000apage at http://pglaf.org\u000a\u000aFor additional contact information:\u000a Dr. Gregory B. Newby\u000a Chief Executive and Director\u000a gbnewby@pglaf.org\u000a\u000a\u000aSection 4. Information about Donations to the Project Gutenberg\u000aLiterary Archive Foundation\u000a\u000aProject Gutenberg-tm depends upon and cannot survive without wide\u000aspread public support and donations to carry out its mission of\u000aincreasing the number of public domain and licensed works that can be\u000afreely distributed in machine readable form accessible by the widest\u000aarray of equipment including outdated equipment. Many small donations\u000a($1 to $5,000) are particularly important to maintaining tax exempt\u000astatus with the IRS.\u000a\u000aThe Foundation is committed to complying with the laws regulating\u000acharities and charitable donations in all 50 states of the United\u000aStates. Compliance requirements are not uniform and it takes a\u000aconsiderable effort, much paperwork and many fees to meet and keep up\u000awith these requirements. We do not solicit donations in locations\u000awhere we have not received written confirmation of compliance. To\u000aSEND DONATIONS or determine the status of compliance for any\u000aparticular state visit http://pglaf.org\u000a\u000aWhile we cannot and do not solicit contributions from states where we\u000ahave not met the solicitation requirements, we know of no prohibition\u000aagainst accepting unsolicited donations from donors in such states who\u000aapproach us with offers to donate.\u000a\u000aInternational donations are gratefully accepted, but we cannot make\u000aany statements concerning tax treatment of donations received from\u000aoutside the United States. U.S. laws alone swamp our small staff.\u000a\u000aPlease check the Project Gutenberg Web pages for current donation\u000amethods and addresses. Donations are accepted in a number of other\u000aways including checks, online payments and credit card donations.\u000aTo donate, please visit: http://pglaf.org/donate\u000a\u000a\u000aSection 5. General Information About Project Gutenberg-tm electronic\u000aworks.\u000a\u000aProfessor Michael S. Hart is the originator of the Project Gutenberg-tm\u000aconcept of a library of electronic works that could be freely shared\u000awith anyone. For thirty years, he produced and distributed Project\u000aGutenberg-tm eBooks with only a loose network of volunteer support.\u000a\u000a\u000aProject Gutenberg-tm eBooks are often created from several printed\u000aeditions, all of which are confirmed as Public Domain in the U.S.\u000aunless a copyright notice is included. Thus, we do not necessarily\u000akeep eBooks in compliance with any particular paper edition.\u000a\u000a\u000aMost people start at our Web site which has the main PG search facility:\u000a\u000a http://www.gutenberg.org\u000a\u000aThis Web site includes information about Project Gutenberg-tm,\u000aincluding how to make donations to the Project Gutenberg Literary\u000aArchive Foundation, how to help produce our new eBooks, and how to\u000asubscribe to our email newsletter to hear about new eBooks.\u000a" }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 0.000000 ] } } +] } +] } +] } diff --git a/tests/longattr/sherlock.json b/tests/longattr/sherlock.json new file mode 100644 index 0000000..2352a79 --- /dev/null +++ b/tests/longattr/sherlock.json @@ -0,0 +1,5 @@ +{ "type": "Feature", "properties": { "sherlock": + +"The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle\n\nThis eBook is for the use of anyone anywhere at no cost and with\nalmost no restrictions whatsoever. You may copy it, give it away or\nre-use it under the terms of the Project Gutenberg License included\nwith this eBook or online at www.gutenberg.org\n\n\nTitle: A Study In Scarlet\n\nAuthor: Arthur Conan Doyle\n\nPosting Date: July 12, 2008 [EBook #244]\nRelease Date: April, 1995\nLast Updated: September 30, 2016\n\nLanguage: English\n\nCharacter set encoding: UTF-8\n\n*** START OF THIS PROJECT GUTENBERG EBOOK A STUDY IN SCARLET ***\n\n\n\n\nProduced by Roger Squires\n\n\n\n\n\nA STUDY IN SCARLET.\n\nBy A. Conan Doyle\n\n[1]\n\n\n\n Original Transcriber’s Note: This etext is prepared directly\n from an 1887 edition, and care has been taken to duplicate the\n original exactly, including typographical and punctuation\n vagaries.\n\n Additions to the text include adding the underscore character to\n indicate italics, and textual end-notes in square braces.\n\n Project Gutenberg Editor’s Note: In reproofing and moving old PG\n files such as this to the present PG directory system it is the\n policy to reformat the text to conform to present PG Standards.\n In this case however, in consideration of the note above of the\n original transcriber describing his care to try to duplicate the\n original 1887 edition as to typography and punctuation vagaries,\n no changes have been made in this ascii text file. However, in\n the Latin-1 file and this html file, present standards are\n followed and the several French and Spanish words have been\n given their proper accents.\n\n\t Part II, The Country of the Saints, deals much with the Mormon Church.\n\n\n\n\nA STUDY IN SCARLET.\n\n\n\n\n\nPART I.\n\n(_Being a reprint from the reminiscences of_ JOHN H. WATSON, M.D., _late\nof the Army Medical Department._) [2]\n\n\n\n\nCHAPTER I. MR. SHERLOCK HOLMES.\n\n\nIN the year 1878 I took my degree of Doctor of Medicine of the\nUniversity of London, and proceeded to Netley to go through the course\nprescribed for surgeons in the army. Having completed my studies there,\nI was duly attached to the Fifth Northumberland Fusiliers as Assistant\nSurgeon. The regiment was stationed in India at the time, and before\nI could join it, the second Afghan war had broken out. On landing at\nBombay, I learned that my corps had advanced through the passes, and\nwas already deep in the enemy’s country. I followed, however, with many\nother officers who were in the same situation as myself, and succeeded\nin reaching Candahar in safety, where I found my regiment, and at once\nentered upon my new duties.\n\nThe campaign brought honours and promotion to many, but for me it had\nnothing but misfortune and disaster. I was removed from my brigade and\nattached to the Berkshires, with whom I served at the fatal battle of\nMaiwand. There I was struck on the shoulder by a Jezail bullet, which\nshattered the bone and grazed the subclavian artery. I should have\nfallen into the hands of the murderous Ghazis had it not been for the\ndevotion and courage shown by Murray, my orderly, who threw me across a\npack-horse, and succeeded in bringing me safely to the British lines.\n\nWorn with pain, and weak from the prolonged hardships which I had\nundergone, I was removed, with a great train of wounded sufferers, to\nthe base hospital at Peshawar. Here I rallied, and had already improved\nso far as to be able to walk about the wards, and even to bask a little\nupon the verandah, when I was struck down by enteric fever, that curse\nof our Indian possessions. For months my life was despaired of, and\nwhen at last I came to myself and became convalescent, I was so weak and\nemaciated that a medical board determined that not a day should be lost\nin sending me back to England. I was dispatched, accordingly, in the\ntroopship “Orontes,” and landed a month later on Portsmouth jetty, with\nmy health irretrievably ruined, but with permission from a paternal\ngovernment to spend the next nine months in attempting to improve it.\n\nI had neither kith nor kin in England, and was therefore as free as\nair--or as free as an income of eleven shillings and sixpence a day will\npermit a man to be. Under such circumstances, I naturally gravitated to\nLondon, that great cesspool into which all the loungers and idlers of\nthe Empire are irresistibly drained. There I stayed for some time at\na private hotel in the Strand, leading a comfortless, meaningless\nexistence, and spending such money as I had, considerably more freely\nthan I ought. So alarming did the state of my finances become, that\nI soon realized that I must either leave the metropolis and rusticate\nsomewhere in the country, or that I must make a complete alteration in\nmy style of living. Choosing the latter alternative, I began by making\nup my mind to leave the hotel, and to take up my quarters in some less\npretentious and less expensive domicile.\n\nOn the very day that I had come to this conclusion, I was standing at\nthe Criterion Bar, when some one tapped me on the shoulder, and turning\nround I recognized young Stamford, who had been a dresser under me at\nBarts. The sight of a friendly face in the great wilderness of London is\na pleasant thing indeed to a lonely man. In old days Stamford had never\nbeen a particular crony of mine, but now I hailed him with enthusiasm,\nand he, in his turn, appeared to be delighted to see me. In the\nexuberance of my joy, I asked him to lunch with me at the Holborn, and\nwe started off together in a hansom.\n\n“Whatever have you been doing with yourself, Watson?” he asked in\nundisguised wonder, as we rattled through the crowded London streets.\n“You are as thin as a lath and as brown as a nut.”\n\nI gave him a short sketch of my adventures, and had hardly concluded it\nby the time that we reached our destination.\n\n“Poor devil!” he said, commiseratingly, after he had listened to my\nmisfortunes. “What are you up to now?”\n\n“Looking for lodgings.” [3] I answered. “Trying to solve the problem\nas to whether it is possible to get comfortable rooms at a reasonable\nprice.”\n\n“That’s a strange thing,” remarked my companion; “you are the second man\nto-day that has used that expression to me.”\n\n“And who was the first?” I asked.\n\n“A fellow who is working at the chemical laboratory up at the hospital.\nHe was bemoaning himself this morning because he could not get someone\nto go halves with him in some nice rooms which he had found, and which\nwere too much for his purse.”\n\n“By Jove!” I cried, “if he really wants someone to share the rooms and\nthe expense, I am the very man for him. I should prefer having a partner\nto being alone.”\n\nYoung Stamford looked rather strangely at me over his wine-glass. “You\ndon’t know Sherlock Holmes yet,” he said; “perhaps you would not care\nfor him as a constant companion.”\n\n“Why, what is there against him?”\n\n“Oh, I didn’t say there was anything against him. He is a little queer\nin his ideas--an enthusiast in some branches of science. As far as I\nknow he is a decent fellow enough.”\n\n“A medical student, I suppose?” said I.\n\n“No--I have no idea what he intends to go in for. I believe he is well\nup in anatomy, and he is a first-class chemist; but, as far as I know,\nhe has never taken out any systematic medical classes. His studies are\nvery desultory and eccentric, but he has amassed a lot of out-of-the way\nknowledge which would astonish his professors.”\n\n“Did you never ask him what he was going in for?” I asked.\n\n“No; he is not a man that it is easy to draw out, though he can be\ncommunicative enough when the fancy seizes him.”\n\n“I should like to meet him,” I said. “If I am to lodge with anyone, I\nshould prefer a man of studious and quiet habits. I am not strong\nenough yet to stand much noise or excitement. I had enough of both in\nAfghanistan to last me for the remainder of my natural existence. How\ncould I meet this friend of yours?”\n\n“He is sure to be at the laboratory,” returned my companion. “He either\navoids the place for weeks, or else he works there from morning to\nnight. If you like, we shall drive round together after luncheon.”\n\n“Certainly,” I answered, and the conversation drifted away into other\nchannels.\n\nAs we made our way to the hospital after leaving the Holborn, Stamford\ngave me a few more particulars about the gentleman whom I proposed to\ntake as a fellow-lodger.\n\n“You mustn’t blame me if you don’t get on with him,” he said; “I know\nnothing more of him than I have learned from meeting him occasionally in\nthe laboratory. You proposed this arrangement, so you must not hold me\nresponsible.”\n\n“If we don’t get on it will be easy to part company,” I answered. “It\nseems to me, Stamford,” I added, looking hard at my companion, “that you\nhave some reason for washing your hands of the matter. Is this fellow’s\ntemper so formidable, or what is it? Don’t be mealy-mouthed about it.”\n\n“It is not easy to express the inexpressible,” he answered with a laugh.\n“Holmes is a little too scientific for my tastes--it approaches to\ncold-bloodedness. I could imagine his giving a friend a little pinch of\nthe latest vegetable alkaloid, not out of malevolence, you understand,\nbut simply out of a spirit of inquiry in order to have an accurate idea\nof the effects. To do him justice, I think that he would take it himself\nwith the same readiness. He appears to have a passion for definite and\nexact knowledge.”\n\n“Very right too.”\n\n“Yes, but it may be pushed to excess. When it comes to beating the\nsubjects in the dissecting-rooms with a stick, it is certainly taking\nrather a bizarre shape.”\n\n“Beating the subjects!”\n\n“Yes, to verify how far bruises may be produced after death. I saw him\nat it with my own eyes.”\n\n“And yet you say he is not a medical student?”\n\n“No. Heaven knows what the objects of his studies are. But here we\nare, and you must form your own impressions about him.” As he spoke, we\nturned down a narrow lane and passed through a small side-door, which\nopened into a wing of the great hospital. It was familiar ground to me,\nand I needed no guiding as we ascended the bleak stone staircase and\nmade our way down the long corridor with its vista of whitewashed\nwall and dun-coloured doors. Near the further end a low arched passage\nbranched away from it and led to the chemical laboratory.\n\nThis was a lofty chamber, lined and littered with countless bottles.\nBroad, low tables were scattered about, which bristled with retorts,\ntest-tubes, and little Bunsen lamps, with their blue flickering flames.\nThere was only one student in the room, who was bending over a distant\ntable absorbed in his work. At the sound of our steps he glanced round\nand sprang to his feet with a cry of pleasure. “I’ve found it! I’ve\nfound it,” he shouted to my companion, running towards us with a\ntest-tube in his hand. “I have found a re-agent which is precipitated\nby hoemoglobin, [4] and by nothing else.” Had he discovered a gold mine,\ngreater delight could not have shone upon his features.\n\n“Dr. Watson, Mr. Sherlock Holmes,” said Stamford, introducing us.\n\n“How are you?” he said cordially, gripping my hand with a strength\nfor which I should hardly have given him credit. “You have been in\nAfghanistan, I perceive.”\n\n“How on earth did you know that?” I asked in astonishment.\n\n“Never mind,” said he, chuckling to himself. “The question now is about\nhoemoglobin. No doubt you see the significance of this discovery of\nmine?”\n\n“It is interesting, chemically, no doubt,” I answered, “but\npractically----”\n\n“Why, man, it is the most practical medico-legal discovery for years.\nDon’t you see that it gives us an infallible test for blood stains. Come\nover here now!” He seized me by the coat-sleeve in his eagerness, and\ndrew me over to the table at which he had been working. “Let us have\nsome fresh blood,” he said, digging a long bodkin into his finger, and\ndrawing off the resulting drop of blood in a chemical pipette. “Now, I\nadd this small quantity of blood to a litre of water. You perceive that\nthe resulting mixture has the appearance of pure water. The proportion\nof blood cannot be more than one in a million. I have no doubt, however,\nthat we shall be able to obtain the characteristic reaction.” As he\nspoke, he threw into the vessel a few white crystals, and then added\nsome drops of a transparent fluid. In an instant the contents assumed a\ndull mahogany colour, and a brownish dust was precipitated to the bottom\nof the glass jar.\n\n“Ha! ha!” he cried, clapping his hands, and looking as delighted as a\nchild with a new toy. “What do you think of that?”\n\n“It seems to be a very delicate test,” I remarked.\n\n“Beautiful! beautiful! The old Guiacum test was very clumsy and\nuncertain. So is the microscopic examination for blood corpuscles. The\nlatter is valueless if the stains are a few hours old. Now, this appears\nto act as well whether the blood is old or new. Had this test been\ninvented, there are hundreds of men now walking the earth who would long\nago have paid the penalty of their crimes.”\n\n“Indeed!” I murmured.\n\n“Criminal cases are continually hinging upon that one point. A man is\nsuspected of a crime months perhaps after it has been committed. His\nlinen or clothes are examined, and brownish stains discovered upon them.\nAre they blood stains, or mud stains, or rust stains, or fruit stains,\nor what are they? That is a question which has puzzled many an expert,\nand why? Because there was no reliable test. Now we have the Sherlock\nHolmes’ test, and there will no longer be any difficulty.”\n\nHis eyes fairly glittered as he spoke, and he put his hand over his\nheart and bowed as if to some applauding crowd conjured up by his\nimagination.\n\n“You are to be congratulated,” I remarked, considerably surprised at his\nenthusiasm.\n\n“There was the case of Von Bischoff at Frankfort last year. He would\ncertainly have been hung had this test been in existence. Then there was\nMason of Bradford, and the notorious Muller, and Lefevre of Montpellier,\nand Samson of New Orleans. I could name a score of cases in which it\nwould have been decisive.”\n\n“You seem to be a walking calendar of crime,” said Stamford with a\nlaugh. “You might start a paper on those lines. Call it the ‘Police News\nof the Past.’”\n\n“Very interesting reading it might be made, too,” remarked Sherlock\nHolmes, sticking a small piece of plaster over the prick on his finger.\n“I have to be careful,” he continued, turning to me with a smile, “for I\ndabble with poisons a good deal.” He held out his hand as he spoke, and\nI noticed that it was all mottled over with similar pieces of plaster,\nand discoloured with strong acids.\n\n“We came here on business,” said Stamford, sitting down on a high\nthree-legged stool, and pushing another one in my direction with\nhis foot. “My friend here wants to take diggings, and as you were\ncomplaining that you could get no one to go halves with you, I thought\nthat I had better bring you together.”\n\nSherlock Holmes seemed delighted at the idea of sharing his rooms with\nme. “I have my eye on a suite in Baker Street,” he said, “which would\nsuit us down to the ground. You don’t mind the smell of strong tobacco,\nI hope?”\n\n“I always smoke ‘ship’s’ myself,” I answered.\n\n“That’s good enough. I generally have chemicals about, and occasionally\ndo experiments. Would that annoy you?”\n\n“By no means.”\n\n“Let me see--what are my other shortcomings. I get in the dumps at\ntimes, and don’t open my mouth for days on end. You must not think I am\nsulky when I do that. Just let me alone, and I’ll soon be right. What\nhave you to confess now? It’s just as well for two fellows to know the\nworst of one another before they begin to live together.”\n\nI laughed at this cross-examination. “I keep a bull pup,” I said, “and\nI object to rows because my nerves are shaken, and I get up at all sorts\nof ungodly hours, and I am extremely lazy. I have another set of vices\nwhen I’m well, but those are the principal ones at present.”\n\n“Do you include violin-playing in your category of rows?” he asked,\nanxiously.\n\n“It depends on the player,” I answered. “A well-played violin is a treat\nfor the gods--a badly-played one----”\n\n“Oh, that’s all right,” he cried, with a merry laugh. “I think we may\nconsider the thing as settled--that is, if the rooms are agreeable to\nyou.”\n\n“When shall we see them?”\n\n“Call for me here at noon to-morrow, and we’ll go together and settle\neverything,” he answered.\n\n“All right--noon exactly,” said I, shaking his hand.\n\nWe left him working among his chemicals, and we walked together towards\nmy hotel.\n\n“By the way,” I asked suddenly, stopping and turning upon Stamford, “how\nthe deuce did he know that I had come from Afghanistan?”\n\nMy companion smiled an enigmatical smile. “That’s just his little\npeculiarity,” he said. “A good many people have wanted to know how he\nfinds things out.”\n\n“Oh! a mystery is it?” I cried, rubbing my hands. “This is very piquant.\nI am much obliged to you for bringing us together. ‘The proper study of\nmankind is man,’ you know.”\n\n“You must study him, then,” Stamford said, as he bade me good-bye.\n“You’ll find him a knotty problem, though. I’ll wager he learns more\nabout you than you about him. Good-bye.”\n\n“Good-bye,” I answered, and strolled on to my hotel, considerably\ninterested in my new acquaintance.\n\n\n\n\nCHAPTER II. THE SCIENCE OF DEDUCTION.\n\n\nWE met next day as he had arranged, and inspected the rooms at No. 221B,\n[5] Baker Street, of which he had spoken at our meeting. They\nconsisted of a couple of comfortable bed-rooms and a single large\nairy sitting-room, cheerfully furnished, and illuminated by two broad\nwindows. So desirable in every way were the apartments, and so moderate\ndid the terms seem when divided between us, that the bargain was\nconcluded upon the spot, and we at once entered into possession.\nThat very evening I moved my things round from the hotel, and on the\nfollowing morning Sherlock Holmes followed me with several boxes and\nportmanteaus. For a day or two we were busily employed in unpacking and\nlaying out our property to the best advantage. That done, we\ngradually began to settle down and to accommodate ourselves to our new\nsurroundings.\n\nHolmes was certainly not a difficult man to live with. He was quiet\nin his ways, and his habits were regular. It was rare for him to be\nup after ten at night, and he had invariably breakfasted and gone out\nbefore I rose in the morning. Sometimes he spent his day at the chemical\nlaboratory, sometimes in the dissecting-rooms, and occasionally in long\nwalks, which appeared to take him into the lowest portions of the City.\nNothing could exceed his energy when the working fit was upon him; but\nnow and again a reaction would seize him, and for days on end he would\nlie upon the sofa in the sitting-room, hardly uttering a word or moving\na muscle from morning to night. On these occasions I have noticed such\na dreamy, vacant expression in his eyes, that I might have suspected him\nof being addicted to the use of some narcotic, had not the temperance\nand cleanliness of his whole life forbidden such a notion.\n\nAs the weeks went by, my interest in him and my curiosity as to his\naims in life, gradually deepened and increased. His very person and\nappearance were such as to strike the attention of the most casual\nobserver. In height he was rather over six feet, and so excessively\nlean that he seemed to be considerably taller. His eyes were sharp and\npiercing, save during those intervals of torpor to which I have alluded;\nand his thin, hawk-like nose gave his whole expression an air of\nalertness and decision. His chin, too, had the prominence and squareness\nwhich mark the man of determination. His hands were invariably\nblotted with ink and stained with chemicals, yet he was possessed of\nextraordinary delicacy of touch, as I frequently had occasion to observe\nwhen I watched him manipulating his fragile philosophical instruments.\n\nThe reader may set me down as a hopeless busybody, when I confess how\nmuch this man stimulated my curiosity, and how often I endeavoured\nto break through the reticence which he showed on all that concerned\nhimself. Before pronouncing judgment, however, be it remembered, how\nobjectless was my life, and how little there was to engage my attention.\nMy health forbade me from venturing out unless the weather was\nexceptionally genial, and I had no friends who would call upon me and\nbreak the monotony of my daily existence. Under these circumstances, I\neagerly hailed the little mystery which hung around my companion, and\nspent much of my time in endeavouring to unravel it.\n\nHe was not studying medicine. He had himself, in reply to a question,\nconfirmed Stamford’s opinion upon that point. Neither did he appear to\nhave pursued any course of reading which might fit him for a degree in\nscience or any other recognized portal which would give him an entrance\ninto the learned world. Yet his zeal for certain studies was remarkable,\nand within eccentric limits his knowledge was so extraordinarily ample\nand minute that his observations have fairly astounded me. Surely no man\nwould work so hard or attain such precise information unless he had some\ndefinite end in view. Desultory readers are seldom remarkable for the\nexactness of their learning. No man burdens his mind with small matters\nunless he has some very good reason for doing so.\n\nHis ignorance was as remarkable as his knowledge. Of contemporary\nliterature, philosophy and politics he appeared to know next to nothing.\nUpon my quoting Thomas Carlyle, he inquired in the naivest way who he\nmight be and what he had done. My surprise reached a climax, however,\nwhen I found incidentally that he was ignorant of the Copernican Theory\nand of the composition of the Solar System. That any civilized human\nbeing in this nineteenth century should not be aware that the earth\ntravelled round the sun appeared to be to me such an extraordinary fact\nthat I could hardly realize it.\n\n“You appear to be astonished,” he said, smiling at my expression of\nsurprise. “Now that I do know it I shall do my best to forget it.”\n\n“To forget it!”\n\n“You see,” he explained, “I consider that a man’s brain originally is\nlike a little empty attic, and you have to stock it with such furniture\nas you choose. A fool takes in all the lumber of every sort that he\ncomes across, so that the knowledge which might be useful to him gets\ncrowded out, or at best is jumbled up with a lot of other things so that\nhe has a difficulty in laying his hands upon it. Now the skilful workman\nis very careful indeed as to what he takes into his brain-attic. He will\nhave nothing but the tools which may help him in doing his work, but of\nthese he has a large assortment, and all in the most perfect order. It\nis a mistake to think that that little room has elastic walls and can\ndistend to any extent. Depend upon it there comes a time when for every\naddition of knowledge you forget something that you knew before. It is\nof the highest importance, therefore, not to have useless facts elbowing\nout the useful ones.”\n\n“But the Solar System!” I protested.\n\n“What the deuce is it to me?” he interrupted impatiently; “you say\nthat we go round the sun. If we went round the moon it would not make a\npennyworth of difference to me or to my work.”\n\nI was on the point of asking him what that work might be, but something\nin his manner showed me that the question would be an unwelcome one. I\npondered over our short conversation, however, and endeavoured to draw\nmy deductions from it. He said that he would acquire no knowledge which\ndid not bear upon his object. Therefore all the knowledge which he\npossessed was such as would be useful to him. I enumerated in my own\nmind all the various points upon which he had shown me that he was\nexceptionally well-informed. I even took a pencil and jotted them down.\nI could not help smiling at the document when I had completed it. It ran\nin this way--\n\n\nSHERLOCK HOLMES--his limits.\n\n 1. Knowledge of Literature.--Nil.\n 2. Philosophy.--Nil.\n 3. Astronomy.--Nil.\n 4. Politics.--Feeble.\n 5. Botany.--Variable. Well up in belladonna,\n opium, and poisons generally.\n Knows nothing of practical gardening.\n 6. Geology.--Practical, but limited.\n Tells at a glance different soils\n from each other. After walks has\n shown me splashes upon his trousers,\n and told me by their colour and\n consistence in what part of London\n he had received them.\n 7. Chemistry.--Profound.\n 8. Anatomy.--Accurate, but unsystematic.\n 9. Sensational Literature.--Immense. He appears\n to know every detail of every horror\n perpetrated in the century.\n 10. Plays the violin well.\n 11. Is an expert singlestick player, boxer, and swordsman.\n 12. Has a good practical knowledge of British law.\n\n\nWhen I had got so far in my list I threw it into the fire in despair.\n“If I can only find what the fellow is driving at by reconciling all\nthese accomplishments, and discovering a calling which needs them all,”\n I said to myself, “I may as well give up the attempt at once.”\n\nI see that I have alluded above to his powers upon the violin. These\nwere very remarkable, but as eccentric as all his other accomplishments.\nThat he could play pieces, and difficult pieces, I knew well, because\nat my request he has played me some of Mendelssohn’s Lieder, and other\nfavourites. When left to himself, however, he would seldom produce any\nmusic or attempt any recognized air. Leaning back in his arm-chair of\nan evening, he would close his eyes and scrape carelessly at the fiddle\nwhich was thrown across his knee. Sometimes the chords were sonorous and\nmelancholy. Occasionally they were fantastic and cheerful. Clearly they\nreflected the thoughts which possessed him, but whether the music aided\nthose thoughts, or whether the playing was simply the result of a whim\nor fancy was more than I could determine. I might have rebelled against\nthese exasperating solos had it not been that he usually terminated them\nby playing in quick succession a whole series of my favourite airs as a\nslight compensation for the trial upon my patience.\n\nDuring the first week or so we had no callers, and I had begun to think\nthat my companion was as friendless a man as I was myself. Presently,\nhowever, I found that he had many acquaintances, and those in the most\ndifferent classes of society. There was one little sallow rat-faced,\ndark-eyed fellow who was introduced to me as Mr. Lestrade, and who came\nthree or four times in a single week. One morning a young girl called,\nfashionably dressed, and stayed for half an hour or more. The same\nafternoon brought a grey-headed, seedy visitor, looking like a Jew\npedlar, who appeared to me to be much excited, and who was closely\nfollowed by a slip-shod elderly woman. On another occasion an old\nwhite-haired gentleman had an interview with my companion; and on\nanother a railway porter in his velveteen uniform. When any of these\nnondescript individuals put in an appearance, Sherlock Holmes used to\nbeg for the use of the sitting-room, and I would retire to my bed-room.\nHe always apologized to me for putting me to this inconvenience. “I have\nto use this room as a place of business,” he said, “and these people\nare my clients.” Again I had an opportunity of asking him a point blank\nquestion, and again my delicacy prevented me from forcing another man to\nconfide in me. I imagined at the time that he had some strong reason for\nnot alluding to it, but he soon dispelled the idea by coming round to\nthe subject of his own accord.\n\nIt was upon the 4th of March, as I have good reason to remember, that I\nrose somewhat earlier than usual, and found that Sherlock Holmes had not\nyet finished his breakfast. The landlady had become so accustomed to my\nlate habits that my place had not been laid nor my coffee prepared. With\nthe unreasonable petulance of mankind I rang the bell and gave a curt\nintimation that I was ready. Then I picked up a magazine from the table\nand attempted to while away the time with it, while my companion munched\nsilently at his toast. One of the articles had a pencil mark at the\nheading, and I naturally began to run my eye through it.\n\nIts somewhat ambitious title was “The Book of Life,” and it attempted to\nshow how much an observant man might learn by an accurate and systematic\nexamination of all that came in his way. It struck me as being a\nremarkable mixture of shrewdness and of absurdity. The reasoning was\nclose and intense, but the deductions appeared to me to be far-fetched\nand exaggerated. The writer claimed by a momentary expression, a twitch\nof a muscle or a glance of an eye, to fathom a man’s inmost thoughts.\nDeceit, according to him, was an impossibility in the case of one\ntrained to observation and analysis. His conclusions were as infallible\nas so many propositions of Euclid. So startling would his results appear\nto the uninitiated that until they learned the processes by which he had\narrived at them they might well consider him as a necromancer.\n\n“From a drop of water,” said the writer, “a logician could infer the\npossibility of an Atlantic or a Niagara without having seen or heard of\none or the other. So all life is a great chain, the nature of which is\nknown whenever we are shown a single link of it. Like all other arts,\nthe Science of Deduction and Analysis is one which can only be acquired\nby long and patient study nor is life long enough to allow any mortal\nto attain the highest possible perfection in it. Before turning to\nthose moral and mental aspects of the matter which present the greatest\ndifficulties, let the enquirer begin by mastering more elementary\nproblems. Let him, on meeting a fellow-mortal, learn at a glance to\ndistinguish the history of the man, and the trade or profession to\nwhich he belongs. Puerile as such an exercise may seem, it sharpens the\nfaculties of observation, and teaches one where to look and what to look\nfor. By a man’s finger nails, by his coat-sleeve, by his boot, by his\ntrouser knees, by the callosities of his forefinger and thumb, by his\nexpression, by his shirt cuffs--by each of these things a man’s calling\nis plainly revealed. That all united should fail to enlighten the\ncompetent enquirer in any case is almost inconceivable.”\n\n“What ineffable twaddle!” I cried, slapping the magazine down on the\ntable, “I never read such rubbish in my life.”\n\n“What is it?” asked Sherlock Holmes.\n\n“Why, this article,” I said, pointing at it with my egg spoon as I sat\ndown to my breakfast. “I see that you have read it since you have marked\nit. I don’t deny that it is smartly written. It irritates me though. It\nis evidently the theory of some arm-chair lounger who evolves all these\nneat little paradoxes in the seclusion of his own study. It is not\npractical. I should like to see him clapped down in a third class\ncarriage on the Underground, and asked to give the trades of all his\nfellow-travellers. I would lay a thousand to one against him.”\n\n“You would lose your money,” Sherlock Holmes remarked calmly. “As for\nthe article I wrote it myself.”\n\n“You!”\n\n“Yes, I have a turn both for observation and for deduction. The\ntheories which I have expressed there, and which appear to you to be so\nchimerical are really extremely practical--so practical that I depend\nupon them for my bread and cheese.”\n\n“And how?” I asked involuntarily.\n\n“Well, I have a trade of my own. I suppose I am the only one in the\nworld. I’m a consulting detective, if you can understand what that is.\nHere in London we have lots of Government detectives and lots of private\nones. When these fellows are at fault they come to me, and I manage to\nput them on the right scent. They lay all the evidence before me, and I\nam generally able, by the help of my knowledge of the history of\ncrime, to set them straight. There is a strong family resemblance about\nmisdeeds, and if you have all the details of a thousand at your finger\nends, it is odd if you can’t unravel the thousand and first. Lestrade\nis a well-known detective. He got himself into a fog recently over a\nforgery case, and that was what brought him here.”\n\n“And these other people?”\n\n“They are mostly sent on by private inquiry agencies. They are\nall people who are in trouble about something, and want a little\nenlightening. I listen to their story, they listen to my comments, and\nthen I pocket my fee.”\n\n“But do you mean to say,” I said, “that without leaving your room you\ncan unravel some knot which other men can make nothing of, although they\nhave seen every detail for themselves?”\n\n“Quite so. I have a kind of intuition that way. Now and again a case\nturns up which is a little more complex. Then I have to bustle about and\nsee things with my own eyes. You see I have a lot of special knowledge\nwhich I apply to the problem, and which facilitates matters wonderfully.\nThose rules of deduction laid down in that article which aroused your\nscorn, are invaluable to me in practical work. Observation with me is\nsecond nature. You appeared to be surprised when I told you, on our\nfirst meeting, that you had come from Afghanistan.”\n\n“You were told, no doubt.”\n\n“Nothing of the sort. I _knew_ you came from Afghanistan. From long\nhabit the train of thoughts ran so swiftly through my mind, that I\narrived at the conclusion without being conscious of intermediate steps.\nThere were such steps, however. The train of reasoning ran, ‘Here is a\ngentleman of a medical type, but with the air of a military man. Clearly\nan army doctor, then. He has just come from the tropics, for his face is\ndark, and that is not the natural tint of his skin, for his wrists are\nfair. He has undergone hardship and sickness, as his haggard face says\nclearly. His left arm has been injured. He holds it in a stiff and\nunnatural manner. Where in the tropics could an English army doctor have\nseen much hardship and got his arm wounded? Clearly in Afghanistan.’ The\nwhole train of thought did not occupy a second. I then remarked that you\ncame from Afghanistan, and you were astonished.”\n\n“It is simple enough as you explain it,” I said, smiling. “You remind\nme of Edgar Allen Poe’s Dupin. I had no idea that such individuals did\nexist outside of stories.”\n\nSherlock Holmes rose and lit his pipe. “No doubt you think that you are\ncomplimenting me in comparing me to Dupin,” he observed. “Now, in my\nopinion, Dupin was a very inferior fellow. That trick of his of breaking\nin on his friends’ thoughts with an apropos remark after a quarter of\nan hour’s silence is really very showy and superficial. He had some\nanalytical genius, no doubt; but he was by no means such a phenomenon as\nPoe appeared to imagine.”\n\n“Have you read Gaboriau’s works?” I asked. “Does Lecoq come up to your\nidea of a detective?”\n\nSherlock Holmes sniffed sardonically. “Lecoq was a miserable bungler,”\n he said, in an angry voice; “he had only one thing to recommend him, and\nthat was his energy. That book made me positively ill. The question was\nhow to identify an unknown prisoner. I could have done it in twenty-four\nhours. Lecoq took six months or so. It might be made a text-book for\ndetectives to teach them what to avoid.”\n\nI felt rather indignant at having two characters whom I had admired\ntreated in this cavalier style. I walked over to the window, and stood\nlooking out into the busy street. “This fellow may be very clever,” I\nsaid to myself, “but he is certainly very conceited.”\n\n“There are no crimes and no criminals in these days,” he said,\nquerulously. “What is the use of having brains in our profession. I know\nwell that I have it in me to make my name famous. No man lives or has\never lived who has brought the same amount of study and of natural\ntalent to the detection of crime which I have done. And what is the\nresult? There is no crime to detect, or, at most, some bungling villainy\nwith a motive so transparent that even a Scotland Yard official can see\nthrough it.”\n\nI was still annoyed at his bumptious style of conversation. I thought it\nbest to change the topic.\n\n“I wonder what that fellow is looking for?” I asked, pointing to a\nstalwart, plainly-dressed individual who was walking slowly down the\nother side of the street, looking anxiously at the numbers. He had\na large blue envelope in his hand, and was evidently the bearer of a\nmessage.\n\n“You mean the retired sergeant of Marines,” said Sherlock Holmes.\n\n“Brag and bounce!” thought I to myself. “He knows that I cannot verify\nhis guess.”\n\nThe thought had hardly passed through my mind when the man whom we were\nwatching caught sight of the number on our door, and ran rapidly across\nthe roadway. We heard a loud knock, a deep voice below, and heavy steps\nascending the stair.\n\n“For Mr. Sherlock Holmes,” he said, stepping into the room and handing\nmy friend the letter.\n\nHere was an opportunity of taking the conceit out of him. He little\nthought of this when he made that random shot. “May I ask, my lad,” I\nsaid, in the blandest voice, “what your trade may be?”\n\n“Commissionaire, sir,” he said, gruffly. “Uniform away for repairs.”\n\n“And you were?” I asked, with a slightly malicious glance at my\ncompanion.\n\n“A sergeant, sir, Royal Marine Light Infantry, sir. No answer? Right,\nsir.”\n\nHe clicked his heels together, raised his hand in a salute, and was\ngone.\n\n\n\n\nCHAPTER III. THE LAURISTON GARDEN MYSTERY [6]\n\n\nI CONFESS that I was considerably startled by this fresh proof of the\npractical nature of my companion’s theories. My respect for his powers\nof analysis increased wondrously. There still remained some lurking\nsuspicion in my mind, however, that the whole thing was a pre-arranged\nepisode, intended to dazzle me, though what earthly object he could have\nin taking me in was past my comprehension. When I looked at him he\nhad finished reading the note, and his eyes had assumed the vacant,\nlack-lustre expression which showed mental abstraction.\n\n“How in the world did you deduce that?” I asked.\n\n“Deduce what?” said he, petulantly.\n\n“Why, that he was a retired sergeant of Marines.”\n\n“I have no time for trifles,” he answered, brusquely; then with a smile,\n“Excuse my rudeness. You broke the thread of my thoughts; but perhaps\nit is as well. So you actually were not able to see that that man was a\nsergeant of Marines?”\n\n“No, indeed.”\n\n“It was easier to know it than to explain why I knew it. If you\nwere asked to prove that two and two made four, you might find some\ndifficulty, and yet you are quite sure of the fact. Even across the\nstreet I could see a great blue anchor tattooed on the back of the\nfellow’s hand. That smacked of the sea. He had a military carriage,\nhowever, and regulation side whiskers. There we have the marine. He was\na man with some amount of self-importance and a certain air of command.\nYou must have observed the way in which he held his head and swung\nhis cane. A steady, respectable, middle-aged man, too, on the face of\nhim--all facts which led me to believe that he had been a sergeant.”\n\n“Wonderful!” I ejaculated.\n\n“Commonplace,” said Holmes, though I thought from his expression that he\nwas pleased at my evident surprise and admiration. “I said just now that\nthere were no criminals. It appears that I am wrong--look at this!” He\nthrew me over the note which the commissionaire had brought. [7]\n\n“Why,” I cried, as I cast my eye over it, “this is terrible!”\n\n“It does seem to be a little out of the common,” he remarked, calmly.\n“Would you mind reading it to me aloud?”\n\nThis is the letter which I read to him----\n\n\n“MY DEAR MR. SHERLOCK HOLMES,--\n\n“There has been a bad business during the night at 3, Lauriston Gardens,\noff the Brixton Road. Our man on the beat saw a light there about two in\nthe morning, and as the house was an empty one, suspected that something\nwas amiss. He found the door open, and in the front room, which is bare\nof furniture, discovered the body of a gentleman, well dressed, and\nhaving cards in his pocket bearing the name of ‘Enoch J. Drebber,\nCleveland, Ohio, U.S.A.’ There had been no robbery, nor is there any\nevidence as to how the man met his death. There are marks of blood in\nthe room, but there is no wound upon his person. We are at a loss as to\nhow he came into the empty house; indeed, the whole affair is a puzzler.\nIf you can come round to the house any time before twelve, you will find\nme there. I have left everything _in statu quo_ until I hear from you.\nIf you are unable to come I shall give you fuller details, and would\nesteem it a great kindness if you would favour me with your opinion.\nYours faithfully,\n\n“TOBIAS GREGSON.”\n\n\n“Gregson is the smartest of the Scotland Yarders,” my friend remarked;\n“he and Lestrade are the pick of a bad lot. They are both quick and\nenergetic, but conventional--shockingly so. They have their knives\ninto one another, too. They are as jealous as a pair of professional\nbeauties. There will be some fun over this case if they are both put\nupon the scent.”\n\nI was amazed at the calm way in which he rippled on. “Surely there is\nnot a moment to be lost,” I cried, “shall I go and order you a cab?”\n\n“I’m not sure about whether I shall go. I am the most incurably lazy\ndevil that ever stood in shoe leather--that is, when the fit is on me,\nfor I can be spry enough at times.”\n\n“Why, it is just such a chance as you have been longing for.”\n\n“My dear fellow, what does it matter to me. Supposing I unravel the\nwhole matter, you may be sure that Gregson, Lestrade, and Co. will\npocket all the credit. That comes of being an unofficial personage.”\n\n“But he begs you to help him.”\n\n“Yes. He knows that I am his superior, and acknowledges it to me; but\nhe would cut his tongue out before he would own it to any third person.\nHowever, we may as well go and have a look. I shall work it out on my\nown hook. I may have a laugh at them if I have nothing else. Come on!”\n\nHe hustled on his overcoat, and bustled about in a way that showed that\nan energetic fit had superseded the apathetic one.\n\n“Get your hat,” he said.\n\n“You wish me to come?”\n\n“Yes, if you have nothing better to do.” A minute later we were both in\na hansom, driving furiously for the Brixton Road.\n\nIt was a foggy, cloudy morning, and a dun-coloured veil hung over the\nhouse-tops, looking like the reflection of the mud-coloured streets\nbeneath. My companion was in the best of spirits, and prattled away\nabout Cremona fiddles, and the difference between a Stradivarius and\nan Amati. As for myself, I was silent, for the dull weather and the\nmelancholy business upon which we were engaged, depressed my spirits.\n\n“You don’t seem to give much thought to the matter in hand,” I said at\nlast, interrupting Holmes’ musical disquisition.\n\n“No data yet,” he answered. “It is a capital mistake to theorize before\nyou have all the evidence. It biases the judgment.”\n\n“You will have your data soon,” I remarked, pointing with my finger;\n“this is the Brixton Road, and that is the house, if I am not very much\nmistaken.”\n\n“So it is. Stop, driver, stop!” We were still a hundred yards or so from\nit, but he insisted upon our alighting, and we finished our journey upon\nfoot.\n\nNumber 3, Lauriston Gardens wore an ill-omened and minatory look. It was\none of four which stood back some little way from the street, two being\noccupied and two empty. The latter looked out with three tiers of vacant\nmelancholy windows, which were blank and dreary, save that here and\nthere a “To Let” card had developed like a cataract upon the bleared\npanes. A small garden sprinkled over with a scattered eruption of sickly\nplants separated each of these houses from the street, and was traversed\nby a narrow pathway, yellowish in colour, and consisting apparently of a\nmixture of clay and of gravel. The whole place was very sloppy from the\nrain which had fallen through the night. The garden was bounded by a\nthree-foot brick wall with a fringe of wood rails upon the top, and\nagainst this wall was leaning a stalwart police constable, surrounded by\na small knot of loafers, who craned their necks and strained their eyes\nin the vain hope of catching some glimpse of the proceedings within.\n\nI had imagined that Sherlock Holmes would at once have hurried into the\nhouse and plunged into a study of the mystery. Nothing appeared to be\nfurther from his intention. With an air of nonchalance which, under the\ncircumstances, seemed to me to border upon affectation, he lounged up\nand down the pavement, and gazed vacantly at the ground, the sky, the\nopposite houses and the line of railings. Having finished his scrutiny,\nhe proceeded slowly down the path, or rather down the fringe of grass\nwhich flanked the path, keeping his eyes riveted upon the ground. Twice\nhe stopped, and once I saw him smile, and heard him utter an exclamation\nof satisfaction. There were many marks of footsteps upon the wet clayey\nsoil, but since the police had been coming and going over it, I was\nunable to see how my companion could hope to learn anything from it.\nStill I had had such extraordinary evidence of the quickness of his\nperceptive faculties, that I had no doubt that he could see a great deal\nwhich was hidden from me.\n\nAt the door of the house we were met by a tall, white-faced,\nflaxen-haired man, with a notebook in his hand, who rushed forward and\nwrung my companion’s hand with effusion. “It is indeed kind of you to\ncome,” he said, “I have had everything left untouched.”\n\n“Except that!” my friend answered, pointing at the pathway. “If a herd\nof buffaloes had passed along there could not be a greater mess. No\ndoubt, however, you had drawn your own conclusions, Gregson, before you\npermitted this.”\n\n“I have had so much to do inside the house,” the detective said\nevasively. “My colleague, Mr. Lestrade, is here. I had relied upon him\nto look after this.”\n\nHolmes glanced at me and raised his eyebrows sardonically. “With two\nsuch men as yourself and Lestrade upon the ground, there will not be\nmuch for a third party to find out,” he said.\n\nGregson rubbed his hands in a self-satisfied way. “I think we have done\nall that can be done,” he answered; “it’s a queer case though, and I\nknew your taste for such things.”\n\n“You did not come here in a cab?” asked Sherlock Holmes.\n\n“No, sir.”\n\n“Nor Lestrade?”\n\n“No, sir.”\n\n“Then let us go and look at the room.” With which inconsequent remark he\nstrode on into the house, followed by Gregson, whose features expressed\nhis astonishment.\n\nA short passage, bare planked and dusty, led to the kitchen and offices.\nTwo doors opened out of it to the left and to the right. One of these\nhad obviously been closed for many weeks. The other belonged to the\ndining-room, which was the apartment in which the mysterious affair had\noccurred. Holmes walked in, and I followed him with that subdued feeling\nat my heart which the presence of death inspires.\n\nIt was a large square room, looking all the larger from the absence\nof all furniture. A vulgar flaring paper adorned the walls, but it was\nblotched in places with mildew, and here and there great strips had\nbecome detached and hung down, exposing the yellow plaster beneath.\nOpposite the door was a showy fireplace, surmounted by a mantelpiece of\nimitation white marble. On one corner of this was stuck the stump of a\nred wax candle. The solitary window was so dirty that the light was\nhazy and uncertain, giving a dull grey tinge to everything, which was\nintensified by the thick layer of dust which coated the whole apartment.\n\nAll these details I observed afterwards. At present my attention was\ncentred upon the single grim motionless figure which lay stretched upon\nthe boards, with vacant sightless eyes staring up at the discoloured\nceiling. It was that of a man about forty-three or forty-four years of\nage, middle-sized, broad shouldered, with crisp curling black hair, and\na short stubbly beard. He was dressed in a heavy broadcloth frock coat\nand waistcoat, with light-coloured trousers, and immaculate collar\nand cuffs. A top hat, well brushed and trim, was placed upon the floor\nbeside him. His hands were clenched and his arms thrown abroad, while\nhis lower limbs were interlocked as though his death struggle had been a\ngrievous one. On his rigid face there stood an expression of horror,\nand as it seemed to me, of hatred, such as I have never seen upon human\nfeatures. This malignant and terrible contortion, combined with the low\nforehead, blunt nose, and prognathous jaw gave the dead man a singularly\nsimious and ape-like appearance, which was increased by his writhing,\nunnatural posture. I have seen death in many forms, but never has\nit appeared to me in a more fearsome aspect than in that dark grimy\napartment, which looked out upon one of the main arteries of suburban\nLondon.\n\nLestrade, lean and ferret-like as ever, was standing by the doorway, and\ngreeted my companion and myself.\n\n“This case will make a stir, sir,” he remarked. “It beats anything I\nhave seen, and I am no chicken.”\n\n“There is no clue?” said Gregson.\n\n“None at all,” chimed in Lestrade.\n\nSherlock Holmes approached the body, and, kneeling down, examined it\nintently. “You are sure that there is no wound?” he asked, pointing to\nnumerous gouts and splashes of blood which lay all round.\n\n“Positive!” cried both detectives.\n\n“Then, of course, this blood belongs to a second individual--[8]\npresumably the murderer, if murder has been committed. It reminds me of\nthe circumstances attendant on the death of Van Jansen, in Utrecht, in\nthe year ‘34. Do you remember the case, Gregson?”\n\n“No, sir.”\n\n“Read it up--you really should. There is nothing new under the sun. It\nhas all been done before.”\n\nAs he spoke, his nimble fingers were flying here, there, and everywhere,\nfeeling, pressing, unbuttoning, examining, while his eyes wore the same\nfar-away expression which I have already remarked upon. So swiftly was\nthe examination made, that one would hardly have guessed the minuteness\nwith which it was conducted. Finally, he sniffed the dead man’s lips,\nand then glanced at the soles of his patent leather boots.\n\n“He has not been moved at all?” he asked.\n\n“No more than was necessary for the purposes of our examination.”\n\n“You can take him to the mortuary now,” he said. “There is nothing more\nto be learned.”\n\nGregson had a stretcher and four men at hand. At his call they entered\nthe room, and the stranger was lifted and carried out. As they raised\nhim, a ring tinkled down and rolled across the floor. Lestrade grabbed\nit up and stared at it with mystified eyes.\n\n“There’s been a woman here,” he cried. “It’s a woman’s wedding-ring.”\n\nHe held it out, as he spoke, upon the palm of his hand. We all gathered\nround him and gazed at it. There could be no doubt that that circlet of\nplain gold had once adorned the finger of a bride.\n\n“This complicates matters,” said Gregson. “Heaven knows, they were\ncomplicated enough before.”\n\n“You’re sure it doesn’t simplify them?” observed Holmes. “There’s\nnothing to be learned by staring at it. What did you find in his\npockets?”\n\n“We have it all here,” said Gregson, pointing to a litter of objects\nupon one of the bottom steps of the stairs. “A gold watch, No. 97163, by\nBarraud, of London. Gold Albert chain, very heavy and solid. Gold ring,\nwith masonic device. Gold pin--bull-dog’s head, with rubies as eyes.\nRussian leather card-case, with cards of Enoch J. Drebber of Cleveland,\ncorresponding with the E. J. D. upon the linen. No purse, but loose\nmoney to the extent of seven pounds thirteen. Pocket edition of\nBoccaccio’s ‘Decameron,’ with name of Joseph Stangerson upon the\nfly-leaf. Two letters--one addressed to E. J. Drebber and one to Joseph\nStangerson.”\n\n“At what address?”\n\n“American Exchange, Strand--to be left till called for. They are both\nfrom the Guion Steamship Company, and refer to the sailing of their\nboats from Liverpool. It is clear that this unfortunate man was about to\nreturn to New York.”\n\n“Have you made any inquiries as to this man, Stangerson?”\n\n“I did it at once, sir,” said Gregson. “I have had advertisements\nsent to all the newspapers, and one of my men has gone to the American\nExchange, but he has not returned yet.”\n\n“Have you sent to Cleveland?”\n\n“We telegraphed this morning.”\n\n“How did you word your inquiries?”\n\n“We simply detailed the circumstances, and said that we should be glad\nof any information which could help us.”\n\n“You did not ask for particulars on any point which appeared to you to\nbe crucial?”\n\n“I asked about Stangerson.”\n\n“Nothing else? Is there no circumstance on which this whole case appears\nto hinge? Will you not telegraph again?”\n\n“I have said all I have to say,” said Gregson, in an offended voice.\n\nSherlock Holmes chuckled to himself, and appeared to be about to make\nsome remark, when Lestrade, who had been in the front room while we\nwere holding this conversation in the hall, reappeared upon the scene,\nrubbing his hands in a pompous and self-satisfied manner.\n\n“Mr. Gregson,” he said, “I have just made a discovery of the highest\nimportance, and one which would have been overlooked had I not made a\ncareful examination of the walls.”\n\nThe little man’s eyes sparkled as he spoke, and he was evidently in\na state of suppressed exultation at having scored a point against his\ncolleague.\n\n“Come here,” he said, bustling back into the room, the atmosphere of\nwhich felt clearer since the removal of its ghastly inmate. “Now, stand\nthere!”\n\nHe struck a match on his boot and held it up against the wall.\n\n“Look at that!” he said, triumphantly.\n\nI have remarked that the paper had fallen away in parts. In this\nparticular corner of the room a large piece had peeled off, leaving a\nyellow square of coarse plastering. Across this bare space there was\nscrawled in blood-red letters a single word--\n\n RACHE.\n\n\n“What do you think of that?” cried the detective, with the air of a\nshowman exhibiting his show. “This was overlooked because it was in the\ndarkest corner of the room, and no one thought of looking there. The\nmurderer has written it with his or her own blood. See this smear where\nit has trickled down the wall! That disposes of the idea of suicide\nanyhow. Why was that corner chosen to write it on? I will tell you. See\nthat candle on the mantelpiece. It was lit at the time, and if it was\nlit this corner would be the brightest instead of the darkest portion of\nthe wall.”\n\n“And what does it mean now that you _have_ found it?” asked Gregson in a\ndepreciatory voice.\n\n“Mean? Why, it means that the writer was going to put the female name\nRachel, but was disturbed before he or she had time to finish. You mark\nmy words, when this case comes to be cleared up you will find that a\nwoman named Rachel has something to do with it. It’s all very well for\nyou to laugh, Mr. Sherlock Holmes. You may be very smart and clever, but\nthe old hound is the best, when all is said and done.”\n\n“I really beg your pardon!” said my companion, who had ruffled the\nlittle man’s temper by bursting into an explosion of laughter. “You\ncertainly have the credit of being the first of us to find this out,\nand, as you say, it bears every mark of having been written by the other\nparticipant in last night’s mystery. I have not had time to examine this\nroom yet, but with your permission I shall do so now.”\n\nAs he spoke, he whipped a tape measure and a large round magnifying\nglass from his pocket. With these two implements he trotted noiselessly\nabout the room, sometimes stopping, occasionally kneeling, and once\nlying flat upon his face. So engrossed was he with his occupation that\nhe appeared to have forgotten our presence, for he chattered away to\nhimself under his breath the whole time, keeping up a running fire\nof exclamations, groans, whistles, and little cries suggestive of\nencouragement and of hope. As I watched him I was irresistibly reminded\nof a pure-blooded well-trained foxhound as it dashes backwards and\nforwards through the covert, whining in its eagerness, until it comes\nacross the lost scent. For twenty minutes or more he continued his\nresearches, measuring with the most exact care the distance between\nmarks which were entirely invisible to me, and occasionally applying his\ntape to the walls in an equally incomprehensible manner. In one place\nhe gathered up very carefully a little pile of grey dust from the floor,\nand packed it away in an envelope. Finally, he examined with his glass\nthe word upon the wall, going over every letter of it with the most\nminute exactness. This done, he appeared to be satisfied, for he\nreplaced his tape and his glass in his pocket.\n\n“They say that genius is an infinite capacity for taking pains,” he\nremarked with a smile. “It’s a very bad definition, but it does apply to\ndetective work.”\n\nGregson and Lestrade had watched the manoeuvres [9] of their amateur\ncompanion with considerable curiosity and some contempt. They evidently\nfailed to appreciate the fact, which I had begun to realize, that\nSherlock Holmes’ smallest actions were all directed towards some\ndefinite and practical end.\n\n“What do you think of it, sir?” they both asked.\n\n“It would be robbing you of the credit of the case if I was to presume\nto help you,” remarked my friend. “You are doing so well now that it\nwould be a pity for anyone to interfere.” There was a world of\nsarcasm in his voice as he spoke. “If you will let me know how your\ninvestigations go,” he continued, “I shall be happy to give you any help\nI can. In the meantime I should like to speak to the constable who found\nthe body. Can you give me his name and address?”\n\nLestrade glanced at his note-book. “John Rance,” he said. “He is off\nduty now. You will find him at 46, Audley Court, Kennington Park Gate.”\n\nHolmes took a note of the address.\n\n“Come along, Doctor,” he said; “we shall go and look him up. I’ll tell\nyou one thing which may help you in the case,” he continued, turning to\nthe two detectives. “There has been murder done, and the murderer was a\nman. He was more than six feet high, was in the prime of life, had\nsmall feet for his height, wore coarse, square-toed boots and smoked a\nTrichinopoly cigar. He came here with his victim in a four-wheeled cab,\nwhich was drawn by a horse with three old shoes and one new one on his\noff fore leg. In all probability the murderer had a florid face, and the\nfinger-nails of his right hand were remarkably long. These are only a\nfew indications, but they may assist you.”\n\nLestrade and Gregson glanced at each other with an incredulous smile.\n\n“If this man was murdered, how was it done?” asked the former.\n\n“Poison,” said Sherlock Holmes curtly, and strode off. “One other thing,\nLestrade,” he added, turning round at the door: “‘Rache,’ is the German\nfor ‘revenge;’ so don’t lose your time looking for Miss Rachel.”\n\nWith which Parthian shot he walked away, leaving the two rivals\nopen-mouthed behind him.\n\n\n\n\nCHAPTER IV. WHAT JOHN RANCE HAD TO TELL.\n\n\nIT was one o’clock when we left No. 3, Lauriston Gardens. Sherlock\nHolmes led me to the nearest telegraph office, whence he dispatched a\nlong telegram. He then hailed a cab, and ordered the driver to take us\nto the address given us by Lestrade.\n\n“There is nothing like first hand evidence,” he remarked; “as a matter\nof fact, my mind is entirely made up upon the case, but still we may as\nwell learn all that is to be learned.”\n\n“You amaze me, Holmes,” said I. “Surely you are not as sure as you\npretend to be of all those particulars which you gave.”\n\n“There’s no room for a mistake,” he answered. “The very first thing\nwhich I observed on arriving there was that a cab had made two ruts with\nits wheels close to the curb. Now, up to last night, we have had no rain\nfor a week, so that those wheels which left such a deep impression must\nhave been there during the night. There were the marks of the horse’s\nhoofs, too, the outline of one of which was far more clearly cut than\nthat of the other three, showing that that was a new shoe. Since the cab\nwas there after the rain began, and was not there at any time during the\nmorning--I have Gregson’s word for that--it follows that it must have\nbeen there during the night, and, therefore, that it brought those two\nindividuals to the house.”\n\n“That seems simple enough,” said I; “but how about the other man’s\nheight?”\n\n“Why, the height of a man, in nine cases out of ten, can be told from\nthe length of his stride. It is a simple calculation enough, though\nthere is no use my boring you with figures. I had this fellow’s stride\nboth on the clay outside and on the dust within. Then I had a way of\nchecking my calculation. When a man writes on a wall, his instinct leads\nhim to write about the level of his own eyes. Now that writing was just\nover six feet from the ground. It was child’s play.”\n\n“And his age?” I asked.\n\n“Well, if a man can stride four and a-half feet without the smallest\neffort, he can’t be quite in the sere and yellow. That was the breadth\nof a puddle on the garden walk which he had evidently walked across.\nPatent-leather boots had gone round, and Square-toes had hopped over.\nThere is no mystery about it at all. I am simply applying to ordinary\nlife a few of those precepts of observation and deduction which I\nadvocated in that article. Is there anything else that puzzles you?”\n\n“The finger nails and the Trichinopoly,” I suggested.\n\n“The writing on the wall was done with a man’s forefinger dipped in\nblood. My glass allowed me to observe that the plaster was slightly\nscratched in doing it, which would not have been the case if the man’s\nnail had been trimmed. I gathered up some scattered ash from the floor.\nIt was dark in colour and flakey--such an ash as is only made by a\nTrichinopoly. I have made a special study of cigar ashes--in fact, I\nhave written a monograph upon the subject. I flatter myself that I can\ndistinguish at a glance the ash of any known brand, either of cigar\nor of tobacco. It is just in such details that the skilled detective\ndiffers from the Gregson and Lestrade type.”\n\n“And the florid face?” I asked.\n\n“Ah, that was a more daring shot, though I have no doubt that I was\nright. You must not ask me that at the present state of the affair.”\n\nI passed my hand over my brow. “My head is in a whirl,” I remarked; “the\nmore one thinks of it the more mysterious it grows. How came these two\nmen--if there were two men--into an empty house? What has become of the\ncabman who drove them? How could one man compel another to take poison?\nWhere did the blood come from? What was the object of the murderer,\nsince robbery had no part in it? How came the woman’s ring there? Above\nall, why should the second man write up the German word RACHE before\ndecamping? I confess that I cannot see any possible way of reconciling\nall these facts.”\n\nMy companion smiled approvingly.\n\n“You sum up the difficulties of the situation succinctly and well,” he\nsaid. “There is much that is still obscure, though I have quite made up\nmy mind on the main facts. As to poor Lestrade’s discovery it was simply\na blind intended to put the police upon a wrong track, by suggesting\nSocialism and secret societies. It was not done by a German. The A, if\nyou noticed, was printed somewhat after the German fashion. Now, a real\nGerman invariably prints in the Latin character, so that we may safely\nsay that this was not written by one, but by a clumsy imitator who\noverdid his part. It was simply a ruse to divert inquiry into a wrong\nchannel. I’m not going to tell you much more of the case, Doctor. You\nknow a conjuror gets no credit when once he has explained his trick,\nand if I show you too much of my method of working, you will come to the\nconclusion that I am a very ordinary individual after all.”\n\n“I shall never do that,” I answered; “you have brought detection as near\nan exact science as it ever will be brought in this world.”\n\nMy companion flushed up with pleasure at my words, and the earnest way\nin which I uttered them. I had already observed that he was as sensitive\nto flattery on the score of his art as any girl could be of her beauty.\n\n“I’ll tell you one other thing,” he said. “Patent leathers [10] and\nSquare-toes came in the same cab, and they walked down the pathway\ntogether as friendly as possible--arm-in-arm, in all probability.\nWhen they got inside they walked up and down the room--or rather,\nPatent-leathers stood still while Square-toes walked up and down. I\ncould read all that in the dust; and I could read that as he walked he\ngrew more and more excited. That is shown by the increased length of his\nstrides. He was talking all the while, and working himself up, no doubt,\ninto a fury. Then the tragedy occurred. I’ve told you all I know myself\nnow, for the rest is mere surmise and conjecture. We have a good working\nbasis, however, on which to start. We must hurry up, for I want to go to\nHalle’s concert to hear Norman Neruda this afternoon.”\n\nThis conversation had occurred while our cab had been threading its way\nthrough a long succession of dingy streets and dreary by-ways. In the\ndingiest and dreariest of them our driver suddenly came to a stand.\n“That’s Audley Court in there,” he said, pointing to a narrow slit in\nthe line of dead-coloured brick. “You’ll find me here when you come\nback.”\n\nAudley Court was not an attractive locality. The narrow passage led us\ninto a quadrangle paved with flags and lined by sordid dwellings. We\npicked our way among groups of dirty children, and through lines of\ndiscoloured linen, until we came to Number 46, the door of which\nwas decorated with a small slip of brass on which the name Rance was\nengraved. On enquiry we found that the constable was in bed, and we were\nshown into a little front parlour to await his coming.\n\nHe appeared presently, looking a little irritable at being disturbed in\nhis slumbers. “I made my report at the office,” he said.\n\nHolmes took a half-sovereign from his pocket and played with it\npensively. “We thought that we should like to hear it all from your own\nlips,” he said.\n\n“I shall be most happy to tell you anything I can,” the constable\nanswered with his eyes upon the little golden disk.\n\n“Just let us hear it all in your own way as it occurred.”\n\nRance sat down on the horsehair sofa, and knitted his brows as though\ndetermined not to omit anything in his narrative.\n\n“I’ll tell it ye from the beginning,” he said. “My time is from ten at\nnight to six in the morning. At eleven there was a fight at the ‘White\nHart’; but bar that all was quiet enough on the beat. At one o’clock it\nbegan to rain, and I met Harry Murcher--him who has the Holland Grove\nbeat--and we stood together at the corner of Henrietta Street a-talkin’.\nPresently--maybe about two or a little after--I thought I would take\na look round and see that all was right down the Brixton Road. It was\nprecious dirty and lonely. Not a soul did I meet all the way down,\nthough a cab or two went past me. I was a strollin’ down, thinkin’\nbetween ourselves how uncommon handy a four of gin hot would be, when\nsuddenly the glint of a light caught my eye in the window of that same\nhouse. Now, I knew that them two houses in Lauriston Gardens was empty\non account of him that owns them who won’t have the drains seen to,\nthough the very last tenant what lived in one of them died o’ typhoid\nfever. I was knocked all in a heap therefore at seeing a light in\nthe window, and I suspected as something was wrong. When I got to the\ndoor----”\n\n“You stopped, and then walked back to the garden gate,” my companion\ninterrupted. “What did you do that for?”\n\nRance gave a violent jump, and stared at Sherlock Holmes with the utmost\namazement upon his features.\n\n“Why, that’s true, sir,” he said; “though how you come to know it,\nHeaven only knows. Ye see, when I got up to the door it was so still and\nso lonesome, that I thought I’d be none the worse for some one with me.\nI ain’t afeared of anything on this side o’ the grave; but I thought\nthat maybe it was him that died o’ the typhoid inspecting the drains\nwhat killed him. The thought gave me a kind o’ turn, and I walked back\nto the gate to see if I could see Murcher’s lantern, but there wasn’t no\nsign of him nor of anyone else.”\n\n“There was no one in the street?”\n\n“Not a livin’ soul, sir, nor as much as a dog. Then I pulled myself\ntogether and went back and pushed the door open. All was quiet inside,\nso I went into the room where the light was a-burnin’. There was a\ncandle flickerin’ on the mantelpiece--a red wax one--and by its light I\nsaw----”\n\n“Yes, I know all that you saw. You walked round the room several times,\nand you knelt down by the body, and then you walked through and tried\nthe kitchen door, and then----”\n\nJohn Rance sprang to his feet with a frightened face and suspicion in\nhis eyes. “Where was you hid to see all that?” he cried. “It seems to me\nthat you knows a deal more than you should.”\n\nHolmes laughed and threw his card across the table to the constable.\n“Don’t get arresting me for the murder,” he said. “I am one of the\nhounds and not the wolf; Mr. Gregson or Mr. Lestrade will answer for\nthat. Go on, though. What did you do next?”\n\nRance resumed his seat, without however losing his mystified expression.\n“I went back to the gate and sounded my whistle. That brought Murcher\nand two more to the spot.”\n\n“Was the street empty then?”\n\n“Well, it was, as far as anybody that could be of any good goes.”\n\n“What do you mean?”\n\nThe constable’s features broadened into a grin. “I’ve seen many a drunk\nchap in my time,” he said, “but never anyone so cryin’ drunk as\nthat cove. He was at the gate when I came out, a-leanin’ up agin the\nrailings, and a-singin’ at the pitch o’ his lungs about Columbine’s\nNew-fangled Banner, or some such stuff. He couldn’t stand, far less\nhelp.”\n\n“What sort of a man was he?” asked Sherlock Holmes.\n\nJohn Rance appeared to be somewhat irritated at this digression. “He was\nan uncommon drunk sort o’ man,” he said. “He’d ha’ found hisself in the\nstation if we hadn’t been so took up.”\n\n“His face--his dress--didn’t you notice them?” Holmes broke in\nimpatiently.\n\n“I should think I did notice them, seeing that I had to prop him up--me\nand Murcher between us. He was a long chap, with a red face, the lower\npart muffled round----”\n\n“That will do,” cried Holmes. “What became of him?”\n\n“We’d enough to do without lookin’ after him,” the policeman said, in an\naggrieved voice. “I’ll wager he found his way home all right.”\n\n“How was he dressed?”\n\n“A brown overcoat.”\n\n“Had he a whip in his hand?”\n\n“A whip--no.”\n\n“He must have left it behind,” muttered my companion. “You didn’t happen\nto see or hear a cab after that?”\n\n“No.”\n\n“There’s a half-sovereign for you,” my companion said, standing up and\ntaking his hat. “I am afraid, Rance, that you will never rise in the\nforce. That head of yours should be for use as well as ornament. You\nmight have gained your sergeant’s stripes last night. The man whom you\nheld in your hands is the man who holds the clue of this mystery, and\nwhom we are seeking. There is no use of arguing about it now; I tell you\nthat it is so. Come along, Doctor.”\n\nWe started off for the cab together, leaving our informant incredulous,\nbut obviously uncomfortable.\n\n“The blundering fool,” Holmes said, bitterly, as we drove back to our\nlodgings. “Just to think of his having such an incomparable bit of good\nluck, and not taking advantage of it.”\n\n“I am rather in the dark still. It is true that the description of this\nman tallies with your idea of the second party in this mystery. But why\nshould he come back to the house after leaving it? That is not the way\nof criminals.”\n\n“The ring, man, the ring: that was what he came back for. If we have no\nother way of catching him, we can always bait our line with the ring. I\nshall have him, Doctor--I’ll lay you two to one that I have him. I must\nthank you for it all. I might not have gone but for you, and so have\nmissed the finest study I ever came across: a study in scarlet, eh?\nWhy shouldn’t we use a little art jargon. There’s the scarlet thread of\nmurder running through the colourless skein of life, and our duty is\nto unravel it, and isolate it, and expose every inch of it. And now\nfor lunch, and then for Norman Neruda. Her attack and her bowing\nare splendid. What’s that little thing of Chopin’s she plays so\nmagnificently: Tra-la-la-lira-lira-lay.”\n\nLeaning back in the cab, this amateur bloodhound carolled away like a\nlark while I meditated upon the many-sidedness of the human mind.\n\n\n\n\nCHAPTER V. OUR ADVERTISEMENT BRINGS A VISITOR.\n\n\nOUR morning’s exertions had been too much for my weak health, and I was\ntired out in the afternoon. After Holmes’ departure for the concert, I\nlay down upon the sofa and endeavoured to get a couple of hours’ sleep.\nIt was a useless attempt. My mind had been too much excited by all that\nhad occurred, and the strangest fancies and surmises crowded into\nit. Every time that I closed my eyes I saw before me the distorted\nbaboon-like countenance of the murdered man. So sinister was the\nimpression which that face had produced upon me that I found it\ndifficult to feel anything but gratitude for him who had removed its\nowner from the world. If ever human features bespoke vice of the most\nmalignant type, they were certainly those of Enoch J. Drebber, of\nCleveland. Still I recognized that justice must be done, and that the\ndepravity of the victim was no condonment [11] in the eyes of the law.\n\nThe more I thought of it the more extraordinary did my companion’s\nhypothesis, that the man had been poisoned, appear. I remembered how he\nhad sniffed his lips, and had no doubt that he had detected something\nwhich had given rise to the idea. Then, again, if not poison, what\nhad caused the man’s death, since there was neither wound nor marks of\nstrangulation? But, on the other hand, whose blood was that which lay so\nthickly upon the floor? There were no signs of a struggle, nor had the\nvictim any weapon with which he might have wounded an antagonist. As\nlong as all these questions were unsolved, I felt that sleep would be\nno easy matter, either for Holmes or myself. His quiet self-confident\nmanner convinced me that he had already formed a theory which explained\nall the facts, though what it was I could not for an instant conjecture.\n\nHe was very late in returning--so late, that I knew that the concert\ncould not have detained him all the time. Dinner was on the table before\nhe appeared.\n\n“It was magnificent,” he said, as he took his seat. “Do you remember\nwhat Darwin says about music? He claims that the power of producing and\nappreciating it existed among the human race long before the power of\nspeech was arrived at. Perhaps that is why we are so subtly influenced\nby it. There are vague memories in our souls of those misty centuries\nwhen the world was in its childhood.”\n\n“That’s rather a broad idea,” I remarked.\n\n“One’s ideas must be as broad as Nature if they are to interpret\nNature,” he answered. “What’s the matter? You’re not looking quite\nyourself. This Brixton Road affair has upset you.”\n\n“To tell the truth, it has,” I said. “I ought to be more case-hardened\nafter my Afghan experiences. I saw my own comrades hacked to pieces at\nMaiwand without losing my nerve.”\n\n“I can understand. There is a mystery about this which stimulates the\nimagination; where there is no imagination there is no horror. Have you\nseen the evening paper?”\n\n“No.”\n\n“It gives a fairly good account of the affair. It does not mention the\nfact that when the man was raised up, a woman’s wedding ring fell upon\nthe floor. It is just as well it does not.”\n\n“Why?”\n\n“Look at this advertisement,” he answered. “I had one sent to every\npaper this morning immediately after the affair.”\n\nHe threw the paper across to me and I glanced at the place indicated. It\nwas the first announcement in the “Found” column. “In Brixton Road,\nthis morning,” it ran, “a plain gold wedding ring, found in the roadway\nbetween the ‘White Hart’ Tavern and Holland Grove. Apply Dr. Watson,\n221B, Baker Street, between eight and nine this evening.”\n\n“Excuse my using your name,” he said. “If I used my own some of these\ndunderheads would recognize it, and want to meddle in the affair.”\n\n“That is all right,” I answered. “But supposing anyone applies, I have\nno ring.”\n\n“Oh yes, you have,” said he, handing me one. “This will do very well. It\nis almost a facsimile.”\n\n“And who do you expect will answer this advertisement.”\n\n“Why, the man in the brown coat--our florid friend with the square toes.\nIf he does not come himself he will send an accomplice.”\n\n“Would he not consider it as too dangerous?”\n\n“Not at all. If my view of the case is correct, and I have every reason\nto believe that it is, this man would rather risk anything than lose the\nring. According to my notion he dropped it while stooping over Drebber’s\nbody, and did not miss it at the time. After leaving the house he\ndiscovered his loss and hurried back, but found the police already in\npossession, owing to his own folly in leaving the candle burning. He had\nto pretend to be drunk in order to allay the suspicions which might have\nbeen aroused by his appearance at the gate. Now put yourself in that\nman’s place. On thinking the matter over, it must have occurred to him\nthat it was possible that he had lost the ring in the road after leaving\nthe house. What would he do, then? He would eagerly look out for the\nevening papers in the hope of seeing it among the articles found. His\neye, of course, would light upon this. He would be overjoyed. Why should\nhe fear a trap? There would be no reason in his eyes why the finding\nof the ring should be connected with the murder. He would come. He will\ncome. You shall see him within an hour?”\n\n“And then?” I asked.\n\n“Oh, you can leave me to deal with him then. Have you any arms?”\n\n“I have my old service revolver and a few cartridges.”\n\n“You had better clean it and load it. He will be a desperate man,\nand though I shall take him unawares, it is as well to be ready for\nanything.”\n\nI went to my bedroom and followed his advice. When I returned with\nthe pistol the table had been cleared, and Holmes was engaged in his\nfavourite occupation of scraping upon his violin.\n\n“The plot thickens,” he said, as I entered; “I have just had an answer\nto my American telegram. My view of the case is the correct one.”\n\n“And that is?” I asked eagerly.\n\n“My fiddle would be the better for new strings,” he remarked. “Put your\npistol in your pocket. When the fellow comes speak to him in an ordinary\nway. Leave the rest to me. Don’t frighten him by looking at him too\nhard.”\n\n“It is eight o’clock now,” I said, glancing at my watch.\n\n“Yes. He will probably be here in a few minutes. Open the door slightly.\nThat will do. Now put the key on the inside. Thank you! This is a\nqueer old book I picked up at a stall yesterday--‘De Jure inter\nGentes’--published in Latin at Liege in the Lowlands, in 1642. Charles’\nhead was still firm on his shoulders when this little brown-backed\nvolume was struck off.”\n\n“Who is the printer?”\n\n“Philippe de Croy, whoever he may have been. On the fly-leaf, in very\nfaded ink, is written ‘Ex libris Guliolmi Whyte.’ I wonder who William\nWhyte was. Some pragmatical seventeenth century lawyer, I suppose. His\nwriting has a legal twist about it. Here comes our man, I think.”\n\nAs he spoke there was a sharp ring at the bell. Sherlock Holmes rose\nsoftly and moved his chair in the direction of the door. We heard the\nservant pass along the hall, and the sharp click of the latch as she\nopened it.\n\n“Does Dr. Watson live here?” asked a clear but rather harsh voice. We\ncould not hear the servant’s reply, but the door closed, and some one\nbegan to ascend the stairs. The footfall was an uncertain and shuffling\none. A look of surprise passed over the face of my companion as he\nlistened to it. It came slowly along the passage, and there was a feeble\ntap at the door.\n\n“Come in,” I cried.\n\nAt my summons, instead of the man of violence whom we expected, a very\nold and wrinkled woman hobbled into the apartment. She appeared to be\ndazzled by the sudden blaze of light, and after dropping a curtsey, she\nstood blinking at us with her bleared eyes and fumbling in her pocket\nwith nervous, shaky fingers. I glanced at my companion, and his face\nhad assumed such a disconsolate expression that it was all I could do to\nkeep my countenance.\n\nThe old crone drew out an evening paper, and pointed at our\nadvertisement. “It’s this as has brought me, good gentlemen,” she said,\ndropping another curtsey; “a gold wedding ring in the Brixton Road. It\nbelongs to my girl Sally, as was married only this time twelvemonth,\nwhich her husband is steward aboard a Union boat, and what he’d say if\nhe come ‘ome and found her without her ring is more than I can think, he\nbeing short enough at the best o’ times, but more especially when he\nhas the drink. If it please you, she went to the circus last night along\nwith----”\n\n“Is that her ring?” I asked.\n\n“The Lord be thanked!” cried the old woman; “Sally will be a glad woman\nthis night. That’s the ring.”\n\n“And what may your address be?” I inquired, taking up a pencil.\n\n“13, Duncan Street, Houndsditch. A weary way from here.”\n\n“The Brixton Road does not lie between any circus and Houndsditch,” said\nSherlock Holmes sharply.\n\nThe old woman faced round and looked keenly at him from her little\nred-rimmed eyes. “The gentleman asked me for _my_ address,” she said.\n“Sally lives in lodgings at 3, Mayfield Place, Peckham.”\n\n“And your name is----?”\n\n“My name is Sawyer--her’s is Dennis, which Tom Dennis married her--and\na smart, clean lad, too, as long as he’s at sea, and no steward in the\ncompany more thought of; but when on shore, what with the women and what\nwith liquor shops----”\n\n“Here is your ring, Mrs. Sawyer,” I interrupted, in obedience to a sign\nfrom my companion; “it clearly belongs to your daughter, and I am glad\nto be able to restore it to the rightful owner.”\n\nWith many mumbled blessings and protestations of gratitude the old crone\npacked it away in her pocket, and shuffled off down the stairs. Sherlock\nHolmes sprang to his feet the moment that she was gone and rushed into\nhis room. He returned in a few seconds enveloped in an ulster and\na cravat. “I’ll follow her,” he said, hurriedly; “she must be an\naccomplice, and will lead me to him. Wait up for me.” The hall door had\nhardly slammed behind our visitor before Holmes had descended the stair.\nLooking through the window I could see her walking feebly along the\nother side, while her pursuer dogged her some little distance behind.\n“Either his whole theory is incorrect,” I thought to myself, “or else he\nwill be led now to the heart of the mystery.” There was no need for him\nto ask me to wait up for him, for I felt that sleep was impossible until\nI heard the result of his adventure.\n\nIt was close upon nine when he set out. I had no idea how long he might\nbe, but I sat stolidly puffing at my pipe and skipping over the pages\nof Henri Murger’s “Vie de Bohème.” Ten o’clock passed, and I heard the\nfootsteps of the maid as they pattered off to bed. Eleven, and the\nmore stately tread of the landlady passed my door, bound for the same\ndestination. It was close upon twelve before I heard the sharp sound of\nhis latch-key. The instant he entered I saw by his face that he had not\nbeen successful. Amusement and chagrin seemed to be struggling for the\nmastery, until the former suddenly carried the day, and he burst into a\nhearty laugh.\n\n“I wouldn’t have the Scotland Yarders know it for the world,” he cried,\ndropping into his chair; “I have chaffed them so much that they would\nnever have let me hear the end of it. I can afford to laugh, because I\nknow that I will be even with them in the long run.”\n\n“What is it then?” I asked.\n\n“Oh, I don’t mind telling a story against myself. That creature had\ngone a little way when she began to limp and show every sign of being\nfoot-sore. Presently she came to a halt, and hailed a four-wheeler which\nwas passing. I managed to be close to her so as to hear the address, but\nI need not have been so anxious, for she sang it out loud enough to\nbe heard at the other side of the street, ‘Drive to 13, Duncan Street,\nHoundsditch,’ she cried. This begins to look genuine, I thought, and\nhaving seen her safely inside, I perched myself behind. That’s an art\nwhich every detective should be an expert at. Well, away we rattled, and\nnever drew rein until we reached the street in question. I hopped off\nbefore we came to the door, and strolled down the street in an easy,\nlounging way. I saw the cab pull up. The driver jumped down, and I saw\nhim open the door and stand expectantly. Nothing came out though. When\nI reached him he was groping about frantically in the empty cab, and\ngiving vent to the finest assorted collection of oaths that ever I\nlistened to. There was no sign or trace of his passenger, and I fear it\nwill be some time before he gets his fare. On inquiring at Number 13\nwe found that the house belonged to a respectable paperhanger, named\nKeswick, and that no one of the name either of Sawyer or Dennis had ever\nbeen heard of there.”\n\n“You don’t mean to say,” I cried, in amazement, “that that tottering,\nfeeble old woman was able to get out of the cab while it was in motion,\nwithout either you or the driver seeing her?”\n\n“Old woman be damned!” said Sherlock Holmes, sharply. “We were the old\nwomen to be so taken in. It must have been a young man, and an\nactive one, too, besides being an incomparable actor. The get-up was\ninimitable. He saw that he was followed, no doubt, and used this means\nof giving me the slip. It shows that the man we are after is not as\nlonely as I imagined he was, but has friends who are ready to risk\nsomething for him. Now, Doctor, you are looking done-up. Take my advice\nand turn in.”\n\nI was certainly feeling very weary, so I obeyed his injunction. I\nleft Holmes seated in front of the smouldering fire, and long into the\nwatches of the night I heard the low, melancholy wailings of his violin,\nand knew that he was still pondering over the strange problem which he\nhad set himself to unravel.\n\n\n\n\nCHAPTER VI. TOBIAS GREGSON SHOWS WHAT HE CAN DO.\n\n\nTHE papers next day were full of the “Brixton Mystery,” as they termed\nit. Each had a long account of the affair, and some had leaders upon it\nin addition. There was some information in them which was new to me. I\nstill retain in my scrap-book numerous clippings and extracts bearing\nupon the case. Here is a condensation of a few of them:--\n\nThe _Daily Telegraph_ remarked that in the history of crime there had\nseldom been a tragedy which presented stranger features. The German\nname of the victim, the absence of all other motive, and the sinister\ninscription on the wall, all pointed to its perpetration by political\nrefugees and revolutionists. The Socialists had many branches in\nAmerica, and the deceased had, no doubt, infringed their unwritten laws,\nand been tracked down by them. After alluding airily to the Vehmgericht,\naqua tofana, Carbonari, the Marchioness de Brinvilliers, the Darwinian\ntheory, the principles of Malthus, and the Ratcliff Highway murders, the\narticle concluded by admonishing the Government and advocating a closer\nwatch over foreigners in England.\n\nThe _Standard_ commented upon the fact that lawless outrages of the sort\nusually occurred under a Liberal Administration. They arose from the\nunsettling of the minds of the masses, and the consequent weakening\nof all authority. The deceased was an American gentleman who had\nbeen residing for some weeks in the Metropolis. He had stayed at the\nboarding-house of Madame Charpentier, in Torquay Terrace, Camberwell.\nHe was accompanied in his travels by his private secretary, Mr. Joseph\nStangerson. The two bade adieu to their landlady upon Tuesday, the\n4th inst., and departed to Euston Station with the avowed intention of\ncatching the Liverpool express. They were afterwards seen together upon\nthe platform. Nothing more is known of them until Mr. Drebber’s body\nwas, as recorded, discovered in an empty house in the Brixton Road,\nmany miles from Euston. How he came there, or how he met his fate, are\nquestions which are still involved in mystery. Nothing is known of the\nwhereabouts of Stangerson. We are glad to learn that Mr. Lestrade and\nMr. Gregson, of Scotland Yard, are both engaged upon the case, and it\nis confidently anticipated that these well-known officers will speedily\nthrow light upon the matter.\n\nThe _Daily News_ observed that there was no doubt as to the crime being\na political one. The despotism and hatred of Liberalism which animated\nthe Continental Governments had had the effect of driving to our shores\na number of men who might have made excellent citizens were they not\nsoured by the recollection of all that they had undergone. Among these\nmen there was a stringent code of honour, any infringement of which was\npunished by death. Every effort should be made to find the secretary,\nStangerson, and to ascertain some particulars of the habits of the\ndeceased. A great step had been gained by the discovery of the address\nof the house at which he had boarded--a result which was entirely due to\nthe acuteness and energy of Mr. Gregson of Scotland Yard.\n\nSherlock Holmes and I read these notices over together at breakfast, and\nthey appeared to afford him considerable amusement.\n\n“I told you that, whatever happened, Lestrade and Gregson would be sure\nto score.”\n\n“That depends on how it turns out.”\n\n“Oh, bless you, it doesn’t matter in the least. If the man is caught, it\nwill be _on account_ of their exertions; if he escapes, it will be _in\nspite_ of their exertions. It’s heads I win and tails you lose. Whatever\nthey do, they will have followers. ‘Un sot trouve toujours un plus sot\nqui l’admire.’”\n\n“What on earth is this?” I cried, for at this moment there came the\npattering of many steps in the hall and on the stairs, accompanied by\naudible expressions of disgust upon the part of our landlady.\n\n“It’s the Baker Street division of the detective police force,” said my\ncompanion, gravely; and as he spoke there rushed into the room half a\ndozen of the dirtiest and most ragged street Arabs that ever I clapped\neyes on.\n\n“‘Tention!” cried Holmes, in a sharp tone, and the six dirty little\nscoundrels stood in a line like so many disreputable statuettes. “In\nfuture you shall send up Wiggins alone to report, and the rest of you\nmust wait in the street. Have you found it, Wiggins?”\n\n“No, sir, we hain’t,” said one of the youths.\n\n“I hardly expected you would. You must keep on until you do. Here are\nyour wages.” [13] He handed each of them a shilling.\n\n“Now, off you go, and come back with a better report next time.”\n\nHe waved his hand, and they scampered away downstairs like so many rats,\nand we heard their shrill voices next moment in the street.\n\n“There’s more work to be got out of one of those little beggars than\nout of a dozen of the force,” Holmes remarked. “The mere sight of an\nofficial-looking person seals men’s lips. These youngsters, however, go\neverywhere and hear everything. They are as sharp as needles, too; all\nthey want is organisation.”\n\n“Is it on this Brixton case that you are employing them?” I asked.\n\n“Yes; there is a point which I wish to ascertain. It is merely a matter\nof time. Hullo! we are going to hear some news now with a vengeance!\nHere is Gregson coming down the road with beatitude written upon every\nfeature of his face. Bound for us, I know. Yes, he is stopping. There he\nis!”\n\nThere was a violent peal at the bell, and in a few seconds the\nfair-haired detective came up the stairs, three steps at a time, and\nburst into our sitting-room.\n\n“My dear fellow,” he cried, wringing Holmes’ unresponsive hand,\n“congratulate me! I have made the whole thing as clear as day.”\n\nA shade of anxiety seemed to me to cross my companion’s expressive face.\n\n“Do you mean that you are on the right track?” he asked.\n\n“The right track! Why, sir, we have the man under lock and key.”\n\n“And his name is?”\n\n“Arthur Charpentier, sub-lieutenant in Her Majesty’s navy,” cried\nGregson, pompously, rubbing his fat hands and inflating his chest.\n\nSherlock Holmes gave a sigh of relief, and relaxed into a smile.\n\n“Take a seat, and try one of these cigars,” he said. “We are anxious to\nknow how you managed it. Will you have some whiskey and water?”\n\n“I don’t mind if I do,” the detective answered. “The tremendous\nexertions which I have gone through during the last day or two have worn\nme out. Not so much bodily exertion, you understand, as the strain upon\nthe mind. You will appreciate that, Mr. Sherlock Holmes, for we are both\nbrain-workers.”\n\n“You do me too much honour,” said Holmes, gravely. “Let us hear how you\narrived at this most gratifying result.”\n\nThe detective seated himself in the arm-chair, and puffed complacently\nat his cigar. Then suddenly he slapped his thigh in a paroxysm of\namusement.\n\n“The fun of it is,” he cried, “that that fool Lestrade, who thinks\nhimself so smart, has gone off upon the wrong track altogether. He is\nafter the secretary Stangerson, who had no more to do with the crime\nthan the babe unborn. I have no doubt that he has caught him by this\ntime.”\n\nThe idea tickled Gregson so much that he laughed until he choked.\n\n“And how did you get your clue?”\n\n“Ah, I’ll tell you all about it. Of course, Doctor Watson, this is\nstrictly between ourselves. The first difficulty which we had to contend\nwith was the finding of this American’s antecedents. Some people would\nhave waited until their advertisements were answered, or until parties\ncame forward and volunteered information. That is not Tobias Gregson’s\nway of going to work. You remember the hat beside the dead man?”\n\n“Yes,” said Holmes; “by John Underwood and Sons, 129, Camberwell Road.”\n\nGregson looked quite crest-fallen.\n\n“I had no idea that you noticed that,” he said. “Have you been there?”\n\n“No.”\n\n“Ha!” cried Gregson, in a relieved voice; “you should never neglect a\nchance, however small it may seem.”\n\n“To a great mind, nothing is little,” remarked Holmes, sententiously.\n\n“Well, I went to Underwood, and asked him if he had sold a hat of that\nsize and description. He looked over his books, and came on it at once.\nHe had sent the hat to a Mr. Drebber, residing at Charpentier’s Boarding\nEstablishment, Torquay Terrace. Thus I got at his address.”\n\n“Smart--very smart!” murmured Sherlock Holmes.\n\n“I next called upon Madame Charpentier,” continued the detective.\n“I found her very pale and distressed. Her daughter was in the room,\ntoo--an uncommonly fine girl she is, too; she was looking red about\nthe eyes and her lips trembled as I spoke to her. That didn’t escape\nmy notice. I began to smell a rat. You know the feeling, Mr. Sherlock\nHolmes, when you come upon the right scent--a kind of thrill in your\nnerves. ‘Have you heard of the mysterious death of your late boarder Mr.\nEnoch J. Drebber, of Cleveland?’ I asked.\n\n“The mother nodded. She didn’t seem able to get out a word. The daughter\nburst into tears. I felt more than ever that these people knew something\nof the matter.\n\n“‘At what o’clock did Mr. Drebber leave your house for the train?’ I\nasked.\n\n“‘At eight o’clock,’ she said, gulping in her throat to keep down her\nagitation. ‘His secretary, Mr. Stangerson, said that there were two\ntrains--one at 9.15 and one at 11. He was to catch the first. [14]\n\n“‘And was that the last which you saw of him?’\n\n“A terrible change came over the woman’s face as I asked the question.\nHer features turned perfectly livid. It was some seconds before she\ncould get out the single word ‘Yes’--and when it did come it was in a\nhusky unnatural tone.\n\n“There was silence for a moment, and then the daughter spoke in a calm\nclear voice.\n\n“‘No good can ever come of falsehood, mother,’ she said. ‘Let us be\nfrank with this gentleman. We _did_ see Mr. Drebber again.’\n\n“‘God forgive you!’ cried Madame Charpentier, throwing up her hands and\nsinking back in her chair. ‘You have murdered your brother.’\n\n“‘Arthur would rather that we spoke the truth,’ the girl answered\nfirmly.\n\n“‘You had best tell me all about it now,’ I said. ‘Half-confidences are\nworse than none. Besides, you do not know how much we know of it.’\n\n“‘On your head be it, Alice!’ cried her mother; and then, turning to me,\n‘I will tell you all, sir. Do not imagine that my agitation on behalf\nof my son arises from any fear lest he should have had a hand in this\nterrible affair. He is utterly innocent of it. My dread is, however,\nthat in your eyes and in the eyes of others he may appear to be\ncompromised. That however is surely impossible. His high character, his\nprofession, his antecedents would all forbid it.’\n\n“‘Your best way is to make a clean breast of the facts,’ I answered.\n‘Depend upon it, if your son is innocent he will be none the worse.’\n\n“‘Perhaps, Alice, you had better leave us together,’ she said, and her\ndaughter withdrew. ‘Now, sir,’ she continued, ‘I had no intention of\ntelling you all this, but since my poor daughter has disclosed it I\nhave no alternative. Having once decided to speak, I will tell you all\nwithout omitting any particular.’\n\n“‘It is your wisest course,’ said I.\n\n“‘Mr. Drebber has been with us nearly three weeks. He and his secretary,\nMr. Stangerson, had been travelling on the Continent. I noticed a\n“Copenhagen” label upon each of their trunks, showing that that had been\ntheir last stopping place. Stangerson was a quiet reserved man, but his\nemployer, I am sorry to say, was far otherwise. He was coarse in his\nhabits and brutish in his ways. The very night of his arrival he became\nvery much the worse for drink, and, indeed, after twelve o’clock in the\nday he could hardly ever be said to be sober. His manners towards the\nmaid-servants were disgustingly free and familiar. Worst of all, he\nspeedily assumed the same attitude towards my daughter, Alice, and spoke\nto her more than once in a way which, fortunately, she is too innocent\nto understand. On one occasion he actually seized her in his arms and\nembraced her--an outrage which caused his own secretary to reproach him\nfor his unmanly conduct.’\n\n“‘But why did you stand all this,’ I asked. ‘I suppose that you can get\nrid of your boarders when you wish.’\n\n“Mrs. Charpentier blushed at my pertinent question. ‘Would to God that\nI had given him notice on the very day that he came,’ she said. ‘But\nit was a sore temptation. They were paying a pound a day each--fourteen\npounds a week, and this is the slack season. I am a widow, and my boy in\nthe Navy has cost me much. I grudged to lose the money. I acted for the\nbest. This last was too much, however, and I gave him notice to leave on\naccount of it. That was the reason of his going.’\n\n“‘Well?’\n\n“‘My heart grew light when I saw him drive away. My son is on leave\njust now, but I did not tell him anything of all this, for his temper\nis violent, and he is passionately fond of his sister. When I closed the\ndoor behind them a load seemed to be lifted from my mind. Alas, in\nless than an hour there was a ring at the bell, and I learned that Mr.\nDrebber had returned. He was much excited, and evidently the worse for\ndrink. He forced his way into the room, where I was sitting with my\ndaughter, and made some incoherent remark about having missed his train.\nHe then turned to Alice, and before my very face, proposed to her that\nshe should fly with him. “You are of age,” he said, “and there is no law\nto stop you. I have money enough and to spare. Never mind the old girl\nhere, but come along with me now straight away. You shall live like a\nprincess.” Poor Alice was so frightened that she shrunk away from him,\nbut he caught her by the wrist and endeavoured to draw her towards the\ndoor. I screamed, and at that moment my son Arthur came into the room.\nWhat happened then I do not know. I heard oaths and the confused sounds\nof a scuffle. I was too terrified to raise my head. When I did look up\nI saw Arthur standing in the doorway laughing, with a stick in his hand.\n“I don’t think that fine fellow will trouble us again,” he said. “I will\njust go after him and see what he does with himself.” With those words\nhe took his hat and started off down the street. The next morning we\nheard of Mr. Drebber’s mysterious death.’\n\n“This statement came from Mrs. Charpentier’s lips with many gasps and\npauses. At times she spoke so low that I could hardly catch the words. I\nmade shorthand notes of all that she said, however, so that there should\nbe no possibility of a mistake.”\n\n“It’s quite exciting,” said Sherlock Holmes, with a yawn. “What happened\nnext?”\n\n“When Mrs. Charpentier paused,” the detective continued, “I saw that the\nwhole case hung upon one point. Fixing her with my eye in a way which\nI always found effective with women, I asked her at what hour her son\nreturned.\n\n“‘I do not know,’ she answered.\n\n“‘Not know?’\n\n“‘No; he has a latch-key, and he let himself in.’\n\n“‘After you went to bed?’\n\n“‘Yes.’\n\n“‘When did you go to bed?’\n\n“‘About eleven.’\n\n“‘So your son was gone at least two hours?’\n\n“‘Yes.’\n\n“‘Possibly four or five?’\n\n“‘Yes.’\n\n“‘What was he doing during that time?’\n\n“‘I do not know,’ she answered, turning white to her very lips.\n\n“Of course after that there was nothing more to be done. I found\nout where Lieutenant Charpentier was, took two officers with me, and\narrested him. When I touched him on the shoulder and warned him to come\nquietly with us, he answered us as bold as brass, ‘I suppose you\nare arresting me for being concerned in the death of that scoundrel\nDrebber,’ he said. We had said nothing to him about it, so that his\nalluding to it had a most suspicious aspect.”\n\n“Very,” said Holmes.\n\n“He still carried the heavy stick which the mother described him as\nhaving with him when he followed Drebber. It was a stout oak cudgel.”\n\n“What is your theory, then?”\n\n“Well, my theory is that he followed Drebber as far as the Brixton Road.\nWhen there, a fresh altercation arose between them, in the course of\nwhich Drebber received a blow from the stick, in the pit of the stomach,\nperhaps, which killed him without leaving any mark. The night was so\nwet that no one was about, so Charpentier dragged the body of his victim\ninto the empty house. As to the candle, and the blood, and the writing\non the wall, and the ring, they may all be so many tricks to throw the\npolice on to the wrong scent.”\n\n“Well done!” said Holmes in an encouraging voice. “Really, Gregson, you\nare getting along. We shall make something of you yet.”\n\n“I flatter myself that I have managed it rather neatly,” the detective\nanswered proudly. “The young man volunteered a statement, in which he\nsaid that after following Drebber some time, the latter perceived him,\nand took a cab in order to get away from him. On his way home he met an\nold shipmate, and took a long walk with him. On being asked where this\nold shipmate lived, he was unable to give any satisfactory reply. I\nthink the whole case fits together uncommonly well. What amuses me is to\nthink of Lestrade, who had started off upon the wrong scent. I am afraid\nhe won’t make much of [15] Why, by Jove, here’s the very man himself!”\n\nIt was indeed Lestrade, who had ascended the stairs while we were\ntalking, and who now entered the room. The assurance and jauntiness\nwhich generally marked his demeanour and dress were, however, wanting.\nHis face was disturbed and troubled, while his clothes were disarranged\nand untidy. He had evidently come with the intention of consulting\nwith Sherlock Holmes, for on perceiving his colleague he appeared to be\nembarrassed and put out. He stood in the centre of the room, fumbling\nnervously with his hat and uncertain what to do. “This is a most\nextraordinary case,” he said at last--“a most incomprehensible affair.”\n\n“Ah, you find it so, Mr. Lestrade!” cried Gregson, triumphantly. “I\nthought you would come to that conclusion. Have you managed to find the\nSecretary, Mr. Joseph Stangerson?”\n\n“The Secretary, Mr. Joseph Stangerson,” said Lestrade gravely, “was\nmurdered at Halliday’s Private Hotel about six o’clock this morning.”\n\n\n\n\nCHAPTER VII. LIGHT IN THE DARKNESS.\n\n\nTHE intelligence with which Lestrade greeted us was so momentous and so\nunexpected, that we were all three fairly dumfoundered. Gregson sprang\nout of his chair and upset the remainder of his whiskey and water. I\nstared in silence at Sherlock Holmes, whose lips were compressed and his\nbrows drawn down over his eyes.\n\n“Stangerson too!” he muttered. “The plot thickens.”\n\n“It was quite thick enough before,” grumbled Lestrade, taking a chair.\n“I seem to have dropped into a sort of council of war.”\n\n“Are you--are you sure of this piece of intelligence?” stammered\nGregson.\n\n“I have just come from his room,” said Lestrade. “I was the first to\ndiscover what had occurred.”\n\n“We have been hearing Gregson’s view of the matter,” Holmes observed.\n“Would you mind letting us know what you have seen and done?”\n\n“I have no objection,” Lestrade answered, seating himself. “I freely\nconfess that I was of the opinion that Stangerson was concerned in\nthe death of Drebber. This fresh development has shown me that I was\ncompletely mistaken. Full of the one idea, I set myself to find out\nwhat had become of the Secretary. They had been seen together at Euston\nStation about half-past eight on the evening of the third. At two in the\nmorning Drebber had been found in the Brixton Road. The question which\nconfronted me was to find out how Stangerson had been employed between\n8.30 and the time of the crime, and what had become of him afterwards.\nI telegraphed to Liverpool, giving a description of the man, and warning\nthem to keep a watch upon the American boats. I then set to work calling\nupon all the hotels and lodging-houses in the vicinity of Euston. You\nsee, I argued that if Drebber and his companion had become separated,\nthe natural course for the latter would be to put up somewhere in the\nvicinity for the night, and then to hang about the station again next\nmorning.”\n\n“They would be likely to agree on some meeting-place beforehand,”\n remarked Holmes.\n\n“So it proved. I spent the whole of yesterday evening in making\nenquiries entirely without avail. This morning I began very early, and\nat eight o’clock I reached Halliday’s Private Hotel, in Little George\nStreet. On my enquiry as to whether a Mr. Stangerson was living there,\nthey at once answered me in the affirmative.\n\n“‘No doubt you are the gentleman whom he was expecting,’ they said. ‘He\nhas been waiting for a gentleman for two days.’\n\n“‘Where is he now?’ I asked.\n\n“‘He is upstairs in bed. He wished to be called at nine.’\n\n“‘I will go up and see him at once,’ I said.\n\n“It seemed to me that my sudden appearance might shake his nerves and\nlead him to say something unguarded. The Boots volunteered to show me\nthe room: it was on the second floor, and there was a small corridor\nleading up to it. The Boots pointed out the door to me, and was about to\ngo downstairs again when I saw something that made me feel sickish, in\nspite of my twenty years’ experience. From under the door there curled\na little red ribbon of blood, which had meandered across the passage and\nformed a little pool along the skirting at the other side. I gave a cry,\nwhich brought the Boots back. He nearly fainted when he saw it. The door\nwas locked on the inside, but we put our shoulders to it, and knocked it\nin. The window of the room was open, and beside the window, all huddled\nup, lay the body of a man in his nightdress. He was quite dead, and had\nbeen for some time, for his limbs were rigid and cold. When we turned\nhim over, the Boots recognized him at once as being the same gentleman\nwho had engaged the room under the name of Joseph Stangerson. The cause\nof death was a deep stab in the left side, which must have penetrated\nthe heart. And now comes the strangest part of the affair. What do you\nsuppose was above the murdered man?”\n\nI felt a creeping of the flesh, and a presentiment of coming horror,\neven before Sherlock Holmes answered.\n\n“The word RACHE, written in letters of blood,” he said.\n\n“That was it,” said Lestrade, in an awe-struck voice; and we were all\nsilent for a while.\n\nThere was something so methodical and so incomprehensible about the\ndeeds of this unknown assassin, that it imparted a fresh ghastliness to\nhis crimes. My nerves, which were steady enough on the field of battle\ntingled as I thought of it.\n\n“The man was seen,” continued Lestrade. “A milk boy, passing on his way\nto the dairy, happened to walk down the lane which leads from the mews\nat the back of the hotel. He noticed that a ladder, which usually lay\nthere, was raised against one of the windows of the second floor, which\nwas wide open. After passing, he looked back and saw a man descend the\nladder. He came down so quietly and openly that the boy imagined him to\nbe some carpenter or joiner at work in the hotel. He took no particular\nnotice of him, beyond thinking in his own mind that it was early for him\nto be at work. He has an impression that the man was tall, had a reddish\nface, and was dressed in a long, brownish coat. He must have stayed in\nthe room some little time after the murder, for we found blood-stained\nwater in the basin, where he had washed his hands, and marks on the\nsheets where he had deliberately wiped his knife.”\n\nI glanced at Holmes on hearing the description of the murderer, which\ntallied so exactly with his own. There was, however, no trace of\nexultation or satisfaction upon his face.\n\n“Did you find nothing in the room which could furnish a clue to the\nmurderer?” he asked.\n\n“Nothing. Stangerson had Drebber’s purse in his pocket, but it seems\nthat this was usual, as he did all the paying. There was eighty odd\npounds in it, but nothing had been taken. Whatever the motives of these\nextraordinary crimes, robbery is certainly not one of them. There were\nno papers or memoranda in the murdered man’s pocket, except a single\ntelegram, dated from Cleveland about a month ago, and containing\nthe words, ‘J. H. is in Europe.’ There was no name appended to this\nmessage.”\n\n“And there was nothing else?” Holmes asked.\n\n“Nothing of any importance. The man’s novel, with which he had read\nhimself to sleep was lying upon the bed, and his pipe was on a chair\nbeside him. There was a glass of water on the table, and on the\nwindow-sill a small chip ointment box containing a couple of pills.”\n\nSherlock Holmes sprang from his chair with an exclamation of delight.\n\n“The last link,” he cried, exultantly. “My case is complete.”\n\nThe two detectives stared at him in amazement.\n\n“I have now in my hands,” my companion said, confidently, “all the\nthreads which have formed such a tangle. There are, of course, details\nto be filled in, but I am as certain of all the main facts, from the\ntime that Drebber parted from Stangerson at the station, up to the\ndiscovery of the body of the latter, as if I had seen them with my own\neyes. I will give you a proof of my knowledge. Could you lay your hand\nupon those pills?”\n\n“I have them,” said Lestrade, producing a small white box; “I took them\nand the purse and the telegram, intending to have them put in a place of\nsafety at the Police Station. It was the merest chance my taking these\npills, for I am bound to say that I do not attach any importance to\nthem.”\n\n“Give them here,” said Holmes. “Now, Doctor,” turning to me, “are those\nordinary pills?”\n\nThey certainly were not. They were of a pearly grey colour, small,\nround, and almost transparent against the light. “From their lightness\nand transparency, I should imagine that they are soluble in water,” I\nremarked.\n\n“Precisely so,” answered Holmes. “Now would you mind going down and\nfetching that poor little devil of a terrier which has been bad so long,\nand which the landlady wanted you to put out of its pain yesterday.”\n\nI went downstairs and carried the dog upstair in my arms. It’s laboured\nbreathing and glazing eye showed that it was not far from its end.\nIndeed, its snow-white muzzle proclaimed that it had already exceeded\nthe usual term of canine existence. I placed it upon a cushion on the\nrug.\n\n“I will now cut one of these pills in two,” said Holmes, and drawing his\npenknife he suited the action to the word. “One half we return into the\nbox for future purposes. The other half I will place in this wine glass,\nin which is a teaspoonful of water. You perceive that our friend, the\nDoctor, is right, and that it readily dissolves.”\n\n“This may be very interesting,” said Lestrade, in the injured tone of\none who suspects that he is being laughed at, “I cannot see, however,\nwhat it has to do with the death of Mr. Joseph Stangerson.”\n\n“Patience, my friend, patience! You will find in time that it has\neverything to do with it. I shall now add a little milk to make the\nmixture palatable, and on presenting it to the dog we find that he laps\nit up readily enough.”\n\nAs he spoke he turned the contents of the wine glass into a saucer and\nplaced it in front of the terrier, who speedily licked it dry. Sherlock\nHolmes’ earnest demeanour had so far convinced us that we all sat in\nsilence, watching the animal intently, and expecting some startling\neffect. None such appeared, however. The dog continued to lie stretched\nupon tho [16] cushion, breathing in a laboured way, but apparently\nneither the better nor the worse for its draught.\n\nHolmes had taken out his watch, and as minute followed minute without\nresult, an expression of the utmost chagrin and disappointment appeared\nupon his features. He gnawed his lip, drummed his fingers upon the\ntable, and showed every other symptom of acute impatience. So great\nwas his emotion, that I felt sincerely sorry for him, while the two\ndetectives smiled derisively, by no means displeased at this check which\nhe had met.\n\n“It can’t be a coincidence,” he cried, at last springing from his chair\nand pacing wildly up and down the room; “it is impossible that it should\nbe a mere coincidence. The very pills which I suspected in the case of\nDrebber are actually found after the death of Stangerson. And yet they\nare inert. What can it mean? Surely my whole chain of reasoning cannot\nhave been false. It is impossible! And yet this wretched dog is none the\nworse. Ah, I have it! I have it!” With a perfect shriek of delight he\nrushed to the box, cut the other pill in two, dissolved it, added milk,\nand presented it to the terrier. The unfortunate creature’s tongue\nseemed hardly to have been moistened in it before it gave a convulsive\nshiver in every limb, and lay as rigid and lifeless as if it had been\nstruck by lightning.\n\nSherlock Holmes drew a long breath, and wiped the perspiration from his\nforehead. “I should have more faith,” he said; “I ought to know by\nthis time that when a fact appears to be opposed to a long train of\ndeductions, it invariably proves to be capable of bearing some other\ninterpretation. Of the two pills in that box one was of the most deadly\npoison, and the other was entirely harmless. I ought to have known that\nbefore ever I saw the box at all.”\n\nThis last statement appeared to me to be so startling, that I could\nhardly believe that he was in his sober senses. There was the dead dog,\nhowever, to prove that his conjecture had been correct. It seemed to me\nthat the mists in my own mind were gradually clearing away, and I began\nto have a dim, vague perception of the truth.\n\n“All this seems strange to you,” continued Holmes, “because you failed\nat the beginning of the inquiry to grasp the importance of the single\nreal clue which was presented to you. I had the good fortune to seize\nupon that, and everything which has occurred since then has served to\nconfirm my original supposition, and, indeed, was the logical sequence\nof it. Hence things which have perplexed you and made the case more\nobscure, have served to enlighten me and to strengthen my conclusions.\nIt is a mistake to confound strangeness with mystery. The most\ncommonplace crime is often the most mysterious because it presents no\nnew or special features from which deductions may be drawn. This murder\nwould have been infinitely more difficult to unravel had the body of\nthe victim been simply found lying in the roadway without any of\nthose _outré_ and sensational accompaniments which have rendered\nit remarkable. These strange details, far from making the case more\ndifficult, have really had the effect of making it less so.”\n\nMr. Gregson, who had listened to this address with considerable\nimpatience, could contain himself no longer. “Look here, Mr. Sherlock\nHolmes,” he said, “we are all ready to acknowledge that you are a smart\nman, and that you have your own methods of working. We want something\nmore than mere theory and preaching now, though. It is a case of taking\nthe man. I have made my case out, and it seems I was wrong. Young\nCharpentier could not have been engaged in this second affair. Lestrade\nwent after his man, Stangerson, and it appears that he was wrong too.\nYou have thrown out hints here, and hints there, and seem to know more\nthan we do, but the time has come when we feel that we have a right to\nask you straight how much you do know of the business. Can you name the\nman who did it?”\n\n“I cannot help feeling that Gregson is right, sir,” remarked Lestrade.\n“We have both tried, and we have both failed. You have remarked more\nthan once since I have been in the room that you had all the evidence\nwhich you require. Surely you will not withhold it any longer.”\n\n“Any delay in arresting the assassin,” I observed, “might give him time\nto perpetrate some fresh atrocity.”\n\nThus pressed by us all, Holmes showed signs of irresolution. He\ncontinued to walk up and down the room with his head sunk on his chest\nand his brows drawn down, as was his habit when lost in thought.\n\n“There will be no more murders,” he said at last, stopping abruptly and\nfacing us. “You can put that consideration out of the question. You have\nasked me if I know the name of the assassin. I do. The mere knowing of\nhis name is a small thing, however, compared with the power of laying\nour hands upon him. This I expect very shortly to do. I have good hopes\nof managing it through my own arrangements; but it is a thing which\nneeds delicate handling, for we have a shrewd and desperate man to deal\nwith, who is supported, as I have had occasion to prove, by another who\nis as clever as himself. As long as this man has no idea that anyone\ncan have a clue there is some chance of securing him; but if he had the\nslightest suspicion, he would change his name, and vanish in an instant\namong the four million inhabitants of this great city. Without meaning\nto hurt either of your feelings, I am bound to say that I consider these\nmen to be more than a match for the official force, and that is why I\nhave not asked your assistance. If I fail I shall, of course, incur all\nthe blame due to this omission; but that I am prepared for. At present\nI am ready to promise that the instant that I can communicate with you\nwithout endangering my own combinations, I shall do so.”\n\nGregson and Lestrade seemed to be far from satisfied by this assurance,\nor by the depreciating allusion to the detective police. The former had\nflushed up to the roots of his flaxen hair, while the other’s beady eyes\nglistened with curiosity and resentment. Neither of them had time to\nspeak, however, before there was a tap at the door, and the spokesman\nof the street Arabs, young Wiggins, introduced his insignificant and\nunsavoury person.\n\n“Please, sir,” he said, touching his forelock, “I have the cab\ndownstairs.”\n\n“Good boy,” said Holmes, blandly. “Why don’t you introduce this pattern\nat Scotland Yard?” he continued, taking a pair of steel handcuffs from\na drawer. “See how beautifully the spring works. They fasten in an\ninstant.”\n\n“The old pattern is good enough,” remarked Lestrade, “if we can only\nfind the man to put them on.”\n\n“Very good, very good,” said Holmes, smiling. “The cabman may as well\nhelp me with my boxes. Just ask him to step up, Wiggins.”\n\nI was surprised to find my companion speaking as though he were about\nto set out on a journey, since he had not said anything to me about it.\nThere was a small portmanteau in the room, and this he pulled out and\nbegan to strap. He was busily engaged at it when the cabman entered the\nroom.\n\n“Just give me a help with this buckle, cabman,” he said, kneeling over\nhis task, and never turning his head.\n\nThe fellow came forward with a somewhat sullen, defiant air, and put\ndown his hands to assist. At that instant there was a sharp click, the\njangling of metal, and Sherlock Holmes sprang to his feet again.\n\n“Gentlemen,” he cried, with flashing eyes, “let me introduce you to Mr.\nJefferson Hope, the murderer of Enoch Drebber and of Joseph Stangerson.”\n\nThe whole thing occurred in a moment--so quickly that I had no time\nto realize it. I have a vivid recollection of that instant, of Holmes’\ntriumphant expression and the ring of his voice, of the cabman’s\ndazed, savage face, as he glared at the glittering handcuffs, which had\nappeared as if by magic upon his wrists. For a second or two we might\nhave been a group of statues. Then, with an inarticulate roar of fury,\nthe prisoner wrenched himself free from Holmes’s grasp, and hurled\nhimself through the window. Woodwork and glass gave way before him; but\nbefore he got quite through, Gregson, Lestrade, and Holmes sprang upon\nhim like so many staghounds. He was dragged back into the room, and then\ncommenced a terrific conflict. So powerful and so fierce was he, that\nthe four of us were shaken off again and again. He appeared to have the\nconvulsive strength of a man in an epileptic fit. His face and hands\nwere terribly mangled by his passage through the glass, but loss of\nblood had no effect in diminishing his resistance. It was not until\nLestrade succeeded in getting his hand inside his neckcloth and\nhalf-strangling him that we made him realize that his struggles were of\nno avail; and even then we felt no security until we had pinioned his\nfeet as well as his hands. That done, we rose to our feet breathless and\npanting.\n\n“We have his cab,” said Sherlock Holmes. “It will serve to take him to\nScotland Yard. And now, gentlemen,” he continued, with a pleasant smile,\n“we have reached the end of our little mystery. You are very welcome to\nput any questions that you like to me now, and there is no danger that I\nwill refuse to answer them.”\n\n\n\n\n\nPART II. _The Country of the Saints._\n\n\n\n\nCHAPTER I. ON THE GREAT ALKALI PLAIN.\n\n\nIN the central portion of the great North American Continent there lies\nan arid and repulsive desert, which for many a long year served as a\nbarrier against the advance of civilisation. From the Sierra Nevada to\nNebraska, and from the Yellowstone River in the north to the Colorado\nupon the south, is a region of desolation and silence. Nor is Nature\nalways in one mood throughout this grim district. It comprises\nsnow-capped and lofty mountains, and dark and gloomy valleys. There are\nswift-flowing rivers which dash through jagged cañons; and there are\nenormous plains, which in winter are white with snow, and in summer are\ngrey with the saline alkali dust. They all preserve, however, the common\ncharacteristics of barrenness, inhospitality, and misery.\n\nThere are no inhabitants of this land of despair. A band of Pawnees\nor of Blackfeet may occasionally traverse it in order to reach other\nhunting-grounds, but the hardiest of the braves are glad to lose sight\nof those awesome plains, and to find themselves once more upon their\nprairies. The coyote skulks among the scrub, the buzzard flaps heavily\nthrough the air, and the clumsy grizzly bear lumbers through the dark\nravines, and picks up such sustenance as it can amongst the rocks. These\nare the sole dwellers in the wilderness.\n\nIn the whole world there can be no more dreary view than that from\nthe northern slope of the Sierra Blanco. As far as the eye can reach\nstretches the great flat plain-land, all dusted over with patches of\nalkali, and intersected by clumps of the dwarfish chaparral bushes. On\nthe extreme verge of the horizon lie a long chain of mountain peaks,\nwith their rugged summits flecked with snow. In this great stretch of\ncountry there is no sign of life, nor of anything appertaining to life.\nThere is no bird in the steel-blue heaven, no movement upon the dull,\ngrey earth--above all, there is absolute silence. Listen as one may,\nthere is no shadow of a sound in all that mighty wilderness; nothing but\nsilence--complete and heart-subduing silence.\n\nIt has been said there is nothing appertaining to life upon the broad\nplain. That is hardly true. Looking down from the Sierra Blanco, one\nsees a pathway traced out across the desert, which winds away and is\nlost in the extreme distance. It is rutted with wheels and trodden down\nby the feet of many adventurers. Here and there there are scattered\nwhite objects which glisten in the sun, and stand out against the dull\ndeposit of alkali. Approach, and examine them! They are bones: some\nlarge and coarse, others smaller and more delicate. The former have\nbelonged to oxen, and the latter to men. For fifteen hundred miles one\nmay trace this ghastly caravan route by these scattered remains of those\nwho had fallen by the wayside.\n\nLooking down on this very scene, there stood upon the fourth of May,\neighteen hundred and forty-seven, a solitary traveller. His appearance\nwas such that he might have been the very genius or demon of the region.\nAn observer would have found it difficult to say whether he was nearer\nto forty or to sixty. His face was lean and haggard, and the brown\nparchment-like skin was drawn tightly over the projecting bones; his\nlong, brown hair and beard were all flecked and dashed with white; his\neyes were sunken in his head, and burned with an unnatural lustre; while\nthe hand which grasped his rifle was hardly more fleshy than that of a\nskeleton. As he stood, he leaned upon his weapon for support, and yet\nhis tall figure and the massive framework of his bones suggested a wiry\nand vigorous constitution. His gaunt face, however, and his clothes,\nwhich hung so baggily over his shrivelled limbs, proclaimed what it\nwas that gave him that senile and decrepit appearance. The man was\ndying--dying from hunger and from thirst.\n\nHe had toiled painfully down the ravine, and on to this little\nelevation, in the vain hope of seeing some signs of water. Now the great\nsalt plain stretched before his eyes, and the distant belt of savage\nmountains, without a sign anywhere of plant or tree, which might\nindicate the presence of moisture. In all that broad landscape there\nwas no gleam of hope. North, and east, and west he looked with wild\nquestioning eyes, and then he realised that his wanderings had come to\nan end, and that there, on that barren crag, he was about to die. “Why\nnot here, as well as in a feather bed, twenty years hence,” he muttered,\nas he seated himself in the shelter of a boulder.\n\nBefore sitting down, he had deposited upon the ground his useless rifle,\nand also a large bundle tied up in a grey shawl, which he had carried\nslung over his right shoulder. It appeared to be somewhat too heavy for\nhis strength, for in lowering it, it came down on the ground with some\nlittle violence. Instantly there broke from the grey parcel a little\nmoaning cry, and from it there protruded a small, scared face, with very\nbright brown eyes, and two little speckled, dimpled fists.\n\n“You’ve hurt me!” said a childish voice reproachfully.\n\n“Have I though,” the man answered penitently, “I didn’t go for to do\nit.” As he spoke he unwrapped the grey shawl and extricated a pretty\nlittle girl of about five years of age, whose dainty shoes and smart\npink frock with its little linen apron all bespoke a mother’s care. The\nchild was pale and wan, but her healthy arms and legs showed that she\nhad suffered less than her companion.\n\n“How is it now?” he answered anxiously, for she was still rubbing the\ntowsy golden curls which covered the back of her head.\n\n“Kiss it and make it well,” she said, with perfect gravity, shoving\n[19] the injured part up to him. “That’s what mother used to do. Where’s\nmother?”\n\n“Mother’s gone. I guess you’ll see her before long.”\n\n“Gone, eh!” said the little girl. “Funny, she didn’t say good-bye; she\n‘most always did if she was just goin’ over to Auntie’s for tea, and now\nshe’s been away three days. Say, it’s awful dry, ain’t it? Ain’t there\nno water, nor nothing to eat?”\n\n“No, there ain’t nothing, dearie. You’ll just need to be patient awhile,\nand then you’ll be all right. Put your head up agin me like that, and\nthen you’ll feel bullier. It ain’t easy to talk when your lips is like\nleather, but I guess I’d best let you know how the cards lie. What’s\nthat you’ve got?”\n\n“Pretty things! fine things!” cried the little girl enthusiastically,\nholding up two glittering fragments of mica. “When we goes back to home\nI’ll give them to brother Bob.”\n\n“You’ll see prettier things than them soon,” said the man confidently.\n“You just wait a bit. I was going to tell you though--you remember when\nwe left the river?”\n\n“Oh, yes.”\n\n“Well, we reckoned we’d strike another river soon, d’ye see. But there\nwas somethin’ wrong; compasses, or map, or somethin’, and it didn’t\nturn up. Water ran out. Just except a little drop for the likes of you\nand--and----”\n\n“And you couldn’t wash yourself,” interrupted his companion gravely,\nstaring up at his grimy visage.\n\n“No, nor drink. And Mr. Bender, he was the fust to go, and then Indian\nPete, and then Mrs. McGregor, and then Johnny Hones, and then, dearie,\nyour mother.”\n\n“Then mother’s a deader too,” cried the little girl dropping her face in\nher pinafore and sobbing bitterly.\n\n“Yes, they all went except you and me. Then I thought there was some\nchance of water in this direction, so I heaved you over my shoulder and\nwe tramped it together. It don’t seem as though we’ve improved matters.\nThere’s an almighty small chance for us now!”\n\n“Do you mean that we are going to die too?” asked the child, checking\nher sobs, and raising her tear-stained face.\n\n“I guess that’s about the size of it.”\n\n“Why didn’t you say so before?” she said, laughing gleefully. “You gave\nme such a fright. Why, of course, now as long as we die we’ll be with\nmother again.”\n\n“Yes, you will, dearie.”\n\n“And you too. I’ll tell her how awful good you’ve been. I’ll bet she\nmeets us at the door of Heaven with a big pitcher of water, and a lot\nof buckwheat cakes, hot, and toasted on both sides, like Bob and me was\nfond of. How long will it be first?”\n\n“I don’t know--not very long.” The man’s eyes were fixed upon the\nnorthern horizon. In the blue vault of the heaven there had appeared\nthree little specks which increased in size every moment, so rapidly did\nthey approach. They speedily resolved themselves into three large brown\nbirds, which circled over the heads of the two wanderers, and then\nsettled upon some rocks which overlooked them. They were buzzards, the\nvultures of the west, whose coming is the forerunner of death.\n\n“Cocks and hens,” cried the little girl gleefully, pointing at their\nill-omened forms, and clapping her hands to make them rise. “Say, did\nGod make this country?”\n\n“In course He did,” said her companion, rather startled by this\nunexpected question.\n\n“He made the country down in Illinois, and He made the Missouri,” the\nlittle girl continued. “I guess somebody else made the country in these\nparts. It’s not nearly so well done. They forgot the water and the\ntrees.”\n\n“What would ye think of offering up prayer?” the man asked diffidently.\n\n“It ain’t night yet,” she answered.\n\n“It don’t matter. It ain’t quite regular, but He won’t mind that, you\nbet. You say over them ones that you used to say every night in the\nwaggon when we was on the Plains.”\n\n“Why don’t you say some yourself?” the child asked, with wondering eyes.\n\n“I disremember them,” he answered. “I hain’t said none since I was half\nthe height o’ that gun. I guess it’s never too late. You say them out,\nand I’ll stand by and come in on the choruses.”\n\n“Then you’ll need to kneel down, and me too,” she said, laying the shawl\nout for that purpose. “You’ve got to put your hands up like this. It\nmakes you feel kind o’ good.”\n\nIt was a strange sight had there been anything but the buzzards to see\nit. Side by side on the narrow shawl knelt the two wanderers, the little\nprattling child and the reckless, hardened adventurer. Her chubby face,\nand his haggard, angular visage were both turned up to the cloudless\nheaven in heartfelt entreaty to that dread being with whom they were\nface to face, while the two voices--the one thin and clear, the other\ndeep and harsh--united in the entreaty for mercy and forgiveness. The\nprayer finished, they resumed their seat in the shadow of the boulder\nuntil the child fell asleep, nestling upon the broad breast of her\nprotector. He watched over her slumber for some time, but Nature proved\nto be too strong for him. For three days and three nights he had allowed\nhimself neither rest nor repose. Slowly the eyelids drooped over the\ntired eyes, and the head sunk lower and lower upon the breast, until the\nman’s grizzled beard was mixed with the gold tresses of his companion,\nand both slept the same deep and dreamless slumber.\n\nHad the wanderer remained awake for another half hour a strange sight\nwould have met his eyes. Far away on the extreme verge of the alkali\nplain there rose up a little spray of dust, very slight at first, and\nhardly to be distinguished from the mists of the distance, but gradually\ngrowing higher and broader until it formed a solid, well-defined cloud.\nThis cloud continued to increase in size until it became evident that it\ncould only be raised by a great multitude of moving creatures. In more\nfertile spots the observer would have come to the conclusion that one\nof those great herds of bisons which graze upon the prairie land was\napproaching him. This was obviously impossible in these arid wilds. As\nthe whirl of dust drew nearer to the solitary bluff upon which the two\ncastaways were reposing, the canvas-covered tilts of waggons and the\nfigures of armed horsemen began to show up through the haze, and the\napparition revealed itself as being a great caravan upon its journey for\nthe West. But what a caravan! When the head of it had reached the base\nof the mountains, the rear was not yet visible on the horizon. Right\nacross the enormous plain stretched the straggling array, waggons\nand carts, men on horseback, and men on foot. Innumerable women who\nstaggered along under burdens, and children who toddled beside the\nwaggons or peeped out from under the white coverings. This was evidently\nno ordinary party of immigrants, but rather some nomad people who had\nbeen compelled from stress of circumstances to seek themselves a new\ncountry. There rose through the clear air a confused clattering and\nrumbling from this great mass of humanity, with the creaking of wheels\nand the neighing of horses. Loud as it was, it was not sufficient to\nrouse the two tired wayfarers above them.\n\nAt the head of the column there rode a score or more of grave ironfaced\nmen, clad in sombre homespun garments and armed with rifles. On reaching\nthe base of the bluff they halted, and held a short council among\nthemselves.\n\n“The wells are to the right, my brothers,” said one, a hard-lipped,\nclean-shaven man with grizzly hair.\n\n“To the right of the Sierra Blanco--so we shall reach the Rio Grande,”\n said another.\n\n“Fear not for water,” cried a third. “He who could draw it from the\nrocks will not now abandon His own chosen people.”\n\n“Amen! Amen!” responded the whole party.\n\nThey were about to resume their journey when one of the youngest and\nkeenest-eyed uttered an exclamation and pointed up at the rugged crag\nabove them. From its summit there fluttered a little wisp of pink,\nshowing up hard and bright against the grey rocks behind. At the sight\nthere was a general reining up of horses and unslinging of guns, while\nfresh horsemen came galloping up to reinforce the vanguard. The word\n‘Redskins’ was on every lip.\n\n“There can’t be any number of Injuns here,” said the elderly man who\nappeared to be in command. “We have passed the Pawnees, and there are no\nother tribes until we cross the great mountains.”\n\n“Shall I go forward and see, Brother Stangerson,” asked one of the band.\n\n“And I,” “and I,” cried a dozen voices.\n\n“Leave your horses below and we will await you here,” the Elder\nanswered. In a moment the young fellows had dismounted, fastened their\nhorses, and were ascending the precipitous slope which led up to the\nobject which had excited their curiosity. They advanced rapidly and\nnoiselessly, with the confidence and dexterity of practised scouts.\nThe watchers from the plain below could see them flit from rock to rock\nuntil their figures stood out against the skyline. The young man who had\nfirst given the alarm was leading them. Suddenly his followers saw him\nthrow up his hands, as though overcome with astonishment, and on joining\nhim they were affected in the same way by the sight which met their\neyes.\n\nOn the little plateau which crowned the barren hill there stood a\nsingle giant boulder, and against this boulder there lay a tall man,\nlong-bearded and hard-featured, but of an excessive thinness. His placid\nface and regular breathing showed that he was fast asleep. Beside him\nlay a little child, with her round white arms encircling his brown\nsinewy neck, and her golden haired head resting upon the breast of his\nvelveteen tunic. Her rosy lips were parted, showing the regular line of\nsnow-white teeth within, and a playful smile played over her infantile\nfeatures. Her plump little white legs terminating in white socks and\nneat shoes with shining buckles, offered a strange contrast to the long\nshrivelled members of her companion. On the ledge of rock above this\nstrange couple there stood three solemn buzzards, who, at the sight of\nthe new comers uttered raucous screams of disappointment and flapped\nsullenly away.\n\nThe cries of the foul birds awoke the two sleepers who stared about [20]\nthem in bewilderment. The man staggered to his feet and looked down upon\nthe plain which had been so desolate when sleep had overtaken him, and\nwhich was now traversed by this enormous body of men and of beasts. His\nface assumed an expression of incredulity as he gazed, and he passed his\nboney hand over his eyes. “This is what they call delirium, I guess,”\n he muttered. The child stood beside him, holding on to the skirt of\nhis coat, and said nothing but looked all round her with the wondering\nquestioning gaze of childhood.\n\nThe rescuing party were speedily able to convince the two castaways that\ntheir appearance was no delusion. One of them seized the little girl,\nand hoisted her upon his shoulder, while two others supported her gaunt\ncompanion, and assisted him towards the waggons.\n\n“My name is John Ferrier,” the wanderer explained; “me and that little\nun are all that’s left o’ twenty-one people. The rest is all dead o’\nthirst and hunger away down in the south.”\n\n“Is she your child?” asked someone.\n\n“I guess she is now,” the other cried, defiantly; “she’s mine ‘cause I\nsaved her. No man will take her from me. She’s Lucy Ferrier from this\nday on. Who are you, though?” he continued, glancing with curiosity at\nhis stalwart, sunburned rescuers; “there seems to be a powerful lot of\nye.”\n\n“Nigh upon ten thousand,” said one of the young men; “we are the\npersecuted children of God--the chosen of the Angel Merona.”\n\n“I never heard tell on him,” said the wanderer. “He appears to have\nchosen a fair crowd of ye.”\n\n“Do not jest at that which is sacred,” said the other sternly. “We are\nof those who believe in those sacred writings, drawn in Egyptian letters\non plates of beaten gold, which were handed unto the holy Joseph Smith\nat Palmyra. We have come from Nauvoo, in the State of Illinois, where we\nhad founded our temple. We have come to seek a refuge from the violent\nman and from the godless, even though it be the heart of the desert.”\n\nThe name of Nauvoo evidently recalled recollections to John Ferrier. “I\nsee,” he said, “you are the Mormons.”\n\n“We are the Mormons,” answered his companions with one voice.\n\n“And where are you going?”\n\n“We do not know. The hand of God is leading us under the person of our\nProphet. You must come before him. He shall say what is to be done with\nyou.”\n\nThey had reached the base of the hill by this time, and were surrounded\nby crowds of the pilgrims--pale-faced meek-looking women, strong\nlaughing children, and anxious earnest-eyed men. Many were the cries\nof astonishment and of commiseration which arose from them when they\nperceived the youth of one of the strangers and the destitution of the\nother. Their escort did not halt, however, but pushed on, followed by\na great crowd of Mormons, until they reached a waggon, which was\nconspicuous for its great size and for the gaudiness and smartness of\nits appearance. Six horses were yoked to it, whereas the others were\nfurnished with two, or, at most, four a-piece. Beside the driver there\nsat a man who could not have been more than thirty years of age, but\nwhose massive head and resolute expression marked him as a leader. He\nwas reading a brown-backed volume, but as the crowd approached he laid\nit aside, and listened attentively to an account of the episode. Then he\nturned to the two castaways.\n\n“If we take you with us,” he said, in solemn words, “it can only be as\nbelievers in our own creed. We shall have no wolves in our fold. Better\nfar that your bones should bleach in this wilderness than that you\nshould prove to be that little speck of decay which in time corrupts the\nwhole fruit. Will you come with us on these terms?”\n\n“Guess I’ll come with you on any terms,” said Ferrier, with such\nemphasis that the grave Elders could not restrain a smile. The leader\nalone retained his stern, impressive expression.\n\n“Take him, Brother Stangerson,” he said, “give him food and drink,\nand the child likewise. Let it be your task also to teach him our holy\ncreed. We have delayed long enough. Forward! On, on to Zion!”\n\n“On, on to Zion!” cried the crowd of Mormons, and the words rippled down\nthe long caravan, passing from mouth to mouth until they died away in a\ndull murmur in the far distance. With a cracking of whips and a creaking\nof wheels the great waggons got into motion, and soon the whole caravan\nwas winding along once more. The Elder to whose care the two waifs\nhad been committed, led them to his waggon, where a meal was already\nawaiting them.\n\n“You shall remain here,” he said. “In a few days you will have recovered\nfrom your fatigues. In the meantime, remember that now and for ever you\nare of our religion. Brigham Young has said it, and he has spoken with\nthe voice of Joseph Smith, which is the voice of God.”\n\n\n\n\nCHAPTER II. THE FLOWER OF UTAH.\n\n\nTHIS is not the place to commemorate the trials and privations endured\nby the immigrant Mormons before they came to their final haven. From the\nshores of the Mississippi to the western slopes of the Rocky Mountains\nthey had struggled on with a constancy almost unparalleled in history.\nThe savage man, and the savage beast, hunger, thirst, fatigue, and\ndisease--every impediment which Nature could place in the way, had all\nbeen overcome with Anglo-Saxon tenacity. Yet the long journey and the\naccumulated terrors had shaken the hearts of the stoutest among them.\nThere was not one who did not sink upon his knees in heartfelt prayer\nwhen they saw the broad valley of Utah bathed in the sunlight beneath\nthem, and learned from the lips of their leader that this was the\npromised land, and that these virgin acres were to be theirs for\nevermore.\n\nYoung speedily proved himself to be a skilful administrator as well as a\nresolute chief. Maps were drawn and charts prepared, in which the future\ncity was sketched out. All around farms were apportioned and allotted in\nproportion to the standing of each individual. The tradesman was put\nto his trade and the artisan to his calling. In the town streets and\nsquares sprang up, as if by magic. In the country there was draining\nand hedging, planting and clearing, until the next summer saw the whole\ncountry golden with the wheat crop. Everything prospered in the strange\nsettlement. Above all, the great temple which they had erected in the\ncentre of the city grew ever taller and larger. From the first blush of\ndawn until the closing of the twilight, the clatter of the hammer\nand the rasp of the saw was never absent from the monument which the\nimmigrants erected to Him who had led them safe through many dangers.\n\nThe two castaways, John Ferrier and the little girl who had shared his\nfortunes and had been adopted as his daughter, accompanied the Mormons\nto the end of their great pilgrimage. Little Lucy Ferrier was borne\nalong pleasantly enough in Elder Stangerson’s waggon, a retreat which\nshe shared with the Mormon’s three wives and with his son, a headstrong\nforward boy of twelve. Having rallied, with the elasticity of childhood,\nfrom the shock caused by her mother’s death, she soon became a pet\nwith the women, and reconciled herself to this new life in her moving\ncanvas-covered home. In the meantime Ferrier having recovered from his\nprivations, distinguished himself as a useful guide and an indefatigable\nhunter. So rapidly did he gain the esteem of his new companions, that\nwhen they reached the end of their wanderings, it was unanimously agreed\nthat he should be provided with as large and as fertile a tract of land\nas any of the settlers, with the exception of Young himself, and of\nStangerson, Kemball, Johnston, and Drebber, who were the four principal\nElders.\n\nOn the farm thus acquired John Ferrier built himself a substantial\nlog-house, which received so many additions in succeeding years that it\ngrew into a roomy villa. He was a man of a practical turn of mind,\nkeen in his dealings and skilful with his hands. His iron constitution\nenabled him to work morning and evening at improving and tilling his\nlands. Hence it came about that his farm and all that belonged to\nhim prospered exceedingly. In three years he was better off than his\nneighbours, in six he was well-to-do, in nine he was rich, and in twelve\nthere were not half a dozen men in the whole of Salt Lake City who could\ncompare with him. From the great inland sea to the distant Wahsatch\nMountains there was no name better known than that of John Ferrier.\n\nThere was one way and only one in which he offended the susceptibilities\nof his co-religionists. No argument or persuasion could ever induce him\nto set up a female establishment after the manner of his companions. He\nnever gave reasons for this persistent refusal, but contented himself by\nresolutely and inflexibly adhering to his determination. There were some\nwho accused him of lukewarmness in his adopted religion, and others who\nput it down to greed of wealth and reluctance to incur expense. Others,\nagain, spoke of some early love affair, and of a fair-haired girl who\nhad pined away on the shores of the Atlantic. Whatever the reason,\nFerrier remained strictly celibate. In every other respect he conformed\nto the religion of the young settlement, and gained the name of being an\northodox and straight-walking man.\n\nLucy Ferrier grew up within the log-house, and assisted her adopted\nfather in all his undertakings. The keen air of the mountains and the\nbalsamic odour of the pine trees took the place of nurse and mother to\nthe young girl. As year succeeded to year she grew taller and stronger,\nher cheek more rudy, and her step more elastic. Many a wayfarer upon\nthe high road which ran by Ferrier’s farm felt long-forgotten thoughts\nrevive in their mind as they watched her lithe girlish figure tripping\nthrough the wheatfields, or met her mounted upon her father’s mustang,\nand managing it with all the ease and grace of a true child of the West.\nSo the bud blossomed into a flower, and the year which saw her father\nthe richest of the farmers left her as fair a specimen of American\ngirlhood as could be found in the whole Pacific slope.\n\nIt was not the father, however, who first discovered that the child had\ndeveloped into the woman. It seldom is in such cases. That mysterious\nchange is too subtle and too gradual to be measured by dates. Least of\nall does the maiden herself know it until the tone of a voice or the\ntouch of a hand sets her heart thrilling within her, and she learns,\nwith a mixture of pride and of fear, that a new and a larger nature has\nawoken within her. There are few who cannot recall that day and remember\nthe one little incident which heralded the dawn of a new life. In the\ncase of Lucy Ferrier the occasion was serious enough in itself, apart\nfrom its future influence on her destiny and that of many besides.\n\nIt was a warm June morning, and the Latter Day Saints were as busy as\nthe bees whose hive they have chosen for their emblem. In the fields and\nin the streets rose the same hum of human industry. Down the dusty high\nroads defiled long streams of heavily-laden mules, all heading to the\nwest, for the gold fever had broken out in California, and the Overland\nRoute lay through the City of the Elect. There, too, were droves of\nsheep and bullocks coming in from the outlying pasture lands, and trains\nof tired immigrants, men and horses equally weary of their interminable\njourney. Through all this motley assemblage, threading her way with the\nskill of an accomplished rider, there galloped Lucy Ferrier, her fair\nface flushed with the exercise and her long chestnut hair floating out\nbehind her. She had a commission from her father in the City, and was\ndashing in as she had done many a time before, with all the fearlessness\nof youth, thinking only of her task and how it was to be performed. The\ntravel-stained adventurers gazed after her in astonishment, and even\nthe unemotional Indians, journeying in with their pelties, relaxed their\naccustomed stoicism as they marvelled at the beauty of the pale-faced\nmaiden.\n\nShe had reached the outskirts of the city when she found the road\nblocked by a great drove of cattle, driven by a half-dozen wild-looking\nherdsmen from the plains. In her impatience she endeavoured to pass this\nobstacle by pushing her horse into what appeared to be a gap. Scarcely\nhad she got fairly into it, however, before the beasts closed in behind\nher, and she found herself completely imbedded in the moving stream of\nfierce-eyed, long-horned bullocks. Accustomed as she was to deal with\ncattle, she was not alarmed at her situation, but took advantage of\nevery opportunity to urge her horse on in the hopes of pushing her way\nthrough the cavalcade. Unfortunately the horns of one of the creatures,\neither by accident or design, came in violent contact with the flank of\nthe mustang, and excited it to madness. In an instant it reared up upon\nits hind legs with a snort of rage, and pranced and tossed in a way that\nwould have unseated any but a most skilful rider. The situation was full\nof peril. Every plunge of the excited horse brought it against the horns\nagain, and goaded it to fresh madness. It was all that the girl could\ndo to keep herself in the saddle, yet a slip would mean a terrible death\nunder the hoofs of the unwieldy and terrified animals. Unaccustomed to\nsudden emergencies, her head began to swim, and her grip upon the bridle\nto relax. Choked by the rising cloud of dust and by the steam from the\nstruggling creatures, she might have abandoned her efforts in despair,\nbut for a kindly voice at her elbow which assured her of assistance. At\nthe same moment a sinewy brown hand caught the frightened horse by\nthe curb, and forcing a way through the drove, soon brought her to the\noutskirts.\n\n“You’re not hurt, I hope, miss,” said her preserver, respectfully.\n\nShe looked up at his dark, fierce face, and laughed saucily. “I’m awful\nfrightened,” she said, naively; “whoever would have thought that Poncho\nwould have been so scared by a lot of cows?”\n\n“Thank God you kept your seat,” the other said earnestly. He was a tall,\nsavage-looking young fellow, mounted on a powerful roan horse, and\nclad in the rough dress of a hunter, with a long rifle slung over his\nshoulders. “I guess you are the daughter of John Ferrier,” he remarked,\n“I saw you ride down from his house. When you see him, ask him if he\nremembers the Jefferson Hopes of St. Louis. If he’s the same Ferrier, my\nfather and he were pretty thick.”\n\n“Hadn’t you better come and ask yourself?” she asked, demurely.\n\nThe young fellow seemed pleased at the suggestion, and his dark eyes\nsparkled with pleasure. “I’ll do so,” he said, “we’ve been in the\nmountains for two months, and are not over and above in visiting\ncondition. He must take us as he finds us.”\n\n“He has a good deal to thank you for, and so have I,” she answered,\n“he’s awful fond of me. If those cows had jumped on me he’d have never\ngot over it.”\n\n“Neither would I,” said her companion.\n\n“You! Well, I don’t see that it would make much matter to you, anyhow.\nYou ain’t even a friend of ours.”\n\nThe young hunter’s dark face grew so gloomy over this remark that Lucy\nFerrier laughed aloud.\n\n“There, I didn’t mean that,” she said; “of course, you are a friend now.\nYou must come and see us. Now I must push along, or father won’t trust\nme with his business any more. Good-bye!”\n\n“Good-bye,” he answered, raising his broad sombrero, and bending over\nher little hand. She wheeled her mustang round, gave it a cut with her\nriding-whip, and darted away down the broad road in a rolling cloud of\ndust.\n\nYoung Jefferson Hope rode on with his companions, gloomy and taciturn.\nHe and they had been among the Nevada Mountains prospecting for silver,\nand were returning to Salt Lake City in the hope of raising capital\nenough to work some lodes which they had discovered. He had been as keen\nas any of them upon the business until this sudden incident had drawn\nhis thoughts into another channel. The sight of the fair young girl,\nas frank and wholesome as the Sierra breezes, had stirred his volcanic,\nuntamed heart to its very depths. When she had vanished from his sight,\nhe realized that a crisis had come in his life, and that neither silver\nspeculations nor any other questions could ever be of such importance to\nhim as this new and all-absorbing one. The love which had sprung up in\nhis heart was not the sudden, changeable fancy of a boy, but rather the\nwild, fierce passion of a man of strong will and imperious temper. He\nhad been accustomed to succeed in all that he undertook. He swore in\nhis heart that he would not fail in this if human effort and human\nperseverance could render him successful.\n\nHe called on John Ferrier that night, and many times again, until\nhis face was a familiar one at the farm-house. John, cooped up in the\nvalley, and absorbed in his work, had had little chance of learning\nthe news of the outside world during the last twelve years. All this\nJefferson Hope was able to tell him, and in a style which interested\nLucy as well as her father. He had been a pioneer in California, and\ncould narrate many a strange tale of fortunes made and fortunes lost\nin those wild, halcyon days. He had been a scout too, and a trapper, a\nsilver explorer, and a ranchman. Wherever stirring adventures were to be\nhad, Jefferson Hope had been there in search of them. He soon became a\nfavourite with the old farmer, who spoke eloquently of his virtues. On\nsuch occasions, Lucy was silent, but her blushing cheek and her bright,\nhappy eyes, showed only too clearly that her young heart was no longer\nher own. Her honest father may not have observed these symptoms,\nbut they were assuredly not thrown away upon the man who had won her\naffections.\n\nIt was a summer evening when he came galloping down the road and pulled\nup at the gate. She was at the doorway, and came down to meet him. He\nthrew the bridle over the fence and strode up the pathway.\n\n“I am off, Lucy,” he said, taking her two hands in his, and gazing\ntenderly down into her face; “I won’t ask you to come with me now, but\nwill you be ready to come when I am here again?”\n\n“And when will that be?” she asked, blushing and laughing.\n\n“A couple of months at the outside. I will come and claim you then, my\ndarling. There’s no one who can stand between us.”\n\n“And how about father?” she asked.\n\n“He has given his consent, provided we get these mines working all\nright. I have no fear on that head.”\n\n“Oh, well; of course, if you and father have arranged it all, there’s\nno more to be said,” she whispered, with her cheek against his broad\nbreast.\n\n“Thank God!” he said, hoarsely, stooping and kissing her. “It is\nsettled, then. The longer I stay, the harder it will be to go. They are\nwaiting for me at the cañon. Good-bye, my own darling--good-bye. In two\nmonths you shall see me.”\n\nHe tore himself from her as he spoke, and, flinging himself upon his\nhorse, galloped furiously away, never even looking round, as though\nafraid that his resolution might fail him if he took one glance at\nwhat he was leaving. She stood at the gate, gazing after him until\nhe vanished from her sight. Then she walked back into the house, the\nhappiest girl in all Utah.\n\n\n\n\nCHAPTER III. JOHN FERRIER TALKS WITH THE PROPHET.\n\n\nTHREE weeks had passed since Jefferson Hope and his comrades had\ndeparted from Salt Lake City. John Ferrier’s heart was sore within him\nwhen he thought of the young man’s return, and of the impending loss of\nhis adopted child. Yet her bright and happy face reconciled him to\nthe arrangement more than any argument could have done. He had always\ndetermined, deep down in his resolute heart, that nothing would ever\ninduce him to allow his daughter to wed a Mormon. Such a marriage he\nregarded as no marriage at all, but as a shame and a disgrace. Whatever\nhe might think of the Mormon doctrines, upon that one point he was\ninflexible. He had to seal his mouth on the subject, however, for to\nexpress an unorthodox opinion was a dangerous matter in those days in\nthe Land of the Saints.\n\nYes, a dangerous matter--so dangerous that even the most saintly dared\nonly whisper their religious opinions with bated breath, lest something\nwhich fell from their lips might be misconstrued, and bring down a\nswift retribution upon them. The victims of persecution had now turned\npersecutors on their own account, and persecutors of the most\nterrible description. Not the Inquisition of Seville, nor the German\nVehm-gericht, nor the Secret Societies of Italy, were ever able to put\na more formidable machinery in motion than that which cast a cloud over\nthe State of Utah.\n\nIts invisibility, and the mystery which was attached to it, made\nthis organization doubly terrible. It appeared to be omniscient and\nomnipotent, and yet was neither seen nor heard. The man who held out\nagainst the Church vanished away, and none knew whither he had gone or\nwhat had befallen him. His wife and his children awaited him at home,\nbut no father ever returned to tell them how he had fared at the\nhands of his secret judges. A rash word or a hasty act was followed\nby annihilation, and yet none knew what the nature might be of this\nterrible power which was suspended over them. No wonder that men\nwent about in fear and trembling, and that even in the heart of the\nwilderness they dared not whisper the doubts which oppressed them.\n\nAt first this vague and terrible power was exercised only upon the\nrecalcitrants who, having embraced the Mormon faith, wished afterwards\nto pervert or to abandon it. Soon, however, it took a wider range. The\nsupply of adult women was running short, and polygamy without a female\npopulation on which to draw was a barren doctrine indeed. Strange\nrumours began to be bandied about--rumours of murdered immigrants and\nrifled camps in regions where Indians had never been seen. Fresh women\nappeared in the harems of the Elders--women who pined and wept, and\nbore upon their faces the traces of an unextinguishable horror. Belated\nwanderers upon the mountains spoke of gangs of armed men, masked,\nstealthy, and noiseless, who flitted by them in the darkness. These\ntales and rumours took substance and shape, and were corroborated and\nre-corroborated, until they resolved themselves into a definite name.\nTo this day, in the lonely ranches of the West, the name of the Danite\nBand, or the Avenging Angels, is a sinister and an ill-omened one.\n\nFuller knowledge of the organization which produced such terrible\nresults served to increase rather than to lessen the horror which it\ninspired in the minds of men. None knew who belonged to this ruthless\nsociety. The names of the participators in the deeds of blood and\nviolence done under the name of religion were kept profoundly secret.\nThe very friend to whom you communicated your misgivings as to the\nProphet and his mission, might be one of those who would come forth at\nnight with fire and sword to exact a terrible reparation. Hence every\nman feared his neighbour, and none spoke of the things which were\nnearest his heart.\n\nOne fine morning, John Ferrier was about to set out to his wheatfields,\nwhen he heard the click of the latch, and, looking through the window,\nsaw a stout, sandy-haired, middle-aged man coming up the pathway. His\nheart leapt to his mouth, for this was none other than the great Brigham\nYoung himself. Full of trepidation--for he knew that such a visit boded\nhim little good--Ferrier ran to the door to greet the Mormon chief. The\nlatter, however, received his salutations coldly, and followed him with\na stern face into the sitting-room.\n\n“Brother Ferrier,” he said, taking a seat, and eyeing the farmer keenly\nfrom under his light-coloured eyelashes, “the true believers have been\ngood friends to you. We picked you up when you were starving in the\ndesert, we shared our food with you, led you safe to the Chosen Valley,\ngave you a goodly share of land, and allowed you to wax rich under our\nprotection. Is not this so?”\n\n“It is so,” answered John Ferrier.\n\n“In return for all this we asked but one condition: that was, that you\nshould embrace the true faith, and conform in every way to its usages.\nThis you promised to do, and this, if common report says truly, you have\nneglected.”\n\n“And how have I neglected it?” asked Ferrier, throwing out his hands in\nexpostulation. “Have I not given to the common fund? Have I not attended\nat the Temple? Have I not----?”\n\n“Where are your wives?” asked Young, looking round him. “Call them in,\nthat I may greet them.”\n\n“It is true that I have not married,” Ferrier answered. “But women\nwere few, and there were many who had better claims than I. I was not a\nlonely man: I had my daughter to attend to my wants.”\n\n“It is of that daughter that I would speak to you,” said the leader\nof the Mormons. “She has grown to be the flower of Utah, and has found\nfavour in the eyes of many who are high in the land.”\n\nJohn Ferrier groaned internally.\n\n“There are stories of her which I would fain disbelieve--stories that\nshe is sealed to some Gentile. This must be the gossip of idle tongues.\nWhat is the thirteenth rule in the code of the sainted Joseph Smith?\n‘Let every maiden of the true faith marry one of the elect; for if\nshe wed a Gentile, she commits a grievous sin.’ This being so, it is\nimpossible that you, who profess the holy creed, should suffer your\ndaughter to violate it.”\n\nJohn Ferrier made no answer, but he played nervously with his\nriding-whip.\n\n“Upon this one point your whole faith shall be tested--so it has been\ndecided in the Sacred Council of Four. The girl is young, and we would\nnot have her wed grey hairs, neither would we deprive her of all\nchoice. We Elders have many heifers, [29] but our children must also\nbe provided. Stangerson has a son, and Drebber has a son, and either of\nthem would gladly welcome your daughter to their house. Let her choose\nbetween them. They are young and rich, and of the true faith. What say\nyou to that?”\n\nFerrier remained silent for some little time with his brows knitted.\n\n“You will give us time,” he said at last. “My daughter is very\nyoung--she is scarce of an age to marry.”\n\n“She shall have a month to choose,” said Young, rising from his seat.\n“At the end of that time she shall give her answer.”\n\nHe was passing through the door, when he turned, with flushed face and\nflashing eyes. “It were better for you, John Ferrier,” he thundered,\n“that you and she were now lying blanched skeletons upon the Sierra\nBlanco, than that you should put your weak wills against the orders of\nthe Holy Four!”\n\nWith a threatening gesture of his hand, he turned from the door, and\nFerrier heard his heavy step scrunching along the shingly path.\n\nHe was still sitting with his elbows upon his knees, considering how he\nshould broach the matter to his daughter when a soft hand was laid upon\nhis, and looking up, he saw her standing beside him. One glance at her\npale, frightened face showed him that she had heard what had passed.\n\n“I could not help it,” she said, in answer to his look. “His voice rang\nthrough the house. Oh, father, father, what shall we do?”\n\n“Don’t you scare yourself,” he answered, drawing her to him, and passing\nhis broad, rough hand caressingly over her chestnut hair. “We’ll fix it\nup somehow or another. You don’t find your fancy kind o’ lessening for\nthis chap, do you?”\n\nA sob and a squeeze of his hand was her only answer.\n\n“No; of course not. I shouldn’t care to hear you say you did. He’s a\nlikely lad, and he’s a Christian, which is more than these folk here, in\nspite o’ all their praying and preaching. There’s a party starting for\nNevada to-morrow, and I’ll manage to send him a message letting him know\nthe hole we are in. If I know anything o’ that young man, he’ll be back\nhere with a speed that would whip electro-telegraphs.”\n\nLucy laughed through her tears at her father’s description.\n\n“When he comes, he will advise us for the best. But it is for you that\nI am frightened, dear. One hears--one hears such dreadful stories about\nthose who oppose the Prophet: something terrible always happens to\nthem.”\n\n“But we haven’t opposed him yet,” her father answered. “It will be time\nto look out for squalls when we do. We have a clear month before us; at\nthe end of that, I guess we had best shin out of Utah.”\n\n“Leave Utah!”\n\n“That’s about the size of it.”\n\n“But the farm?”\n\n“We will raise as much as we can in money, and let the rest go. To tell\nthe truth, Lucy, it isn’t the first time I have thought of doing it. I\ndon’t care about knuckling under to any man, as these folk do to their\ndarned prophet. I’m a free-born American, and it’s all new to me. Guess\nI’m too old to learn. If he comes browsing about this farm, he might\nchance to run up against a charge of buckshot travelling in the opposite\ndirection.”\n\n“But they won’t let us leave,” his daughter objected.\n\n“Wait till Jefferson comes, and we’ll soon manage that. In the meantime,\ndon’t you fret yourself, my dearie, and don’t get your eyes swelled up,\nelse he’ll be walking into me when he sees you. There’s nothing to be\nafeared about, and there’s no danger at all.”\n\nJohn Ferrier uttered these consoling remarks in a very confident tone,\nbut she could not help observing that he paid unusual care to the\nfastening of the doors that night, and that he carefully cleaned and\nloaded the rusty old shotgun which hung upon the wall of his bedroom.\n\n\n\n\nCHAPTER IV. A FLIGHT FOR LIFE.\n\n\nON the morning which followed his interview with the Mormon Prophet,\nJohn Ferrier went in to Salt Lake City, and having found his\nacquaintance, who was bound for the Nevada Mountains, he entrusted him\nwith his message to Jefferson Hope. In it he told the young man of the\nimminent danger which threatened them, and how necessary it was that he\nshould return. Having done thus he felt easier in his mind, and returned\nhome with a lighter heart.\n\nAs he approached his farm, he was surprised to see a horse hitched to\neach of the posts of the gate. Still more surprised was he on entering\nto find two young men in possession of his sitting-room. One, with a\nlong pale face, was leaning back in the rocking-chair, with his feet\ncocked up upon the stove. The other, a bull-necked youth with coarse\nbloated features, was standing in front of the window with his hands in\nhis pocket, whistling a popular hymn. Both of them nodded to Ferrier as\nhe entered, and the one in the rocking-chair commenced the conversation.\n\n“Maybe you don’t know us,” he said. “This here is the son of Elder\nDrebber, and I’m Joseph Stangerson, who travelled with you in the desert\nwhen the Lord stretched out His hand and gathered you into the true\nfold.”\n\n“As He will all the nations in His own good time,” said the other in a\nnasal voice; “He grindeth slowly but exceeding small.”\n\nJohn Ferrier bowed coldly. He had guessed who his visitors were.\n\n“We have come,” continued Stangerson, “at the advice of our fathers to\nsolicit the hand of your daughter for whichever of us may seem good to\nyou and to her. As I have but four wives and Brother Drebber here has\nseven, it appears to me that my claim is the stronger one.”\n\n“Nay, nay, Brother Stangerson,” cried the other; “the question is not\nhow many wives we have, but how many we can keep. My father has now\ngiven over his mills to me, and I am the richer man.”\n\n“But my prospects are better,” said the other, warmly. “When the\nLord removes my father, I shall have his tanning yard and his leather\nfactory. Then I am your elder, and am higher in the Church.”\n\n“It will be for the maiden to decide,” rejoined young Drebber, smirking\nat his own reflection in the glass. “We will leave it all to her\ndecision.”\n\nDuring this dialogue, John Ferrier had stood fuming in the doorway,\nhardly able to keep his riding-whip from the backs of his two visitors.\n\n“Look here,” he said at last, striding up to them, “when my daughter\nsummons you, you can come, but until then I don’t want to see your faces\nagain.”\n\nThe two young Mormons stared at him in amazement. In their eyes this\ncompetition between them for the maiden’s hand was the highest of\nhonours both to her and her father.\n\n“There are two ways out of the room,” cried Ferrier; “there is the door,\nand there is the window. Which do you care to use?”\n\nHis brown face looked so savage, and his gaunt hands so threatening,\nthat his visitors sprang to their feet and beat a hurried retreat. The\nold farmer followed them to the door.\n\n“Let me know when you have settled which it is to be,” he said,\nsardonically.\n\n“You shall smart for this!” Stangerson cried, white with rage. “You have\ndefied the Prophet and the Council of Four. You shall rue it to the end\nof your days.”\n\n“The hand of the Lord shall be heavy upon you,” cried young Drebber; “He\nwill arise and smite you!”\n\n“Then I’ll start the smiting,” exclaimed Ferrier furiously, and would\nhave rushed upstairs for his gun had not Lucy seized him by the arm and\nrestrained him. Before he could escape from her, the clatter of horses’\nhoofs told him that they were beyond his reach.\n\n“The young canting rascals!” he exclaimed, wiping the perspiration from\nhis forehead; “I would sooner see you in your grave, my girl, than the\nwife of either of them.”\n\n“And so should I, father,” she answered, with spirit; “but Jefferson\nwill soon be here.”\n\n“Yes. It will not be long before he comes. The sooner the better, for we\ndo not know what their next move may be.”\n\nIt was, indeed, high time that someone capable of giving advice and\nhelp should come to the aid of the sturdy old farmer and his adopted\ndaughter. In the whole history of the settlement there had never been\nsuch a case of rank disobedience to the authority of the Elders. If\nminor errors were punished so sternly, what would be the fate of this\narch rebel. Ferrier knew that his wealth and position would be of no\navail to him. Others as well known and as rich as himself had been\nspirited away before now, and their goods given over to the Church. He\nwas a brave man, but he trembled at the vague, shadowy terrors which\nhung over him. Any known danger he could face with a firm lip, but\nthis suspense was unnerving. He concealed his fears from his daughter,\nhowever, and affected to make light of the whole matter, though she,\nwith the keen eye of love, saw plainly that he was ill at ease.\n\nHe expected that he would receive some message or remonstrance from\nYoung as to his conduct, and he was not mistaken, though it came in an\nunlooked-for manner. Upon rising next morning he found, to his surprise,\na small square of paper pinned on to the coverlet of his bed just over\nhis chest. On it was printed, in bold straggling letters:--\n\n“Twenty-nine days are given you for amendment, and then----”\n\nThe dash was more fear-inspiring than any threat could have been. How\nthis warning came into his room puzzled John Ferrier sorely, for his\nservants slept in an outhouse, and the doors and windows had all been\nsecured. He crumpled the paper up and said nothing to his daughter, but\nthe incident struck a chill into his heart. The twenty-nine days were\nevidently the balance of the month which Young had promised. What\nstrength or courage could avail against an enemy armed with such\nmysterious powers? The hand which fastened that pin might have struck\nhim to the heart, and he could never have known who had slain him.\n\nStill more shaken was he next morning. They had sat down to their\nbreakfast when Lucy with a cry of surprise pointed upwards. In the\ncentre of the ceiling was scrawled, with a burned stick apparently,\nthe number 28. To his daughter it was unintelligible, and he did not\nenlighten her. That night he sat up with his gun and kept watch and\nward. He saw and he heard nothing, and yet in the morning a great 27 had\nbeen painted upon the outside of his door.\n\nThus day followed day; and as sure as morning came he found that his\nunseen enemies had kept their register, and had marked up in some\nconspicuous position how many days were still left to him out of the\nmonth of grace. Sometimes the fatal numbers appeared upon the walls,\nsometimes upon the floors, occasionally they were on small placards\nstuck upon the garden gate or the railings. With all his vigilance John\nFerrier could not discover whence these daily warnings proceeded. A\nhorror which was almost superstitious came upon him at the sight of\nthem. He became haggard and restless, and his eyes had the troubled look\nof some hunted creature. He had but one hope in life now, and that was\nfor the arrival of the young hunter from Nevada.\n\nTwenty had changed to fifteen and fifteen to ten, but there was no news\nof the absentee. One by one the numbers dwindled down, and still there\ncame no sign of him. Whenever a horseman clattered down the road, or a\ndriver shouted at his team, the old farmer hurried to the gate thinking\nthat help had arrived at last. At last, when he saw five give way to\nfour and that again to three, he lost heart, and abandoned all hope of\nescape. Single-handed, and with his limited knowledge of the mountains\nwhich surrounded the settlement, he knew that he was powerless. The\nmore-frequented roads were strictly watched and guarded, and none could\npass along them without an order from the Council. Turn which way he\nwould, there appeared to be no avoiding the blow which hung over him.\nYet the old man never wavered in his resolution to part with life itself\nbefore he consented to what he regarded as his daughter’s dishonour.\n\nHe was sitting alone one evening pondering deeply over his troubles, and\nsearching vainly for some way out of them. That morning had shown the\nfigure 2 upon the wall of his house, and the next day would be the last\nof the allotted time. What was to happen then? All manner of vague and\nterrible fancies filled his imagination. And his daughter--what was to\nbecome of her after he was gone? Was there no escape from the invisible\nnetwork which was drawn all round them. He sank his head upon the table\nand sobbed at the thought of his own impotence.\n\nWhat was that? In the silence he heard a gentle scratching sound--low,\nbut very distinct in the quiet of the night. It came from the door of\nthe house. Ferrier crept into the hall and listened intently. There\nwas a pause for a few moments, and then the low insidious sound was\nrepeated. Someone was evidently tapping very gently upon one of the\npanels of the door. Was it some midnight assassin who had come to carry\nout the murderous orders of the secret tribunal? Or was it some agent\nwho was marking up that the last day of grace had arrived. John Ferrier\nfelt that instant death would be better than the suspense which shook\nhis nerves and chilled his heart. Springing forward he drew the bolt and\nthrew the door open.\n\nOutside all was calm and quiet. The night was fine, and the stars were\ntwinkling brightly overhead. The little front garden lay before the\nfarmer’s eyes bounded by the fence and gate, but neither there nor on\nthe road was any human being to be seen. With a sigh of relief, Ferrier\nlooked to right and to left, until happening to glance straight down at\nhis own feet he saw to his astonishment a man lying flat upon his face\nupon the ground, with arms and legs all asprawl.\n\nSo unnerved was he at the sight that he leaned up against the wall with\nhis hand to his throat to stifle his inclination to call out. His first\nthought was that the prostrate figure was that of some wounded or dying\nman, but as he watched it he saw it writhe along the ground and into the\nhall with the rapidity and noiselessness of a serpent. Once within the\nhouse the man sprang to his feet, closed the door, and revealed to the\nastonished farmer the fierce face and resolute expression of Jefferson\nHope.\n\n“Good God!” gasped John Ferrier. “How you scared me! Whatever made you\ncome in like that.”\n\n“Give me food,” the other said, hoarsely. “I have had no time for bite\nor sup for eight-and-forty hours.” He flung himself upon the [21] cold\nmeat and bread which were still lying upon the table from his host’s\nsupper, and devoured it voraciously. “Does Lucy bear up well?” he asked,\nwhen he had satisfied his hunger.\n\n“Yes. She does not know the danger,” her father answered.\n\n“That is well. The house is watched on every side. That is why I crawled\nmy way up to it. They may be darned sharp, but they’re not quite sharp\nenough to catch a Washoe hunter.”\n\nJohn Ferrier felt a different man now that he realized that he had\na devoted ally. He seized the young man’s leathery hand and wrung it\ncordially. “You’re a man to be proud of,” he said. “There are not many\nwho would come to share our danger and our troubles.”\n\n“You’ve hit it there, pard,” the young hunter answered. “I have a\nrespect for you, but if you were alone in this business I’d think twice\nbefore I put my head into such a hornet’s nest. It’s Lucy that brings me\nhere, and before harm comes on her I guess there will be one less o’ the\nHope family in Utah.”\n\n“What are we to do?”\n\n“To-morrow is your last day, and unless you act to-night you are lost.\nI have a mule and two horses waiting in the Eagle Ravine. How much money\nhave you?”\n\n“Two thousand dollars in gold, and five in notes.”\n\n“That will do. I have as much more to add to it. We must push for Carson\nCity through the mountains. You had best wake Lucy. It is as well that\nthe servants do not sleep in the house.”\n\nWhile Ferrier was absent, preparing his daughter for the approaching\njourney, Jefferson Hope packed all the eatables that he could find into\na small parcel, and filled a stoneware jar with water, for he knew by\nexperience that the mountain wells were few and far between. He had\nhardly completed his arrangements before the farmer returned with his\ndaughter all dressed and ready for a start. The greeting between the\nlovers was warm, but brief, for minutes were precious, and there was\nmuch to be done.\n\n“We must make our start at once,” said Jefferson Hope, speaking in a low\nbut resolute voice, like one who realizes the greatness of the peril,\nbut has steeled his heart to meet it. “The front and back entrances are\nwatched, but with caution we may get away through the side window and\nacross the fields. Once on the road we are only two miles from the\nRavine where the horses are waiting. By daybreak we should be half-way\nthrough the mountains.”\n\n“What if we are stopped,” asked Ferrier.\n\nHope slapped the revolver butt which protruded from the front of his\ntunic. “If they are too many for us we shall take two or three of them\nwith us,” he said with a sinister smile.\n\nThe lights inside the house had all been extinguished, and from the\ndarkened window Ferrier peered over the fields which had been his own,\nand which he was now about to abandon for ever. He had long nerved\nhimself to the sacrifice, however, and the thought of the honour and\nhappiness of his daughter outweighed any regret at his ruined fortunes.\nAll looked so peaceful and happy, the rustling trees and the broad\nsilent stretch of grain-land, that it was difficult to realize that\nthe spirit of murder lurked through it all. Yet the white face and set\nexpression of the young hunter showed that in his approach to the house\nhe had seen enough to satisfy him upon that head.\n\nFerrier carried the bag of gold and notes, Jefferson Hope had the scanty\nprovisions and water, while Lucy had a small bundle containing a few\nof her more valued possessions. Opening the window very slowly and\ncarefully, they waited until a dark cloud had somewhat obscured the\nnight, and then one by one passed through into the little garden. With\nbated breath and crouching figures they stumbled across it, and gained\nthe shelter of the hedge, which they skirted until they came to the gap\nwhich opened into the cornfields. They had just reached this point when\nthe young man seized his two companions and dragged them down into the\nshadow, where they lay silent and trembling.\n\nIt was as well that his prairie training had given Jefferson Hope the\nears of a lynx. He and his friends had hardly crouched down before the\nmelancholy hooting of a mountain owl was heard within a few yards\nof them, which was immediately answered by another hoot at a small\ndistance. At the same moment a vague shadowy figure emerged from the\ngap for which they had been making, and uttered the plaintive signal cry\nagain, on which a second man appeared out of the obscurity.\n\n“To-morrow at midnight,” said the first who appeared to be in authority.\n“When the Whip-poor-Will calls three times.”\n\n“It is well,” returned the other. “Shall I tell Brother Drebber?”\n\n“Pass it on to him, and from him to the others. Nine to seven!”\n\n“Seven to five!” repeated the other, and the two figures flitted away\nin different directions. Their concluding words had evidently been some\nform of sign and countersign. The instant that their footsteps had died\naway in the distance, Jefferson Hope sprang to his feet, and helping his\ncompanions through the gap, led the way across the fields at the top\nof his speed, supporting and half-carrying the girl when her strength\nappeared to fail her.\n\n“Hurry on! hurry on!” he gasped from time to time. “We are through the\nline of sentinels. Everything depends on speed. Hurry on!”\n\nOnce on the high road they made rapid progress. Only once did they\nmeet anyone, and then they managed to slip into a field, and so avoid\nrecognition. Before reaching the town the hunter branched away into a\nrugged and narrow footpath which led to the mountains. Two dark jagged\npeaks loomed above them through the darkness, and the defile which led\nbetween them was the Eagle Cañon in which the horses were awaiting them.\nWith unerring instinct Jefferson Hope picked his way among the great\nboulders and along the bed of a dried-up watercourse, until he came to\nthe retired corner, screened with rocks, where the faithful animals had\nbeen picketed. The girl was placed upon the mule, and old Ferrier upon\none of the horses, with his money-bag, while Jefferson Hope led the\nother along the precipitous and dangerous path.\n\nIt was a bewildering route for anyone who was not accustomed to face\nNature in her wildest moods. On the one side a great crag towered up a\nthousand feet or more, black, stern, and menacing, with long basaltic\ncolumns upon its rugged surface like the ribs of some petrified monster.\nOn the other hand a wild chaos of boulders and debris made all advance\nimpossible. Between the two ran the irregular track, so narrow in places\nthat they had to travel in Indian file, and so rough that only practised\nriders could have traversed it at all. Yet in spite of all dangers and\ndifficulties, the hearts of the fugitives were light within them,\nfor every step increased the distance between them and the terrible\ndespotism from which they were flying.\n\nThey soon had a proof, however, that they were still within the\njurisdiction of the Saints. They had reached the very wildest and most\ndesolate portion of the pass when the girl gave a startled cry, and\npointed upwards. On a rock which overlooked the track, showing out dark\nand plain against the sky, there stood a solitary sentinel. He saw them\nas soon as they perceived him, and his military challenge of “Who goes\nthere?” rang through the silent ravine.\n\n“Travellers for Nevada,” said Jefferson Hope, with his hand upon the\nrifle which hung by his saddle.\n\nThey could see the lonely watcher fingering his gun, and peering down at\nthem as if dissatisfied at their reply.\n\n“By whose permission?” he asked.\n\n“The Holy Four,” answered Ferrier. His Mormon experiences had taught him\nthat that was the highest authority to which he could refer.\n\n“Nine from seven,” cried the sentinel.\n\n“Seven from five,” returned Jefferson Hope promptly, remembering the\ncountersign which he had heard in the garden.\n\n“Pass, and the Lord go with you,” said the voice from above. Beyond his\npost the path broadened out, and the horses were able to break into a\ntrot. Looking back, they could see the solitary watcher leaning upon\nhis gun, and knew that they had passed the outlying post of the chosen\npeople, and that freedom lay before them.\n\n\n\n\nCHAPTER V. THE AVENGING ANGELS.\n\n\nALL night their course lay through intricate defiles and over irregular\nand rock-strewn paths. More than once they lost their way, but Hope’s\nintimate knowledge of the mountains enabled them to regain the track\nonce more. When morning broke, a scene of marvellous though savage\nbeauty lay before them. In every direction the great snow-capped peaks\nhemmed them in, peeping over each other’s shoulders to the far horizon.\nSo steep were the rocky banks on either side of them, that the larch\nand the pine seemed to be suspended over their heads, and to need only a\ngust of wind to come hurtling down upon them. Nor was the fear entirely\nan illusion, for the barren valley was thickly strewn with trees and\nboulders which had fallen in a similar manner. Even as they passed,\na great rock came thundering down with a hoarse rattle which woke\nthe echoes in the silent gorges, and startled the weary horses into a\ngallop.\n\nAs the sun rose slowly above the eastern horizon, the caps of the great\nmountains lit up one after the other, like lamps at a festival, until\nthey were all ruddy and glowing. The magnificent spectacle cheered the\nhearts of the three fugitives and gave them fresh energy. At a wild\ntorrent which swept out of a ravine they called a halt and watered their\nhorses, while they partook of a hasty breakfast. Lucy and her father\nwould fain have rested longer, but Jefferson Hope was inexorable. “They\nwill be upon our track by this time,” he said. “Everything depends upon\nour speed. Once safe in Carson we may rest for the remainder of our\nlives.”\n\nDuring the whole of that day they struggled on through the defiles, and\nby evening they calculated that they were more than thirty miles from\ntheir enemies. At night-time they chose the base of a beetling crag,\nwhere the rocks offered some protection from the chill wind, and there\nhuddled together for warmth, they enjoyed a few hours’ sleep. Before\ndaybreak, however, they were up and on their way once more. They had\nseen no signs of any pursuers, and Jefferson Hope began to think that\nthey were fairly out of the reach of the terrible organization whose\nenmity they had incurred. He little knew how far that iron grasp could\nreach, or how soon it was to close upon them and crush them.\n\nAbout the middle of the second day of their flight their scanty store\nof provisions began to run out. This gave the hunter little uneasiness,\nhowever, for there was game to be had among the mountains, and he had\nfrequently before had to depend upon his rifle for the needs of life.\nChoosing a sheltered nook, he piled together a few dried branches and\nmade a blazing fire, at which his companions might warm themselves, for\nthey were now nearly five thousand feet above the sea level, and the air\nwas bitter and keen. Having tethered the horses, and bade Lucy adieu,\nhe threw his gun over his shoulder, and set out in search of whatever\nchance might throw in his way. Looking back he saw the old man and the\nyoung girl crouching over the blazing fire, while the three animals\nstood motionless in the back-ground. Then the intervening rocks hid them\nfrom his view.\n\nHe walked for a couple of miles through one ravine after another without\nsuccess, though from the marks upon the bark of the trees, and other\nindications, he judged that there were numerous bears in the vicinity.\nAt last, after two or three hours’ fruitless search, he was thinking of\nturning back in despair, when casting his eyes upwards he saw a sight\nwhich sent a thrill of pleasure through his heart. On the edge of a\njutting pinnacle, three or four hundred feet above him, there stood a\ncreature somewhat resembling a sheep in appearance, but armed with a\npair of gigantic horns. The big-horn--for so it is called--was acting,\nprobably, as a guardian over a flock which were invisible to the hunter;\nbut fortunately it was heading in the opposite direction, and had not\nperceived him. Lying on his face, he rested his rifle upon a rock, and\ntook a long and steady aim before drawing the trigger. The animal sprang\ninto the air, tottered for a moment upon the edge of the precipice, and\nthen came crashing down into the valley beneath.\n\nThe creature was too unwieldy to lift, so the hunter contented himself\nwith cutting away one haunch and part of the flank. With this trophy\nover his shoulder, he hastened to retrace his steps, for the evening was\nalready drawing in. He had hardly started, however, before he realized\nthe difficulty which faced him. In his eagerness he had wandered far\npast the ravines which were known to him, and it was no easy matter\nto pick out the path which he had taken. The valley in which he found\nhimself divided and sub-divided into many gorges, which were so like\neach other that it was impossible to distinguish one from the other.\nHe followed one for a mile or more until he came to a mountain torrent\nwhich he was sure that he had never seen before. Convinced that he had\ntaken the wrong turn, he tried another, but with the same result. Night\nwas coming on rapidly, and it was almost dark before he at last found\nhimself in a defile which was familiar to him. Even then it was no easy\nmatter to keep to the right track, for the moon had not yet risen, and\nthe high cliffs on either side made the obscurity more profound. Weighed\ndown with his burden, and weary from his exertions, he stumbled along,\nkeeping up his heart by the reflection that every step brought him\nnearer to Lucy, and that he carried with him enough to ensure them food\nfor the remainder of their journey.\n\nHe had now come to the mouth of the very defile in which he had left\nthem. Even in the darkness he could recognize the outline of the cliffs\nwhich bounded it. They must, he reflected, be awaiting him anxiously,\nfor he had been absent nearly five hours. In the gladness of his heart\nhe put his hands to his mouth and made the glen re-echo to a loud halloo\nas a signal that he was coming. He paused and listened for an answer.\nNone came save his own cry, which clattered up the dreary silent\nravines, and was borne back to his ears in countless repetitions. Again\nhe shouted, even louder than before, and again no whisper came back from\nthe friends whom he had left such a short time ago. A vague, nameless\ndread came over him, and he hurried onwards frantically, dropping the\nprecious food in his agitation.\n\nWhen he turned the corner, he came full in sight of the spot where the\nfire had been lit. There was still a glowing pile of wood ashes there,\nbut it had evidently not been tended since his departure. The same\ndead silence still reigned all round. With his fears all changed to\nconvictions, he hurried on. There was no living creature near the\nremains of the fire: animals, man, maiden, all were gone. It was only\ntoo clear that some sudden and terrible disaster had occurred during\nhis absence--a disaster which had embraced them all, and yet had left no\ntraces behind it.\n\nBewildered and stunned by this blow, Jefferson Hope felt his head spin\nround, and had to lean upon his rifle to save himself from falling. He\nwas essentially a man of action, however, and speedily recovered from\nhis temporary impotence. Seizing a half-consumed piece of wood from the\nsmouldering fire, he blew it into a flame, and proceeded with its help\nto examine the little camp. The ground was all stamped down by the feet\nof horses, showing that a large party of mounted men had overtaken\nthe fugitives, and the direction of their tracks proved that they had\nafterwards turned back to Salt Lake City. Had they carried back both of\nhis companions with them? Jefferson Hope had almost persuaded himself\nthat they must have done so, when his eye fell upon an object which made\nevery nerve of his body tingle within him. A little way on one side of\nthe camp was a low-lying heap of reddish soil, which had assuredly\nnot been there before. There was no mistaking it for anything but a\nnewly-dug grave. As the young hunter approached it, he perceived that a\nstick had been planted on it, with a sheet of paper stuck in the cleft\nfork of it. The inscription upon the paper was brief, but to the point:\n\n JOHN FERRIER,\n FORMERLY OF SALT LAKE CITY, [22]\n Died August 4th, 1860.\n\nThe sturdy old man, whom he had left so short a time before, was gone,\nthen, and this was all his epitaph. Jefferson Hope looked wildly round\nto see if there was a second grave, but there was no sign of one. Lucy\nhad been carried back by their terrible pursuers to fulfil her original\ndestiny, by becoming one of the harem of the Elder’s son. As the young\nfellow realized the certainty of her fate, and his own powerlessness to\nprevent it, he wished that he, too, was lying with the old farmer in his\nlast silent resting-place.\n\nAgain, however, his active spirit shook off the lethargy which springs\nfrom despair. If there was nothing else left to him, he could at least\ndevote his life to revenge. With indomitable patience and perseverance,\nJefferson Hope possessed also a power of sustained vindictiveness, which\nhe may have learned from the Indians amongst whom he had lived. As he\nstood by the desolate fire, he felt that the only one thing which could\nassuage his grief would be thorough and complete retribution, brought\nby his own hand upon his enemies. His strong will and untiring energy\nshould, he determined, be devoted to that one end. With a grim, white\nface, he retraced his steps to where he had dropped the food, and having\nstirred up the smouldering fire, he cooked enough to last him for a\nfew days. This he made up into a bundle, and, tired as he was, he\nset himself to walk back through the mountains upon the track of the\navenging angels.\n\nFor five days he toiled footsore and weary through the defiles which he\nhad already traversed on horseback. At night he flung himself down among\nthe rocks, and snatched a few hours of sleep; but before daybreak he was\nalways well on his way. On the sixth day, he reached the Eagle Cañon,\nfrom which they had commenced their ill-fated flight. Thence he could\nlook down upon the home of the saints. Worn and exhausted, he leaned\nupon his rifle and shook his gaunt hand fiercely at the silent\nwidespread city beneath him. As he looked at it, he observed that\nthere were flags in some of the principal streets, and other signs of\nfestivity. He was still speculating as to what this might mean when he\nheard the clatter of horse’s hoofs, and saw a mounted man riding towards\nhim. As he approached, he recognized him as a Mormon named Cowper, to\nwhom he had rendered services at different times. He therefore accosted\nhim when he got up to him, with the object of finding out what Lucy\nFerrier’s fate had been.\n\n“I am Jefferson Hope,” he said. “You remember me.”\n\nThe Mormon looked at him with undisguised astonishment--indeed, it was\ndifficult to recognize in this tattered, unkempt wanderer, with ghastly\nwhite face and fierce, wild eyes, the spruce young hunter of former\ndays. Having, however, at last, satisfied himself as to his identity,\nthe man’s surprise changed to consternation.\n\n“You are mad to come here,” he cried. “It is as much as my own life is\nworth to be seen talking with you. There is a warrant against you from\nthe Holy Four for assisting the Ferriers away.”\n\n“I don’t fear them, or their warrant,” Hope said, earnestly. “You must\nknow something of this matter, Cowper. I conjure you by everything you\nhold dear to answer a few questions. We have always been friends. For\nGod’s sake, don’t refuse to answer me.”\n\n“What is it?” the Mormon asked uneasily. “Be quick. The very rocks have\nears and the trees eyes.”\n\n“What has become of Lucy Ferrier?”\n\n“She was married yesterday to young Drebber. Hold up, man, hold up, you\nhave no life left in you.”\n\n“Don’t mind me,” said Hope faintly. He was white to the very lips, and\nhad sunk down on the stone against which he had been leaning. “Married,\nyou say?”\n\n“Married yesterday--that’s what those flags are for on the Endowment\nHouse. There was some words between young Drebber and young Stangerson\nas to which was to have her. They’d both been in the party that followed\nthem, and Stangerson had shot her father, which seemed to give him the\nbest claim; but when they argued it out in council, Drebber’s party was\nthe stronger, so the Prophet gave her over to him. No one won’t have\nher very long though, for I saw death in her face yesterday. She is more\nlike a ghost than a woman. Are you off, then?”\n\n“Yes, I am off,” said Jefferson Hope, who had risen from his seat. His\nface might have been chiselled out of marble, so hard and set was its\nexpression, while its eyes glowed with a baleful light.\n\n“Where are you going?”\n\n“Never mind,” he answered; and, slinging his weapon over his shoulder,\nstrode off down the gorge and so away into the heart of the mountains to\nthe haunts of the wild beasts. Amongst them all there was none so fierce\nand so dangerous as himself.\n\nThe prediction of the Mormon was only too well fulfilled. Whether it was\nthe terrible death of her father or the effects of the hateful marriage\ninto which she had been forced, poor Lucy never held up her head again,\nbut pined away and died within a month. Her sottish husband, who had\nmarried her principally for the sake of John Ferrier’s property, did not\naffect any great grief at his bereavement; but his other wives mourned\nover her, and sat up with her the night before the burial, as is the\nMormon custom. They were grouped round the bier in the early hours of\nthe morning, when, to their inexpressible fear and astonishment,\nthe door was flung open, and a savage-looking, weather-beaten man in\ntattered garments strode into the room. Without a glance or a word to\nthe cowering women, he walked up to the white silent figure which had\nonce contained the pure soul of Lucy Ferrier. Stooping over her, he\npressed his lips reverently to her cold forehead, and then, snatching\nup her hand, he took the wedding-ring from her finger. “She shall not be\nburied in that,” he cried with a fierce snarl, and before an alarm could\nbe raised sprang down the stairs and was gone. So strange and so brief\nwas the episode, that the watchers might have found it hard to believe\nit themselves or persuade other people of it, had it not been for the\nundeniable fact that the circlet of gold which marked her as having been\na bride had disappeared.\n\nFor some months Jefferson Hope lingered among the mountains, leading\na strange wild life, and nursing in his heart the fierce desire for\nvengeance which possessed him. Tales were told in the City of the weird\nfigure which was seen prowling about the suburbs, and which haunted\nthe lonely mountain gorges. Once a bullet whistled through Stangerson’s\nwindow and flattened itself upon the wall within a foot of him. On\nanother occasion, as Drebber passed under a cliff a great boulder\ncrashed down on him, and he only escaped a terrible death by throwing\nhimself upon his face. The two young Mormons were not long in\ndiscovering the reason of these attempts upon their lives, and led\nrepeated expeditions into the mountains in the hope of capturing or\nkilling their enemy, but always without success. Then they adopted the\nprecaution of never going out alone or after nightfall, and of having\ntheir houses guarded. After a time they were able to relax these\nmeasures, for nothing was either heard or seen of their opponent, and\nthey hoped that time had cooled his vindictiveness.\n\nFar from doing so, it had, if anything, augmented it. The hunter’s mind\nwas of a hard, unyielding nature, and the predominant idea of revenge\nhad taken such complete possession of it that there was no room for\nany other emotion. He was, however, above all things practical. He soon\nrealized that even his iron constitution could not stand the incessant\nstrain which he was putting upon it. Exposure and want of wholesome food\nwere wearing him out. If he died like a dog among the mountains, what\nwas to become of his revenge then? And yet such a death was sure to\novertake him if he persisted. He felt that that was to play his enemy’s\ngame, so he reluctantly returned to the old Nevada mines, there to\nrecruit his health and to amass money enough to allow him to pursue his\nobject without privation.\n\nHis intention had been to be absent a year at the most, but a\ncombination of unforeseen circumstances prevented his leaving the mines\nfor nearly five. At the end of that time, however, his memory of\nhis wrongs and his craving for revenge were quite as keen as on that\nmemorable night when he had stood by John Ferrier’s grave. Disguised,\nand under an assumed name, he returned to Salt Lake City, careless\nwhat became of his own life, as long as he obtained what he knew to\nbe justice. There he found evil tidings awaiting him. There had been a\nschism among the Chosen People a few months before, some of the younger\nmembers of the Church having rebelled against the authority of the\nElders, and the result had been the secession of a certain number of the\nmalcontents, who had left Utah and become Gentiles. Among these had been\nDrebber and Stangerson; and no one knew whither they had gone. Rumour\nreported that Drebber had managed to convert a large part of his\nproperty into money, and that he had departed a wealthy man, while his\ncompanion, Stangerson, was comparatively poor. There was no clue at all,\nhowever, as to their whereabouts.\n\nMany a man, however vindictive, would have abandoned all thought of\nrevenge in the face of such a difficulty, but Jefferson Hope never\nfaltered for a moment. With the small competence he possessed, eked out\nby such employment as he could pick up, he travelled from town to town\nthrough the United States in quest of his enemies. Year passed into\nyear, his black hair turned grizzled, but still he wandered on, a human\nbloodhound, with his mind wholly set upon the one object upon which he\nhad devoted his life. At last his perseverance was rewarded. It was\nbut a glance of a face in a window, but that one glance told him that\nCleveland in Ohio possessed the men whom he was in pursuit of. He\nreturned to his miserable lodgings with his plan of vengeance all\narranged. It chanced, however, that Drebber, looking from his window,\nhad recognized the vagrant in the street, and had read murder in\nhis eyes. He hurried before a justice of the peace, accompanied by\nStangerson, who had become his private secretary, and represented to him\nthat they were in danger of their lives from the jealousy and hatred of\nan old rival. That evening Jefferson Hope was taken into custody, and\nnot being able to find sureties, was detained for some weeks. When at\nlast he was liberated, it was only to find that Drebber’s house was\ndeserted, and that he and his secretary had departed for Europe.\n\nAgain the avenger had been foiled, and again his concentrated hatred\nurged him to continue the pursuit. Funds were wanting, however, and\nfor some time he had to return to work, saving every dollar for his\napproaching journey. At last, having collected enough to keep life in\nhim, he departed for Europe, and tracked his enemies from city to\ncity, working his way in any menial capacity, but never overtaking the\nfugitives. When he reached St. Petersburg they had departed for Paris;\nand when he followed them there he learned that they had just set off\nfor Copenhagen. At the Danish capital he was again a few days late, for\nthey had journeyed on to London, where he at last succeeded in running\nthem to earth. As to what occurred there, we cannot do better than quote\nthe old hunter’s own account, as duly recorded in Dr. Watson’s Journal,\nto which we are already under such obligations.\n\n\n\n\nCHAPTER VI. A CONTINUATION OF THE REMINISCENCES OF JOHN WATSON, M.D.\n\n\nOUR prisoner’s furious resistance did not apparently indicate any\nferocity in his disposition towards ourselves, for on finding himself\npowerless, he smiled in an affable manner, and expressed his hopes that\nhe had not hurt any of us in the scuffle. “I guess you’re going to take\nme to the police-station,” he remarked to Sherlock Holmes. “My cab’s at\nthe door. If you’ll loose my legs I’ll walk down to it. I’m not so light\nto lift as I used to be.”\n\nGregson and Lestrade exchanged glances as if they thought this\nproposition rather a bold one; but Holmes at once took the prisoner at\nhis word, and loosened the towel which we had bound round his ancles.\n[23] He rose and stretched his legs, as though to assure himself that\nthey were free once more. I remember that I thought to myself, as I eyed\nhim, that I had seldom seen a more powerfully built man; and his dark\nsunburned face bore an expression of determination and energy which was\nas formidable as his personal strength.\n\n“If there’s a vacant place for a chief of the police, I reckon you\nare the man for it,” he said, gazing with undisguised admiration at my\nfellow-lodger. “The way you kept on my trail was a caution.”\n\n“You had better come with me,” said Holmes to the two detectives.\n\n“I can drive you,” said Lestrade.\n\n“Good! and Gregson can come inside with me. You too, Doctor, you have\ntaken an interest in the case and may as well stick to us.”\n\nI assented gladly, and we all descended together. Our prisoner made no\nattempt at escape, but stepped calmly into the cab which had been his,\nand we followed him. Lestrade mounted the box, whipped up the horse, and\nbrought us in a very short time to our destination. We were ushered into\na small chamber where a police Inspector noted down our prisoner’s name\nand the names of the men with whose murder he had been charged. The\nofficial was a white-faced unemotional man, who went through his\nduties in a dull mechanical way. “The prisoner will be put before the\nmagistrates in the course of the week,” he said; “in the mean time, Mr.\nJefferson Hope, have you anything that you wish to say? I must warn you\nthat your words will be taken down, and may be used against you.”\n\n“I’ve got a good deal to say,” our prisoner said slowly. “I want to tell\nyou gentlemen all about it.”\n\n“Hadn’t you better reserve that for your trial?” asked the Inspector.\n\n“I may never be tried,” he answered. “You needn’t look startled. It\nisn’t suicide I am thinking of. Are you a Doctor?” He turned his fierce\ndark eyes upon me as he asked this last question.\n\n“Yes; I am,” I answered.\n\n“Then put your hand here,” he said, with a smile, motioning with his\nmanacled wrists towards his chest.\n\nI did so; and became at once conscious of an extraordinary throbbing and\ncommotion which was going on inside. The walls of his chest seemed to\nthrill and quiver as a frail building would do inside when some powerful\nengine was at work. In the silence of the room I could hear a dull\nhumming and buzzing noise which proceeded from the same source.\n\n“Why,” I cried, “you have an aortic aneurism!”\n\n“That’s what they call it,” he said, placidly. “I went to a Doctor last\nweek about it, and he told me that it is bound to burst before many days\npassed. It has been getting worse for years. I got it from over-exposure\nand under-feeding among the Salt Lake Mountains. I’ve done my work now,\nand I don’t care how soon I go, but I should like to leave some account\nof the business behind me. I don’t want to be remembered as a common\ncut-throat.”\n\nThe Inspector and the two detectives had a hurried discussion as to the\nadvisability of allowing him to tell his story.\n\n“Do you consider, Doctor, that there is immediate danger?” the former\nasked, [24]\n\n“Most certainly there is,” I answered.\n\n“In that case it is clearly our duty, in the interests of justice, to\ntake his statement,” said the Inspector. “You are at liberty, sir, to\ngive your account, which I again warn you will be taken down.”\n\n“I’ll sit down, with your leave,” the prisoner said, suiting the action\nto the word. “This aneurism of mine makes me easily tired, and the\ntussle we had half an hour ago has not mended matters. I’m on the brink\nof the grave, and I am not likely to lie to you. Every word I say is the\nabsolute truth, and how you use it is a matter of no consequence to me.”\n\nWith these words, Jefferson Hope leaned back in his chair and began\nthe following remarkable statement. He spoke in a calm and methodical\nmanner, as though the events which he narrated were commonplace enough.\nI can vouch for the accuracy of the subjoined account, for I have had\naccess to Lestrade’s note-book, in which the prisoner’s words were taken\ndown exactly as they were uttered.\n\n“It don’t much matter to you why I hated these men,” he said; “it’s\nenough that they were guilty of the death of two human beings--a father\nand a daughter--and that they had, therefore, forfeited their own\nlives. After the lapse of time that has passed since their crime, it was\nimpossible for me to secure a conviction against them in any court. I\nknew of their guilt though, and I determined that I should be judge,\njury, and executioner all rolled into one. You’d have done the same, if\nyou have any manhood in you, if you had been in my place.\n\n“That girl that I spoke of was to have married me twenty years ago. She\nwas forced into marrying that same Drebber, and broke her heart over\nit. I took the marriage ring from her dead finger, and I vowed that his\ndying eyes should rest upon that very ring, and that his last thoughts\nshould be of the crime for which he was punished. I have carried\nit about with me, and have followed him and his accomplice over two\ncontinents until I caught them. They thought to tire me out, but they\ncould not do it. If I die to-morrow, as is likely enough, I die knowing\nthat my work in this world is done, and well done. They have perished,\nand by my hand. There is nothing left for me to hope for, or to desire.\n\n“They were rich and I was poor, so that it was no easy matter for me to\nfollow them. When I got to London my pocket was about empty, and I found\nthat I must turn my hand to something for my living. Driving and riding\nare as natural to me as walking, so I applied at a cabowner’s office,\nand soon got employment. I was to bring a certain sum a week to the\nowner, and whatever was over that I might keep for myself. There was\nseldom much over, but I managed to scrape along somehow. The hardest job\nwas to learn my way about, for I reckon that of all the mazes that ever\nwere contrived, this city is the most confusing. I had a map beside me\nthough, and when once I had spotted the principal hotels and stations, I\ngot on pretty well.\n\n“It was some time before I found out where my two gentlemen were living;\nbut I inquired and inquired until at last I dropped across them. They\nwere at a boarding-house at Camberwell, over on the other side of the\nriver. When once I found them out I knew that I had them at my mercy. I\nhad grown my beard, and there was no chance of their recognizing me.\nI would dog them and follow them until I saw my opportunity. I was\ndetermined that they should not escape me again.\n\n“They were very near doing it for all that. Go where they would about\nLondon, I was always at their heels. Sometimes I followed them on my\ncab, and sometimes on foot, but the former was the best, for then they\ncould not get away from me. It was only early in the morning or late\nat night that I could earn anything, so that I began to get behind hand\nwith my employer. I did not mind that, however, as long as I could lay\nmy hand upon the men I wanted.\n\n“They were very cunning, though. They must have thought that there was\nsome chance of their being followed, for they would never go out alone,\nand never after nightfall. During two weeks I drove behind them every\nday, and never once saw them separate. Drebber himself was drunk half\nthe time, but Stangerson was not to be caught napping. I watched them\nlate and early, but never saw the ghost of a chance; but I was not\ndiscouraged, for something told me that the hour had almost come. My\nonly fear was that this thing in my chest might burst a little too soon\nand leave my work undone.\n\n“At last, one evening I was driving up and down Torquay Terrace, as the\nstreet was called in which they boarded, when I saw a cab drive up to\ntheir door. Presently some luggage was brought out, and after a time\nDrebber and Stangerson followed it, and drove off. I whipped up my horse\nand kept within sight of them, feeling very ill at ease, for I feared\nthat they were going to shift their quarters. At Euston Station they\ngot out, and I left a boy to hold my horse, and followed them on to the\nplatform. I heard them ask for the Liverpool train, and the guard answer\nthat one had just gone and there would not be another for some hours.\nStangerson seemed to be put out at that, but Drebber was rather pleased\nthan otherwise. I got so close to them in the bustle that I could hear\nevery word that passed between them. Drebber said that he had a little\nbusiness of his own to do, and that if the other would wait for him he\nwould soon rejoin him. His companion remonstrated with him, and reminded\nhim that they had resolved to stick together. Drebber answered that the\nmatter was a delicate one, and that he must go alone. I could not catch\nwhat Stangerson said to that, but the other burst out swearing, and\nreminded him that he was nothing more than his paid servant, and that he\nmust not presume to dictate to him. On that the Secretary gave it up\nas a bad job, and simply bargained with him that if he missed the last\ntrain he should rejoin him at Halliday’s Private Hotel; to which Drebber\nanswered that he would be back on the platform before eleven, and made\nhis way out of the station.\n\n“The moment for which I had waited so long had at last come. I had my\nenemies within my power. Together they could protect each other,\nbut singly they were at my mercy. I did not act, however, with undue\nprecipitation. My plans were already formed. There is no satisfaction in\nvengeance unless the offender has time to realize who it is that strikes\nhim, and why retribution has come upon him. I had my plans arranged by\nwhich I should have the opportunity of making the man who had wronged me\nunderstand that his old sin had found him out. It chanced that some days\nbefore a gentleman who had been engaged in looking over some houses in\nthe Brixton Road had dropped the key of one of them in my carriage. It\nwas claimed that same evening, and returned; but in the interval I had\ntaken a moulding of it, and had a duplicate constructed. By means of\nthis I had access to at least one spot in this great city where I could\nrely upon being free from interruption. How to get Drebber to that house\nwas the difficult problem which I had now to solve.\n\n“He walked down the road and went into one or two liquor shops, staying\nfor nearly half-an-hour in the last of them. When he came out he\nstaggered in his walk, and was evidently pretty well on. There was a\nhansom just in front of me, and he hailed it. I followed it so close\nthat the nose of my horse was within a yard of his driver the whole way.\nWe rattled across Waterloo Bridge and through miles of streets, until,\nto my astonishment, we found ourselves back in the Terrace in which he\nhad boarded. I could not imagine what his intention was in returning\nthere; but I went on and pulled up my cab a hundred yards or so from\nthe house. He entered it, and his hansom drove away. Give me a glass of\nwater, if you please. My mouth gets dry with the talking.”\n\nI handed him the glass, and he drank it down.\n\n“That’s better,” he said. “Well, I waited for a quarter of an hour, or\nmore, when suddenly there came a noise like people struggling inside the\nhouse. Next moment the door was flung open and two men appeared, one of\nwhom was Drebber, and the other was a young chap whom I had never seen\nbefore. This fellow had Drebber by the collar, and when they came to\nthe head of the steps he gave him a shove and a kick which sent him half\nacross the road. ‘You hound,’ he cried, shaking his stick at him; ‘I’ll\nteach you to insult an honest girl!’ He was so hot that I think he would\nhave thrashed Drebber with his cudgel, only that the cur staggered away\ndown the road as fast as his legs would carry him. He ran as far as the\ncorner, and then, seeing my cab, he hailed me and jumped in. ‘Drive me\nto Halliday’s Private Hotel,’ said he.\n\n“When I had him fairly inside my cab, my heart jumped so with joy that\nI feared lest at this last moment my aneurism might go wrong. I drove\nalong slowly, weighing in my own mind what it was best to do. I might\ntake him right out into the country, and there in some deserted lane\nhave my last interview with him. I had almost decided upon this, when he\nsolved the problem for me. The craze for drink had seized him again, and\nhe ordered me to pull up outside a gin palace. He went in, leaving word\nthat I should wait for him. There he remained until closing time, and\nwhen he came out he was so far gone that I knew the game was in my own\nhands.\n\n“Don’t imagine that I intended to kill him in cold blood. It would only\nhave been rigid justice if I had done so, but I could not bring myself\nto do it. I had long determined that he should have a show for his life\nif he chose to take advantage of it. Among the many billets which I\nhave filled in America during my wandering life, I was once janitor and\nsweeper out of the laboratory at York College. One day the professor was\nlecturing on poisions, [25] and he showed his students some alkaloid,\nas he called it, which he had extracted from some South American arrow\npoison, and which was so powerful that the least grain meant instant\ndeath. I spotted the bottle in which this preparation was kept, and when\nthey were all gone, I helped myself to a little of it. I was a fairly\ngood dispenser, so I worked this alkaloid into small, soluble pills, and\neach pill I put in a box with a similar pill made without the poison.\nI determined at the time that when I had my chance, my gentlemen should\neach have a draw out of one of these boxes, while I ate the pill that\nremained. It would be quite as deadly, and a good deal less noisy than\nfiring across a handkerchief. From that day I had always my pill boxes\nabout with me, and the time had now come when I was to use them.\n\n“It was nearer one than twelve, and a wild, bleak night, blowing hard\nand raining in torrents. Dismal as it was outside, I was glad within--so\nglad that I could have shouted out from pure exultation. If any of you\ngentlemen have ever pined for a thing, and longed for it during twenty\nlong years, and then suddenly found it within your reach, you would\nunderstand my feelings. I lit a cigar, and puffed at it to steady my\nnerves, but my hands were trembling, and my temples throbbing with\nexcitement. As I drove, I could see old John Ferrier and sweet Lucy\nlooking at me out of the darkness and smiling at me, just as plain as I\nsee you all in this room. All the way they were ahead of me, one on each\nside of the horse until I pulled up at the house in the Brixton Road.\n\n“There was not a soul to be seen, nor a sound to be heard, except the\ndripping of the rain. When I looked in at the window, I found Drebber\nall huddled together in a drunken sleep. I shook him by the arm, ‘It’s\ntime to get out,’ I said.\n\n“‘All right, cabby,’ said he.\n\n“I suppose he thought we had come to the hotel that he had mentioned,\nfor he got out without another word, and followed me down the garden.\nI had to walk beside him to keep him steady, for he was still a little\ntop-heavy. When we came to the door, I opened it, and led him into the\nfront room. I give you my word that all the way, the father and the\ndaughter were walking in front of us.\n\n“‘It’s infernally dark,’ said he, stamping about.\n\n“‘We’ll soon have a light,’ I said, striking a match and putting it to\na wax candle which I had brought with me. ‘Now, Enoch Drebber,’ I\ncontinued, turning to him, and holding the light to my own face, ‘who am\nI?’\n\n“He gazed at me with bleared, drunken eyes for a moment, and then I\nsaw a horror spring up in them, and convulse his whole features, which\nshowed me that he knew me. He staggered back with a livid face, and I\nsaw the perspiration break out upon his brow, while his teeth chattered\nin his head. At the sight, I leaned my back against the door and laughed\nloud and long. I had always known that vengeance would be sweet, but I\nhad never hoped for the contentment of soul which now possessed me.\n\n“‘You dog!’ I said; ‘I have hunted you from Salt Lake City to St.\nPetersburg, and you have always escaped me. Now, at last your wanderings\nhave come to an end, for either you or I shall never see to-morrow’s sun\nrise.’ He shrunk still further away as I spoke, and I could see on his\nface that he thought I was mad. So I was for the time. The pulses in my\ntemples beat like sledge-hammers, and I believe I would have had a fit\nof some sort if the blood had not gushed from my nose and relieved me.\n\n“‘What do you think of Lucy Ferrier now?’ I cried, locking the door, and\nshaking the key in his face. ‘Punishment has been slow in coming, but it\nhas overtaken you at last.’ I saw his coward lips tremble as I spoke. He\nwould have begged for his life, but he knew well that it was useless.\n\n“‘Would you murder me?’ he stammered.\n\n“‘There is no murder,’ I answered. ‘Who talks of murdering a mad dog?\nWhat mercy had you upon my poor darling, when you dragged her from her\nslaughtered father, and bore her away to your accursed and shameless\nharem.’\n\n“‘It was not I who killed her father,’ he cried.\n\n“‘But it was you who broke her innocent heart,’ I shrieked, thrusting\nthe box before him. ‘Let the high God judge between us. Choose and\neat. There is death in one and life in the other. I shall take what you\nleave. Let us see if there is justice upon the earth, or if we are ruled\nby chance.’\n\n“He cowered away with wild cries and prayers for mercy, but I drew my\nknife and held it to his throat until he had obeyed me. Then I swallowed\nthe other, and we stood facing one another in silence for a minute or\nmore, waiting to see which was to live and which was to die. Shall I\never forget the look which came over his face when the first warning\npangs told him that the poison was in his system? I laughed as I saw\nit, and held Lucy’s marriage ring in front of his eyes. It was but for\na moment, for the action of the alkaloid is rapid. A spasm of pain\ncontorted his features; he threw his hands out in front of him,\nstaggered, and then, with a hoarse cry, fell heavily upon the floor. I\nturned him over with my foot, and placed my hand upon his heart. There\nwas no movement. He was dead!\n\n“The blood had been streaming from my nose, but I had taken no notice of\nit. I don’t know what it was that put it into my head to write upon the\nwall with it. Perhaps it was some mischievous idea of setting the police\nupon a wrong track, for I felt light-hearted and cheerful. I remembered\na German being found in New York with RACHE written up above him, and it\nwas argued at the time in the newspapers that the secret societies must\nhave done it. I guessed that what puzzled the New Yorkers would puzzle\nthe Londoners, so I dipped my finger in my own blood and printed it on\na convenient place on the wall. Then I walked down to my cab and found\nthat there was nobody about, and that the night was still very wild. I\nhad driven some distance when I put my hand into the pocket in which\nI usually kept Lucy’s ring, and found that it was not there. I was\nthunderstruck at this, for it was the only memento that I had of her.\nThinking that I might have dropped it when I stooped over Drebber’s\nbody, I drove back, and leaving my cab in a side street, I went boldly\nup to the house--for I was ready to dare anything rather than lose\nthe ring. When I arrived there, I walked right into the arms of a\npolice-officer who was coming out, and only managed to disarm his\nsuspicions by pretending to be hopelessly drunk.\n\n“That was how Enoch Drebber came to his end. All I had to do then was\nto do as much for Stangerson, and so pay off John Ferrier’s debt. I knew\nthat he was staying at Halliday’s Private Hotel, and I hung about all\nday, but he never came out. [26] fancy that he suspected something when\nDrebber failed to put in an appearance. He was cunning, was Stangerson,\nand always on his guard. If he thought he could keep me off by staying\nindoors he was very much mistaken. I soon found out which was the window\nof his bedroom, and early next morning I took advantage of some ladders\nwhich were lying in the lane behind the hotel, and so made my way into\nhis room in the grey of the dawn. I woke him up and told him that the\nhour had come when he was to answer for the life he had taken so long\nbefore. I described Drebber’s death to him, and I gave him the same\nchoice of the poisoned pills. Instead of grasping at the chance of\nsafety which that offered him, he sprang from his bed and flew at my\nthroat. In self-defence I stabbed him to the heart. It would have been\nthe same in any case, for Providence would never have allowed his guilty\nhand to pick out anything but the poison.\n\n“I have little more to say, and it’s as well, for I am about done up.\nI went on cabbing it for a day or so, intending to keep at it until I\ncould save enough to take me back to America. I was standing in the\nyard when a ragged youngster asked if there was a cabby there called\nJefferson Hope, and said that his cab was wanted by a gentleman at 221B,\nBaker Street. I went round, suspecting no harm, and the next thing I\nknew, this young man here had the bracelets on my wrists, and as neatly\nsnackled [27] as ever I saw in my life. That’s the whole of my story,\ngentlemen. You may consider me to be a murderer; but I hold that I am\njust as much an officer of justice as you are.”\n\nSo thrilling had the man’s narrative been, and his manner was so\nimpressive that we had sat silent and absorbed. Even the professional\ndetectives, _blasé_ as they were in every detail of crime, appeared to\nbe keenly interested in the man’s story. When he finished we sat for\nsome minutes in a stillness which was only broken by the scratching\nof Lestrade’s pencil as he gave the finishing touches to his shorthand\naccount.\n\n“There is only one point on which I should like a little more\ninformation,” Sherlock Holmes said at last. “Who was your accomplice who\ncame for the ring which I advertised?”\n\nThe prisoner winked at my friend jocosely. “I can tell my own secrets,”\n he said, “but I don’t get other people into trouble. I saw your\nadvertisement, and I thought it might be a plant, or it might be the\nring which I wanted. My friend volunteered to go and see. I think you’ll\nown he did it smartly.”\n\n“Not a doubt of that,” said Holmes heartily.\n\n“Now, gentlemen,” the Inspector remarked gravely, “the forms of the law\nmust be complied with. On Thursday the prisoner will be brought before\nthe magistrates, and your attendance will be required. Until then I will\nbe responsible for him.” He rang the bell as he spoke, and Jefferson\nHope was led off by a couple of warders, while my friend and I made our\nway out of the Station and took a cab back to Baker Street.\n\n\n\n\nCHAPTER VII. THE CONCLUSION.\n\n\nWE had all been warned to appear before the magistrates upon the\nThursday; but when the Thursday came there was no occasion for our\ntestimony. A higher Judge had taken the matter in hand, and Jefferson\nHope had been summoned before a tribunal where strict justice would\nbe meted out to him. On the very night after his capture the aneurism\nburst, and he was found in the morning stretched upon the floor of the\ncell, with a placid smile upon his face, as though he had been able\nin his dying moments to look back upon a useful life, and on work well\ndone.\n\n“Gregson and Lestrade will be wild about his death,” Holmes remarked, as\nwe chatted it over next evening. “Where will their grand advertisement\nbe now?”\n\n“I don’t see that they had very much to do with his capture,” I\nanswered.\n\n“What you do in this world is a matter of no consequence,” returned my\ncompanion, bitterly. “The question is, what can you make people believe\nthat you have done. Never mind,” he continued, more brightly, after a\npause. “I would not have missed the investigation for anything. There\nhas been no better case within my recollection. Simple as it was, there\nwere several most instructive points about it.”\n\n“Simple!” I ejaculated.\n\n“Well, really, it can hardly be described as otherwise,” said Sherlock\nHolmes, smiling at my surprise. “The proof of its intrinsic simplicity\nis, that without any help save a few very ordinary deductions I was able\nto lay my hand upon the criminal within three days.”\n\n“That is true,” said I.\n\n“I have already explained to you that what is out of the common is\nusually a guide rather than a hindrance. In solving a problem of this\nsort, the grand thing is to be able to reason backwards. That is a very\nuseful accomplishment, and a very easy one, but people do not practise\nit much. In the every-day affairs of life it is more useful to reason\nforwards, and so the other comes to be neglected. There are fifty who\ncan reason synthetically for one who can reason analytically.”\n\n“I confess,” said I, “that I do not quite follow you.”\n\n“I hardly expected that you would. Let me see if I can make it clearer.\nMost people, if you describe a train of events to them, will tell you\nwhat the result would be. They can put those events together in their\nminds, and argue from them that something will come to pass. There are\nfew people, however, who, if you told them a result, would be able to\nevolve from their own inner consciousness what the steps were which led\nup to that result. This power is what I mean when I talk of reasoning\nbackwards, or analytically.”\n\n“I understand,” said I.\n\n“Now this was a case in which you were given the result and had to\nfind everything else for yourself. Now let me endeavour to show you the\ndifferent steps in my reasoning. To begin at the beginning. I approached\nthe house, as you know, on foot, and with my mind entirely free from all\nimpressions. I naturally began by examining the roadway, and there, as I\nhave already explained to you, I saw clearly the marks of a cab, which,\nI ascertained by inquiry, must have been there during the night. I\nsatisfied myself that it was a cab and not a private carriage by the\nnarrow gauge of the wheels. The ordinary London growler is considerably\nless wide than a gentleman’s brougham.\n\n“This was the first point gained. I then walked slowly down the garden\npath, which happened to be composed of a clay soil, peculiarly suitable\nfor taking impressions. No doubt it appeared to you to be a mere\ntrampled line of slush, but to my trained eyes every mark upon its\nsurface had a meaning. There is no branch of detective science which\nis so important and so much neglected as the art of tracing footsteps.\nHappily, I have always laid great stress upon it, and much practice\nhas made it second nature to me. I saw the heavy footmarks of the\nconstables, but I saw also the track of the two men who had first passed\nthrough the garden. It was easy to tell that they had been before the\nothers, because in places their marks had been entirely obliterated by\nthe others coming upon the top of them. In this way my second link was\nformed, which told me that the nocturnal visitors were two in number,\none remarkable for his height (as I calculated from the length of his\nstride), and the other fashionably dressed, to judge from the small and\nelegant impression left by his boots.\n\n“On entering the house this last inference was confirmed. My well-booted\nman lay before me. The tall one, then, had done the murder, if murder\nthere was. There was no wound upon the dead man’s person, but the\nagitated expression upon his face assured me that he had foreseen his\nfate before it came upon him. Men who die from heart disease, or any\nsudden natural cause, never by any chance exhibit agitation upon their\nfeatures. Having sniffed the dead man’s lips I detected a slightly sour\nsmell, and I came to the conclusion that he had had poison forced upon\nhim. Again, I argued that it had been forced upon him from the hatred\nand fear expressed upon his face. By the method of exclusion, I had\narrived at this result, for no other hypothesis would meet the facts.\nDo not imagine that it was a very unheard of idea. The forcible\nadministration of poison is by no means a new thing in criminal annals.\nThe cases of Dolsky in Odessa, and of Leturier in Montpellier, will\noccur at once to any toxicologist.\n\n“And now came the great question as to the reason why. Robbery had not\nbeen the object of the murder, for nothing was taken. Was it politics,\nthen, or was it a woman? That was the question which confronted me.\nI was inclined from the first to the latter supposition. Political\nassassins are only too glad to do their work and to fly. This murder\nhad, on the contrary, been done most deliberately, and the perpetrator\nhad left his tracks all over the room, showing that he had been there\nall the time. It must have been a private wrong, and not a political\none, which called for such a methodical revenge. When the inscription\nwas discovered upon the wall I was more inclined than ever to my\nopinion. The thing was too evidently a blind. When the ring was found,\nhowever, it settled the question. Clearly the murderer had used it to\nremind his victim of some dead or absent woman. It was at this point\nthat I asked Gregson whether he had enquired in his telegram to\nCleveland as to any particular point in Mr. Drebber’s former career. He\nanswered, you remember, in the negative.\n\n“I then proceeded to make a careful examination of the room, which\nconfirmed me in my opinion as to the murderer’s height, and furnished me\nwith the additional details as to the Trichinopoly cigar and the length\nof his nails. I had already come to the conclusion, since there were no\nsigns of a struggle, that the blood which covered the floor had burst\nfrom the murderer’s nose in his excitement. I could perceive that the\ntrack of blood coincided with the track of his feet. It is seldom that\nany man, unless he is very full-blooded, breaks out in this way through\nemotion, so I hazarded the opinion that the criminal was probably a\nrobust and ruddy-faced man. Events proved that I had judged correctly.\n\n“Having left the house, I proceeded to do what Gregson had neglected. I\ntelegraphed to the head of the police at Cleveland, limiting my enquiry\nto the circumstances connected with the marriage of Enoch Drebber. The\nanswer was conclusive. It told me that Drebber had already applied for\nthe protection of the law against an old rival in love, named Jefferson\nHope, and that this same Hope was at present in Europe. I knew now that\nI held the clue to the mystery in my hand, and all that remained was to\nsecure the murderer.\n\n“I had already determined in my own mind that the man who had walked\ninto the house with Drebber, was none other than the man who had driven\nthe cab. The marks in the road showed me that the horse had wandered\non in a way which would have been impossible had there been anyone in\ncharge of it. Where, then, could the driver be, unless he were inside\nthe house? Again, it is absurd to suppose that any sane man would carry\nout a deliberate crime under the very eyes, as it were, of a third\nperson, who was sure to betray him. Lastly, supposing one man wished\nto dog another through London, what better means could he adopt than\nto turn cabdriver. All these considerations led me to the irresistible\nconclusion that Jefferson Hope was to be found among the jarveys of the\nMetropolis.\n\n“If he had been one there was no reason to believe that he had ceased to\nbe. On the contrary, from his point of view, any sudden change would be\nlikely to draw attention to himself. He would, probably, for a time at\nleast, continue to perform his duties. There was no reason to suppose\nthat he was going under an assumed name. Why should he change his name\nin a country where no one knew his original one? I therefore organized\nmy Street Arab detective corps, and sent them systematically to every\ncab proprietor in London until they ferreted out the man that I wanted.\nHow well they succeeded, and how quickly I took advantage of it, are\nstill fresh in your recollection. The murder of Stangerson was an\nincident which was entirely unexpected, but which could hardly in\nany case have been prevented. Through it, as you know, I came into\npossession of the pills, the existence of which I had already surmised.\nYou see the whole thing is a chain of logical sequences without a break\nor flaw.”\n\n“It is wonderful!” I cried. “Your merits should be publicly recognized.\nYou should publish an account of the case. If you won’t, I will for\nyou.”\n\n“You may do what you like, Doctor,” he answered. “See here!” he\ncontinued, handing a paper over to me, “look at this!”\n\nIt was the _Echo_ for the day, and the paragraph to which he pointed was\ndevoted to the case in question.\n\n“The public,” it said, “have lost a sensational treat through the sudden\ndeath of the man Hope, who was suspected of the murder of Mr. Enoch\nDrebber and of Mr. Joseph Stangerson. The details of the case will\nprobably be never known now, though we are informed upon good authority\nthat the crime was the result of an old standing and romantic feud, in\nwhich love and Mormonism bore a part. It seems that both the victims\nbelonged, in their younger days, to the Latter Day Saints, and Hope, the\ndeceased prisoner, hails also from Salt Lake City. If the case has had\nno other effect, it, at least, brings out in the most striking manner\nthe efficiency of our detective police force, and will serve as a lesson\nto all foreigners that they will do wisely to settle their feuds at\nhome, and not to carry them on to British soil. It is an open secret\nthat the credit of this smart capture belongs entirely to the well-known\nScotland Yard officials, Messrs. Lestrade and Gregson. The man was\napprehended, it appears, in the rooms of a certain Mr. Sherlock Holmes,\nwho has himself, as an amateur, shown some talent in the detective\nline, and who, with such instructors, may hope in time to attain to some\ndegree of their skill. It is expected that a testimonial of some sort\nwill be presented to the two officers as a fitting recognition of their\nservices.”\n\n“Didn’t I tell you so when we started?” cried Sherlock Holmes with a\nlaugh. “That’s the result of all our Study in Scarlet: to get them a\ntestimonial!”\n\n“Never mind,” I answered, “I have all the facts in my journal, and the\npublic shall know them. In the meantime you must make yourself contented\nby the consciousness of success, like the Roman miser--\n\n “‘Populus me sibilat, at mihi plaudo\n Ipse domi simul ac nummos contemplor in arca.’”\n\n\n\n\n\nORIGINAL TRANSCRIBER’S NOTES:\n\n\n[Footnote 1: Frontispiece, with the caption: “He examined with his glass\nthe word upon the wall, going over every letter of it with the most\nminute exactness.” (_Page_ 23.)]\n\n[Footnote 2: “JOHN H. WATSON, M.D.”: the initial letters in the name are\ncapitalized, the other letters in small caps. All chapter titles are in\nsmall caps. The initial words of chapters are in small caps with first\nletter capitalized.]\n\n[Footnote 3: “lodgings.”: the period should be a comma, as in later\neditions.]\n\n[Footnote 4: “hoemoglobin”: should be haemoglobin. The o&e are\nconcatenated.]\n\n[Footnote 5: “221B”: the B is in small caps]\n\n[Footnote 6: “THE LAURISTON GARDEN MYSTERY”: the table-of-contents\nlists this chapter as “...GARDENS MYSTERY”--plural, and probably more\ncorrect.]\n\n[Footnote 7: “brought.\"”: the text has an extra double-quote mark]\n\n[Footnote 8: “individual--“: illustration this page, with the\ncaption: “As he spoke, his nimble fingers were flying here, there, and\neverywhere.”]\n\n[Footnote 9: “manoeuvres”: the o&e are concatenated.]\n\n[Footnote 10: “Patent leathers”: the hyphen is missing.]\n\n[Footnote 11: “condonment”: should be condonement.]\n\n[Footnote 13: “wages.”: ending quote is missing.]\n\n[Footnote 14: “the first.”: ending quote is missing.]\n\n[Footnote 15: “make much of...”: Other editions complete this sentence\nwith an “it.” But there is a gap in the text at this point, and, given\nthe context, it may have actually been an interjection, a dash. The gap\nis just the right size for the characters “it.” and the start of a new\nsentence, or for a “----“]\n\n[Footnote 16: “tho cushion”: “tho” should be “the”]\n\n[Footnote 19: “shoving”: later editions have “showing”. The original is\nclearly superior.]\n\n[Footnote 20: “stared about...”: illustration, with the caption: “One of\nthem seized the little girl, and hoisted her upon his shoulder.”]\n\n[Footnote 21: “upon the”: illustration, with the caption: “As he watched\nit he saw it writhe along the ground.”]\n\n[Footnote 22: “FORMERLY...”: F,S,L,C in caps, other letters in this line\nin small caps.]\n\n[Footnote 23: “ancles”: ankles.]\n\n[Footnote 24: “asked,”: should be “asked.”]\n\n[Footnote 25: “poisions”: should be “poisons”]\n\n[Footnote 26: “...fancy”: should be “I fancy”. There is a gap in the\ntext.]\n\n[Footnote 27: “snackled”: “shackled” in later texts.]\n\n[Footnote 29: Heber C. Kemball, in one of his sermons, alludes to his\nhundred wives under this endearing epithet.]\n\n\n\n\n\nEnd of Project Gutenberg’s A Study In Scarlet, by Arthur Conan Doyle\n\n*** END OF THIS PROJECT GUTENBERG EBOOK A STUDY IN SCARLET ***\n\n***** This file should be named 244-0.txt or 244-0.zip *****\nThis and all associated files of various formats will be found in:\n http://www.gutenberg.org/2/4/244/\n\nProduced by Roger Squires\n\nUpdated editions will replace the previous one--the old editions\nwill be renamed.\n\nCreating the works from public domain print editions means that no\none owns a United States copyright in these works, so the Foundation\n(and you!) can copy and distribute it in the United States without\npermission and without paying copyright royalties. Special rules,\nset forth in the General Terms of Use part of this license, apply to\ncopying and distributing Project Gutenberg-tm electronic works to\nprotect the PROJECT GUTENBERG-tm concept and trademark. Project\nGutenberg is a registered trademark, and may not be used if you\ncharge for the eBooks, unless you receive specific permission. If you\ndo not charge anything for copies of this eBook, complying with the\nrules is very easy. You may use this eBook for nearly any purpose\nsuch as creation of derivative works, reports, performances and\nresearch. They may be modified and printed and given away--you may do\npractically ANYTHING with public domain eBooks. Redistribution is\nsubject to the trademark license, especially commercial\nredistribution.\n\n\n\n*** START: FULL LICENSE ***\n\nTHE FULL PROJECT GUTENBERG LICENSE\nPLEASE READ THIS BEFORE YOU DISTRIBUTE OR USE THIS WORK\n\nTo protect the Project Gutenberg-tm mission of promoting the free\ndistribution of electronic works, by using or distributing this work\n(or any other work associated in any way with the phrase “Project\nGutenberg”), you agree to comply with all the terms of the Full Project\nGutenberg-tm License (available with this file or online at\nhttp://gutenberg.org/license).\n\n\nSection 1. General Terms of Use and Redistributing Project Gutenberg-tm\nelectronic works\n\n1.A. By reading or using any part of this Project Gutenberg-tm\nelectronic work, you indicate that you have read, understand, agree to\nand accept all the terms of this license and intellectual property\n(trademark/copyright) agreement. If you do not agree to abide by all\nthe terms of this agreement, you must cease using and return or destroy\nall copies of Project Gutenberg-tm electronic works in your possession.\nIf you paid a fee for obtaining a copy of or access to a Project\nGutenberg-tm electronic work and you do not agree to be bound by the\nterms of this agreement, you may obtain a refund from the person or\nentity to whom you paid the fee as set forth in paragraph 1.E.8.\n\n1.B. “Project Gutenberg” is a registered trademark. It may only be\nused on or associated in any way with an electronic work by people who\nagree to be bound by the terms of this agreement. There are a few\nthings that you can do with most Project Gutenberg-tm electronic works\neven without complying with the full terms of this agreement. See\nparagraph 1.C below. There are a lot of things you can do with Project\nGutenberg-tm electronic works if you follow the terms of this agreement\nand help preserve free future access to Project Gutenberg-tm electronic\nworks. See paragraph 1.E below.\n\n1.C. The Project Gutenberg Literary Archive Foundation (“the Foundation”\n or PGLAF), owns a compilation copyright in the collection of Project\nGutenberg-tm electronic works. Nearly all the individual works in the\ncollection are in the public domain in the United States. If an\nindividual work is in the public domain in the United States and you are\nlocated in the United States, we do not claim a right to prevent you from\ncopying, distributing, performing, displaying or creating derivative\nworks based on the work as long as all references to Project Gutenberg\nare removed. Of course, we hope that you will support the Project\nGutenberg-tm mission of promoting free access to electronic works by\nfreely sharing Project Gutenberg-tm works in compliance with the terms of\nthis agreement for keeping the Project Gutenberg-tm name associated with\nthe work. You can easily comply with the terms of this agreement by\nkeeping this work in the same format with its attached full Project\nGutenberg-tm License when you share it without charge with others.\n\n1.D. The copyright laws of the place where you are located also govern\nwhat you can do with this work. Copyright laws in most countries are in\na constant state of change. If you are outside the United States, check\nthe laws of your country in addition to the terms of this agreement\nbefore downloading, copying, displaying, performing, distributing or\ncreating derivative works based on this work or any other Project\nGutenberg-tm work. The Foundation makes no representations concerning\nthe copyright status of any work in any country outside the United\nStates.\n\n1.E. Unless you have removed all references to Project Gutenberg:\n\n1.E.1. The following sentence, with active links to, or other immediate\naccess to, the full Project Gutenberg-tm License must appear prominently\nwhenever any copy of a Project Gutenberg-tm work (any work on which the\nphrase “Project Gutenberg” appears, or with which the phrase “Project\nGutenberg” is associated) is accessed, displayed, performed, viewed,\ncopied or distributed:\n\nThis eBook is for the use of anyone anywhere at no cost and with\nalmost no restrictions whatsoever. You may copy it, give it away or\nre-use it under the terms of the Project Gutenberg License included\nwith this eBook or online at www.gutenberg.org\n\n1.E.2. If an individual Project Gutenberg-tm electronic work is derived\nfrom the public domain (does not contain a notice indicating that it is\nposted with permission of the copyright holder), the work can be copied\nand distributed to anyone in the United States without paying any fees\nor charges. If you are redistributing or providing access to a work\nwith the phrase “Project Gutenberg” associated with or appearing on the\nwork, you must comply either with the requirements of paragraphs 1.E.1\nthrough 1.E.7 or obtain permission for the use of the work and the\nProject Gutenberg-tm trademark as set forth in paragraphs 1.E.8 or\n1.E.9.\n\n1.E.3. If an individual Project Gutenberg-tm electronic work is posted\nwith the permission of the copyright holder, your use and distribution\nmust comply with both paragraphs 1.E.1 through 1.E.7 and any additional\nterms imposed by the copyright holder. Additional terms will be linked\nto the Project Gutenberg-tm License for all works posted with the\npermission of the copyright holder found at the beginning of this work.\n\n1.E.4. Do not unlink or detach or remove the full Project Gutenberg-tm\nLicense terms from this work, or any files containing a part of this\nwork or any other work associated with Project Gutenberg-tm.\n\n1.E.5. Do not copy, display, perform, distribute or redistribute this\nelectronic work, or any part of this electronic work, without\nprominently displaying the sentence set forth in paragraph 1.E.1 with\nactive links or immediate access to the full terms of the Project\nGutenberg-tm License.\n\n1.E.6. You may convert to and distribute this work in any binary,\ncompressed, marked up, nonproprietary or proprietary form, including any\nword processing or hypertext form. However, if you provide access to or\ndistribute copies of a Project Gutenberg-tm work in a format other than\n“Plain Vanilla ASCII” or other format used in the official version\nposted on the official Project Gutenberg-tm web site (www.gutenberg.org),\nyou must, at no additional cost, fee or expense to the user, provide a\ncopy, a means of exporting a copy, or a means of obtaining a copy upon\nrequest, of the work in its original “Plain Vanilla ASCII” or other\nform. Any alternate format must include the full Project Gutenberg-tm\nLicense as specified in paragraph 1.E.1.\n\n1.E.7. Do not charge a fee for access to, viewing, displaying,\nperforming, copying or distributing any Project Gutenberg-tm works\nunless you comply with paragraph 1.E.8 or 1.E.9.\n\n1.E.8. You may charge a reasonable fee for copies of or providing\naccess to or distributing Project Gutenberg-tm electronic works provided\nthat\n\n- You pay a royalty fee of 20% of the gross profits you derive from\n the use of Project Gutenberg-tm works calculated using the method\n you already use to calculate your applicable taxes. The fee is\n owed to the owner of the Project Gutenberg-tm trademark, but he\n has agreed to donate royalties under this paragraph to the\n Project Gutenberg Literary Archive Foundation. Royalty payments\n must be paid within 60 days following each date on which you\n prepare (or are legally required to prepare) your periodic tax\n returns. Royalty payments should be clearly marked as such and\n sent to the Project Gutenberg Literary Archive Foundation at the\n address specified in Section 4, “Information about donations to\n the Project Gutenberg Literary Archive Foundation.”\n\n- You provide a full refund of any money paid by a user who notifies\n you in writing (or by e-mail) within 30 days of receipt that s/he\n does not agree to the terms of the full Project Gutenberg-tm\n License. You must require such a user to return or\n destroy all copies of the works possessed in a physical medium\n and discontinue all use of and all access to other copies of\n Project Gutenberg-tm works.\n\n- You provide, in accordance with paragraph 1.F.3, a full refund of any\n money paid for a work or a replacement copy, if a defect in the\n electronic work is discovered and reported to you within 90 days\n of receipt of the work.\n\n- You comply with all other terms of this agreement for free\n distribution of Project Gutenberg-tm works.\n\n1.E.9. If you wish to charge a fee or distribute a Project Gutenberg-tm\nelectronic work or group of works on different terms than are set\nforth in this agreement, you must obtain permission in writing from\nboth the Project Gutenberg Literary Archive Foundation and Michael\nHart, the owner of the Project Gutenberg-tm trademark. Contact the\nFoundation as set forth in Section 3 below.\n\n1.F.\n\n1.F.1. Project Gutenberg volunteers and employees expend considerable\neffort to identify, do copyright research on, transcribe and proofread\npublic domain works in creating the Project Gutenberg-tm\ncollection. Despite these efforts, Project Gutenberg-tm electronic\nworks, and the medium on which they may be stored, may contain\n“Defects,” such as, but not limited to, incomplete, inaccurate or\ncorrupt data, transcription errors, a copyright or other intellectual\nproperty infringement, a defective or damaged disk or other medium, a\ncomputer virus, or computer codes that damage or cannot be read by\nyour equipment.\n\n1.F.2. LIMITED WARRANTY, DISCLAIMER OF DAMAGES - Except for the “Right\nof Replacement or Refund” described in paragraph 1.F.3, the Project\nGutenberg Literary Archive Foundation, the owner of the Project\nGutenberg-tm trademark, and any other party distributing a Project\nGutenberg-tm electronic work under this agreement, disclaim all\nliability to you for damages, costs and expenses, including legal\nfees. YOU AGREE THAT YOU HAVE NO REMEDIES FOR NEGLIGENCE, STRICT\nLIABILITY, BREACH OF WARRANTY OR BREACH OF CONTRACT EXCEPT THOSE\nPROVIDED IN PARAGRAPH F3. YOU AGREE THAT THE FOUNDATION, THE\nTRADEMARK OWNER, AND ANY DISTRIBUTOR UNDER THIS AGREEMENT WILL NOT BE\nLIABLE TO YOU FOR ACTUAL, DIRECT, INDIRECT, CONSEQUENTIAL, PUNITIVE OR\nINCIDENTAL DAMAGES EVEN IF YOU GIVE NOTICE OF THE POSSIBILITY OF SUCH\nDAMAGE.\n\n1.F.3. LIMITED RIGHT OF REPLACEMENT OR REFUND - If you discover a\ndefect in this electronic work within 90 days of receiving it, you can\nreceive a refund of the money (if any) you paid for it by sending a\nwritten explanation to the person you received the work from. If you\nreceived the work on a physical medium, you must return the medium with\nyour written explanation. The person or entity that provided you with\nthe defective work may elect to provide a replacement copy in lieu of a\nrefund. If you received the work electronically, the person or entity\nproviding it to you may choose to give you a second opportunity to\nreceive the work electronically in lieu of a refund. If the second copy\nis also defective, you may demand a refund in writing without further\nopportunities to fix the problem.\n\n1.F.4. Except for the limited right of replacement or refund set forth\nin paragraph 1.F.3, this work is provided to you ‘AS-IS’ WITH NO OTHER\nWARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO\nWARRANTIES OF MERCHANTIBILITY OR FITNESS FOR ANY PURPOSE.\n\n1.F.5. Some states do not allow disclaimers of certain implied\nwarranties or the exclusion or limitation of certain types of damages.\nIf any disclaimer or limitation set forth in this agreement violates the\nlaw of the state applicable to this agreement, the agreement shall be\ninterpreted to make the maximum disclaimer or limitation permitted by\nthe applicable state law. The invalidity or unenforceability of any\nprovision of this agreement shall not void the remaining provisions.\n\n1.F.6. INDEMNITY - You agree to indemnify and hold the Foundation, the\ntrademark owner, any agent or employee of the Foundation, anyone\nproviding copies of Project Gutenberg-tm electronic works in accordance\nwith this agreement, and any volunteers associated with the production,\npromotion and distribution of Project Gutenberg-tm electronic works,\nharmless from all liability, costs and expenses, including legal fees,\nthat arise directly or indirectly from any of the following which you do\nor cause to occur: (a) distribution of this or any Project Gutenberg-tm\nwork, (b) alteration, modification, or additions or deletions to any\nProject Gutenberg-tm work, and (c) any Defect you cause.\n\n\nSection 2. Information about the Mission of Project Gutenberg-tm\n\nProject Gutenberg-tm is synonymous with the free distribution of\nelectronic works in formats readable by the widest variety of computers\nincluding obsolete, old, middle-aged and new computers. It exists\nbecause of the efforts of hundreds of volunteers and donations from\npeople in all walks of life.\n\nVolunteers and financial support to provide volunteers with the\nassistance they need, is critical to reaching Project Gutenberg-tm’s\ngoals and ensuring that the Project Gutenberg-tm collection will\nremain freely available for generations to come. In 2001, the Project\nGutenberg Literary Archive Foundation was created to provide a secure\nand permanent future for Project Gutenberg-tm and future generations.\nTo learn more about the Project Gutenberg Literary Archive Foundation\nand how your efforts and donations can help, see Sections 3 and 4\nand the Foundation web page at http://www.pglaf.org.\n\n\nSection 3. Information about the Project Gutenberg Literary Archive\nFoundation\n\nThe Project Gutenberg Literary Archive Foundation is a non profit\n501(c)(3) educational corporation organized under the laws of the\nstate of Mississippi and granted tax exempt status by the Internal\nRevenue Service. The Foundation’s EIN or federal tax identification\nnumber is 64-6221541. Its 501(c)(3) letter is posted at\nhttp://pglaf.org/fundraising. Contributions to the Project Gutenberg\nLiterary Archive Foundation are tax deductible to the full extent\npermitted by U.S. federal laws and your state’s laws.\n\nThe Foundation’s principal office is located at 4557 Melan Dr. S.\nFairbanks, AK, 99712., but its volunteers and employees are scattered\nthroughout numerous locations. Its business office is located at\n809 North 1500 West, Salt Lake City, UT 84116, (801) 596-1887, email\nbusiness@pglaf.org. Email contact links and up to date contact\ninformation can be found at the Foundation’s web site and official\npage at http://pglaf.org\n\nFor additional contact information:\n Dr. Gregory B. Newby\n Chief Executive and Director\n gbnewby@pglaf.org\n\n\nSection 4. Information about Donations to the Project Gutenberg\nLiterary Archive Foundation\n\nProject Gutenberg-tm depends upon and cannot survive without wide\nspread public support and donations to carry out its mission of\nincreasing the number of public domain and licensed works that can be\nfreely distributed in machine readable form accessible by the widest\narray of equipment including outdated equipment. Many small donations\n($1 to $5,000) are particularly important to maintaining tax exempt\nstatus with the IRS.\n\nThe Foundation is committed to complying with the laws regulating\ncharities and charitable donations in all 50 states of the United\nStates. Compliance requirements are not uniform and it takes a\nconsiderable effort, much paperwork and many fees to meet and keep up\nwith these requirements. We do not solicit donations in locations\nwhere we have not received written confirmation of compliance. To\nSEND DONATIONS or determine the status of compliance for any\nparticular state visit http://pglaf.org\n\nWhile we cannot and do not solicit contributions from states where we\nhave not met the solicitation requirements, we know of no prohibition\nagainst accepting unsolicited donations from donors in such states who\napproach us with offers to donate.\n\nInternational donations are gratefully accepted, but we cannot make\nany statements concerning tax treatment of donations received from\noutside the United States. U.S. laws alone swamp our small staff.\n\nPlease check the Project Gutenberg Web pages for current donation\nmethods and addresses. Donations are accepted in a number of other\nways including checks, online payments and credit card donations.\nTo donate, please visit: http://pglaf.org/donate\n\n\nSection 5. General Information About Project Gutenberg-tm electronic\nworks.\n\nProfessor Michael S. Hart is the originator of the Project Gutenberg-tm\nconcept of a library of electronic works that could be freely shared\nwith anyone. For thirty years, he produced and distributed Project\nGutenberg-tm eBooks with only a loose network of volunteer support.\n\n\nProject Gutenberg-tm eBooks are often created from several printed\neditions, all of which are confirmed as Public Domain in the U.S.\nunless a copyright notice is included. Thus, we do not necessarily\nkeep eBooks in compliance with any particular paper edition.\n\n\nMost people start at our Web site which has the main PG search facility:\n\n http://www.gutenberg.org\n\nThis Web site includes information about Project Gutenberg-tm,\nincluding how to make donations to the Project Gutenberg Literary\nArchive Foundation, how to help produce our new eBooks, and how to\nsubscribe to our email newsletter to hear about new eBooks.\n" + +}, "geometry": { "type": "Point", "coordinates": [ 0,0 ] } } 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 new file mode 100644 index 0000000..e1dc99b --- /dev/null +++ b/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-densest-as-needed.json @@ -0,0 +1,7184 @@ +{ "type": "FeatureCollection", "properties": { +"bounds": "-180.000000,-85.051129,180.000000,83.645130", +"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", +"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\"} } ] }", +"maxzoom": "5", +"minzoom": "0", +"name": "tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-densest-as-needed.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": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.917969, 20.303418 ], [ -155.302734, 20.055931 ], [ -154.863281, 19.559790 ], [ -155.566406, 19.145168 ], [ -155.742188, 18.979026 ], [ -156.005859, 19.062118 ], [ -156.093750, 19.725342 ], [ -155.917969, 20.055931 ], [ -155.917969, 20.303418 ] ] ], [ [ [ -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 ] ] ], [ [ [ -157.324219, 21.289374 ], [ -156.796875, 21.207459 ], [ -156.796875, 21.125498 ], [ -157.412109, 21.125498 ], [ -157.324219, 21.289374 ] ] ], [ [ [ -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 ] ] ], [ [ [ -94.833984, 49.439557 ], [ -94.658203, 48.864715 ], [ -94.394531, 48.690960 ], [ -92.636719, 48.458352 ], [ -91.669922, 48.166085 ], [ -90.878906, 48.283193 ], [ -89.648438, 48.048710 ], [ -89.296875, 48.048710 ], [ -88.417969, 48.341646 ], [ -84.902344, 46.920255 ], [ -84.814453, 46.679594 ], [ -84.550781, 46.558860 ], [ -84.638672, 46.498392 ], [ -84.375000, 46.437857 ], [ -84.199219, 46.558860 ], [ -84.111328, 46.316584 ], [ -83.935547, 46.134170 ], [ -83.671875, 46.134170 ], [ -83.496094, 46.012224 ], [ -83.671875, 45.828799 ], [ -82.617188, 45.398450 ], [ -82.177734, 43.580391 ], [ -82.441406, 43.004647 ], [ -83.144531, 42.098222 ], [ -83.056641, 41.836828 ], [ -82.705078, 41.705729 ], [ -82.441406, 41.705729 ], [ -81.298828, 42.228517 ], [ -80.332031, 42.423457 ], [ -79.013672, 42.875964 ], [ -79.189453, 43.516689 ], [ -78.750000, 43.644026 ], [ -76.904297, 43.644026 ], [ -76.552734, 44.024422 ], [ -75.322266, 44.840291 ], [ -74.882812, 45.026950 ], [ -71.542969, 45.026950 ], [ -71.455078, 45.274886 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.951150 ], [ -70.048828, 46.739861 ], [ -69.257812, 47.457809 ], [ -68.906250, 47.219568 ], [ -68.291016, 47.398349 ], [ -67.851562, 47.100045 ], [ -67.851562, 45.706179 ], [ -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 ], [ -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.322266, 39.027719 ], [ -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.332031, 32.546813 ], [ -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.880859, 27.916767 ], [ -82.705078, 28.613459 ], [ -82.968750, 29.152161 ], [ -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.745610 ], [ -97.207031, 25.878994 ], [ -97.558594, 25.878994 ], [ -98.261719, 26.115986 ], [ -99.052734, 26.431228 ], [ -99.580078, 27.605671 ], [ -100.195312, 28.149503 ], [ -100.986328, 29.382175 ], [ -101.689453, 29.840644 ], [ -102.480469, 29.764377 ], [ -103.183594, 28.998532 ], [ -103.974609, 29.305561 ], [ -104.501953, 29.611670 ], [ -105.117188, 30.675715 ], [ -106.523438, 31.802893 ], [ -108.281250, 31.802893 ], [ -108.281250, 31.353637 ], [ -111.093750, 31.353637 ], [ -114.873047, 32.546813 ], [ -114.785156, 32.768800 ], [ -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 ], [ -95.185547, 49.037868 ], [ -95.185547, 49.439557 ], [ -94.833984, 49.439557 ] ] ], [ [ [ -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 ], [ -141.064453, 60.326948 ], [ -140.097656, 60.283408 ], [ -139.042969, 60.020952 ], [ -137.460938, 58.950008 ], [ -136.494141, 59.489726 ], [ -135.527344, 59.800634 ], [ -135.000000, 59.310768 ], [ -133.417969, 58.447733 ], [ -131.748047, 56.559482 ], [ -130.078125, 55.924586 ], [ -129.990234, 55.329144 ], [ -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 ] ] ], [ [ [ -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 ] ] ], [ [ [ -166.552734, 60.413852 ], [ -165.761719, 60.326948 ], [ -165.585938, 59.933000 ], [ -166.201172, 59.756395 ], [ -167.519531, 60.239811 ], [ -166.552734, 60.413852 ] ] ], [ [ [ -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.683594, 63.391522 ], [ -171.562500, 63.352129 ], [ -171.826172, 63.430860 ], [ -171.738281, 63.821288 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "The Bahamas", "sov_a3": "BHS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "The Bahamas", "adm0_a3": "BHS", "geou_dif": 0, "geounit": "The Bahamas", "gu_a3": "BHS", "su_dif": 0, "subunit": "The Bahamas", "su_a3": "BHS", "brk_diff": 0, "name": "Bahamas", "name_long": "Bahamas", "brk_a3": "BHS", "brk_name": "Bahamas", "abbrev": "Bhs.", "postal": "BS", "formal_en": "Commonwealth of the Bahamas", "name_sort": "Bahamas, The", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 309156, "gdp_md_est": 9093, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BS", "iso_a3": "BHS", "iso_n3": "044", "un_a3": "044", "wb_a2": "BS", "wb_a3": "BHS", "woe_id": -99, "adm0_a3_is": "BHS", "adm0_a3_us": "BHS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -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, 27.059126 ], [ -77.080078, 26.667096 ], [ -77.255859, 25.958045 ], [ -77.431641, 26.037042 ], [ -77.343750, 26.588527 ], [ -77.871094, 27.059126 ] ] ], [ [ [ -77.871094, 26.902477 ], [ -77.871094, 26.588527 ], [ -78.925781, 26.431228 ], [ -79.013672, 26.824071 ], [ -77.871094, 26.902477 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.925781, 1.406109 ], [ -77.871094, 0.878872 ], [ -77.695312, 0.878872 ], [ -77.431641, 0.439449 ], [ -76.640625, 0.263671 ], [ -76.376953, 0.439449 ], [ -75.410156, -0.087891 ], [ -75.234375, -0.878872 ], [ -75.585938, -1.493971 ], [ -76.640625, -2.547988 ], [ -77.871094, -2.986927 ], [ -78.486328, -3.864255 ], [ -78.662109, -4.477856 ], [ -79.277344, -4.915833 ], [ -79.628906, -4.390229 ], [ -80.068359, -4.302591 ], [ -80.507812, -4.390229 ], [ -80.507812, -4.039618 ], [ -80.244141, -3.776559 ], [ -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.068359, 0.439449 ], [ -80.156250, 0.790990 ], [ -78.925781, 1.406109 ] ] ] } } +, +{ "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": [ [ [ [ -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 ], [ -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 ], [ -60.732422, -73.150440 ], [ -60.908203, -73.677264 ], [ -61.435547, -74.091974 ], [ -62.050781, -74.425777 ], [ -63.369141, -74.566736 ], [ -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 ], [ -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.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 ], [ 102.832031, -65.549367 ], [ 103.447266, -65.694476 ], [ 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 ], [ 166.113281, -70.728979 ], [ 167.255859, -70.815812 ], [ 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.564453, -76.226907 ], [ 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.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -180.000000, -84.714152 ], [ -179.121094, -84.133963 ], [ -177.275391, -84.448616 ], [ -176.132812, -84.097922 ], [ -175.869141, -84.115970 ], [ -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 ], [ -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 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Yemen", "sov_a3": "YEM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Yemen", "adm0_a3": "YEM", "geou_dif": 0, "geounit": "Yemen", "gu_a3": "YEM", "su_dif": 0, "subunit": "Yemen", "su_a3": "YEM", "brk_diff": 0, "name": "Yemen", "name_long": "Yemen", "brk_a3": "YEM", "brk_name": "Yemen", "abbrev": "Yem.", "postal": "YE", "formal_en": "Republic of Yemen", "name_sort": "Yemen, Rep.", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 23822783, "gdp_md_est": 55280, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "YE", "iso_a3": "YEM", "iso_n3": "887", "un_a3": "887", "wb_a2": "RY", "wb_a3": "YEM", "woe_id": -99, "adm0_a3_is": "YEM", "adm0_a3_us": "YEM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.943359, 19.062118 ], [ 53.085938, 16.720385 ], [ 52.382812, 16.383391 ], [ 52.119141, 15.623037 ], [ 49.570312, 14.774883 ], [ 48.603516, 14.008696 ], [ 47.900391, 14.008696 ], [ 47.285156, 13.667338 ], [ 45.615234, 13.325485 ], [ 44.912109, 12.726084 ], [ 44.472656, 12.726084 ], [ 44.121094, 12.640338 ], [ 43.417969, 12.640338 ], [ 43.154297, 13.239945 ], [ 43.242188, 13.838080 ], [ 42.890625, 14.859850 ], [ 42.539062, 15.284185 ], [ 42.802734, 15.284185 ], [ 42.626953, 15.792254 ], [ 42.802734, 15.961329 ], [ 42.714844, 16.383391 ], [ 43.154297, 16.720385 ], [ 43.066406, 17.140790 ], [ 43.330078, 17.644022 ], [ 43.769531, 17.392579 ], [ 45.175781, 17.476432 ], [ 46.318359, 17.308688 ], [ 46.669922, 17.308688 ], [ 46.933594, 16.972741 ], [ 47.460938, 17.140790 ], [ 48.164062, 18.229351 ], [ 49.042969, 18.646245 ], [ 51.943359, 19.062118 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Laos", "sov_a3": "LAO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Laos", "adm0_a3": "LAO", "geou_dif": 0, "geounit": "Laos", "gu_a3": "LAO", "su_dif": 0, "subunit": "Laos", "su_a3": "LAO", "brk_diff": 0, "name": "Lao PDR", "name_long": "Lao PDR", "brk_a3": "LAO", "brk_name": "Laos", "abbrev": "Laos", "postal": "LA", "formal_en": "Lao People's Democratic Republic", "name_sort": "Lao PDR", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 6834942, "gdp_md_est": 13980, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LA", "iso_a3": "LAO", "iso_n3": "418", "un_a3": "418", "wb_a2": "LA", "wb_a3": "LAO", "woe_id": -99, "adm0_a3_is": "LAO", "adm0_a3_us": "LAO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.128906, 22.512557 ], [ 102.744141, 21.698265 ], [ 103.183594, 20.797201 ], [ 104.414062, 20.797201 ], [ 104.765625, 19.890723 ], [ 104.150391, 19.642588 ], [ 103.886719, 19.311143 ], [ 105.029297, 18.729502 ], [ 106.523438, 16.636192 ], [ 107.226562, 15.961329 ], [ 107.490234, 15.284185 ], [ 107.314453, 14.264383 ], [ 106.435547, 14.604847 ], [ 105.996094, 13.923404 ], [ 105.205078, 14.349548 ], [ 105.468750, 14.774883 ], [ 105.556641, 15.623037 ], [ 104.765625, 16.467695 ], [ 104.677734, 17.476432 ], [ 103.886719, 18.312811 ], [ 103.183594, 18.312811 ], [ 102.919922, 17.978733 ], [ 102.392578, 17.978733 ], [ 102.041016, 18.145852 ], [ 100.986328, 17.560247 ], [ 100.986328, 18.479609 ], [ 101.250000, 19.476950 ], [ 100.546875, 19.559790 ], [ 100.546875, 20.138470 ], [ 100.107422, 20.468189 ], [ 100.283203, 20.797201 ], [ 101.162109, 21.453069 ], [ 101.250000, 21.207459 ], [ 101.777344, 21.207459 ], [ 101.601562, 22.350076 ], [ 102.128906, 22.512557 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "French Southern and Antarctic Lands", "adm0_a3": "ATF", "geou_dif": 0, "geounit": "French Southern and Antarctic Lands", "gu_a3": "ATF", "su_dif": 0, "subunit": "French Southern and Antarctic Lands", "su_a3": "ATF", "brk_diff": 0, "name": "Fr. S. Antarctic Lands", "name_long": "French Southern and Antarctic Lands", "brk_a3": "ATF", "brk_name": "Fr. S. and Antarctic Lands", "abbrev": "Fr. S.A.L.", "postal": "TF", "formal_en": "Territory of the French Southern and Antarctic Lands", "note_adm0": "Fr.", "name_sort": "French Southern and Antarctic Lands", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 140, "gdp_md_est": 16, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TF", "iso_a3": "ATF", "iso_n3": "260", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATF", "adm0_a3_us": "ATF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Seven seas (open ocean)", "region_un": "Seven seas (open ocean)", "subregion": "Seven seas (open ocean)", "region_wb": "Sub-Saharan Africa", "name_len": 22, "long_len": 35, "abbrev_len": 10, "tiny": 2, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.906250, -48.574790 ], [ 69.521484, -48.922499 ], [ 70.488281, -49.037868 ], [ 70.488281, -49.210420 ], [ 70.224609, -49.667628 ], [ 68.730469, -49.724479 ], [ 68.642578, -49.210420 ], [ 68.906250, -48.574790 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Papua New Guinea", "sov_a3": "PNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Papua New Guinea", "adm0_a3": "PNG", "geou_dif": 0, "geounit": "Papua New Guinea", "gu_a3": "PNG", "su_dif": 1, "subunit": "Papua New Guinea", "su_a3": "PN1", "brk_diff": 0, "name": "Papua New Guinea", "name_long": "Papua New Guinea", "brk_a3": "PN1", "brk_name": "Papua New Guinea", "abbrev": "P.N.G.", "postal": "PG", "formal_en": "Independent State of Papua New Guinea", "name_sort": "Papua New Guinea", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 6057263, "gdp_md_est": 13210, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PG", "iso_a3": "PNG", "iso_n3": "598", "un_a3": "598", "wb_a2": "PG", "wb_a3": "PNG", "woe_id": -99, "adm0_a3_is": "PNG", "adm0_a3_us": "PNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 16, "long_len": 16, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 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 ], [ 140.976562, -2.547988 ] ] ], [ [ [ 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 ] ] ], [ [ [ 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 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.368164, 3.513421 ], [ -67.324219, 3.337954 ], [ -67.851562, 2.855263 ], [ -67.456055, 2.635789 ], [ -67.192383, 2.284551 ], [ -66.884766, 1.274309 ], [ -67.104492, 1.142502 ], [ -67.280273, 1.757537 ], [ -67.543945, 2.064982 ], [ -67.895508, 1.713612 ], [ -69.829102, 1.757537 ], [ -69.829102, 1.098565 ], [ -69.257812, 1.010690 ], [ -69.257812, 0.615223 ], [ -69.477539, 0.747049 ], [ -70.048828, 0.571280 ], [ -70.048828, -0.175781 ], [ -69.609375, -0.527336 ], [ -69.433594, -1.098565 ], [ -69.916992, -4.258768 ], [ -70.400391, -3.732708 ], [ -70.708008, -3.732708 ], [ -70.048828, -2.723583 ], [ -70.839844, -2.240640 ], [ -71.455078, -2.328460 ], [ -71.806641, -2.152814 ], [ -72.333984, -2.416276 ], [ -73.081055, -2.284551 ], [ -73.696289, -1.230374 ], [ -74.135742, -0.966751 ], [ -74.443359, -0.527336 ], [ -75.146484, -0.043945 ], [ -75.410156, -0.131836 ], [ -75.673828, 0.000000 ], [ -76.333008, 0.439449 ], [ -76.596680, 0.263671 ], [ -77.431641, 0.439449 ], [ -77.695312, 0.834931 ], [ -77.871094, 0.834931 ], [ -78.881836, 1.406109 ], [ -79.013672, 1.713612 ], [ -78.618164, 1.801461 ], [ -78.706055, 2.284551 ], [ -78.442383, 2.635789 ], [ -77.958984, 2.723583 ], [ -77.387695, 3.513421 ], [ -67.368164, 3.513421 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.075195, 3.513421 ], [ -52.558594, 2.547988 ], [ -52.954102, 2.152814 ], [ -53.437500, 2.064982 ], [ -53.569336, 2.372369 ], [ -53.789062, 2.416276 ], [ -54.096680, 2.108899 ], [ -54.536133, 2.328460 ], [ -54.272461, 2.767478 ], [ -54.096680, 3.513421 ], [ -52.075195, 3.513421 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.881836, 1.406109 ], [ -77.871094, 0.834931 ], [ -77.695312, 0.834931 ], [ -77.431641, 0.439449 ], [ -76.596680, 0.263671 ], [ -76.333008, 0.439449 ], [ -75.673828, 0.000000 ], [ -75.410156, -0.131836 ], [ -75.234375, -0.878872 ], [ -75.585938, -1.537901 ], [ -76.640625, -2.591889 ], [ -77.871094, -2.986927 ], [ -78.486328, -3.864255 ], [ -78.662109, -4.521666 ], [ -79.233398, -4.915833 ], [ -79.628906, -4.434044 ], [ -80.068359, -4.302591 ], [ -80.463867, -4.390229 ], [ -80.507812, -4.039618 ], [ -80.200195, -3.820408 ], [ -80.332031, -3.381824 ], [ -79.804688, -2.635789 ], [ -80.024414, -2.196727 ], [ -80.375977, -2.679687 ], [ -80.991211, -2.240640 ], [ -80.771484, -1.933227 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.878872 ], [ -80.419922, -0.263671 ], [ -80.244141, 0.000000 ], [ -80.024414, 0.395505 ], [ -80.112305, 0.790990 ], [ -79.584961, 1.010690 ], [ -78.881836, 1.406109 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "Falkland Islands", "adm0_a3": "FLK", "geou_dif": 0, "geounit": "Falkland Islands", "gu_a3": "FLK", "su_dif": 0, "subunit": "Falkland Islands", "su_a3": "FLK", "brk_diff": 1, "name": "Falkland Is.", "name_long": "Falkland Islands", "brk_a3": "B12", "brk_name": "Falkland Is.", "abbrev": "Flk. Is.", "postal": "FK", "formal_en": "Falkland Islands", "note_adm0": "U.K.", "note_brk": "Admin. by U.K.; Claimed by Argentina", "name_sort": "Falkland Islands", "name_alt": "Islas Malvinas", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 3140, "gdp_md_est": 105.1, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FK", "iso_a3": "FLK", "iso_n3": "238", "un_a3": "238", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "FLK", "adm0_a3_us": "FLK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 12, "long_len": 16, "abbrev_len": 8, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.579102, -51.096623 ], [ -57.788086, -51.536086 ], [ -58.051758, -51.890054 ], [ -59.414062, -52.187405 ], [ -59.853516, -51.835778 ], [ -60.732422, -52.295042 ], [ -61.215820, -51.835778 ], [ -60.029297, -51.234407 ], [ -59.150391, -51.481383 ], [ -58.579102, -51.096623 ] ] ] } } +, +{ "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": [ [ [ [ -169.980469, -83.881684 ], [ -167.036133, -84.566386 ], [ -164.223633, -84.822341 ], [ -162.597656, -85.051129 ], [ -161.938477, -85.137560 ], [ -158.554688, -85.345325 ], [ -180.000000, -85.345325 ], [ -180.000000, -84.710102 ], [ -179.956055, -84.718199 ], [ -179.077148, -84.138452 ], [ -177.275391, -84.452865 ], [ -176.088867, -84.097922 ], [ -175.869141, -84.115970 ], [ -174.418945, -84.532994 ], [ -173.144531, -84.115970 ], [ -172.924805, -84.057113 ], [ -169.980469, -83.881684 ] ] ], [ [ [ -150.952148, -85.295131 ], [ -150.600586, -85.345325 ], [ -157.763672, -85.345325 ], [ -155.214844, -85.096413 ], [ -150.952148, -85.295131 ] ] ], [ [ [ -57.260742, -63.509375 ], [ -57.612305, -63.840668 ], [ -58.623047, -64.148952 ], [ -59.062500, -64.358931 ], [ -59.809570, -64.206377 ], [ -60.644531, -64.301822 ], [ -62.050781, -64.792848 ], [ -62.534180, -65.090646 ], [ -62.666016, -65.476508 ], [ -62.622070, -65.856756 ], [ -62.138672, -66.178266 ], [ -62.841797, -66.407955 ], [ -63.764648, -66.495740 ], [ -64.907227, -67.135829 ], [ -65.522461, -67.575717 ], [ -65.698242, -67.941650 ], [ -65.346680, -68.350594 ], [ -64.819336, -68.672544 ], [ -63.984375, -68.911005 ], [ -63.237305, -69.224997 ], [ -62.797852, -69.611206 ], [ -62.314453, -70.377854 ], [ -61.831055, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.391602, -72.006158 ], [ -61.083984, -72.369105 ], [ -61.040039, -72.764065 ], [ -60.732422, -73.163173 ], [ -60.864258, -73.689611 ], [ -61.391602, -74.104015 ], [ -62.006836, -74.437572 ], [ -63.325195, -74.566736 ], [ -63.764648, -74.925142 ], [ -64.379883, -75.253057 ], [ -65.874023, -75.628632 ], [ -67.236328, -75.791336 ], [ -69.829102, -76.216441 ], [ -70.620117, -76.629067 ], [ -72.246094, -76.669656 ], [ -74.003906, -76.629067 ], [ -75.585938, -76.710125 ], [ -77.255859, -76.710125 ], [ -76.948242, -77.098423 ], [ -75.410156, -77.273855 ], [ -74.311523, -77.551572 ], [ -73.696289, -77.906466 ], [ -74.794922, -78.215541 ], [ -76.508789, -78.116408 ], [ -77.958984, -78.376004 ], [ -78.046875, -79.179588 ], [ -76.860352, -79.512662 ], [ -76.640625, -79.882020 ], [ -75.366211, -80.253391 ], [ -73.256836, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.048828, -80.997452 ], [ -68.203125, -81.314959 ], [ -65.742188, -81.472780 ], [ -63.281250, -81.748454 ], [ -61.567383, -82.039656 ], [ -59.721680, -82.373317 ], [ -58.754883, -82.842440 ], [ -58.227539, -83.215693 ], [ -57.041016, -82.864308 ], [ -53.657227, -82.255779 ], [ -51.547852, -82.003058 ], [ -49.790039, -81.723188 ], [ -47.285156, -81.704187 ], [ -44.868164, -81.842522 ], [ -42.846680, -82.076089 ], [ -42.187500, -81.646927 ], [ -40.781250, -81.354684 ], [ -38.276367, -81.334844 ], [ -34.409180, -80.900669 ], [ -32.343750, -80.767668 ], [ -30.102539, -80.589727 ], [ -28.564453, -80.334887 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.631968 ], [ -29.707031, -79.253586 ], [ -31.640625, -79.294479 ], [ -33.706055, -79.448477 ], [ -35.683594, -79.448477 ], [ -35.947266, -79.080140 ], [ -35.815430, -78.331648 ], [ -35.332031, -78.116408 ], [ -33.925781, -77.888038 ], [ -32.255859, -77.645947 ], [ -29.794922, -77.059116 ], [ -28.916016, -76.669656 ], [ -27.553711, -76.496311 ], [ -25.488281, -76.279122 ], [ -23.950195, -76.237366 ], [ -22.500000, -76.100796 ], [ -21.225586, -75.898801 ], [ -20.039062, -75.672197 ], [ -17.534180, -75.118222 ], [ -16.655273, -74.787379 ], [ -15.732422, -74.496413 ], [ -15.424805, -74.104015 ], [ -16.479492, -73.861506 ], [ -16.127930, -73.453473 ], [ -15.468750, -73.137697 ], [ -13.315430, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.006158 ], [ -11.030273, -71.538830 ], [ -10.327148, -71.258480 ], [ -9.140625, -71.314877 ], [ -8.613281, -71.649833 ], [ -7.426758, -71.691293 ], [ -7.382812, -71.314877 ], [ -6.899414, -70.931004 ], [ -5.800781, -71.016960 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.455153 ], [ -3.076172, -71.272595 ], [ -1.801758, -71.159391 ], [ -0.703125, -71.216075 ], [ -0.263672, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.834961, -71.300793 ], [ 1.845703, -71.116770 ], [ 3.515625, -70.916641 ], [ 3.515625, -85.345325 ], [ -146.162109, -85.345325 ], [ -143.217773, -85.051129 ], [ -143.129883, -85.039743 ], [ -142.910156, -84.566386 ], [ -146.865234, -84.528806 ], [ -150.073242, -84.293450 ], [ -150.908203, -83.900390 ], [ -153.588867, -83.686615 ], [ -153.413086, -83.236426 ], [ -152.666016, -82.448764 ], [ -152.885742, -82.039656 ], [ -154.555664, -81.767353 ], [ -155.302734, -81.413933 ], [ -156.840820, -81.100015 ], [ -154.423828, -81.154241 ], [ -152.138672, -80.997452 ], [ -150.688477, -81.334844 ], [ -148.886719, -81.038617 ], [ -147.260742, -80.668436 ], [ -146.425781, -80.334887 ], [ -146.777344, -79.920548 ], [ -148.095703, -79.647774 ], [ -149.545898, -79.351472 ], [ -151.611328, -79.294479 ], [ -153.413086, -79.154810 ], [ -155.346680, -79.063478 ], [ -156.005859, -78.690491 ], [ -157.280273, -78.376004 ], [ -158.071289, -78.025574 ], [ -158.378906, -76.880775 ], [ -157.895508, -76.980149 ], [ -157.016602, -77.293202 ], [ -155.346680, -77.196176 ], [ -153.764648, -77.059116 ], [ -152.929688, -77.494607 ], [ -151.347656, -77.389504 ], [ -150.029297, -77.176684 ], [ -148.754883, -76.900709 ], [ -147.656250, -76.567955 ], [ -146.118164, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.726472 ], [ -146.206055, -75.375605 ], [ -144.931641, -75.197021 ], [ -144.360352, -75.530136 ], [ -142.822266, -75.331158 ], [ -141.679688, -75.084326 ], [ -140.229492, -75.061686 ], [ -138.867188, -74.959392 ], [ -135.219727, -74.295463 ], [ -134.472656, -74.354828 ], [ -133.769531, -74.437572 ], [ -132.275391, -74.295463 ], [ -130.957031, -74.472903 ], [ -129.594727, -74.449358 ], [ -128.276367, -74.319235 ], [ -125.419922, -74.508155 ], [ -124.013672, -74.472903 ], [ -121.113281, -74.508155 ], [ -119.707031, -74.472903 ], [ -118.696289, -74.176073 ], [ -117.509766, -74.019543 ], [ -116.235352, -74.235878 ], [ -115.048828, -74.055799 ], [ -113.950195, -73.714276 ], [ -113.334961, -74.019543 ], [ -112.983398, -74.378513 ], [ -112.324219, -74.706450 ], [ -111.269531, -74.413974 ], [ -110.083008, -74.787379 ], [ -108.720703, -74.902266 ], [ -107.578125, -75.174549 ], [ -106.171875, -75.118222 ], [ -104.897461, -74.947983 ], [ -103.403320, -74.982183 ], [ -102.041016, -75.118222 ], [ -100.678711, -75.297735 ], [ -100.151367, -74.867889 ], [ -100.766602, -74.531614 ], [ -101.293945, -74.176073 ], [ -102.568359, -74.104015 ], [ -103.139648, -73.726595 ], [ -103.710938, -72.607120 ], [ -102.919922, -72.751039 ], [ -101.645508, -72.803086 ], [ -100.327148, -72.751039 ], [ -99.140625, -72.906723 ], [ -98.129883, -73.201317 ], [ -97.690430, -73.553302 ], [ -96.372070, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.691406, -73.277353 ], [ -92.460938, -73.163173 ], [ -91.450195, -73.390781 ], [ -90.131836, -73.315246 ], [ -89.252930, -72.554498 ], [ -88.461914, -72.996909 ], [ -87.275391, -73.175897 ], [ -86.044922, -73.086633 ], [ -85.209961, -73.478485 ], [ -83.891602, -73.515935 ], [ -82.705078, -73.627789 ], [ -81.474609, -73.849286 ], [ -80.727539, -73.478485 ], [ -80.332031, -73.124945 ], [ -79.321289, -73.515935 ], [ -77.958984, -73.415885 ], [ -76.948242, -73.627789 ], [ -76.245117, -73.958939 ], [ -74.926758, -73.861506 ], [ -73.872070, -73.652545 ], [ -72.861328, -73.390781 ], [ -71.630859, -73.252045 ], [ -70.224609, -73.137697 ], [ -68.950195, -72.996909 ], [ -67.983398, -72.790088 ], [ -67.412109, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.280273, -71.635993 ], [ -68.510742, -70.095529 ], [ -68.554688, -69.702868 ], [ -68.466797, -69.318320 ], [ -67.983398, -68.942607 ], [ -67.587891, -68.528235 ], [ -67.456055, -68.138852 ], [ -67.763672, -67.322924 ], [ -67.280273, -66.861082 ], [ -66.093750, -66.196009 ], [ -65.390625, -65.892680 ], [ -64.599609, -65.585720 ], [ -64.204102, -65.164579 ], [ -63.632812, -64.886265 ], [ -63.017578, -64.623877 ], [ -62.050781, -64.567319 ], [ -61.435547, -64.263684 ], [ -60.732422, -64.072200 ], [ -59.897461, -63.937372 ], [ -59.194336, -63.685248 ], [ -58.623047, -63.371832 ], [ -57.832031, -63.253412 ], [ -57.260742, -63.509375 ] ] ], [ [ [ -163.125000, -78.215541 ], [ -161.279297, -78.376004 ], [ -160.268555, -78.690491 ], [ -159.521484, -79.038437 ], [ -159.213867, -79.496652 ], [ -161.147461, -79.631968 ], [ -162.465820, -79.278140 ], [ -163.037109, -78.920832 ], [ -163.081055, -78.861562 ], [ -163.740234, -78.595299 ], [ -163.125000, -78.215541 ] ] ], [ [ [ -122.431641, -73.315246 ], [ -121.245117, -73.490977 ], [ -119.926758, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.311523, -73.824820 ], [ -120.234375, -74.079925 ], [ -121.640625, -74.007440 ], [ -122.651367, -73.652545 ], [ -122.431641, -73.315246 ] ] ], [ [ [ -126.562500, -73.239377 ], [ -125.595703, -73.478485 ], [ -124.057617, -73.861506 ], [ -125.947266, -73.726595 ], [ -127.309570, -73.453473 ], [ -126.562500, -73.239377 ] ] ], [ [ [ -101.733398, -71.705093 ], [ -100.458984, -71.842539 ], [ -99.008789, -71.924528 ], [ -97.910156, -72.060381 ], [ -96.811523, -71.951778 ], [ -96.240234, -72.514931 ], [ -96.987305, -72.435535 ], [ -98.217773, -72.475276 ], [ -99.448242, -72.435535 ], [ -100.810547, -72.488504 ], [ -101.821289, -72.302431 ], [ -102.348633, -71.883578 ], [ -101.733398, -71.705093 ] ] ], [ [ [ -70.268555, -68.863517 ], [ -69.741211, -69.240579 ], [ -69.521484, -69.611206 ], [ -68.730469, -70.495574 ], [ -68.466797, -70.945356 ], [ -68.334961, -71.399165 ], [ -68.510742, -71.787681 ], [ -68.818359, -72.168351 ], [ -69.960938, -72.302431 ], [ -71.103516, -72.501722 ], [ -72.421875, -72.475276 ], [ -71.938477, -72.087432 ], [ -74.223633, -72.355789 ], [ -74.970703, -72.060381 ], [ -75.014648, -71.649833 ], [ -73.916016, -71.258480 ], [ -73.256836, -71.145195 ], [ -72.114258, -71.187754 ], [ -71.806641, -70.670881 ], [ -71.762695, -70.303933 ], [ -71.762695, -69.503765 ], [ -71.191406, -69.021414 ], [ -70.268555, -68.863517 ] ] ], [ [ [ -46.669922, -77.823323 ], [ -45.175781, -78.043795 ], [ -43.945312, -78.473002 ], [ -43.505859, -79.080140 ], [ -43.374023, -79.512662 ], [ -43.374023, -80.020042 ], [ -44.912109, -80.334887 ], [ -46.538086, -80.589727 ], [ -48.427734, -80.823901 ], [ -50.493164, -81.024916 ], [ -52.866211, -80.963004 ], [ -54.184570, -80.632740 ], [ -54.008789, -80.216123 ], [ -51.855469, -79.943595 ], [ -51.020508, -79.608215 ], [ -49.921875, -78.810511 ], [ -48.691406, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.823323 ] ] ], [ [ [ -60.644531, -79.624056 ], [ -59.589844, -80.035262 ], [ -60.161133, -80.997452 ], [ -62.270508, -80.858875 ], [ -64.511719, -80.921494 ], [ -65.742188, -80.582539 ], [ -65.742188, -80.546518 ], [ -66.313477, -80.253391 ], [ -64.072266, -80.290518 ], [ -61.918945, -80.386396 ], [ -61.171875, -79.974243 ], [ -60.644531, -79.624056 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Fiji", "sov_a3": "FJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Fiji", "adm0_a3": "FJI", "geou_dif": 0, "geounit": "Fiji", "gu_a3": "FJI", "su_dif": 0, "subunit": "Fiji", "su_a3": "FJI", "brk_diff": 0, "name": "Fiji", "name_long": "Fiji", "brk_a3": "FJI", "brk_name": "Fiji", "abbrev": "Fiji", "postal": "FJ", "formal_en": "Republic of Fiji", "name_sort": "Fiji", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 944720, "gdp_md_est": 3579, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "FJ", "iso_a3": "FJI", "iso_n3": "242", "un_a3": "242", "wb_a2": "FJ", "wb_a3": "FJI", "woe_id": -99, "adm0_a3_is": "FJI", "adm0_a3_us": "FJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -179.824219, -16.003576 ], [ -179.956055, -16.467695 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.045813 ], [ -179.824219, -16.003576 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -95.229492, 71.924528 ], [ -93.911133, 71.760191 ], [ -92.900391, 71.328950 ], [ -91.538086, 70.199994 ], [ -92.416992, 69.702868 ], [ -90.571289, 69.503765 ], [ -90.571289, 68.479926 ], [ -89.252930, 69.271709 ], [ -88.022461, 68.624544 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.925140 ], [ -85.605469, 68.800041 ], [ -85.561523, 69.885010 ], [ -84.111328, 69.809309 ], [ -82.661133, 69.672358 ], [ -81.298828, 69.162558 ], [ -81.254883, 68.672544 ], [ -82.001953, 68.138852 ], [ -81.298828, 67.609221 ], [ -81.386719, 67.118748 ], [ -83.364258, 66.425537 ], [ -84.770508, 66.266856 ], [ -85.781250, 66.565747 ], [ -86.088867, 66.071546 ], [ -87.055664, 65.219894 ], [ -87.363281, 64.792848 ], [ -88.505859, 64.110602 ], [ -89.956055, 64.033744 ], [ -90.747070, 63.626745 ], [ -90.791016, 62.975198 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.042138 ], [ -94.262695, 60.909073 ], [ -94.658203, 60.130564 ], [ -94.702148, 58.950008 ], [ -93.251953, 58.790978 ], [ -92.768555, 57.868132 ], [ -92.329102, 57.088515 ], [ -90.922852, 57.302790 ], [ -89.077148, 56.872996 ], [ -88.066406, 56.486762 ], [ -87.363281, 56.022948 ], [ -86.088867, 55.727110 ], [ -85.034180, 55.304138 ], [ -83.364258, 55.254077 ], [ -82.309570, 55.153766 ], [ -82.441406, 54.290882 ], [ -82.133789, 53.278353 ], [ -81.430664, 52.160455 ], [ -79.936523, 51.234407 ], [ -79.145508, 51.536086 ], [ -78.618164, 52.562995 ], [ -79.145508, 54.162434 ], [ -79.848633, 54.673831 ], [ -78.266602, 55.153766 ], [ -77.124023, 55.850650 ], [ -76.552734, 56.535258 ], [ -76.640625, 57.207710 ], [ -77.343750, 58.054632 ], [ -78.530273, 58.813742 ], [ -77.343750, 59.866883 ], [ -77.783203, 60.759160 ], [ -78.134766, 62.329208 ], [ -77.431641, 62.552857 ], [ -75.717773, 62.288365 ], [ -74.707031, 62.186014 ], [ -73.872070, 62.451406 ], [ -72.949219, 62.124436 ], [ -71.718750, 61.543641 ], [ -71.411133, 61.143235 ], [ -69.609375, 61.079544 ], [ -69.653320, 60.239811 ], [ -69.301758, 58.972667 ], [ -68.378906, 58.813742 ], [ -67.675781, 58.217025 ], [ -66.225586, 58.768200 ], [ -65.258789, 59.888937 ], [ -64.599609, 60.348696 ], [ -63.808594, 59.445075 ], [ -61.435547, 56.968936 ], [ -61.831055, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.229023 ], [ -58.007812, 54.952386 ], [ -57.348633, 54.648413 ], [ -56.953125, 53.800651 ], [ -56.162109, 53.670680 ], [ -55.766602, 53.278353 ], [ -55.722656, 52.160455 ], [ -57.128906, 51.426614 ], [ -58.798828, 51.069017 ], [ -60.073242, 50.261254 ], [ -61.743164, 50.092393 ], [ -63.896484, 50.317408 ], [ -65.390625, 50.317408 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.525208 ], [ -68.554688, 49.095452 ], [ -69.960938, 47.754098 ], [ -71.147461, 46.830134 ], [ -70.268555, 47.010226 ], [ -68.686523, 48.312428 ], [ -66.577148, 49.152970 ], [ -65.083008, 49.239121 ], [ -64.204102, 48.748945 ], [ -65.126953, 48.078079 ], [ -64.819336, 47.010226 ], [ -64.511719, 46.255847 ], [ -63.193359, 45.767523 ], [ -61.523438, 45.890008 ], [ -60.556641, 47.010226 ], [ -60.468750, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.274886 ], [ -63.281250, 44.684277 ], [ -64.248047, 44.276671 ], [ -65.390625, 43.548548 ], [ -66.137695, 43.644026 ], [ -66.181641, 44.465151 ], [ -64.467773, 45.305803 ], [ -66.049805, 45.274886 ], [ -67.148438, 45.151053 ], [ -67.807617, 45.706179 ], [ -67.807617, 47.070122 ], [ -68.247070, 47.368594 ], [ -68.906250, 47.189712 ], [ -69.257812, 47.457809 ], [ -70.004883, 46.709736 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.103516, 45.305803 ], [ -71.411133, 45.274886 ], [ -71.542969, 45.026950 ], [ -74.882812, 45.026950 ], [ -75.322266, 44.840291 ], [ -76.508789, 44.024422 ], [ -76.860352, 43.644026 ], [ -78.750000, 43.644026 ], [ -79.189453, 43.484812 ], [ -79.013672, 43.293200 ], [ -78.969727, 42.875964 ], [ -80.288086, 42.391009 ], [ -81.298828, 42.228517 ], [ -82.441406, 41.705729 ], [ -82.705078, 41.705729 ], [ -83.056641, 41.836828 ], [ -83.144531, 42.000325 ], [ -83.144531, 42.098222 ], [ -82.441406, 43.004647 ], [ -82.177734, 43.580391 ], [ -82.573242, 45.367584 ], [ -83.627930, 45.828799 ], [ -83.496094, 46.012224 ], [ -83.627930, 46.134170 ], [ -83.891602, 46.134170 ], [ -84.111328, 46.286224 ], [ -84.155273, 46.528635 ], [ -84.375000, 46.437857 ], [ -84.638672, 46.468133 ], [ -84.550781, 46.558860 ], [ -84.814453, 46.649436 ], [ -84.902344, 46.920255 ], [ -88.417969, 48.312428 ], [ -89.296875, 48.048710 ], [ -89.604492, 48.019324 ], [ -90.834961, 48.283193 ], [ -91.669922, 48.166085 ], [ -92.636719, 48.458352 ], [ -94.350586, 48.690960 ], [ -94.658203, 48.864715 ], [ -94.833984, 49.410973 ], [ -95.185547, 49.410973 ], [ -95.185547, 49.009051 ], [ -123.002930, 49.009051 ], [ -124.936523, 50.007739 ], [ -125.639648, 50.429518 ], [ -127.441406, 50.847573 ], [ -128.012695, 51.727028 ], [ -127.880859, 52.348763 ], [ -129.155273, 52.776186 ], [ -129.331055, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.561523, 54.826008 ], [ -129.990234, 55.304138 ], [ -130.034180, 55.924586 ], [ -131.748047, 56.559482 ], [ -133.374023, 58.424730 ], [ -134.296875, 58.881942 ], [ -134.956055, 59.288332 ], [ -135.483398, 59.800634 ], [ -136.494141, 59.467408 ], [ -137.460938, 58.927334 ], [ -138.383789, 59.578851 ], [ -139.042969, 60.020952 ], [ -140.053711, 60.283408 ], [ -141.020508, 60.326948 ], [ -141.020508, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 69.005675 ], [ -136.538086, 68.911005 ], [ -135.659180, 69.318320 ], [ -134.428711, 69.641804 ], [ -132.934570, 69.519147 ], [ -131.440430, 69.945375 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.794136 ], [ -128.364258, 70.020587 ], [ -128.144531, 70.495574 ], [ -127.485352, 70.377854 ], [ -125.771484, 69.488372 ], [ -124.453125, 70.170201 ], [ -124.321289, 69.411242 ], [ -123.090820, 69.565226 ], [ -122.695312, 69.869892 ], [ -121.508789, 69.809309 ], [ -119.970703, 69.380313 ], [ -117.641602, 69.021414 ], [ -116.235352, 68.847665 ], [ -115.268555, 68.911005 ], [ -113.906250, 68.399180 ], [ -115.312500, 67.908619 ], [ -113.510742, 67.692771 ], [ -110.830078, 67.809245 ], [ -109.951172, 67.991108 ], [ -108.896484, 67.390599 ], [ -107.797852, 67.892086 ], [ -108.852539, 68.318146 ], [ -108.193359, 68.656555 ], [ -106.962891, 68.704486 ], [ -106.171875, 68.800041 ], [ -105.380859, 68.576441 ], [ -104.370117, 68.024022 ], [ -103.227539, 68.106102 ], [ -101.469727, 67.659386 ], [ -99.931641, 67.809245 ], [ -98.481445, 67.792641 ], [ -98.569336, 68.415352 ], [ -97.690430, 68.592487 ], [ -96.152344, 68.253111 ], [ -96.152344, 67.305976 ], [ -95.493164, 68.106102 ], [ -94.702148, 68.073305 ], [ -94.262695, 69.084257 ], [ -95.317383, 69.687618 ], [ -96.503906, 70.095529 ], [ -96.416016, 71.201920 ], [ -95.229492, 71.924528 ] ] ], [ [ [ -55.898438, 51.645294 ], [ -55.415039, 51.590723 ], [ -56.162109, 50.708634 ], [ -56.821289, 49.837982 ], [ -56.162109, 50.176898 ], [ -55.502930, 49.951220 ], [ -55.854492, 49.610710 ], [ -54.975586, 49.325122 ], [ -54.492188, 49.582226 ], [ -53.481445, 49.267805 ], [ -53.789062, 48.545705 ], [ -53.129883, 48.690960 ], [ -52.998047, 48.166085 ], [ -52.690430, 47.546872 ], [ -53.085938, 46.679594 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.830134 ], [ -53.964844, 47.635784 ], [ -54.272461, 47.754098 ], [ -55.415039, 46.890232 ], [ -56.030273, 46.920255 ], [ -55.327148, 47.398349 ], [ -56.293945, 47.635784 ], [ -57.348633, 47.576526 ], [ -59.282227, 47.606163 ], [ -59.458008, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.545705 ], [ -58.403320, 49.152970 ], [ -57.392578, 50.736455 ], [ -56.777344, 51.289406 ], [ -55.898438, 51.645294 ] ] ], [ [ [ -64.028320, 47.040182 ], [ -63.676758, 46.558860 ], [ -62.973633, 46.437857 ], [ -62.050781, 46.468133 ], [ -62.534180, 46.042736 ], [ -62.885742, 45.981695 ], [ -64.160156, 46.407564 ], [ -64.423828, 46.739861 ], [ -64.028320, 47.040182 ] ] ], [ [ [ -128.364258, 50.792047 ], [ -126.738281, 50.401515 ], [ -125.771484, 50.317408 ], [ -124.936523, 49.496675 ], [ -123.925781, 49.066668 ], [ -123.530273, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.683594, 48.835797 ], [ -125.991211, 49.181703 ], [ -126.870117, 49.553726 ], [ -127.045898, 49.837982 ], [ -128.100586, 50.007739 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.792047 ] ] ], [ [ [ -64.204102, 49.979488 ], [ -62.885742, 49.724479 ], [ -61.875000, 49.296472 ], [ -61.831055, 49.124219 ], [ -62.314453, 49.095452 ], [ -63.632812, 49.410973 ], [ -64.555664, 49.894634 ], [ -64.204102, 49.979488 ] ] ], [ [ [ -133.198242, 54.188155 ], [ -132.714844, 54.059388 ], [ -131.791992, 54.136696 ], [ -132.055664, 52.988337 ], [ -131.220703, 52.187405 ], [ -131.616211, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.583008, 53.120405 ], [ -133.066406, 53.435719 ], [ -133.242188, 53.852527 ], [ -133.198242, 54.188155 ] ] ], [ [ [ -85.869141, 73.812574 ], [ -86.572266, 73.163173 ], [ -85.781250, 72.541319 ], [ -84.858398, 73.340461 ], [ -82.353516, 73.751205 ], [ -80.639648, 72.724958 ], [ -80.771484, 72.073911 ], [ -78.793945, 72.355789 ], [ -77.827148, 72.751039 ], [ -75.629883, 72.248917 ], [ -74.267578, 71.773941 ], [ -74.135742, 71.343013 ], [ -72.246094, 71.566641 ], [ -71.235352, 70.931004 ], [ -68.818359, 70.539543 ], [ -67.939453, 70.125430 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -66.489258, 68.073305 ], [ -64.863281, 67.858985 ], [ -63.457031, 66.930060 ], [ -61.875000, 66.878345 ], [ -62.182617, 66.160511 ], [ -63.940430, 65.016506 ], [ -65.170898, 65.440002 ], [ -66.752930, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.159180, 65.694476 ], [ -67.104492, 65.109148 ], [ -65.742188, 64.661517 ], [ -65.346680, 64.396938 ], [ -64.687500, 63.411198 ], [ -65.039062, 62.694310 ], [ -66.313477, 62.955223 ], [ -68.818359, 63.763065 ], [ -66.357422, 62.288365 ], [ -66.181641, 61.938950 ], [ -68.906250, 62.349609 ], [ -71.059570, 62.915233 ], [ -72.246094, 63.411198 ], [ -71.894531, 63.685248 ], [ -74.838867, 64.680318 ], [ -74.838867, 64.396938 ], [ -77.739258, 64.244595 ], [ -78.574219, 64.586185 ], [ -77.915039, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.311523, 65.820782 ], [ -73.959961, 66.319861 ], [ -72.685547, 67.289015 ], [ -72.949219, 67.742759 ], [ -73.344727, 68.073305 ], [ -74.882812, 68.560384 ], [ -76.904297, 68.895187 ], [ -76.245117, 69.162558 ], [ -77.299805, 69.778952 ], [ -78.178711, 69.839622 ], [ -78.969727, 70.170201 ], [ -79.497070, 69.885010 ], [ -81.342773, 69.748551 ], [ -84.946289, 69.975493 ], [ -87.099609, 70.274290 ], [ -88.725586, 70.422079 ], [ -89.516602, 70.772443 ], [ -88.505859, 71.230221 ], [ -89.912109, 71.230221 ], [ -90.219727, 72.235514 ], [ -89.472656, 73.137697 ], [ -88.417969, 73.540855 ], [ -85.869141, 73.812574 ] ] ], [ [ [ -79.936523, 62.390369 ], [ -79.541016, 62.369996 ], [ -79.277344, 62.165502 ], [ -79.672852, 61.648162 ], [ -80.112305, 61.731526 ], [ -80.375977, 62.021528 ], [ -79.936523, 62.390369 ] ] ], [ [ [ -81.914062, 62.915233 ], [ -81.914062, 62.714462 ], [ -83.100586, 62.165502 ], [ -83.803711, 62.186014 ], [ -84.023438, 62.471724 ], [ -83.276367, 62.915233 ], [ -81.914062, 62.915233 ] ] ], [ [ [ -85.913086, 65.748683 ], [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.506836, 65.385147 ], [ -83.891602, 65.127638 ], [ -82.792969, 64.774125 ], [ -81.650391, 64.472794 ], [ -81.562500, 63.995235 ], [ -80.859375, 64.072200 ], [ -80.112305, 63.743631 ], [ -80.991211, 63.430860 ], [ -82.573242, 63.665760 ], [ -83.144531, 64.110602 ], [ -84.111328, 63.587675 ], [ -85.561523, 63.054959 ], [ -85.869141, 63.646259 ], [ -87.231445, 63.548552 ], [ -86.396484, 64.052978 ], [ -86.264648, 64.830254 ], [ -85.913086, 65.748683 ] ] ], [ [ [ -75.937500, 68.301905 ], [ -75.146484, 68.024022 ], [ -75.146484, 67.592475 ], [ -75.234375, 67.458082 ], [ -75.893555, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.592475 ], [ -76.816406, 68.155209 ], [ -75.937500, 68.301905 ] ] ], [ [ [ -98.261719, 70.155288 ], [ -96.591797, 69.687618 ], [ -95.668945, 69.115611 ], [ -96.284180, 68.768235 ], [ -97.646484, 69.068563 ], [ -98.437500, 68.958391 ], [ -99.799805, 69.411242 ], [ -98.920898, 69.718107 ], [ -98.261719, 70.155288 ] ] ], [ [ [ -115.224609, 73.315246 ], [ -114.169922, 73.124945 ], [ -114.697266, 72.659588 ], [ -112.456055, 72.958315 ], [ -111.093750, 72.462039 ], [ -109.951172, 72.971189 ], [ -109.028320, 72.633374 ], [ -108.193359, 71.663663 ], [ -107.709961, 72.073911 ], [ -108.413086, 73.099413 ], [ -107.534180, 73.239377 ], [ -106.523438, 73.086633 ], [ -105.424805, 72.672681 ], [ -104.809570, 71.705093 ], [ -104.501953, 71.002660 ], [ -102.788086, 70.510241 ], [ -100.986328, 70.035597 ], [ -101.118164, 69.595890 ], [ -102.744141, 69.519147 ], [ -102.128906, 69.131271 ], [ -102.436523, 68.768235 ], [ -104.282227, 68.911005 ], [ -105.996094, 69.193800 ], [ -107.138672, 69.131271 ], [ -109.028320, 68.784144 ], [ -113.334961, 68.544315 ], [ -113.862305, 69.021414 ], [ -115.224609, 69.287257 ], [ -116.147461, 69.178184 ], [ -117.377930, 69.960439 ], [ -116.674805, 70.080562 ], [ -115.136719, 70.244604 ], [ -113.730469, 70.199994 ], [ -112.456055, 70.377854 ], [ -114.389648, 70.612614 ], [ -116.499023, 70.524897 ], [ -117.905273, 70.554179 ], [ -118.432617, 70.916641 ], [ -116.147461, 71.314877 ], [ -117.685547, 71.300793 ], [ -119.443359, 71.566641 ], [ -118.564453, 72.315785 ], [ -117.905273, 72.711903 ], [ -115.224609, 73.315246 ] ] ], [ [ [ -121.552734, 74.449358 ], [ -120.146484, 74.247813 ], [ -117.597656, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.532227, 73.478485 ], [ -116.806641, 73.226700 ], [ -119.223633, 72.528130 ], [ -120.498047, 71.828840 ], [ -120.498047, 71.385142 ], [ -123.134766, 70.902268 ], [ -123.662109, 71.343013 ], [ -125.947266, 71.869909 ], [ -124.848633, 73.022592 ], [ -123.969727, 73.689611 ], [ -124.936523, 74.295463 ], [ -121.552734, 74.449358 ] ] ], [ [ [ -100.371094, 73.849286 ], [ -99.184570, 73.640171 ], [ -97.382812, 73.763497 ], [ -97.163086, 73.478485 ], [ -98.085938, 72.996909 ], [ -96.547852, 72.567668 ], [ -96.723633, 71.663663 ], [ -98.393555, 71.286699 ], [ -99.360352, 71.357067 ], [ -100.019531, 71.746432 ], [ -102.524414, 72.514931 ], [ -102.480469, 72.842021 ], [ -100.458984, 72.711903 ], [ -101.557617, 73.365639 ], [ -100.371094, 73.849286 ] ] ], [ [ [ -94.526367, 74.140084 ], [ -92.460938, 74.104015 ], [ -90.527344, 73.861506 ], [ -92.021484, 72.971189 ], [ -93.208008, 72.777081 ], [ -94.306641, 72.033289 ], [ -95.449219, 72.073911 ], [ -96.064453, 72.945431 ], [ -96.020508, 73.440953 ], [ -95.537109, 73.873717 ], [ -94.526367, 74.140084 ] ] ], [ [ [ -80.375977, 73.763497 ], [ -78.090820, 73.652545 ], [ -76.376953, 73.112184 ], [ -76.289062, 72.829052 ], [ -78.398438, 72.880871 ], [ -79.497070, 72.751039 ], [ -79.804688, 72.803086 ], [ -80.903320, 73.340461 ], [ -80.859375, 73.701948 ], [ -80.375977, 73.763497 ] ] ], [ [ [ -105.292969, 73.640171 ], [ -104.501953, 73.428424 ], [ -105.380859, 72.764065 ], [ -106.962891, 73.465984 ], [ -106.611328, 73.602996 ], [ -105.292969, 73.640171 ] ] ], [ [ [ -109.599609, 76.800739 ], [ -108.588867, 76.679785 ], [ -108.237305, 76.205967 ], [ -107.841797, 75.855911 ], [ -106.962891, 76.016094 ], [ -105.908203, 75.973553 ], [ -105.732422, 75.486148 ], [ -106.347656, 75.016306 ], [ -109.731445, 74.856413 ], [ -112.236328, 74.425777 ], [ -113.774414, 74.402163 ], [ -113.906250, 74.729615 ], [ -111.796875, 75.163300 ], [ -116.323242, 75.050354 ], [ -117.729492, 75.230667 ], [ -116.367188, 76.205967 ], [ -115.444336, 76.486046 ], [ -112.631836, 76.142958 ], [ -110.830078, 75.552081 ], [ -109.072266, 75.475131 ], [ -110.522461, 76.434604 ], [ -109.599609, 76.800739 ] ] ], [ [ [ -96.767578, 77.166927 ], [ -94.702148, 77.098423 ], [ -93.603516, 76.780655 ], [ -91.625977, 76.780655 ], [ -90.747070, 76.455203 ], [ -91.010742, 76.079668 ], [ -89.824219, 75.855911 ], [ -89.208984, 75.617721 ], [ -87.846680, 75.573993 ], [ -86.396484, 75.486148 ], [ -84.814453, 75.704786 ], [ -82.792969, 75.791336 ], [ -81.166992, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.848633, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.449358 ], [ -83.232422, 74.566736 ], [ -86.132812, 74.413974 ], [ -88.154297, 74.402163 ], [ -89.780273, 74.519889 ], [ -92.460938, 74.844929 ], [ -92.768555, 75.397779 ], [ -92.900391, 75.888091 ], [ -93.911133, 76.320754 ], [ -95.976562, 76.444907 ], [ -97.163086, 76.760541 ], [ -96.767578, 77.166927 ] ] ], [ [ [ -94.877930, 75.650431 ], [ -93.999023, 75.297735 ], [ -93.647461, 74.982183 ], [ -94.174805, 74.601781 ], [ -95.625000, 74.671638 ], [ -96.855469, 74.936567 ], [ -96.328125, 75.386696 ], [ -94.877930, 75.650431 ] ] ], [ [ [ -98.525391, 76.720223 ], [ -97.778320, 76.258260 ], [ -97.734375, 75.748125 ], [ -98.173828, 75.004940 ], [ -99.843750, 74.902266 ], [ -100.898438, 75.061686 ], [ -100.898438, 75.650431 ], [ -102.524414, 75.573993 ], [ -102.568359, 76.341523 ], [ -101.513672, 76.310358 ], [ -100.019531, 76.649377 ], [ -98.613281, 76.598545 ], [ -98.525391, 76.720223 ] ] ], [ [ [ -116.235352, 77.645947 ], [ -116.367188, 76.880775 ], [ -117.114258, 76.537296 ], [ -118.081055, 76.486046 ], [ -119.926758, 76.058508 ], [ -121.508789, 75.909504 ], [ -122.871094, 76.121893 ], [ -121.201172, 76.870796 ], [ -119.135742, 77.513624 ], [ -117.597656, 77.504119 ], [ -116.235352, 77.645947 ] ] ], [ [ [ -72.861328, 83.236426 ], [ -68.510742, 83.111071 ], [ -65.830078, 83.031552 ], [ -63.720703, 82.902419 ], [ -61.875000, 82.631333 ], [ -61.918945, 82.367483 ], [ -64.335938, 81.929358 ], [ -66.796875, 81.729511 ], [ -67.675781, 81.505299 ], [ -65.522461, 81.511788 ], [ -67.851562, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.191406, 79.804527 ], [ -73.256836, 79.639874 ], [ -73.916016, 79.432371 ], [ -76.948242, 79.327084 ], [ -75.541992, 79.204309 ], [ -76.245117, 79.021712 ], [ -75.410156, 78.534311 ], [ -76.376953, 78.188586 ], [ -77.915039, 77.906466 ], [ -78.398438, 77.513624 ], [ -79.760742, 77.215640 ], [ -79.628906, 76.990046 ], [ -77.915039, 77.029559 ], [ -77.915039, 76.780655 ], [ -80.595703, 76.184995 ], [ -83.188477, 76.455203 ], [ -86.132812, 76.299953 ], [ -87.626953, 76.424292 ], [ -89.516602, 76.475773 ], [ -89.648438, 76.960334 ], [ -87.802734, 77.186434 ], [ -88.286133, 77.906466 ], [ -87.670898, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.352539, 78.188586 ], [ -87.978516, 78.376004 ], [ -87.187500, 78.759229 ], [ -85.385742, 79.004962 ], [ -85.122070, 79.351472 ], [ -86.528320, 79.742109 ], [ -86.967773, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.452148, 80.103470 ], [ -81.870117, 80.466790 ], [ -84.111328, 80.582539 ], [ -87.626953, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.219727, 81.261711 ], [ -91.406250, 81.557074 ], [ -91.625977, 81.898451 ], [ -90.131836, 82.088196 ], [ -88.945312, 82.118384 ], [ -87.011719, 82.285331 ], [ -85.517578, 82.653843 ], [ -84.287109, 82.603099 ], [ -83.188477, 82.320646 ], [ -82.441406, 82.864308 ], [ -81.123047, 83.020881 ], [ -79.321289, 83.132123 ], [ -76.289062, 83.174035 ], [ -75.761719, 83.068774 ], [ -72.861328, 83.236426 ] ] ], [ [ [ -111.269531, 78.161570 ], [ -109.863281, 77.998190 ], [ -110.214844, 77.702234 ], [ -112.060547, 77.418254 ], [ -113.554688, 77.739618 ], [ -112.763672, 78.052896 ], [ -111.269531, 78.161570 ] ] ], [ [ [ -96.459961, 77.841848 ], [ -94.438477, 77.823323 ], [ -93.735352, 77.636542 ], [ -93.867188, 77.523122 ], [ -94.306641, 77.494607 ], [ -96.196289, 77.561042 ], [ -96.459961, 77.841848 ] ] ], [ [ [ -98.657227, 78.878528 ], [ -97.338867, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.581055, 78.420193 ], [ -95.844727, 78.061989 ], [ -97.338867, 77.851100 ], [ -98.129883, 78.089229 ], [ -98.569336, 78.464217 ], [ -98.657227, 78.878528 ] ] ], [ [ [ -105.512695, 79.302640 ], [ -103.535156, 79.171335 ], [ -100.854492, 78.801980 ], [ -100.063477, 78.331648 ], [ -99.711914, 77.915669 ], [ -101.337891, 78.025574 ], [ -102.963867, 78.349411 ], [ -105.205078, 78.384855 ], [ -104.238281, 78.681870 ], [ -105.424805, 78.920832 ], [ -105.512695, 79.302640 ] ] ], [ [ [ -92.416992, 81.261711 ], [ -91.142578, 80.725269 ], [ -89.472656, 80.510360 ], [ -87.846680, 80.320120 ], [ -87.055664, 79.663556 ], [ -85.825195, 79.343349 ], [ -87.231445, 79.046790 ], [ -89.077148, 78.296044 ], [ -90.834961, 78.215541 ], [ -92.900391, 78.349411 ], [ -93.955078, 78.759229 ], [ -93.955078, 79.121686 ], [ -93.164062, 79.383905 ], [ -95.009766, 79.375806 ], [ -96.108398, 79.710759 ], [ -96.723633, 80.163710 ], [ -96.020508, 80.604086 ], [ -95.361328, 80.907616 ], [ -94.306641, 80.983688 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.261711 ] ] ], [ [ [ -111.533203, 78.853070 ], [ -111.005859, 78.810511 ], [ -109.687500, 78.603986 ], [ -110.917969, 78.411369 ], [ -112.543945, 78.411369 ], [ -112.543945, 78.551769 ], [ -111.533203, 78.853070 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.874023, 20.303418 ], [ -155.258789, 20.014645 ], [ -154.819336, 19.518375 ], [ -155.566406, 19.103648 ], [ -155.698242, 18.937464 ], [ -155.961914, 19.062118 ], [ -155.917969, 19.352611 ], [ -156.093750, 19.725342 ], [ -155.874023, 20.014645 ], [ -155.961914, 20.179724 ], [ -155.874023, 20.303418 ] ] ], [ [ [ -156.621094, 21.043491 ], [ -156.269531, 20.920397 ], [ -156.005859, 20.797201 ], [ -156.093750, 20.673905 ], [ -156.445312, 20.591652 ], [ -156.752930, 20.961440 ], [ -156.621094, 21.043491 ] ] ], [ [ [ -157.280273, 21.248422 ], [ -156.796875, 21.207459 ], [ -156.796875, 21.084500 ], [ -157.368164, 21.125498 ], [ -157.280273, 21.248422 ] ] ], [ [ [ -158.027344, 21.739091 ], [ -157.675781, 21.330315 ], [ -157.719727, 21.289374 ], [ -158.159180, 21.330315 ], [ -158.334961, 21.616579 ], [ -158.027344, 21.739091 ] ] ], [ [ [ -159.609375, 22.268764 ], [ -159.389648, 22.228090 ], [ -159.345703, 21.983801 ], [ -159.477539, 21.902278 ], [ -159.829102, 22.105999 ], [ -159.609375, 22.268764 ] ] ], [ [ [ -94.833984, 49.410973 ], [ -94.658203, 48.864715 ], [ -94.350586, 48.690960 ], [ -92.636719, 48.458352 ], [ -91.669922, 48.166085 ], [ -90.834961, 48.283193 ], [ -89.604492, 48.019324 ], [ -89.296875, 48.048710 ], [ -88.417969, 48.312428 ], [ -84.902344, 46.920255 ], [ -84.814453, 46.649436 ], [ -84.550781, 46.558860 ], [ -84.638672, 46.468133 ], [ -84.375000, 46.437857 ], [ -84.155273, 46.528635 ], [ -84.111328, 46.286224 ], [ -83.891602, 46.134170 ], [ -83.627930, 46.134170 ], [ -83.496094, 46.012224 ], [ -83.627930, 45.828799 ], [ -82.573242, 45.367584 ], [ -82.177734, 43.580391 ], [ -82.441406, 43.004647 ], [ -83.144531, 42.098222 ], [ -83.144531, 42.000325 ], [ -83.056641, 41.836828 ], [ -82.705078, 41.705729 ], [ -82.441406, 41.705729 ], [ -81.298828, 42.228517 ], [ -80.288086, 42.391009 ], [ -78.969727, 42.875964 ], [ -79.013672, 43.293200 ], [ -79.189453, 43.484812 ], [ -78.750000, 43.644026 ], [ -76.860352, 43.644026 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.840291 ], [ -74.882812, 45.026950 ], [ -71.542969, 45.026950 ], [ -71.411133, 45.274886 ], [ -71.103516, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.709736 ], [ -69.257812, 47.457809 ], [ -68.906250, 47.189712 ], [ -68.247070, 47.368594 ], [ -67.807617, 47.070122 ], [ -67.807617, 45.706179 ], [ -67.148438, 45.151053 ], [ -66.972656, 44.840291 ], [ -68.071289, 44.339565 ], [ -70.136719, 43.707594 ], [ -70.839844, 42.875964 ], [ -70.839844, 42.358544 ], [ -70.532227, 41.836828 ], [ -70.092773, 41.804078 ], [ -70.224609, 42.163403 ], [ -69.916992, 41.934977 ], [ -70.004883, 41.640078 ], [ -70.664062, 41.475660 ], [ -71.147461, 41.508577 ], [ -71.894531, 41.343825 ], [ -72.905273, 41.244772 ], [ -73.740234, 40.946714 ], [ -72.246094, 41.145570 ], [ -71.982422, 40.946714 ], [ -73.388672, 40.647304 ], [ -74.003906, 40.647304 ], [ -73.959961, 40.780541 ], [ -74.267578, 40.480381 ], [ -74.003906, 40.446947 ], [ -74.179688, 39.740986 ], [ -74.926758, 38.959409 ], [ -75.014648, 39.198205 ], [ -75.234375, 39.266284 ], [ -75.541992, 39.504041 ], [ -75.322266, 38.993572 ], [ -75.102539, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.981445, 37.230328 ], [ -76.069336, 37.265310 ], [ -75.761719, 37.961523 ], [ -76.245117, 38.341656 ], [ -76.376953, 39.164141 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.099983 ], [ -76.992188, 38.272689 ], [ -76.333008, 37.926868 ], [ -76.289062, 36.985003 ], [ -75.981445, 36.914764 ], [ -75.761719, 35.567980 ], [ -76.376953, 34.813803 ], [ -77.431641, 34.524661 ], [ -78.090820, 33.943360 ], [ -78.574219, 33.870416 ], [ -79.101562, 33.504759 ], [ -79.233398, 33.174342 ], [ -80.332031, 32.509762 ], [ -80.903320, 32.063956 ], [ -81.342773, 31.466154 ], [ -81.518555, 30.751278 ], [ -81.342773, 30.069094 ], [ -80.991211, 29.190533 ], [ -80.551758, 28.497661 ], [ -80.551758, 28.071980 ], [ -80.068359, 26.902477 ], [ -80.156250, 25.839449 ], [ -80.419922, 25.244696 ], [ -80.683594, 25.085599 ], [ -81.210938, 25.204941 ], [ -81.342773, 25.641526 ], [ -81.738281, 25.878994 ], [ -82.749023, 27.527758 ], [ -82.880859, 27.916767 ], [ -82.661133, 28.574874 ], [ -82.968750, 29.113775 ], [ -83.715820, 29.954935 ], [ -84.111328, 30.107118 ], [ -85.122070, 29.649869 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.183122 ], [ -86.440430, 30.410782 ], [ -87.539062, 30.297018 ], [ -88.417969, 30.410782 ], [ -89.208984, 30.334954 ], [ -89.604492, 30.183122 ], [ -89.428711, 29.916852 ], [ -89.472656, 29.496988 ], [ -89.252930, 29.305561 ], [ -89.428711, 29.190533 ], [ -89.780273, 29.343875 ], [ -90.175781, 29.152161 ], [ -90.922852, 29.152161 ], [ -91.669922, 29.688053 ], [ -92.504883, 29.573457 ], [ -93.251953, 29.802518 ], [ -93.867188, 29.726222 ], [ -94.702148, 29.496988 ], [ -95.625000, 28.767659 ], [ -96.635742, 28.343065 ], [ -97.163086, 27.839076 ], [ -97.382812, 27.410786 ], [ -97.382812, 26.706360 ], [ -97.338867, 26.234302 ], [ -97.163086, 25.878994 ], [ -97.558594, 25.878994 ], [ -98.261719, 26.076521 ], [ -99.052734, 26.391870 ], [ -99.316406, 26.863281 ], [ -99.536133, 27.566721 ], [ -100.151367, 28.110749 ], [ -100.986328, 29.382175 ], [ -101.689453, 29.802518 ], [ -102.480469, 29.764377 ], [ -103.139648, 28.998532 ], [ -103.974609, 29.305561 ], [ -104.458008, 29.573457 ], [ -105.073242, 30.675715 ], [ -106.171875, 31.428663 ], [ -106.523438, 31.765537 ], [ -108.281250, 31.765537 ], [ -108.281250, 31.353637 ], [ -111.049805, 31.353637 ], [ -114.829102, 32.546813 ], [ -114.741211, 32.731841 ], [ -117.158203, 32.546813 ], [ -117.333984, 33.063924 ], [ -117.949219, 33.651208 ], [ -118.432617, 33.760882 ], [ -118.520508, 34.052659 ], [ -119.091797, 34.089061 ], [ -119.443359, 34.379713 ], [ -120.410156, 34.452218 ], [ -120.629883, 34.633208 ], [ -120.761719, 35.173808 ], [ -121.728516, 36.173357 ], [ -122.563477, 37.579413 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.134557 ], [ -123.750000, 38.959409 ], [ -123.881836, 39.774769 ], [ -124.409180, 40.346544 ], [ -124.189453, 41.145570 ], [ -124.233398, 42.000325 ], [ -124.541016, 42.779275 ], [ -124.145508, 43.739352 ], [ -123.925781, 45.552525 ], [ -124.101562, 46.890232 ], [ -124.409180, 47.724545 ], [ -124.716797, 48.195387 ], [ -124.584961, 48.400032 ], [ -123.134766, 48.048710 ], [ -122.607422, 47.100045 ], [ -122.343750, 47.368594 ], [ -122.519531, 48.195387 ], [ -122.871094, 49.009051 ], [ -95.185547, 49.009051 ], [ -95.185547, 49.410973 ], [ -94.833984, 49.410973 ] ] ], [ [ [ -156.621094, 71.371109 ], [ -155.083008, 71.159391 ], [ -154.379883, 70.699951 ], [ -153.940430, 70.902268 ], [ -152.226562, 70.830248 ], [ -152.270508, 70.612614 ], [ -150.776367, 70.436799 ], [ -149.721680, 70.539543 ], [ -147.656250, 70.214875 ], [ -145.722656, 70.125430 ], [ -144.931641, 69.990535 ], [ -143.613281, 70.155288 ], [ -142.075195, 69.854762 ], [ -141.020508, 69.718107 ], [ -141.020508, 60.326948 ], [ -140.053711, 60.283408 ], [ -139.042969, 60.020952 ], [ -138.383789, 59.578851 ], [ -137.460938, 58.927334 ], [ -136.494141, 59.467408 ], [ -135.483398, 59.800634 ], [ -134.956055, 59.288332 ], [ -134.296875, 58.881942 ], [ -133.374023, 58.424730 ], [ -131.748047, 56.559482 ], [ -130.034180, 55.924586 ], [ -129.990234, 55.304138 ], [ -130.561523, 54.826008 ], [ -131.088867, 55.203953 ], [ -131.967773, 55.503750 ], [ -132.275391, 56.389584 ], [ -133.549805, 57.183902 ], [ -134.121094, 58.124320 ], [ -135.043945, 58.193871 ], [ -136.669922, 58.217025 ], [ -137.812500, 58.516652 ], [ -139.877930, 59.556592 ], [ -142.602539, 60.086763 ], [ -143.964844, 60.020952 ], [ -145.942383, 60.478879 ], [ -147.128906, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.051758, 59.998986 ], [ -148.579102, 59.933000 ], [ -149.765625, 59.712097 ], [ -150.644531, 59.377988 ], [ -151.743164, 59.175928 ], [ -151.875000, 59.756395 ], [ -151.435547, 60.737686 ], [ -150.380859, 61.037012 ], [ -150.644531, 61.291349 ], [ -151.918945, 60.737686 ], [ -152.622070, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.325195, 58.881942 ], [ -154.248047, 58.147519 ], [ -155.346680, 57.751076 ], [ -156.313477, 57.444949 ], [ -156.577148, 56.992883 ], [ -158.159180, 56.486762 ], [ -158.466797, 55.998381 ], [ -159.609375, 55.578345 ], [ -160.312500, 55.652798 ], [ -162.246094, 55.028022 ], [ -163.081055, 54.699234 ], [ -164.794922, 54.418930 ], [ -164.970703, 54.597528 ], [ -163.872070, 55.053203 ], [ -162.905273, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.576172, 56.022948 ], [ -160.092773, 56.438204 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.231503 ], [ -157.763672, 57.586559 ], [ -157.587891, 58.332567 ], [ -157.060547, 58.927334 ], [ -158.203125, 58.631217 ], [ -158.554688, 58.790978 ], [ -159.082031, 58.424730 ], [ -159.741211, 58.950008 ], [ -160.004883, 58.585436 ], [ -160.356445, 59.085739 ], [ -161.367188, 58.676938 ], [ -161.982422, 58.676938 ], [ -162.070312, 59.288332 ], [ -161.894531, 59.645540 ], [ -162.553711, 59.998986 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.283408 ], [ -165.366211, 60.522158 ], [ -165.366211, 61.079544 ], [ -166.157227, 61.501734 ], [ -165.761719, 62.083315 ], [ -164.926758, 62.633770 ], [ -164.575195, 63.154355 ], [ -163.784180, 63.233627 ], [ -163.081055, 63.074866 ], [ -162.290039, 63.548552 ], [ -161.542969, 63.470145 ], [ -160.795898, 63.782486 ], [ -160.971680, 64.225493 ], [ -161.542969, 64.415921 ], [ -160.795898, 64.792848 ], [ -161.411133, 64.792848 ], [ -162.465820, 64.567319 ], [ -162.773438, 64.339908 ], [ -163.564453, 64.567319 ], [ -164.970703, 64.453849 ], [ -166.464844, 64.699105 ], [ -166.860352, 65.090646 ], [ -168.134766, 65.676381 ], [ -166.728516, 66.089364 ], [ -164.487305, 66.583217 ], [ -163.696289, 66.583217 ], [ -163.828125, 66.089364 ], [ -161.718750, 66.124962 ], [ -162.509766, 66.739902 ], [ -163.740234, 67.118748 ], [ -164.443359, 67.625954 ], [ -165.410156, 68.056889 ], [ -166.772461, 68.366801 ], [ -166.245117, 68.895187 ], [ -164.443359, 68.926811 ], [ -163.168945, 69.380313 ], [ -162.949219, 69.869892 ], [ -161.938477, 70.333533 ], [ -160.971680, 70.451508 ], [ -159.082031, 70.902268 ], [ -158.159180, 70.830248 ], [ -156.621094, 71.371109 ] ] ], [ [ [ -153.237305, 57.984808 ], [ -152.578125, 57.914848 ], [ -152.182617, 57.610107 ], [ -153.017578, 57.136239 ], [ -154.028320, 56.752723 ], [ -154.555664, 56.992883 ], [ -154.687500, 57.468589 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.984808 ] ] ], [ [ [ -166.508789, 60.392148 ], [ -165.717773, 60.305185 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.860352, 59.955010 ], [ -167.475586, 60.217991 ], [ -166.508789, 60.392148 ] ] ], [ [ [ -171.738281, 63.801894 ], [ -171.123047, 63.607217 ], [ -170.507812, 63.704722 ], [ -169.716797, 63.450509 ], [ -168.706055, 63.312683 ], [ -168.793945, 63.194018 ], [ -169.541016, 62.995158 ], [ -170.332031, 63.213830 ], [ -170.683594, 63.391522 ], [ -171.562500, 63.332413 ], [ -171.826172, 63.411198 ], [ -171.738281, 63.801894 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guatemala", "sov_a3": "GTM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guatemala", "adm0_a3": "GTM", "geou_dif": 0, "geounit": "Guatemala", "gu_a3": "GTM", "su_dif": 0, "subunit": "Guatemala", "su_a3": "GTM", "brk_diff": 0, "name": "Guatemala", "name_long": "Guatemala", "brk_a3": "GTM", "brk_name": "Guatemala", "abbrev": "Guat.", "postal": "GT", "formal_en": "Republic of Guatemala", "name_sort": "Guatemala", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 13276517, "gdp_md_est": 68580, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GT", "iso_a3": "GTM", "iso_n3": "320", "un_a3": "320", "wb_a2": "GT", "wb_a3": "GTM", "woe_id": -99, "adm0_a3_is": "GTM", "adm0_a3_us": "GTM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -91.010742, 17.853290 ], [ -89.165039, 17.811456 ], [ -89.252930, 15.919074 ], [ -88.945312, 15.919074 ], [ -88.637695, 15.707663 ], [ -88.549805, 15.876809 ], [ -88.242188, 15.749963 ], [ -88.681641, 15.368950 ], [ -89.165039, 15.072124 ], [ -89.252930, 14.902322 ], [ -89.165039, 14.689881 ], [ -89.384766, 14.434680 ], [ -89.604492, 14.392118 ], [ -89.560547, 14.264383 ], [ -90.087891, 13.923404 ], [ -90.131836, 13.752725 ], [ -90.615234, 13.923404 ], [ -91.274414, 13.966054 ], [ -91.713867, 14.136576 ], [ -92.241211, 14.562318 ], [ -92.241211, 14.859850 ], [ -92.109375, 15.072124 ], [ -92.241211, 15.284185 ], [ -91.757812, 16.088042 ], [ -90.483398, 16.088042 ], [ -90.439453, 16.425548 ], [ -90.615234, 16.509833 ], [ -90.747070, 16.720385 ], [ -91.494141, 17.266728 ], [ -91.010742, 17.266728 ], [ -91.010742, 17.853290 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.112305, 83.647837 ], [ -27.114258, 83.520162 ], [ -20.874023, 82.732092 ], [ -22.719727, 82.344100 ], [ -26.542969, 82.303009 ], [ -31.904297, 82.202302 ], [ -31.420898, 82.027475 ], [ -27.861328, 82.136441 ], [ -24.873047, 81.792486 ], [ -22.939453, 82.094243 ], [ -22.104492, 81.735830 ], [ -23.203125, 81.154241 ], [ -20.654297, 81.524751 ], [ -15.776367, 81.917010 ], [ -12.788086, 81.723188 ], [ -12.216797, 81.295029 ], [ -16.303711, 80.582539 ], [ -16.875000, 80.356995 ], [ -20.083008, 80.178713 ], [ -17.753906, 80.133635 ], [ -18.940430, 79.400085 ], [ -19.731445, 78.759229 ], [ -19.687500, 77.645947 ], [ -18.500977, 76.990046 ], [ -20.039062, 76.950415 ], [ -21.708984, 76.629067 ], [ -19.863281, 76.100796 ], [ -19.599609, 75.253057 ], [ -20.698242, 75.163300 ], [ -19.379883, 74.307353 ], [ -21.621094, 74.223935 ], [ -20.434570, 73.824820 ], [ -20.786133, 73.465984 ], [ -22.192383, 73.315246 ], [ -23.598633, 73.315246 ], [ -22.324219, 72.633374 ], [ -22.324219, 72.195246 ], [ -24.301758, 72.607120 ], [ -24.829102, 72.342464 ], [ -23.466797, 72.087432 ], [ -22.148438, 71.469124 ], [ -21.796875, 70.670881 ], [ -23.554688, 70.480896 ], [ -25.576172, 71.441171 ], [ -25.224609, 70.757966 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.368164, 70.140364 ], [ -25.048828, 69.271709 ], [ -27.773438, 68.479926 ], [ -30.673828, 68.138852 ], [ -31.816406, 68.122482 ], [ -32.827148, 67.742759 ], [ -34.233398, 66.687784 ], [ -36.386719, 65.982270 ], [ -37.045898, 65.946472 ], [ -39.814453, 65.476508 ], [ -40.693359, 64.848937 ], [ -40.693359, 64.148952 ], [ -41.220703, 63.489767 ], [ -42.846680, 62.694310 ], [ -42.451172, 61.918271 ], [ -43.417969, 60.108670 ], [ -44.824219, 60.042904 ], [ -46.274414, 60.866312 ], [ -48.295898, 60.866312 ], [ -49.262695, 61.417750 ], [ -49.921875, 62.390369 ], [ -51.635742, 63.646259 ], [ -52.163086, 64.282760 ], [ -52.294922, 65.183030 ], [ -53.701172, 66.107170 ], [ -53.305664, 66.843807 ], [ -54.008789, 67.204032 ], [ -52.998047, 68.366801 ], [ -51.503906, 68.736383 ], [ -51.108398, 69.162558 ], [ -50.888672, 69.930300 ], [ -52.558594, 69.426691 ], [ -53.481445, 69.287257 ], [ -54.711914, 69.611206 ], [ -54.755859, 70.303933 ], [ -54.360352, 70.830248 ], [ -53.437500, 70.844673 ], [ -51.416016, 70.583418 ], [ -54.008789, 71.552741 ], [ -55.019531, 71.413177 ], [ -55.854492, 71.663663 ], [ -54.755859, 72.593979 ], [ -55.327148, 72.971189 ], [ -57.348633, 74.718037 ], [ -58.623047, 75.106932 ], [ -58.623047, 75.519151 ], [ -61.303711, 76.111348 ], [ -63.413086, 76.184995 ], [ -66.093750, 76.142958 ], [ -68.510742, 76.069092 ], [ -69.697266, 76.382969 ], [ -71.411133, 77.009817 ], [ -68.818359, 77.331809 ], [ -66.796875, 77.379906 ], [ -71.059570, 77.636542 ], [ -73.300781, 78.052896 ], [ -73.168945, 78.437823 ], [ -69.389648, 78.920832 ], [ -65.742188, 79.400085 ], [ -65.346680, 79.765560 ], [ -68.027344, 80.118564 ], [ -67.192383, 80.517603 ], [ -63.720703, 81.214853 ], [ -62.270508, 81.321593 ], [ -62.666016, 81.773644 ], [ -60.292969, 82.039656 ], [ -57.216797, 82.196337 ], [ -54.140625, 82.202302 ], [ -53.085938, 81.892256 ], [ -50.405273, 82.442987 ], [ -48.032227, 82.070028 ], [ -46.625977, 81.990821 ], [ -44.560547, 81.666057 ], [ -46.933594, 82.202302 ], [ -46.801758, 82.631333 ], [ -43.417969, 83.226067 ], [ -39.902344, 83.184473 ], [ -38.627930, 83.549851 ], [ -35.112305, 83.647837 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "The Bahamas", "sov_a3": "BHS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "The Bahamas", "adm0_a3": "BHS", "geou_dif": 0, "geounit": "The Bahamas", "gu_a3": "BHS", "su_dif": 0, "subunit": "The Bahamas", "su_a3": "BHS", "brk_diff": 0, "name": "Bahamas", "name_long": "Bahamas", "brk_a3": "BHS", "brk_name": "Bahamas", "abbrev": "Bhs.", "postal": "BS", "formal_en": "Commonwealth of the Bahamas", "name_sort": "Bahamas, The", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 309156, "gdp_md_est": 9093, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BS", "iso_a3": "BHS", "iso_n3": "044", "un_a3": "044", "wb_a2": "BS", "wb_a3": "BHS", "woe_id": -99, "adm0_a3_is": "BHS", "adm0_a3_us": "BHS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.222656, 25.244696 ], [ -77.915039, 25.204941 ], [ -77.563477, 24.367114 ], [ -77.563477, 23.765237 ], [ -77.783203, 23.725012 ], [ -78.046875, 24.287027 ], [ -78.442383, 24.607069 ], [ -78.222656, 25.244696 ] ] ], [ [ [ -77.827148, 27.059126 ], [ -77.036133, 26.627818 ], [ -77.211914, 25.918526 ], [ -77.387695, 26.037042 ], [ -77.343750, 26.549223 ], [ -77.827148, 26.941660 ], [ -77.827148, 27.059126 ] ] ], [ [ [ -78.530273, 26.902477 ], [ -77.871094, 26.863281 ], [ -77.827148, 26.588527 ], [ -78.925781, 26.431228 ], [ -79.013672, 26.824071 ], [ -78.530273, 26.902477 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ireland", "sov_a3": "IRL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ireland", "adm0_a3": "IRL", "geou_dif": 0, "geounit": "Ireland", "gu_a3": "IRL", "su_dif": 0, "subunit": "Ireland", "su_a3": "IRL", "brk_diff": 0, "name": "Ireland", "name_long": "Ireland", "brk_a3": "IRL", "brk_name": "Ireland", "abbrev": "Ire.", "postal": "IRL", "formal_en": "Ireland", "name_sort": "Ireland", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 4203200, "gdp_md_est": 188400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IE", "iso_a3": "IRL", "iso_n3": "372", "un_a3": "372", "wb_a2": "IE", "wb_a3": "IRL", "woe_id": -99, "adm0_a3_is": "IRL", "adm0_a3_us": "IRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.602539, 55.153766 ], [ -7.382812, 54.597528 ], [ -7.602539, 54.085173 ], [ -6.987305, 54.085173 ], [ -6.240234, 53.878440 ], [ -6.064453, 53.173119 ], [ -6.811523, 52.268157 ], [ -8.569336, 51.672555 ], [ -10.019531, 51.835778 ], [ -9.184570, 52.882391 ], [ -9.711914, 53.904338 ], [ -7.602539, 55.153766 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.881836, 1.406109 ], [ -77.871094, 0.834931 ], [ -77.695312, 0.834931 ], [ -77.431641, 0.439449 ], [ -76.596680, 0.263671 ], [ -76.333008, 0.439449 ], [ -75.673828, 0.000000 ], [ -75.410156, -0.131836 ], [ -75.234375, -0.878872 ], [ -75.585938, -1.537901 ], [ -76.640625, -2.591889 ], [ -77.871094, -2.986927 ], [ -78.222656, -3.513421 ], [ -80.288086, -3.513421 ], [ -80.332031, -3.381824 ], [ -79.804688, -2.635789 ], [ -80.024414, -2.196727 ], [ -80.375977, -2.679687 ], [ -80.991211, -2.240640 ], [ -80.771484, -1.933227 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.878872 ], [ -80.419922, -0.263671 ], [ -80.244141, 0.000000 ], [ -80.024414, 0.395505 ], [ -80.112305, 0.790990 ], [ -79.584961, 1.010690 ], [ -78.881836, 1.406109 ] ] ] } } +, +{ "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": [ [ [ [ -180.000000, 68.974164 ], [ -177.583008, 68.204212 ], [ -174.946289, 67.221053 ], [ -175.034180, 66.600676 ], [ -174.375000, 66.337505 ], [ -174.594727, 67.067433 ], [ -171.870117, 66.930060 ], [ -169.936523, 65.982270 ], [ -170.903320, 65.549367 ], [ -172.573242, 65.440002 ], [ -172.573242, 64.472794 ], [ -172.968750, 64.263684 ], [ -173.935547, 64.282760 ], [ -174.682617, 64.642704 ], [ -176.000977, 64.923542 ], [ -176.220703, 65.366837 ], [ -177.231445, 65.531171 ], [ -178.374023, 65.403445 ], [ -178.945312, 65.748683 ], [ -178.725586, 66.124962 ], [ -179.912109, 65.874725 ], [ -179.472656, 65.421730 ], [ -180.000000, 64.997939 ], [ -180.000000, 68.974164 ] ] ], [ [ [ -179.033203, 71.566641 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.145195 ], [ -178.725586, 70.902268 ], [ -180.000000, 70.844673 ], [ -180.000000, 71.524909 ], [ -179.912109, 71.566641 ], [ -179.033203, 71.566641 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Netherlands", "sov_a3": "NL1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Netherlands", "adm0_a3": "NLD", "geou_dif": 0, "geounit": "Netherlands", "gu_a3": "NLD", "su_dif": 0, "subunit": "Netherlands", "su_a3": "NLD", "brk_diff": 0, "name": "Netherlands", "name_long": "Netherlands", "brk_a3": "NLD", "brk_name": "Netherlands", "abbrev": "Neth.", "postal": "NL", "formal_en": "Kingdom of the Netherlands", "name_sort": "Netherlands", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 16715999, "gdp_md_est": 672000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NL", "iso_a3": "NLD", "iso_n3": "528", "un_a3": "528", "wb_a2": "NL", "wb_a3": "NLD", "woe_id": -99, "adm0_a3_is": "NLD", "adm0_a3_us": "NLD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 51.454007 ], [ 3.515625, 51.344339 ], [ 3.295898, 51.371780 ], [ 3.515625, 51.454007 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 135.043945, -65.293468 ], [ 135.659180, -65.567550 ], [ 135.834961, -66.018018 ], [ 136.186523, -66.443107 ], [ 136.582031, -66.774586 ], [ 137.416992, -66.947274 ], [ 138.559570, -66.895596 ], [ 139.877930, -66.861082 ], [ 140.800781, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.826520 ], [ 145.458984, -66.912834 ], [ 146.162109, -67.221053 ], [ 145.986328, -67.592475 ], [ 146.645508, -67.892086 ], [ 148.798828, -68.382996 ], [ 151.479492, -68.704486 ], [ 152.490234, -68.863517 ], [ 153.632812, -68.879358 ], [ 154.248047, -68.560384 ], [ 155.126953, -68.831802 ], [ 155.917969, -69.146920 ], [ 156.796875, -69.380313 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.214875 ], [ 161.542969, -70.568803 ], [ 162.685547, -70.728979 ], [ 163.828125, -70.714471 ], [ 164.882812, -70.772443 ], [ 166.113281, -70.743478 ], [ 167.299805, -70.830248 ], [ 168.398438, -70.959697 ], [ 169.453125, -71.201920 ], [ 170.463867, -71.399165 ], [ 171.166992, -71.691293 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.435535 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.343750, -74.164085 ], [ 166.069336, -74.378513 ], [ 165.629883, -74.764299 ], [ 164.926758, -75.140778 ], [ 164.223633, -75.453071 ], [ 163.784180, -75.866646 ], [ 163.564453, -76.237366 ], [ 163.432617, -76.689906 ], [ 163.476562, -77.059116 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.823323 ], [ 164.707031, -78.179588 ], [ 166.596680, -78.313860 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.154810 ], [ 160.883789, -79.726446 ], [ 160.708008, -80.193694 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.275053 ], [ 161.586914, -81.685144 ], [ 162.465820, -82.057893 ], [ 163.696289, -82.390794 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.365234, -83.825220 ], [ 172.265625, -84.038885 ], [ 173.188477, -84.410223 ], [ 175.957031, -84.156377 ], [ 178.242188, -84.469831 ], [ 180.000000, -84.710102 ], [ 180.000000, -85.345325 ], [ -3.515625, -85.345325 ], [ -3.515625, -71.343013 ], [ -1.801758, -71.159391 ], [ -0.703125, -71.216075 ], [ -0.263672, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.834961, -71.300793 ], [ 1.845703, -71.116770 ], [ 4.130859, -70.844673 ], [ 5.141602, -70.612614 ], [ 6.240234, -70.451508 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.885010 ], [ 8.481445, -70.140364 ], [ 9.492188, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.627197 ], [ 12.392578, -70.244604 ], [ 13.403320, -69.960439 ], [ 14.721680, -70.020587 ], [ 15.117188, -70.392606 ], [ 15.908203, -70.020587 ], [ 17.006836, -69.900118 ], [ 18.193359, -69.869892 ], [ 19.248047, -69.885010 ], [ 20.346680, -70.005567 ], [ 21.445312, -70.065585 ], [ 21.884766, -70.392606 ], [ 22.543945, -70.685421 ], [ 23.642578, -70.510241 ], [ 24.829102, -70.480896 ], [ 27.070312, -70.451508 ], [ 29.135742, -70.199994 ], [ 30.014648, -69.930300 ], [ 30.937500, -69.748551 ], [ 31.948242, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.266602, -68.831802 ], [ 33.837891, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.123047, -69.240579 ], [ 37.177734, -69.162558 ], [ 37.880859, -69.519147 ], [ 38.627930, -69.763757 ], [ 39.638672, -69.534518 ], [ 39.990234, -69.099940 ], [ 40.913086, -68.926811 ], [ 41.923828, -68.592487 ], [ 44.077148, -68.253111 ], [ 46.494141, -67.592475 ], [ 47.416992, -67.709445 ], [ 48.955078, -67.084550 ], [ 49.921875, -67.101656 ], [ 50.712891, -66.861082 ], [ 50.932617, -66.513260 ], [ 51.767578, -66.231457 ], [ 52.602539, -66.035873 ], [ 53.569336, -65.892680 ], [ 54.492188, -65.802776 ], [ 56.337891, -65.964377 ], [ 57.128906, -66.231457 ], [ 57.216797, -66.670387 ], [ 58.095703, -66.998844 ], [ 58.710938, -67.272043 ], [ 59.897461, -67.390599 ], [ 60.600586, -67.676085 ], [ 61.391602, -67.941650 ], [ 62.358398, -68.007571 ], [ 63.149414, -67.809245 ], [ 64.028320, -67.390599 ], [ 64.951172, -67.609221 ], [ 66.884766, -67.842416 ], [ 67.851562, -67.925140 ], [ 68.862305, -67.925140 ], [ 69.697266, -68.958391 ], [ 69.653320, -69.224997 ], [ 69.521484, -69.672358 ], [ 68.554688, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.685421 ], [ 69.038086, -70.670881 ], [ 68.906250, -71.059798 ], [ 68.378906, -71.441171 ], [ 67.939453, -71.842539 ], [ 68.686523, -72.154890 ], [ 69.829102, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.542969, -71.691293 ], [ 71.894531, -71.314877 ], [ 72.421875, -71.002660 ], [ 73.081055, -70.714471 ], [ 73.300781, -70.363091 ], [ 73.828125, -69.869892 ], [ 74.487305, -69.763757 ], [ 75.585938, -69.733334 ], [ 76.596680, -69.611206 ], [ 77.607422, -69.457554 ], [ 78.090820, -69.068563 ], [ 78.398438, -68.688521 ], [ 79.101562, -68.318146 ], [ 80.903320, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.356785 ], [ 82.749023, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.135829 ], [ 87.451172, -66.861082 ], [ 87.978516, -66.196009 ], [ 88.330078, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.648438, -67.135829 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.101656 ], [ 92.592773, -67.187000 ], [ 93.515625, -67.204032 ], [ 94.174805, -67.101656 ], [ 95.009766, -67.169955 ], [ 95.756836, -67.373698 ], [ 96.679688, -67.238062 ], [ 97.734375, -67.238062 ], [ 98.657227, -67.101656 ], [ 99.711914, -67.238062 ], [ 100.371094, -66.912834 ], [ 100.854492, -66.565747 ], [ 101.557617, -66.302205 ], [ 102.832031, -65.549367 ], [ 103.447266, -65.694476 ], [ 104.238281, -65.964377 ], [ 106.171875, -66.930060 ], [ 108.061523, -66.947274 ], [ 110.214844, -66.687784 ], [ 111.049805, -66.407955 ], [ 111.708984, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.345703, -66.071546 ], [ 114.873047, -66.372755 ], [ 115.576172, -66.687784 ], [ 116.674805, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.794922, -67.255058 ], [ 120.849609, -67.187000 ], [ 122.299805, -66.548263 ], [ 123.178711, -66.478208 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.705169 ], [ 126.079102, -66.548263 ], [ 126.958008, -66.548263 ], [ 128.759766, -66.757250 ], [ 129.682617, -66.565747 ], [ 130.781250, -66.407955 ], [ 131.791992, -66.372755 ], [ 132.934570, -66.372755 ], [ 134.736328, -66.196009 ], [ 135.000000, -65.712557 ], [ 135.043945, -65.293468 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Equatorial Guinea", "sov_a3": "GNQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Equatorial Guinea", "adm0_a3": "GNQ", "geou_dif": 0, "geounit": "Equatorial Guinea", "gu_a3": "GNQ", "su_dif": 0, "subunit": "Equatorial Guinea", "su_a3": "GNQ", "brk_diff": 0, "name": "Eq. Guinea", "name_long": "Equatorial Guinea", "brk_a3": "GNQ", "brk_name": "Eq. Guinea", "abbrev": "Eq. G.", "postal": "GQ", "formal_en": "Republic of Equatorial Guinea", "name_sort": "Equatorial Guinea", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 650702, "gdp_md_est": 14060, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "7. Least developed region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GQ", "iso_a3": "GNQ", "iso_n3": "226", "un_a3": "226", "wb_a2": "GQ", "wb_a3": "GNQ", "woe_id": -99, "adm0_a3_is": "GNQ", "adm0_a3_us": "GNQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 17, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 2.284551 ], [ 11.250000, 1.098565 ], [ 9.799805, 1.098565 ], [ 9.492188, 1.010690 ], [ 9.272461, 1.186439 ], [ 9.624023, 2.284551 ], [ 11.250000, 2.284551 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.109375, 3.513421 ], [ 46.538086, 2.899153 ], [ 45.527344, 2.064982 ], [ 44.033203, 1.054628 ], [ 43.110352, 0.307616 ], [ 42.846680, 0.000000 ], [ 42.011719, -0.878872 ], [ 41.791992, -1.406109 ], [ 41.572266, -1.669686 ], [ 40.957031, -0.834931 ], [ 40.957031, 2.811371 ], [ 41.528320, 3.513421 ], [ 47.109375, 3.513421 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 115.620117, 3.513421 ], [ 115.488281, 3.206333 ], [ 115.092773, 2.855263 ], [ 114.609375, 1.450040 ], [ 113.774414, 1.230374 ], [ 112.851562, 1.537901 ], [ 112.368164, 1.450040 ], [ 111.796875, 0.922812 ], [ 111.137695, 1.010690 ], [ 110.478516, 0.790990 ], [ 109.819336, 1.362176 ], [ 109.643555, 2.021065 ], [ 110.390625, 1.669686 ], [ 111.137695, 1.889306 ], [ 111.357422, 2.723583 ], [ 111.796875, 2.899153 ], [ 112.983398, 3.118576 ], [ 113.334961, 3.513421 ], [ 115.620117, 3.513421 ] ] ], [ [ [ 103.359375, 3.513421 ], [ 103.491211, 2.811371 ], [ 103.842773, 2.547988 ], [ 104.238281, 1.669686 ], [ 104.194336, 1.318243 ], [ 103.491211, 1.230374 ], [ 102.568359, 1.977147 ], [ 101.381836, 2.767478 ], [ 101.250000, 3.294082 ], [ 101.030273, 3.513421 ], [ 103.359375, 3.513421 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Fiji", "sov_a3": "FJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Fiji", "adm0_a3": "FJI", "geou_dif": 0, "geounit": "Fiji", "gu_a3": "FJI", "su_dif": 0, "subunit": "Fiji", "su_a3": "FJI", "brk_diff": 0, "name": "Fiji", "name_long": "Fiji", "brk_a3": "FJI", "brk_name": "Fiji", "abbrev": "Fiji", "postal": "FJ", "formal_en": "Republic of Fiji", "name_sort": "Fiji", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 944720, "gdp_md_est": 3579, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "FJ", "iso_a3": "FJI", "iso_n3": "242", "un_a3": "242", "wb_a2": "FJ", "wb_a3": "FJI", "woe_id": -99, "adm0_a3_is": "FJI", "adm0_a3_us": "FJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.330078, -17.308688 ], [ 178.681641, -17.602139 ], [ 178.549805, -18.145852 ], [ 177.890625, -18.271086 ], [ 177.363281, -18.145852 ], [ 177.275391, -17.685895 ], [ 177.626953, -17.350638 ], [ 178.110352, -17.476432 ], [ 178.330078, -17.308688 ] ] ], [ [ [ 180.000000, -16.045813 ], [ 180.000000, -16.551962 ], [ 178.681641, -16.972741 ], [ 178.593750, -16.636192 ], [ 179.077148, -16.425548 ], [ 179.384766, -16.341226 ], [ 180.000000, -16.045813 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Madagascar", "sov_a3": "MDG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Madagascar", "adm0_a3": "MDG", "geou_dif": 0, "geounit": "Madagascar", "gu_a3": "MDG", "su_dif": 0, "subunit": "Madagascar", "su_a3": "MDG", "brk_diff": 0, "name": "Madagascar", "name_long": "Madagascar", "brk_a3": "MDG", "brk_name": "Madagascar", "abbrev": "Mad.", "postal": "MG", "formal_en": "Republic of Madagascar", "name_sort": "Madagascar", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 20653556, "gdp_md_est": 20130, "pop_year": -99, "lastcensus": 1993, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MG", "iso_a3": "MDG", "iso_n3": "450", "un_a3": "450", "wb_a2": "MG", "wb_a3": "MDG", "woe_id": -99, "adm0_a3_is": "MDG", "adm0_a3_us": "MDG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.174805, -12.039321 ], [ 49.526367, -12.468760 ], [ 49.790039, -12.854649 ], [ 50.053711, -13.539201 ], [ 50.185547, -14.732386 ], [ 50.449219, -15.199386 ], [ 50.361328, -15.665354 ], [ 50.185547, -15.961329 ], [ 49.833984, -15.411319 ], [ 49.658203, -15.707663 ], [ 49.833984, -16.425548 ], [ 49.746094, -16.846605 ], [ 49.482422, -17.098792 ], [ 49.394531, -17.936929 ], [ 47.900391, -22.390714 ], [ 47.504883, -23.765237 ], [ 47.065430, -24.926295 ], [ 46.274414, -25.165173 ], [ 45.395508, -25.562265 ], [ 44.033203, -24.966140 ], [ 43.725586, -24.447150 ], [ 43.681641, -23.563987 ], [ 43.330078, -22.755921 ], [ 43.242188, -22.024546 ], [ 43.417969, -21.330315 ], [ 43.857422, -21.125498 ], [ 43.857422, -20.797201 ], [ 44.340820, -20.055931 ], [ 44.428711, -19.394068 ], [ 44.208984, -18.937464 ], [ 44.033203, -18.312811 ], [ 43.945312, -17.392579 ], [ 44.296875, -16.846605 ], [ 44.428711, -16.214675 ], [ 44.912109, -16.172473 ], [ 45.834961, -15.792254 ], [ 46.274414, -15.749963 ], [ 46.845703, -15.199386 ], [ 47.680664, -14.562318 ], [ 47.988281, -14.051331 ], [ 47.856445, -13.624633 ], [ 48.251953, -13.752725 ], [ 48.823242, -13.068777 ], [ 48.823242, -12.468760 ], [ 49.174805, -12.039321 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "French Southern and Antarctic Lands", "adm0_a3": "ATF", "geou_dif": 0, "geounit": "French Southern and Antarctic Lands", "gu_a3": "ATF", "su_dif": 0, "subunit": "French Southern and Antarctic Lands", "su_a3": "ATF", "brk_diff": 0, "name": "Fr. S. Antarctic Lands", "name_long": "French Southern and Antarctic Lands", "brk_a3": "ATF", "brk_name": "Fr. S. and Antarctic Lands", "abbrev": "Fr. S.A.L.", "postal": "TF", "formal_en": "Territory of the French Southern and Antarctic Lands", "note_adm0": "Fr.", "name_sort": "French Southern and Antarctic Lands", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 140, "gdp_md_est": 16, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TF", "iso_a3": "ATF", "iso_n3": "260", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATF", "adm0_a3_us": "ATF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Seven seas (open ocean)", "region_un": "Seven seas (open ocean)", "subregion": "Seven seas (open ocean)", "region_wb": "Sub-Saharan Africa", "name_len": 22, "long_len": 35, "abbrev_len": 10, "tiny": 2, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.906250, -48.603858 ], [ 69.565430, -48.922499 ], [ 70.488281, -49.037868 ], [ 70.532227, -49.239121 ], [ 70.268555, -49.696062 ], [ 68.730469, -49.752880 ], [ 68.686523, -49.239121 ], [ 68.906250, -48.603858 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.936523, -8.885072 ], [ 125.068359, -9.058702 ], [ 125.068359, -9.362353 ], [ 124.409180, -10.098670 ], [ 123.574219, -10.358151 ], [ 123.442383, -10.228437 ], [ 123.530273, -9.882275 ], [ 123.969727, -9.275622 ], [ 124.936523, -8.885072 ] ] ], [ [ [ 119.882812, -9.318990 ], [ 120.410156, -9.665738 ], [ 120.761719, -9.968851 ], [ 120.673828, -10.228437 ], [ 120.278320, -10.228437 ], [ 118.959961, -9.535749 ], [ 119.882812, -9.318990 ] ] ], [ [ [ 132.363281, -0.351560 ], [ 133.945312, -0.747049 ], [ 134.121094, -1.142502 ], [ 134.384766, -2.767478 ], [ 135.439453, -3.337954 ], [ 136.274414, -2.284551 ], [ 137.416992, -1.669686 ], [ 138.295898, -1.669686 ], [ 139.921875, -2.372369 ], [ 140.976562, -2.591889 ], [ 141.020508, -9.102097 ], [ 140.141602, -8.276727 ], [ 139.086914, -8.059230 ], [ 138.867188, -8.363693 ], [ 137.592773, -8.407168 ], [ 138.032227, -7.580328 ], [ 138.647461, -7.318882 ], [ 138.383789, -6.227934 ], [ 137.900391, -5.353521 ], [ 135.966797, -4.521666 ], [ 135.131836, -4.434044 ], [ 133.637695, -3.513421 ], [ 133.330078, -3.995781 ], [ 132.978516, -4.083453 ], [ 132.714844, -3.732708 ], [ 132.714844, -3.294082 ], [ 131.967773, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.231445, -2.196727 ], [ 131.835938, -1.581830 ], [ 130.913086, -1.406109 ], [ 130.517578, -0.922812 ], [ 131.835938, -0.659165 ], [ 132.363281, -0.351560 ] ] ], [ [ [ 117.861328, -8.059230 ], [ 118.256836, -8.320212 ], [ 118.872070, -8.276727 ], [ 119.091797, -8.667918 ], [ 117.246094, -9.015302 ], [ 116.718750, -9.015302 ], [ 117.070312, -8.450639 ], [ 117.597656, -8.407168 ], [ 117.861328, -8.059230 ] ] ], [ [ [ 122.871094, -8.059230 ], [ 122.739258, -8.624472 ], [ 121.245117, -8.928487 ], [ 119.882812, -8.798225 ], [ 119.882812, -8.407168 ], [ 120.673828, -8.233237 ], [ 121.333008, -8.494105 ], [ 121.992188, -8.450639 ], [ 122.871094, -8.059230 ] ] ], [ [ [ 106.040039, -5.878332 ], [ 107.226562, -5.922045 ], [ 108.061523, -6.315299 ], [ 108.457031, -6.402648 ], [ 108.588867, -6.751896 ], [ 110.522461, -6.839170 ], [ 110.742188, -6.446318 ], [ 112.587891, -6.926427 ], [ 112.939453, -7.580328 ], [ 114.477539, -7.754537 ], [ 115.664062, -8.363693 ], [ 114.521484, -8.711359 ], [ 113.422852, -8.320212 ], [ 112.543945, -8.363693 ], [ 111.489258, -8.276727 ], [ 110.566406, -8.102739 ], [ 109.423828, -7.710992 ], [ 108.676758, -7.623887 ], [ 108.237305, -7.754537 ], [ 106.435547, -7.318882 ], [ 106.259766, -6.882800 ], [ 105.336914, -6.839170 ], [ 106.040039, -5.878332 ] ] ], [ [ [ 134.472656, -5.441022 ], [ 134.692383, -5.703448 ], [ 134.692383, -6.184246 ], [ 134.208984, -6.882800 ], [ 134.077148, -6.140555 ], [ 134.472656, -5.441022 ] ] ], [ [ [ 99.228516, 3.513421 ], [ 99.667969, 3.206333 ], [ 100.634766, 2.108899 ], [ 101.645508, 2.108899 ], [ 102.480469, 1.406109 ], [ 103.051758, 0.571280 ], [ 103.798828, 0.131836 ], [ 103.754883, 0.000000 ], [ 103.403320, -0.703107 ], [ 103.974609, -1.054628 ], [ 104.326172, -1.054628 ], [ 104.501953, -1.757537 ], [ 104.853516, -2.328460 ], [ 105.600586, -2.416276 ], [ 106.083984, -3.030812 ], [ 105.820312, -4.302591 ], [ 105.776367, -5.834616 ], [ 104.677734, -5.834616 ], [ 103.842773, -5.003394 ], [ 102.568359, -4.214943 ], [ 102.128906, -3.601142 ], [ 101.381836, -2.767478 ], [ 100.898438, -2.021065 ], [ 100.107422, -0.615223 ], [ 99.448242, 0.000000 ], [ 99.228516, 0.219726 ], [ 98.964844, 1.054628 ], [ 98.569336, 1.845384 ], [ 97.690430, 2.460181 ], [ 97.163086, 3.337954 ], [ 96.899414, 3.513421 ], [ 99.228516, 3.513421 ] ] ], [ [ [ 125.024414, 1.669686 ], [ 125.200195, 1.450040 ], [ 124.409180, 0.439449 ], [ 123.662109, 0.263671 ], [ 122.695312, 0.439449 ], [ 121.025391, 0.395505 ], [ 120.146484, 0.263671 ], [ 120.102539, 0.000000 ], [ 120.014648, -0.483393 ], [ 120.893555, -1.406109 ], [ 121.464844, -0.922812 ], [ 123.310547, -0.615223 ], [ 123.222656, -1.054628 ], [ 122.783203, -0.922812 ], [ 122.387695, -1.493971 ], [ 121.464844, -1.889306 ], [ 122.431641, -3.162456 ], [ 122.255859, -3.513421 ], [ 123.134766, -4.653080 ], [ 123.134766, -5.309766 ], [ 122.607422, -5.615986 ], [ 122.211914, -5.266008 ], [ 122.695312, -4.434044 ], [ 121.728516, -4.828260 ], [ 121.464844, -4.565474 ], [ 121.596680, -4.171115 ], [ 120.893555, -3.601142 ], [ 120.937500, -2.591889 ], [ 120.278320, -2.899153 ], [ 120.410156, -5.484768 ], [ 119.794922, -5.659719 ], [ 119.355469, -5.353521 ], [ 119.619141, -4.434044 ], [ 119.487305, -3.469557 ], [ 119.047852, -3.469557 ], [ 118.740234, -2.767478 ], [ 119.179688, -2.108899 ], [ 119.311523, -1.318243 ], [ 119.750977, 0.000000 ], [ 120.014648, 0.571280 ], [ 120.849609, 1.318243 ], [ 121.640625, 1.054628 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.024414, 1.669686 ] ] ], [ [ [ 117.465820, 3.513421 ], [ 117.290039, 3.250209 ], [ 118.037109, 2.328460 ], [ 117.861328, 1.845384 ], [ 118.959961, 0.922812 ], [ 117.773438, 0.790990 ], [ 117.465820, 0.131836 ], [ 117.465820, 0.000000 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.450040 ], [ 116.499023, -2.460181 ], [ 116.147461, -3.995781 ], [ 115.971680, -3.645000 ], [ 114.829102, -4.083453 ], [ 114.433594, -3.469557 ], [ 113.730469, -3.425692 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.665039, -2.986927 ], [ 111.005859, -3.030812 ], [ 110.214844, -2.899153 ], [ 110.039062, -1.581830 ], [ 109.555664, -1.274309 ], [ 109.072266, -0.439449 ], [ 108.984375, 0.000000 ], [ 108.940430, 0.439449 ], [ 109.028320, 1.362176 ], [ 109.643555, 2.021065 ], [ 109.819336, 1.362176 ], [ 110.478516, 0.790990 ], [ 111.137695, 1.010690 ], [ 111.796875, 0.922812 ], [ 112.368164, 1.450040 ], [ 112.851562, 1.537901 ], [ 113.774414, 1.230374 ], [ 114.609375, 1.450040 ], [ 115.092773, 2.855263 ], [ 115.488281, 3.206333 ], [ 115.620117, 3.513421 ], [ 117.465820, 3.513421 ] ] ], [ [ [ 129.331055, -2.767478 ], [ 130.429688, -3.074695 ], [ 130.825195, -3.820408 ], [ 129.990234, -3.425692 ], [ 129.111328, -3.337954 ], [ 128.583984, -3.425692 ], [ 127.880859, -3.381824 ], [ 128.100586, -2.811371 ], [ 129.331055, -2.767478 ] ] ], [ [ [ 126.958008, -3.118576 ], [ 127.221680, -3.425692 ], [ 126.870117, -3.776559 ], [ 126.166992, -3.601142 ], [ 125.947266, -3.162456 ], [ 126.958008, -3.118576 ] ] ], [ [ [ 127.924805, 2.196727 ], [ 127.968750, 1.669686 ], [ 128.583984, 1.581830 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.395505 ], [ 128.012695, 0.000000 ], [ 127.924805, -0.219726 ], [ 128.364258, -0.747049 ], [ 128.056641, -0.878872 ], [ 127.661133, -0.263671 ], [ 127.617188, 0.000000 ], [ 127.397461, 1.054628 ], [ 127.573242, 1.845384 ], [ 127.924805, 2.196727 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Papua New Guinea", "sov_a3": "PNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Papua New Guinea", "adm0_a3": "PNG", "geou_dif": 0, "geounit": "Papua New Guinea", "gu_a3": "PNG", "su_dif": 1, "subunit": "Papua New Guinea", "su_a3": "PN1", "brk_diff": 0, "name": "Papua New Guinea", "name_long": "Papua New Guinea", "brk_a3": "PN1", "brk_name": "Papua New Guinea", "abbrev": "P.N.G.", "postal": "PG", "formal_en": "Independent State of Papua New Guinea", "name_sort": "Papua New Guinea", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 6057263, "gdp_md_est": 13210, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PG", "iso_a3": "PNG", "iso_n3": "598", "un_a3": "598", "wb_a2": "PG", "wb_a3": "PNG", "woe_id": -99, "adm0_a3_is": "PNG", "adm0_a3_us": "PNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 16, "long_len": 16, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.976562, -2.591889 ], [ 142.734375, -3.250209 ], [ 144.580078, -3.820408 ], [ 145.810547, -4.872048 ], [ 145.942383, -5.441022 ], [ 147.612305, -6.053161 ], [ 147.875977, -6.577303 ], [ 146.953125, -6.708254 ], [ 147.172852, -7.362467 ], [ 148.051758, -8.015716 ], [ 148.710938, -9.102097 ], [ 149.282227, -9.058702 ], [ 149.238281, -9.492408 ], [ 150.029297, -9.665738 ], [ 149.721680, -9.838979 ], [ 150.776367, -10.271681 ], [ 150.688477, -10.574222 ], [ 149.985352, -10.617418 ], [ 149.765625, -10.358151 ], [ 147.875977, -10.098670 ], [ 146.557617, -8.928487 ], [ 146.030273, -8.059230 ], [ 144.711914, -7.623887 ], [ 143.876953, -7.885147 ], [ 143.261719, -8.233237 ], [ 143.393555, -8.971897 ], [ 142.602539, -9.318990 ], [ 142.031250, -9.145486 ], [ 141.020508, -9.102097 ], [ 140.976562, -2.591889 ] ] ], [ [ [ 154.643555, -5.003394 ], [ 154.731445, -5.309766 ], [ 155.039062, -5.528511 ], [ 155.522461, -6.184246 ], [ 156.005859, -6.533645 ], [ 155.874023, -6.795535 ], [ 155.566406, -6.882800 ], [ 155.126953, -6.533645 ], [ 154.687500, -5.878332 ], [ 154.511719, -5.134715 ], [ 154.643555, -5.003394 ] ] ], [ [ [ 152.094727, -4.127285 ], [ 152.314453, -4.302591 ], [ 152.314453, -4.828260 ], [ 151.962891, -5.441022 ], [ 151.435547, -5.528511 ], [ 151.259766, -5.834616 ], [ 150.205078, -6.315299 ], [ 149.677734, -6.315299 ], [ 148.315430, -5.703448 ], [ 148.359375, -5.397273 ], [ 149.282227, -5.572250 ], [ 149.809570, -5.484768 ], [ 149.985352, -5.003394 ], [ 150.117188, -4.959615 ], [ 150.205078, -5.528511 ], [ 150.776367, -5.441022 ], [ 151.083984, -5.090944 ], [ 151.611328, -4.740675 ], [ 151.523438, -4.127285 ], [ 152.094727, -4.127285 ] ] ], [ [ [ 150.908203, -2.460181 ], [ 152.226562, -3.206333 ], [ 153.017578, -3.951941 ], [ 153.105469, -4.477856 ], [ 152.797852, -4.740675 ], [ 152.622070, -4.171115 ], [ 152.402344, -3.776559 ], [ 151.347656, -3.030812 ], [ 150.644531, -2.723583 ], [ 150.908203, -2.460181 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -3.515625, 57.633640 ], [ -3.076172, 57.704147 ], [ -1.977539, 57.704147 ], [ -2.241211, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.109375, 55.924586 ], [ -1.142578, 54.648413 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.696706 ], [ 0.439453, 52.935397 ], [ 1.669922, 52.749594 ], [ 1.538086, 52.106505 ], [ 1.010742, 51.808615 ], [ 1.406250, 51.316881 ], [ 0.527344, 50.792047 ], [ -0.791016, 50.792047 ], [ -2.504883, 50.513427 ], [ -2.988281, 50.708634 ], [ -3.515625, 50.317408 ], [ -3.515625, 51.426614 ], [ -3.427734, 51.426614 ], [ -3.515625, 51.454007 ], [ -3.515625, 53.435719 ], [ -3.120117, 53.409532 ], [ -2.988281, 54.007769 ], [ -3.515625, 54.521081 ], [ -3.515625, 57.633640 ] ] ], [ [ [ -3.515625, 58.124320 ], [ -3.515625, 58.608334 ], [ -3.032227, 58.654085 ], [ -3.515625, 58.124320 ] ] ] ] } } +, +{ "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": [ [ [ [ 104.326172, 77.702234 ], [ 106.040039, 77.379906 ], [ 104.677734, 77.127825 ], [ 106.962891, 76.980149 ], [ 107.226562, 76.486046 ], [ 108.149414, 76.730314 ], [ 111.049805, 76.710125 ], [ 113.291016, 76.226907 ], [ 114.125977, 75.855911 ], [ 113.862305, 75.331158 ], [ 112.763672, 75.039013 ], [ 110.126953, 74.484662 ], [ 109.379883, 74.188052 ], [ 110.610352, 74.043723 ], [ 112.104492, 73.788054 ], [ 112.983398, 73.983207 ], [ 113.510742, 73.340461 ], [ 113.950195, 73.602996 ], [ 115.532227, 73.763497 ], [ 118.740234, 73.590586 ], [ 119.003906, 73.124945 ], [ 123.178711, 72.984054 ], [ 123.222656, 73.738905 ], [ 125.375977, 73.565739 ], [ 126.958008, 73.565739 ], [ 128.583984, 73.048236 ], [ 129.023438, 72.408992 ], [ 128.452148, 71.992578 ], [ 129.682617, 71.201920 ], [ 131.264648, 70.801366 ], [ 132.231445, 71.842539 ], [ 133.857422, 71.399165 ], [ 135.527344, 71.663663 ], [ 137.460938, 71.357067 ], [ 138.208008, 71.635993 ], [ 139.833984, 71.497037 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.854981 ], [ 149.458008, 72.208678 ], [ 150.336914, 71.608283 ], [ 152.929688, 70.844673 ], [ 156.972656, 71.045529 ], [ 158.994141, 70.873491 ], [ 159.829102, 70.466207 ], [ 159.697266, 69.733334 ], [ 160.927734, 69.442128 ], [ 162.246094, 69.657086 ], [ 164.047852, 69.672358 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.595890 ], [ 169.541016, 68.704486 ], [ 170.815430, 69.021414 ], [ 169.980469, 69.657086 ], [ 170.419922, 70.110485 ], [ 173.627930, 69.824471 ], [ 175.693359, 69.885010 ], [ 178.593750, 69.411242 ], [ 180.000000, 68.974164 ], [ 180.000000, 64.997939 ], [ 178.681641, 64.548440 ], [ 177.407227, 64.623877 ], [ 178.286133, 64.091408 ], [ 178.901367, 63.253412 ], [ 179.340820, 62.995158 ], [ 179.472656, 62.573106 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.532594 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.669024 ], [ 172.133789, 60.951777 ], [ 170.683594, 60.348696 ], [ 170.288086, 59.888937 ], [ 168.881836, 60.586967 ], [ 166.289062, 59.800634 ], [ 165.805664, 60.174306 ], [ 164.838867, 59.734253 ], [ 163.520508, 59.888937 ], [ 163.212891, 59.220934 ], [ 161.982422, 58.263287 ], [ 162.026367, 57.844751 ], [ 163.168945, 57.633640 ], [ 163.037109, 56.170023 ], [ 162.114258, 56.145550 ], [ 161.674805, 55.304138 ], [ 162.114258, 54.876607 ], [ 160.356445, 54.367759 ], [ 160.004883, 53.225768 ], [ 158.510742, 52.961875 ], [ 158.203125, 51.944265 ], [ 156.752930, 51.013755 ], [ 156.401367, 51.727028 ], [ 155.961914, 53.173119 ], [ 155.390625, 55.404070 ], [ 155.874023, 56.776808 ], [ 156.752930, 57.373938 ], [ 156.796875, 57.844751 ], [ 158.334961, 58.077876 ], [ 160.136719, 59.333189 ], [ 161.850586, 60.348696 ], [ 163.652344, 61.143235 ], [ 164.443359, 62.552857 ], [ 163.256836, 62.471724 ], [ 162.641602, 61.648162 ], [ 160.092773, 60.565379 ], [ 159.301758, 61.793900 ], [ 156.708984, 61.438767 ], [ 154.204102, 59.778522 ], [ 155.039062, 59.153403 ], [ 152.797852, 58.904646 ], [ 151.259766, 58.790978 ], [ 151.303711, 59.512029 ], [ 149.765625, 59.667741 ], [ 148.535156, 59.175928 ], [ 145.458984, 59.355596 ], [ 142.163086, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.087891, 54.749991 ], [ 136.669922, 54.622978 ], [ 137.153320, 53.981935 ], [ 138.164062, 53.774689 ], [ 138.779297, 54.265224 ], [ 139.877930, 54.213861 ], [ 141.328125, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.581055, 51.261915 ], [ 140.493164, 50.064192 ], [ 140.053711, 48.458352 ], [ 138.515625, 47.010226 ], [ 138.208008, 46.316584 ], [ 134.868164, 43.421009 ], [ 133.505859, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.293200 ], [ 130.913086, 42.553080 ], [ 130.737305, 42.228517 ], [ 130.605469, 42.423457 ], [ 130.605469, 42.908160 ], [ 131.132812, 42.940339 ], [ 131.264648, 44.119142 ], [ 131.000977, 44.995883 ], [ 131.879883, 45.336702 ], [ 133.066406, 45.151053 ], [ 133.769531, 46.134170 ], [ 134.077148, 47.219568 ], [ 134.472656, 47.606163 ], [ 135.000000, 48.487486 ], [ 133.330078, 48.195387 ], [ 132.495117, 47.813155 ], [ 130.957031, 47.813155 ], [ 130.561523, 48.748945 ], [ 129.375000, 49.468124 ], [ 127.617188, 49.781264 ], [ 127.265625, 50.764259 ], [ 126.914062, 51.371780 ], [ 126.562500, 51.808615 ], [ 125.903320, 52.802761 ], [ 125.024414, 53.173119 ], [ 123.530273, 53.461890 ], [ 122.211914, 53.435719 ], [ 120.981445, 53.252069 ], [ 120.146484, 52.776186 ], [ 120.717773, 52.536273 ], [ 120.717773, 51.971346 ], [ 120.146484, 51.645294 ], [ 119.267578, 50.597186 ], [ 119.267578, 50.148746 ], [ 117.861328, 49.525208 ], [ 116.674805, 49.894634 ], [ 115.444336, 49.809632 ], [ 114.960938, 50.148746 ], [ 114.345703, 50.261254 ], [ 112.895508, 49.553726 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.152970 ], [ 109.379883, 49.296472 ], [ 108.457031, 49.296472 ], [ 107.841797, 49.809632 ], [ 106.875000, 50.289339 ], [ 105.864258, 50.429518 ], [ 104.589844, 50.289339 ], [ 103.666992, 50.092393 ], [ 102.216797, 50.513427 ], [ 102.041016, 51.261915 ], [ 100.854492, 51.536086 ], [ 99.975586, 51.645294 ], [ 98.833008, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.217773, 50.429518 ], [ 97.250977, 49.752880 ], [ 95.800781, 49.979488 ], [ 94.790039, 50.035974 ], [ 94.130859, 50.485474 ], [ 93.076172, 50.513427 ], [ 92.197266, 50.819818 ], [ 90.703125, 50.345460 ], [ 88.769531, 49.496675 ], [ 87.319336, 49.239121 ], [ 86.791992, 49.837982 ], [ 85.517578, 49.696062 ], [ 85.078125, 50.120578 ], [ 84.375000, 50.317408 ], [ 83.891602, 50.903033 ], [ 83.364258, 51.096623 ], [ 81.914062, 50.819818 ], [ 80.551758, 51.399206 ], [ 80.024414, 50.875311 ], [ 77.783203, 53.409532 ], [ 76.508789, 54.188155 ], [ 76.860352, 54.495568 ], [ 74.355469, 53.566414 ], [ 73.388672, 53.514185 ], [ 73.476562, 54.059388 ], [ 72.202148, 54.393352 ], [ 71.147461, 54.136696 ], [ 70.839844, 55.178868 ], [ 69.038086, 55.404070 ], [ 68.159180, 54.977614 ], [ 65.654297, 54.622978 ], [ 65.170898, 54.367759 ], [ 61.435547, 54.007769 ], [ 60.952148, 53.670680 ], [ 61.699219, 52.988337 ], [ 60.732422, 52.722986 ], [ 60.908203, 52.456009 ], [ 59.941406, 51.971346 ], [ 61.567383, 51.289406 ], [ 61.303711, 50.819818 ], [ 59.897461, 50.847573 ], [ 59.633789, 50.569283 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.069017 ], [ 55.678711, 50.625073 ], [ 52.294922, 51.727028 ], [ 50.756836, 51.699800 ], [ 48.691406, 50.625073 ], [ 48.559570, 49.894634 ], [ 47.548828, 50.457504 ], [ 46.713867, 49.382373 ], [ 47.021484, 49.152970 ], [ 46.450195, 48.400032 ], [ 47.285156, 47.724545 ], [ 48.032227, 47.754098 ], [ 48.691406, 47.100045 ], [ 48.559570, 46.589069 ], [ 49.086914, 46.407564 ], [ 48.603516, 45.828799 ], [ 47.636719, 45.644768 ], [ 46.669922, 44.621754 ], [ 47.548828, 43.675818 ], [ 47.460938, 43.004647 ], [ 48.559570, 41.836828 ], [ 47.944336, 41.409776 ], [ 47.812500, 41.178654 ], [ 47.373047, 41.244772 ], [ 46.669922, 41.836828 ], [ 46.362305, 41.869561 ], [ 45.747070, 42.098222 ], [ 45.439453, 42.520700 ], [ 44.516602, 42.714732 ], [ 43.901367, 42.585444 ], [ 43.725586, 42.747012 ], [ 42.363281, 43.229195 ], [ 40.913086, 43.389082 ], [ 40.034180, 43.580391 ], [ 39.946289, 43.452919 ], [ 38.671875, 44.308127 ], [ 37.529297, 44.684277 ], [ 36.650391, 45.274886 ], [ 37.397461, 45.429299 ], [ 38.232422, 46.255847 ], [ 37.661133, 46.649436 ], [ 39.111328, 47.070122 ], [ 39.111328, 47.279229 ], [ 38.188477, 47.129951 ], [ 38.232422, 47.546872 ], [ 38.759766, 47.842658 ], [ 39.726562, 47.901614 ], [ 39.858398, 48.253941 ], [ 39.638672, 48.806863 ], [ 40.078125, 49.325122 ], [ 40.034180, 49.610710 ], [ 38.583984, 49.951220 ], [ 37.968750, 49.922935 ], [ 37.353516, 50.401515 ], [ 36.606445, 50.233152 ], [ 35.332031, 50.597186 ], [ 35.375977, 50.792047 ], [ 34.980469, 51.234407 ], [ 34.189453, 51.261915 ], [ 34.101562, 51.590723 ], [ 34.365234, 51.781436 ], [ 33.750000, 52.348763 ], [ 32.695312, 52.241256 ], [ 32.387695, 52.295042 ], [ 32.124023, 52.079506 ], [ 31.772461, 52.106505 ], [ 31.508789, 52.749594 ], [ 31.289062, 53.094024 ], [ 31.464844, 53.173119 ], [ 32.299805, 53.146770 ], [ 32.651367, 53.357109 ], [ 32.387695, 53.618579 ], [ 31.728516, 53.800651 ], [ 31.772461, 53.981935 ], [ 31.376953, 54.162434 ], [ 30.717773, 54.826008 ], [ 30.937500, 55.103516 ], [ 30.849609, 55.553495 ], [ 29.882812, 55.801281 ], [ 29.355469, 55.677584 ], [ 29.223633, 55.924586 ], [ 28.168945, 56.170023 ], [ 27.817383, 56.776808 ], [ 27.729492, 57.255281 ], [ 27.246094, 57.492214 ], [ 27.685547, 57.797944 ], [ 27.377930, 58.745407 ], [ 28.125000, 59.310768 ], [ 27.949219, 59.489726 ], [ 29.091797, 60.042904 ], [ 28.037109, 60.522158 ], [ 31.113281, 62.369996 ], [ 31.508789, 62.875188 ], [ 30.014648, 63.568120 ], [ 30.410156, 64.206377 ], [ 29.531250, 64.960766 ], [ 30.190430, 65.820782 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.709445 ], [ 28.432617, 68.366801 ], [ 28.564453, 69.068563 ], [ 29.399414, 69.162558 ], [ 31.069336, 69.565226 ], [ 32.124023, 69.915214 ], [ 33.750000, 69.302794 ], [ 36.474609, 69.068563 ], [ 40.253906, 67.941650 ], [ 41.044922, 67.458082 ], [ 41.088867, 66.791909 ], [ 39.990234, 66.266856 ], [ 38.364258, 66.000150 ], [ 33.881836, 66.774586 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.910623 ], [ 34.936523, 64.415921 ], [ 36.210938, 64.110602 ], [ 37.001953, 63.860036 ], [ 37.133789, 64.339908 ], [ 36.518555, 64.774125 ], [ 37.133789, 65.146115 ], [ 39.550781, 64.529548 ], [ 40.429688, 64.774125 ], [ 39.726562, 65.512963 ], [ 42.055664, 66.478208 ], [ 42.978516, 66.425537 ], [ 43.945312, 66.071546 ], [ 44.516602, 66.757250 ], [ 43.681641, 67.356785 ], [ 44.165039, 67.958148 ], [ 43.417969, 68.576441 ], [ 46.230469, 68.253111 ], [ 46.801758, 67.692771 ], [ 45.527344, 67.575717 ], [ 45.527344, 67.016009 ], [ 46.318359, 66.670387 ], [ 47.856445, 66.895596 ], [ 48.120117, 67.525373 ], [ 50.185547, 68.007571 ], [ 53.701172, 68.863517 ], [ 54.448242, 68.815927 ], [ 53.481445, 68.204212 ], [ 54.711914, 68.106102 ], [ 55.415039, 68.447662 ], [ 57.304688, 68.479926 ], [ 58.798828, 68.895187 ], [ 59.941406, 68.285651 ], [ 61.040039, 68.942607 ], [ 60.029297, 69.534518 ], [ 60.512695, 69.854762 ], [ 63.500977, 69.549877 ], [ 64.863281, 69.240579 ], [ 68.510742, 68.106102 ], [ 69.169922, 68.624544 ], [ 68.159180, 69.146920 ], [ 68.115234, 69.364831 ], [ 66.928711, 69.457554 ], [ 67.236328, 69.930300 ], [ 66.708984, 70.714471 ], [ 66.665039, 71.031249 ], [ 68.510742, 71.938158 ], [ 69.169922, 72.854981 ], [ 69.916992, 73.048236 ], [ 72.553711, 72.777081 ], [ 72.773438, 72.222101 ], [ 71.806641, 71.413177 ], [ 72.465820, 71.102543 ], [ 72.773438, 70.392606 ], [ 72.553711, 69.021414 ], [ 73.652344, 68.415352 ], [ 73.212891, 67.742759 ], [ 71.279297, 66.337505 ], [ 72.421875, 66.178266 ], [ 72.817383, 66.548263 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.289015 ], [ 75.014648, 67.776025 ], [ 74.443359, 68.334376 ], [ 74.926758, 68.989925 ], [ 73.828125, 69.084257 ], [ 73.564453, 69.641804 ], [ 74.399414, 70.641769 ], [ 73.081055, 71.455153 ], [ 74.882812, 72.127936 ], [ 74.619141, 72.842021 ], [ 75.146484, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.343013 ], [ 76.333008, 71.159391 ], [ 75.893555, 71.883578 ], [ 77.563477, 72.275693 ], [ 79.628906, 72.329130 ], [ 81.474609, 71.760191 ], [ 80.595703, 72.593979 ], [ 80.507812, 73.652545 ], [ 82.221680, 73.861506 ], [ 84.638672, 73.812574 ], [ 86.791992, 73.946791 ], [ 86.000977, 74.461134 ], [ 87.143555, 75.118222 ], [ 88.286133, 75.152043 ], [ 90.219727, 75.650431 ], [ 92.900391, 75.780545 ], [ 93.208008, 76.047916 ], [ 95.844727, 76.142958 ], [ 96.635742, 75.920199 ], [ 98.920898, 76.455203 ], [ 100.722656, 76.434604 ], [ 101.030273, 76.870796 ], [ 101.953125, 77.293202 ], [ 104.326172, 77.702234 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.217773, 52.749594 ], [ 143.217773, 51.781436 ], [ 143.613281, 50.764259 ], [ 144.624023, 48.980217 ], [ 143.173828, 49.325122 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.860191 ], [ 143.481445, 46.164614 ], [ 142.734375, 46.769968 ], [ 142.075195, 45.981695 ], [ 141.899414, 46.830134 ], [ 141.987305, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.119141, 49.639177 ], [ 142.163086, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.774689 ], [ 142.207031, 54.239551 ], [ 142.646484, 54.367759 ] ] ], [ [ [ 21.225586, 55.203953 ], [ 22.280273, 55.028022 ], [ 22.719727, 54.876607 ], [ 22.631836, 54.597528 ], [ 22.719727, 54.342149 ], [ 20.874023, 54.316523 ], [ 19.643555, 54.444492 ], [ 19.863281, 54.876607 ], [ 21.225586, 55.203953 ] ] ], [ [ [ 68.115234, 76.940488 ], [ 68.818359, 76.547523 ], [ 68.159180, 76.237366 ], [ 64.599609, 75.748125 ], [ 61.567383, 75.264239 ], [ 58.447266, 74.319235 ], [ 56.953125, 73.340461 ], [ 55.415039, 72.382410 ], [ 55.590820, 71.552741 ], [ 57.524414, 70.728979 ], [ 56.909180, 70.641769 ], [ 53.657227, 70.772443 ], [ 53.393555, 71.216075 ], [ 51.591797, 71.483086 ], [ 51.416016, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.426758, 72.777081 ], [ 54.404297, 73.627789 ], [ 53.481445, 73.751205 ], [ 55.898438, 74.636748 ], [ 55.590820, 75.084326 ], [ 57.832031, 75.617721 ], [ 61.127930, 76.258260 ], [ 64.467773, 76.444907 ], [ 66.181641, 76.810769 ], [ 68.115234, 76.940488 ] ] ], [ [ [ 180.000000, 71.524909 ], [ 180.000000, 70.844673 ], [ 178.901367, 70.786910 ], [ 178.681641, 71.102543 ], [ 180.000000, 71.524909 ] ] ], [ [ [ 142.031250, 73.861506 ], [ 143.481445, 73.478485 ], [ 143.569336, 73.214013 ], [ 142.075195, 73.214013 ], [ 140.009766, 73.327858 ], [ 139.833984, 73.378215 ], [ 140.800781, 73.775780 ], [ 142.031250, 73.861506 ] ] ], [ [ [ 138.823242, 76.142958 ], [ 141.459961, 76.100796 ], [ 145.063477, 75.563041 ], [ 144.272461, 74.821934 ], [ 140.581055, 74.856413 ], [ 138.955078, 74.613445 ], [ 136.933594, 75.264239 ], [ 137.504883, 75.952235 ], [ 138.823242, 76.142958 ] ] ], [ [ [ 146.337891, 75.497157 ], [ 148.183594, 75.353398 ], [ 150.688477, 75.084326 ], [ 149.545898, 74.694854 ], [ 147.963867, 74.787379 ], [ 146.118164, 75.174549 ], [ 146.337891, 75.497157 ] ] ], [ [ [ 102.084961, 79.351472 ], [ 102.832031, 79.286313 ], [ 105.336914, 78.716316 ], [ 105.073242, 78.313860 ], [ 99.404297, 77.924866 ], [ 101.250000, 79.237185 ], [ 102.084961, 79.351472 ] ] ], [ [ [ 95.932617, 81.255032 ], [ 97.866211, 80.753556 ], [ 100.151367, 79.781164 ], [ 99.931641, 78.887002 ], [ 97.734375, 78.759229 ], [ 94.965820, 79.046790 ], [ 93.295898, 79.432371 ], [ 92.504883, 80.148684 ], [ 91.142578, 80.342262 ], [ 93.735352, 81.024916 ], [ 95.932617, 81.255032 ] ] ], [ [ [ 50.009766, 80.921494 ], [ 51.503906, 80.703997 ], [ 51.108398, 80.553733 ], [ 48.867188, 80.342262 ], [ 48.735352, 80.178713 ], [ 47.548828, 80.012423 ], [ 46.494141, 80.253391 ], [ 47.065430, 80.560943 ], [ 44.824219, 80.596909 ], [ 46.757812, 80.774716 ], [ 48.295898, 80.788795 ], [ 48.515625, 80.517603 ], [ 49.086914, 80.760615 ], [ 50.009766, 80.921494 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.348633, 56.121060 ], [ 12.656250, 55.627996 ], [ 12.084961, 54.800685 ], [ 11.030273, 55.379110 ], [ 10.898438, 55.801281 ], [ 12.348633, 56.121060 ] ] ], [ [ [ 10.546875, 57.751076 ], [ 10.502930, 57.231503 ], [ 10.239258, 56.897004 ], [ 10.327148, 56.632064 ], [ 10.898438, 56.462490 ], [ 10.634766, 56.096556 ], [ 10.327148, 56.194481 ], [ 9.624023, 55.478853 ], [ 9.887695, 55.002826 ], [ 9.272461, 54.851315 ], [ 8.525391, 54.977614 ], [ 8.085938, 55.528631 ], [ 8.085938, 56.559482 ], [ 8.525391, 57.112385 ], [ 9.404297, 57.183902 ], [ 9.755859, 57.468589 ], [ 10.546875, 57.751076 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.851562, 11.178402 ], [ 22.939453, 10.746969 ], [ 23.510742, 10.098670 ], [ 23.554688, 9.709057 ], [ 23.378906, 9.275622 ], [ 23.422852, 8.971897 ], [ 25.092773, 7.841615 ], [ 25.092773, 7.536764 ], [ 25.795898, 7.013668 ], [ 26.191406, 6.577303 ], [ 26.455078, 5.965754 ], [ 27.202148, 5.572250 ], [ 27.333984, 5.266008 ], [ 27.026367, 5.134715 ], [ 25.620117, 5.266008 ], [ 25.268555, 5.178482 ], [ 25.092773, 4.959615 ], [ 24.785156, 4.915833 ], [ 24.389648, 5.134715 ], [ 23.291016, 4.653080 ], [ 22.807617, 4.740675 ], [ 22.675781, 4.653080 ], [ 22.368164, 4.039618 ], [ 21.621094, 4.258768 ], [ 20.917969, 4.346411 ], [ 20.258789, 4.696879 ], [ 19.467773, 5.047171 ], [ 18.896484, 4.740675 ], [ 18.500977, 4.214943 ], [ 18.413086, 3.513421 ], [ 17.797852, 3.601142 ], [ 17.094727, 3.732708 ], [ 16.523438, 3.206333 ], [ 15.996094, 2.284551 ], [ 15.864258, 2.591889 ], [ 15.820312, 3.030812 ], [ 15.380859, 3.337954 ], [ 15.029297, 3.864255 ], [ 14.941406, 4.214943 ], [ 14.458008, 4.740675 ], [ 14.545898, 5.047171 ], [ 14.458008, 5.484768 ], [ 14.501953, 6.227934 ], [ 14.765625, 6.446318 ], [ 15.249023, 7.449624 ], [ 16.083984, 7.536764 ], [ 16.259766, 7.754537 ], [ 16.435547, 7.754537 ], [ 16.699219, 7.536764 ], [ 17.929688, 7.928675 ], [ 18.369141, 8.320212 ], [ 18.896484, 8.667918 ], [ 18.808594, 9.015302 ], [ 19.072266, 9.102097 ], [ 20.039062, 9.015302 ], [ 20.961914, 9.492408 ], [ 21.708984, 10.574222 ], [ 22.192383, 11.005904 ], [ 22.851562, 11.178402 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.179688, 43.325178 ], [ 75.629883, 42.908160 ], [ 75.981445, 43.004647 ], [ 77.651367, 42.972502 ], [ 79.101562, 42.875964 ], [ 79.628906, 42.520700 ], [ 80.244141, 42.358544 ], [ 80.112305, 42.130821 ], [ 78.530273, 41.607228 ], [ 78.178711, 41.211722 ], [ 76.904297, 41.079351 ], [ 76.508789, 40.446947 ], [ 75.454102, 40.580585 ], [ 74.750977, 40.380028 ], [ 73.784180, 39.909736 ], [ 73.959961, 39.673370 ], [ 73.652344, 39.436193 ], [ 71.762695, 39.300299 ], [ 70.532227, 39.605688 ], [ 69.433594, 39.537940 ], [ 69.521484, 40.111689 ], [ 70.620117, 39.943436 ], [ 70.971680, 40.245992 ], [ 71.762695, 40.178873 ], [ 73.037109, 40.880295 ], [ 71.850586, 41.409776 ], [ 71.147461, 41.145570 ], [ 70.400391, 41.541478 ], [ 71.235352, 42.195969 ], [ 70.927734, 42.293564 ], [ 71.147461, 42.714732 ], [ 71.806641, 42.875964 ], [ 73.476562, 42.520700 ], [ 73.608398, 43.100983 ], [ 74.179688, 43.325178 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.833008, 52.052490 ], [ 99.975586, 51.645294 ], [ 100.854492, 51.536086 ], [ 102.041016, 51.261915 ], [ 102.216797, 50.513427 ], [ 103.666992, 50.092393 ], [ 104.589844, 50.289339 ], [ 105.864258, 50.429518 ], [ 106.875000, 50.289339 ], [ 107.841797, 49.809632 ], [ 108.457031, 49.296472 ], [ 109.379883, 49.296472 ], [ 110.654297, 49.152970 ], [ 111.577148, 49.382373 ], [ 112.895508, 49.553726 ], [ 114.345703, 50.261254 ], [ 114.960938, 50.148746 ], [ 115.444336, 49.809632 ], [ 116.674805, 49.894634 ], [ 115.444336, 48.136767 ], [ 115.708008, 47.754098 ], [ 116.279297, 47.872144 ], [ 117.290039, 47.724545 ], [ 118.037109, 48.078079 ], [ 118.828125, 47.754098 ], [ 119.750977, 47.070122 ], [ 119.663086, 46.709736 ], [ 118.872070, 46.830134 ], [ 117.377930, 46.679594 ], [ 116.674805, 46.407564 ], [ 115.971680, 45.736860 ], [ 114.433594, 45.367584 ], [ 113.422852, 44.809122 ], [ 111.840820, 45.120053 ], [ 111.313477, 44.465151 ], [ 111.665039, 44.087585 ], [ 111.796875, 43.771094 ], [ 111.093750, 43.421009 ], [ 110.390625, 42.875964 ], [ 109.204102, 42.520700 ], [ 107.709961, 42.488302 ], [ 106.127930, 42.163403 ], [ 104.941406, 41.607228 ], [ 104.501953, 41.934977 ], [ 103.271484, 41.934977 ], [ 101.821289, 42.520700 ], [ 100.810547, 42.682435 ], [ 99.492188, 42.553080 ], [ 97.426758, 42.779275 ], [ 96.328125, 42.747012 ], [ 95.756836, 43.325178 ], [ 95.273438, 44.245199 ], [ 94.658203, 44.370987 ], [ 93.471680, 44.995883 ], [ 90.922852, 45.305803 ], [ 90.571289, 45.736860 ], [ 90.966797, 46.890232 ], [ 90.263672, 47.694974 ], [ 88.813477, 48.078079 ], [ 87.978516, 48.603858 ], [ 87.714844, 49.325122 ], [ 88.769531, 49.496675 ], [ 90.703125, 50.345460 ], [ 92.197266, 50.819818 ], [ 93.076172, 50.513427 ], [ 94.130859, 50.485474 ], [ 94.790039, 50.035974 ], [ 95.800781, 49.979488 ], [ 97.250977, 49.752880 ], [ 98.217773, 50.429518 ], [ 97.822266, 51.013755 ], [ 98.833008, 52.052490 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Philippines", "sov_a3": "PHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Philippines", "adm0_a3": "PHL", "geou_dif": 0, "geounit": "Philippines", "gu_a3": "PHL", "su_dif": 0, "subunit": "Philippines", "su_a3": "PHL", "brk_diff": 0, "name": "Philippines", "name_long": "Philippines", "brk_a3": "PHL", "brk_name": "Philippines", "abbrev": "Phil.", "postal": "PH", "formal_en": "Republic of the Philippines", "name_sort": "Philippines", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 97976603, "gdp_md_est": 317500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PH", "iso_a3": "PHL", "iso_n3": "608", "un_a3": "608", "wb_a2": "PH", "wb_a3": "PHL", "woe_id": -99, "adm0_a3_is": "PHL", "adm0_a3_us": "PHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.375977, 9.795678 ], [ 126.210938, 9.318990 ], [ 126.342773, 8.450639 ], [ 126.518555, 7.231699 ], [ 126.166992, 6.315299 ], [ 125.815430, 7.318882 ], [ 125.332031, 6.795535 ], [ 125.639648, 6.053161 ], [ 125.375977, 5.615986 ], [ 124.189453, 6.184246 ], [ 123.925781, 6.926427 ], [ 124.233398, 7.362467 ], [ 123.574219, 7.841615 ], [ 123.266602, 7.449624 ], [ 122.783203, 7.493196 ], [ 122.080078, 6.926427 ], [ 121.904297, 7.231699 ], [ 122.299805, 8.059230 ], [ 122.915039, 8.320212 ], [ 123.486328, 8.711359 ], [ 123.837891, 8.276727 ], [ 124.584961, 8.537565 ], [ 124.760742, 8.971897 ], [ 125.463867, 9.015302 ], [ 125.375977, 9.795678 ] ] ], [ [ [ 119.487305, 11.393879 ], [ 119.663086, 10.574222 ], [ 119.003906, 10.012130 ], [ 118.476562, 9.318990 ], [ 117.158203, 8.407168 ], [ 117.641602, 9.102097 ], [ 118.344727, 9.709057 ], [ 118.959961, 10.401378 ], [ 119.487305, 11.393879 ] ] ], [ [ [ 124.057617, 11.264612 ], [ 123.969727, 10.314919 ], [ 123.618164, 9.968851 ], [ 123.266602, 9.318990 ], [ 122.958984, 9.058702 ], [ 122.343750, 9.752370 ], [ 122.827148, 10.271681 ], [ 122.915039, 10.919618 ], [ 123.486328, 10.962764 ], [ 123.310547, 10.271681 ], [ 124.057617, 11.264612 ] ] ], [ [ [ 124.233398, 12.597455 ], [ 125.200195, 12.554564 ], [ 125.463867, 12.168226 ], [ 125.771484, 11.049038 ], [ 124.980469, 11.350797 ], [ 125.024414, 11.005904 ], [ 125.244141, 10.401378 ], [ 124.760742, 10.141932 ], [ 124.716797, 10.876465 ], [ 124.453125, 10.919618 ], [ 124.277344, 11.523088 ], [ 124.848633, 11.436955 ], [ 124.848633, 11.824341 ], [ 124.233398, 12.597455 ] ] ], [ [ [ 121.860352, 11.910354 ], [ 122.475586, 11.609193 ], [ 123.090820, 11.609193 ], [ 123.090820, 11.178402 ], [ 122.607422, 10.746969 ], [ 121.992188, 10.444598 ], [ 121.948242, 10.919618 ], [ 122.036133, 11.436955 ], [ 121.860352, 11.910354 ] ] ], [ [ [ 120.322266, 13.496473 ], [ 121.157227, 13.453737 ], [ 121.508789, 13.111580 ], [ 121.245117, 12.211180 ], [ 120.805664, 12.726084 ], [ 120.322266, 13.496473 ] ] ], [ [ [ 121.289062, 18.521283 ], [ 121.904297, 18.229351 ], [ 122.211914, 18.479609 ], [ 122.299805, 18.229351 ], [ 122.167969, 17.811456 ], [ 122.475586, 17.098792 ], [ 122.211914, 16.299051 ], [ 121.640625, 15.961329 ], [ 121.464844, 15.156974 ], [ 121.728516, 14.349548 ], [ 122.255859, 14.221789 ], [ 122.695312, 14.349548 ], [ 123.925781, 13.795406 ], [ 123.837891, 13.239945 ], [ 124.145508, 13.025966 ], [ 124.057617, 12.554564 ], [ 123.266602, 13.068777 ], [ 122.915039, 13.581921 ], [ 122.651367, 13.197165 ], [ 121.992188, 13.795406 ], [ 121.113281, 13.667338 ], [ 120.585938, 13.880746 ], [ 120.673828, 14.306969 ], [ 120.981445, 14.562318 ], [ 120.673828, 14.774883 ], [ 120.541992, 14.434680 ], [ 120.058594, 14.987240 ], [ 119.882812, 15.411319 ], [ 119.882812, 16.383391 ], [ 120.278320, 16.045813 ], [ 120.366211, 17.602139 ], [ 120.673828, 18.521283 ], [ 121.289062, 18.521283 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Gabon", "sov_a3": "GAB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gabon", "adm0_a3": "GAB", "geou_dif": 0, "geounit": "Gabon", "gu_a3": "GAB", "su_dif": 0, "subunit": "Gabon", "su_a3": "GAB", "brk_diff": 0, "name": "Gabon", "name_long": "Gabon", "brk_a3": "GAB", "brk_name": "Gabon", "abbrev": "Gabon", "postal": "GA", "formal_en": "Gabonese Republic", "name_sort": "Gabon", "mapcolor7": 6, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 1514993, "gdp_md_est": 21110, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "GA", "iso_a3": "GAB", "iso_n3": "266", "un_a3": "266", "wb_a2": "GA", "wb_a3": "GAB", "woe_id": -99, "adm0_a3_is": "GAB", "adm0_a3_us": "GAB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": 3, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.919922, 2.328460 ], [ 13.051758, 2.284551 ], [ 12.963867, 1.845384 ], [ 13.271484, 1.318243 ], [ 14.018555, 1.406109 ], [ 14.238281, 1.230374 ], [ 13.842773, 0.000000 ], [ 14.282227, -0.527336 ], [ 14.414062, -1.318243 ], [ 14.282227, -1.977147 ], [ 13.974609, -2.460181 ], [ 13.095703, -2.416276 ], [ 12.568359, -1.933227 ], [ 12.480469, -2.372369 ], [ 11.777344, -2.504085 ], [ 11.469727, -2.723583 ], [ 11.821289, -3.425692 ], [ 11.733398, -3.513421 ], [ 10.590820, -3.513421 ], [ 10.063477, -2.943041 ], [ 9.404297, -2.108899 ], [ 8.789062, -1.098565 ], [ 8.789062, -0.747049 ], [ 9.008789, -0.439449 ], [ 9.184570, 0.000000 ], [ 9.492188, 1.010690 ], [ 9.799805, 1.098565 ], [ 11.250000, 1.098565 ], [ 11.250000, 2.284551 ], [ 11.733398, 2.328460 ], [ 12.348633, 2.196727 ], [ 12.919922, 2.328460 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 126.958008, -3.118576 ], [ 127.221680, -3.425692 ], [ 127.177734, -3.513421 ], [ 126.123047, -3.513421 ], [ 125.947266, -3.162456 ], [ 126.958008, -3.118576 ] ] ], [ [ [ 129.331055, -2.767478 ], [ 130.429688, -3.074695 ], [ 130.649414, -3.513421 ], [ 130.122070, -3.513421 ], [ 129.990234, -3.425692 ], [ 129.111328, -3.337954 ], [ 128.583984, -3.425692 ], [ 127.880859, -3.381824 ], [ 128.100586, -2.811371 ], [ 129.331055, -2.767478 ] ] ], [ [ [ 132.363281, -0.351560 ], [ 133.945312, -0.747049 ], [ 134.121094, -1.142502 ], [ 134.384766, -2.767478 ], [ 135.439453, -3.337954 ], [ 136.274414, -2.284551 ], [ 137.416992, -1.669686 ], [ 138.295898, -1.669686 ], [ 139.921875, -2.372369 ], [ 140.976562, -2.591889 ], [ 140.976562, -3.513421 ], [ 132.714844, -3.513421 ], [ 132.714844, -3.294082 ], [ 131.967773, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.231445, -2.196727 ], [ 131.835938, -1.581830 ], [ 130.913086, -1.406109 ], [ 130.517578, -0.922812 ], [ 131.835938, -0.659165 ], [ 132.363281, -0.351560 ] ] ], [ [ [ 116.982422, 4.346411 ], [ 117.861328, 4.171115 ], [ 117.290039, 3.250209 ], [ 118.037109, 2.328460 ], [ 117.861328, 1.845384 ], [ 118.959961, 0.922812 ], [ 117.773438, 0.790990 ], [ 117.465820, 0.131836 ], [ 117.465820, 0.000000 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.450040 ], [ 116.499023, -2.460181 ], [ 116.235352, -3.513421 ], [ 114.477539, -3.513421 ], [ 113.730469, -3.425692 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.665039, -2.986927 ], [ 111.005859, -3.030812 ], [ 110.214844, -2.899153 ], [ 110.039062, -1.581830 ], [ 109.555664, -1.274309 ], [ 109.072266, -0.439449 ], [ 108.984375, 0.000000 ], [ 108.940430, 0.439449 ], [ 109.028320, 1.362176 ], [ 109.643555, 2.021065 ], [ 109.819336, 1.362176 ], [ 110.478516, 0.790990 ], [ 111.137695, 1.010690 ], [ 111.796875, 0.922812 ], [ 112.368164, 1.450040 ], [ 112.851562, 1.537901 ], [ 113.774414, 1.230374 ], [ 114.609375, 1.450040 ], [ 115.092773, 2.855263 ], [ 115.488281, 3.206333 ], [ 115.839844, 4.346411 ], [ 116.982422, 4.346411 ] ] ], [ [ [ 95.273438, 5.484768 ], [ 97.470703, 5.266008 ], [ 98.349609, 4.302591 ], [ 99.667969, 3.206333 ], [ 100.634766, 2.108899 ], [ 101.645508, 2.108899 ], [ 102.480469, 1.406109 ], [ 103.051758, 0.571280 ], [ 103.798828, 0.131836 ], [ 103.754883, 0.000000 ], [ 103.403320, -0.703107 ], [ 103.974609, -1.054628 ], [ 104.326172, -1.054628 ], [ 104.501953, -1.757537 ], [ 104.853516, -2.328460 ], [ 105.600586, -2.416276 ], [ 106.083984, -3.030812 ], [ 105.996094, -3.513421 ], [ 102.041016, -3.513421 ], [ 101.381836, -2.767478 ], [ 100.898438, -2.021065 ], [ 100.107422, -0.615223 ], [ 99.448242, 0.000000 ], [ 99.228516, 0.219726 ], [ 98.964844, 1.054628 ], [ 98.569336, 1.845384 ], [ 97.690430, 2.460181 ], [ 97.163086, 3.337954 ], [ 96.416016, 3.908099 ], [ 95.361328, 5.003394 ], [ 95.273438, 5.484768 ] ] ], [ [ [ 125.024414, 1.669686 ], [ 125.200195, 1.450040 ], [ 124.409180, 0.439449 ], [ 123.662109, 0.263671 ], [ 122.695312, 0.439449 ], [ 121.025391, 0.395505 ], [ 120.146484, 0.263671 ], [ 120.102539, 0.000000 ], [ 120.014648, -0.483393 ], [ 120.893555, -1.406109 ], [ 121.464844, -0.922812 ], [ 123.310547, -0.615223 ], [ 123.222656, -1.054628 ], [ 122.783203, -0.922812 ], [ 122.387695, -1.493971 ], [ 121.464844, -1.889306 ], [ 122.431641, -3.162456 ], [ 122.255859, -3.513421 ], [ 120.893555, -3.513421 ], [ 120.937500, -2.591889 ], [ 120.278320, -2.899153 ], [ 120.322266, -3.513421 ], [ 119.047852, -3.469557 ], [ 118.740234, -2.767478 ], [ 119.179688, -2.108899 ], [ 119.311523, -1.318243 ], [ 119.750977, 0.000000 ], [ 120.014648, 0.571280 ], [ 120.849609, 1.318243 ], [ 121.640625, 1.054628 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.024414, 1.669686 ] ] ], [ [ [ 127.924805, 2.196727 ], [ 127.968750, 1.669686 ], [ 128.583984, 1.581830 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.395505 ], [ 128.012695, 0.000000 ], [ 127.924805, -0.219726 ], [ 128.364258, -0.747049 ], [ 128.056641, -0.878872 ], [ 127.661133, -0.263671 ], [ 127.617188, 0.000000 ], [ 127.397461, 1.054628 ], [ 127.573242, 1.845384 ], [ 127.924805, 2.196727 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Papua New Guinea", "sov_a3": "PNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Papua New Guinea", "adm0_a3": "PNG", "geou_dif": 0, "geounit": "Papua New Guinea", "gu_a3": "PNG", "su_dif": 1, "subunit": "Papua New Guinea", "su_a3": "PN1", "brk_diff": 0, "name": "Papua New Guinea", "name_long": "Papua New Guinea", "brk_a3": "PN1", "brk_name": "Papua New Guinea", "abbrev": "P.N.G.", "postal": "PG", "formal_en": "Independent State of Papua New Guinea", "name_sort": "Papua New Guinea", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 6057263, "gdp_md_est": 13210, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PG", "iso_a3": "PNG", "iso_n3": "598", "un_a3": "598", "wb_a2": "PG", "wb_a3": "PNG", "woe_id": -99, "adm0_a3_is": "PNG", "adm0_a3_us": "PNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 16, "long_len": 16, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.976562, -2.591889 ], [ 143.437500, -3.513421 ], [ 140.976562, -3.513421 ], [ 140.976562, -2.591889 ] ] ], [ [ [ 150.908203, -2.460181 ], [ 152.226562, -3.206333 ], [ 152.490234, -3.513421 ], [ 152.006836, -3.513421 ], [ 151.347656, -3.030812 ], [ 150.644531, -2.723583 ], [ 150.908203, -2.460181 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ -169.958496, -83.884025 ], [ -168.530273, -84.236362 ], [ -167.036133, -84.568466 ], [ -164.201660, -84.824323 ], [ -162.575684, -85.051129 ], [ -161.938477, -85.137560 ], [ -160.949707, -85.200475 ], [ -180.000000, -85.200475 ], [ -180.000000, -84.712127 ], [ -179.956055, -84.720221 ], [ -179.077148, -84.138452 ], [ -177.275391, -84.452865 ], [ -176.088867, -84.097922 ], [ -175.847168, -84.115970 ], [ -174.396973, -84.532994 ], [ -173.122559, -84.115970 ], [ -172.902832, -84.059387 ], [ -169.958496, -83.884025 ] ] ], [ [ [ -153.039551, -85.200475 ], [ -156.247559, -85.200475 ], [ -155.192871, -85.098291 ], [ -153.039551, -85.200475 ] ] ], [ [ [ -88.439941, -73.003333 ], [ -88.242188, -73.035419 ], [ -88.242188, -85.200475 ], [ -144.711914, -85.200475 ], [ -143.217773, -85.051129 ], [ -143.107910, -85.039743 ], [ -142.910156, -84.568466 ], [ -146.843262, -84.530900 ], [ -150.073242, -84.295635 ], [ -150.908203, -83.902725 ], [ -153.588867, -83.686615 ], [ -153.413086, -83.236426 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.451651 ], [ -152.863770, -82.039656 ], [ -154.533691, -81.767353 ], [ -155.302734, -81.413933 ], [ -156.840820, -81.100015 ], [ -154.423828, -81.157619 ], [ -152.116699, -81.000889 ], [ -150.666504, -81.334844 ], [ -148.886719, -81.042039 ], [ -147.238770, -80.668436 ], [ -146.425781, -80.334887 ], [ -146.777344, -79.924393 ], [ -148.073730, -79.651722 ], [ -149.545898, -79.355532 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.158943 ], [ -155.346680, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.280273, -78.376004 ], [ -158.071289, -78.025574 ], [ -158.378906, -76.885761 ], [ -157.895508, -76.985098 ], [ -156.994629, -77.298034 ], [ -155.346680, -77.201045 ], [ -153.764648, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.347656, -77.394300 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.905688 ], [ -147.634277, -76.573058 ], [ -146.118164, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.731888 ], [ -146.206055, -75.375605 ], [ -144.909668, -75.202634 ], [ -144.338379, -75.535625 ], [ -142.800293, -75.336721 ], [ -141.657715, -75.084326 ], [ -140.229492, -75.061686 ], [ -138.867188, -74.965093 ], [ -137.526855, -74.729615 ], [ -136.450195, -74.514023 ], [ -135.219727, -74.301409 ], [ -134.450684, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.275391, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.572754, -74.455247 ], [ -128.254395, -74.319235 ], [ -125.419922, -74.514023 ], [ -124.013672, -74.478784 ], [ -121.091309, -74.514023 ], [ -119.707031, -74.478784 ], [ -118.696289, -74.182063 ], [ -117.487793, -74.025591 ], [ -116.235352, -74.241846 ], [ -115.026855, -74.061834 ], [ -113.950195, -73.714276 ], [ -113.312988, -74.025591 ], [ -112.961426, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.083008, -74.787379 ], [ -108.720703, -74.907988 ], [ -107.578125, -75.180170 ], [ -106.149902, -75.123864 ], [ -104.897461, -74.947983 ], [ -103.381348, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.656738, -75.297735 ], [ -100.129395, -74.867889 ], [ -100.766602, -74.537473 ], [ -101.271973, -74.182063 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.688965, -72.613687 ], [ -102.919922, -72.751039 ], [ -101.623535, -72.809581 ], [ -100.327148, -72.751039 ], [ -99.140625, -72.906723 ], [ -98.129883, -73.201317 ], [ -97.690430, -73.553302 ], [ -96.350098, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.691406, -73.283674 ], [ -92.460938, -73.163173 ], [ -91.428223, -73.397060 ], [ -90.109863, -73.321553 ], [ -90.000000, -73.245712 ], [ -89.230957, -72.554498 ], [ -88.439941, -73.003333 ] ] ], [ [ [ -163.125000, -78.220028 ], [ -161.257324, -78.376004 ], [ -160.246582, -78.690491 ], [ -159.499512, -79.042615 ], [ -159.213867, -79.496652 ], [ -161.147461, -79.631968 ], [ -162.443848, -79.278140 ], [ -163.037109, -78.925053 ], [ -163.081055, -78.865806 ], [ -163.718262, -78.595299 ], [ -163.125000, -78.220028 ] ] ], [ [ [ -122.409668, -73.321553 ], [ -121.223145, -73.497220 ], [ -119.926758, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.311523, -73.830940 ], [ -120.234375, -74.085951 ], [ -121.640625, -74.007440 ], [ -122.629395, -73.652545 ], [ -122.409668, -73.321553 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.573730, -73.478485 ], [ -124.035645, -73.867612 ], [ -125.925293, -73.732751 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.711426, -71.711989 ], [ -100.437012, -71.849385 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.067147 ], [ -96.789551, -71.951778 ], [ -96.218262, -72.514931 ], [ -96.987305, -72.442164 ], [ -98.217773, -72.481891 ], [ -99.448242, -72.442164 ], [ -100.788574, -72.495114 ], [ -101.821289, -72.302431 ], [ -102.348633, -71.890409 ], [ -101.711426, -71.711989 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Fiji", "sov_a3": "FJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Fiji", "adm0_a3": "FJI", "geou_dif": 0, "geounit": "Fiji", "gu_a3": "FJI", "su_dif": 0, "subunit": "Fiji", "su_a3": "FJI", "brk_diff": 0, "name": "Fiji", "name_long": "Fiji", "brk_a3": "FJI", "brk_name": "Fiji", "abbrev": "Fiji", "postal": "FJ", "formal_en": "Republic of Fiji", "name_sort": "Fiji", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 944720, "gdp_md_est": 3579, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "FJ", "iso_a3": "FJI", "iso_n3": "242", "un_a3": "242", "wb_a2": "FJ", "wb_a3": "FJI", "woe_id": -99, "adm0_a3_is": "FJI", "adm0_a3_us": "FJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -179.802246, -16.003576 ], [ -179.934082, -16.488765 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.066929 ], [ -179.802246, -16.003576 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -88.242188, 67.204032 ], [ -88.242188, 64.244595 ], [ -88.483887, 64.101007 ], [ -89.934082, 64.033744 ], [ -90.000000, 63.995235 ], [ -90.725098, 63.616982 ], [ -90.791016, 62.965212 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.031835 ], [ -94.262695, 60.909073 ], [ -94.636230, 60.119619 ], [ -94.702148, 58.950008 ], [ -93.229980, 58.790978 ], [ -92.768555, 57.856443 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.290918 ], [ -90.000000, 57.076575 ], [ -89.055176, 56.860986 ], [ -88.242188, 56.559482 ], [ -88.242188, 48.253941 ], [ -88.395996, 48.312428 ], [ -89.274902, 48.034019 ], [ -89.604492, 48.019324 ], [ -90.000000, 48.107431 ], [ -90.834961, 48.283193 ], [ -91.647949, 48.151428 ], [ -92.614746, 48.458352 ], [ -93.647461, 48.618385 ], [ -94.350586, 48.676454 ], [ -94.658203, 48.850258 ], [ -94.833984, 49.396675 ], [ -95.163574, 49.396675 ], [ -95.163574, 49.009051 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.993615 ], [ -125.639648, 50.429518 ], [ -127.441406, 50.833698 ], [ -128.012695, 51.727028 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.762892 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.813348 ], [ -129.990234, 55.291628 ], [ -130.012207, 55.924586 ], [ -131.726074, 56.559482 ], [ -133.374023, 58.413223 ], [ -134.274902, 58.870585 ], [ -134.956055, 59.277108 ], [ -135.483398, 59.789580 ], [ -136.494141, 59.467408 ], [ -137.460938, 58.915992 ], [ -138.361816, 59.567723 ], [ -139.042969, 60.009971 ], [ -140.031738, 60.283408 ], [ -140.998535, 60.316068 ], [ -140.998535, 67.204032 ], [ -88.242188, 67.204032 ] ] ], [ [ [ -128.364258, 50.778155 ], [ -127.309570, 50.555325 ], [ -126.716309, 50.401515 ], [ -125.771484, 50.303376 ], [ -124.936523, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.530273, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.835797 ], [ -125.969238, 49.181703 ], [ -126.870117, 49.539469 ], [ -127.045898, 49.823809 ], [ -128.078613, 50.007739 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.778155 ] ] ], [ [ [ -133.198242, 54.175297 ], [ -132.714844, 54.046489 ], [ -131.770020, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.198730, 52.187405 ], [ -131.594238, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.561035, 53.107217 ], [ -133.066406, 53.422628 ], [ -133.242188, 53.852527 ], [ -133.198242, 54.175297 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.874023, 20.282809 ], [ -155.236816, 19.993998 ], [ -155.083008, 19.870060 ], [ -154.819336, 19.518375 ], [ -154.841309, 19.456234 ], [ -155.544434, 19.103648 ], [ -155.698242, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.917969, 19.352611 ], [ -156.093750, 19.704658 ], [ -156.027832, 19.828725 ], [ -155.852051, 19.993998 ], [ -155.939941, 20.179724 ], [ -155.874023, 20.282809 ] ] ], [ [ [ -156.621094, 21.022983 ], [ -156.269531, 20.920397 ], [ -156.005859, 20.776659 ], [ -156.093750, 20.653346 ], [ -156.423340, 20.591652 ], [ -156.599121, 20.797201 ], [ -156.708984, 20.879343 ], [ -156.730957, 20.940920 ], [ -156.621094, 21.022983 ] ] ], [ [ [ -157.258301, 21.227942 ], [ -156.774902, 21.186973 ], [ -156.796875, 21.084500 ], [ -157.346191, 21.105000 ], [ -157.258301, 21.227942 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.653809, 21.330315 ], [ -157.719727, 21.268900 ], [ -158.137207, 21.330315 ], [ -158.312988, 21.596151 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.609375, 22.248429 ], [ -159.367676, 22.228090 ], [ -159.345703, 21.983801 ], [ -159.477539, 21.902278 ], [ -159.807129, 22.085640 ], [ -159.763184, 22.146708 ], [ -159.609375, 22.248429 ] ] ], [ [ [ -94.833984, 49.396675 ], [ -94.658203, 48.850258 ], [ -94.350586, 48.676454 ], [ -93.647461, 48.618385 ], [ -92.614746, 48.458352 ], [ -91.647949, 48.151428 ], [ -90.834961, 48.283193 ], [ -90.000000, 48.107431 ], [ -89.604492, 48.019324 ], [ -89.274902, 48.034019 ], [ -88.395996, 48.312428 ], [ -88.242188, 48.253941 ], [ -88.242188, 30.372875 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.428711, 29.897806 ], [ -89.450684, 29.496988 ], [ -89.230957, 29.305561 ], [ -89.428711, 29.171349 ], [ -89.780273, 29.324720 ], [ -90.000000, 29.209713 ], [ -90.175781, 29.132970 ], [ -90.900879, 29.152161 ], [ -91.647949, 29.688053 ], [ -92.504883, 29.554345 ], [ -93.229980, 29.802518 ], [ -93.867188, 29.726222 ], [ -94.702148, 29.496988 ], [ -95.603027, 28.748397 ], [ -96.613770, 28.323725 ], [ -97.141113, 27.839076 ], [ -97.382812, 27.391278 ], [ -97.382812, 26.706360 ], [ -97.338867, 26.214591 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.859224 ], [ -98.261719, 26.076521 ], [ -99.030762, 26.372185 ], [ -99.316406, 26.843677 ], [ -99.536133, 27.547242 ], [ -100.129395, 28.110749 ], [ -100.458984, 28.709861 ], [ -100.964355, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.117676, 28.979312 ], [ -103.952637, 29.286399 ], [ -104.458008, 29.573457 ], [ -104.721680, 30.126124 ], [ -105.051270, 30.656816 ], [ -105.644531, 31.090574 ], [ -106.149902, 31.409912 ], [ -106.523438, 31.765537 ], [ -108.259277, 31.765537 ], [ -108.259277, 31.353637 ], [ -111.027832, 31.334871 ], [ -114.829102, 32.528289 ], [ -114.741211, 32.731841 ], [ -117.136230, 32.546813 ], [ -117.312012, 33.063924 ], [ -117.949219, 33.632916 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.034453 ], [ -119.091797, 34.089061 ], [ -119.443359, 34.361576 ], [ -120.388184, 34.452218 ], [ -120.629883, 34.615127 ], [ -120.761719, 35.173808 ], [ -121.728516, 36.173357 ], [ -122.563477, 37.561997 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.117272 ], [ -123.728027, 38.959409 ], [ -123.881836, 39.774769 ], [ -124.409180, 40.329796 ], [ -124.189453, 41.145570 ], [ -124.233398, 42.000325 ], [ -124.541016, 42.779275 ], [ -124.145508, 43.723475 ], [ -123.903809, 45.537137 ], [ -124.101562, 46.875213 ], [ -124.409180, 47.724545 ], [ -124.694824, 48.195387 ], [ -124.584961, 48.385442 ], [ -123.134766, 48.048710 ], [ -122.607422, 47.100045 ], [ -122.343750, 47.368594 ], [ -122.519531, 48.180739 ], [ -122.849121, 49.009051 ], [ -95.163574, 49.009051 ], [ -95.163574, 49.396675 ], [ -94.833984, 49.396675 ] ] ], [ [ [ -140.998535, 67.204032 ], [ -140.998535, 60.316068 ], [ -140.031738, 60.283408 ], [ -139.042969, 60.009971 ], [ -138.361816, 59.567723 ], [ -137.460938, 58.915992 ], [ -136.494141, 59.467408 ], [ -135.483398, 59.789580 ], [ -134.956055, 59.277108 ], [ -134.274902, 58.870585 ], [ -133.374023, 58.413223 ], [ -131.726074, 56.559482 ], [ -130.012207, 55.924586 ], [ -129.990234, 55.291628 ], [ -130.539551, 54.813348 ], [ -131.088867, 55.191412 ], [ -131.967773, 55.503750 ], [ -132.253418, 56.377419 ], [ -133.549805, 57.183902 ], [ -134.099121, 58.124320 ], [ -135.043945, 58.193871 ], [ -136.647949, 58.217025 ], [ -137.812500, 58.505175 ], [ -139.877930, 59.545457 ], [ -142.580566, 60.086763 ], [ -143.964844, 60.009971 ], [ -145.942383, 60.468050 ], [ -147.128906, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.029785, 59.987998 ], [ -148.579102, 59.921990 ], [ -149.743652, 59.712097 ], [ -150.622559, 59.377988 ], [ -151.721191, 59.164668 ], [ -151.875000, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.358887, 61.037012 ], [ -150.622559, 61.291349 ], [ -151.896973, 60.737686 ], [ -152.600098, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.303223, 58.870585 ], [ -154.248047, 58.147519 ], [ -155.324707, 57.739350 ], [ -156.313477, 57.433124 ], [ -156.577148, 56.980911 ], [ -158.137207, 56.474628 ], [ -158.444824, 55.998381 ], [ -159.609375, 55.578345 ], [ -160.290527, 55.652798 ], [ -161.235352, 55.366625 ], [ -162.246094, 55.028022 ], [ -163.081055, 54.699234 ], [ -164.794922, 54.406143 ], [ -164.948730, 54.584797 ], [ -163.850098, 55.040614 ], [ -162.883301, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.576172, 56.010666 ], [ -160.070801, 56.426054 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.219608 ], [ -157.741699, 57.574779 ], [ -157.565918, 58.332567 ], [ -157.060547, 58.927334 ], [ -158.203125, 58.619777 ], [ -158.532715, 58.790978 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.938673 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.074448 ], [ -161.367188, 58.676938 ], [ -161.982422, 58.676938 ], [ -162.070312, 59.277108 ], [ -161.894531, 59.634435 ], [ -162.531738, 59.998986 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.272515 ], [ -165.366211, 60.511343 ], [ -165.366211, 61.079544 ], [ -166.135254, 61.501734 ], [ -165.739746, 62.083315 ], [ -164.926758, 62.633770 ], [ -164.575195, 63.154355 ], [ -163.762207, 63.223730 ], [ -163.081055, 63.064914 ], [ -162.268066, 63.548552 ], [ -161.542969, 63.460329 ], [ -160.773926, 63.772777 ], [ -160.971680, 64.225493 ], [ -161.520996, 64.406431 ], [ -160.795898, 64.792848 ], [ -161.411133, 64.783488 ], [ -162.465820, 64.567319 ], [ -162.773438, 64.339908 ], [ -163.564453, 64.567319 ], [ -164.970703, 64.453849 ], [ -166.442871, 64.689713 ], [ -166.860352, 65.090646 ], [ -168.112793, 65.676381 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.487305, 66.583217 ], [ -163.674316, 66.583217 ], [ -163.674316, 66.513260 ], [ -163.806152, 66.080457 ], [ -161.696777, 66.124962 ], [ -162.202148, 66.513260 ], [ -162.509766, 66.739902 ], [ -163.740234, 67.118748 ], [ -163.850098, 67.204032 ], [ -140.998535, 67.204032 ] ] ], [ [ [ -153.237305, 57.973157 ], [ -152.578125, 57.903174 ], [ -152.160645, 57.598335 ], [ -153.017578, 57.124314 ], [ -154.006348, 56.740674 ], [ -154.533691, 56.992883 ], [ -154.687500, 57.468589 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.973157 ] ] ], [ [ [ -166.486816, 60.392148 ], [ -165.695801, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.860352, 59.944007 ], [ -167.475586, 60.217991 ], [ -166.486816, 60.392148 ] ] ], [ [ [ -171.738281, 63.792191 ], [ -171.123047, 63.597448 ], [ -170.507812, 63.694987 ], [ -169.694824, 63.440686 ], [ -168.706055, 63.302813 ], [ -168.771973, 63.194018 ], [ -169.541016, 62.985180 ], [ -170.310059, 63.203926 ], [ -170.683594, 63.381679 ], [ -171.562500, 63.322549 ], [ -171.804199, 63.411198 ], [ -171.738281, 63.792191 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.741211, 32.731841 ], [ -114.829102, 32.528289 ], [ -111.027832, 31.334871 ], [ -108.259277, 31.353637 ], [ -108.259277, 31.765537 ], [ -106.523438, 31.765537 ], [ -106.149902, 31.409912 ], [ -105.644531, 31.090574 ], [ -105.051270, 30.656816 ], [ -104.721680, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.952637, 29.286399 ], [ -103.117676, 28.979312 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.964355, 29.382175 ], [ -100.458984, 28.709861 ], [ -100.129395, 28.110749 ], [ -99.536133, 27.547242 ], [ -99.316406, 26.843677 ], [ -99.030762, 26.372185 ], [ -98.261719, 26.076521 ], [ -97.536621, 25.859224 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.005973 ], [ -97.712402, 24.287027 ], [ -97.778320, 22.938160 ], [ -97.888184, 22.451649 ], [ -97.712402, 21.902278 ], [ -97.404785, 21.412162 ], [ -97.207031, 20.653346 ], [ -96.525879, 19.911384 ], [ -96.306152, 19.331878 ], [ -95.910645, 18.833515 ], [ -94.855957, 18.562947 ], [ -94.438477, 18.145852 ], [ -93.559570, 18.437925 ], [ -92.790527, 18.542117 ], [ -91.428223, 18.895893 ], [ -90.791016, 19.290406 ], [ -90.549316, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -90.000000, 21.125498 ], [ -89.604492, 21.268900 ], [ -88.549805, 21.493964 ], [ -88.242188, 21.493964 ], [ -88.242188, 18.521283 ], [ -88.505859, 18.500447 ], [ -88.857422, 17.895114 ], [ -89.033203, 18.020528 ], [ -89.165039, 17.957832 ], [ -89.165039, 17.811456 ], [ -90.000000, 17.832374 ], [ -91.010742, 17.832374 ], [ -91.010742, 17.266728 ], [ -91.472168, 17.266728 ], [ -91.098633, 16.930705 ], [ -90.725098, 16.699340 ], [ -90.615234, 16.488765 ], [ -90.439453, 16.425548 ], [ -90.483398, 16.088042 ], [ -91.757812, 16.066929 ], [ -92.241211, 15.262989 ], [ -92.087402, 15.072124 ], [ -92.219238, 14.838612 ], [ -92.241211, 14.541050 ], [ -93.361816, 15.623037 ], [ -93.889160, 15.940202 ], [ -94.702148, 16.214675 ], [ -95.251465, 16.130262 ], [ -96.064453, 15.771109 ], [ -96.569824, 15.665354 ], [ -97.272949, 15.919074 ], [ -98.020020, 16.109153 ], [ -98.964844, 16.573023 ], [ -99.711914, 16.720385 ], [ -100.832520, 17.182779 ], [ -101.667480, 17.664960 ], [ -101.931152, 17.936929 ], [ -102.480469, 17.978733 ], [ -103.513184, 18.312811 ], [ -103.930664, 18.750310 ], [ -105.007324, 19.331878 ], [ -105.512695, 19.952696 ], [ -105.732422, 20.447602 ], [ -105.402832, 20.550509 ], [ -105.512695, 20.817741 ], [ -105.270996, 21.084500 ], [ -105.270996, 21.432617 ], [ -105.622559, 21.881890 ], [ -105.710449, 22.289096 ], [ -106.040039, 22.776182 ], [ -106.918945, 23.785345 ], [ -107.929688, 24.567108 ], [ -108.413086, 25.185059 ], [ -109.270020, 25.582085 ], [ -109.445801, 25.839449 ], [ -109.291992, 26.450902 ], [ -109.819336, 26.686730 ], [ -110.412598, 27.176469 ], [ -110.654297, 27.877928 ], [ -111.181641, 27.955591 ], [ -111.774902, 28.478349 ], [ -112.236328, 28.960089 ], [ -112.280273, 29.267233 ], [ -112.829590, 30.031055 ], [ -113.181152, 30.789037 ], [ -113.159180, 31.184609 ], [ -113.884277, 31.578535 ], [ -114.213867, 31.541090 ], [ -114.785156, 31.802893 ], [ -114.938965, 31.409912 ], [ -114.785156, 30.921076 ], [ -114.675293, 30.164126 ], [ -114.345703, 29.764377 ], [ -113.598633, 29.075375 ], [ -113.444824, 28.844674 ], [ -113.291016, 28.767659 ], [ -113.159180, 28.420391 ], [ -112.983398, 28.439714 ], [ -112.763672, 27.780772 ], [ -112.478027, 27.527758 ], [ -112.258301, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.291504, 25.740529 ], [ -110.720215, 24.826625 ], [ -110.676270, 24.307053 ], [ -110.192871, 24.266997 ], [ -109.423828, 23.382598 ], [ -109.445801, 23.200961 ], [ -109.863281, 22.836946 ], [ -110.039062, 22.836946 ], [ -110.302734, 23.443089 ], [ -110.961914, 24.006326 ], [ -111.687012, 24.487149 ], [ -112.192383, 24.746831 ], [ -112.170410, 25.482951 ], [ -112.302246, 26.017298 ], [ -113.466797, 26.784847 ], [ -113.598633, 26.647459 ], [ -113.862305, 26.902477 ], [ -114.477539, 27.156920 ], [ -115.070801, 27.741885 ], [ -114.982910, 27.800210 ], [ -114.587402, 27.741885 ], [ -114.213867, 28.130128 ], [ -114.169922, 28.574874 ], [ -114.938965, 29.286399 ], [ -115.532227, 29.573457 ], [ -116.740723, 31.653381 ], [ -117.136230, 32.546813 ], [ -114.741211, 32.731841 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Belize", "sov_a3": "BLZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belize", "adm0_a3": "BLZ", "geou_dif": 0, "geounit": "Belize", "gu_a3": "BLZ", "su_dif": 0, "subunit": "Belize", "su_a3": "BLZ", "brk_diff": 0, "name": "Belize", "name_long": "Belize", "brk_a3": "BLZ", "brk_name": "Belize", "abbrev": "Belize", "postal": "BZ", "formal_en": "Belize", "name_sort": "Belize", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 307899, "gdp_md_est": 2536, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BZ", "iso_a3": "BLZ", "iso_n3": "084", "un_a3": "084", "wb_a2": "BZ", "wb_a3": "BLZ", "woe_id": -99, "adm0_a3_is": "BLZ", "adm0_a3_us": "BLZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.308105, 18.500447 ], [ -88.308105, 18.354526 ], [ -88.242188, 18.354526 ], [ -88.242188, 17.769612 ], [ -88.286133, 17.664960 ], [ -88.242188, 17.581194 ], [ -88.242188, 17.350638 ], [ -88.308105, 17.140790 ], [ -88.242188, 17.035777 ], [ -88.374023, 16.530898 ], [ -88.571777, 16.277960 ], [ -88.747559, 16.235772 ], [ -88.945312, 15.897942 ], [ -89.230957, 15.897942 ], [ -89.165039, 17.035777 ], [ -89.165039, 17.957832 ], [ -89.033203, 18.020528 ], [ -88.857422, 17.895114 ], [ -88.505859, 18.500447 ], [ -88.308105, 18.500447 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ -174.946289, 67.204032 ], [ -175.034180, 66.591948 ], [ -174.836426, 66.513260 ], [ -174.353027, 66.337505 ], [ -174.396973, 66.513260 ], [ -174.572754, 67.067433 ], [ -171.870117, 66.921449 ], [ -171.013184, 66.513260 ], [ -169.914551, 65.982270 ], [ -170.903320, 65.549367 ], [ -172.551270, 65.440002 ], [ -172.573242, 64.463323 ], [ -172.968750, 64.254141 ], [ -173.913574, 64.282760 ], [ -174.660645, 64.633292 ], [ -176.000977, 64.923542 ], [ -176.220703, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.374023, 65.394298 ], [ -178.923340, 65.748683 ], [ -178.703613, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.450684, 65.412589 ], [ -180.000000, 64.988651 ], [ -180.000000, 67.204032 ], [ -174.946289, 67.204032 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -95.229492, 71.924528 ], [ -93.911133, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.538086, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.503765 ], [ -90.571289, 68.479926 ], [ -90.000000, 68.807986 ], [ -89.230957, 69.263930 ], [ -88.242188, 68.736383 ], [ -88.242188, 68.065098 ], [ -88.330078, 67.875541 ], [ -88.242188, 67.825836 ], [ -88.242188, 65.802776 ], [ -140.998535, 65.802776 ], [ -140.998535, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.997802 ], [ -136.516113, 68.903097 ], [ -135.637207, 69.318320 ], [ -134.428711, 69.634158 ], [ -132.934570, 69.511457 ], [ -131.440430, 69.945375 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.786545 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.488236 ], [ -127.463379, 70.377854 ], [ -125.771484, 69.480672 ], [ -124.431152, 70.162746 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.695312, 69.862328 ], [ -121.486816, 69.801724 ], [ -119.948730, 69.380313 ], [ -117.619629, 69.013546 ], [ -116.235352, 68.847665 ], [ -115.268555, 68.911005 ], [ -113.906250, 68.399180 ], [ -115.312500, 67.908619 ], [ -113.510742, 67.692771 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.896484, 67.382150 ], [ -107.797852, 67.892086 ], [ -108.830566, 68.318146 ], [ -108.171387, 68.656555 ], [ -106.962891, 68.704486 ], [ -106.171875, 68.800041 ], [ -105.358887, 68.568414 ], [ -104.348145, 68.024022 ], [ -103.227539, 68.097907 ], [ -101.469727, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.459473, 67.784335 ], [ -98.569336, 68.407268 ], [ -97.690430, 68.584465 ], [ -96.130371, 68.244968 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.097907 ], [ -94.702148, 68.065098 ], [ -94.240723, 69.076412 ], [ -95.317383, 69.687618 ], [ -96.481934, 70.095529 ], [ -96.394043, 71.194838 ], [ -95.229492, 71.924528 ] ] ], [ [ [ -88.242188, 73.559522 ], [ -88.242188, 70.370474 ], [ -88.703613, 70.414714 ], [ -89.516602, 70.765206 ], [ -88.483887, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.587473 ], [ -90.219727, 72.235514 ], [ -90.000000, 72.481891 ], [ -89.450684, 73.131322 ], [ -88.417969, 73.540855 ], [ -88.242188, 73.559522 ] ] ], [ [ [ -98.239746, 70.147827 ], [ -97.163086, 69.862328 ], [ -96.569824, 69.687618 ], [ -95.668945, 69.107777 ], [ -96.284180, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.958391 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.239746, 70.147827 ] ] ], [ [ [ -115.202637, 73.315246 ], [ -114.169922, 73.124945 ], [ -114.675293, 72.653038 ], [ -112.456055, 72.958315 ], [ -111.071777, 72.455416 ], [ -109.929199, 72.964753 ], [ -109.028320, 72.633374 ], [ -108.193359, 71.656749 ], [ -107.687988, 72.067147 ], [ -108.413086, 73.093024 ], [ -107.534180, 73.239377 ], [ -106.523438, 73.080239 ], [ -105.402832, 72.672681 ], [ -104.787598, 71.705093 ], [ -104.479980, 70.995506 ], [ -102.788086, 70.502908 ], [ -100.986328, 70.028094 ], [ -101.096191, 69.588228 ], [ -102.744141, 69.511457 ], [ -102.106934, 69.123443 ], [ -102.436523, 68.760276 ], [ -104.260254, 68.911005 ], [ -105.974121, 69.185993 ], [ -107.138672, 69.123443 ], [ -109.006348, 68.784144 ], [ -113.334961, 68.536276 ], [ -113.862305, 69.013546 ], [ -115.224609, 69.287257 ], [ -116.125488, 69.170373 ], [ -117.355957, 69.960439 ], [ -116.674805, 70.073075 ], [ -115.136719, 70.244604 ], [ -113.730469, 70.192550 ], [ -112.434082, 70.370474 ], [ -114.367676, 70.605319 ], [ -116.499023, 70.524897 ], [ -117.905273, 70.546862 ], [ -118.432617, 70.909456 ], [ -116.125488, 71.314877 ], [ -117.663574, 71.300793 ], [ -119.421387, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.883301, 72.711903 ], [ -115.202637, 73.315246 ] ] ], [ [ [ -121.552734, 74.449358 ], [ -120.124512, 74.241846 ], [ -117.575684, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.532227, 73.478485 ], [ -116.784668, 73.226700 ], [ -119.223633, 72.521532 ], [ -120.476074, 71.821986 ], [ -120.476074, 71.385142 ], [ -123.112793, 70.902268 ], [ -123.640137, 71.343013 ], [ -125.947266, 71.869909 ], [ -125.507812, 72.295750 ], [ -124.826660, 73.022592 ], [ -123.947754, 73.683439 ], [ -124.936523, 74.295463 ], [ -121.552734, 74.449358 ] ] ], [ [ [ -100.371094, 73.849286 ], [ -99.184570, 73.633981 ], [ -97.382812, 73.763497 ], [ -97.141113, 73.472235 ], [ -98.063965, 72.996909 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.663663 ], [ -98.371582, 71.279648 ], [ -99.338379, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.514931 ], [ -102.480469, 72.835538 ], [ -100.458984, 72.711903 ], [ -101.557617, 73.365639 ], [ -100.371094, 73.849286 ] ] ], [ [ [ -94.504395, 74.140084 ], [ -92.438965, 74.104015 ], [ -90.527344, 73.861506 ], [ -92.021484, 72.971189 ], [ -93.208008, 72.777081 ], [ -94.284668, 72.026510 ], [ -95.427246, 72.067147 ], [ -96.042480, 72.945431 ], [ -96.020508, 73.440953 ], [ -95.515137, 73.867612 ], [ -94.504395, 74.140084 ] ] ], [ [ [ -105.270996, 73.640171 ], [ -104.501953, 73.422156 ], [ -105.380859, 72.764065 ], [ -106.940918, 73.465984 ], [ -106.611328, 73.602996 ], [ -105.270996, 73.640171 ] ] ], [ [ [ -109.599609, 76.795721 ], [ -108.566895, 76.679785 ], [ -108.215332, 76.205967 ], [ -107.819824, 75.850541 ], [ -106.940918, 76.016094 ], [ -105.886230, 75.973553 ], [ -105.710449, 75.480640 ], [ -106.325684, 75.010624 ], [ -109.709473, 74.850672 ], [ -112.236328, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.884277, 74.723827 ], [ -111.796875, 75.163300 ], [ -116.323242, 75.044684 ], [ -117.729492, 75.225065 ], [ -116.367188, 76.200727 ], [ -115.422363, 76.480910 ], [ -112.609863, 76.142958 ], [ -110.830078, 75.552081 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.434604 ], [ -109.599609, 76.795721 ] ] ], [ [ [ -96.745605, 77.162046 ], [ -94.702148, 77.098423 ], [ -93.581543, 76.780655 ], [ -91.625977, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.988770, 76.074381 ], [ -90.000000, 75.888091 ], [ -89.824219, 75.850541 ], [ -89.208984, 75.612262 ], [ -88.242188, 75.579466 ], [ -88.242188, 74.402163 ], [ -89.780273, 74.519889 ], [ -90.000000, 74.549185 ], [ -92.438965, 74.839183 ], [ -92.768555, 75.392239 ], [ -92.900391, 75.882732 ], [ -93.911133, 76.320754 ], [ -95.976562, 76.444907 ], [ -97.141113, 76.755508 ], [ -96.745605, 77.162046 ] ] ], [ [ [ -94.855957, 75.650431 ], [ -93.999023, 75.297735 ], [ -93.625488, 74.982183 ], [ -94.174805, 74.595946 ], [ -95.625000, 74.671638 ], [ -96.833496, 74.930855 ], [ -96.306152, 75.381152 ], [ -94.855957, 75.650431 ] ] ], [ [ [ -98.503418, 76.720223 ], [ -97.756348, 76.258260 ], [ -97.712402, 75.748125 ], [ -98.173828, 75.004940 ], [ -99.821777, 74.902266 ], [ -100.898438, 75.061686 ], [ -100.876465, 75.644984 ], [ -102.502441, 75.568518 ], [ -102.568359, 76.341523 ], [ -101.491699, 76.310358 ], [ -99.997559, 76.649377 ], [ -98.591309, 76.593451 ], [ -98.503418, 76.720223 ] ] ], [ [ [ -116.213379, 77.645947 ], [ -116.345215, 76.880775 ], [ -117.114258, 76.532180 ], [ -118.059082, 76.486046 ], [ -119.904785, 76.058508 ], [ -121.508789, 75.904154 ], [ -122.871094, 76.116622 ], [ -121.179199, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.213379, 77.645947 ] ] ], [ [ [ -88.242188, 80.643463 ], [ -89.384766, 80.858875 ], [ -90.000000, 81.167746 ], [ -90.219727, 81.261711 ], [ -91.384277, 81.553847 ], [ -91.604004, 81.895354 ], [ -90.109863, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.945312, 82.118384 ], [ -88.242188, 82.175425 ], [ -88.242188, 80.643463 ] ] ], [ [ [ -111.269531, 78.157062 ], [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.413467 ], [ -113.554688, 77.734951 ], [ -112.741699, 78.052896 ], [ -111.269531, 78.157062 ] ] ], [ [ [ -96.437988, 77.837219 ], [ -94.438477, 77.823323 ], [ -93.735352, 77.636542 ], [ -93.845215, 77.523122 ], [ -94.306641, 77.494607 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.837219 ] ] ], [ [ [ -98.635254, 78.874289 ], [ -97.338867, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.581055, 78.420193 ], [ -95.844727, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.569336, 78.459822 ], [ -98.635254, 78.874289 ] ] ], [ [ [ -105.512695, 79.302640 ], [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.327204 ], [ -99.689941, 77.911068 ], [ -101.315918, 78.021014 ], [ -102.963867, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.920832 ], [ -105.512695, 79.302640 ] ] ], [ [ [ -92.416992, 81.258372 ], [ -91.142578, 80.725269 ], [ -90.000000, 80.582539 ], [ -89.450684, 80.510360 ], [ -88.242188, 80.371707 ], [ -88.242188, 78.617003 ], [ -89.055176, 78.291586 ], [ -90.000000, 78.251387 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.754945 ], [ -93.955078, 79.117538 ], [ -93.164062, 79.383905 ], [ -94.987793, 79.375806 ], [ -96.086426, 79.706834 ], [ -96.723633, 80.159956 ], [ -96.020508, 80.604086 ], [ -95.339355, 80.907616 ], [ -94.306641, 80.980244 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ] ] ], [ [ [ -111.511230, 78.853070 ], [ -110.983887, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.895996, 78.406954 ], [ -112.543945, 78.411369 ], [ -112.543945, 78.551769 ], [ -111.511230, 78.853070 ] ] ], [ [ [ -88.242188, 77.122930 ], [ -88.242188, 76.439756 ], [ -89.494629, 76.475773 ], [ -89.626465, 76.955375 ], [ -88.242188, 77.122930 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -156.599121, 71.364089 ], [ -155.083008, 71.152294 ], [ -154.357910, 70.699951 ], [ -153.918457, 70.895078 ], [ -152.226562, 70.830248 ], [ -152.270508, 70.605319 ], [ -150.754395, 70.436799 ], [ -149.721680, 70.532222 ], [ -147.634277, 70.214875 ], [ -145.700684, 70.125430 ], [ -144.931641, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.998535, 69.718107 ], [ -140.998535, 65.802776 ], [ -167.673340, 65.802776 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.487305, 66.583217 ], [ -163.674316, 66.583217 ], [ -163.674316, 66.513260 ], [ -163.806152, 66.080457 ], [ -161.696777, 66.124962 ], [ -162.202148, 66.513260 ], [ -162.509766, 66.739902 ], [ -163.740234, 67.118748 ], [ -164.443359, 67.617589 ], [ -165.410156, 68.048677 ], [ -166.772461, 68.366801 ], [ -166.223145, 68.887274 ], [ -164.443359, 68.918910 ], [ -163.168945, 69.372573 ], [ -162.949219, 69.862328 ], [ -161.916504, 70.333533 ], [ -160.949707, 70.451508 ], [ -159.060059, 70.895078 ], [ -158.137207, 70.830248 ], [ -156.599121, 71.364089 ] ] ] } } +, +{ "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": [ [ [ [ -180.000000, 68.966279 ], [ -177.561035, 68.204212 ], [ -174.946289, 67.212544 ], [ -175.034180, 66.591948 ], [ -174.836426, 66.513260 ], [ -174.353027, 66.337505 ], [ -174.396973, 66.513260 ], [ -174.572754, 67.067433 ], [ -171.870117, 66.921449 ], [ -171.013184, 66.513260 ], [ -169.914551, 65.982270 ], [ -170.310059, 65.802776 ], [ -178.879395, 65.802776 ], [ -178.703613, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.824219, 65.802776 ], [ -180.000000, 65.802776 ], [ -180.000000, 68.966279 ] ] ], [ [ [ -179.033203, 71.559692 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.138093 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.837461 ], [ -180.000000, 71.517945 ], [ -179.890137, 71.559692 ], [ -179.033203, 71.559692 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ -62.600098, -65.802776 ], [ -62.600098, -65.856756 ], [ -62.138672, -66.187139 ], [ -62.819824, -66.416748 ], [ -63.764648, -66.513260 ], [ -64.313965, -66.835165 ], [ -64.885254, -67.144365 ], [ -65.522461, -67.575717 ], [ -65.676270, -67.949900 ], [ -65.324707, -68.358699 ], [ -64.797363, -68.672544 ], [ -63.962402, -68.911005 ], [ -63.215332, -69.224997 ], [ -62.797852, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.292480, -70.377854 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.391602, -72.006158 ], [ -61.083984, -72.375758 ], [ -61.018066, -72.770574 ], [ -60.710449, -73.163173 ], [ -60.842285, -73.689611 ], [ -61.391602, -74.104015 ], [ -61.984863, -74.437572 ], [ -63.303223, -74.572582 ], [ -63.764648, -74.925142 ], [ -64.357910, -75.258649 ], [ -65.874023, -75.634085 ], [ -67.214355, -75.791336 ], [ -68.466797, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.620117, -76.634147 ], [ -72.224121, -76.669656 ], [ -73.981934, -76.634147 ], [ -75.563965, -76.710125 ], [ -77.255859, -76.710125 ], [ -76.948242, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.551572 ], [ -73.674316, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.508789, -78.120932 ], [ -77.937012, -78.376004 ], [ -78.024902, -79.179588 ], [ -76.860352, -79.512662 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.257110 ], [ -73.256836, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.026855, -81.000889 ], [ -68.203125, -81.314959 ], [ -65.720215, -81.472780 ], [ -63.259277, -81.748454 ], [ -61.567383, -82.039656 ], [ -59.699707, -82.373317 ], [ -58.732910, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.864308 ], [ -55.371094, -82.569075 ], [ -53.635254, -82.255779 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.726350 ], [ -47.285156, -81.707357 ], [ -44.846191, -81.845640 ], [ -42.824707, -82.079117 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.354684 ], [ -38.254395, -81.334844 ], [ -34.387207, -80.904143 ], [ -32.321777, -80.767668 ], [ -30.102539, -80.589727 ], [ -28.564453, -80.334887 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.631968 ], [ -29.707031, -79.257682 ], [ -31.640625, -79.298560 ], [ -33.684082, -79.452500 ], [ -35.661621, -79.452500 ], [ -35.925293, -79.080140 ], [ -35.793457, -78.336092 ], [ -35.332031, -78.120932 ], [ -33.903809, -77.888038 ], [ -32.233887, -77.650648 ], [ -29.794922, -77.064036 ], [ -28.894043, -76.669656 ], [ -27.531738, -76.496311 ], [ -25.488281, -76.279122 ], [ -23.928223, -76.237366 ], [ -22.478027, -76.100796 ], [ -21.225586, -75.904154 ], [ -20.017090, -75.672197 ], [ -17.534180, -75.123864 ], [ -16.655273, -74.787379 ], [ -15.710449, -74.496413 ], [ -15.424805, -74.104015 ], [ -16.479492, -73.867612 ], [ -16.127930, -73.459729 ], [ -15.468750, -73.144070 ], [ -14.414062, -72.945431 ], [ -13.315430, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.006158 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.258480 ], [ -9.118652, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.691293 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.024106 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.455153 ], [ -3.054199, -71.279648 ], [ -1.801758, -71.166486 ], [ -0.681152, -71.223149 ], [ -0.241699, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.856934, -71.300793 ], [ 1.757812, -71.145195 ], [ 1.757812, -85.200475 ], [ -91.757812, -85.200475 ], [ -91.757812, -73.321553 ], [ -91.428223, -73.397060 ], [ -90.109863, -73.321553 ], [ -90.000000, -73.245712 ], [ -89.230957, -72.554498 ], [ -88.439941, -73.003333 ], [ -87.275391, -73.182256 ], [ -86.022949, -73.086633 ], [ -85.209961, -73.478485 ], [ -83.891602, -73.515935 ], [ -82.683105, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.705566, -73.478485 ], [ -80.310059, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.937012, -73.415885 ], [ -76.926270, -73.633981 ], [ -76.223145, -73.965009 ], [ -74.904785, -73.867612 ], [ -73.872070, -73.652545 ], [ -72.839355, -73.397060 ], [ -71.630859, -73.258376 ], [ -70.224609, -73.144070 ], [ -68.950195, -73.003333 ], [ -67.961426, -72.790088 ], [ -67.390137, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.258301, -71.635993 ], [ -68.488770, -70.103008 ], [ -68.554688, -69.710489 ], [ -68.466797, -69.318320 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.536276 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.869715 ], [ -66.599121, -66.513260 ], [ -66.071777, -66.204876 ], [ -65.390625, -65.892680 ], [ -65.126953, -65.802776 ], [ -62.600098, -65.802776 ] ] ], [ [ [ -70.268555, -68.871439 ], [ -69.741211, -69.248365 ], [ -69.499512, -69.618859 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.466797, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.794547 ], [ -68.796387, -72.168351 ], [ -69.960938, -72.302431 ], [ -71.081543, -72.501722 ], [ -72.399902, -72.481891 ], [ -71.916504, -72.087432 ], [ -74.201660, -72.362448 ], [ -74.970703, -72.067147 ], [ -75.014648, -71.656749 ], [ -73.916016, -71.265539 ], [ -73.234863, -71.145195 ], [ -72.092285, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.740723, -70.303933 ], [ -71.762695, -69.503765 ], [ -71.191406, -69.029279 ], [ -70.268555, -68.871439 ] ] ], [ [ [ -46.669922, -77.827957 ], [ -45.175781, -78.043795 ], [ -43.923340, -78.477392 ], [ -43.505859, -79.084302 ], [ -43.374023, -79.512662 ], [ -43.352051, -80.023849 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.405762, -80.827405 ], [ -50.493164, -81.024916 ], [ -52.866211, -80.966455 ], [ -54.184570, -80.632740 ], [ -54.008789, -80.219856 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.612177 ], [ -50.383301, -79.179588 ], [ -49.921875, -78.810511 ], [ -48.669434, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.827957 ] ] ], [ [ [ -60.622559, -79.628013 ], [ -59.589844, -80.039064 ], [ -60.161133, -80.997452 ], [ -62.270508, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.586134 ], [ -65.742188, -80.546518 ], [ -66.291504, -80.253391 ], [ -64.050293, -80.294224 ], [ -61.896973, -80.390065 ], [ -61.149902, -79.978067 ], [ -60.622559, -79.628013 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.807617, 1.757537 ], [ -67.873535, 1.713612 ], [ -69.829102, 1.735574 ], [ -69.807129, 1.098565 ], [ -69.235840, 0.988720 ], [ -69.257812, 0.615223 ], [ -69.455566, 0.725078 ], [ -70.026855, 0.549308 ], [ -70.026855, -0.175781 ], [ -69.587402, -0.549308 ], [ -69.433594, -1.120534 ], [ -69.455566, -1.537901 ], [ -69.895020, -4.280680 ], [ -70.400391, -3.754634 ], [ -70.708008, -3.732708 ], [ -70.048828, -2.723583 ], [ -70.817871, -2.240640 ], [ -71.433105, -2.328460 ], [ -71.784668, -2.152814 ], [ -72.333984, -2.416276 ], [ -73.081055, -2.306506 ], [ -73.674316, -1.252342 ], [ -74.135742, -0.988720 ], [ -74.443359, -0.527336 ], [ -75.124512, -0.043945 ], [ -75.388184, -0.131836 ], [ -75.651855, 0.000000 ], [ -76.311035, 0.417477 ], [ -76.596680, 0.263671 ], [ -77.431641, 0.417477 ], [ -77.673340, 0.834931 ], [ -77.871094, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.662109, 1.757537 ], [ -67.807617, 1.757537 ] ] ], [ [ [ -67.038574, 1.757537 ], [ -66.884766, 1.274309 ], [ -67.082520, 1.142502 ], [ -67.302246, 1.757537 ], [ -67.038574, 1.757537 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.859863, 1.384143 ], [ -77.871094, 0.812961 ], [ -77.673340, 0.834931 ], [ -77.431641, 0.417477 ], [ -76.596680, 0.263671 ], [ -76.311035, 0.417477 ], [ -75.651855, 0.000000 ], [ -75.388184, -0.131836 ], [ -75.234375, -0.900842 ], [ -75.563965, -1.559866 ], [ -76.640625, -2.591889 ], [ -77.849121, -2.986927 ], [ -78.464355, -3.864255 ], [ -78.640137, -4.543570 ], [ -79.211426, -4.937724 ], [ -79.628906, -4.434044 ], [ -80.046387, -4.324501 ], [ -80.463867, -4.412137 ], [ -80.485840, -4.039618 ], [ -80.200195, -3.820408 ], [ -80.310059, -3.403758 ], [ -79.782715, -2.635789 ], [ -80.002441, -2.218684 ], [ -80.375977, -2.679687 ], [ -80.969238, -2.240640 ], [ -80.771484, -1.955187 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.900842 ], [ -80.419922, -0.263671 ], [ -80.244141, 0.000000 ], [ -80.024414, 0.373533 ], [ -80.112305, 0.769020 ], [ -79.562988, 0.988720 ], [ -78.859863, 1.384143 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.346680, -9.752370 ], [ -65.456543, -10.509417 ], [ -65.324707, -10.876465 ], [ -65.412598, -11.566144 ], [ -64.335938, -12.447305 ], [ -63.215332, -12.618897 ], [ -62.819824, -12.983148 ], [ -62.138672, -13.197165 ], [ -61.721191, -13.475106 ], [ -61.105957, -13.475106 ], [ -60.512695, -13.774066 ], [ -60.468750, -14.349548 ], [ -60.270996, -14.626109 ], [ -60.270996, -15.072124 ], [ -60.556641, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.249512, -16.299051 ], [ -58.403320, -16.867634 ], [ -58.293457, -17.266728 ], [ -57.744141, -17.539297 ], [ -57.502441, -18.166730 ], [ -57.678223, -18.958246 ], [ -57.963867, -19.394068 ], [ -57.854004, -19.952696 ], [ -58.183594, -20.159098 ], [ -58.183594, -19.849394 ], [ -59.128418, -19.352611 ], [ -60.051270, -19.331878 ], [ -61.787109, -19.621892 ], [ -62.270508, -20.509355 ], [ -62.292480, -21.043491 ], [ -62.687988, -22.248429 ], [ -62.863770, -22.024546 ], [ -64.006348, -21.983801 ], [ -64.379883, -22.796439 ], [ -64.973145, -22.065278 ], [ -66.291504, -21.820708 ], [ -67.126465, -22.735657 ], [ -67.829590, -22.857195 ], [ -68.225098, -21.493964 ], [ -68.774414, -20.365228 ], [ -68.444824, -19.394068 ], [ -68.972168, -18.979026 ], [ -69.104004, -18.250220 ], [ -69.609375, -17.560247 ], [ -68.972168, -16.488765 ], [ -69.411621, -15.644197 ], [ -69.169922, -15.305380 ], [ -69.345703, -14.944785 ], [ -68.950195, -14.434680 ], [ -68.884277, -12.897489 ], [ -68.686523, -12.554564 ], [ -69.543457, -10.941192 ], [ -68.796387, -11.027472 ], [ -68.291016, -11.005904 ], [ -68.049316, -10.703792 ], [ -67.192383, -10.293301 ], [ -66.665039, -9.925566 ], [ -65.346680, -9.752370 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "Falkland Islands", "adm0_a3": "FLK", "geou_dif": 0, "geounit": "Falkland Islands", "gu_a3": "FLK", "su_dif": 0, "subunit": "Falkland Islands", "su_a3": "FLK", "brk_diff": 1, "name": "Falkland Is.", "name_long": "Falkland Islands", "brk_a3": "B12", "brk_name": "Falkland Is.", "abbrev": "Flk. Is.", "postal": "FK", "formal_en": "Falkland Islands", "note_adm0": "U.K.", "note_brk": "Admin. by U.K.; Claimed by Argentina", "name_sort": "Falkland Islands", "name_alt": "Islas Malvinas", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 3140, "gdp_md_est": 105.1, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FK", "iso_a3": "FLK", "iso_n3": "238", "un_a3": "238", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "FLK", "adm0_a3_us": "FLK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 12, "long_len": 16, "abbrev_len": 8, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.557129, -51.096623 ], [ -57.766113, -51.549751 ], [ -58.051758, -51.890054 ], [ -59.414062, -52.187405 ], [ -59.853516, -51.849353 ], [ -60.710449, -52.295042 ], [ -61.215820, -51.849353 ], [ -60.007324, -51.248163 ], [ -59.150391, -51.495065 ], [ -58.557129, -51.096623 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ -57.832031, -63.263299 ], [ -57.238770, -63.519175 ], [ -57.612305, -63.850354 ], [ -58.623047, -64.148952 ], [ -59.062500, -64.358931 ], [ -59.809570, -64.206377 ], [ -60.622559, -64.301822 ], [ -62.028809, -64.792848 ], [ -62.512207, -65.090646 ], [ -62.666016, -65.476508 ], [ -62.600098, -65.856756 ], [ -62.138672, -66.187139 ], [ -62.819824, -66.416748 ], [ -63.764648, -66.513260 ], [ -64.973145, -67.204032 ], [ -67.609863, -67.204032 ], [ -67.258301, -66.869715 ], [ -66.599121, -66.513260 ], [ -66.071777, -66.204876 ], [ -65.390625, -65.892680 ], [ -64.577637, -65.594800 ], [ -64.182129, -65.164579 ], [ -63.632812, -64.895589 ], [ -63.017578, -64.633292 ], [ -62.050781, -64.576754 ], [ -61.435547, -64.263684 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.947025 ], [ -59.172363, -63.694987 ], [ -58.601074, -63.381679 ], [ -57.832031, -63.263299 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -91.757812, 57.171992 ], [ -90.900879, 57.290918 ], [ -90.000000, 57.076575 ], [ -89.055176, 56.860986 ], [ -88.044434, 56.474628 ], [ -87.341309, 56.010666 ], [ -86.088867, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.254077 ], [ -82.287598, 55.153766 ], [ -82.441406, 54.290882 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.220647 ], [ -79.145508, 51.536086 ], [ -78.618164, 52.562995 ], [ -79.145508, 54.149567 ], [ -79.848633, 54.673831 ], [ -78.244629, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.552734, 56.535258 ], [ -76.640625, 57.207710 ], [ -77.321777, 58.054632 ], [ -78.530273, 58.813742 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.329208 ], [ -77.431641, 62.552857 ], [ -75.717773, 62.288365 ], [ -74.685059, 62.186014 ], [ -73.850098, 62.451406 ], [ -72.927246, 62.114161 ], [ -71.696777, 61.533170 ], [ -71.389160, 61.143235 ], [ -69.609375, 61.068917 ], [ -69.631348, 60.228903 ], [ -69.301758, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.258789, 59.877912 ], [ -64.599609, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.413574, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.216490 ], [ -57.985840, 54.952386 ], [ -57.348633, 54.635697 ], [ -56.953125, 53.787672 ], [ -56.162109, 53.657661 ], [ -55.766602, 53.278353 ], [ -55.700684, 52.146973 ], [ -57.128906, 51.426614 ], [ -58.776855, 51.069017 ], [ -60.051270, 50.247205 ], [ -61.743164, 50.092393 ], [ -63.874512, 50.303376 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.525208 ], [ -68.532715, 49.081062 ], [ -69.960938, 47.754098 ], [ -71.125488, 46.830134 ], [ -70.268555, 46.995241 ], [ -68.664551, 48.312428 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.182129, 48.748945 ], [ -65.126953, 48.078079 ], [ -64.819336, 46.995241 ], [ -64.489746, 46.240652 ], [ -63.193359, 45.752193 ], [ -61.523438, 45.890008 ], [ -60.534668, 47.010226 ], [ -60.468750, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.274886 ], [ -63.259277, 44.684277 ], [ -64.248047, 44.276671 ], [ -65.368652, 43.548548 ], [ -66.137695, 43.628123 ], [ -66.181641, 44.465151 ], [ -64.445801, 45.305803 ], [ -66.027832, 45.259422 ], [ -67.148438, 45.151053 ], [ -67.807617, 45.706179 ], [ -67.807617, 47.070122 ], [ -68.247070, 47.368594 ], [ -68.906250, 47.189712 ], [ -69.257812, 47.457809 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.103516, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.520996, 45.011419 ], [ -74.882812, 45.011419 ], [ -75.322266, 44.824708 ], [ -76.508789, 44.024422 ], [ -76.838379, 43.644026 ], [ -78.728027, 43.628123 ], [ -79.189453, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.875964 ], [ -80.266113, 42.374778 ], [ -81.298828, 42.212245 ], [ -82.441406, 41.689322 ], [ -82.705078, 41.689322 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.983994 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.439674 ], [ -82.441406, 42.988576 ], [ -82.155762, 43.580391 ], [ -82.551270, 45.352145 ], [ -83.605957, 45.828799 ], [ -83.474121, 45.996962 ], [ -83.627930, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.111328, 46.286224 ], [ -84.155273, 46.513516 ], [ -84.353027, 46.422713 ], [ -84.616699, 46.452997 ], [ -84.550781, 46.543750 ], [ -84.792480, 46.649436 ], [ -84.880371, 46.905246 ], [ -88.395996, 48.312428 ], [ -89.274902, 48.034019 ], [ -89.604492, 48.019324 ], [ -90.000000, 48.107431 ], [ -90.834961, 48.283193 ], [ -91.647949, 48.151428 ], [ -91.757812, 48.180739 ], [ -91.757812, 57.171992 ] ] ], [ [ [ -55.876465, 51.645294 ], [ -55.415039, 51.590723 ], [ -55.612793, 51.330612 ], [ -56.140137, 50.694718 ], [ -56.799316, 49.823809 ], [ -56.162109, 50.162824 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.596470 ], [ -54.953613, 49.325122 ], [ -54.492188, 49.567978 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.531157 ], [ -53.107910, 48.690960 ], [ -52.976074, 48.166085 ], [ -52.668457, 47.546872 ], [ -53.085938, 46.664517 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.815099 ], [ -53.964844, 47.635784 ], [ -54.250488, 47.754098 ], [ -55.415039, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.305176, 47.398349 ], [ -56.271973, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.282227, 47.606163 ], [ -59.436035, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.531157 ], [ -58.403320, 49.138597 ], [ -57.370605, 50.722547 ], [ -56.755371, 51.289406 ], [ -55.876465, 51.645294 ] ] ], [ [ [ -64.028320, 47.040182 ], [ -63.676758, 46.558860 ], [ -62.951660, 46.422713 ], [ -62.028809, 46.452997 ], [ -62.512207, 46.042736 ], [ -62.885742, 45.981695 ], [ -64.160156, 46.407564 ], [ -64.401855, 46.739861 ], [ -64.028320, 47.040182 ] ] ], [ [ [ -64.182129, 49.965356 ], [ -62.863770, 49.710273 ], [ -61.853027, 49.296472 ], [ -61.809082, 49.109838 ], [ -62.314453, 49.095452 ], [ -63.610840, 49.410973 ], [ -64.533691, 49.880478 ], [ -64.182129, 49.965356 ] ] ], [ [ [ -63.852539, 67.204032 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.869715 ], [ -62.028809, 66.513260 ], [ -62.182617, 66.160511 ], [ -63.918457, 65.007224 ], [ -65.148926, 65.430867 ], [ -66.730957, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.159180, 65.694476 ], [ -67.104492, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.687500, 63.401361 ], [ -65.017090, 62.684228 ], [ -66.291504, 62.945231 ], [ -68.796387, 63.753350 ], [ -67.390137, 62.885205 ], [ -66.335449, 62.288365 ], [ -66.181641, 61.938950 ], [ -68.884277, 62.339411 ], [ -71.037598, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.685248 ], [ -74.838867, 64.680318 ], [ -74.838867, 64.396938 ], [ -77.717285, 64.235045 ], [ -78.574219, 64.576754 ], [ -77.915039, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.311523, 65.811781 ], [ -73.959961, 66.311035 ], [ -73.696289, 66.513260 ], [ -72.773438, 67.204032 ], [ -63.852539, 67.204032 ] ] ], [ [ [ -79.936523, 62.390369 ], [ -79.541016, 62.369996 ], [ -79.277344, 62.165502 ], [ -79.672852, 61.637726 ], [ -80.112305, 61.721118 ], [ -80.375977, 62.021528 ], [ -80.332031, 62.093600 ], [ -79.936523, 62.390369 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.892090, 62.905227 ], [ -81.914062, 62.714462 ], [ -83.078613, 62.165502 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.461567 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.484863, 65.375994 ], [ -83.891602, 65.118395 ], [ -82.792969, 64.774125 ], [ -81.650391, 64.463323 ], [ -81.562500, 63.985600 ], [ -80.837402, 64.062591 ], [ -80.112305, 63.733909 ], [ -80.991211, 63.421031 ], [ -82.551270, 63.656011 ], [ -83.122559, 64.110602 ], [ -84.111328, 63.577900 ], [ -85.539551, 63.054959 ], [ -85.869141, 63.646259 ], [ -87.231445, 63.548552 ], [ -86.374512, 64.043363 ], [ -86.242676, 64.830254 ], [ -85.891113, 65.739656 ] ] ], [ [ [ -75.761719, 67.204032 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.058105, 67.204032 ], [ -75.761719, 67.204032 ] ] ], [ [ [ -91.757812, 62.855146 ], [ -91.757812, 67.204032 ], [ -81.364746, 67.204032 ], [ -81.386719, 67.118748 ], [ -83.078613, 66.513260 ], [ -83.364258, 66.416748 ], [ -84.748535, 66.258011 ], [ -85.627441, 66.513260 ], [ -85.781250, 66.565747 ], [ -85.803223, 66.513260 ], [ -86.088867, 66.062633 ], [ -87.033691, 65.219894 ], [ -87.341309, 64.783488 ], [ -88.483887, 64.101007 ], [ -89.934082, 64.033744 ], [ -90.000000, 63.995235 ], [ -90.725098, 63.616982 ], [ -90.791016, 62.965212 ], [ -91.757812, 62.855146 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.395996, 48.312428 ], [ -84.880371, 46.905246 ], [ -84.792480, 46.649436 ], [ -84.550781, 46.543750 ], [ -84.616699, 46.452997 ], [ -84.353027, 46.422713 ], [ -84.155273, 46.513516 ], [ -84.111328, 46.286224 ], [ -83.891602, 46.118942 ], [ -83.627930, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.605957, 45.828799 ], [ -82.551270, 45.352145 ], [ -82.155762, 43.580391 ], [ -82.441406, 42.988576 ], [ -82.902832, 42.439674 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.983994 ], [ -83.034668, 41.836828 ], [ -82.705078, 41.689322 ], [ -82.441406, 41.689322 ], [ -81.298828, 42.212245 ], [ -80.266113, 42.374778 ], [ -78.947754, 42.875964 ], [ -78.925781, 42.972502 ], [ -79.013672, 43.277205 ], [ -79.189453, 43.468868 ], [ -78.728027, 43.628123 ], [ -76.838379, 43.644026 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.824708 ], [ -74.882812, 45.011419 ], [ -71.520996, 45.011419 ], [ -71.411133, 45.259422 ], [ -71.103516, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.694667 ], [ -69.257812, 47.457809 ], [ -68.906250, 47.189712 ], [ -68.247070, 47.368594 ], [ -67.807617, 47.070122 ], [ -67.807617, 45.706179 ], [ -67.148438, 45.151053 ], [ -66.972656, 44.824708 ], [ -68.049316, 44.339565 ], [ -69.060059, 43.992815 ], [ -70.136719, 43.691708 ], [ -70.817871, 42.875964 ], [ -70.839844, 42.342305 ], [ -70.510254, 41.820455 ], [ -70.092773, 41.787697 ], [ -70.202637, 42.147114 ], [ -69.895020, 41.934977 ], [ -69.982910, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.508577 ], [ -71.872559, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.718262, 40.946714 ], [ -72.246094, 41.129021 ], [ -71.960449, 40.930115 ], [ -73.366699, 40.630630 ], [ -74.003906, 40.630630 ], [ -73.959961, 40.763901 ], [ -74.267578, 40.480381 ], [ -73.981934, 40.430224 ], [ -74.179688, 39.724089 ], [ -74.926758, 38.942321 ], [ -74.992676, 39.198205 ], [ -75.212402, 39.249271 ], [ -75.541992, 39.504041 ], [ -75.322266, 38.976492 ], [ -75.080566, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.388184, 38.030786 ], [ -75.959473, 37.230328 ], [ -76.047363, 37.265310 ], [ -75.739746, 37.944198 ], [ -76.245117, 38.324420 ], [ -76.354980, 39.164141 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.099983 ], [ -76.992188, 38.255436 ], [ -76.311035, 37.926868 ], [ -76.267090, 36.967449 ], [ -75.981445, 36.914764 ], [ -75.871582, 36.562600 ], [ -75.739746, 35.567980 ], [ -76.376953, 34.813803 ], [ -77.409668, 34.524661 ], [ -78.068848, 33.943360 ], [ -78.574219, 33.870416 ], [ -79.079590, 33.504759 ], [ -79.211426, 33.174342 ], [ -80.310059, 32.509762 ], [ -80.881348, 32.045333 ], [ -81.342773, 31.447410 ], [ -81.496582, 30.732393 ], [ -81.320801, 30.050077 ], [ -80.991211, 29.190533 ], [ -80.551758, 28.478349 ], [ -80.551758, 28.052591 ], [ -80.068359, 26.882880 ], [ -80.134277, 25.819672 ], [ -80.397949, 25.224820 ], [ -80.683594, 25.085599 ], [ -81.188965, 25.204941 ], [ -81.342773, 25.641526 ], [ -81.716309, 25.878994 ], [ -82.727051, 27.508271 ], [ -82.858887, 27.897349 ], [ -82.661133, 28.555576 ], [ -82.946777, 29.113775 ], [ -83.715820, 29.954935 ], [ -84.111328, 30.107118 ], [ -85.122070, 29.649869 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.164126 ], [ -86.418457, 30.410782 ], [ -87.539062, 30.278044 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.428711, 29.897806 ], [ -89.450684, 29.496988 ], [ -89.230957, 29.305561 ], [ -89.428711, 29.171349 ], [ -89.780273, 29.324720 ], [ -90.000000, 29.209713 ], [ -90.175781, 29.132970 ], [ -90.900879, 29.152161 ], [ -91.647949, 29.688053 ], [ -91.757812, 29.668963 ], [ -91.757812, 48.180739 ], [ -91.647949, 48.151428 ], [ -90.834961, 48.283193 ], [ -90.000000, 48.107431 ], [ -89.604492, 48.019324 ], [ -89.274902, 48.034019 ], [ -88.395996, 48.312428 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.055664, 21.555284 ], [ -86.813965, 21.350781 ], [ -86.857910, 20.858812 ], [ -87.385254, 20.262197 ], [ -87.626953, 19.663280 ], [ -87.451172, 19.476950 ], [ -87.846680, 18.271086 ], [ -88.110352, 18.521283 ], [ -88.505859, 18.500447 ], [ -88.857422, 17.895114 ], [ -89.033203, 18.020528 ], [ -89.165039, 17.957832 ], [ -89.165039, 17.811456 ], [ -90.000000, 17.832374 ], [ -91.010742, 17.832374 ], [ -91.010742, 17.266728 ], [ -91.472168, 17.266728 ], [ -91.098633, 16.930705 ], [ -90.725098, 16.699340 ], [ -90.615234, 16.488765 ], [ -90.439453, 16.425548 ], [ -90.483398, 16.088042 ], [ -91.757812, 16.066929 ], [ -91.757812, 18.791918 ], [ -91.428223, 18.895893 ], [ -90.791016, 19.290406 ], [ -90.549316, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -90.000000, 21.125498 ], [ -89.604492, 21.268900 ], [ -88.549805, 21.493964 ], [ -87.670898, 21.473518 ], [ -87.055664, 21.555284 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.530273, 67.204032 ], [ -34.211426, 66.687784 ], [ -34.738770, 66.513260 ], [ -36.364746, 65.982270 ], [ -37.045898, 65.946472 ], [ -38.386230, 65.694476 ], [ -39.814453, 65.467386 ], [ -40.671387, 64.848937 ], [ -40.693359, 64.139369 ], [ -41.198730, 63.489767 ], [ -42.824707, 62.684228 ], [ -42.429199, 61.907926 ], [ -43.395996, 60.108670 ], [ -44.802246, 60.042904 ], [ -46.274414, 60.855613 ], [ -48.273926, 60.866312 ], [ -49.240723, 61.407236 ], [ -49.921875, 62.390369 ], [ -51.635742, 63.636504 ], [ -52.141113, 64.282760 ], [ -52.294922, 65.183030 ], [ -53.679199, 66.107170 ], [ -53.481445, 66.513260 ], [ -53.305664, 66.843807 ], [ -53.986816, 67.195518 ], [ -53.964844, 67.204032 ], [ -33.530273, 67.204032 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "The Bahamas", "sov_a3": "BHS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "The Bahamas", "adm0_a3": "BHS", "geou_dif": 0, "geounit": "The Bahamas", "gu_a3": "BHS", "su_dif": 0, "subunit": "The Bahamas", "su_a3": "BHS", "brk_diff": 0, "name": "Bahamas", "name_long": "Bahamas", "brk_a3": "BHS", "brk_name": "Bahamas", "abbrev": "Bhs.", "postal": "BS", "formal_en": "Commonwealth of the Bahamas", "name_sort": "Bahamas, The", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 309156, "gdp_md_est": 9093, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BS", "iso_a3": "BHS", "iso_n3": "044", "un_a3": "044", "wb_a2": "BS", "wb_a3": "BHS", "woe_id": -99, "adm0_a3_is": "BHS", "adm0_a3_us": "BHS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.200684, 25.224820 ], [ -77.893066, 25.185059 ], [ -77.541504, 24.347097 ], [ -77.541504, 23.765237 ], [ -77.783203, 23.725012 ], [ -78.046875, 24.287027 ], [ -78.420410, 24.587090 ], [ -78.200684, 25.224820 ] ] ], [ [ [ -77.805176, 27.059126 ], [ -77.014160, 26.608174 ], [ -77.189941, 25.898762 ], [ -77.365723, 26.017298 ], [ -77.343750, 26.549223 ], [ -77.805176, 26.941660 ], [ -77.805176, 27.059126 ] ] ], [ [ [ -78.530273, 26.882880 ], [ -77.871094, 26.843677 ], [ -77.827148, 26.588527 ], [ -78.925781, 26.431228 ], [ -78.991699, 26.804461 ], [ -78.530273, 26.882880 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "Puerto Rico", "adm0_a3": "PRI", "geou_dif": 0, "geounit": "Puerto Rico", "gu_a3": "PRI", "su_dif": 0, "subunit": "Puerto Rico", "su_a3": "PRI", "brk_diff": 0, "name": "Puerto Rico", "name_long": "Puerto Rico", "brk_a3": "PRI", "brk_name": "Puerto Rico", "abbrev": "P.R.", "postal": "PR", "formal_en": "Commonwealth of Puerto Rico", "note_adm0": "Commonwealth of U.S.A.", "name_sort": "Puerto Rico", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 3971020, "gdp_md_est": 70230, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "PR", "iso_a3": "PRI", "iso_n3": "630", "un_a3": "630", "wb_a2": "PR", "wb_a3": "PRI", "woe_id": -99, "adm0_a3_is": "PRI", "adm0_a3_us": "PRI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.291504, 18.521283 ], [ -65.786133, 18.437925 ], [ -65.610352, 18.229351 ], [ -65.852051, 17.978733 ], [ -66.621094, 17.999632 ], [ -67.192383, 17.957832 ], [ -67.258301, 18.375379 ], [ -67.104492, 18.521283 ], [ -66.291504, 18.521283 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iceland", "sov_a3": "ISL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iceland", "adm0_a3": "ISL", "geou_dif": 0, "geounit": "Iceland", "gu_a3": "ISL", "su_dif": 0, "subunit": "Iceland", "su_a3": "ISL", "brk_diff": 0, "name": "Iceland", "name_long": "Iceland", "brk_a3": "ISL", "brk_name": "Iceland", "abbrev": "Iceland", "postal": "IS", "formal_en": "Republic of Iceland", "name_sort": "Iceland", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 306694, "gdp_md_est": 12710, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IS", "iso_a3": "ISL", "iso_n3": "352", "un_a3": "352", "wb_a2": "IS", "wb_a3": "ISL", "woe_id": -99, "adm0_a3_is": "ISL", "adm0_a3_us": "ISL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.171875, 66.530768 ], [ -15.864258, 66.513260 ], [ -14.523926, 66.460663 ], [ -14.743652, 65.811781 ], [ -13.623047, 65.127638 ], [ -14.919434, 64.368438 ], [ -17.797852, 63.685248 ], [ -18.676758, 63.499573 ], [ -22.763672, 63.966319 ], [ -21.796875, 64.406431 ], [ -23.972168, 64.895589 ], [ -22.192383, 65.090646 ], [ -22.236328, 65.385147 ], [ -24.345703, 65.612952 ], [ -23.664551, 66.266856 ], [ -22.148438, 66.416748 ], [ -20.588379, 65.739656 ], [ -19.072266, 66.284537 ], [ -17.819824, 66.000150 ], [ -16.215820, 66.513260 ], [ -16.171875, 66.530768 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -53.964844, 5.769036 ], [ -52.888184, 5.419148 ], [ -51.833496, 4.587376 ], [ -51.679688, 4.171115 ], [ -52.250977, 3.250209 ], [ -52.558594, 2.526037 ], [ -52.954102, 2.130856 ], [ -53.437500, 2.064982 ], [ -53.569336, 2.350415 ], [ -53.789062, 2.394322 ], [ -54.096680, 2.108899 ], [ -54.536133, 2.328460 ], [ -54.272461, 2.745531 ], [ -54.184570, 3.206333 ], [ -54.030762, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.492188, 4.915833 ], [ -53.964844, 5.769036 ] ] ], [ [ [ 1.757812, 50.986099 ], [ 1.757812, 42.374778 ], [ 0.681152, 42.811522 ], [ 0.329590, 42.585444 ], [ -1.516113, 43.036776 ], [ -1.911621, 43.436966 ], [ -1.384277, 44.024422 ], [ -1.208496, 46.027482 ], [ -2.241211, 47.070122 ], [ -2.966309, 47.576526 ], [ -4.504395, 47.960502 ], [ -4.614258, 48.690960 ], [ -3.295898, 48.908059 ], [ -1.625977, 48.647428 ], [ -1.933594, 49.781264 ], [ -1.010742, 49.353756 ], [ 0.000000, 49.681847 ], [ 1.318359, 50.134664 ], [ 1.625977, 50.958427 ], [ 1.757812, 50.986099 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ivory Coast", "sov_a3": "CIV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ivory Coast", "adm0_a3": "CIV", "geou_dif": 0, "geounit": "Ivory Coast", "gu_a3": "CIV", "su_dif": 0, "subunit": "Ivory Coast", "su_a3": "CIV", "brk_diff": 0, "name": "Côte d'Ivoire", "name_long": "Côte d'Ivoire", "brk_a3": "CIV", "brk_name": "Côte d'Ivoire", "abbrev": "I.C.", "postal": "CI", "formal_en": "Republic of Ivory Coast", "formal_fr": "Republic of Cote D'Ivoire", "name_sort": "Côte d'Ivoire", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 20617068, "gdp_md_est": 33850, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CI", "iso_a3": "CIV", "iso_n3": "384", "un_a3": "384", "wb_a2": "CI", "wb_a3": "CIV", "woe_id": -99, "adm0_a3_is": "CIV", "adm0_a3_us": "CIV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 13, "long_len": 13, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.218262, 10.531020 ], [ -6.064453, 10.098670 ], [ -5.822754, 10.228437 ], [ -5.405273, 10.379765 ], [ -4.965820, 10.163560 ], [ -4.790039, 9.838979 ], [ -4.350586, 9.622414 ], [ -3.999023, 9.882275 ], [ -3.515625, 9.903921 ], [ -2.834473, 9.644077 ], [ -2.570801, 8.233237 ], [ -2.988281, 7.384258 ], [ -3.251953, 6.271618 ], [ -2.812500, 5.397273 ], [ -2.856445, 5.003394 ], [ -3.317871, 5.003394 ], [ -4.020996, 5.200365 ], [ -4.658203, 5.178482 ], [ -5.844727, 5.003394 ], [ -7.536621, 4.346411 ], [ -7.712402, 4.368320 ], [ -7.646484, 5.200365 ], [ -7.558594, 5.331644 ], [ -7.580566, 5.725311 ], [ -7.998047, 6.140555 ], [ -8.327637, 6.206090 ], [ -8.613281, 6.468151 ], [ -8.393555, 6.926427 ], [ -8.503418, 7.406048 ], [ -8.459473, 7.689217 ], [ -8.283691, 7.689217 ], [ -8.239746, 8.124491 ], [ -8.305664, 8.320212 ], [ -8.217773, 8.472372 ], [ -7.844238, 8.581021 ], [ -8.085938, 9.384032 ], [ -8.327637, 9.795678 ], [ -8.239746, 10.141932 ], [ -7.910156, 10.314919 ], [ -7.624512, 10.163560 ], [ -6.855469, 10.141932 ], [ -6.679688, 10.444598 ], [ -6.503906, 10.422988 ], [ -6.218262, 10.531020 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.859863, 1.384143 ], [ -77.871094, 0.812961 ], [ -77.673340, 0.834931 ], [ -77.431641, 0.417477 ], [ -76.596680, 0.263671 ], [ -76.311035, 0.417477 ], [ -75.651855, 0.000000 ], [ -75.388184, -0.131836 ], [ -75.234375, -0.900842 ], [ -75.563965, -1.559866 ], [ -75.761719, -1.757537 ], [ -80.815430, -1.757537 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.900842 ], [ -80.419922, -0.263671 ], [ -80.244141, 0.000000 ], [ -80.024414, 0.373533 ], [ -80.112305, 0.769020 ], [ -79.562988, 0.988720 ], [ -78.859863, 1.384143 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ -60.227051, 5.266008 ], [ -59.985352, 5.025283 ], [ -60.117188, 4.587376 ], [ -59.787598, 4.434044 ], [ -59.545898, 3.973861 ], [ -59.831543, 3.623071 ], [ -59.985352, 2.767478 ], [ -59.721680, 2.262595 ], [ -59.655762, 1.801461 ], [ -59.040527, 1.318243 ], [ -58.557129, 1.274309 ], [ -58.447266, 1.472006 ], [ -58.117676, 1.515936 ], [ -57.678223, 1.691649 ], [ -57.348633, 1.955187 ], [ -56.799316, 1.867345 ], [ -56.557617, 1.911267 ], [ -56.008301, 1.823423 ], [ -55.920410, 2.043024 ], [ -56.074219, 2.240640 ], [ -55.986328, 2.526037 ], [ -55.590820, 2.438229 ], [ -55.107422, 2.526037 ], [ -54.536133, 2.328460 ], [ -54.096680, 2.108899 ], [ -53.789062, 2.394322 ], [ -53.569336, 2.350415 ], [ -53.437500, 2.064982 ], [ -52.954102, 2.130856 ], [ -52.558594, 2.526037 ], [ -52.250977, 3.250209 ], [ -51.679688, 4.171115 ], [ -51.328125, 4.214943 ], [ -51.086426, 3.666928 ], [ -50.515137, 1.911267 ], [ -49.987793, 1.757537 ], [ -49.965820, 1.054628 ], [ -50.712891, 0.241699 ], [ -50.405273, -0.065918 ], [ -48.625488, -0.219726 ], [ -48.603516, -1.230374 ], [ -47.834473, -0.571280 ], [ -46.582031, -0.922812 ], [ -44.912109, -1.537901 ], [ -44.736328, -1.757537 ], [ -69.477539, -1.757537 ], [ -69.433594, -1.120534 ], [ -69.587402, -0.549308 ], [ -70.026855, -0.175781 ], [ -70.026855, 0.549308 ], [ -69.455566, 0.725078 ], [ -69.257812, 0.615223 ], [ -69.235840, 0.988720 ], [ -69.807129, 1.098565 ], [ -69.829102, 1.735574 ], [ -67.873535, 1.713612 ], [ -67.543945, 2.043024 ], [ -67.280273, 1.735574 ], [ -67.082520, 1.142502 ], [ -66.884766, 1.274309 ], [ -66.335449, 0.725078 ], [ -65.566406, 0.790990 ], [ -65.368652, 1.098565 ], [ -64.204102, 1.493971 ], [ -64.094238, 1.933227 ], [ -63.369141, 2.218684 ], [ -63.435059, 2.416276 ], [ -64.270020, 2.504085 ], [ -64.423828, 3.140516 ], [ -64.379883, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.643555, 4.149201 ], [ -63.896484, 4.039618 ], [ -63.105469, 3.776559 ], [ -62.819824, 4.017699 ], [ -62.094727, 4.171115 ], [ -60.974121, 4.543570 ], [ -60.622559, 4.937724 ], [ -60.754395, 5.200365 ], [ -60.227051, 5.266008 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.757812, 36.650793 ], [ 1.757812, 20.673905 ], [ 0.000000, 21.800308 ], [ -4.943848, 24.986058 ], [ -8.701172, 27.410786 ], [ -8.679199, 28.844674 ], [ -7.075195, 29.592565 ], [ -6.064453, 29.745302 ], [ -5.251465, 30.012031 ], [ -4.877930, 30.505484 ], [ -3.691406, 30.902225 ], [ -3.669434, 31.653381 ], [ -3.076172, 31.728167 ], [ -2.636719, 32.101190 ], [ -1.318359, 32.268555 ], [ -1.142578, 32.657876 ], [ -1.406250, 32.879587 ], [ -1.735840, 33.925130 ], [ -1.801758, 34.542762 ], [ -2.175293, 35.173808 ], [ -1.230469, 35.728677 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.483398, 36.315125 ], [ 1.450195, 36.615528 ], [ 1.757812, 36.650793 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -91.757812, 69.634158 ], [ -90.549316, 69.503765 ], [ -90.571289, 68.479926 ], [ -90.000000, 68.807986 ], [ -89.230957, 69.263930 ], [ -88.022461, 68.616534 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.925140 ], [ -85.583496, 68.792094 ], [ -85.539551, 69.885010 ], [ -84.111328, 69.809309 ], [ -82.639160, 69.664723 ], [ -81.298828, 69.162558 ], [ -81.232910, 68.672544 ], [ -81.979980, 68.138852 ], [ -81.276855, 67.600849 ], [ -81.386719, 67.118748 ], [ -83.078613, 66.513260 ], [ -83.364258, 66.416748 ], [ -84.748535, 66.258011 ], [ -85.627441, 66.513260 ], [ -85.781250, 66.565747 ], [ -85.803223, 66.513260 ], [ -86.088867, 66.062633 ], [ -86.374512, 65.802776 ], [ -91.757812, 65.802776 ], [ -91.757812, 69.634158 ] ] ], [ [ [ -85.847168, 73.806447 ], [ -86.572266, 73.163173 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.331543, 73.751205 ], [ -80.617676, 72.718432 ], [ -80.749512, 72.067147 ], [ -78.771973, 72.355789 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.248917 ], [ -74.245605, 71.773941 ], [ -74.113770, 71.335983 ], [ -72.246094, 71.559692 ], [ -71.213379, 70.923824 ], [ -68.796387, 70.532222 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -66.467285, 68.073305 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.869715 ], [ -62.028809, 66.513260 ], [ -62.182617, 66.160511 ], [ -62.731934, 65.802776 ], [ -65.764160, 65.802776 ], [ -66.730957, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.137207, 65.802776 ], [ -74.289551, 65.802776 ], [ -73.959961, 66.311035 ], [ -73.696289, 66.513260 ], [ -72.663574, 67.289015 ], [ -72.927246, 67.734435 ], [ -73.322754, 68.073305 ], [ -74.860840, 68.560384 ], [ -76.882324, 68.895187 ], [ -76.245117, 69.154740 ], [ -77.299805, 69.771356 ], [ -78.178711, 69.832048 ], [ -78.969727, 70.170201 ], [ -79.497070, 69.877452 ], [ -81.320801, 69.748551 ], [ -84.946289, 69.967967 ], [ -87.077637, 70.266872 ], [ -88.703613, 70.414714 ], [ -89.516602, 70.765206 ], [ -88.483887, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.587473 ], [ -90.219727, 72.235514 ], [ -90.000000, 72.481891 ], [ -89.450684, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.847168, 73.806447 ] ] ], [ [ [ -75.915527, 68.293779 ], [ -75.124512, 68.015798 ], [ -75.124512, 67.584098 ], [ -75.234375, 67.449657 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.592475 ], [ -76.816406, 68.155209 ], [ -75.915527, 68.293779 ] ] ], [ [ [ -80.354004, 73.763497 ], [ -78.068848, 73.652545 ], [ -76.354980, 73.105800 ], [ -76.267090, 72.829052 ], [ -78.398438, 72.880871 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.763497 ] ] ], [ [ [ -91.757812, 74.019543 ], [ -90.527344, 73.861506 ], [ -91.757812, 73.118566 ], [ -91.757812, 74.019543 ] ] ], [ [ [ -91.625977, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.988770, 76.074381 ], [ -90.000000, 75.888091 ], [ -89.824219, 75.850541 ], [ -89.208984, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.396484, 75.486148 ], [ -84.792480, 75.699360 ], [ -82.770996, 75.785942 ], [ -81.145020, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.848633, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.110840, 74.413974 ], [ -88.154297, 74.396253 ], [ -89.780273, 74.519889 ], [ -90.000000, 74.549185 ], [ -91.757812, 74.758524 ], [ -91.757812, 76.780655 ], [ -91.625977, 76.780655 ] ] ], [ [ [ -72.839355, 83.233838 ], [ -68.510742, 83.108435 ], [ -65.830078, 83.028886 ], [ -63.698730, 82.902419 ], [ -61.853027, 82.631333 ], [ -61.896973, 82.364564 ], [ -64.335938, 81.929358 ], [ -66.774902, 81.726350 ], [ -67.675781, 81.502052 ], [ -65.500488, 81.508544 ], [ -67.851562, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.191406, 79.800637 ], [ -73.256836, 79.635922 ], [ -73.894043, 79.432371 ], [ -76.926270, 79.327084 ], [ -75.541992, 79.200193 ], [ -76.223145, 79.021712 ], [ -75.410156, 78.529943 ], [ -76.354980, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.376465, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.024626 ], [ -77.893066, 76.780655 ], [ -80.573730, 76.179748 ], [ -83.188477, 76.455203 ], [ -86.132812, 76.299953 ], [ -87.604980, 76.424292 ], [ -89.494629, 76.475773 ], [ -89.626465, 76.955375 ], [ -87.780762, 77.181560 ], [ -88.264160, 77.901861 ], [ -87.670898, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.352539, 78.184088 ], [ -87.978516, 78.376004 ], [ -87.165527, 78.759229 ], [ -85.385742, 79.000771 ], [ -85.100098, 79.347411 ], [ -86.528320, 79.738196 ], [ -86.945801, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.430176, 80.103470 ], [ -81.870117, 80.466790 ], [ -84.111328, 80.582539 ], [ -87.604980, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.000000, 81.167746 ], [ -90.219727, 81.261711 ], [ -91.384277, 81.553847 ], [ -91.604004, 81.895354 ], [ -90.109863, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.945312, 82.118384 ], [ -86.989746, 82.282381 ], [ -85.517578, 82.653843 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.441406, 82.861578 ], [ -81.101074, 83.020881 ], [ -79.321289, 83.132123 ], [ -76.267090, 83.174035 ], [ -75.739746, 83.066122 ], [ -72.839355, 83.233838 ] ] ], [ [ [ -91.757812, 80.990573 ], [ -91.142578, 80.725269 ], [ -90.000000, 80.582539 ], [ -89.450684, 80.510360 ], [ -87.824707, 80.320120 ], [ -87.033691, 79.663556 ], [ -85.825195, 79.339285 ], [ -87.209473, 79.042615 ], [ -89.055176, 78.291586 ], [ -90.000000, 78.251387 ], [ -90.812988, 78.215541 ], [ -91.757812, 78.278201 ], [ -91.757812, 80.990573 ] ] ], [ [ [ -91.757812, 70.065585 ], [ -91.757812, 70.399978 ], [ -91.538086, 70.192550 ], [ -91.757812, 70.065585 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.090332, 83.645406 ], [ -27.114258, 83.520162 ], [ -20.852051, 82.729312 ], [ -22.697754, 82.344100 ], [ -26.520996, 82.300066 ], [ -31.904297, 82.202302 ], [ -31.398926, 82.024427 ], [ -27.861328, 82.133435 ], [ -24.851074, 81.789349 ], [ -22.917480, 82.094243 ], [ -22.082520, 81.735830 ], [ -23.181152, 81.154241 ], [ -20.632324, 81.524751 ], [ -15.776367, 81.913920 ], [ -12.788086, 81.720024 ], [ -12.216797, 81.291703 ], [ -16.303711, 80.582539 ], [ -16.853027, 80.353314 ], [ -20.061035, 80.178713 ], [ -17.731934, 80.129870 ], [ -18.918457, 79.400085 ], [ -19.709473, 78.754945 ], [ -19.687500, 77.641245 ], [ -18.479004, 76.990046 ], [ -20.039062, 76.945452 ], [ -21.687012, 76.629067 ], [ -19.841309, 76.100796 ], [ -19.599609, 75.253057 ], [ -20.676270, 75.157673 ], [ -19.379883, 74.301409 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.818698 ], [ -20.764160, 73.465984 ], [ -22.192383, 73.315246 ], [ -23.576660, 73.308936 ], [ -22.324219, 72.633374 ], [ -22.302246, 72.188526 ], [ -24.279785, 72.600551 ], [ -24.807129, 72.335798 ], [ -23.444824, 72.080673 ], [ -22.148438, 71.469124 ], [ -21.774902, 70.670881 ], [ -23.554688, 70.473553 ], [ -25.554199, 71.434176 ], [ -25.202637, 70.757966 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.368164, 70.132898 ], [ -25.048828, 69.263930 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.130668 ], [ -31.794434, 68.122482 ], [ -32.827148, 67.742759 ], [ -34.211426, 66.687784 ], [ -34.738770, 66.513260 ], [ -36.364746, 65.982270 ], [ -37.045898, 65.946472 ], [ -37.792969, 65.802776 ], [ -53.217773, 65.802776 ], [ -53.679199, 66.107170 ], [ -53.481445, 66.513260 ], [ -53.305664, 66.843807 ], [ -53.986816, 67.195518 ], [ -52.998047, 68.358699 ], [ -51.481934, 68.736383 ], [ -51.086426, 69.154740 ], [ -50.888672, 69.930300 ], [ -52.031250, 69.580563 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.287257 ], [ -54.689941, 69.611206 ], [ -54.755859, 70.296526 ], [ -54.360352, 70.823031 ], [ -53.437500, 70.837461 ], [ -51.394043, 70.576112 ], [ -53.129883, 71.208999 ], [ -54.008789, 71.552741 ], [ -55.019531, 71.413177 ], [ -55.854492, 71.656749 ], [ -54.733887, 72.587405 ], [ -55.327148, 72.964753 ], [ -56.140137, 73.652545 ], [ -57.326660, 74.712244 ], [ -58.601074, 75.101283 ], [ -58.601074, 75.519151 ], [ -61.281738, 76.106073 ], [ -63.413086, 76.179748 ], [ -66.071777, 76.137695 ], [ -68.510742, 76.063801 ], [ -69.675293, 76.382969 ], [ -71.411133, 77.009817 ], [ -68.796387, 77.326990 ], [ -66.774902, 77.379906 ], [ -71.059570, 77.636542 ], [ -73.300781, 78.048346 ], [ -73.168945, 78.433418 ], [ -69.389648, 78.916608 ], [ -65.720215, 79.396042 ], [ -65.324707, 79.761655 ], [ -68.027344, 80.118564 ], [ -67.170410, 80.517603 ], [ -63.698730, 81.214853 ], [ -62.248535, 81.321593 ], [ -62.666016, 81.770499 ], [ -60.292969, 82.036613 ], [ -57.216797, 82.193353 ], [ -54.140625, 82.202302 ], [ -53.063965, 81.889156 ], [ -50.405273, 82.440097 ], [ -48.010254, 82.066996 ], [ -46.604004, 81.987759 ], [ -44.538574, 81.662872 ], [ -46.911621, 82.202302 ], [ -46.779785, 82.628514 ], [ -43.417969, 83.226067 ], [ -39.902344, 83.181865 ], [ -38.627930, 83.549851 ], [ -35.090332, 83.645406 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iceland", "sov_a3": "ISL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iceland", "adm0_a3": "ISL", "geou_dif": 0, "geounit": "Iceland", "gu_a3": "ISL", "su_dif": 0, "subunit": "Iceland", "su_a3": "ISL", "brk_diff": 0, "name": "Iceland", "name_long": "Iceland", "brk_a3": "ISL", "brk_name": "Iceland", "abbrev": "Iceland", "postal": "IS", "formal_en": "Republic of Iceland", "name_sort": "Iceland", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 306694, "gdp_md_est": 12710, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IS", "iso_a3": "ISL", "iso_n3": "352", "un_a3": "352", "wb_a2": "IS", "wb_a3": "ISL", "woe_id": -99, "adm0_a3_is": "ISL", "adm0_a3_us": "ISL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.148438, 66.416748 ], [ -20.742188, 65.802776 ], [ -24.147949, 65.802776 ], [ -23.664551, 66.266856 ], [ -22.148438, 66.416748 ] ] ], [ [ [ -15.864258, 66.513260 ], [ -14.523926, 66.460663 ], [ -14.743652, 65.802776 ], [ -20.390625, 65.802776 ], [ -19.072266, 66.284537 ], [ -17.819824, 66.000150 ], [ -16.215820, 66.513260 ], [ -16.171875, 66.530768 ], [ -15.864258, 66.513260 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 54.514160, -65.811781 ], [ 55.393066, -65.874725 ], [ 56.337891, -65.973325 ], [ 57.150879, -66.240312 ], [ 57.216797, -66.513260 ], [ 57.238770, -66.679087 ], [ 58.117676, -67.007428 ], [ 58.732910, -67.280530 ], [ 59.919434, -67.399044 ], [ 60.600586, -67.676085 ], [ 61.413574, -67.949900 ], [ 62.380371, -68.007571 ], [ 63.171387, -67.809245 ], [ 64.050293, -67.399044 ], [ 64.973145, -67.617589 ], [ 66.906738, -67.850702 ], [ 67.873535, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.697266, -68.966279 ], [ 69.653320, -69.224997 ], [ 69.543457, -69.672358 ], [ 68.576660, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.692688 ], [ 69.060059, -70.670881 ], [ 68.928223, -71.066928 ], [ 68.400879, -71.441171 ], [ 67.939453, -71.849385 ], [ 68.708496, -72.161622 ], [ 69.851074, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.691293 ], [ 71.894531, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.322754, -70.363091 ], [ 73.850098, -69.869892 ], [ 74.487305, -69.771356 ], [ 75.607910, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.629395, -69.457554 ], [ 78.112793, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.101562, -68.318146 ], [ 80.090332, -68.065098 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.144365 ], [ 87.473145, -66.869715 ], [ 87.736816, -66.513260 ], [ 87.978516, -66.204876 ], [ 88.374023, -66.513260 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.000000, -67.169955 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.110204 ], [ 91.757812, -67.118748 ], [ 91.757812, -85.200475 ], [ -1.757812, -85.200475 ], [ -1.757812, -71.166486 ], [ -0.681152, -71.223149 ], [ -0.241699, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.856934, -71.300793 ], [ 1.867676, -71.123880 ], [ 4.130859, -70.851881 ], [ 5.141602, -70.612614 ], [ 6.262207, -70.458859 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.634484 ], [ 12.392578, -70.244604 ], [ 13.403320, -69.967967 ], [ 14.721680, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.930176, -70.028094 ], [ 17.006836, -69.907667 ], [ 18.193359, -69.869892 ], [ 19.248047, -69.892565 ], [ 20.368652, -70.005567 ], [ 21.445312, -70.065585 ], [ 21.906738, -70.399978 ], [ 22.565918, -70.692688 ], [ 23.664551, -70.517570 ], [ 24.829102, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.081055, -70.318738 ], [ 29.135742, -70.199994 ], [ 30.014648, -69.930300 ], [ 30.959473, -69.756155 ], [ 31.970215, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.288574, -68.831802 ], [ 33.859863, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.145020, -69.240579 ], [ 37.199707, -69.162558 ], [ 37.902832, -69.519147 ], [ 38.627930, -69.771356 ], [ 39.660645, -69.534518 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.926811 ], [ 41.945801, -68.600505 ], [ 42.934570, -68.455732 ], [ 44.099121, -68.261250 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.977051, -67.084550 ], [ 49.921875, -67.110204 ], [ 50.734863, -66.869715 ], [ 50.932617, -66.522016 ], [ 50.976562, -66.513260 ], [ 51.789551, -66.240312 ], [ 52.602539, -66.044796 ], [ 53.591309, -65.892680 ], [ 54.514160, -65.811781 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 54.514160, -65.811781 ], [ 55.393066, -65.874725 ], [ 56.337891, -65.973325 ], [ 57.150879, -66.240312 ], [ 57.216797, -66.513260 ], [ 57.238770, -66.679087 ], [ 58.117676, -67.007428 ], [ 58.557129, -67.204032 ], [ 48.713379, -67.204032 ], [ 48.977051, -67.084550 ], [ 49.921875, -67.110204 ], [ 50.734863, -66.869715 ], [ 50.932617, -66.522016 ], [ 50.976562, -66.513260 ], [ 51.789551, -66.240312 ], [ 52.602539, -66.044796 ], [ 53.591309, -65.892680 ], [ 54.514160, -65.811781 ] ] ], [ [ [ 88.374023, -66.513260 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.307617, -67.204032 ], [ 84.704590, -67.204032 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.144365 ], [ 87.473145, -66.869715 ], [ 87.736816, -66.513260 ], [ 87.978516, -66.204876 ], [ 88.374023, -66.513260 ] ] ], [ [ [ 91.757812, -67.118748 ], [ 91.757812, -67.204032 ], [ 90.812988, -67.204032 ], [ 91.582031, -67.110204 ], [ 91.757812, -67.118748 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Equatorial Guinea", "sov_a3": "GNQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Equatorial Guinea", "adm0_a3": "GNQ", "geou_dif": 0, "geounit": "Equatorial Guinea", "gu_a3": "GNQ", "su_dif": 0, "subunit": "Equatorial Guinea", "su_a3": "GNQ", "brk_diff": 0, "name": "Eq. Guinea", "name_long": "Equatorial Guinea", "brk_a3": "GNQ", "brk_name": "Eq. Guinea", "abbrev": "Eq. G.", "postal": "GQ", "formal_en": "Republic of Equatorial Guinea", "name_sort": "Equatorial Guinea", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 650702, "gdp_md_est": 14060, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "7. Least developed region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GQ", "iso_a3": "GNQ", "iso_n3": "226", "un_a3": "226", "wb_a2": "GQ", "wb_a3": "GNQ", "woe_id": -99, "adm0_a3_is": "GNQ", "adm0_a3_us": "GNQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 17, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.271973, 1.757537 ], [ 11.271973, 1.076597 ], [ 9.821777, 1.076597 ], [ 9.492188, 1.010690 ], [ 9.294434, 1.164471 ], [ 9.470215, 1.757537 ], [ 11.271973, 1.757537 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.958496, 1.757537 ], [ 34.650879, 1.186439 ], [ 33.881836, 0.109863 ], [ 33.881836, -0.944781 ], [ 31.860352, -1.010690 ], [ 30.761719, -1.010690 ], [ 30.410156, -1.120534 ], [ 29.816895, -1.428075 ], [ 29.575195, -1.340210 ], [ 29.575195, -0.571280 ], [ 29.816895, -0.197754 ], [ 29.816895, 0.000000 ], [ 29.860840, 0.615223 ], [ 30.080566, 1.076597 ], [ 30.454102, 1.603794 ], [ 30.717773, 1.757537 ], [ 34.958496, 1.757537 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.109863, 1.757537 ], [ 44.055176, 1.054628 ], [ 43.132324, 0.307616 ], [ 42.868652, 0.000000 ], [ 42.033691, -0.900842 ], [ 41.791992, -1.428075 ], [ 41.572266, -1.669686 ], [ 40.979004, -0.856902 ], [ 40.979004, 1.757537 ], [ 45.109863, 1.757537 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Gabon", "sov_a3": "GAB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gabon", "adm0_a3": "GAB", "geou_dif": 0, "geounit": "Gabon", "gu_a3": "GAB", "su_dif": 0, "subunit": "Gabon", "su_a3": "GAB", "brk_diff": 0, "name": "Gabon", "name_long": "Gabon", "brk_a3": "GAB", "brk_name": "Gabon", "abbrev": "Gabon", "postal": "GA", "formal_en": "Gabonese Republic", "name_sort": "Gabon", "mapcolor7": 6, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 1514993, "gdp_md_est": 21110, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "GA", "iso_a3": "GAB", "iso_n3": "266", "un_a3": "266", "wb_a2": "GA", "wb_a3": "GAB", "woe_id": -99, "adm0_a3_is": "GAB", "adm0_a3_us": "GAB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": 3, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.029785, 1.757537 ], [ 13.271484, 1.318243 ], [ 14.018555, 1.406109 ], [ 14.260254, 1.208406 ], [ 13.842773, 0.043945 ], [ 13.864746, 0.000000 ], [ 14.304199, -0.549308 ], [ 14.414062, -1.318243 ], [ 14.282227, -1.977147 ], [ 13.974609, -2.460181 ], [ 13.095703, -2.416276 ], [ 12.568359, -1.933227 ], [ 12.480469, -2.372369 ], [ 11.799316, -2.504085 ], [ 11.469727, -2.745531 ], [ 11.843262, -3.425692 ], [ 11.074219, -3.973861 ], [ 10.063477, -2.964984 ], [ 9.404297, -2.130856 ], [ 8.789062, -1.098565 ], [ 8.811035, -0.769020 ], [ 9.030762, -0.439449 ], [ 9.184570, 0.000000 ], [ 9.492188, 1.010690 ], [ 9.821777, 1.076597 ], [ 11.271973, 1.076597 ], [ 11.271973, 1.757537 ], [ 13.029785, 1.757537 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Rwanda", "sov_a3": "RWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Rwanda", "adm0_a3": "RWA", "geou_dif": 0, "geounit": "Rwanda", "gu_a3": "RWA", "su_dif": 0, "subunit": "Rwanda", "su_a3": "RWA", "brk_diff": 0, "name": "Rwanda", "name_long": "Rwanda", "brk_a3": "RWA", "brk_name": "Rwanda", "abbrev": "Rwa.", "postal": "RW", "formal_en": "Republic of Rwanda", "name_sort": "Rwanda", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 10473282, "gdp_md_est": 9706, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "RW", "iso_a3": "RWA", "iso_n3": "646", "un_a3": "646", "wb_a2": "RW", "wb_a3": "RWA", "woe_id": -99, "adm0_a3_is": "RWA", "adm0_a3_us": "RWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.410156, -1.120534 ], [ 30.805664, -1.691649 ], [ 30.739746, -2.284551 ], [ 30.454102, -2.394322 ], [ 29.926758, -2.328460 ], [ 29.619141, -2.899153 ], [ 29.003906, -2.833317 ], [ 29.113770, -2.284551 ], [ 29.245605, -2.196727 ], [ 29.289551, -1.603794 ], [ 29.575195, -1.340210 ], [ 29.816895, -1.428075 ], [ 30.410156, -1.120534 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Madagascar", "sov_a3": "MDG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Madagascar", "adm0_a3": "MDG", "geou_dif": 0, "geounit": "Madagascar", "gu_a3": "MDG", "su_dif": 0, "subunit": "Madagascar", "su_a3": "MDG", "brk_diff": 0, "name": "Madagascar", "name_long": "Madagascar", "brk_a3": "MDG", "brk_name": "Madagascar", "abbrev": "Mad.", "postal": "MG", "formal_en": "Republic of Madagascar", "name_sort": "Madagascar", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 20653556, "gdp_md_est": 20130, "pop_year": -99, "lastcensus": 1993, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MG", "iso_a3": "MDG", "iso_n3": "450", "un_a3": "450", "wb_a2": "MG", "wb_a3": "MDG", "woe_id": -99, "adm0_a3_is": "MDG", "adm0_a3_us": "MDG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.174805, -12.039321 ], [ 49.526367, -12.468760 ], [ 49.790039, -12.876070 ], [ 50.053711, -13.539201 ], [ 50.207520, -14.753635 ], [ 50.471191, -15.220589 ], [ 50.361328, -15.686510 ], [ 50.185547, -15.982454 ], [ 49.855957, -15.411319 ], [ 49.658203, -15.707663 ], [ 49.855957, -16.446622 ], [ 49.768066, -16.867634 ], [ 49.482422, -17.098792 ], [ 49.416504, -17.936929 ], [ 48.537598, -20.488773 ], [ 47.922363, -22.390714 ], [ 47.526855, -23.765237 ], [ 47.087402, -24.926295 ], [ 46.274414, -25.165173 ], [ 45.395508, -25.582085 ], [ 44.033203, -24.986058 ], [ 43.747559, -24.447150 ], [ 43.681641, -23.563987 ], [ 43.330078, -22.776182 ], [ 43.242188, -22.044913 ], [ 43.417969, -21.330315 ], [ 43.879395, -21.145992 ], [ 43.879395, -20.817741 ], [ 44.362793, -20.055931 ], [ 44.450684, -19.414792 ], [ 44.230957, -18.958246 ], [ 44.033203, -18.312811 ], [ 43.945312, -17.392579 ], [ 44.296875, -16.846605 ], [ 44.428711, -16.214675 ], [ 44.934082, -16.172473 ], [ 45.483398, -15.961329 ], [ 45.856934, -15.792254 ], [ 46.296387, -15.771109 ], [ 46.867676, -15.199386 ], [ 47.702637, -14.583583 ], [ 47.988281, -14.072645 ], [ 47.856445, -13.645987 ], [ 48.273926, -13.774066 ], [ 48.823242, -13.068777 ], [ 48.845215, -12.468760 ], [ 49.174805, -12.039321 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "French Southern and Antarctic Lands", "adm0_a3": "ATF", "geou_dif": 0, "geounit": "French Southern and Antarctic Lands", "gu_a3": "ATF", "su_dif": 0, "subunit": "French Southern and Antarctic Lands", "su_a3": "ATF", "brk_diff": 0, "name": "Fr. S. Antarctic Lands", "name_long": "French Southern and Antarctic Lands", "brk_a3": "ATF", "brk_name": "Fr. S. and Antarctic Lands", "abbrev": "Fr. S.A.L.", "postal": "TF", "formal_en": "Territory of the French Southern and Antarctic Lands", "note_adm0": "Fr.", "name_sort": "French Southern and Antarctic Lands", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 140, "gdp_md_est": 16, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TF", "iso_a3": "ATF", "iso_n3": "260", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATF", "adm0_a3_us": "ATF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Seven seas (open ocean)", "region_un": "Seven seas (open ocean)", "subregion": "Seven seas (open ocean)", "region_wb": "Sub-Saharan Africa", "name_len": 22, "long_len": 35, "abbrev_len": 10, "tiny": 2, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.928223, -48.618385 ], [ 69.565430, -48.936935 ], [ 70.510254, -49.052270 ], [ 70.554199, -49.253465 ], [ 70.268555, -49.696062 ], [ 68.730469, -49.767074 ], [ 68.708496, -49.239121 ], [ 68.928223, -48.618385 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -1.757812, 55.491304 ], [ -1.120605, 54.635697 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.683695 ], [ 0.175781, 53.330873 ], [ 0.461426, 52.935397 ], [ 1.669922, 52.749594 ], [ 1.538086, 52.106505 ], [ 1.032715, 51.808615 ], [ 1.428223, 51.303145 ], [ 0.549316, 50.778155 ], [ -0.791016, 50.778155 ], [ -1.757812, 50.625073 ], [ -1.757812, 55.491304 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.382324, 43.020714 ], [ 9.558105, 42.163403 ], [ 9.228516, 41.393294 ], [ 8.767090, 41.590797 ], [ 8.525391, 42.261049 ], [ 8.745117, 42.633959 ], [ 9.382324, 43.020714 ] ] ], [ [ [ 2.504883, 51.151786 ], [ 2.636719, 50.805935 ], [ 3.120117, 50.792047 ], [ 3.581543, 50.387508 ], [ 4.284668, 49.908787 ], [ 4.790039, 49.993615 ], [ 5.668945, 49.539469 ], [ 5.888672, 49.453843 ], [ 6.174316, 49.468124 ], [ 6.657715, 49.210420 ], [ 8.085938, 49.023461 ], [ 7.580566, 48.341646 ], [ 7.448730, 47.620975 ], [ 7.185059, 47.457809 ], [ 6.723633, 47.546872 ], [ 6.767578, 47.294134 ], [ 6.020508, 46.739861 ], [ 6.020508, 46.286224 ], [ 6.481934, 46.437857 ], [ 6.833496, 45.996962 ], [ 6.789551, 45.721522 ], [ 7.075195, 45.336702 ], [ 6.745605, 45.042478 ], [ 6.987305, 44.260937 ], [ 7.536621, 44.134913 ], [ 7.426758, 43.707594 ], [ 6.525879, 43.133061 ], [ 4.548340, 43.405047 ], [ 3.098145, 43.084937 ], [ 2.966309, 42.488302 ], [ 1.823730, 42.358544 ], [ 0.681152, 42.811522 ], [ 0.329590, 42.585444 ], [ -1.516113, 43.036776 ], [ -1.757812, 43.293200 ], [ -1.757812, 43.596306 ], [ -1.384277, 44.024422 ], [ -1.208496, 46.027482 ], [ -1.757812, 46.604167 ], [ -1.757812, 48.676454 ], [ -1.625977, 48.647428 ], [ -1.757812, 49.152970 ], [ -1.757812, 49.710273 ], [ -1.010742, 49.353756 ], [ 0.000000, 49.681847 ], [ 1.318359, 50.134664 ], [ 1.625977, 50.958427 ], [ 2.504883, 51.151786 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.113727 ], [ 0.000000, 11.027472 ], [ 0.021973, 11.027472 ], [ 0.000000, 10.919618 ], [ -0.065918, 10.725381 ], [ 0.000000, 10.660608 ], [ 0.351562, 10.206813 ], [ 0.351562, 9.470736 ], [ 0.439453, 8.689639 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.427837 ], [ 0.549316, 6.926427 ], [ 0.834961, 6.293459 ], [ 1.054688, 5.943900 ], [ -0.527344, 5.353521 ], [ -1.076660, 5.003394 ], [ -1.757812, 4.784469 ], [ -1.757812, 11.005904 ], [ -1.208496, 11.027472 ], [ -0.769043, 10.941192 ], [ -0.439453, 11.113727 ] ] ] } } +, +{ "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": [ [ [ [ 91.757812, 67.204032 ], [ 91.757812, 50.666872 ], [ 90.703125, 50.345460 ], [ 90.000000, 50.021858 ], [ 88.791504, 49.482401 ], [ 87.341309, 49.224773 ], [ 86.813965, 49.837982 ], [ 85.539551, 49.696062 ], [ 85.100098, 50.120578 ], [ 84.396973, 50.317408 ], [ 83.913574, 50.903033 ], [ 83.364258, 51.082822 ], [ 81.936035, 50.819818 ], [ 80.551758, 51.399206 ], [ 80.024414, 50.875311 ], [ 77.783203, 53.409532 ], [ 76.508789, 54.188155 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.410645, 53.501117 ], [ 73.498535, 54.046489 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.178868 ], [ 69.060059, 55.391592 ], [ 68.159180, 54.977614 ], [ 65.654297, 54.610255 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.988337 ], [ 60.732422, 52.722986 ], [ 60.908203, 52.456009 ], [ 59.963379, 51.971346 ], [ 61.567383, 51.275662 ], [ 61.325684, 50.805935 ], [ 59.919434, 50.847573 ], [ 59.633789, 50.555325 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.055207 ], [ 55.700684, 50.625073 ], [ 54.514160, 51.027576 ], [ 52.316895, 51.727028 ], [ 50.756836, 51.699800 ], [ 48.691406, 50.611132 ], [ 48.559570, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.735840, 49.368066 ], [ 47.043457, 49.152970 ], [ 46.450195, 48.400032 ], [ 47.307129, 47.724545 ], [ 48.054199, 47.754098 ], [ 48.691406, 47.085085 ], [ 48.581543, 46.573967 ], [ 49.086914, 46.407564 ], [ 48.625488, 45.813486 ], [ 47.658691, 45.644768 ], [ 46.669922, 44.621754 ], [ 47.570801, 43.675818 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.820455 ], [ 47.966309, 41.409776 ], [ 47.812500, 41.162114 ], [ 47.373047, 41.228249 ], [ 46.669922, 41.836828 ], [ 46.384277, 41.869561 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.516602, 42.714732 ], [ 43.923340, 42.569264 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.229195 ], [ 40.913086, 43.389082 ], [ 40.056152, 43.564472 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.292401 ], [ 37.529297, 44.668653 ], [ 36.672363, 45.259422 ], [ 37.397461, 45.413876 ], [ 38.232422, 46.255847 ], [ 37.661133, 46.649436 ], [ 39.133301, 47.055154 ], [ 39.111328, 47.264320 ], [ 38.210449, 47.115000 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.726562, 47.901614 ], [ 39.880371, 48.239309 ], [ 39.660645, 48.792390 ], [ 40.078125, 49.310799 ], [ 40.056152, 49.610710 ], [ 38.583984, 49.937080 ], [ 37.990723, 49.922935 ], [ 37.375488, 50.387508 ], [ 36.606445, 50.233152 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.002441, 51.220647 ], [ 34.211426, 51.261915 ], [ 34.123535, 51.577070 ], [ 34.387207, 51.781436 ], [ 33.750000, 52.335339 ], [ 32.695312, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.145996, 52.066000 ], [ 31.772461, 52.106505 ], [ 31.530762, 52.749594 ], [ 31.289062, 53.080827 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.673340, 53.357109 ], [ 32.387695, 53.618579 ], [ 31.728516, 53.800651 ], [ 31.772461, 53.981935 ], [ 31.376953, 54.162434 ], [ 30.739746, 54.813348 ], [ 30.959473, 55.090944 ], [ 30.871582, 55.553495 ], [ 29.882812, 55.801281 ], [ 29.355469, 55.677584 ], [ 29.223633, 55.924586 ], [ 28.168945, 56.170023 ], [ 27.839355, 56.764768 ], [ 27.751465, 57.255281 ], [ 27.268066, 57.480403 ], [ 27.707520, 57.797944 ], [ 27.399902, 58.734005 ], [ 28.125000, 59.310768 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.511343 ], [ 30.190430, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.875188 ], [ 30.014648, 63.558338 ], [ 30.432129, 64.206377 ], [ 29.531250, 64.951465 ], [ 30.212402, 65.811781 ], [ 29.487305, 66.513260 ], [ 29.047852, 66.947274 ], [ 29.355469, 67.204032 ], [ 41.066895, 67.204032 ], [ 41.110840, 66.791909 ], [ 40.517578, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.364258, 66.000150 ], [ 35.375977, 66.513260 ], [ 33.903809, 66.765919 ], [ 33.178711, 66.635556 ], [ 33.442383, 66.513260 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.210938, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.339908 ], [ 36.518555, 64.764759 ], [ 37.155762, 65.146115 ], [ 39.572754, 64.529548 ], [ 40.429688, 64.764759 ], [ 39.748535, 65.503854 ], [ 42.077637, 66.478208 ], [ 43.000488, 66.425537 ], [ 43.945312, 66.071546 ], [ 44.318848, 66.513260 ], [ 44.516602, 66.757250 ], [ 43.901367, 67.204032 ], [ 45.549316, 67.204032 ], [ 45.549316, 67.016009 ], [ 46.340332, 66.670387 ], [ 47.878418, 66.886972 ], [ 48.010254, 67.204032 ], [ 72.465820, 67.204032 ], [ 71.520996, 66.513260 ], [ 71.279297, 66.328685 ], [ 72.421875, 66.178266 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.539517 ], [ 73.916016, 66.791909 ], [ 74.135742, 67.204032 ], [ 91.757812, 67.204032 ] ] ], [ [ [ 21.247559, 55.191412 ], [ 22.302246, 55.015426 ], [ 22.741699, 54.863963 ], [ 22.631836, 54.584797 ], [ 22.719727, 54.329338 ], [ 20.874023, 54.316523 ], [ 19.643555, 54.431713 ], [ 19.885254, 54.876607 ], [ 21.247559, 55.191412 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.370605, 56.121060 ], [ 12.678223, 55.615589 ], [ 12.084961, 54.800685 ], [ 11.030273, 55.366625 ], [ 10.898438, 55.788929 ], [ 12.370605, 56.121060 ] ] ], [ [ [ 10.568848, 57.739350 ], [ 10.524902, 57.219608 ], [ 10.239258, 56.897004 ], [ 10.349121, 56.619977 ], [ 10.898438, 56.462490 ], [ 10.656738, 56.084298 ], [ 10.349121, 56.194481 ], [ 9.645996, 55.478853 ], [ 9.909668, 54.990222 ], [ 9.272461, 54.838664 ], [ 8.525391, 54.965002 ], [ 8.107910, 55.528631 ], [ 8.085938, 56.547372 ], [ 8.239746, 56.812908 ], [ 8.525391, 57.112385 ], [ 9.404297, 57.183902 ], [ 9.755859, 57.456771 ], [ 10.568848, 57.739350 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "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": "Polygon", "coordinates": [ [ [ 25.158691, 57.973157 ], [ 25.598145, 57.856443 ], [ 26.455078, 57.480403 ], [ 27.268066, 57.480403 ], [ 27.751465, 57.255281 ], [ 27.839355, 56.764768 ], [ 28.168945, 56.170023 ], [ 27.092285, 55.788929 ], [ 26.477051, 55.615589 ], [ 25.532227, 56.108810 ], [ 24.982910, 56.170023 ], [ 24.851074, 56.377419 ], [ 23.862305, 56.279961 ], [ 22.192383, 56.340901 ], [ 21.049805, 56.035226 ], [ 21.071777, 56.788845 ], [ 21.577148, 57.421294 ], [ 22.521973, 57.762799 ], [ 23.312988, 57.016814 ], [ 24.104004, 57.028774 ], [ 24.301758, 57.797944 ], [ 25.158691, 57.973157 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.056152, 43.564472 ], [ 40.913086, 43.389082 ], [ 42.385254, 43.229195 ], [ 43.747559, 42.747012 ], [ 43.923340, 42.569264 ], [ 44.516602, 42.714732 ], [ 45.461426, 42.504503 ], [ 45.769043, 42.098222 ], [ 46.384277, 41.869561 ], [ 46.142578, 41.738528 ], [ 46.625977, 41.195190 ], [ 46.494141, 41.079351 ], [ 45.944824, 41.129021 ], [ 45.197754, 41.426253 ], [ 44.956055, 41.261291 ], [ 43.571777, 41.095912 ], [ 42.604980, 41.590797 ], [ 41.550293, 41.541478 ], [ 41.682129, 41.967659 ], [ 41.440430, 42.650122 ], [ 40.869141, 43.020714 ], [ 40.319824, 43.133061 ], [ 39.946289, 43.436966 ], [ 40.056152, 43.564472 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.842285, 23.422928 ], [ 23.818359, 19.580493 ], [ 23.884277, 15.623037 ], [ 23.005371, 15.686510 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.093957 ], [ 22.170410, 13.795406 ], [ 22.280273, 13.389620 ], [ 22.016602, 12.961736 ], [ 21.928711, 12.597455 ], [ 22.280273, 12.661778 ], [ 22.478027, 12.275599 ], [ 22.500000, 11.695273 ], [ 22.873535, 11.393879 ], [ 22.851562, 11.156845 ], [ 22.214355, 10.984335 ], [ 21.708984, 10.574222 ], [ 20.983887, 9.492408 ], [ 20.039062, 9.015302 ], [ 19.072266, 9.080400 ], [ 18.808594, 8.993600 ], [ 18.896484, 8.646196 ], [ 18.369141, 8.298470 ], [ 17.951660, 7.906912 ], [ 16.699219, 7.514981 ], [ 16.435547, 7.754537 ], [ 16.281738, 7.754537 ], [ 16.105957, 7.514981 ], [ 15.270996, 7.427837 ], [ 15.424805, 7.710992 ], [ 15.117188, 8.385431 ], [ 14.963379, 8.798225 ], [ 14.523926, 8.971897 ], [ 13.952637, 9.557417 ], [ 14.150391, 10.033767 ], [ 14.611816, 9.925566 ], [ 14.897461, 10.012130 ], [ 15.446777, 9.990491 ], [ 14.919434, 10.898042 ], [ 14.941406, 11.566144 ], [ 14.875488, 12.232655 ], [ 14.479980, 12.876070 ], [ 14.589844, 13.346865 ], [ 13.952637, 13.368243 ], [ 13.952637, 14.008696 ], [ 13.535156, 14.370834 ], [ 13.952637, 15.686510 ], [ 15.227051, 16.636192 ], [ 15.292969, 17.936929 ], [ 15.666504, 19.973349 ], [ 15.886230, 20.406420 ], [ 15.468750, 20.735566 ], [ 15.468750, 21.063997 ], [ 15.095215, 21.309846 ], [ 14.831543, 22.877440 ], [ 15.842285, 23.422928 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.739258, 12.254128 ], [ 33.200684, 12.189704 ], [ 33.068848, 11.458491 ], [ 33.200684, 10.725381 ], [ 33.706055, 10.336536 ], [ 33.837891, 9.990491 ], [ 33.815918, 9.492408 ], [ 33.947754, 9.470736 ], [ 33.969727, 8.689639 ], [ 33.815918, 8.385431 ], [ 33.288574, 8.363693 ], [ 32.937012, 7.798079 ], [ 33.552246, 7.732765 ], [ 34.057617, 7.231699 ], [ 34.233398, 6.839170 ], [ 34.694824, 6.599131 ], [ 35.288086, 5.506640 ], [ 33.991699, 4.258768 ], [ 33.376465, 3.798484 ], [ 32.673340, 3.798484 ], [ 31.860352, 3.579213 ], [ 31.245117, 3.798484 ], [ 30.827637, 3.513421 ], [ 29.948730, 4.193030 ], [ 29.707031, 4.609278 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.410645, 4.302591 ], [ 27.971191, 4.412137 ], [ 27.355957, 5.244128 ], [ 27.202148, 5.572250 ], [ 26.455078, 5.965754 ], [ 26.213379, 6.555475 ], [ 25.795898, 6.991859 ], [ 25.114746, 7.514981 ], [ 25.114746, 7.841615 ], [ 24.565430, 8.233237 ], [ 23.884277, 8.624472 ], [ 24.191895, 8.733077 ], [ 24.521484, 8.928487 ], [ 24.785156, 9.817329 ], [ 25.048828, 10.293301 ], [ 25.773926, 10.422988 ], [ 25.949707, 10.141932 ], [ 26.477051, 9.557417 ], [ 26.740723, 9.470736 ], [ 27.092285, 9.644077 ], [ 27.817383, 9.622414 ], [ 27.949219, 9.405710 ], [ 28.959961, 9.405710 ], [ 28.981934, 9.622414 ], [ 29.509277, 9.795678 ], [ 29.597168, 10.098670 ], [ 29.992676, 10.293301 ], [ 30.827637, 9.709057 ], [ 31.333008, 9.817329 ], [ 31.838379, 10.552622 ], [ 32.387695, 11.092166 ], [ 32.299805, 11.695273 ], [ 32.058105, 11.974845 ], [ 32.673340, 12.039321 ], [ 32.739258, 12.254128 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.060059, 55.391592 ], [ 70.861816, 55.178868 ], [ 71.169434, 54.136696 ], [ 72.224121, 54.380557 ], [ 73.498535, 54.046489 ], [ 73.410645, 53.501117 ], [ 74.377441, 53.553363 ], [ 76.882324, 54.495568 ], [ 76.508789, 54.188155 ], [ 77.783203, 53.409532 ], [ 80.024414, 50.875311 ], [ 80.551758, 51.399206 ], [ 81.936035, 50.819818 ], [ 83.364258, 51.082822 ], [ 83.913574, 50.903033 ], [ 84.396973, 50.317408 ], [ 85.100098, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.813965, 49.837982 ], [ 87.341309, 49.224773 ], [ 86.594238, 48.560250 ], [ 85.759277, 48.458352 ], [ 85.715332, 47.457809 ], [ 85.144043, 47.010226 ], [ 83.166504, 47.338823 ], [ 82.441406, 45.552525 ], [ 81.936035, 45.321254 ], [ 79.958496, 44.918139 ], [ 80.859375, 43.181147 ], [ 80.178223, 42.924252 ], [ 80.244141, 42.358544 ], [ 79.628906, 42.504503 ], [ 79.123535, 42.859860 ], [ 77.651367, 42.972502 ], [ 75.981445, 42.988576 ], [ 75.629883, 42.892064 ], [ 74.201660, 43.309191 ], [ 73.630371, 43.100983 ], [ 73.476562, 42.504503 ], [ 71.828613, 42.859860 ], [ 71.169434, 42.714732 ], [ 70.949707, 42.277309 ], [ 70.378418, 42.081917 ], [ 69.060059, 41.393294 ], [ 68.620605, 40.680638 ], [ 68.247070, 40.663973 ], [ 67.983398, 41.145570 ], [ 66.708984, 41.178654 ], [ 66.489258, 42.000325 ], [ 66.005859, 42.000325 ], [ 66.093750, 43.004647 ], [ 64.885254, 43.739352 ], [ 63.171387, 43.659924 ], [ 62.006836, 43.516689 ], [ 61.040039, 44.418088 ], [ 58.491211, 45.598666 ], [ 55.920410, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.437012, 41.261291 ], [ 54.733887, 42.049293 ], [ 54.074707, 42.326062 ], [ 52.932129, 42.130821 ], [ 52.492676, 41.787697 ], [ 52.426758, 42.032974 ], [ 52.690430, 42.455888 ], [ 52.492676, 42.795401 ], [ 51.328125, 43.133061 ], [ 50.888672, 44.040219 ], [ 50.317383, 44.292401 ], [ 50.295410, 44.621754 ], [ 51.262207, 44.527843 ], [ 51.306152, 45.259422 ], [ 52.163086, 45.413876 ], [ 53.020020, 45.259422 ], [ 53.217773, 46.240652 ], [ 53.041992, 46.860191 ], [ 52.031250, 46.815099 ], [ 51.174316, 47.055154 ], [ 50.031738, 46.619261 ], [ 49.086914, 46.407564 ], [ 48.581543, 46.573967 ], [ 48.691406, 47.085085 ], [ 48.054199, 47.754098 ], [ 47.307129, 47.724545 ], [ 46.450195, 48.400032 ], [ 47.043457, 49.152970 ], [ 46.735840, 49.368066 ], [ 47.548828, 50.457504 ], [ 48.559570, 49.880478 ], [ 48.691406, 50.611132 ], [ 50.756836, 51.699800 ], [ 52.316895, 51.727028 ], [ 54.514160, 51.027576 ], [ 55.700684, 50.625073 ], [ 56.777344, 51.055207 ], [ 58.359375, 51.069017 ], [ 59.633789, 50.555325 ], [ 59.919434, 50.847573 ], [ 61.325684, 50.805935 ], [ 61.567383, 51.275662 ], [ 59.963379, 51.971346 ], [ 60.908203, 52.456009 ], [ 60.732422, 52.722986 ], [ 61.699219, 52.988337 ], [ 60.974121, 53.670680 ], [ 61.435547, 54.007769 ], [ 65.170898, 54.354956 ], [ 65.654297, 54.610255 ], [ 68.159180, 54.977614 ], [ 69.060059, 55.391592 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.956055, 41.261291 ], [ 45.175781, 40.996484 ], [ 45.549316, 40.813809 ], [ 45.351562, 40.563895 ], [ 45.878906, 40.229218 ], [ 45.593262, 39.909736 ], [ 46.032715, 39.639538 ], [ 46.472168, 39.470125 ], [ 46.494141, 38.771216 ], [ 46.142578, 38.754083 ], [ 45.725098, 39.334297 ], [ 45.725098, 39.487085 ], [ 45.285645, 39.487085 ], [ 45.000000, 39.740986 ], [ 44.780273, 39.724089 ], [ 44.384766, 40.010787 ], [ 43.637695, 40.262761 ], [ 43.747559, 40.747257 ], [ 43.571777, 41.095912 ], [ 44.956055, 41.261291 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.963308 ], [ 70.444336, 40.497092 ], [ 70.598145, 40.229218 ], [ 70.993652, 40.245992 ], [ 70.642090, 39.943436 ], [ 69.543457, 40.111689 ], [ 69.455566, 39.537940 ], [ 70.532227, 39.605688 ], [ 71.784668, 39.283294 ], [ 73.674316, 39.436193 ], [ 73.916016, 38.513788 ], [ 74.245605, 38.616870 ], [ 74.860840, 38.393339 ], [ 74.816895, 37.996163 ], [ 74.970703, 37.422526 ], [ 73.937988, 37.422526 ], [ 73.256836, 37.509726 ], [ 72.619629, 37.055177 ], [ 72.180176, 36.949892 ], [ 71.828613, 36.738884 ], [ 71.433105, 37.072710 ], [ 71.520996, 37.909534 ], [ 71.235352, 37.961523 ], [ 71.345215, 38.272689 ], [ 70.795898, 38.496594 ], [ 70.356445, 38.151837 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.596824 ], [ 69.499512, 37.614231 ], [ 69.191895, 37.160317 ], [ 68.840332, 37.352693 ], [ 68.115234, 37.037640 ], [ 67.829590, 37.160317 ], [ 68.378906, 38.169114 ], [ 68.159180, 38.908133 ], [ 67.434082, 39.147103 ], [ 67.697754, 39.588757 ], [ 68.532715, 39.537940 ], [ 68.994141, 40.094882 ], [ 69.323730, 40.730608 ], [ 70.664062, 40.963308 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sri Lanka", "sov_a3": "LKA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sri Lanka", "adm0_a3": "LKA", "geou_dif": 0, "geounit": "Sri Lanka", "gu_a3": "LKA", "su_dif": 0, "subunit": "Sri Lanka", "su_a3": "LKA", "brk_diff": 0, "name": "Sri Lanka", "name_long": "Sri Lanka", "brk_a3": "LKA", "brk_name": "Sri Lanka", "abbrev": "Sri L.", "postal": "LK", "formal_en": "Democratic Socialist Republic of Sri Lanka", "name_sort": "Sri Lanka", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 21324791, "gdp_md_est": 91870, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LK", "iso_a3": "LKA", "iso_n3": "144", "un_a3": "144", "wb_a2": "LK", "wb_a3": "LKA", "woe_id": -99, "adm0_a3_is": "LKA", "adm0_a3_us": "LKA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.134277, 9.838979 ], [ 80.837402, 9.275622 ], [ 81.298828, 8.581021 ], [ 81.782227, 7.536764 ], [ 81.628418, 6.489983 ], [ 81.210938, 6.206090 ], [ 80.332031, 5.987607 ], [ 79.870605, 6.773716 ], [ 79.694824, 8.211490 ], [ 80.134277, 9.838979 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.757812, 50.666872 ], [ 91.757812, 45.182037 ], [ 90.944824, 45.290347 ], [ 90.571289, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.263672, 47.694974 ], [ 90.000000, 47.768868 ], [ 88.835449, 48.078079 ], [ 88.000488, 48.603858 ], [ 87.736816, 49.310799 ], [ 88.791504, 49.482401 ], [ 90.000000, 50.021858 ], [ 90.703125, 50.345460 ], [ 91.757812, 50.666872 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bhutan", "sov_a3": "BTN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bhutan", "adm0_a3": "BTN", "geou_dif": 0, "geounit": "Bhutan", "gu_a3": "BTN", "su_dif": 0, "subunit": "Bhutan", "su_a3": "BTN", "brk_diff": 0, "name": "Bhutan", "name_long": "Bhutan", "brk_a3": "BTN", "brk_name": "Bhutan", "abbrev": "Bhutan", "postal": "BT", "formal_en": "Kingdom of Bhutan", "name_sort": "Bhutan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 691141, "gdp_md_est": 3524, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BT", "iso_a3": "BTN", "iso_n3": "064", "un_a3": "064", "wb_a2": "BT", "wb_a3": "BTN", "woe_id": -99, "adm0_a3_is": "BTN", "adm0_a3_us": "BTN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.000000, 28.304381 ], [ 90.725098, 28.071980 ], [ 91.252441, 28.052591 ], [ 91.691895, 27.780772 ], [ 91.757812, 27.741885 ], [ 91.757812, 26.843677 ], [ 91.208496, 26.824071 ], [ 90.351562, 26.882880 ], [ 90.000000, 26.784847 ], [ 89.736328, 26.725987 ], [ 88.835449, 27.117813 ], [ 88.813477, 27.313214 ], [ 89.472656, 28.052591 ], [ 90.000000, 28.304381 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Gabon", "sov_a3": "GAB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gabon", "adm0_a3": "GAB", "geou_dif": 0, "geounit": "Gabon", "gu_a3": "GAB", "su_dif": 0, "subunit": "Gabon", "su_a3": "GAB", "brk_diff": 0, "name": "Gabon", "name_long": "Gabon", "brk_a3": "GAB", "brk_name": "Gabon", "abbrev": "Gabon", "postal": "GA", "formal_en": "Gabonese Republic", "name_sort": "Gabon", "mapcolor7": 6, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 1514993, "gdp_md_est": 21110, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "GA", "iso_a3": "GAB", "iso_n3": "266", "un_a3": "266", "wb_a2": "GA", "wb_a3": "GAB", "woe_id": -99, "adm0_a3_is": "GAB", "adm0_a3_us": "GAB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": 3, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.941895, 2.328460 ], [ 13.073730, 2.284551 ], [ 12.985840, 1.845384 ], [ 13.271484, 1.318243 ], [ 14.018555, 1.406109 ], [ 14.260254, 1.208406 ], [ 13.842773, 0.043945 ], [ 13.864746, 0.000000 ], [ 14.304199, -0.549308 ], [ 14.414062, -1.318243 ], [ 14.326172, -1.757537 ], [ 9.162598, -1.757537 ], [ 8.789062, -1.098565 ], [ 8.811035, -0.769020 ], [ 9.030762, -0.439449 ], [ 9.184570, 0.000000 ], [ 9.492188, 1.010690 ], [ 9.821777, 1.076597 ], [ 11.271973, 1.076597 ], [ 11.271973, 2.262595 ], [ 11.733398, 2.328460 ], [ 12.348633, 2.196727 ], [ 12.941895, 2.328460 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Rwanda", "sov_a3": "RWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Rwanda", "adm0_a3": "RWA", "geou_dif": 0, "geounit": "Rwanda", "gu_a3": "RWA", "su_dif": 0, "subunit": "Rwanda", "su_a3": "RWA", "brk_diff": 0, "name": "Rwanda", "name_long": "Rwanda", "brk_a3": "RWA", "brk_name": "Rwanda", "abbrev": "Rwa.", "postal": "RW", "formal_en": "Republic of Rwanda", "name_sort": "Rwanda", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 10473282, "gdp_md_est": 9706, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "RW", "iso_a3": "RWA", "iso_n3": "646", "un_a3": "646", "wb_a2": "RW", "wb_a3": "RWA", "woe_id": -99, "adm0_a3_is": "RWA", "adm0_a3_us": "RWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.410156, -1.120534 ], [ 30.805664, -1.691649 ], [ 30.805664, -1.757537 ], [ 29.267578, -1.757537 ], [ 29.289551, -1.603794 ], [ 29.575195, -1.340210 ], [ 29.816895, -1.428075 ], [ 30.410156, -1.120534 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.496582, 69.068563 ], [ 40.275879, 67.933397 ], [ 41.044922, 67.458082 ], [ 41.110840, 66.791909 ], [ 40.517578, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.364258, 66.000150 ], [ 35.375977, 66.513260 ], [ 33.903809, 66.765919 ], [ 33.178711, 66.635556 ], [ 33.442383, 66.513260 ], [ 34.804688, 65.901653 ], [ 34.826660, 65.802776 ], [ 30.212402, 65.802776 ], [ 29.487305, 66.513260 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.432617, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.162558 ], [ 31.091309, 69.565226 ], [ 32.124023, 69.907667 ] ] ], [ [ [ 91.757812, 65.802776 ], [ 40.473633, 65.802776 ], [ 42.077637, 66.478208 ], [ 43.000488, 66.425537 ], [ 43.945312, 66.071546 ], [ 44.318848, 66.513260 ], [ 44.516602, 66.757250 ], [ 43.681641, 67.356785 ], [ 44.187012, 67.958148 ], [ 43.439941, 68.576441 ], [ 46.230469, 68.253111 ], [ 46.801758, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.549316, 67.016009 ], [ 46.340332, 66.670387 ], [ 47.878418, 66.886972 ], [ 48.120117, 67.525373 ], [ 50.207520, 67.999341 ], [ 53.701172, 68.863517 ], [ 54.470215, 68.815927 ], [ 53.481445, 68.204212 ], [ 54.711914, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.304688, 68.471864 ], [ 58.798828, 68.887274 ], [ 59.941406, 68.285651 ], [ 61.062012, 68.942607 ], [ 60.029297, 69.526834 ], [ 60.534668, 69.854762 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.240579 ], [ 68.510742, 68.097907 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.115234, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.708984, 70.714471 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.938158 ], [ 69.191895, 72.848502 ], [ 69.938965, 73.041829 ], [ 72.575684, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.828613, 71.413177 ], [ 72.465820, 71.095425 ], [ 72.773438, 70.392606 ], [ 72.553711, 69.021414 ], [ 73.652344, 68.415352 ], [ 73.234863, 67.742759 ], [ 71.520996, 66.513260 ], [ 71.279297, 66.328685 ], [ 72.421875, 66.178266 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.539517 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.289015 ], [ 75.036621, 67.767713 ], [ 74.465332, 68.334376 ], [ 74.926758, 68.989925 ], [ 73.828125, 69.076412 ], [ 73.586426, 69.634158 ], [ 74.399414, 70.634484 ], [ 73.081055, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.641113, 72.835538 ], [ 75.146484, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.159391 ], [ 75.893555, 71.876745 ], [ 77.563477, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.595703, 72.587405 ], [ 80.507812, 73.652545 ], [ 82.243652, 73.855397 ], [ 84.638672, 73.806447 ], [ 86.813965, 73.940714 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.000000, 75.579466 ], [ 90.241699, 75.644984 ], [ 91.757812, 75.721054 ], [ 91.757812, 65.802776 ] ] ], [ [ [ 68.137207, 76.940488 ], [ 68.840332, 76.547523 ], [ 68.159180, 76.237366 ], [ 64.621582, 75.742715 ], [ 61.567383, 75.264239 ], [ 58.469238, 74.313295 ], [ 56.975098, 73.334161 ], [ 55.415039, 72.375758 ], [ 55.612793, 71.545787 ], [ 57.524414, 70.721726 ], [ 56.931152, 70.634484 ], [ 53.657227, 70.765206 ], [ 53.393555, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.437988, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.426758, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.630926 ], [ 55.612793, 75.084326 ], [ 57.854004, 75.612262 ], [ 61.149902, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.137207, 76.940488 ] ] ], [ [ [ 50.031738, 80.921494 ], [ 51.503906, 80.700447 ], [ 51.130371, 80.550126 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.342262 ], [ 48.735352, 80.178713 ], [ 47.570801, 80.012423 ], [ 46.494141, 80.249670 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.593319 ], [ 46.779785, 80.774716 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.517603 ], [ 49.086914, 80.757086 ], [ 50.031738, 80.921494 ] ] ], [ [ [ 91.757812, 80.499486 ], [ 91.757812, 80.260828 ], [ 91.164551, 80.342262 ], [ 91.757812, 80.499486 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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": "Polygon", "coordinates": [ [ [ 20.632324, 69.107777 ], [ 21.972656, 68.624544 ], [ 23.532715, 67.941650 ], [ 23.554688, 66.513260 ], [ 23.554688, 66.399160 ], [ 23.884277, 66.009086 ], [ 22.653809, 65.802776 ], [ 14.655762, 65.802776 ], [ 15.095215, 66.196009 ], [ 15.380859, 66.513260 ], [ 16.765137, 68.015798 ], [ 17.709961, 68.015798 ], [ 17.973633, 68.568414 ], [ 19.863281, 68.407268 ], [ 20.017090, 69.068563 ], [ 20.632324, 69.107777 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 135.769043, -65.802776 ], [ 135.856934, -66.026947 ], [ 136.186523, -66.443107 ], [ 136.604004, -66.774586 ], [ 137.438965, -66.947274 ], [ 138.581543, -66.895596 ], [ 139.899902, -66.869715 ], [ 140.800781, -66.809221 ], [ 142.119141, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.184082, -67.221053 ], [ 145.986328, -67.600849 ], [ 146.645508, -67.892086 ], [ 148.820801, -68.382996 ], [ 150.117188, -68.560384 ], [ 151.479492, -68.712465 ], [ 152.490234, -68.871439 ], [ 153.632812, -68.887274 ], [ 154.270020, -68.560384 ], [ 155.148926, -68.831802 ], [ 155.917969, -69.146920 ], [ 156.796875, -69.380313 ], [ 158.005371, -69.480672 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.222311 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.828125, -70.714471 ], [ 164.904785, -70.772443 ], [ 166.113281, -70.750723 ], [ 167.299805, -70.830248 ], [ 168.420410, -70.966864 ], [ 169.453125, -71.201920 ], [ 170.485840, -71.399165 ], [ 171.188965, -71.691293 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.435535 ], [ 169.738770, -73.239377 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.365723, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.629883, -74.770072 ], [ 164.948730, -75.140778 ], [ 164.223633, -75.458589 ], [ 163.806152, -75.866646 ], [ 163.564453, -76.237366 ], [ 163.454590, -76.689906 ], [ 163.476562, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.729004, -78.179588 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.158943 ], [ 160.905762, -79.730364 ], [ 160.729980, -80.197436 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.278386 ], [ 161.608887, -81.688321 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.393703 ], [ 165.080566, -82.707031 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.387207, -83.825220 ], [ 172.265625, -84.041167 ], [ 173.210449, -84.412363 ], [ 175.979004, -84.158613 ], [ 178.264160, -84.471948 ], [ 180.000000, -84.712127 ], [ 180.000000, -85.200475 ], [ 88.242188, -85.200475 ], [ 88.242188, -66.390361 ], [ 88.352051, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.000000, -67.169955 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.110204 ], [ 92.592773, -67.187000 ], [ 93.537598, -67.204032 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.371094, -66.912834 ], [ 100.876465, -66.574483 ], [ 101.052246, -66.513260 ], [ 101.557617, -66.302205 ], [ 102.414551, -65.802776 ], [ 103.754883, -65.802776 ], [ 104.238281, -65.973325 ], [ 105.292969, -66.513260 ], [ 106.171875, -66.930060 ], [ 107.160645, -66.947274 ], [ 108.061523, -66.947274 ], [ 109.138184, -66.835165 ], [ 110.214844, -66.696478 ], [ 110.786133, -66.513260 ], [ 111.049805, -66.416748 ], [ 111.730957, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.367676, -66.071546 ], [ 114.895020, -66.381560 ], [ 115.180664, -66.513260 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.816895, -67.263552 ], [ 120.849609, -67.187000 ], [ 121.640625, -66.869715 ], [ 122.299805, -66.557007 ], [ 122.871094, -66.513260 ], [ 123.200684, -66.478208 ], [ 123.398438, -66.513260 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.713857 ], [ 126.079102, -66.557007 ], [ 126.979980, -66.557007 ], [ 128.781738, -66.757250 ], [ 129.682617, -66.574483 ], [ 130.166016, -66.513260 ], [ 130.781250, -66.416748 ], [ 131.791992, -66.381560 ], [ 132.934570, -66.381560 ], [ 134.736328, -66.204876 ], [ 134.978027, -65.802776 ], [ 135.769043, -65.802776 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 88.242188, -66.390361 ], [ 88.352051, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.307617, -67.204032 ], [ 88.242188, -67.204032 ], [ 88.242188, -66.390361 ] ] ], [ [ [ 92.592773, -67.187000 ], [ 93.295898, -67.204032 ], [ 90.812988, -67.204032 ], [ 91.582031, -67.110204 ], [ 92.592773, -67.187000 ] ] ], [ [ [ 95.009766, -67.169955 ], [ 95.119629, -67.204032 ], [ 93.581543, -67.204032 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ] ] ], [ [ [ 99.360352, -67.204032 ], [ 98.041992, -67.204032 ], [ 98.679199, -67.110204 ], [ 99.360352, -67.204032 ] ] ], [ [ [ 103.469238, -65.694476 ], [ 104.238281, -65.973325 ], [ 105.292969, -66.513260 ], [ 106.171875, -66.930060 ], [ 107.160645, -66.947274 ], [ 108.061523, -66.947274 ], [ 109.138184, -66.835165 ], [ 110.214844, -66.696478 ], [ 110.786133, -66.513260 ], [ 111.049805, -66.416748 ], [ 111.730957, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.367676, -66.071546 ], [ 114.895020, -66.381560 ], [ 115.180664, -66.513260 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.003906, -67.204032 ], [ 99.799805, -67.204032 ], [ 100.371094, -66.912834 ], [ 100.876465, -66.574483 ], [ 101.052246, -66.513260 ], [ 101.557617, -66.302205 ], [ 102.832031, -65.558460 ], [ 103.469238, -65.694476 ] ] ], [ [ [ 135.681152, -65.576636 ], [ 135.856934, -66.026947 ], [ 136.186523, -66.443107 ], [ 136.604004, -66.774586 ], [ 137.438965, -66.947274 ], [ 138.581543, -66.895596 ], [ 139.899902, -66.869715 ], [ 140.800781, -66.809221 ], [ 142.119141, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.118164, -67.204032 ], [ 120.673828, -67.204032 ], [ 120.849609, -67.187000 ], [ 121.640625, -66.869715 ], [ 122.299805, -66.557007 ], [ 122.871094, -66.513260 ], [ 123.200684, -66.478208 ], [ 123.398438, -66.513260 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.713857 ], [ 126.079102, -66.557007 ], [ 126.979980, -66.557007 ], [ 128.781738, -66.757250 ], [ 129.682617, -66.574483 ], [ 130.166016, -66.513260 ], [ 130.781250, -66.416748 ], [ 131.791992, -66.381560 ], [ 132.934570, -66.381560 ], [ 134.736328, -66.204876 ], [ 135.021973, -65.712557 ], [ 135.065918, -65.302650 ], [ 135.681152, -65.576636 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.741211, 1.757537 ], [ 114.609375, 1.450040 ], [ 113.796387, 1.230374 ], [ 112.851562, 1.515936 ], [ 112.368164, 1.428075 ], [ 111.796875, 0.922812 ], [ 111.137695, 0.988720 ], [ 110.500488, 0.790990 ], [ 109.819336, 1.340210 ], [ 109.709473, 1.757537 ], [ 110.192871, 1.757537 ], [ 110.390625, 1.669686 ], [ 110.764160, 1.757537 ], [ 114.741211, 1.757537 ] ] ], [ [ [ 104.172363, 1.757537 ], [ 104.238281, 1.647722 ], [ 104.216309, 1.296276 ], [ 103.513184, 1.230374 ], [ 102.832031, 1.757537 ], [ 104.172363, 1.757537 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Fiji", "sov_a3": "FJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Fiji", "adm0_a3": "FJI", "geou_dif": 0, "geounit": "Fiji", "gu_a3": "FJI", "su_dif": 0, "subunit": "Fiji", "su_a3": "FJI", "brk_diff": 0, "name": "Fiji", "name_long": "Fiji", "brk_a3": "FJI", "brk_name": "Fiji", "abbrev": "Fiji", "postal": "FJ", "formal_en": "Republic of Fiji", "name_sort": "Fiji", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 944720, "gdp_md_est": 3579, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "FJ", "iso_a3": "FJI", "iso_n3": "242", "un_a3": "242", "wb_a2": "FJ", "wb_a3": "FJI", "woe_id": -99, "adm0_a3_is": "FJI", "adm0_a3_us": "FJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.352051, -17.329664 ], [ 178.703613, -17.623082 ], [ 178.549805, -18.145852 ], [ 177.912598, -18.271086 ], [ 177.363281, -18.145852 ], [ 177.275391, -17.706828 ], [ 177.648926, -17.371610 ], [ 178.110352, -17.497389 ], [ 178.352051, -17.329664 ] ] ], [ [ [ 180.000000, -16.066929 ], [ 180.000000, -16.551962 ], [ 179.362793, -16.783506 ], [ 178.703613, -16.993755 ], [ 178.593750, -16.636192 ], [ 179.077148, -16.425548 ], [ 179.406738, -16.362310 ], [ 180.000000, -16.066929 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.958496, -8.885072 ], [ 125.068359, -9.080400 ], [ 125.068359, -9.384032 ], [ 124.431152, -10.120302 ], [ 123.574219, -10.358151 ], [ 123.442383, -10.228437 ], [ 123.530273, -9.882275 ], [ 123.969727, -9.275622 ], [ 124.958496, -8.885072 ] ] ], [ [ [ 119.882812, -9.340672 ], [ 120.410156, -9.665738 ], [ 120.761719, -9.968851 ], [ 120.695801, -10.228437 ], [ 120.278320, -10.250060 ], [ 118.959961, -9.557417 ], [ 119.882812, -9.340672 ] ] ], [ [ [ 132.363281, -0.351560 ], [ 133.967285, -0.769020 ], [ 134.143066, -1.142502 ], [ 134.406738, -2.767478 ], [ 135.439453, -3.359889 ], [ 136.274414, -2.306506 ], [ 137.438965, -1.691649 ], [ 138.317871, -1.691649 ], [ 139.174805, -2.043024 ], [ 139.921875, -2.394322 ], [ 140.998535, -2.591889 ], [ 141.020508, -9.102097 ], [ 140.141602, -8.276727 ], [ 139.108887, -8.080985 ], [ 138.867188, -8.363693 ], [ 137.592773, -8.407168 ], [ 138.032227, -7.580328 ], [ 138.647461, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.375398 ], [ 135.988770, -4.543570 ], [ 135.153809, -4.455951 ], [ 133.659668, -3.535352 ], [ 133.352051, -4.017699 ], [ 132.978516, -4.105369 ], [ 132.736816, -3.732708 ], [ 132.736816, -3.294082 ], [ 131.989746, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.231445, -2.196727 ], [ 131.835938, -1.603794 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.922812 ], [ 131.857910, -0.681136 ], [ 132.363281, -0.351560 ] ] ], [ [ [ 117.883301, -8.080985 ], [ 118.256836, -8.341953 ], [ 118.872070, -8.276727 ], [ 119.113770, -8.689639 ], [ 117.268066, -9.037003 ], [ 116.718750, -9.015302 ], [ 117.070312, -8.450639 ], [ 117.619629, -8.428904 ], [ 117.883301, -8.080985 ] ] ], [ [ [ 122.893066, -8.080985 ], [ 122.739258, -8.646196 ], [ 121.245117, -8.928487 ], [ 119.904785, -8.798225 ], [ 119.904785, -8.428904 ], [ 120.695801, -8.233237 ], [ 121.333008, -8.515836 ], [ 121.992188, -8.450639 ], [ 122.893066, -8.080985 ] ] ], [ [ [ 106.040039, -5.878332 ], [ 107.248535, -5.943900 ], [ 108.061523, -6.337137 ], [ 108.479004, -6.402648 ], [ 108.610840, -6.773716 ], [ 110.522461, -6.860985 ], [ 110.742188, -6.446318 ], [ 112.609863, -6.926427 ], [ 112.961426, -7.580328 ], [ 114.477539, -7.776309 ], [ 115.686035, -8.363693 ], [ 114.543457, -8.733077 ], [ 113.444824, -8.341953 ], [ 112.543945, -8.363693 ], [ 111.511230, -8.298470 ], [ 110.566406, -8.102739 ], [ 109.423828, -7.732765 ], [ 108.676758, -7.623887 ], [ 108.259277, -7.754537 ], [ 106.435547, -7.340675 ], [ 106.259766, -6.904614 ], [ 105.358887, -6.839170 ], [ 106.040039, -5.878332 ] ] ], [ [ [ 134.494629, -5.441022 ], [ 134.714355, -5.725311 ], [ 134.714355, -6.206090 ], [ 134.208984, -6.882800 ], [ 134.099121, -6.140555 ], [ 134.494629, -5.441022 ] ] ], [ [ [ 102.041016, 1.757537 ], [ 102.480469, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.820801, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.425293, -0.703107 ], [ 103.996582, -1.054628 ], [ 104.348145, -1.076597 ], [ 104.523926, -1.779499 ], [ 104.875488, -2.328460 ], [ 105.600586, -2.416276 ], [ 106.105957, -3.052754 ], [ 105.842285, -4.302591 ], [ 105.798340, -5.834616 ], [ 104.699707, -5.856475 ], [ 103.864746, -5.025283 ], [ 102.568359, -4.214943 ], [ 102.150879, -3.601142 ], [ 101.381836, -2.789425 ], [ 100.898438, -2.043024 ], [ 100.129395, -0.637194 ], [ 99.448242, 0.000000 ], [ 99.250488, 0.197754 ], [ 98.964844, 1.054628 ], [ 98.613281, 1.757537 ], [ 102.041016, 1.757537 ] ] ], [ [ [ 125.046387, 1.647722 ], [ 125.222168, 1.428075 ], [ 124.431152, 0.439449 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.395505 ], [ 120.168457, 0.241699 ], [ 120.124512, 0.000000 ], [ 120.036621, -0.505365 ], [ 120.915527, -1.406109 ], [ 121.464844, -0.944781 ], [ 123.332520, -0.615223 ], [ 123.244629, -1.054628 ], [ 122.805176, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.486816, -1.889306 ], [ 122.453613, -3.184394 ], [ 122.255859, -3.513421 ], [ 123.156738, -4.674980 ], [ 123.156738, -5.331644 ], [ 122.607422, -5.615986 ], [ 122.233887, -5.266008 ], [ 122.717285, -4.455951 ], [ 121.728516, -4.850154 ], [ 121.486816, -4.565474 ], [ 121.618652, -4.171115 ], [ 120.893555, -3.601142 ], [ 120.959473, -2.613839 ], [ 120.300293, -2.921097 ], [ 120.388184, -4.083453 ], [ 120.410156, -5.506640 ], [ 119.794922, -5.659719 ], [ 119.355469, -5.375398 ], [ 119.641113, -4.455951 ], [ 119.487305, -3.491489 ], [ 119.069824, -3.469557 ], [ 118.762207, -2.789425 ], [ 119.179688, -2.130856 ], [ 119.311523, -1.340210 ], [ 119.772949, 0.000000 ], [ 120.014648, 0.571280 ], [ 120.871582, 1.318243 ], [ 121.662598, 1.032659 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.046387, 1.647722 ] ] ], [ [ [ 117.949219, 1.757537 ], [ 118.981934, 0.922812 ], [ 117.795410, 0.790990 ], [ 117.465820, 0.109863 ], [ 117.465820, 0.000000 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.472006 ], [ 116.520996, -2.482133 ], [ 116.147461, -3.995781 ], [ 115.993652, -3.645000 ], [ 114.851074, -4.105369 ], [ 114.455566, -3.491489 ], [ 113.752441, -3.425692 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.687012, -2.986927 ], [ 111.027832, -3.030812 ], [ 110.214844, -2.921097 ], [ 110.061035, -1.581830 ], [ 109.555664, -1.296276 ], [ 109.072266, -0.439449 ], [ 109.006348, 0.000000 ], [ 108.940430, 0.417477 ], [ 109.050293, 1.362176 ], [ 109.423828, 1.757537 ], [ 109.709473, 1.757537 ], [ 109.819336, 1.340210 ], [ 110.500488, 0.790990 ], [ 111.137695, 0.988720 ], [ 111.796875, 0.922812 ], [ 112.368164, 1.428075 ], [ 112.851562, 1.515936 ], [ 113.796387, 1.230374 ], [ 114.609375, 1.450040 ], [ 114.741211, 1.757537 ], [ 117.949219, 1.757537 ] ] ], [ [ [ 129.353027, -2.789425 ], [ 130.451660, -3.074695 ], [ 130.825195, -3.842332 ], [ 129.990234, -3.425692 ], [ 129.133301, -3.359889 ], [ 128.583984, -3.425692 ], [ 127.880859, -3.381824 ], [ 128.122559, -2.833317 ], [ 129.353027, -2.789425 ] ] ], [ [ [ 126.979980, -3.118576 ], [ 127.243652, -3.447625 ], [ 126.870117, -3.776559 ], [ 126.166992, -3.601142 ], [ 125.969238, -3.162456 ], [ 126.979980, -3.118576 ] ] ], [ [ [ 127.968750, 1.757537 ], [ 127.990723, 1.647722 ], [ 128.583984, 1.559866 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.373533 ], [ 128.012695, 0.000000 ], [ 127.946777, -0.241699 ], [ 128.364258, -0.769020 ], [ 128.078613, -0.878872 ], [ 127.683105, -0.263671 ], [ 127.617188, 0.000000 ], [ 127.397461, 1.032659 ], [ 127.573242, 1.757537 ], [ 127.968750, 1.757537 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Papua New Guinea", "sov_a3": "PNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Papua New Guinea", "adm0_a3": "PNG", "geou_dif": 0, "geounit": "Papua New Guinea", "gu_a3": "PNG", "su_dif": 1, "subunit": "Papua New Guinea", "su_a3": "PN1", "brk_diff": 0, "name": "Papua New Guinea", "name_long": "Papua New Guinea", "brk_a3": "PN1", "brk_name": "Papua New Guinea", "abbrev": "P.N.G.", "postal": "PG", "formal_en": "Independent State of Papua New Guinea", "name_sort": "Papua New Guinea", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 6057263, "gdp_md_est": 13210, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PG", "iso_a3": "PNG", "iso_n3": "598", "un_a3": "598", "wb_a2": "PG", "wb_a3": "PNG", "woe_id": -99, "adm0_a3_is": "PNG", "adm0_a3_us": "PNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 16, "long_len": 16, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.998535, -2.591889 ], [ 142.734375, -3.272146 ], [ 144.580078, -3.842332 ], [ 145.261230, -4.368320 ], [ 145.810547, -4.872048 ], [ 145.964355, -5.462896 ], [ 147.634277, -6.075011 ], [ 147.875977, -6.599131 ], [ 146.953125, -6.708254 ], [ 147.172852, -7.384258 ], [ 148.073730, -8.037473 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.058702 ], [ 149.260254, -9.514079 ], [ 150.029297, -9.665738 ], [ 149.721680, -9.860628 ], [ 150.798340, -10.293301 ], [ 150.688477, -10.574222 ], [ 150.007324, -10.639014 ], [ 149.765625, -10.379765 ], [ 147.897949, -10.120302 ], [ 147.128906, -9.492408 ], [ 146.557617, -8.928487 ], [ 146.030273, -8.059230 ], [ 144.733887, -7.623887 ], [ 143.876953, -7.906912 ], [ 143.283691, -8.233237 ], [ 143.393555, -8.971897 ], [ 142.624512, -9.318990 ], [ 142.053223, -9.145486 ], [ 141.020508, -9.102097 ], [ 140.998535, -2.591889 ] ] ], [ [ [ 154.643555, -5.025283 ], [ 154.753418, -5.331644 ], [ 155.061035, -5.550381 ], [ 155.544434, -6.184246 ], [ 156.005859, -6.533645 ], [ 155.874023, -6.817353 ], [ 155.588379, -6.904614 ], [ 155.148926, -6.533645 ], [ 154.709473, -5.900189 ], [ 154.511719, -5.134715 ], [ 154.643555, -5.025283 ] ] ], [ [ [ 152.116699, -4.127285 ], [ 152.336426, -4.302591 ], [ 152.314453, -4.850154 ], [ 151.962891, -5.462896 ], [ 151.457520, -5.550381 ], [ 151.281738, -5.834616 ], [ 150.227051, -6.315299 ], [ 149.699707, -6.315299 ], [ 148.886719, -6.009459 ], [ 148.315430, -5.725311 ], [ 148.381348, -5.419148 ], [ 149.282227, -5.572250 ], [ 149.831543, -5.484768 ], [ 149.985352, -5.025283 ], [ 150.139160, -4.981505 ], [ 150.227051, -5.528511 ], [ 150.798340, -5.441022 ], [ 151.083984, -5.112830 ], [ 151.633301, -4.740675 ], [ 151.523438, -4.149201 ], [ 152.116699, -4.127285 ] ] ], [ [ [ 150.930176, -2.482133 ], [ 151.479492, -2.767478 ], [ 152.226562, -3.228271 ], [ 152.622070, -3.645000 ], [ 153.017578, -3.973861 ], [ 153.127441, -4.499762 ], [ 152.819824, -4.762573 ], [ 152.622070, -4.171115 ], [ 152.402344, -3.776559 ], [ 151.369629, -3.030812 ], [ 150.644531, -2.723583 ], [ 150.930176, -2.482133 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Vanuatu", "sov_a3": "VUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vanuatu", "adm0_a3": "VUT", "geou_dif": 0, "geounit": "Vanuatu", "gu_a3": "VUT", "su_dif": 0, "subunit": "Vanuatu", "su_a3": "VUT", "brk_diff": 0, "name": "Vanuatu", "name_long": "Vanuatu", "brk_a3": "VUT", "brk_name": "Vanuatu", "abbrev": "Van.", "postal": "VU", "formal_en": "Republic of Vanuatu", "name_sort": "Vanuatu", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 218519, "gdp_md_est": 988.5, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VU", "iso_a3": "VUT", "iso_n3": "548", "un_a3": "548", "wb_a2": "VU", "wb_a3": "VUT", "woe_id": -99, "adm0_a3_is": "VUT", "adm0_a3_us": "VUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": 2, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.211914, -15.876809 ], [ 167.827148, -16.446622 ], [ 167.497559, -16.594081 ], [ 167.167969, -16.151369 ], [ 167.211914, -15.876809 ] ] ], [ [ [ 166.618652, -14.626109 ], [ 167.102051, -14.923554 ], [ 167.255859, -15.728814 ], [ 166.992188, -15.601875 ], [ 166.772461, -15.665354 ], [ 166.640625, -15.390136 ], [ 166.618652, -14.626109 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 180.000000, 67.204032 ], [ 180.000000, 64.988651 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.614459 ], [ 178.308105, 64.081805 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.472656, 62.573106 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.658595 ], [ 172.133789, 60.951777 ], [ 170.683594, 60.337823 ], [ 170.310059, 59.888937 ], [ 168.881836, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.827637, 60.163376 ], [ 164.860840, 59.734253 ], [ 163.520508, 59.877912 ], [ 163.212891, 59.220934 ], [ 162.004395, 58.251727 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.621875 ], [ 163.037109, 56.170023 ], [ 162.114258, 56.133307 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.863963 ], [ 160.356445, 54.354956 ], [ 160.004883, 53.212612 ], [ 158.510742, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.774902, 51.013755 ], [ 156.401367, 51.713416 ], [ 155.983887, 53.159947 ], [ 155.412598, 55.391592 ], [ 155.895996, 56.776808 ], [ 156.752930, 57.373938 ], [ 156.796875, 57.833055 ], [ 158.356934, 58.066256 ], [ 160.136719, 59.321981 ], [ 161.850586, 60.348696 ], [ 163.652344, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.471724 ], [ 162.641602, 61.648162 ], [ 160.114746, 60.554579 ], [ 159.301758, 61.783513 ], [ 156.708984, 61.438767 ], [ 154.204102, 59.767460 ], [ 155.039062, 59.153403 ], [ 152.797852, 58.893296 ], [ 151.259766, 58.790978 ], [ 151.325684, 59.512029 ], [ 149.765625, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.344395 ], [ 142.185059, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.109863, 54.737308 ], [ 136.691895, 54.610255 ], [ 137.175293, 53.981935 ], [ 138.164062, 53.761702 ], [ 138.801270, 54.265224 ], [ 139.899902, 54.201010 ], [ 141.328125, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.581055, 51.248163 ], [ 140.493164, 50.050085 ], [ 140.053711, 48.458352 ], [ 138.537598, 47.010226 ], [ 138.208008, 46.316584 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.293200 ], [ 130.935059, 42.553080 ], [ 130.759277, 42.228517 ], [ 130.627441, 42.407235 ], [ 130.627441, 42.908160 ], [ 131.132812, 42.940339 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.980342 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.099121, 47.219568 ], [ 134.494629, 47.591346 ], [ 135.021973, 48.487486 ], [ 133.352051, 48.195387 ], [ 132.495117, 47.798397 ], [ 130.979004, 47.798397 ], [ 130.561523, 48.734455 ], [ 129.396973, 49.453843 ], [ 127.639160, 49.767074 ], [ 127.265625, 50.750359 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.795027 ], [ 125.925293, 52.802761 ], [ 125.046387, 53.173119 ], [ 123.552246, 53.461890 ], [ 122.233887, 53.435719 ], [ 120.981445, 53.252069 ], [ 120.168457, 52.762892 ], [ 120.717773, 52.522906 ], [ 120.717773, 51.971346 ], [ 120.168457, 51.645294 ], [ 119.267578, 50.583237 ], [ 119.267578, 50.148746 ], [ 117.861328, 49.525208 ], [ 116.674805, 49.894634 ], [ 115.466309, 49.809632 ], [ 114.960938, 50.148746 ], [ 114.345703, 50.261254 ], [ 112.895508, 49.553726 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.138597 ], [ 109.401855, 49.296472 ], [ 108.457031, 49.296472 ], [ 107.863770, 49.795450 ], [ 106.875000, 50.275299 ], [ 105.886230, 50.415519 ], [ 104.611816, 50.289339 ], [ 103.666992, 50.092393 ], [ 102.238770, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.876465, 51.522416 ], [ 99.975586, 51.645294 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.217773, 50.429518 ], [ 97.250977, 49.738682 ], [ 95.800781, 49.979488 ], [ 94.812012, 50.021858 ], [ 94.130859, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.219238, 50.805935 ], [ 90.703125, 50.345460 ], [ 90.000000, 50.021858 ], [ 88.791504, 49.482401 ], [ 88.242188, 49.382373 ], [ 88.242188, 67.204032 ], [ 180.000000, 67.204032 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.239746, 52.749594 ], [ 143.217773, 51.767840 ], [ 143.635254, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.845164 ], [ 143.503418, 46.149394 ], [ 142.734375, 46.754917 ], [ 142.075195, 45.981695 ], [ 141.899414, 46.815099 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.119141, 49.624946 ], [ 142.163086, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.774689 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 88.242188, 25.839449 ], [ 88.242188, 27.936181 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.117813 ], [ 89.736328, 26.725987 ], [ 90.000000, 26.784847 ], [ 90.351562, 26.882880 ], [ 91.208496, 26.824071 ], [ 92.021484, 26.843677 ], [ 92.087402, 27.469287 ], [ 91.691895, 27.780772 ], [ 92.482910, 27.897349 ], [ 93.405762, 28.652031 ], [ 94.548340, 29.286399 ], [ 95.383301, 29.036961 ], [ 96.108398, 29.458731 ], [ 96.569824, 28.844674 ], [ 96.240234, 28.420391 ], [ 97.316895, 28.265682 ], [ 97.382812, 27.897349 ], [ 97.031250, 27.702984 ], [ 97.119141, 27.098254 ], [ 96.416016, 27.274161 ], [ 95.119629, 26.588527 ], [ 95.141602, 26.017298 ], [ 94.592285, 25.165173 ], [ 94.548340, 24.686952 ], [ 94.086914, 23.865745 ], [ 93.317871, 24.086589 ], [ 93.273926, 23.059516 ], [ 93.054199, 22.715390 ], [ 93.164062, 22.289096 ], [ 92.658691, 22.044913 ], [ 92.131348, 23.644524 ], [ 91.867676, 23.624395 ], [ 91.691895, 22.998852 ], [ 91.142578, 23.503552 ], [ 91.450195, 24.086589 ], [ 91.911621, 24.146754 ], [ 92.373047, 24.986058 ], [ 91.779785, 25.165173 ], [ 90.856934, 25.145285 ], [ 90.000000, 25.264568 ], [ 89.912109, 25.284438 ], [ 89.824219, 25.977799 ], [ 89.340820, 26.017298 ], [ 88.549805, 26.450902 ], [ 88.242188, 25.839449 ] ] ], [ [ [ 88.242188, 24.447150 ], [ 88.681641, 24.246965 ], [ 88.527832, 23.644524 ], [ 88.857422, 22.897683 ], [ 89.011230, 22.065278 ], [ 88.879395, 21.698265 ], [ 88.242188, 21.718680 ], [ 88.242188, 24.447150 ] ] ], [ [ [ 88.242188, 25.760320 ], [ 88.923340, 25.244696 ], [ 88.286133, 24.866503 ], [ 88.242188, 24.766785 ], [ 88.242188, 25.760320 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.854980, 52.052490 ], [ 99.975586, 51.645294 ], [ 100.876465, 51.522416 ], [ 102.062988, 51.261915 ], [ 102.238770, 50.513427 ], [ 103.666992, 50.092393 ], [ 104.611816, 50.289339 ], [ 105.886230, 50.415519 ], [ 106.875000, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.457031, 49.296472 ], [ 109.401855, 49.296472 ], [ 110.654297, 49.138597 ], [ 111.577148, 49.382373 ], [ 112.895508, 49.553726 ], [ 114.345703, 50.261254 ], [ 114.960938, 50.148746 ], [ 115.466309, 49.809632 ], [ 116.674805, 49.894634 ], [ 116.191406, 49.138597 ], [ 115.466309, 48.136767 ], [ 115.729980, 47.739323 ], [ 116.301270, 47.857403 ], [ 117.290039, 47.709762 ], [ 118.059082, 48.078079 ], [ 118.850098, 47.754098 ], [ 119.750977, 47.055154 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.815099 ], [ 117.399902, 46.679594 ], [ 116.696777, 46.392411 ], [ 115.971680, 45.736860 ], [ 114.455566, 45.352145 ], [ 113.444824, 44.809122 ], [ 111.862793, 45.104546 ], [ 111.335449, 44.465151 ], [ 111.665039, 44.087585 ], [ 111.818848, 43.755225 ], [ 111.115723, 43.421009 ], [ 110.390625, 42.875964 ], [ 109.226074, 42.520700 ], [ 107.731934, 42.488302 ], [ 106.127930, 42.147114 ], [ 104.963379, 41.607228 ], [ 104.501953, 41.918629 ], [ 103.293457, 41.918629 ], [ 101.821289, 42.520700 ], [ 100.832520, 42.666281 ], [ 99.514160, 42.536892 ], [ 97.448730, 42.763146 ], [ 96.328125, 42.730874 ], [ 95.756836, 43.325178 ], [ 95.295410, 44.245199 ], [ 94.680176, 44.355278 ], [ 93.471680, 44.980342 ], [ 92.131348, 45.120053 ], [ 90.944824, 45.290347 ], [ 90.571289, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.263672, 47.694974 ], [ 90.000000, 47.768868 ], [ 88.835449, 48.078079 ], [ 88.242188, 48.458352 ], [ 88.242188, 49.382373 ], [ 88.791504, 49.482401 ], [ 90.000000, 50.021858 ], [ 90.703125, 50.345460 ], [ 92.219238, 50.805935 ], [ 93.098145, 50.499452 ], [ 94.130859, 50.485474 ], [ 94.812012, 50.021858 ], [ 95.800781, 49.979488 ], [ 97.250977, 49.738682 ], [ 98.217773, 50.429518 ], [ 97.822266, 51.013755 ], [ 98.854980, 52.052490 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bhutan", "sov_a3": "BTN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bhutan", "adm0_a3": "BTN", "geou_dif": 0, "geounit": "Bhutan", "gu_a3": "BTN", "su_dif": 0, "subunit": "Bhutan", "su_a3": "BTN", "brk_diff": 0, "name": "Bhutan", "name_long": "Bhutan", "brk_a3": "BTN", "brk_name": "Bhutan", "abbrev": "Bhutan", "postal": "BT", "formal_en": "Kingdom of Bhutan", "name_sort": "Bhutan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 691141, "gdp_md_est": 3524, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BT", "iso_a3": "BTN", "iso_n3": "064", "un_a3": "064", "wb_a2": "BT", "wb_a3": "BTN", "woe_id": -99, "adm0_a3_is": "BTN", "adm0_a3_us": "BTN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.000000, 28.304381 ], [ 90.725098, 28.071980 ], [ 91.252441, 28.052591 ], [ 91.691895, 27.780772 ], [ 92.087402, 27.469287 ], [ 92.021484, 26.843677 ], [ 91.208496, 26.824071 ], [ 90.351562, 26.882880 ], [ 90.000000, 26.784847 ], [ 89.736328, 26.725987 ], [ 88.835449, 27.117813 ], [ 88.813477, 27.313214 ], [ 89.472656, 28.052591 ], [ 90.000000, 28.304381 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.114258, 6.948239 ], [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 119.179688, 5.419148 ], [ 119.091797, 5.025283 ], [ 118.432617, 4.981505 ], [ 118.608398, 4.499762 ], [ 117.861328, 4.149201 ], [ 117.004395, 4.324501 ], [ 115.861816, 4.324501 ], [ 115.510254, 3.184394 ], [ 115.114746, 2.833317 ], [ 114.609375, 1.450040 ], [ 113.796387, 1.230374 ], [ 112.851562, 1.515936 ], [ 112.368164, 1.428075 ], [ 111.796875, 0.922812 ], [ 111.137695, 0.988720 ], [ 110.500488, 0.790990 ], [ 109.819336, 1.340210 ], [ 109.643555, 2.021065 ], [ 110.390625, 1.669686 ], [ 111.159668, 1.867345 ], [ 111.357422, 2.701635 ], [ 111.796875, 2.899153 ], [ 112.983398, 3.118576 ], [ 113.708496, 3.908099 ], [ 114.191895, 4.543570 ], [ 114.653320, 4.017699 ], [ 114.851074, 4.368320 ], [ 115.334473, 4.324501 ], [ 115.444336, 5.462896 ], [ 116.213379, 6.162401 ], [ 116.718750, 6.926427 ], [ 117.114258, 6.948239 ] ] ], [ [ [ 100.239258, 6.664608 ], [ 101.074219, 6.206090 ], [ 101.140137, 5.703448 ], [ 101.799316, 5.812757 ], [ 102.128906, 6.227934 ], [ 102.370605, 6.140555 ], [ 102.941895, 5.528511 ], [ 103.359375, 4.872048 ], [ 103.425293, 4.193030 ], [ 103.315430, 3.732708 ], [ 103.425293, 3.403758 ], [ 103.491211, 2.811371 ], [ 103.842773, 2.526037 ], [ 104.238281, 1.647722 ], [ 104.216309, 1.296276 ], [ 103.513184, 1.230374 ], [ 102.568359, 1.977147 ], [ 101.381836, 2.767478 ], [ 101.271973, 3.272146 ], [ 100.678711, 3.951941 ], [ 100.546875, 4.784469 ], [ 100.195312, 5.331644 ], [ 100.305176, 6.053161 ], [ 100.085449, 6.468151 ], [ 100.239258, 6.664608 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "name_sort": "Japan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "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": [ [ [ [ 141.350098, 41.393294 ], [ 141.899414, 39.993956 ], [ 141.877441, 39.181175 ], [ 140.954590, 38.186387 ], [ 140.954590, 37.142803 ], [ 140.581055, 36.350527 ], [ 140.756836, 35.853440 ], [ 140.251465, 35.155846 ], [ 138.955078, 34.669359 ], [ 137.197266, 34.615127 ], [ 135.791016, 33.468108 ], [ 135.109863, 33.852170 ], [ 135.065918, 34.597042 ], [ 133.330078, 34.379713 ], [ 132.143555, 33.906896 ], [ 130.979004, 33.888658 ], [ 131.989746, 33.155948 ], [ 131.330566, 31.466154 ], [ 130.671387, 31.034108 ], [ 130.187988, 31.428663 ], [ 130.429688, 32.324276 ], [ 129.814453, 32.620870 ], [ 129.396973, 33.302986 ], [ 130.341797, 33.614619 ], [ 130.869141, 34.234512 ], [ 131.879883, 34.759666 ], [ 132.604980, 35.442771 ], [ 134.604492, 35.746512 ], [ 135.659180, 35.532226 ], [ 136.713867, 37.317752 ], [ 137.373047, 36.844461 ], [ 139.416504, 38.220920 ], [ 140.053711, 39.453161 ], [ 139.877930, 40.563895 ], [ 140.295410, 41.195190 ], [ 141.350098, 41.393294 ] ] ], [ [ [ 133.901367, 34.379713 ], [ 134.626465, 34.161818 ], [ 134.758301, 33.815666 ], [ 134.187012, 33.211116 ], [ 133.791504, 33.523079 ], [ 133.264160, 33.302986 ], [ 133.000488, 32.713355 ], [ 132.341309, 32.990236 ], [ 132.363281, 33.468108 ], [ 132.912598, 34.070862 ], [ 133.483887, 33.961586 ], [ 133.901367, 34.379713 ] ] ], [ [ [ 141.965332, 45.552525 ], [ 143.129883, 44.512176 ], [ 143.898926, 44.182204 ], [ 144.602051, 43.961191 ], [ 145.305176, 44.386692 ], [ 145.524902, 43.277205 ], [ 144.052734, 42.988576 ], [ 143.173828, 42.000325 ], [ 141.591797, 42.682435 ], [ 141.064453, 41.590797 ], [ 139.943848, 41.574361 ], [ 139.812012, 42.569264 ], [ 140.295410, 43.341160 ], [ 141.372070, 43.389082 ], [ 141.657715, 44.777936 ], [ 141.965332, 45.552525 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.363281, -0.351560 ], [ 133.967285, -0.769020 ], [ 134.143066, -1.142502 ], [ 134.230957, -1.757537 ], [ 131.923828, -1.757537 ], [ 131.835938, -1.603794 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.922812 ], [ 131.857910, -0.681136 ], [ 132.363281, -0.351560 ] ] ], [ [ [ 125.046387, 1.647722 ], [ 125.222168, 1.428075 ], [ 124.431152, 0.439449 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.395505 ], [ 120.168457, 0.241699 ], [ 120.124512, 0.000000 ], [ 120.036621, -0.505365 ], [ 120.915527, -1.406109 ], [ 121.464844, -0.944781 ], [ 123.332520, -0.615223 ], [ 123.244629, -1.054628 ], [ 122.805176, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.838379, -1.757537 ], [ 119.245605, -1.757537 ], [ 119.311523, -1.340210 ], [ 119.772949, 0.000000 ], [ 120.014648, 0.571280 ], [ 120.871582, 1.318243 ], [ 121.662598, 1.032659 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.046387, 1.647722 ] ] ], [ [ [ 117.004395, 4.324501 ], [ 117.861328, 4.149201 ], [ 117.312012, 3.250209 ], [ 118.037109, 2.306506 ], [ 117.861328, 1.845384 ], [ 118.981934, 0.922812 ], [ 117.795410, 0.790990 ], [ 117.465820, 0.109863 ], [ 117.465820, 0.000000 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.472006 ], [ 116.542969, -1.757537 ], [ 110.083008, -1.757537 ], [ 110.061035, -1.581830 ], [ 109.555664, -1.296276 ], [ 109.072266, -0.439449 ], [ 109.006348, 0.000000 ], [ 108.940430, 0.417477 ], [ 109.050293, 1.362176 ], [ 109.643555, 2.021065 ], [ 109.819336, 1.340210 ], [ 110.500488, 0.790990 ], [ 111.137695, 0.988720 ], [ 111.796875, 0.922812 ], [ 112.368164, 1.428075 ], [ 112.851562, 1.515936 ], [ 113.796387, 1.230374 ], [ 114.609375, 1.450040 ], [ 115.114746, 2.833317 ], [ 115.510254, 3.184394 ], [ 115.861816, 4.324501 ], [ 117.004395, 4.324501 ] ] ], [ [ [ 95.273438, 5.484768 ], [ 95.932617, 5.441022 ], [ 97.470703, 5.266008 ], [ 98.349609, 4.280680 ], [ 99.140625, 3.601142 ], [ 99.689941, 3.184394 ], [ 100.634766, 2.108899 ], [ 101.645508, 2.086941 ], [ 102.480469, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.820801, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.425293, -0.703107 ], [ 103.996582, -1.054628 ], [ 104.348145, -1.076597 ], [ 104.523926, -1.757537 ], [ 100.722656, -1.757537 ], [ 100.129395, -0.637194 ], [ 99.448242, 0.000000 ], [ 99.250488, 0.197754 ], [ 98.964844, 1.054628 ], [ 98.591309, 1.845384 ], [ 97.690430, 2.460181 ], [ 97.163086, 3.316018 ], [ 96.416016, 3.886177 ], [ 95.361328, 4.981505 ], [ 95.273438, 5.484768 ] ] ], [ [ [ 138.449707, -1.757537 ], [ 137.329102, -1.757537 ], [ 137.438965, -1.691649 ], [ 138.317871, -1.691649 ], [ 138.449707, -1.757537 ] ] ], [ [ [ 127.924805, 2.174771 ], [ 127.990723, 1.647722 ], [ 128.583984, 1.559866 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.373533 ], [ 128.012695, 0.000000 ], [ 127.946777, -0.241699 ], [ 128.364258, -0.769020 ], [ 128.078613, -0.878872 ], [ 127.683105, -0.263671 ], [ 127.617188, 0.000000 ], [ 127.397461, 1.032659 ], [ 127.595215, 1.823423 ], [ 127.924805, 2.174771 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 104.348145, 77.702234 ], [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.226562, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.312988, 76.226907 ], [ 114.125977, 75.850541 ], [ 113.884277, 75.331158 ], [ 112.763672, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.379883, 74.182063 ], [ 110.632324, 74.043723 ], [ 112.104492, 73.788054 ], [ 113.005371, 73.977144 ], [ 113.510742, 73.340461 ], [ 113.950195, 73.596792 ], [ 115.554199, 73.757352 ], [ 118.762207, 73.590586 ], [ 119.003906, 73.124945 ], [ 123.178711, 72.977623 ], [ 123.244629, 73.738905 ], [ 125.375977, 73.565739 ], [ 126.958008, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.402350 ], [ 128.452148, 71.985784 ], [ 129.704590, 71.194838 ], [ 131.286621, 70.794139 ], [ 132.253418, 71.842539 ], [ 133.857422, 71.392155 ], [ 135.549316, 71.656749 ], [ 137.482910, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.855957, 71.490063 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.854981 ], [ 149.479980, 72.201963 ], [ 150.336914, 71.608283 ], [ 152.951660, 70.844673 ], [ 156.994629, 71.038390 ], [ 158.994141, 70.873491 ], [ 159.829102, 70.458859 ], [ 159.697266, 69.725722 ], [ 160.927734, 69.442128 ], [ 162.268066, 69.649446 ], [ 164.047852, 69.672358 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.588228 ], [ 169.562988, 68.696505 ], [ 170.815430, 69.021414 ], [ 170.002441, 69.657086 ], [ 170.441895, 70.103008 ], [ 173.627930, 69.824471 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 65.802776 ], [ 88.242188, 65.802776 ], [ 88.242188, 75.146412 ], [ 88.308105, 75.146412 ], [ 90.000000, 75.579466 ], [ 90.241699, 75.644984 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.844727, 76.142958 ], [ 96.657715, 75.920199 ], [ 98.920898, 76.450056 ], [ 100.744629, 76.434604 ], [ 101.030273, 76.865804 ], [ 101.975098, 77.288368 ], [ 104.348145, 77.702234 ] ] ], [ [ [ 180.000000, 71.517945 ], [ 180.000000, 70.837461 ], [ 178.901367, 70.786910 ], [ 178.703613, 71.102543 ], [ 180.000000, 71.517945 ] ] ], [ [ [ 142.053223, 73.861506 ], [ 143.481445, 73.478485 ], [ 143.591309, 73.214013 ], [ 142.075195, 73.207666 ], [ 140.031738, 73.321553 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.769640 ], [ 142.053223, 73.861506 ] ] ], [ [ [ 138.823242, 76.137695 ], [ 141.459961, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.850672 ], [ 138.955078, 74.613445 ], [ 136.955566, 75.264239 ], [ 137.504883, 75.952235 ], [ 138.823242, 76.137695 ] ] ], [ [ [ 146.337891, 75.497157 ], [ 148.205566, 75.347841 ], [ 150.710449, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.963867, 74.781612 ], [ 146.118164, 75.174549 ], [ 146.337891, 75.497157 ] ] ], [ [ [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ], [ 105.358887, 78.716316 ], [ 105.073242, 78.309408 ], [ 99.426270, 77.924866 ], [ 101.250000, 79.237185 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.932617, 81.251691 ], [ 97.866211, 80.750025 ], [ 100.173340, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.759229 ], [ 94.965820, 79.046790 ], [ 93.295898, 79.428340 ], [ 92.526855, 80.144924 ], [ 91.164551, 80.342262 ], [ 93.757324, 81.024916 ], [ 95.932617, 81.251691 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ -169.958496, -83.884025 ], [ -169.002686, -84.117096 ], [ -168.530273, -84.236362 ], [ -167.025146, -84.569506 ], [ -164.190674, -84.824323 ], [ -162.575684, -85.051129 ], [ -162.026367, -85.126373 ], [ -180.000000, -85.126373 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.066162, -84.138452 ], [ -177.264404, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.836182, -84.117096 ], [ -174.385986, -84.534040 ], [ -173.122559, -84.117096 ], [ -172.891846, -84.060524 ], [ -169.958496, -83.884025 ] ] ], [ [ [ -154.621582, -85.126373 ], [ -155.467529, -85.126373 ], [ -155.192871, -85.099230 ], [ -154.621582, -85.126373 ] ] ], [ [ [ -134.121094, -85.126373 ], [ -143.964844, -85.126373 ], [ -143.217773, -85.051129 ], [ -143.107910, -85.040693 ], [ -142.899170, -84.569506 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.687823 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.453094 ], [ -152.863770, -82.041178 ], [ -154.533691, -81.767353 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.159308 ], [ -152.105713, -81.002608 ], [ -150.655518, -81.336499 ], [ -148.875732, -81.042039 ], [ -147.227783, -80.670217 ], [ -146.425781, -80.336731 ], [ -146.777344, -79.926314 ], [ -148.073730, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.281250, -79.171335 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.434570, -79.004962 ], [ -134.121094, -79.004962 ], [ -134.121094, -85.126373 ] ] ], [ [ [ -159.576416, -79.004962 ], [ -159.488525, -79.044703 ], [ -159.411621, -79.171335 ], [ -159.213867, -79.496652 ], [ -161.136475, -79.633945 ], [ -162.443848, -79.280184 ], [ -162.630615, -79.171335 ], [ -162.905273, -79.004962 ], [ -159.576416, -79.004962 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ -163.114014, -78.222271 ], [ -161.246338, -78.378217 ], [ -160.246582, -78.692645 ], [ -159.488525, -79.044703 ], [ -159.411621, -79.171335 ], [ -159.312744, -79.335219 ], [ -162.246094, -79.335219 ], [ -162.443848, -79.280184 ], [ -162.630615, -79.171335 ], [ -163.037109, -78.927163 ], [ -163.070068, -78.867928 ], [ -163.718262, -78.595299 ], [ -163.114014, -78.222271 ] ] ], [ [ [ -135.219727, -74.301409 ], [ -135.000000, -74.316266 ], [ -134.439697, -74.360753 ], [ -134.121094, -74.396253 ], [ -134.121094, -79.335219 ], [ -150.347900, -79.335219 ], [ -151.589355, -79.298560 ], [ -153.281250, -79.171335 ], [ -153.391113, -79.161010 ], [ -155.335693, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.269287, -78.378217 ], [ -158.060303, -78.025574 ], [ -158.367920, -76.888253 ], [ -157.884521, -76.985098 ], [ -156.983643, -77.300449 ], [ -155.335693, -77.201045 ], [ -153.753662, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.336670, -77.396698 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.908177 ], [ -147.623291, -76.575609 ], [ -146.107178, -76.475773 ], [ -146.151123, -76.103435 ], [ -146.502686, -75.731888 ], [ -146.206055, -75.378379 ], [ -144.909668, -75.202634 ], [ -144.327393, -75.535625 ], [ -142.800293, -75.339502 ], [ -141.646729, -75.084326 ], [ -140.218506, -75.064518 ], [ -138.867188, -74.967942 ], [ -137.515869, -74.732508 ], [ -136.439209, -74.516956 ], [ -135.219727, -74.301409 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Fiji", "sov_a3": "FJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Fiji", "adm0_a3": "FJI", "geou_dif": 0, "geounit": "Fiji", "gu_a3": "FJI", "su_dif": 0, "subunit": "Fiji", "su_a3": "FJI", "brk_diff": 0, "name": "Fiji", "name_long": "Fiji", "brk_a3": "FJI", "brk_name": "Fiji", "abbrev": "Fiji", "postal": "FJ", "formal_en": "Republic of Fiji", "name_sort": "Fiji", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 944720, "gdp_md_est": 3579, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "FJ", "iso_a3": "FJI", "iso_n3": "242", "un_a3": "242", "wb_a2": "FJ", "wb_a3": "FJI", "woe_id": -99, "adm0_a3_is": "FJI", "adm0_a3_us": "FJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -179.802246, -16.014136 ], [ -179.923096, -16.499299 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.066929 ], [ -179.802246, -16.014136 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.272503 ], [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.072021, 19.859727 ], [ -154.808350, 19.518375 ], [ -154.841309, 19.456234 ], [ -155.544434, 19.093267 ], [ -155.698242, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.917969, 19.342245 ], [ -156.082764, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.983674 ], [ -155.928955, 20.179724 ], [ -155.863037, 20.272503 ] ] ], [ [ [ -156.621094, 21.012727 ], [ -156.258545, 20.920397 ], [ -156.005859, 20.766387 ], [ -156.082764, 20.653346 ], [ -156.423340, 20.581367 ], [ -156.588135, 20.786931 ], [ -156.708984, 20.869078 ], [ -156.719971, 20.930659 ], [ -156.621094, 21.012727 ] ] ], [ [ [ -157.258301, 21.227942 ], [ -156.763916, 21.186973 ], [ -156.796875, 21.074249 ], [ -157.335205, 21.105000 ], [ -157.258301, 21.227942 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.950439, 21.657428 ], [ -157.653809, 21.330315 ], [ -157.708740, 21.268900 ], [ -158.137207, 21.320081 ], [ -158.258057, 21.545066 ], [ -158.302002, 21.585935 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.892084 ], [ -159.807129, 22.075459 ], [ -159.752197, 22.146708 ], [ -159.598389, 22.238260 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -134.121094, 66.861082 ], [ -134.121094, 58.790978 ], [ -134.274902, 58.864905 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.327585 ], [ -135.483398, 59.789580 ], [ -136.483154, 59.467408 ], [ -137.460938, 58.910319 ], [ -138.350830, 59.562158 ], [ -139.042969, 60.004479 ], [ -140.020752, 60.277962 ], [ -140.998535, 60.310627 ], [ -140.998535, 66.861082 ], [ -134.121094, 66.861082 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -140.998535, 66.861082 ], [ -140.998535, 60.310627 ], [ -140.020752, 60.277962 ], [ -139.042969, 60.004479 ], [ -138.350830, 59.562158 ], [ -137.460938, 58.910319 ], [ -136.483154, 59.467408 ], [ -135.483398, 59.789580 ], [ -135.000000, 59.327585 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.864905 ], [ -134.121094, 58.790978 ], [ -134.121094, 58.130121 ], [ -135.000000, 58.188080 ], [ -136.636963, 58.217025 ], [ -137.801514, 58.505175 ], [ -139.877930, 59.539888 ], [ -142.580566, 60.086763 ], [ -143.964844, 60.004479 ], [ -145.931396, 60.462634 ], [ -147.117920, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.982502 ], [ -148.579102, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.372391 ], [ -151.721191, 59.159036 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.037012 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.732315 ], [ -152.589111, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.313721, 57.733485 ], [ -156.313477, 57.427210 ], [ -156.566162, 56.980911 ], [ -158.126221, 56.468560 ], [ -158.433838, 55.998381 ], [ -159.609375, 55.572134 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.246094, 55.028022 ], [ -163.070068, 54.692884 ], [ -164.794922, 54.406143 ], [ -164.948730, 54.578430 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.219608 ], [ -157.730713, 57.574779 ], [ -157.554932, 58.332567 ], [ -157.049561, 58.921664 ], [ -158.203125, 58.619777 ], [ -158.521729, 58.790978 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.074448 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.676938 ], [ -162.059326, 59.271495 ], [ -161.883545, 59.634435 ], [ -162.520752, 59.993492 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.272515 ], [ -165.355225, 60.511343 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.078171 ], [ -164.926758, 62.633770 ], [ -164.564209, 63.149393 ], [ -163.762207, 63.223730 ], [ -163.070068, 63.059937 ], [ -162.268066, 63.543658 ], [ -161.542969, 63.460329 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.225493 ], [ -161.520996, 64.406431 ], [ -160.784912, 64.792848 ], [ -161.400146, 64.778807 ], [ -162.454834, 64.562601 ], [ -162.762451, 64.339908 ], [ -163.553467, 64.562601 ], [ -164.970703, 64.449111 ], [ -166.431885, 64.689713 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.578851 ], [ -163.663330, 66.578851 ], [ -163.674316, 66.513260 ], [ -163.795166, 66.080457 ], [ -161.685791, 66.120515 ], [ -162.202148, 66.513260 ], [ -162.498779, 66.739902 ], [ -162.894287, 66.861082 ], [ -140.998535, 66.861082 ] ] ], [ [ [ -153.237305, 57.973157 ], [ -152.567139, 57.903174 ], [ -152.149658, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.740674 ], [ -154.522705, 56.992883 ], [ -154.676514, 57.462681 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.973157 ] ] ], [ [ [ -166.475830, 60.386720 ], [ -165.684814, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.464600, 60.217991 ], [ -166.475830, 60.386720 ] ] ], [ [ [ -171.738281, 63.787339 ], [ -171.123047, 63.592562 ], [ -170.496826, 63.694987 ], [ -169.683838, 63.435774 ], [ -168.695068, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.980189 ], [ -170.299072, 63.198973 ], [ -170.672607, 63.376756 ], [ -171.562500, 63.322549 ], [ -171.793213, 63.406280 ], [ -171.738281, 63.787339 ] ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ -171.749268, 66.861082 ], [ -171.013184, 66.513260 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.544819 ], [ -172.540283, 65.440002 ], [ -172.562256, 64.463323 ], [ -172.957764, 64.254141 ], [ -173.902588, 64.282760 ], [ -174.660645, 64.633292 ], [ -175.989990, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.363037, 65.394298 ], [ -178.912354, 65.744170 ], [ -178.692627, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.439697, 65.408017 ], [ -180.000000, 64.984005 ], [ -180.000000, 66.861082 ], [ -174.979248, 66.861082 ], [ -175.023193, 66.587583 ], [ -174.825439, 66.513260 ], [ -174.342041, 66.337505 ], [ -174.396973, 66.513260 ], [ -174.517822, 66.861082 ], [ -171.749268, 66.861082 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -140.987549, 69.714298 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.993864 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.318320 ], [ -135.000000, 69.480672 ], [ -134.417725, 69.630335 ], [ -134.121094, 69.603549 ], [ -134.121094, 66.160511 ], [ -140.998535, 66.160511 ], [ -140.998535, 66.513260 ], [ -140.987549, 69.714298 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.663330, 66.578851 ], [ -163.674316, 66.513260 ], [ -163.773193, 66.160511 ], [ -166.387939, 66.160511 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.578851 ], [ -163.663330, 66.578851 ] ] ], [ [ [ -155.072021, 71.148745 ], [ -154.346924, 70.699951 ], [ -153.907471, 70.891482 ], [ -152.215576, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.433120 ], [ -149.721680, 70.532222 ], [ -147.623291, 70.214875 ], [ -145.700684, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.987549, 69.714298 ], [ -140.998535, 66.513260 ], [ -140.998535, 66.160511 ], [ -161.740723, 66.160511 ], [ -162.202148, 66.513260 ], [ -162.498779, 66.739902 ], [ -163.729248, 67.118748 ], [ -164.432373, 67.617589 ], [ -165.399170, 68.044569 ], [ -166.772461, 68.362750 ], [ -166.212158, 68.883316 ], [ -164.432373, 68.918910 ], [ -163.168945, 69.372573 ], [ -162.938232, 69.858546 ], [ -161.916504, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.049072, 70.895078 ], [ -158.126221, 70.826640 ], [ -156.588135, 71.360578 ], [ -155.072021, 71.148745 ] ] ] ] } } +, +{ "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": [ [ [ [ -180.000000, 68.966279 ], [ -177.550049, 68.200133 ], [ -174.935303, 67.208289 ], [ -175.023193, 66.587583 ], [ -174.825439, 66.513260 ], [ -174.342041, 66.337505 ], [ -174.396973, 66.513260 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.917142 ], [ -171.013184, 66.513260 ], [ -170.288086, 66.160511 ], [ -180.000000, 66.160511 ], [ -180.000000, 68.966279 ] ] ], [ [ [ -179.879150, 71.559692 ], [ -179.033203, 71.556217 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.134540 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.517945 ], [ -179.879150, 71.559692 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -89.121094, -79.004962 ], [ -89.121094, -85.126373 ], [ -135.878906, -85.126373 ], [ -135.878906, -79.004962 ], [ -89.121094, -79.004962 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ -89.230957, -72.557792 ], [ -89.121094, -72.616970 ], [ -89.121094, -79.335219 ], [ -135.878906, -79.335219 ], [ -135.878906, -74.419877 ], [ -135.219727, -74.301409 ], [ -135.000000, -74.316266 ], [ -134.439697, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.264404, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.561768, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.408936, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.080322, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.476807, -74.025591 ], [ -116.224365, -74.241846 ], [ -115.026855, -74.064850 ], [ -113.950195, -73.714276 ], [ -113.302002, -74.025591 ], [ -112.950439, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.072021, -74.790261 ], [ -108.720703, -74.907988 ], [ -107.567139, -75.182980 ], [ -106.149902, -75.123864 ], [ -104.886475, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.645752, -75.300523 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.260986, -74.185058 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.337402, -73.359348 ], [ -103.688965, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.612549, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.556412 ], [ -96.339111, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.680420, -73.283674 ], [ -92.449951, -73.163173 ], [ -91.428223, -73.400199 ], [ -90.098877, -73.321553 ], [ -90.000000, -73.245712 ], [ -89.230957, -72.557792 ] ] ], [ [ [ -122.409668, -73.321553 ], [ -121.212158, -73.500341 ], [ -119.926758, -73.655637 ], [ -118.729248, -73.478485 ], [ -119.300537, -73.833999 ], [ -120.234375, -74.085951 ], [ -121.629639, -74.010467 ], [ -122.629395, -73.655637 ], [ -122.409668, -73.321553 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.478485 ], [ -124.035645, -73.870665 ], [ -124.628906, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.711426, -71.715436 ], [ -100.437012, -71.852807 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.207275, -72.518231 ], [ -96.987305, -72.442164 ], [ -98.206787, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.498419 ], [ -101.810303, -72.302431 ], [ -102.337646, -71.893824 ], [ -101.711426, -71.715436 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 41.640078 ], [ -89.121094, 30.325471 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.439697, 29.496988 ], [ -89.219971, 29.295981 ], [ -89.417725, 29.161756 ], [ -89.780273, 29.315141 ], [ -90.000000, 29.200123 ], [ -90.164795, 29.123373 ], [ -90.889893, 29.152161 ], [ -91.636963, 29.678508 ], [ -92.504883, 29.554345 ], [ -93.229980, 29.792984 ], [ -93.856201, 29.716681 ], [ -94.691162, 29.487425 ], [ -95.603027, 28.738764 ], [ -96.602783, 28.314053 ], [ -97.141113, 27.839076 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.696545 ], [ -97.338867, 26.214591 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.849337 ], [ -98.250732, 26.066652 ], [ -99.030762, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.547242 ], [ -100.118408, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.964355, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.117676, 28.979312 ], [ -103.941650, 29.276816 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.090574 ], [ -106.149902, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.248291, 31.756196 ], [ -108.248291, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.312988, 32.045333 ], [ -114.818115, 32.528289 ], [ -114.730225, 32.722599 ], [ -115.993652, 32.620870 ], [ -117.136230, 32.537552 ], [ -117.301025, 33.054716 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.034453 ], [ -119.091797, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.377197, 34.452218 ], [ -120.629883, 34.615127 ], [ -120.750732, 35.164828 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.117272 ], [ -123.728027, 38.959409 ], [ -123.870850, 39.774769 ], [ -124.398193, 40.321420 ], [ -124.222412, 40.979898 ], [ -124.189453, 41.145570 ], [ -124.200439, 41.640078 ], [ -89.121094, 41.640078 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.730225, 32.722599 ], [ -114.818115, 32.528289 ], [ -113.312988, 32.045333 ], [ -111.027832, 31.334871 ], [ -108.248291, 31.344254 ], [ -108.248291, 31.756196 ], [ -106.512451, 31.756196 ], [ -106.149902, 31.400535 ], [ -105.633545, 31.090574 ], [ -105.040283, 30.647364 ], [ -104.710693, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.276816 ], [ -103.117676, 28.979312 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.964355, 29.382175 ], [ -100.458984, 28.700225 ], [ -100.118408, 28.110749 ], [ -99.525146, 27.547242 ], [ -99.305420, 26.843677 ], [ -99.030762, 26.372185 ], [ -98.250732, 26.066652 ], [ -97.536621, 25.849337 ], [ -97.141113, 25.878994 ], [ -97.536621, 24.996016 ], [ -97.712402, 24.277012 ], [ -97.778320, 22.938160 ], [ -97.877197, 22.451649 ], [ -97.701416, 21.902278 ], [ -97.393799, 21.412162 ], [ -97.196045, 20.643066 ], [ -96.525879, 19.901054 ], [ -96.295166, 19.321511 ], [ -95.910645, 18.833515 ], [ -94.844971, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.559570, 18.427502 ], [ -92.790527, 18.531700 ], [ -92.043457, 18.708692 ], [ -91.417236, 18.885498 ], [ -90.780029, 19.290406 ], [ -90.538330, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -90.000000, 21.115249 ], [ -89.604492, 21.268900 ], [ -89.121094, 21.371244 ], [ -89.121094, 17.968283 ], [ -89.154053, 17.957832 ], [ -89.154053, 17.811456 ], [ -90.000000, 17.821916 ], [ -91.010742, 17.821916 ], [ -91.010742, 17.256236 ], [ -91.461182, 17.256236 ], [ -91.087646, 16.920195 ], [ -90.714111, 16.688817 ], [ -90.604248, 16.478230 ], [ -90.439453, 16.415009 ], [ -90.472412, 16.077486 ], [ -91.757812, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.072124 ], [ -92.208252, 14.838612 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.623037 ], [ -93.878174, 15.940202 ], [ -94.702148, 16.204125 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.760536 ], [ -96.558838, 15.654776 ], [ -97.272949, 15.919074 ], [ -98.020020, 16.109153 ], [ -98.953857, 16.573023 ], [ -99.700928, 16.709863 ], [ -100.832520, 17.172283 ], [ -101.667480, 17.654491 ], [ -101.920166, 17.926476 ], [ -102.480469, 17.978733 ], [ -103.502197, 18.302381 ], [ -103.919678, 18.750310 ], [ -104.996338, 19.321511 ], [ -105.501709, 19.952696 ], [ -105.732422, 20.437308 ], [ -105.402832, 20.540221 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.084500 ], [ -105.270996, 21.422390 ], [ -105.611572, 21.871695 ], [ -105.699463, 22.278931 ], [ -106.029053, 22.776182 ], [ -106.918945, 23.775291 ], [ -107.918701, 24.557116 ], [ -108.402100, 25.175117 ], [ -109.270020, 25.582085 ], [ -109.445801, 25.829561 ], [ -109.291992, 26.450902 ], [ -109.808350, 26.676913 ], [ -110.401611, 27.166695 ], [ -110.643311, 27.868217 ], [ -111.181641, 27.945886 ], [ -111.763916, 28.468691 ], [ -112.236328, 28.960089 ], [ -112.280273, 29.267233 ], [ -112.818604, 30.021544 ], [ -113.170166, 30.789037 ], [ -113.159180, 31.175210 ], [ -113.873291, 31.569175 ], [ -114.213867, 31.531726 ], [ -114.785156, 31.802893 ], [ -114.938965, 31.400535 ], [ -114.774170, 30.921076 ], [ -114.675293, 30.164126 ], [ -114.334717, 29.754840 ], [ -113.598633, 29.065773 ], [ -113.433838, 28.835050 ], [ -113.280029, 28.758028 ], [ -113.148193, 28.420391 ], [ -112.972412, 28.430053 ], [ -112.763672, 27.780772 ], [ -112.467041, 27.527758 ], [ -112.247314, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.291504, 25.740529 ], [ -110.994873, 25.304304 ], [ -110.720215, 24.826625 ], [ -110.665283, 24.307053 ], [ -110.181885, 24.266997 ], [ -109.775391, 23.815501 ], [ -109.412842, 23.372514 ], [ -109.434814, 23.190863 ], [ -109.863281, 22.826820 ], [ -110.039062, 22.826820 ], [ -110.302734, 23.433009 ], [ -110.950928, 24.006326 ], [ -111.676025, 24.487149 ], [ -112.192383, 24.746831 ], [ -112.159424, 25.473033 ], [ -112.302246, 26.017298 ], [ -113.466797, 26.775039 ], [ -113.598633, 26.647459 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.147145 ], [ -115.059814, 27.732161 ], [ -114.982910, 27.800210 ], [ -114.576416, 27.741885 ], [ -114.202881, 28.120439 ], [ -114.169922, 28.574874 ], [ -114.938965, 29.286399 ], [ -115.521240, 29.563902 ], [ -116.729736, 31.644029 ], [ -117.136230, 32.537552 ], [ -115.993652, 32.620870 ], [ -114.730225, 32.722599 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guatemala", "sov_a3": "GTM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guatemala", "adm0_a3": "GTM", "geou_dif": 0, "geounit": "Guatemala", "gu_a3": "GTM", "su_dif": 0, "subunit": "Guatemala", "su_a3": "GTM", "brk_diff": 0, "name": "Guatemala", "name_long": "Guatemala", "brk_a3": "GTM", "brk_name": "Guatemala", "abbrev": "Guat.", "postal": "GT", "formal_en": "Republic of Guatemala", "name_sort": "Guatemala", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 13276517, "gdp_md_est": 68580, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GT", "iso_a3": "GTM", "iso_n3": "320", "un_a3": "320", "wb_a2": "GT", "wb_a3": "GTM", "woe_id": -99, "adm0_a3_is": "GTM", "adm0_a3_us": "GTM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.821916 ], [ -89.154053, 17.811456 ], [ -89.154053, 17.025273 ], [ -89.230957, 15.887376 ], [ -89.121094, 15.887376 ], [ -89.121094, 15.093339 ], [ -89.165039, 15.072124 ], [ -89.230957, 14.881087 ], [ -89.154053, 14.679254 ], [ -89.362793, 14.434680 ], [ -89.593506, 14.370834 ], [ -89.538574, 14.253735 ], [ -89.725342, 14.136576 ], [ -90.000000, 13.934067 ], [ -90.065918, 13.891411 ], [ -90.098877, 13.742053 ], [ -90.615234, 13.912740 ], [ -91.241455, 13.934067 ], [ -91.691895, 14.136576 ], [ -92.230225, 14.541050 ], [ -92.208252, 14.838612 ], [ -92.087402, 15.072124 ], [ -92.230225, 15.252389 ], [ -91.757812, 16.066929 ], [ -90.472412, 16.077486 ], [ -90.439453, 16.415009 ], [ -90.604248, 16.478230 ], [ -90.714111, 16.688817 ], [ -91.087646, 16.920195 ], [ -91.461182, 17.256236 ], [ -91.010742, 17.256236 ], [ -91.010742, 17.821916 ], [ -90.000000, 17.821916 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Belize", "sov_a3": "BLZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belize", "adm0_a3": "BLZ", "geou_dif": 0, "geounit": "Belize", "gu_a3": "BLZ", "su_dif": 0, "subunit": "Belize", "su_a3": "BLZ", "brk_diff": 0, "name": "Belize", "name_long": "Belize", "brk_a3": "BLZ", "brk_name": "Belize", "abbrev": "Belize", "postal": "BZ", "formal_en": "Belize", "name_sort": "Belize", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 307899, "gdp_md_est": 2536, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BZ", "iso_a3": "BLZ", "iso_n3": "084", "un_a3": "084", "wb_a2": "BZ", "wb_a3": "BLZ", "woe_id": -99, "adm0_a3_is": "BLZ", "adm0_a3_us": "BLZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 17.968283 ], [ -89.121094, 15.887376 ], [ -89.230957, 15.887376 ], [ -89.154053, 17.025273 ], [ -89.154053, 17.957832 ], [ -89.121094, 17.968283 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -89.121094, 66.861082 ], [ -89.121094, 64.072200 ], [ -89.923096, 64.033744 ], [ -90.000000, 63.990418 ], [ -90.714111, 63.612100 ], [ -90.780029, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.026682 ], [ -94.251709, 60.903731 ], [ -94.636230, 60.114145 ], [ -94.691162, 58.950008 ], [ -93.218994, 58.785285 ], [ -92.768555, 57.850598 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.284981 ], [ -90.000000, 57.076575 ], [ -89.121094, 56.872996 ], [ -89.121094, 48.070738 ], [ -89.274902, 48.026672 ], [ -89.604492, 48.011975 ], [ -90.000000, 48.100095 ], [ -90.834961, 48.275882 ], [ -91.647949, 48.144098 ], [ -92.614746, 48.451066 ], [ -93.636475, 48.611122 ], [ -94.339600, 48.676454 ], [ -94.647217, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.163574, 49.389524 ], [ -95.163574, 49.001844 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.422519 ], [ -127.441406, 50.833698 ], [ -128.001709, 51.720223 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.807017 ], [ -129.990234, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.715088, 56.553428 ], [ -132.736816, 57.698277 ], [ -133.363037, 58.413223 ], [ -134.274902, 58.864905 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.327585 ], [ -135.483398, 59.789580 ], [ -135.878906, 59.662192 ], [ -135.878906, 66.861082 ], [ -89.121094, 66.861082 ] ] ], [ [ [ -128.364258, 50.771208 ], [ -127.309570, 50.555325 ], [ -126.705322, 50.401515 ], [ -125.760498, 50.296358 ], [ -124.925537, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.519287, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.859131, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.067627, 50.000678 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.771208 ] ] ], [ [ [ -133.187256, 54.175297 ], [ -132.714844, 54.040038 ], [ -131.759033, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.187744, 52.180669 ], [ -131.583252, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.416080 ], [ -133.242188, 53.852527 ], [ -133.187256, 54.175297 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -94.822998, 49.389524 ], [ -94.647217, 48.843028 ], [ -94.339600, 48.676454 ], [ -93.636475, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.647949, 48.144098 ], [ -90.834961, 48.275882 ], [ -90.000000, 48.100095 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.026672 ], [ -89.121094, 48.070738 ], [ -89.121094, 40.313043 ], [ -124.398193, 40.313043 ], [ -124.222412, 40.979898 ], [ -124.189453, 41.145570 ], [ -124.222412, 42.000325 ], [ -124.541016, 42.771211 ], [ -124.145508, 43.715535 ], [ -123.903809, 45.529441 ], [ -124.090576, 46.867703 ], [ -124.398193, 47.724545 ], [ -124.694824, 48.188063 ], [ -124.573975, 48.385442 ], [ -123.123779, 48.041365 ], [ -122.596436, 47.100045 ], [ -122.343750, 47.361153 ], [ -122.508545, 48.180739 ], [ -122.849121, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.163574, 49.389524 ], [ -94.822998, 49.389524 ] ] ], [ [ [ -135.483398, 59.789580 ], [ -135.000000, 59.327585 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.864905 ], [ -133.363037, 58.413223 ], [ -132.736816, 57.698277 ], [ -131.715088, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.990234, 55.285372 ], [ -130.539551, 54.807017 ], [ -131.088867, 55.185141 ], [ -131.967773, 55.503750 ], [ -132.253418, 56.371335 ], [ -133.549805, 57.183902 ], [ -134.088135, 58.124320 ], [ -135.000000, 58.188080 ], [ -135.043945, 58.188080 ], [ -135.878906, 58.205450 ], [ -135.878906, 59.662192 ], [ -135.483398, 59.789580 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -95.218506, 71.921119 ], [ -93.900146, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.527100, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.499918 ], [ -90.560303, 68.475895 ], [ -90.000000, 68.804014 ], [ -89.219971, 69.260040 ], [ -89.121094, 69.209404 ], [ -89.121094, 66.160511 ], [ -135.878906, 66.160511 ], [ -135.878906, 69.197702 ], [ -135.626221, 69.318320 ], [ -135.000000, 69.480672 ], [ -134.417725, 69.630335 ], [ -132.934570, 69.507612 ], [ -131.440430, 69.945375 ], [ -129.803467, 70.196272 ], [ -129.111328, 69.782749 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.484566 ], [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.431152, 70.159017 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.684326, 69.858546 ], [ -121.475830, 69.797930 ], [ -119.948730, 69.380313 ], [ -117.608643, 69.013546 ], [ -116.235352, 68.843700 ], [ -115.257568, 68.907051 ], [ -113.906250, 68.399180 ], [ -115.312500, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.819580, 68.314087 ], [ -108.171387, 68.656555 ], [ -106.951904, 68.700496 ], [ -106.160889, 68.800041 ], [ -105.347900, 68.564399 ], [ -104.348145, 68.019910 ], [ -103.227539, 68.097907 ], [ -101.458740, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.448486, 67.784335 ], [ -98.569336, 68.407268 ], [ -97.679443, 68.580453 ], [ -96.130371, 68.240896 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.093808 ], [ -94.691162, 68.065098 ], [ -94.240723, 69.072488 ], [ -95.306396, 69.687618 ], [ -96.481934, 70.091788 ], [ -96.394043, 71.194838 ], [ -95.218506, 71.921119 ] ] ], [ [ [ -98.228760, 70.144096 ], [ -97.163086, 69.862328 ], [ -96.558838, 69.683804 ], [ -95.657959, 69.107777 ], [ -96.273193, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.954446 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.228760, 70.144096 ] ] ], [ [ [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ], [ -114.675293, 72.653038 ], [ -112.445068, 72.958315 ], [ -111.060791, 72.452104 ], [ -109.929199, 72.961534 ], [ -109.017334, 72.633374 ], [ -108.193359, 71.653291 ], [ -107.687988, 72.067147 ], [ -108.402100, 73.089829 ], [ -107.523193, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.701644 ], [ -104.468994, 70.995506 ], [ -102.788086, 70.499241 ], [ -100.986328, 70.024341 ], [ -101.096191, 69.588228 ], [ -102.733154, 69.507612 ], [ -102.095947, 69.123443 ], [ -102.436523, 68.756296 ], [ -104.249268, 68.911005 ], [ -105.963135, 69.182089 ], [ -107.127686, 69.119527 ], [ -109.006348, 68.780168 ], [ -111.544189, 68.632551 ], [ -113.323975, 68.536276 ], [ -113.862305, 69.009611 ], [ -115.224609, 69.283371 ], [ -116.114502, 69.170373 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.069330 ], [ -115.136719, 70.240890 ], [ -113.730469, 70.192550 ], [ -112.423096, 70.366783 ], [ -114.356689, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.543203 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.311357 ], [ -117.663574, 71.297270 ], [ -119.410400, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.872314, 72.708638 ], [ -115.191650, 73.315246 ] ] ], [ [ [ -89.121094, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.587473 ], [ -90.208740, 72.235514 ], [ -90.000000, 72.478584 ], [ -89.439697, 73.131322 ], [ -89.121094, 73.258376 ], [ -89.121094, 71.223149 ] ] ], [ [ [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ], [ -117.564697, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.521240, 73.475361 ], [ -116.773682, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.821986 ], [ -120.465088, 71.385142 ], [ -123.101807, 70.902268 ], [ -123.629150, 71.343013 ], [ -125.936279, 71.869909 ], [ -125.507812, 72.292409 ], [ -124.815674, 73.022592 ], [ -123.947754, 73.680352 ], [ -124.925537, 74.295463 ], [ -121.541748, 74.449358 ] ] ], [ [ [ -100.360107, 73.846230 ], [ -99.173584, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.130127, 73.472235 ], [ -98.063965, 72.993696 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.276122 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.832295 ], [ -100.447998, 72.708638 ], [ -101.546631, 73.362494 ], [ -100.360107, 73.846230 ] ] ], [ [ [ -94.504395, 74.137081 ], [ -92.427979, 74.101006 ], [ -90.516357, 73.858452 ], [ -92.010498, 72.967971 ], [ -93.197021, 72.773828 ], [ -94.273682, 72.026510 ], [ -95.416260, 72.063764 ], [ -96.042480, 72.942209 ], [ -96.020508, 73.437821 ], [ -95.504150, 73.864559 ], [ -94.504395, 74.137081 ] ] ], [ [ [ -105.260010, 73.640171 ], [ -104.501953, 73.422156 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.462857 ], [ -106.600342, 73.602996 ], [ -105.260010, 73.640171 ] ] ], [ [ [ -109.588623, 76.795721 ], [ -108.555908, 76.679785 ], [ -108.215332, 76.203347 ], [ -107.819824, 75.847855 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.970890 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.007782 ], [ -109.709473, 74.850672 ], [ -112.225342, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.718506, 75.222263 ], [ -116.356201, 76.200727 ], [ -115.411377, 76.480910 ], [ -112.598877, 76.142958 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.432026 ], [ -109.588623, 76.795721 ] ] ], [ [ [ -96.745605, 77.162046 ], [ -94.691162, 77.098423 ], [ -93.581543, 76.778142 ], [ -91.614990, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.977783, 76.074381 ], [ -90.000000, 75.885412 ], [ -89.824219, 75.847855 ], [ -89.197998, 75.612262 ], [ -89.121094, 75.609532 ], [ -89.121094, 74.467020 ], [ -89.769287, 74.516956 ], [ -90.000000, 74.546258 ], [ -92.427979, 74.839183 ], [ -92.768555, 75.389468 ], [ -92.900391, 75.882732 ], [ -93.900146, 76.320754 ], [ -95.965576, 76.442332 ], [ -97.130127, 76.752991 ], [ -96.745605, 77.162046 ] ] ], [ [ [ -94.855957, 75.647708 ], [ -93.988037, 75.297735 ], [ -93.614502, 74.982183 ], [ -94.163818, 74.593027 ], [ -95.614014, 74.668733 ], [ -96.822510, 74.927999 ], [ -96.295166, 75.378379 ], [ -94.855957, 75.647708 ] ] ], [ [ [ -98.503418, 76.720223 ], [ -97.745361, 76.258260 ], [ -97.712402, 75.745421 ], [ -98.162842, 75.002097 ], [ -99.810791, 74.899404 ], [ -100.887451, 75.058854 ], [ -100.865479, 75.642260 ], [ -102.502441, 75.565780 ], [ -102.568359, 76.338929 ], [ -101.491699, 76.307757 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.590904 ], [ -98.503418, 76.720223 ] ] ], [ [ [ -116.202393, 77.645947 ], [ -116.345215, 76.878281 ], [ -117.114258, 76.532180 ], [ -118.048096, 76.483478 ], [ -119.904785, 76.055861 ], [ -121.508789, 75.901478 ], [ -122.860107, 76.116622 ], [ -121.168213, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.202393, 77.645947 ] ] ], [ [ [ -89.121094, 77.014755 ], [ -89.121094, 76.462920 ], [ -89.494629, 76.473203 ], [ -89.626465, 76.952895 ], [ -89.121094, 77.014755 ] ] ], [ [ [ -111.269531, 78.154807 ], [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.411073 ], [ -113.543701, 77.732617 ], [ -112.730713, 78.052896 ], [ -111.269531, 78.154807 ] ] ], [ [ [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ], [ -93.724365, 77.636542 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.834904 ] ] ], [ [ [ -98.635254, 78.872169 ], [ -97.338867, 78.833938 ], [ -96.756592, 78.767792 ], [ -95.570068, 78.420193 ], [ -95.833740, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.558350, 78.459822 ], [ -98.635254, 78.872169 ] ] ], [ [ [ -105.501709, 79.302640 ], [ -103.623047, 79.171335 ], [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.324981 ], [ -99.678955, 77.908767 ], [ -101.304932, 78.021014 ], [ -102.952881, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.468750, 79.171335 ], [ -105.501709, 79.302640 ] ] ], [ [ [ -89.121094, 79.335219 ], [ -89.121094, 78.284896 ], [ -90.000000, 78.249150 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.752802 ], [ -93.944092, 79.115464 ], [ -93.768311, 79.171335 ], [ -93.284912, 79.335219 ], [ -89.121094, 79.335219 ] ] ], [ [ [ -111.500244, 78.850946 ], [ -110.972900, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.409162 ], [ -112.532959, 78.551769 ], [ -111.500244, 78.850946 ] ] ], [ [ [ -89.121094, 70.934593 ], [ -89.121094, 70.598021 ], [ -89.516602, 70.765206 ], [ -89.121094, 70.934593 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -105.501709, 79.302640 ], [ -103.623047, 79.171335 ], [ -103.535156, 79.167206 ], [ -102.337646, 79.004962 ], [ -105.446777, 79.004962 ], [ -105.468750, 79.171335 ], [ -105.501709, 79.302640 ] ] ], [ [ [ -92.416992, 81.258372 ], [ -91.142578, 80.723498 ], [ -90.000000, 80.580741 ], [ -89.450684, 80.510360 ], [ -89.121094, 80.472247 ], [ -89.121094, 79.004962 ], [ -93.944092, 79.004962 ], [ -93.944092, 79.115464 ], [ -93.768311, 79.171335 ], [ -93.153076, 79.381881 ], [ -94.976807, 79.373780 ], [ -96.086426, 79.706834 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.604086 ], [ -95.328369, 80.907616 ], [ -94.306641, 80.978522 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ] ] ], [ [ [ -89.121094, 82.112355 ], [ -89.121094, 80.809875 ], [ -89.373779, 80.857129 ], [ -90.000000, 81.166059 ], [ -90.208740, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.593018, 81.895354 ], [ -90.109863, 82.085171 ], [ -89.121094, 82.112355 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ -78.013916, -79.004962 ], [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.002608 ], [ -68.192139, -81.316618 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041178 ], [ -59.699707, -82.374775 ], [ -58.721924, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.865673 ], [ -55.371094, -82.570496 ], [ -53.624268, -82.257260 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.727931 ], [ -47.274170, -81.708942 ], [ -45.000000, -81.836284 ], [ -44.835205, -81.845640 ], [ -44.121094, -81.929358 ], [ -44.121094, -85.126373 ], [ -90.878906, -85.126373 ], [ -90.878906, -79.004962 ], [ -78.013916, -79.004962 ] ] ], [ [ [ -44.121094, -79.004962 ], [ -44.121094, -80.186207 ], [ -44.890137, -80.338575 ], [ -45.000000, -80.356995 ], [ -46.516113, -80.593319 ], [ -48.394775, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.173584, -80.632740 ], [ -53.997803, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.614158 ], [ -50.350342, -79.171335 ], [ -50.152588, -79.004962 ], [ -44.121094, -79.004962 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.578857, -80.039064 ], [ -60.161133, -80.999171 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.548322 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.391899 ], [ -61.149902, -79.979979 ], [ -60.611572, -79.628013 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ -46.669922, -77.830273 ], [ -45.164795, -78.046071 ], [ -45.000000, -78.100561 ], [ -44.121094, -78.409162 ], [ -44.121094, -79.335219 ], [ -50.592041, -79.335219 ], [ -50.350342, -79.171335 ], [ -49.921875, -78.810511 ], [ -49.317627, -78.457624 ], [ -48.669434, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.669922, -77.830273 ] ] ], [ [ [ -62.171631, -66.160511 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -63.764648, -66.513260 ], [ -64.302979, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.949900 ], [ -65.313721, -68.362750 ], [ -64.786377, -68.676539 ], [ -63.962402, -68.911005 ], [ -63.204346, -69.224997 ], [ -62.786865, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.281494, -70.381543 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.379085 ], [ -61.007080, -72.773828 ], [ -60.699463, -73.163173 ], [ -60.831299, -73.692696 ], [ -61.380615, -74.104015 ], [ -61.973877, -74.437572 ], [ -63.303223, -74.575505 ], [ -63.753662, -74.927999 ], [ -64.357910, -75.261444 ], [ -65.863037, -75.634085 ], [ -67.203369, -75.791336 ], [ -68.455811, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.609131, -76.634147 ], [ -72.213135, -76.672189 ], [ -73.970947, -76.634147 ], [ -75.563965, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.937256, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.553940 ], [ -73.663330, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -77.497559, -79.335219 ], [ -90.878906, -79.335219 ], [ -90.878906, -73.368784 ], [ -90.098877, -73.321553 ], [ -90.000000, -73.245712 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.006544 ], [ -87.275391, -73.185434 ], [ -86.022949, -73.086633 ], [ -85.198975, -73.478485 ], [ -83.880615, -73.515935 ], [ -82.672119, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.694580, -73.478485 ], [ -80.299072, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.926025, -73.419021 ], [ -76.915283, -73.633981 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.861084, -73.655637 ], [ -72.839355, -73.400199 ], [ -71.619873, -73.261540 ], [ -70.213623, -73.144070 ], [ -68.939209, -73.006544 ], [ -67.961426, -72.793339 ], [ -67.379150, -72.478584 ], [ -67.137451, -72.046840 ], [ -67.258301, -71.635993 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.851881 ], [ -68.236084, -70.458859 ], [ -68.488770, -70.106747 ], [ -68.554688, -69.714298 ], [ -68.455811, -69.322200 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.540296 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.874030 ], [ -66.588135, -66.513260 ], [ -66.060791, -66.209308 ], [ -65.950928, -66.160511 ], [ -62.171631, -66.160511 ] ] ], [ [ [ -70.257568, -68.875399 ], [ -69.730225, -69.248365 ], [ -69.499512, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.455811, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.168351 ], [ -69.960938, -72.305771 ], [ -71.081543, -72.501722 ], [ -72.388916, -72.481891 ], [ -71.905518, -72.090811 ], [ -73.081055, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.959717, -72.070530 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.148745 ], [ -72.081299, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.729736, -70.307635 ], [ -71.751709, -69.503765 ], [ -71.180420, -69.033211 ], [ -70.257568, -68.875399 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.516221 ], [ -68.642578, -52.629729 ], [ -68.642578, -54.863963 ], [ -67.565918, -54.863963 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.297884 ], [ -68.159180, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.497527 ], [ -69.960938, -55.197683 ], [ -71.015625, -55.053203 ], [ -72.268066, -54.489187 ], [ -73.289795, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.041213 ], [ -72.443848, -53.709714 ], [ -71.114502, -54.072283 ], [ -70.598145, -53.612062 ], [ -70.268555, -52.928775 ], [ -69.345703, -52.516221 ] ] ], [ [ [ -71.806641, -40.313043 ], [ -71.916504, -40.830437 ], [ -71.905518, -40.979898 ], [ -71.751709, -42.049293 ], [ -72.158203, -42.252918 ], [ -71.916504, -43.405047 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.334229, -44.402392 ], [ -71.224365, -44.777936 ], [ -71.663818, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.927490, -46.882723 ], [ -72.454834, -47.731934 ], [ -72.333984, -48.239309 ], [ -72.652588, -48.871941 ], [ -73.421631, -49.317961 ], [ -73.333740, -50.373496 ], [ -72.982178, -50.736455 ], [ -72.312012, -50.673835 ], [ -72.333984, -51.419764 ], [ -71.916504, -52.005174 ], [ -69.499512, -52.140231 ], [ -68.576660, -52.295042 ], [ -69.466553, -52.288323 ], [ -69.949951, -52.536273 ], [ -70.850830, -52.895649 ], [ -71.015625, -53.833081 ], [ -71.433105, -53.852527 ], [ -72.564697, -53.527248 ], [ -73.707275, -52.829321 ], [ -74.948730, -52.261434 ], [ -75.267334, -51.624837 ], [ -74.981689, -51.041394 ], [ -75.487061, -50.373496 ], [ -75.618896, -48.669199 ], [ -75.190430, -47.709762 ], [ -74.135742, -46.935261 ], [ -75.651855, -46.641894 ], [ -74.696045, -45.759859 ], [ -74.355469, -44.095476 ], [ -73.245850, -44.449468 ], [ -72.718506, -42.382894 ], [ -73.399658, -42.114524 ], [ -73.707275, -43.365126 ], [ -74.333496, -43.221190 ], [ -74.025879, -41.787697 ], [ -73.872070, -40.979898 ], [ -73.751221, -40.313043 ], [ -71.806641, -40.313043 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.642578, -52.629729 ], [ -68.258057, -53.094024 ], [ -67.752686, -53.846046 ], [ -66.456299, -54.444492 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.197683 ], [ -66.456299, -55.247815 ], [ -66.961670, -54.895565 ], [ -67.565918, -54.863963 ], [ -68.642578, -54.863963 ], [ -68.642578, -52.629729 ] ] ], [ [ [ -62.281494, -40.313043 ], [ -62.149658, -40.672306 ], [ -62.666016, -40.979898 ], [ -62.753906, -41.021355 ], [ -63.775635, -41.162114 ], [ -64.270020, -40.979898 ], [ -64.742432, -40.797177 ], [ -64.995117, -40.979898 ], [ -65.126953, -41.062786 ], [ -64.984131, -42.057450 ], [ -64.313965, -42.358544 ], [ -63.764648, -42.041134 ], [ -63.468018, -42.561173 ], [ -64.379883, -42.867912 ], [ -65.181885, -43.492783 ], [ -65.335693, -44.496505 ], [ -65.566406, -45.034715 ], [ -66.511230, -45.034715 ], [ -67.302246, -45.544831 ], [ -67.587891, -46.301406 ], [ -66.599121, -47.032695 ], [ -65.643311, -47.234490 ], [ -65.994873, -48.129434 ], [ -67.170410, -48.690960 ], [ -67.818604, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.147949, -50.729502 ], [ -68.818359, -51.767840 ], [ -68.159180, -52.348763 ], [ -68.576660, -52.295042 ], [ -69.499512, -52.140231 ], [ -71.916504, -52.005174 ], [ -72.333984, -51.419764 ], [ -72.312012, -50.673835 ], [ -72.982178, -50.736455 ], [ -73.333740, -50.373496 ], [ -73.421631, -49.317961 ], [ -72.652588, -48.871941 ], [ -72.333984, -48.239309 ], [ -72.454834, -47.731934 ], [ -71.927490, -46.882723 ], [ -71.553955, -45.560218 ], [ -71.663818, -44.972571 ], [ -71.224365, -44.777936 ], [ -71.334229, -44.402392 ], [ -71.795654, -44.205835 ], [ -71.466064, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.158203, -42.252918 ], [ -71.751709, -42.049293 ], [ -71.905518, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.806641, -40.313043 ], [ -62.281494, -40.313043 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "Falkland Islands", "adm0_a3": "FLK", "geou_dif": 0, "geounit": "Falkland Islands", "gu_a3": "FLK", "su_dif": 0, "subunit": "Falkland Islands", "su_a3": "FLK", "brk_diff": 1, "name": "Falkland Is.", "name_long": "Falkland Islands", "brk_a3": "B12", "brk_name": "Falkland Is.", "abbrev": "Flk. Is.", "postal": "FK", "formal_en": "Falkland Islands", "note_adm0": "U.K.", "note_brk": "Admin. by U.K.; Claimed by Argentina", "name_sort": "Falkland Islands", "name_alt": "Islas Malvinas", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 3140, "gdp_md_est": 105.1, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FK", "iso_a3": "FLK", "iso_n3": "238", "un_a3": "238", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "FLK", "adm0_a3_us": "FLK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 12, "long_len": 16, "abbrev_len": 8, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.557129, -51.096623 ], [ -57.755127, -51.549751 ], [ -58.051758, -51.896834 ], [ -59.403076, -52.194140 ], [ -59.853516, -51.849353 ], [ -60.710449, -52.295042 ], [ -61.204834, -51.849353 ], [ -60.007324, -51.248163 ], [ -59.150391, -51.495065 ], [ -58.557129, -51.096623 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ -57.821045, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.601318, -63.855195 ], [ -58.623047, -64.148952 ], [ -59.051514, -64.363685 ], [ -59.798584, -64.211157 ], [ -60.622559, -64.306586 ], [ -62.028809, -64.797526 ], [ -62.512207, -65.090646 ], [ -62.655029, -65.481067 ], [ -62.600098, -65.856756 ], [ -62.127686, -66.187139 ], [ -62.808838, -66.421143 ], [ -63.753662, -66.500122 ], [ -63.764648, -66.513260 ], [ -64.346924, -66.861082 ], [ -67.225342, -66.861082 ], [ -66.588135, -66.513260 ], [ -66.060791, -66.209308 ], [ -65.379639, -65.892680 ], [ -64.577637, -65.599339 ], [ -64.182129, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.637998 ], [ -62.050781, -64.581470 ], [ -61.424561, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.951849 ], [ -59.172363, -63.699855 ], [ -58.601074, -63.386601 ], [ -57.821045, -63.268241 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.235840, 0.878872 ], [ -69.257812, 0.604237 ], [ -69.455566, 0.714093 ], [ -70.015869, 0.549308 ], [ -70.026855, 0.000000 ], [ -70.026855, -0.175781 ], [ -69.587402, -0.549308 ], [ -69.422607, -1.120534 ], [ -69.444580, -1.548884 ], [ -69.895020, -4.291636 ], [ -70.400391, -3.765597 ], [ -70.697021, -3.732708 ], [ -70.048828, -2.723583 ], [ -70.817871, -2.251617 ], [ -71.422119, -2.339438 ], [ -71.784668, -2.163792 ], [ -72.333984, -2.427252 ], [ -73.081055, -2.306506 ], [ -73.663330, -1.252342 ], [ -74.124756, -0.999705 ], [ -74.443359, -0.527336 ], [ -75.113525, -0.054932 ], [ -75.377197, -0.142822 ], [ -75.651855, 0.000000 ], [ -75.805664, 0.087891 ], [ -76.300049, 0.417477 ], [ -76.585693, 0.263671 ], [ -77.431641, 0.406491 ], [ -77.673340, 0.834931 ], [ -77.860107, 0.812961 ], [ -77.980957, 0.878872 ], [ -69.235840, 0.878872 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Venezuela", "sov_a3": "VEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Venezuela", "adm0_a3": "VEN", "geou_dif": 0, "geounit": "Venezuela", "gu_a3": "VEN", "su_dif": 0, "subunit": "Venezuela", "su_a3": "VEN", "brk_diff": 0, "name": "Venezuela", "name_long": "Venezuela", "brk_a3": "VEN", "brk_name": "Venezuela", "abbrev": "Ven.", "postal": "VE", "formal_en": "Bolivarian Republic of Venezuela", "formal_fr": "República Bolivariana de Venezuela", "name_sort": "Venezuela, RB", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 26814843, "gdp_md_est": 357400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "VE", "iso_a3": "VEN", "iso_n3": "862", "un_a3": "862", "wb_a2": "VE", "wb_a3": "VEN", "woe_id": -99, "adm0_a3_is": "VEN", "adm0_a3_us": "VEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.500488, 0.878872 ], [ -65.555420, 0.790990 ], [ -66.335449, 0.725078 ], [ -66.489258, 0.878872 ], [ -65.500488, 0.878872 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.980957, 0.878872 ], [ -77.860107, 0.812961 ], [ -77.673340, 0.834931 ], [ -77.431641, 0.406491 ], [ -76.585693, 0.263671 ], [ -76.300049, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.651855, 0.000000 ], [ -75.377197, -0.142822 ], [ -75.234375, -0.900842 ], [ -75.552979, -1.559866 ], [ -76.640625, -2.602864 ], [ -77.838135, -2.997899 ], [ -78.453369, -3.864255 ], [ -78.640137, -4.543570 ], [ -79.211426, -4.948670 ], [ -79.628906, -4.444997 ], [ -80.035400, -4.335456 ], [ -80.452881, -4.423090 ], [ -80.474854, -4.050577 ], [ -80.189209, -3.820408 ], [ -80.310059, -3.403758 ], [ -79.771729, -2.646763 ], [ -79.991455, -2.218684 ], [ -80.375977, -2.679687 ], [ -80.969238, -2.240640 ], [ -80.771484, -1.955187 ], [ -80.936279, -1.054628 ], [ -80.584717, -0.900842 ], [ -80.408936, -0.274657 ], [ -80.233154, 0.000000 ], [ -80.024414, 0.362546 ], [ -80.101318, 0.769020 ], [ -79.815674, 0.878872 ], [ -77.980957, 0.878872 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.598389, -17.570721 ], [ -69.104004, -18.250220 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.404430 ], [ -68.763428, -20.365228 ], [ -68.225098, -21.493964 ], [ -67.829590, -22.867318 ], [ -67.115479, -22.735657 ], [ -66.994629, -22.978624 ], [ -67.335205, -24.016362 ], [ -68.422852, -24.517139 ], [ -68.389893, -26.175159 ], [ -68.598633, -26.500073 ], [ -68.302002, -26.892679 ], [ -69.005127, -27.518015 ], [ -69.664307, -28.459033 ], [ -70.015869, -29.363027 ], [ -69.927979, -30.334954 ], [ -70.543213, -31.363018 ], [ -70.081787, -33.082337 ], [ -69.818115, -33.266250 ], [ -69.818115, -34.189086 ], [ -70.389404, -35.164828 ], [ -70.367432, -36.004673 ], [ -71.125488, -36.650793 ], [ -71.125488, -37.570705 ], [ -70.817871, -38.548165 ], [ -71.422119, -38.908133 ], [ -71.685791, -39.800096 ], [ -71.916504, -40.830437 ], [ -71.905518, -40.979898 ], [ -71.806641, -41.640078 ], [ -73.992920, -41.640078 ], [ -73.872070, -40.979898 ], [ -73.685303, -39.935013 ], [ -73.223877, -39.257778 ], [ -73.509521, -38.281313 ], [ -73.597412, -37.151561 ], [ -73.168945, -37.116526 ], [ -72.553711, -35.505400 ], [ -71.872559, -33.906896 ], [ -71.444092, -32.417066 ], [ -71.674805, -30.911651 ], [ -71.378174, -30.088108 ], [ -71.499023, -28.854296 ], [ -70.905762, -27.634874 ], [ -70.729980, -25.700938 ], [ -70.411377, -23.624395 ], [ -70.092773, -21.391705 ], [ -70.169678, -19.756364 ], [ -70.378418, -18.344098 ], [ -69.862061, -18.083201 ], [ -69.598389, -17.570721 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.346680, -9.752370 ], [ -65.445557, -10.509417 ], [ -65.324707, -10.887254 ], [ -65.412598, -11.566144 ], [ -64.324951, -12.458033 ], [ -63.204346, -12.618897 ], [ -62.808838, -12.993853 ], [ -62.127686, -13.197165 ], [ -61.721191, -13.485790 ], [ -61.094971, -13.475106 ], [ -60.512695, -13.774066 ], [ -60.468750, -14.349548 ], [ -60.270996, -14.636739 ], [ -60.260010, -15.072124 ], [ -60.545654, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.249512, -16.299051 ], [ -58.392334, -16.867634 ], [ -58.282471, -17.266728 ], [ -57.744141, -17.549772 ], [ -57.502441, -18.166730 ], [ -57.678223, -18.958246 ], [ -57.952881, -19.394068 ], [ -57.854004, -19.963023 ], [ -58.172607, -20.169411 ], [ -58.183594, -19.859727 ], [ -59.117432, -19.352611 ], [ -60.051270, -19.342245 ], [ -61.787109, -19.632240 ], [ -62.270508, -20.509355 ], [ -62.292480, -21.043491 ], [ -62.687988, -22.248429 ], [ -62.852783, -22.034730 ], [ -63.995361, -21.983801 ], [ -64.379883, -22.796439 ], [ -64.973145, -22.075459 ], [ -66.280518, -21.830907 ], [ -67.115479, -22.735657 ], [ -67.829590, -22.867318 ], [ -68.225098, -21.493964 ], [ -68.763428, -20.365228 ], [ -68.444824, -19.404430 ], [ -68.972168, -18.979026 ], [ -69.104004, -18.250220 ], [ -69.598389, -17.570721 ], [ -68.961182, -16.499299 ], [ -69.400635, -15.654776 ], [ -69.169922, -15.315976 ], [ -69.345703, -14.944785 ], [ -68.950195, -14.445319 ], [ -68.939209, -13.592600 ], [ -68.884277, -12.897489 ], [ -68.675537, -12.554564 ], [ -69.532471, -10.941192 ], [ -68.796387, -11.027472 ], [ -68.280029, -11.005904 ], [ -68.049316, -10.703792 ], [ -67.181396, -10.304110 ], [ -66.654053, -9.925566 ], [ -65.346680, -9.752370 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ -50.108643, 0.878872 ], [ -50.701904, 0.230712 ], [ -50.394287, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.592529, -1.230374 ], [ -47.834473, -0.571280 ], [ -46.571045, -0.933797 ], [ -45.000000, -1.515936 ], [ -44.912109, -1.548884 ], [ -44.417725, -2.130856 ], [ -44.582520, -2.690661 ], [ -44.121094, -2.558963 ], [ -44.121094, -23.221155 ], [ -44.648438, -23.342256 ], [ -45.000000, -23.574057 ], [ -45.362549, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.658691, -24.876470 ], [ -48.504639, -25.869109 ], [ -48.647461, -26.617997 ], [ -48.482666, -27.166695 ], [ -48.669434, -28.178560 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.219302 ], [ -50.701904, -30.977609 ], [ -51.580811, -31.774878 ], [ -52.261963, -32.240683 ], [ -52.712402, -33.192731 ], [ -53.382568, -33.760882 ], [ -53.657227, -33.201924 ], [ -53.217773, -32.722599 ], [ -53.789062, -32.045333 ], [ -54.580078, -31.494262 ], [ -55.601807, -30.845647 ], [ -55.975342, -30.873940 ], [ -56.986084, -30.107118 ], [ -57.634277, -30.211608 ], [ -56.293945, -28.844674 ], [ -55.162354, -27.877928 ], [ -54.492188, -27.469287 ], [ -53.657227, -26.922070 ], [ -53.635254, -26.115986 ], [ -54.140625, -25.542441 ], [ -54.635010, -25.730633 ], [ -54.437256, -25.155229 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.016362 ], [ -54.656982, -23.835601 ], [ -55.030518, -23.996290 ], [ -55.404053, -23.956136 ], [ -55.524902, -23.563987 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.350076 ], [ -56.480713, -22.085640 ], [ -56.887207, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.875977, -20.725291 ], [ -58.172607, -20.169411 ], [ -57.854004, -19.963023 ], [ -57.952881, -19.394068 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.166730 ], [ -57.744141, -17.549772 ], [ -58.282471, -17.266728 ], [ -58.392334, -16.867634 ], [ -58.249512, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.260010, -15.072124 ], [ -60.270996, -14.636739 ], [ -60.468750, -14.349548 ], [ -60.512695, -13.774066 ], [ -61.094971, -13.475106 ], [ -61.721191, -13.485790 ], [ -62.127686, -13.197165 ], [ -62.808838, -12.993853 ], [ -63.204346, -12.618897 ], [ -64.324951, -12.458033 ], [ -65.412598, -11.566144 ], [ -65.324707, -10.887254 ], [ -65.445557, -10.509417 ], [ -65.346680, -9.752370 ], [ -66.654053, -9.925566 ], [ -67.181396, -10.304110 ], [ -68.049316, -10.703792 ], [ -68.280029, -11.005904 ], [ -68.796387, -11.027472 ], [ -69.532471, -10.941192 ], [ -70.103760, -11.113727 ], [ -70.554199, -11.005904 ], [ -70.488281, -9.481572 ], [ -71.312256, -10.077037 ], [ -72.191162, -10.044585 ], [ -72.564697, -9.514079 ], [ -73.234863, -9.459899 ], [ -73.026123, -9.026153 ], [ -73.575439, -8.418036 ], [ -73.992920, -7.514981 ], [ -73.729248, -7.340675 ], [ -73.729248, -6.915521 ], [ -73.125000, -6.620957 ], [ -73.223877, -6.085936 ], [ -72.971191, -5.736243 ], [ -72.894287, -5.266008 ], [ -71.751709, -4.587376 ], [ -70.938721, -4.401183 ], [ -70.795898, -4.247812 ], [ -69.895020, -4.291636 ], [ -69.444580, -1.548884 ], [ -69.422607, -1.120534 ], [ -69.587402, -0.549308 ], [ -70.026855, -0.175781 ], [ -70.026855, 0.000000 ], [ -70.015869, 0.549308 ], [ -69.455566, 0.714093 ], [ -69.257812, 0.604237 ], [ -69.235840, 0.878872 ], [ -66.489258, 0.878872 ], [ -66.335449, 0.725078 ], [ -65.555420, 0.790990 ], [ -65.500488, 0.878872 ], [ -50.108643, 0.878872 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Paraguay", "sov_a3": "PRY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Paraguay", "adm0_a3": "PRY", "geou_dif": 0, "geounit": "Paraguay", "gu_a3": "PRY", "su_dif": 0, "subunit": "Paraguay", "su_a3": "PRY", "brk_diff": 0, "name": "Paraguay", "name_long": "Paraguay", "brk_a3": "PRY", "brk_name": "Paraguay", "abbrev": "Para.", "postal": "PY", "formal_en": "Republic of Paraguay", "name_sort": "Paraguay", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 2, "pop_est": 6995655, "gdp_md_est": 28890, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PY", "iso_a3": "PRY", "iso_n3": "600", "un_a3": "600", "wb_a2": "PY", "wb_a3": "PRY", "woe_id": -99, "adm0_a3_is": "PRY", "adm0_a3_us": "PRY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.051270, -19.342245 ], [ -59.117432, -19.352611 ], [ -58.183594, -19.859727 ], [ -58.172607, -20.169411 ], [ -57.875977, -20.725291 ], [ -57.941895, -22.085640 ], [ -56.887207, -22.278931 ], [ -56.480713, -22.085640 ], [ -55.799561, -22.350076 ], [ -55.612793, -22.654572 ], [ -55.524902, -23.563987 ], [ -55.404053, -23.956136 ], [ -55.030518, -23.996290 ], [ -54.656982, -23.835601 ], [ -54.294434, -24.016362 ], [ -54.294434, -24.567108 ], [ -54.437256, -25.155229 ], [ -54.635010, -25.730633 ], [ -54.788818, -26.617997 ], [ -55.700684, -27.381523 ], [ -56.491699, -27.547242 ], [ -57.612305, -27.391278 ], [ -58.623047, -27.117813 ], [ -57.634277, -25.601902 ], [ -57.788086, -25.155229 ], [ -58.809814, -24.766785 ], [ -60.029297, -24.026397 ], [ -60.853271, -23.875792 ], [ -62.687988, -22.248429 ], [ -62.292480, -21.043491 ], [ -62.270508, -20.509355 ], [ -61.787109, -19.632240 ], [ -60.051270, -19.342245 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Uruguay", "sov_a3": "URY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uruguay", "adm0_a3": "URY", "geou_dif": 0, "geounit": "Uruguay", "gu_a3": "URY", "su_dif": 0, "subunit": "Uruguay", "su_a3": "URY", "brk_diff": 0, "name": "Uruguay", "name_long": "Uruguay", "brk_a3": "URY", "brk_name": "Uruguay", "abbrev": "Ury.", "postal": "UY", "formal_en": "Oriental Republic of Uruguay", "name_sort": "Uruguay", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 3494382, "gdp_md_est": 43160, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "UY", "iso_a3": "URY", "iso_n3": "858", "un_a3": "858", "wb_a2": "UY", "wb_a3": "URY", "woe_id": -99, "adm0_a3_is": "URY", "adm0_a3_us": "URY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.986084, -30.107118 ], [ -55.975342, -30.873940 ], [ -55.601807, -30.845647 ], [ -54.580078, -31.494262 ], [ -53.789062, -32.045333 ], [ -53.217773, -32.722599 ], [ -53.657227, -33.201924 ], [ -53.382568, -33.760882 ], [ -53.811035, -34.388779 ], [ -54.942627, -34.948991 ], [ -55.678711, -34.750640 ], [ -56.217041, -34.858890 ], [ -57.139893, -34.425036 ], [ -57.821045, -34.461277 ], [ -58.436279, -33.906896 ], [ -58.359375, -33.257063 ], [ -58.139648, -33.036298 ], [ -58.150635, -32.036020 ], [ -57.875977, -31.015279 ], [ -57.634277, -30.211608 ], [ -56.986084, -30.107118 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.971924, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.500350 ], [ -71.861572, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.575439, 40.979898 ], [ -73.718262, 40.938415 ], [ -73.333740, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.026367, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.355713, 40.630630 ], [ -73.992920, 40.630630 ], [ -73.959961, 40.755580 ], [ -74.267578, 40.480381 ], [ -73.970947, 40.430224 ], [ -74.179688, 39.715638 ], [ -74.915771, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.504041 ], [ -75.322266, 38.967951 ], [ -75.080566, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.388184, 38.022131 ], [ -75.948486, 37.221580 ], [ -76.036377, 37.265310 ], [ -75.728760, 37.944198 ], [ -76.234131, 38.324420 ], [ -76.354980, 39.155622 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.091337 ], [ -76.992188, 38.246809 ], [ -76.311035, 37.918201 ], [ -76.267090, 36.967449 ], [ -75.981445, 36.905980 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.559043 ], [ -76.365967, 34.813803 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.934245 ], [ -78.563232, 33.870416 ], [ -79.068604, 33.495598 ], [ -79.211426, 33.165145 ], [ -80.310059, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.342773, 31.447410 ], [ -81.496582, 30.732393 ], [ -81.320801, 30.040566 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.478349 ], [ -80.540771, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.214591 ], [ -80.134277, 25.819672 ], [ -80.386963, 25.214881 ], [ -80.683594, 25.085599 ], [ -81.177979, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.716309, 25.878994 ], [ -82.716064, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.555576 ], [ -82.935791, 29.104177 ], [ -83.715820, 29.945415 ], [ -84.100342, 30.097613 ], [ -85.111084, 29.640320 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.154627 ], [ -86.407471, 30.401307 ], [ -87.539062, 30.278044 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.439697, 29.496988 ], [ -89.219971, 29.295981 ], [ -89.417725, 29.161756 ], [ -89.780273, 29.315141 ], [ -90.000000, 29.200123 ], [ -90.164795, 29.123373 ], [ -90.878906, 29.152161 ], [ -90.878906, 41.640078 ], [ -69.971924, 41.640078 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.878906, 17.821916 ], [ -90.878906, 19.217803 ], [ -90.780029, 19.290406 ], [ -90.538330, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -90.000000, 21.115249 ], [ -89.604492, 21.268900 ], [ -88.549805, 21.493964 ], [ -87.659912, 21.463293 ], [ -87.055664, 21.545066 ], [ -86.813965, 21.340548 ], [ -86.846924, 20.858812 ], [ -87.385254, 20.262197 ], [ -87.626953, 19.652934 ], [ -87.440186, 19.476950 ], [ -87.846680, 18.260653 ], [ -88.099365, 18.521283 ], [ -88.494873, 18.490029 ], [ -88.857422, 17.884659 ], [ -89.033203, 18.010080 ], [ -89.154053, 17.957832 ], [ -89.154053, 17.811456 ], [ -90.000000, 17.821916 ], [ -90.878906, 17.821916 ] ] ], [ [ [ -90.878906, 16.794024 ], [ -90.714111, 16.688817 ], [ -90.604248, 16.478230 ], [ -90.439453, 16.415009 ], [ -90.472412, 16.077486 ], [ -90.878906, 16.077486 ], [ -90.878906, 16.794024 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guatemala", "sov_a3": "GTM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guatemala", "adm0_a3": "GTM", "geou_dif": 0, "geounit": "Guatemala", "gu_a3": "GTM", "su_dif": 0, "subunit": "Guatemala", "su_a3": "GTM", "brk_diff": 0, "name": "Guatemala", "name_long": "Guatemala", "brk_a3": "GTM", "brk_name": "Guatemala", "abbrev": "Guat.", "postal": "GT", "formal_en": "Republic of Guatemala", "name_sort": "Guatemala", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 13276517, "gdp_md_est": 68580, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GT", "iso_a3": "GTM", "iso_n3": "320", "un_a3": "320", "wb_a2": "GT", "wb_a3": "GTM", "woe_id": -99, "adm0_a3_is": "GTM", "adm0_a3_us": "GTM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.821916 ], [ -89.154053, 17.811456 ], [ -89.154053, 17.025273 ], [ -89.230957, 15.887376 ], [ -88.934326, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.527832, 15.855674 ], [ -88.231201, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.165039, 15.072124 ], [ -89.230957, 14.881087 ], [ -89.154053, 14.679254 ], [ -89.362793, 14.434680 ], [ -89.593506, 14.370834 ], [ -89.538574, 14.253735 ], [ -89.725342, 14.136576 ], [ -90.000000, 13.934067 ], [ -90.065918, 13.891411 ], [ -90.098877, 13.742053 ], [ -90.615234, 13.912740 ], [ -90.878906, 13.923404 ], [ -90.878906, 16.077486 ], [ -90.472412, 16.077486 ], [ -90.439453, 16.415009 ], [ -90.604248, 16.478230 ], [ -90.714111, 16.688817 ], [ -90.878906, 16.794024 ], [ -90.878906, 17.821916 ], [ -90.000000, 17.821916 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "The Bahamas", "sov_a3": "BHS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "The Bahamas", "adm0_a3": "BHS", "geou_dif": 0, "geounit": "The Bahamas", "gu_a3": "BHS", "su_dif": 0, "subunit": "The Bahamas", "su_a3": "BHS", "brk_diff": 0, "name": "Bahamas", "name_long": "Bahamas", "brk_a3": "BHS", "brk_name": "Bahamas", "abbrev": "Bhs.", "postal": "BS", "formal_en": "Commonwealth of the Bahamas", "name_sort": "Bahamas, The", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 309156, "gdp_md_est": 9093, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BS", "iso_a3": "BHS", "iso_n3": "044", "un_a3": "044", "wb_a2": "BS", "wb_a3": "BHS", "woe_id": -99, "adm0_a3_is": "BHS", "adm0_a3_us": "BHS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.200684, 25.214881 ], [ -77.893066, 25.175117 ], [ -77.541504, 24.347097 ], [ -77.541504, 23.765237 ], [ -77.783203, 23.714954 ], [ -78.035889, 24.287027 ], [ -78.409424, 24.577100 ], [ -78.200684, 25.214881 ] ] ], [ [ [ -77.794189, 27.049342 ], [ -77.003174, 26.598351 ], [ -77.178955, 25.888879 ], [ -77.365723, 26.007424 ], [ -77.343750, 26.539394 ], [ -77.794189, 26.931865 ], [ -77.794189, 27.049342 ] ] ], [ [ [ -78.519287, 26.873081 ], [ -77.860107, 26.843677 ], [ -77.827148, 26.588527 ], [ -78.914795, 26.421390 ], [ -78.980713, 26.794654 ], [ -78.519287, 26.873081 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Nicaragua", "sov_a3": "NIC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nicaragua", "adm0_a3": "NIC", "geou_dif": 0, "geounit": "Nicaragua", "gu_a3": "NIC", "su_dif": 0, "subunit": "Nicaragua", "su_a3": "NIC", "brk_diff": 0, "name": "Nicaragua", "name_long": "Nicaragua", "brk_a3": "NIC", "brk_name": "Nicaragua", "abbrev": "Nic.", "postal": "NI", "formal_en": "Republic of Nicaragua", "name_sort": "Nicaragua", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 5891199, "gdp_md_est": 16790, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NI", "iso_a3": "NIC", "iso_n3": "558", "un_a3": "558", "wb_a2": "NI", "wb_a3": "NIC", "woe_id": -99, "adm0_a3_is": "NIC", "adm0_a3_us": "NIC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.496094, 15.019075 ], [ -83.155518, 14.997852 ], [ -83.243408, 14.902322 ], [ -83.287354, 14.679254 ], [ -83.188477, 14.317615 ], [ -83.419189, 13.976715 ], [ -83.529053, 13.571242 ], [ -83.562012, 13.132979 ], [ -83.507080, 12.876070 ], [ -83.474121, 12.425848 ], [ -83.627930, 12.329269 ], [ -83.726807, 11.899604 ], [ -83.660889, 11.630716 ], [ -83.858643, 11.383109 ], [ -83.814697, 11.113727 ], [ -83.660889, 10.941192 ], [ -83.902588, 10.736175 ], [ -84.199219, 10.800933 ], [ -84.364014, 11.005904 ], [ -84.682617, 11.092166 ], [ -84.913330, 10.962764 ], [ -85.572510, 11.221510 ], [ -85.715332, 11.092166 ], [ -86.528320, 11.813588 ], [ -86.748047, 12.146746 ], [ -87.176514, 12.468760 ], [ -87.670898, 12.918907 ], [ -87.561035, 13.068777 ], [ -87.396240, 12.918907 ], [ -87.319336, 12.993853 ], [ -87.011719, 13.025966 ], [ -86.890869, 13.261333 ], [ -86.737061, 13.272026 ], [ -86.759033, 13.763396 ], [ -86.528320, 13.784737 ], [ -86.319580, 13.774066 ], [ -86.099854, 14.040673 ], [ -85.803223, 13.838080 ], [ -85.704346, 13.966054 ], [ -85.517578, 14.083301 ], [ -85.166016, 14.360191 ], [ -85.155029, 14.562318 ], [ -85.056152, 14.551684 ], [ -84.935303, 14.796128 ], [ -84.825439, 14.827991 ], [ -84.649658, 14.668626 ], [ -84.451904, 14.626109 ], [ -84.232178, 14.753635 ], [ -83.979492, 14.753635 ], [ -83.638916, 14.881087 ], [ -83.496094, 15.019075 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Panama", "sov_a3": "PAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Panama", "adm0_a3": "PAN", "geou_dif": 0, "geounit": "Panama", "gu_a3": "PAN", "su_dif": 0, "subunit": "Panama", "su_a3": "PAN", "brk_diff": 0, "name": "Panama", "name_long": "Panama", "brk_a3": "PAN", "brk_name": "Panama", "abbrev": "Pan.", "postal": "PA", "formal_en": "Republic of Panama", "name_sort": "Panama", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 3360474, "gdp_md_est": 38830, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PA", "iso_a3": "PAN", "iso_n3": "591", "un_a3": "591", "wb_a2": "PA", "wb_a3": "PAN", "woe_id": -99, "adm0_a3_is": "PAN", "adm0_a3_us": "PAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.573975, 9.622414 ], [ -79.024658, 9.557417 ], [ -79.068604, 9.459899 ], [ -78.508301, 9.427387 ], [ -78.057861, 9.253936 ], [ -77.739258, 8.950193 ], [ -77.354736, 8.678779 ], [ -77.475586, 8.526701 ], [ -77.244873, 7.939556 ], [ -77.431641, 7.645665 ], [ -77.761230, 7.710992 ], [ -77.882080, 7.231699 ], [ -78.222656, 7.514981 ], [ -78.431396, 8.059230 ], [ -78.189697, 8.320212 ], [ -78.442383, 8.396300 ], [ -78.629150, 8.722218 ], [ -79.123535, 9.004452 ], [ -79.562988, 8.939340 ], [ -79.760742, 8.591884 ], [ -80.167236, 8.341953 ], [ -80.386963, 8.298470 ], [ -80.485840, 8.091862 ], [ -80.013428, 7.547656 ], [ -80.277100, 7.427837 ], [ -80.430908, 7.275292 ], [ -80.892334, 7.220800 ], [ -81.068115, 7.819847 ], [ -81.199951, 7.656553 ], [ -81.529541, 7.710992 ], [ -81.727295, 8.113615 ], [ -82.133789, 8.178868 ], [ -82.397461, 8.298470 ], [ -82.825928, 8.298470 ], [ -82.858887, 8.080985 ], [ -82.968750, 8.233237 ], [ -82.913818, 8.428904 ], [ -82.836914, 8.635334 ], [ -82.869873, 8.809082 ], [ -82.727051, 8.928487 ], [ -82.935791, 9.080400 ], [ -82.935791, 9.481572 ], [ -82.551270, 9.568251 ], [ -82.188721, 9.210560 ], [ -82.210693, 9.004452 ], [ -81.815186, 8.961045 ], [ -81.716309, 9.037003 ], [ -81.441650, 8.787368 ], [ -80.958252, 8.863362 ], [ -80.529785, 9.112945 ], [ -79.925537, 9.318990 ], [ -79.573975, 9.622414 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.762695, 12.447305 ], [ -71.400146, 12.382928 ], [ -71.147461, 12.114523 ], [ -71.334229, 11.781325 ], [ -71.982422, 11.609193 ], [ -72.235107, 11.113727 ], [ -72.619629, 10.822515 ], [ -72.916260, 10.455402 ], [ -73.037109, 9.741542 ], [ -73.311768, 9.156333 ], [ -72.795410, 9.091249 ], [ -72.663574, 8.635334 ], [ -72.443848, 8.407168 ], [ -72.366943, 8.004837 ], [ -72.487793, 7.634776 ], [ -72.454834, 7.427837 ], [ -72.202148, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.675049, 7.089990 ], [ -70.103760, 6.970049 ], [ -69.389648, 6.107784 ], [ -68.994141, 6.217012 ], [ -68.269043, 6.162401 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.521973, 5.561315 ], [ -67.752686, 5.222247 ], [ -67.829590, 4.510714 ], [ -67.631836, 3.842332 ], [ -67.346191, 3.546318 ], [ -67.313232, 3.326986 ], [ -67.818604, 2.822344 ], [ -67.456055, 2.602864 ], [ -67.181396, 2.251617 ], [ -66.884766, 1.263325 ], [ -67.071533, 1.131518 ], [ -67.269287, 1.724593 ], [ -67.543945, 2.043024 ], [ -67.873535, 1.702630 ], [ -69.818115, 1.724593 ], [ -69.807129, 1.098565 ], [ -69.224854, 0.988720 ], [ -69.257812, 0.604237 ], [ -69.455566, 0.714093 ], [ -70.015869, 0.549308 ], [ -70.026855, 0.000000 ], [ -70.026855, -0.175781 ], [ -69.587402, -0.549308 ], [ -69.488525, -0.878872 ], [ -74.212646, -0.878872 ], [ -74.443359, -0.527336 ], [ -75.113525, -0.054932 ], [ -75.377197, -0.142822 ], [ -75.651855, 0.000000 ], [ -75.805664, 0.087891 ], [ -76.300049, 0.417477 ], [ -76.585693, 0.263671 ], [ -77.431641, 0.406491 ], [ -77.673340, 0.834931 ], [ -77.860107, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.768518 ], [ -78.673096, 2.273573 ], [ -78.431396, 2.635789 ], [ -77.937012, 2.701635 ], [ -77.519531, 3.326986 ], [ -77.135010, 3.853293 ], [ -77.497559, 4.094411 ], [ -77.310791, 4.674980 ], [ -77.541504, 5.583184 ], [ -77.321777, 5.845545 ], [ -77.486572, 6.697343 ], [ -77.882080, 7.231699 ], [ -77.761230, 7.710992 ], [ -77.431641, 7.645665 ], [ -77.244873, 7.939556 ], [ -77.475586, 8.526701 ], [ -77.354736, 8.678779 ], [ -76.838379, 8.646196 ], [ -76.091309, 9.340672 ], [ -75.684814, 9.449062 ], [ -75.673828, 9.774025 ], [ -75.487061, 10.628216 ], [ -74.915771, 11.092166 ], [ -74.278564, 11.102947 ], [ -74.201660, 11.318481 ], [ -73.421631, 11.232286 ], [ -72.630615, 11.738302 ], [ -72.246094, 11.964097 ], [ -71.762695, 12.447305 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "Puerto Rico", "adm0_a3": "PRI", "geou_dif": 0, "geounit": "Puerto Rico", "gu_a3": "PRI", "su_dif": 0, "subunit": "Puerto Rico", "su_a3": "PRI", "brk_diff": 0, "name": "Puerto Rico", "name_long": "Puerto Rico", "brk_a3": "PRI", "brk_name": "Puerto Rico", "abbrev": "P.R.", "postal": "PR", "formal_en": "Commonwealth of Puerto Rico", "note_adm0": "Commonwealth of U.S.A.", "name_sort": "Puerto Rico", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 3971020, "gdp_md_est": 70230, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "PR", "iso_a3": "PRI", "iso_n3": "630", "un_a3": "630", "wb_a2": "PR", "wb_a3": "PRI", "woe_id": -99, "adm0_a3_is": "PRI", "adm0_a3_us": "PRI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.291504, 18.521283 ], [ -65.775146, 18.427502 ], [ -65.599365, 18.229351 ], [ -65.852051, 17.978733 ], [ -66.610107, 17.989183 ], [ -67.192383, 17.947381 ], [ -67.247314, 18.375379 ], [ -67.104492, 18.521283 ], [ -66.291504, 18.521283 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Trinidad and Tobago", "sov_a3": "TTO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Trinidad and Tobago", "adm0_a3": "TTO", "geou_dif": 0, "geounit": "Trinidad and Tobago", "gu_a3": "TTO", "su_dif": 0, "subunit": "Trinidad and Tobago", "su_a3": "TTO", "brk_diff": 0, "name": "Trinidad and Tobago", "name_long": "Trinidad and Tobago", "brk_a3": "TTO", "brk_name": "Trinidad and Tobago", "abbrev": "Tr.T.", "postal": "TT", "formal_en": "Republic of Trinidad and Tobago", "name_sort": "Trinidad and Tobago", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 1310000, "gdp_md_est": 29010, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TT", "iso_a3": "TTO", "iso_n3": "780", "un_a3": "780", "wb_a2": "TT", "wb_a3": "TTO", "woe_id": -99, "adm0_a3_is": "TTO", "adm0_a3_us": "TTO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 19, "long_len": 19, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.105957, 10.898042 ], [ -60.897217, 10.865676 ], [ -60.941162, 10.120302 ], [ -61.776123, 10.001310 ], [ -61.951904, 10.098670 ], [ -61.666260, 10.368958 ], [ -61.688232, 10.768556 ], [ -61.105957, 10.898042 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Suriname", "sov_a3": "SUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Suriname", "adm0_a3": "SUR", "geou_dif": 0, "geounit": "Suriname", "gu_a3": "SUR", "su_dif": 0, "subunit": "Suriname", "su_a3": "SUR", "brk_diff": 0, "name": "Suriname", "name_long": "Suriname", "brk_a3": "SUR", "brk_name": "Suriname", "abbrev": "Sur.", "postal": "SR", "formal_en": "Republic of Suriname", "name_sort": "Suriname", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 481267, "gdp_md_est": 4254, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "SR", "iso_a3": "SUR", "iso_n3": "740", "un_a3": "740", "wb_a2": "SR", "wb_a3": "SUR", "woe_id": -99, "adm0_a3_is": "SUR", "adm0_a3_us": "SUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.041504, 6.031311 ], [ -53.964844, 5.758105 ], [ -54.481201, 4.904887 ], [ -54.404297, 4.214943 ], [ -54.008789, 3.623071 ], [ -54.184570, 3.195364 ], [ -54.272461, 2.734557 ], [ -54.525146, 2.317483 ], [ -55.107422, 2.526037 ], [ -55.579834, 2.427252 ], [ -55.975342, 2.515061 ], [ -56.074219, 2.229662 ], [ -55.909424, 2.032045 ], [ -55.997314, 1.823423 ], [ -56.546631, 1.900286 ], [ -57.150879, 2.778451 ], [ -57.282715, 3.337954 ], [ -57.612305, 3.337954 ], [ -58.051758, 4.061536 ], [ -57.864990, 4.587376 ], [ -57.919922, 4.817312 ], [ -57.315674, 5.080001 ], [ -57.150879, 5.976680 ], [ -55.953369, 5.779966 ], [ -55.843506, 5.954827 ], [ -55.041504, 6.031311 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.964844, 5.758105 ], [ -52.888184, 5.419148 ], [ -51.833496, 4.576425 ], [ -51.668701, 4.160158 ], [ -52.250977, 3.250209 ], [ -52.558594, 2.515061 ], [ -52.943115, 2.130856 ], [ -53.426514, 2.054003 ], [ -53.558350, 2.339438 ], [ -53.789062, 2.383346 ], [ -54.096680, 2.108899 ], [ -54.525146, 2.317483 ], [ -54.272461, 2.745531 ], [ -54.184570, 3.195364 ], [ -54.019775, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.481201, 4.904887 ], [ -53.964844, 5.758105 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.859863, 1.384143 ], [ -77.860107, 0.812961 ], [ -77.673340, 0.834931 ], [ -77.431641, 0.406491 ], [ -76.585693, 0.263671 ], [ -76.300049, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.651855, 0.000000 ], [ -75.377197, -0.142822 ], [ -75.245361, -0.878872 ], [ -80.584717, -0.878872 ], [ -80.408936, -0.274657 ], [ -80.233154, 0.000000 ], [ -80.024414, 0.362546 ], [ -80.101318, 0.769020 ], [ -79.552002, 0.988720 ], [ -78.859863, 1.384143 ] ] ] } } +, +{ "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": [ [ [ [ -60.216064, 5.255068 ], [ -59.985352, 5.014339 ], [ -60.117188, 4.576425 ], [ -59.776611, 4.434044 ], [ -59.545898, 3.962901 ], [ -59.820557, 3.612107 ], [ -59.985352, 2.756504 ], [ -59.721680, 2.251617 ], [ -59.655762, 1.790480 ], [ -59.040527, 1.318243 ], [ -58.546143, 1.274309 ], [ -58.436279, 1.472006 ], [ -58.117676, 1.515936 ], [ -57.667236, 1.691649 ], [ -57.337646, 1.955187 ], [ -56.788330, 1.867345 ], [ -56.546631, 1.900286 ], [ -55.997314, 1.823423 ], [ -55.909424, 2.032045 ], [ -56.074219, 2.229662 ], [ -55.975342, 2.515061 ], [ -55.579834, 2.427252 ], [ -55.107422, 2.526037 ], [ -54.525146, 2.317483 ], [ -54.096680, 2.108899 ], [ -53.789062, 2.383346 ], [ -53.558350, 2.339438 ], [ -53.426514, 2.054003 ], [ -52.943115, 2.130856 ], [ -52.558594, 2.515061 ], [ -52.250977, 3.250209 ], [ -51.668701, 4.160158 ], [ -51.328125, 4.203986 ], [ -51.075439, 3.655964 ], [ -50.515137, 1.911267 ], [ -49.976807, 1.746556 ], [ -49.954834, 1.054628 ], [ -50.701904, 0.230712 ], [ -50.394287, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.603516, -0.878872 ], [ -69.488525, -0.878872 ], [ -69.587402, -0.549308 ], [ -70.026855, -0.175781 ], [ -70.026855, 0.000000 ], [ -70.015869, 0.549308 ], [ -69.455566, 0.714093 ], [ -69.257812, 0.604237 ], [ -69.224854, 0.988720 ], [ -69.807129, 1.098565 ], [ -69.818115, 1.724593 ], [ -67.873535, 1.702630 ], [ -67.543945, 2.043024 ], [ -67.269287, 1.724593 ], [ -67.071533, 1.131518 ], [ -66.884766, 1.263325 ], [ -66.335449, 0.725078 ], [ -65.555420, 0.790990 ], [ -65.357666, 1.098565 ], [ -64.621582, 1.329226 ], [ -64.204102, 1.493971 ], [ -64.083252, 1.922247 ], [ -63.369141, 2.207705 ], [ -63.424072, 2.416276 ], [ -64.270020, 2.504085 ], [ -64.412842, 3.129546 ], [ -64.368896, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.632568, 4.149201 ], [ -63.896484, 4.028659 ], [ -63.094482, 3.776559 ], [ -62.808838, 4.017699 ], [ -62.094727, 4.171115 ], [ -60.974121, 4.543570 ], [ -60.611572, 4.926779 ], [ -60.743408, 5.200365 ], [ -60.216064, 5.255068 ] ] ], [ [ [ -46.790771, -0.878872 ], [ -48.175049, -0.878872 ], [ -47.834473, -0.571280 ], [ -46.790771, -0.878872 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -90.878906, 57.284981 ], [ -90.000000, 57.076575 ], [ -89.044189, 56.854979 ], [ -88.044434, 56.474628 ], [ -87.330322, 56.004524 ], [ -86.077881, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.153766 ], [ -82.441406, 54.284469 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.213766 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.134521, 54.143132 ], [ -79.837646, 54.673831 ], [ -78.233643, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.629639, 57.207710 ], [ -77.310791, 58.054632 ], [ -78.519287, 58.808052 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.324106 ], [ -77.420654, 62.552857 ], [ -75.706787, 62.283256 ], [ -74.674072, 62.186014 ], [ -73.850098, 62.446324 ], [ -72.916260, 62.109022 ], [ -71.685791, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.598389, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.402588, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.578857, 55.210222 ], [ -57.985840, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.651150 ], [ -55.766602, 53.271783 ], [ -55.689697, 52.146973 ], [ -56.414795, 51.774638 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.069017 ], [ -60.040283, 50.247205 ], [ -61.732178, 50.085344 ], [ -63.863525, 50.296358 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.518076 ], [ -68.521729, 49.073866 ], [ -69.960938, 47.746711 ], [ -71.114502, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.305121 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.171143, 48.748945 ], [ -65.115967, 48.078079 ], [ -64.808350, 46.995241 ], [ -64.478760, 46.240652 ], [ -63.182373, 45.744527 ], [ -61.523438, 45.890008 ], [ -60.523682, 47.010226 ], [ -60.457764, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.676466 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.170654, 44.465151 ], [ -64.434814, 45.298075 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.143305 ], [ -67.796631, 45.706179 ], [ -67.796631, 47.070122 ], [ -68.236084, 47.361153 ], [ -68.906250, 47.189712 ], [ -69.246826, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.092529, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.508789, 44.024422 ], [ -76.827393, 43.636075 ], [ -78.728027, 43.628123 ], [ -79.178467, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.867912 ], [ -80.255127, 42.366662 ], [ -81.287842, 42.212245 ], [ -82.441406, 41.681118 ], [ -82.694092, 41.681118 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.144775, 43.572432 ], [ -82.551270, 45.352145 ], [ -83.594971, 45.821143 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.100342, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.415139 ], [ -84.605713, 46.445427 ], [ -84.550781, 46.543750 ], [ -84.781494, 46.641894 ], [ -84.880371, 46.905246 ], [ -86.462402, 47.554287 ], [ -88.385010, 48.305121 ], [ -89.274902, 48.026672 ], [ -89.604492, 48.011975 ], [ -90.000000, 48.100095 ], [ -90.834961, 48.275882 ], [ -90.878906, 48.268569 ], [ -90.878906, 57.284981 ] ] ], [ [ [ -55.876465, 51.638476 ], [ -55.415039, 51.590723 ], [ -55.601807, 51.323747 ], [ -56.140137, 50.687758 ], [ -56.799316, 49.816721 ], [ -56.151123, 50.155786 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.589349 ], [ -54.942627, 49.317961 ], [ -54.481201, 49.560852 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.523881 ], [ -53.096924, 48.690960 ], [ -52.965088, 48.158757 ], [ -52.657471, 47.539455 ], [ -53.074951, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.250488, 47.754098 ], [ -55.404053, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.260986, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.271240, 47.606163 ], [ -59.425049, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.523881 ], [ -58.392334, 49.131408 ], [ -57.359619, 50.722547 ], [ -56.744385, 51.289406 ], [ -55.876465, 51.638476 ] ] ], [ [ [ -64.017334, 47.040182 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.422713 ], [ -62.017822, 46.445427 ], [ -62.512207, 46.035109 ], [ -62.874756, 45.974060 ], [ -64.149170, 46.399988 ], [ -64.401855, 46.732331 ], [ -64.017334, 47.040182 ] ] ], [ [ [ -64.182129, 49.958288 ], [ -62.863770, 49.710273 ], [ -61.842041, 49.289306 ], [ -61.809082, 49.109838 ], [ -62.303467, 49.088258 ], [ -63.599854, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.182129, 49.958288 ] ] ], [ [ [ -61.853027, 66.861082 ], [ -62.017822, 66.513260 ], [ -62.171631, 66.160511 ], [ -63.918457, 65.002582 ], [ -65.148926, 65.426299 ], [ -66.730957, 66.390361 ], [ -68.016357, 66.266856 ], [ -68.148193, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.676514, 63.396442 ], [ -65.017090, 62.679186 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.748491 ], [ -67.379150, 62.885205 ], [ -66.335449, 62.283256 ], [ -66.170654, 61.933782 ], [ -68.884277, 62.334310 ], [ -71.026611, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.680377 ], [ -74.838867, 64.680318 ], [ -74.827881, 64.392190 ], [ -77.717285, 64.230269 ], [ -78.563232, 64.576754 ], [ -77.904053, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.300537, 65.811781 ], [ -73.948975, 66.311035 ], [ -73.685303, 66.513260 ], [ -73.223877, 66.861082 ], [ -61.853027, 66.861082 ] ] ], [ [ [ -79.936523, 62.390369 ], [ -79.530029, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.637726 ], [ -80.101318, 61.721118 ], [ -80.364990, 62.021528 ], [ -80.321045, 62.088458 ], [ -79.936523, 62.390369 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ], [ -81.903076, 62.714462 ], [ -83.078613, 62.160372 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.456487 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.979248, 65.219894 ], [ -84.473877, 65.375994 ], [ -83.891602, 65.113772 ], [ -82.792969, 64.769443 ], [ -81.650391, 64.458587 ], [ -81.562500, 63.980781 ], [ -80.826416, 64.057785 ], [ -80.112305, 63.729047 ], [ -80.991211, 63.416115 ], [ -82.551270, 63.656011 ], [ -83.111572, 64.105805 ], [ -84.111328, 63.573010 ], [ -85.528564, 63.054959 ], [ -85.869141, 63.641382 ], [ -87.231445, 63.543658 ], [ -86.363525, 64.038554 ], [ -86.231689, 64.825581 ], [ -85.891113, 65.739656 ] ] ], [ [ [ -90.878906, 62.950227 ], [ -90.878906, 66.861082 ], [ -82.100830, 66.861082 ], [ -83.067627, 66.513260 ], [ -83.353271, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.561377 ], [ -85.803223, 66.513260 ], [ -86.077881, 66.058175 ], [ -87.033691, 65.215289 ], [ -87.330322, 64.778807 ], [ -88.483887, 64.101007 ], [ -89.923096, 64.033744 ], [ -90.000000, 63.990418 ], [ -90.714111, 63.612100 ], [ -90.780029, 62.960218 ], [ -90.878906, 62.950227 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.385010, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.905246 ], [ -84.781494, 46.641894 ], [ -84.550781, 46.543750 ], [ -84.605713, 46.445427 ], [ -84.342041, 46.415139 ], [ -84.144287, 46.513516 ], [ -84.100342, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.821143 ], [ -82.551270, 45.352145 ], [ -82.144775, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.681118 ], [ -82.441406, 41.681118 ], [ -81.287842, 42.212245 ], [ -80.255127, 42.366662 ], [ -78.947754, 42.867912 ], [ -78.925781, 42.972502 ], [ -79.013672, 43.277205 ], [ -79.178467, 43.468868 ], [ -78.728027, 43.628123 ], [ -76.827393, 43.636075 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.411133, 45.259422 ], [ -71.092529, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.694667 ], [ -69.246826, 47.450380 ], [ -68.906250, 47.189712 ], [ -68.236084, 47.361153 ], [ -67.796631, 47.070122 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.143305 ], [ -66.972656, 44.816916 ], [ -68.038330, 44.331707 ], [ -69.060059, 43.984910 ], [ -70.125732, 43.691708 ], [ -70.653076, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.342305 ], [ -70.499268, 41.812267 ], [ -70.081787, 41.787697 ], [ -70.191650, 42.147114 ], [ -69.895020, 41.926803 ], [ -69.971924, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.500350 ], [ -71.861572, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.575439, 40.979898 ], [ -73.718262, 40.938415 ], [ -73.333740, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.026367, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.355713, 40.630630 ], [ -73.992920, 40.630630 ], [ -73.959961, 40.755580 ], [ -74.267578, 40.480381 ], [ -73.970947, 40.430224 ], [ -74.003906, 40.313043 ], [ -90.878906, 40.313043 ], [ -90.878906, 48.268569 ], [ -90.834961, 48.275882 ], [ -90.000000, 48.100095 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.026672 ], [ -88.385010, 48.305121 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.121094, 66.861082 ], [ -44.121094, 60.070322 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.157910 ], [ -46.274414, 60.855613 ], [ -48.273926, 60.860963 ], [ -49.240723, 61.407236 ], [ -49.910889, 62.385277 ], [ -51.635742, 63.631625 ], [ -52.141113, 64.282760 ], [ -52.283936, 65.178418 ], [ -53.668213, 66.102719 ], [ -53.470459, 66.513260 ], [ -53.305664, 66.839487 ], [ -53.349609, 66.861082 ], [ -44.121094, 66.861082 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -85.528564, 69.885010 ], [ -84.111328, 69.805516 ], [ -82.628174, 69.660905 ], [ -81.287842, 69.162558 ], [ -81.221924, 68.668547 ], [ -81.968994, 68.134760 ], [ -81.265869, 67.600849 ], [ -81.386719, 67.114476 ], [ -83.067627, 66.513260 ], [ -83.353271, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.561377 ], [ -85.803223, 66.513260 ], [ -86.011963, 66.160511 ], [ -90.878906, 66.160511 ], [ -90.878906, 69.534518 ], [ -90.549316, 69.499918 ], [ -90.560303, 68.475895 ], [ -90.000000, 68.804014 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.319092, 67.875541 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.925140 ], [ -85.583496, 68.788119 ], [ -85.528564, 69.885010 ] ] ], [ [ [ -85.836182, 73.806447 ], [ -86.572266, 73.159991 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.606689, 72.718432 ], [ -80.749512, 72.063764 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.245567 ], [ -74.234619, 71.770505 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.559692 ], [ -71.202393, 70.920233 ], [ -68.796387, 70.528560 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.189897 ], [ -68.807373, 68.720441 ], [ -66.456299, 68.069202 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.865399 ], [ -62.017822, 66.513260 ], [ -62.171631, 66.160511 ], [ -66.346436, 66.160511 ], [ -66.730957, 66.390361 ], [ -68.016357, 66.266856 ], [ -68.038330, 66.160511 ], [ -74.058838, 66.160511 ], [ -73.948975, 66.311035 ], [ -73.685303, 66.513260 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.730272 ], [ -73.311768, 68.073305 ], [ -74.849854, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.150831 ], [ -77.288818, 69.771356 ], [ -78.178711, 69.828260 ], [ -78.958740, 70.170201 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.066650, 70.263162 ], [ -88.692627, 70.411031 ], [ -89.516602, 70.765206 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.587473 ], [ -90.208740, 72.235514 ], [ -90.000000, 72.478584 ], [ -89.439697, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.836182, 73.806447 ] ] ], [ [ [ -75.904541, 68.289716 ], [ -75.124512, 68.011685 ], [ -75.113525, 67.584098 ], [ -75.223389, 67.445443 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.244873, 67.588287 ], [ -76.816406, 68.151121 ], [ -75.904541, 68.289716 ] ] ], [ [ [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ], [ -76.343994, 73.105800 ], [ -76.256104, 72.829052 ], [ -77.321777, 72.858219 ], [ -78.398438, 72.877637 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.760425 ] ] ], [ [ [ -90.878906, 73.904204 ], [ -90.516357, 73.858452 ], [ -90.878906, 73.643266 ], [ -90.878906, 73.904204 ] ] ], [ [ [ -90.878906, 76.058508 ], [ -90.000000, 75.885412 ], [ -89.824219, 75.847855 ], [ -89.197998, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.385498, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.760010, 75.785942 ], [ -81.134033, 75.715633 ], [ -80.068359, 75.339502 ], [ -79.837646, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -90.000000, 74.546258 ], [ -90.878906, 74.654203 ], [ -90.878906, 76.058508 ] ] ], [ [ [ -76.574707, 79.335219 ], [ -76.915283, 79.325049 ], [ -75.531006, 79.198134 ], [ -75.640869, 79.171335 ], [ -76.223145, 79.019620 ], [ -75.399170, 78.527758 ], [ -76.343994, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.179748 ], [ -83.177490, 76.455203 ], [ -86.121826, 76.299953 ], [ -87.604980, 76.421713 ], [ -89.494629, 76.473203 ], [ -89.626465, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.901861 ], [ -87.659912, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.181838 ], [ -87.967529, 78.373790 ], [ -87.154541, 78.759229 ], [ -85.385742, 78.998674 ], [ -85.242920, 79.171335 ], [ -85.111084, 79.335219 ], [ -76.574707, 79.335219 ] ] ], [ [ [ -85.825195, 79.335219 ], [ -86.583252, 79.171335 ], [ -87.198486, 79.040526 ], [ -89.044189, 78.289356 ], [ -90.000000, 78.249150 ], [ -90.812988, 78.215541 ], [ -90.878906, 78.220028 ], [ -90.878906, 79.335219 ], [ -85.825195, 79.335219 ] ] ], [ [ [ -90.878906, 76.226907 ], [ -90.878906, 76.504005 ], [ -90.747070, 76.450056 ], [ -90.878906, 76.226907 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.121094, 79.335219 ], [ -44.121094, 66.160511 ], [ -53.635254, 66.160511 ], [ -53.470459, 66.513260 ], [ -53.305664, 66.839487 ], [ -53.975830, 67.191259 ], [ -52.987061, 68.358699 ], [ -51.481934, 68.732399 ], [ -51.086426, 69.150831 ], [ -50.877686, 69.930300 ], [ -52.020264, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.287257 ], [ -54.689941, 69.611206 ], [ -54.755859, 70.292822 ], [ -54.360352, 70.823031 ], [ -53.437500, 70.837461 ], [ -51.394043, 70.572458 ], [ -53.118896, 71.205460 ], [ -54.008789, 71.549264 ], [ -55.008545, 71.409675 ], [ -55.843506, 71.656749 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.961534 ], [ -56.129150, 73.652545 ], [ -57.326660, 74.712244 ], [ -58.601074, 75.101283 ], [ -58.590088, 75.519151 ], [ -61.270752, 76.103435 ], [ -63.402100, 76.177123 ], [ -66.071777, 76.135063 ], [ -68.510742, 76.063801 ], [ -69.675293, 76.380383 ], [ -71.411133, 77.009817 ], [ -68.785400, 77.324579 ], [ -66.774902, 77.377506 ], [ -71.048584, 77.636542 ], [ -73.300781, 78.046071 ], [ -73.168945, 78.433418 ], [ -69.378662, 78.914496 ], [ -67.434082, 79.171335 ], [ -66.170654, 79.335219 ], [ -44.121094, 79.335219 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -90.878906, 80.691566 ], [ -90.000000, 80.580741 ], [ -89.450684, 80.510360 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.661584 ], [ -85.825195, 79.337252 ], [ -86.583252, 79.171335 ], [ -87.198486, 79.040526 ], [ -87.275391, 79.004962 ], [ -90.878906, 79.004962 ], [ -90.878906, 80.691566 ] ] ], [ [ [ -72.839355, 83.233838 ], [ -68.510742, 83.107117 ], [ -65.830078, 83.028886 ], [ -63.687744, 82.901061 ], [ -61.853027, 82.629924 ], [ -61.896973, 82.363104 ], [ -64.335938, 81.927816 ], [ -66.763916, 81.726350 ], [ -67.664795, 81.502052 ], [ -65.489502, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.635922 ], [ -73.883057, 79.430356 ], [ -76.915283, 79.325049 ], [ -75.531006, 79.198134 ], [ -75.640869, 79.171335 ], [ -76.223145, 79.019620 ], [ -76.201172, 79.004962 ], [ -85.374756, 79.004962 ], [ -85.242920, 79.171335 ], [ -85.100098, 79.347411 ], [ -86.517334, 79.738196 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.419189, 80.101581 ], [ -81.859131, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.604980, 80.517603 ], [ -89.373779, 80.857129 ], [ -90.000000, 81.166059 ], [ -90.208740, 81.260042 ], [ -90.878906, 81.431957 ], [ -90.878906, 81.986228 ], [ -90.109863, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.934326, 82.118384 ], [ -86.978760, 82.280906 ], [ -85.506592, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.430420, 82.860213 ], [ -81.101074, 83.020881 ], [ -79.310303, 83.130809 ], [ -76.256104, 83.172729 ], [ -75.728760, 83.064796 ], [ -72.839355, 83.233838 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.121094, 83.103160 ], [ -44.121094, 79.004962 ], [ -68.697510, 79.004962 ], [ -67.434082, 79.171335 ], [ -65.720215, 79.396042 ], [ -65.324707, 79.759702 ], [ -68.027344, 80.118564 ], [ -67.159424, 80.517603 ], [ -63.698730, 81.214853 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.292969, 82.035091 ], [ -57.216797, 82.191861 ], [ -54.140625, 82.200811 ], [ -53.052979, 81.889156 ], [ -50.394287, 82.440097 ], [ -48.010254, 82.065480 ], [ -46.604004, 81.986228 ], [ -45.000000, 81.737409 ], [ -44.527588, 81.661279 ], [ -45.000000, 81.772072 ], [ -46.911621, 82.200811 ], [ -46.768799, 82.628514 ], [ -45.000000, 82.948424 ], [ -44.121094, 83.103160 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 0.878906, -79.004962 ], [ 0.878906, -85.126373 ], [ -45.878906, -85.126373 ], [ -45.878906, -81.787779 ], [ -45.000000, -81.836284 ], [ -44.835205, -81.845640 ], [ -42.813721, -82.080631 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.356335 ], [ -38.254395, -81.336499 ], [ -36.276855, -81.120388 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.767668 ], [ -30.102539, -80.591523 ], [ -28.553467, -80.336731 ], [ -29.256592, -79.983802 ], [ -29.696045, -79.631968 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.454511 ], [ -35.650635, -79.454511 ], [ -35.859375, -79.171335 ], [ -35.914307, -79.082221 ], [ -35.903320, -79.004962 ], [ 0.878906, -79.004962 ] ] ], [ [ [ -43.549805, -79.004962 ], [ -43.494873, -79.084302 ], [ -43.472900, -79.171335 ], [ -43.374023, -79.514661 ], [ -43.341064, -80.025752 ], [ -44.890137, -80.338575 ], [ -45.000000, -80.356995 ], [ -45.878906, -80.495859 ], [ -45.878906, -79.004962 ], [ -43.549805, -79.004962 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ -45.878906, -77.943238 ], [ -45.164795, -78.046071 ], [ -45.000000, -78.100561 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.084302 ], [ -43.472900, -79.171335 ], [ -43.428955, -79.335219 ], [ -45.878906, -79.335219 ], [ -45.878906, -77.943238 ] ] ], [ [ [ -6.877441, -70.931004 ], [ -5.800781, -71.027678 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.458646 ], [ -3.054199, -71.283174 ], [ -1.801758, -71.166486 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.878906, -71.300793 ], [ 0.878906, -79.335219 ], [ -29.696045, -79.335219 ], [ -29.696045, -79.259730 ], [ -31.629639, -79.298560 ], [ -32.102051, -79.335219 ], [ -35.738525, -79.335219 ], [ -35.859375, -79.171335 ], [ -35.914307, -79.082221 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.903809, -77.888038 ], [ -32.222900, -77.652997 ], [ -29.783936, -77.064036 ], [ -28.883057, -76.672189 ], [ -27.520752, -76.496311 ], [ -26.169434, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.239979 ], [ -22.467041, -76.103435 ], [ -21.225586, -75.906829 ], [ -20.017090, -75.672197 ], [ -18.918457, -75.436505 ], [ -17.523193, -75.123864 ], [ -16.644287, -74.790261 ], [ -15.710449, -74.496413 ], [ -15.413818, -74.104015 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.457764, -73.144070 ], [ -14.414062, -72.948653 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.399028 ], [ -11.513672, -72.009552 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.262010 ], [ -9.107666, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.694744 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -45.878906, -1.186439 ], [ -44.912109, -1.548884 ], [ -44.417725, -2.130856 ], [ -44.582520, -2.690661 ], [ -43.428955, -2.372369 ], [ -41.473389, -2.910125 ], [ -39.979248, -2.866235 ], [ -38.507080, -3.699819 ], [ -37.232666, -4.817312 ], [ -36.463623, -5.101887 ], [ -35.606689, -5.145657 ], [ -35.244141, -5.462896 ], [ -34.738770, -7.340675 ], [ -35.134277, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.056885, -11.038255 ], [ -37.694092, -12.168226 ], [ -38.430176, -13.036669 ], [ -38.682861, -13.047372 ], [ -38.957520, -13.784737 ], [ -38.891602, -15.665354 ], [ -39.276123, -17.863747 ], [ -39.583740, -18.260653 ], [ -39.770508, -19.590844 ], [ -40.781250, -20.899871 ], [ -40.946045, -21.932855 ], [ -41.759033, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.958393 ], [ -44.648438, -23.342256 ], [ -45.000000, -23.574057 ], [ -45.362549, -23.795398 ], [ -45.878906, -23.926013 ], [ -45.878906, -1.186439 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 41.640078 ], [ 0.878906, 41.029643 ], [ 0.802002, 41.021355 ], [ 0.714111, 40.680638 ], [ 0.098877, 40.128491 ], [ 0.000000, 39.901309 ], [ -0.285645, 39.317300 ], [ 0.000000, 38.908133 ], [ 0.109863, 38.745515 ], [ 0.000000, 38.659778 ], [ -0.472412, 38.298559 ], [ -0.692139, 37.649034 ], [ -1.439209, 37.448697 ], [ -2.153320, 36.677231 ], [ -3.416748, 36.659606 ], [ -4.372559, 36.686041 ], [ -4.998779, 36.332828 ], [ -5.383301, 35.951330 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.525879, 36.949892 ], [ -7.459717, 37.099003 ], [ -7.547607, 37.431251 ], [ -7.174072, 37.805444 ], [ -7.031250, 38.082690 ], [ -7.382812, 38.376115 ], [ -7.108154, 39.036253 ], [ -7.503662, 39.631077 ], [ -7.075195, 39.715638 ], [ -7.031250, 40.187267 ], [ -6.866455, 40.338170 ], [ -6.855469, 40.979898 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.385052 ], [ -6.536865, 41.640078 ], [ 0.878906, 41.640078 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "name_sort": "Senegal", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.578857, 16.604610 ], [ -14.106445, 16.309596 ], [ -13.436279, 16.045813 ], [ -12.832031, 15.305380 ], [ -12.172852, 14.626109 ], [ -12.128906, 13.998037 ], [ -11.931152, 13.432367 ], [ -11.557617, 13.143678 ], [ -11.469727, 12.758232 ], [ -11.524658, 12.447305 ], [ -11.667480, 12.393659 ], [ -12.205811, 12.468760 ], [ -12.282715, 12.361466 ], [ -12.502441, 12.340002 ], [ -13.227539, 12.576010 ], [ -15.556641, 12.629618 ], [ -15.820312, 12.522391 ], [ -16.149902, 12.554564 ], [ -16.688232, 12.393659 ], [ -16.842041, 13.154376 ], [ -15.941162, 13.132979 ], [ -15.699463, 13.272026 ], [ -15.512695, 13.282719 ], [ -15.150146, 13.517838 ], [ -14.721680, 13.304103 ], [ -14.282227, 13.282719 ], [ -13.853760, 13.507155 ], [ -14.051514, 13.795406 ], [ -14.381104, 13.635310 ], [ -14.688721, 13.635310 ], [ -15.084229, 13.880746 ], [ -15.402832, 13.870080 ], [ -15.633545, 13.624633 ], [ -16.721191, 13.603278 ], [ -17.127686, 14.381476 ], [ -17.633057, 14.732386 ], [ -17.193604, 14.923554 ], [ -16.710205, 15.623037 ], [ -16.468506, 16.140816 ], [ -16.127930, 16.457159 ], [ -15.633545, 16.372851 ], [ -15.139160, 16.594081 ], [ -14.578857, 16.604610 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.690186, 27.401032 ], [ -4.932861, 24.976099 ], [ -6.459961, 24.966140 ], [ -5.493164, 16.330683 ], [ -5.317383, 16.204125 ], [ -5.548096, 15.506619 ], [ -9.558105, 15.496032 ], [ -9.700928, 15.273587 ], [ -10.096436, 15.337167 ], [ -10.656738, 15.135764 ], [ -11.359863, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.843262, 14.806749 ], [ -12.172852, 14.626109 ], [ -12.832031, 15.305380 ], [ -13.436279, 16.045813 ], [ -14.106445, 16.309596 ], [ -14.578857, 16.604610 ], [ -15.139160, 16.594081 ], [ -15.633545, 16.372851 ], [ -16.127930, 16.457159 ], [ -16.468506, 16.140816 ], [ -16.556396, 16.678293 ], [ -16.270752, 17.172283 ], [ -16.149902, 18.114529 ], [ -16.259766, 19.103648 ], [ -16.380615, 19.601194 ], [ -16.281738, 20.097206 ], [ -16.545410, 20.571082 ], [ -17.072754, 21.002471 ], [ -16.853027, 21.340548 ], [ -12.930908, 21.330315 ], [ -13.128662, 22.776182 ], [ -12.875977, 23.291811 ], [ -11.942139, 23.382598 ], [ -11.975098, 25.938287 ], [ -8.690186, 25.888879 ], [ -8.690186, 27.401032 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ivory Coast", "sov_a3": "CIV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ivory Coast", "adm0_a3": "CIV", "geou_dif": 0, "geounit": "Ivory Coast", "gu_a3": "CIV", "su_dif": 0, "subunit": "Ivory Coast", "su_a3": "CIV", "brk_diff": 0, "name": "Côte d'Ivoire", "name_long": "Côte d'Ivoire", "brk_a3": "CIV", "brk_name": "Côte d'Ivoire", "abbrev": "I.C.", "postal": "CI", "formal_en": "Republic of Ivory Coast", "formal_fr": "Republic of Cote D'Ivoire", "name_sort": "Côte d'Ivoire", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 20617068, "gdp_md_est": 33850, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CI", "iso_a3": "CIV", "iso_n3": "384", "un_a3": "384", "wb_a2": "CI", "wb_a3": "CIV", "woe_id": -99, "adm0_a3_is": "CIV", "adm0_a3_us": "CIV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 13, "long_len": 13, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.207275, 10.531020 ], [ -6.053467, 10.098670 ], [ -5.822754, 10.228437 ], [ -5.405273, 10.379765 ], [ -4.954834, 10.152746 ], [ -4.790039, 9.828154 ], [ -4.339600, 9.611582 ], [ -3.988037, 9.871452 ], [ -3.515625, 9.903921 ], [ -2.834473, 9.644077 ], [ -2.570801, 8.222364 ], [ -2.988281, 7.384258 ], [ -3.251953, 6.260697 ], [ -2.812500, 5.397273 ], [ -2.856445, 5.003394 ], [ -3.317871, 4.992450 ], [ -4.010010, 5.189423 ], [ -4.658203, 5.178482 ], [ -5.844727, 5.003394 ], [ -6.536865, 4.707828 ], [ -7.525635, 4.346411 ], [ -7.712402, 4.368320 ], [ -7.635498, 5.189423 ], [ -7.547607, 5.320705 ], [ -7.580566, 5.714380 ], [ -7.998047, 6.129631 ], [ -8.316650, 6.195168 ], [ -8.613281, 6.468151 ], [ -8.393555, 6.915521 ], [ -8.492432, 7.406048 ], [ -8.448486, 7.689217 ], [ -8.283691, 7.689217 ], [ -8.228760, 8.124491 ], [ -8.305664, 8.320212 ], [ -8.206787, 8.461506 ], [ -7.833252, 8.581021 ], [ -8.085938, 9.384032 ], [ -8.316650, 9.795678 ], [ -8.239746, 10.131117 ], [ -8.031006, 10.206813 ], [ -7.910156, 10.304110 ], [ -7.624512, 10.152746 ], [ -6.855469, 10.141932 ], [ -6.668701, 10.433793 ], [ -6.503906, 10.412183 ], [ -6.207275, 10.531020 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 36.421282 ], [ 0.878906, 21.227942 ], [ 0.000000, 21.800308 ], [ -4.932861, 24.976099 ], [ -8.690186, 27.401032 ], [ -8.668213, 27.595935 ], [ -8.679199, 28.844674 ], [ -7.064209, 29.583012 ], [ -6.064453, 29.735762 ], [ -5.251465, 30.002517 ], [ -4.866943, 30.505484 ], [ -3.691406, 30.902225 ], [ -3.658447, 31.644029 ], [ -3.076172, 31.728167 ], [ -2.625732, 32.101190 ], [ -1.318359, 32.268555 ], [ -1.131592, 32.657876 ], [ -1.395264, 32.870360 ], [ -1.735840, 33.925130 ], [ -1.801758, 34.533712 ], [ -2.175293, 35.173808 ], [ -1.219482, 35.719758 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.494385, 36.306272 ], [ 0.878906, 36.421282 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 14.966013 ], [ 0.878906, 13.475106 ], [ 0.428467, 13.998037 ], [ 0.285645, 14.445319 ], [ 0.373535, 14.934170 ], [ 0.878906, 14.966013 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.969727, 66.861082 ], [ -34.211426, 66.683436 ], [ -34.727783, 66.513260 ], [ -36.353760, 65.982270 ], [ -37.045898, 65.941993 ], [ -38.375244, 65.694476 ], [ -39.814453, 65.462824 ], [ -40.671387, 64.844268 ], [ -40.693359, 64.139369 ], [ -41.198730, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.385010, 60.103195 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.157910 ], [ -45.878906, 60.646262 ], [ -45.878906, 66.861082 ], [ -33.969727, 66.861082 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iceland", "sov_a3": "ISL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iceland", "adm0_a3": "ISL", "geou_dif": 0, "geounit": "Iceland", "gu_a3": "ISL", "su_dif": 0, "subunit": "Iceland", "su_a3": "ISL", "brk_diff": 0, "name": "Iceland", "name_long": "Iceland", "brk_a3": "ISL", "brk_name": "Iceland", "abbrev": "Iceland", "postal": "IS", "formal_en": "Republic of Iceland", "name_sort": "Iceland", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 306694, "gdp_md_est": 12710, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IS", "iso_a3": "ISL", "iso_n3": "352", "un_a3": "352", "wb_a2": "IS", "wb_a3": "ISL", "woe_id": -99, "adm0_a3_is": "ISL", "adm0_a3_us": "ISL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.171875, 66.530768 ], [ -15.853271, 66.513260 ], [ -14.512939, 66.456275 ], [ -14.743652, 65.811781 ], [ -13.612061, 65.127638 ], [ -14.919434, 64.368438 ], [ -17.797852, 63.680377 ], [ -18.665771, 63.499573 ], [ -22.763672, 63.961496 ], [ -21.785889, 64.406431 ], [ -23.961182, 64.895589 ], [ -22.192383, 65.086018 ], [ -22.236328, 65.380571 ], [ -24.334717, 65.612952 ], [ -23.653564, 66.266856 ], [ -22.137451, 66.412352 ], [ -20.577393, 65.735142 ], [ -19.061279, 66.280118 ], [ -17.808838, 65.995681 ], [ -16.215820, 66.513260 ], [ -16.171875, 66.530768 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ireland", "sov_a3": "IRL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ireland", "adm0_a3": "IRL", "geou_dif": 0, "geounit": "Ireland", "gu_a3": "IRL", "su_dif": 0, "subunit": "Ireland", "su_a3": "IRL", "brk_diff": 0, "name": "Ireland", "name_long": "Ireland", "brk_a3": "IRL", "brk_name": "Ireland", "abbrev": "Ire.", "postal": "IRL", "formal_en": "Ireland", "name_sort": "Ireland", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 4203200, "gdp_md_est": 188400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IE", "iso_a3": "IRL", "iso_n3": "372", "un_a3": "372", "wb_a2": "IE", "wb_a3": "IRL", "woe_id": -99, "adm0_a3_is": "IRL", "adm0_a3_us": "IRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.580566, 55.134930 ], [ -7.371826, 54.597528 ], [ -7.580566, 54.065836 ], [ -6.954346, 54.078729 ], [ -6.207275, 53.871963 ], [ -6.042480, 53.153359 ], [ -6.789551, 52.261434 ], [ -8.569336, 51.672555 ], [ -9.986572, 51.822198 ], [ -9.173584, 52.869130 ], [ -9.689941, 53.884916 ], [ -8.338623, 54.667478 ], [ -7.580566, 55.134930 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 49.979488 ], [ 0.878906, 42.730874 ], [ 0.692139, 42.803462 ], [ 0.329590, 42.585444 ], [ 0.000000, 42.666281 ], [ -1.505127, 43.036776 ], [ -1.911621, 43.428988 ], [ -1.384277, 44.024422 ], [ -1.197510, 46.019853 ], [ -2.230225, 47.070122 ], [ -2.966309, 47.576526 ], [ -4.493408, 47.960502 ], [ -4.603271, 48.690960 ], [ -3.295898, 48.908059 ], [ -1.625977, 48.647428 ], [ -1.933594, 49.781264 ], [ -0.999756, 49.353756 ], [ 0.000000, 49.681847 ], [ 0.878906, 49.979488 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.987061, 43.755225 ], [ -6.756592, 43.572432 ], [ -5.416260, 43.580391 ], [ -4.350586, 43.405047 ], [ -3.526611, 43.460894 ], [ -1.911621, 43.428988 ], [ -1.505127, 43.036776 ], [ 0.000000, 42.666281 ], [ 0.329590, 42.585444 ], [ 0.692139, 42.803462 ], [ 0.878906, 42.730874 ], [ 0.878906, 41.029643 ], [ 0.802002, 41.021355 ], [ 0.714111, 40.680638 ], [ 0.307617, 40.313043 ], [ -6.888428, 40.313043 ], [ -6.866455, 40.338170 ], [ -6.855469, 40.979898 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.385052 ], [ -6.668701, 41.885921 ], [ -7.261963, 41.918629 ], [ -7.426758, 41.795888 ], [ -8.020020, 41.795888 ], [ -8.272705, 42.285437 ], [ -8.679199, 42.138968 ], [ -9.041748, 41.885921 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.028745 ], [ -7.987061, 43.755225 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -18.984375, 79.335219 ], [ -19.193115, 79.171335 ], [ -19.709473, 78.752802 ], [ -19.676514, 77.638894 ], [ -18.479004, 76.987572 ], [ -20.039062, 76.945452 ], [ -21.687012, 76.629067 ], [ -19.841309, 76.098157 ], [ -19.599609, 75.250260 ], [ -20.676270, 75.157673 ], [ -19.379883, 74.298436 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.818698 ], [ -20.764160, 73.465984 ], [ -22.181396, 73.312091 ], [ -23.576660, 73.308936 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.600551 ], [ -24.796143, 72.332464 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.763916, 70.667244 ], [ -23.543701, 70.473553 ], [ -24.312744, 70.859087 ], [ -25.554199, 71.434176 ], [ -25.202637, 70.754345 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.357178, 70.132898 ], [ -25.037842, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.783447, 68.122482 ], [ -32.816162, 67.738597 ], [ -34.211426, 66.683436 ], [ -34.727783, 66.513260 ], [ -35.804443, 66.160511 ], [ -45.878906, 66.160511 ], [ -45.878906, 79.335219 ], [ -18.984375, 79.335219 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iceland", "sov_a3": "ISL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iceland", "adm0_a3": "ISL", "geou_dif": 0, "geounit": "Iceland", "gu_a3": "ISL", "su_dif": 0, "subunit": "Iceland", "su_a3": "ISL", "brk_diff": 0, "name": "Iceland", "name_long": "Iceland", "brk_a3": "ISL", "brk_name": "Iceland", "abbrev": "Iceland", "postal": "IS", "formal_en": "Republic of Iceland", "name_sort": "Iceland", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 306694, "gdp_md_est": 12710, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IS", "iso_a3": "ISL", "iso_n3": "352", "un_a3": "352", "wb_a2": "IS", "wb_a3": "ISL", "woe_id": -99, "adm0_a3_is": "ISL", "adm0_a3_us": "ISL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.137451, 66.412352 ], [ -21.566162, 66.160511 ], [ -23.763428, 66.160511 ], [ -23.653564, 66.266856 ], [ -22.137451, 66.412352 ] ] ], [ [ [ -18.544922, 66.160511 ], [ -19.390869, 66.160511 ], [ -19.061279, 66.280118 ], [ -18.544922, 66.160511 ] ] ], [ [ [ -15.853271, 66.513260 ], [ -14.512939, 66.456275 ], [ -14.622803, 66.160511 ], [ -17.292480, 66.160511 ], [ -16.215820, 66.513260 ], [ -16.171875, 66.530768 ], [ -15.853271, 66.513260 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ], [ -20.852051, 82.727921 ], [ -22.697754, 82.342636 ], [ -26.520996, 82.298593 ], [ -31.904297, 82.200811 ], [ -31.398926, 82.022903 ], [ -27.861328, 82.131931 ], [ -24.851074, 81.787779 ], [ -22.906494, 82.094243 ], [ -22.082520, 81.735830 ], [ -23.170166, 81.154241 ], [ -20.632324, 81.524751 ], [ -15.776367, 81.913920 ], [ -12.777100, 81.720024 ], [ -12.216797, 81.291703 ], [ -16.292725, 80.580741 ], [ -16.853027, 80.351473 ], [ -20.050049, 80.178713 ], [ -17.731934, 80.129870 ], [ -18.907471, 79.400085 ], [ -19.193115, 79.171335 ], [ -19.401855, 79.004962 ], [ -45.878906, 79.004962 ], [ -45.878906, 81.875194 ], [ -45.000000, 81.737409 ], [ -44.527588, 81.661279 ], [ -45.000000, 81.772072 ], [ -45.878906, 81.973965 ], [ -45.878906, 82.791612 ], [ -45.000000, 82.948424 ], [ -43.406982, 83.226067 ], [ -39.902344, 83.180561 ], [ -38.627930, 83.549851 ], [ -35.090332, 83.645406 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 45.878906, -79.004962 ], [ 45.878906, -85.126373 ], [ -0.878906, -85.126373 ], [ -0.878906, -79.004962 ], [ 45.878906, -79.004962 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 45.878906, -67.771870 ], [ 45.878906, -79.335219 ], [ -0.878906, -79.335219 ], [ -0.878906, -71.212537 ], [ -0.670166, -71.223149 ], [ -0.230713, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.867920, -71.304315 ], [ 1.878662, -71.127434 ], [ 4.130859, -70.851881 ], [ 5.152588, -70.616261 ], [ 6.273193, -70.458859 ], [ 7.130127, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.009323 ], [ 10.810547, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.244604 ], [ 13.414307, -69.971730 ], [ 14.732666, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.941162, -70.028094 ], [ 17.017822, -69.911441 ], [ 18.193359, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.368652, -70.009323 ], [ 21.445312, -70.069330 ], [ 21.917725, -70.399978 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.517570 ], [ 24.840088, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.092041, -70.322438 ], [ 29.146729, -70.203715 ], [ 30.025635, -69.930300 ], [ 30.970459, -69.756155 ], [ 31.981201, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.831802 ], [ 33.859863, -68.500067 ], [ 34.903564, -68.656555 ], [ 35.299072, -69.009611 ], [ 36.156006, -69.244472 ], [ 37.199707, -69.166466 ], [ 37.902832, -69.519147 ], [ 38.638916, -69.775154 ], [ 39.660645, -69.538359 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.930761 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.459766 ], [ 44.110107, -68.265319 ], [ 45.000000, -68.019910 ], [ 45.878906, -67.771870 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.442139, 0.878872 ], [ 33.892822, 0.109863 ], [ 33.892822, -0.944781 ], [ 31.860352, -1.021674 ], [ 30.761719, -1.010690 ], [ 30.410156, -1.131518 ], [ 29.816895, -1.439058 ], [ 29.575195, -1.340210 ], [ 29.586182, -0.582265 ], [ 29.816895, -0.197754 ], [ 29.827881, 0.000000 ], [ 29.871826, 0.604237 ], [ 29.992676, 0.878872 ], [ 34.442139, 0.878872 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.979004, 0.878872 ], [ 40.989990, 0.000000 ], [ 40.989990, -0.856902 ], [ 41.583252, -1.680667 ], [ 40.880127, -2.075962 ], [ 40.627441, -2.493109 ], [ 40.253906, -2.569939 ], [ 40.111084, -3.272146 ], [ 39.792480, -3.677892 ], [ 39.594727, -4.346411 ], [ 39.199219, -4.674980 ], [ 37.760010, -3.666928 ], [ 37.694092, -3.096636 ], [ 34.068604, -1.054628 ], [ 33.892822, -0.944781 ], [ 33.892822, 0.109863 ], [ 34.442139, 0.878872 ], [ 40.979004, 0.878872 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.846436, 0.878872 ], [ 43.132324, 0.296630 ], [ 42.868652, 0.000000 ], [ 42.033691, -0.911827 ], [ 41.802979, -1.439058 ], [ 41.583252, -1.680667 ], [ 40.989990, -0.856902 ], [ 40.989990, 0.000000 ], [ 40.979004, 0.878872 ], [ 43.846436, 0.878872 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Gabon", "sov_a3": "GAB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gabon", "adm0_a3": "GAB", "geou_dif": 0, "geounit": "Gabon", "gu_a3": "GAB", "su_dif": 0, "subunit": "Gabon", "su_a3": "GAB", "brk_diff": 0, "name": "Gabon", "name_long": "Gabon", "brk_a3": "GAB", "brk_name": "Gabon", "abbrev": "Gabon", "postal": "GA", "formal_en": "Gabonese Republic", "name_sort": "Gabon", "mapcolor7": 6, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 1514993, "gdp_md_est": 21110, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "GA", "iso_a3": "GAB", "iso_n3": "266", "un_a3": "266", "wb_a2": "GA", "wb_a3": "GAB", "woe_id": -99, "adm0_a3_is": "GAB", "adm0_a3_us": "GAB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": 3, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.150391, 0.878872 ], [ 13.842773, 0.043945 ], [ 13.864746, 0.000000 ], [ 14.315186, -0.549308 ], [ 14.425049, -1.329226 ], [ 14.293213, -1.988126 ], [ 13.985596, -2.460181 ], [ 13.106689, -2.427252 ], [ 12.568359, -1.944207 ], [ 12.491455, -2.383346 ], [ 11.810303, -2.504085 ], [ 11.469727, -2.756504 ], [ 11.854248, -3.425692 ], [ 11.085205, -3.973861 ], [ 10.063477, -2.964984 ], [ 9.404297, -2.141835 ], [ 8.789062, -1.109550 ], [ 8.822021, -0.769020 ], [ 9.041748, -0.450435 ], [ 9.195557, 0.000000 ], [ 9.283447, 0.274657 ], [ 9.448242, 0.878872 ], [ 14.150391, 0.878872 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.370361, -5.856475 ], [ 16.325684, -5.867403 ], [ 16.567383, -6.620957 ], [ 16.853027, -7.220800 ], [ 17.468262, -8.059230 ], [ 18.127441, -7.983078 ], [ 18.457031, -7.841615 ], [ 19.006348, -7.983078 ], [ 19.160156, -7.732765 ], [ 19.412842, -7.155400 ], [ 20.028076, -7.111795 ], [ 20.083008, -6.937333 ], [ 20.599365, -6.937333 ], [ 20.511475, -7.297088 ], [ 21.719971, -7.286190 ], [ 21.741943, -7.917793 ], [ 21.939697, -8.298470 ], [ 21.796875, -8.906780 ], [ 21.873779, -9.514079 ], [ 22.203369, -9.893099 ], [ 22.148438, -11.081385 ], [ 22.401123, -10.984335 ], [ 22.829590, -11.016689 ], [ 23.455811, -10.865676 ], [ 23.906250, -10.919618 ], [ 24.016113, -11.232286 ], [ 23.895264, -11.716788 ], [ 24.071045, -12.189704 ], [ 23.928223, -12.565287 ], [ 24.016113, -12.908198 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.077486 ], [ 22.554932, -16.888660 ], [ 23.214111, -17.518344 ], [ 21.368408, -17.926476 ], [ 18.951416, -17.780074 ], [ 18.259277, -17.308688 ], [ 14.205322, -17.350638 ], [ 14.051514, -17.413546 ], [ 13.458252, -16.962233 ], [ 12.810059, -16.941215 ], [ 12.205811, -17.109293 ], [ 11.733398, -17.298199 ], [ 11.634521, -16.667769 ], [ 11.777344, -15.792254 ], [ 12.117920, -14.870469 ], [ 12.172852, -14.445319 ], [ 12.491455, -13.539201 ], [ 12.733154, -13.132979 ], [ 13.304443, -12.479487 ], [ 13.623047, -12.028576 ], [ 13.732910, -11.296934 ], [ 13.677979, -10.725381 ], [ 13.381348, -10.368958 ], [ 12.864990, -9.156333 ], [ 12.919922, -8.950193 ], [ 13.227539, -8.559294 ], [ 12.722168, -6.926427 ], [ 12.216797, -6.293459 ], [ 12.315674, -6.096860 ], [ 12.733154, -5.954827 ], [ 13.018799, -5.976680 ], [ 13.370361, -5.856475 ] ] ], [ [ [ 12.612305, -4.434044 ], [ 12.985840, -4.773521 ], [ 12.623291, -4.981505 ], [ 12.458496, -5.244128 ], [ 12.436523, -5.681584 ], [ 12.172852, -5.779966 ], [ 11.909180, -5.036227 ], [ 12.315674, -4.598327 ], [ 12.612305, -4.434044 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Namibia", "sov_a3": "NAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Namibia", "adm0_a3": "NAM", "geou_dif": 0, "geounit": "Namibia", "gu_a3": "NAM", "su_dif": 0, "subunit": "Namibia", "su_a3": "NAM", "brk_diff": 0, "name": "Namibia", "name_long": "Namibia", "brk_a3": "NAM", "brk_name": "Namibia", "abbrev": "Nam.", "postal": "NA", "formal_en": "Republic of Namibia", "name_sort": "Namibia", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 2108665, "gdp_md_est": 13250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "NA", "iso_a3": "NAM", "iso_n3": "516", "un_a3": "516", "wb_a2": "NA", "wb_a3": "NAM", "woe_id": -99, "adm0_a3_is": "NAM", "adm0_a3_us": "NAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.810059, -16.941215 ], [ 13.458252, -16.962233 ], [ 14.051514, -17.413546 ], [ 14.205322, -17.350638 ], [ 18.259277, -17.308688 ], [ 18.951416, -17.780074 ], [ 21.368408, -17.926476 ], [ 23.214111, -17.518344 ], [ 24.027100, -17.287709 ], [ 24.675293, -17.350638 ], [ 25.070801, -17.570721 ], [ 25.081787, -17.654491 ], [ 24.510498, -17.884659 ], [ 24.213867, -17.884659 ], [ 23.576660, -18.271086 ], [ 23.192139, -17.863747 ], [ 21.654053, -18.218916 ], [ 20.906982, -18.250220 ], [ 20.874023, -21.810508 ], [ 19.885254, -21.841105 ], [ 19.885254, -28.459033 ], [ 18.995361, -28.969701 ], [ 18.457031, -29.036961 ], [ 17.830811, -28.854296 ], [ 17.380371, -28.777289 ], [ 17.215576, -28.352734 ], [ 16.820068, -28.081674 ], [ 16.336670, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.205078, -27.088473 ], [ 14.985352, -26.115986 ], [ 14.732666, -25.383735 ], [ 14.403076, -23.845650 ], [ 14.381104, -22.654572 ], [ 14.249268, -22.105999 ], [ 13.864746, -21.698265 ], [ 13.348389, -20.869078 ], [ 12.821045, -19.663280 ], [ 12.601318, -19.041349 ], [ 11.788330, -18.062312 ], [ 11.733398, -17.298199 ], [ 12.205811, -17.109293 ], [ 12.810059, -16.941215 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Rwanda", "sov_a3": "RWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Rwanda", "adm0_a3": "RWA", "geou_dif": 0, "geounit": "Rwanda", "gu_a3": "RWA", "su_dif": 0, "subunit": "Rwanda", "su_a3": "RWA", "brk_diff": 0, "name": "Rwanda", "name_long": "Rwanda", "brk_a3": "RWA", "brk_name": "Rwanda", "abbrev": "Rwa.", "postal": "RW", "formal_en": "Republic of Rwanda", "name_sort": "Rwanda", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 10473282, "gdp_md_est": 9706, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "RW", "iso_a3": "RWA", "iso_n3": "646", "un_a3": "646", "wb_a2": "RW", "wb_a3": "RWA", "woe_id": -99, "adm0_a3_is": "RWA", "adm0_a3_us": "RWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.410156, -1.131518 ], [ 30.805664, -1.691649 ], [ 30.750732, -2.284551 ], [ 30.465088, -2.405299 ], [ 29.937744, -2.339438 ], [ 29.630127, -2.910125 ], [ 29.014893, -2.833317 ], [ 29.113770, -2.284551 ], [ 29.245605, -2.207705 ], [ 29.289551, -1.614776 ], [ 29.575195, -1.340210 ], [ 29.816895, -1.439058 ], [ 30.410156, -1.131518 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zimbabwe", "sov_a3": "ZWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zimbabwe", "adm0_a3": "ZWE", "geou_dif": 0, "geounit": "Zimbabwe", "gu_a3": "ZWE", "su_dif": 0, "subunit": "Zimbabwe", "su_a3": "ZWE", "brk_diff": 0, "name": "Zimbabwe", "name_long": "Zimbabwe", "brk_a3": "ZWE", "brk_name": "Zimbabwe", "abbrev": "Zimb.", "postal": "ZW", "formal_en": "Republic of Zimbabwe", "name_sort": "Zimbabwe", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 12619600, "gdp_md_est": 9323, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ZW", "iso_a3": "ZWE", "iso_n3": "716", "un_a3": "716", "wb_a2": "ZW", "wb_a3": "ZWE", "woe_id": -99, "adm0_a3_is": "ZWE", "adm0_a3_us": "ZWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.267334, -15.506619 ], [ 30.333252, -15.876809 ], [ 31.168213, -15.855674 ], [ 31.629639, -16.066929 ], [ 31.849365, -16.309596 ], [ 32.321777, -16.383391 ], [ 32.838135, -16.709863 ], [ 32.849121, -17.978733 ], [ 32.651367, -18.667063 ], [ 32.607422, -19.414792 ], [ 32.772217, -19.715000 ], [ 32.651367, -20.303418 ], [ 32.508545, -20.385825 ], [ 32.244873, -21.115249 ], [ 31.190186, -22.248429 ], [ 30.651855, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.095820 ], [ 29.421387, -22.085640 ], [ 28.784180, -21.637005 ], [ 28.015137, -21.483741 ], [ 27.718506, -20.848545 ], [ 27.718506, -20.488773 ], [ 27.290039, -20.385825 ], [ 26.158447, -19.290406 ], [ 25.839844, -18.708692 ], [ 25.642090, -18.531700 ], [ 25.257568, -17.727759 ], [ 26.378174, -17.842833 ], [ 26.696777, -17.957832 ], [ 27.037354, -17.936929 ], [ 27.597656, -17.287709 ], [ 28.465576, -16.467695 ], [ 28.817139, -16.383391 ], [ 28.937988, -16.035255 ], [ 29.509277, -15.644197 ], [ 30.267334, -15.506619 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.750244, -9.221405 ], [ 33.739014, -9.416548 ], [ 34.277344, -10.152746 ], [ 34.552002, -11.512322 ], [ 34.277344, -12.275599 ], [ 34.552002, -13.571242 ], [ 34.903564, -13.560562 ], [ 35.266113, -13.880746 ], [ 35.683594, -14.604847 ], [ 35.771484, -15.887376 ], [ 35.332031, -16.098598 ], [ 35.024414, -16.794024 ], [ 34.376221, -16.183024 ], [ 34.299316, -15.474857 ], [ 34.508057, -15.008464 ], [ 34.453125, -14.604847 ], [ 34.057617, -14.349548 ], [ 33.782959, -14.445319 ], [ 33.211670, -13.966054 ], [ 32.684326, -13.710035 ], [ 32.980957, -12.779661 ], [ 33.299561, -12.425848 ], [ 33.112793, -11.598432 ], [ 33.310547, -10.790141 ], [ 33.475342, -10.520219 ], [ 33.222656, -9.676569 ], [ 32.750244, -9.221405 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Africa", "sov_a3": "ZAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Africa", "adm0_a3": "ZAF", "geou_dif": 0, "geounit": "South Africa", "gu_a3": "ZAF", "su_dif": 0, "subunit": "South Africa", "su_a3": "ZAF", "brk_diff": 0, "name": "South Africa", "name_long": "South Africa", "brk_a3": "ZAF", "brk_name": "South Africa", "abbrev": "S.Af.", "postal": "ZA", "formal_en": "Republic of South Africa", "name_sort": "South Africa", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 49052489, "gdp_md_est": 491000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ZA", "iso_a3": "ZAF", "iso_n3": "710", "un_a3": "710", "wb_a2": "ZA", "wb_a3": "ZAF", "woe_id": -99, "adm0_a3_is": "ZAF", "adm0_a3_us": "ZAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.421387, -22.085640 ], [ 29.838867, -22.095820 ], [ 30.322266, -22.268764 ], [ 30.651855, -22.146708 ], [ 31.190186, -22.248429 ], [ 31.926270, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.827393, -25.839449 ], [ 31.333008, -25.651430 ], [ 31.036377, -25.730633 ], [ 30.948486, -26.017298 ], [ 30.673828, -26.391870 ], [ 30.684814, -26.735799 ], [ 31.278076, -27.283926 ], [ 31.860352, -27.176469 ], [ 32.069092, -26.725987 ], [ 32.827148, -26.735799 ], [ 32.574463, -27.469287 ], [ 32.453613, -28.294707 ], [ 32.200928, -28.748397 ], [ 31.519775, -29.248063 ], [ 31.322021, -29.401320 ], [ 30.893555, -29.907329 ], [ 30.618896, -30.420256 ], [ 30.047607, -31.137603 ], [ 28.916016, -32.166313 ], [ 28.212891, -32.768800 ], [ 27.454834, -33.220308 ], [ 26.411133, -33.614619 ], [ 25.905762, -33.660353 ], [ 25.773926, -33.943360 ], [ 25.169678, -33.788279 ], [ 24.675293, -33.979809 ], [ 23.587646, -33.788279 ], [ 22.983398, -33.916013 ], [ 22.565918, -33.861293 ], [ 21.533203, -34.252676 ], [ 20.687256, -34.415973 ], [ 20.061035, -34.786739 ], [ 19.610596, -34.813803 ], [ 19.193115, -34.461277 ], [ 18.852539, -34.443159 ], [ 18.424072, -33.988918 ], [ 18.369141, -34.134542 ], [ 18.237305, -33.861293 ], [ 18.248291, -33.275435 ], [ 17.918701, -32.602362 ], [ 18.237305, -32.426340 ], [ 18.215332, -31.653381 ], [ 17.556152, -30.722949 ], [ 17.061768, -29.869229 ], [ 16.336670, -28.574874 ], [ 16.820068, -28.081674 ], [ 17.215576, -28.352734 ], [ 17.380371, -28.777289 ], [ 17.830811, -28.854296 ], [ 18.457031, -29.036961 ], [ 18.995361, -28.969701 ], [ 19.885254, -28.459033 ], [ 19.885254, -24.766785 ], [ 20.159912, -24.916331 ], [ 20.753174, -25.859224 ], [ 20.665283, -26.470573 ], [ 20.885010, -26.824071 ], [ 21.599121, -26.725987 ], [ 22.104492, -26.273714 ], [ 22.576904, -25.977799 ], [ 22.818604, -25.492868 ], [ 23.302002, -25.264568 ], [ 23.730469, -25.383735 ], [ 24.202881, -25.661333 ], [ 25.015869, -25.710837 ], [ 25.664062, -25.482951 ], [ 25.938721, -24.686952 ], [ 26.477051, -24.607069 ], [ 26.784668, -24.236947 ], [ 27.114258, -23.574057 ], [ 28.015137, -22.826820 ], [ 29.421387, -22.085640 ] ], [ [ 28.531494, -28.642389 ], [ 28.070068, -28.844674 ], [ 27.531738, -29.238477 ], [ 26.993408, -29.869229 ], [ 27.740479, -30.637912 ], [ 28.103027, -30.543339 ], [ 28.289795, -30.221102 ], [ 28.839111, -30.069094 ], [ 29.014893, -29.735762 ], [ 29.322510, -29.248063 ], [ 28.970947, -28.950476 ], [ 28.531494, -28.642389 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Madagascar", "sov_a3": "MDG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Madagascar", "adm0_a3": "MDG", "geou_dif": 0, "geounit": "Madagascar", "gu_a3": "MDG", "su_dif": 0, "subunit": "Madagascar", "su_a3": "MDG", "brk_diff": 0, "name": "Madagascar", "name_long": "Madagascar", "brk_a3": "MDG", "brk_name": "Madagascar", "abbrev": "Mad.", "postal": "MG", "formal_en": "Republic of Madagascar", "name_sort": "Madagascar", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 20653556, "gdp_md_est": 20130, "pop_year": -99, "lastcensus": 1993, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MG", "iso_a3": "MDG", "iso_n3": "450", "un_a3": "450", "wb_a2": "MG", "wb_a3": "MDG", "woe_id": -99, "adm0_a3_is": "MDG", "adm0_a3_us": "MDG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, -15.792254 ], [ 45.878906, -25.373809 ], [ 45.406494, -25.591994 ], [ 45.000000, -25.413509 ], [ 44.033203, -24.986058 ], [ 43.758545, -24.457151 ], [ 43.692627, -23.574057 ], [ 43.341064, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.428955, -21.330315 ], [ 43.890381, -21.156238 ], [ 43.890381, -20.828010 ], [ 44.373779, -20.066251 ], [ 44.461670, -19.425154 ], [ 44.230957, -18.958246 ], [ 44.033203, -18.323240 ], [ 43.956299, -17.403063 ], [ 44.307861, -16.846605 ], [ 44.439697, -16.214675 ], [ 44.934082, -16.172473 ], [ 45.000000, -16.151369 ], [ 45.494385, -15.971892 ], [ 45.878906, -15.792254 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.338379, 41.640078 ], [ 9.228516, 41.385052 ], [ 8.767090, 41.590797 ], [ 8.756104, 41.640078 ], [ 9.338379, 41.640078 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.669678, 41.640078 ], [ 2.087402, 41.228249 ], [ 0.802002, 41.021355 ], [ 0.791016, 40.979898 ], [ 0.714111, 40.680638 ], [ 0.098877, 40.128491 ], [ 0.000000, 39.901309 ], [ -0.285645, 39.317300 ], [ 0.000000, 38.908133 ], [ 0.109863, 38.745515 ], [ 0.000000, 38.659778 ], [ -0.472412, 38.298559 ], [ -0.692139, 37.649034 ], [ -0.878906, 37.596824 ], [ -0.878906, 41.640078 ], [ 2.669678, 41.640078 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.878906, 22.370396 ], [ 0.000000, 21.800308 ], [ 1.812744, 20.612220 ], [ 2.054443, 20.148785 ], [ 2.680664, 19.859727 ], [ 3.142090, 19.694314 ], [ 3.153076, 19.062118 ], [ 4.262695, 19.155547 ], [ 4.262695, 16.857120 ], [ 3.713379, 16.193575 ], [ 3.636475, 15.570128 ], [ 2.746582, 15.411319 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.976627 ], [ 0.373535, 14.934170 ], [ -0.274658, 14.934170 ], [ -0.516357, 15.125159 ], [ -0.878906, 15.029686 ], [ -0.878906, 22.370396 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.512695, 38.238180 ], [ 15.150146, 37.448697 ], [ 15.303955, 37.142803 ], [ 15.095215, 36.624345 ], [ 14.326172, 37.002553 ], [ 13.820801, 37.107765 ], [ 12.425537, 37.614231 ], [ 12.568359, 38.134557 ], [ 13.732910, 38.039439 ], [ 15.512695, 38.238180 ] ] ], [ [ [ 16.018066, 41.640078 ], [ 15.886230, 41.541478 ], [ 17.259521, 40.979898 ], [ 17.512207, 40.880295 ], [ 18.369141, 40.363288 ], [ 18.479004, 40.170479 ], [ 18.292236, 39.816975 ], [ 17.731934, 40.279526 ], [ 16.864014, 40.446947 ], [ 16.446533, 39.800096 ], [ 17.160645, 39.427707 ], [ 17.050781, 38.908133 ], [ 16.633301, 38.848264 ], [ 16.094971, 37.987504 ], [ 15.677490, 37.909534 ], [ 15.677490, 38.220920 ], [ 15.886230, 38.754083 ], [ 16.105957, 38.967951 ], [ 15.710449, 39.546412 ], [ 15.402832, 40.052848 ], [ 14.996338, 40.178873 ], [ 14.699707, 40.605612 ], [ 14.051514, 40.788860 ], [ 13.842773, 40.979898 ], [ 13.623047, 41.195190 ], [ 12.886963, 41.261291 ], [ 12.216797, 41.640078 ], [ 16.018066, 41.640078 ] ] ], [ [ [ 9.206543, 41.211722 ], [ 9.404297, 40.979898 ], [ 9.799805, 40.505446 ], [ 9.667969, 39.181175 ], [ 9.206543, 39.240763 ], [ 8.800049, 38.908133 ], [ 8.426514, 39.172659 ], [ 8.382568, 40.380028 ], [ 8.151855, 40.955011 ], [ 8.701172, 40.905210 ], [ 8.833008, 40.979898 ], [ 9.206543, 41.211722 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.103516, 41.640078 ], [ 26.103516, 41.335576 ], [ 25.191650, 41.236511 ], [ 24.488525, 41.590797 ], [ 23.686523, 41.310824 ], [ 22.950439, 41.343825 ], [ 22.917480, 41.640078 ], [ 26.103516, 41.640078 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, 41.640078 ], [ 45.878906, 41.162114 ], [ 45.208740, 41.418015 ], [ 44.967041, 41.253032 ], [ 43.571777, 41.095912 ], [ 42.615967, 41.590797 ], [ 41.550293, 41.541478 ], [ 41.583252, 41.640078 ], [ 45.878906, 41.640078 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.480713, 33.137551 ], [ 12.656250, 32.796510 ], [ 13.073730, 32.879587 ], [ 13.908691, 32.713355 ], [ 15.238037, 32.268555 ], [ 15.710449, 31.381779 ], [ 16.611328, 31.184609 ], [ 18.017578, 30.770159 ], [ 19.083252, 30.268556 ], [ 19.566650, 30.533877 ], [ 20.050049, 30.987028 ], [ 19.819336, 31.756196 ], [ 20.126953, 32.240683 ], [ 20.852051, 32.713355 ], [ 21.533203, 32.851903 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.194209 ], [ 23.598633, 32.194209 ], [ 23.917236, 32.017392 ], [ 24.916992, 31.905541 ], [ 25.158691, 31.569175 ], [ 24.796143, 31.090574 ], [ 24.949951, 30.666266 ], [ 24.697266, 30.050077 ], [ 24.993896, 29.248063 ], [ 24.993896, 20.004322 ], [ 23.840332, 20.004322 ], [ 23.829346, 19.580493 ], [ 19.841309, 21.504186 ], [ 15.853271, 23.412847 ], [ 14.842529, 22.867318 ], [ 14.139404, 22.492257 ], [ 13.579102, 23.049407 ], [ 11.997070, 23.473324 ], [ 11.557617, 24.106647 ], [ 10.766602, 24.567108 ], [ 10.294189, 24.387127 ], [ 9.942627, 24.946219 ], [ 9.909668, 25.373809 ], [ 9.316406, 26.096255 ], [ 9.711914, 26.519735 ], [ 9.624023, 27.147145 ], [ 9.755859, 27.693256 ], [ 9.678955, 28.149503 ], [ 9.854736, 28.960089 ], [ 9.799805, 29.430029 ], [ 9.481201, 30.315988 ], [ 9.964600, 30.543339 ], [ 10.052490, 30.968189 ], [ 9.942627, 31.381779 ], [ 10.634766, 31.765537 ], [ 10.942383, 32.082575 ], [ 11.425781, 32.370683 ], [ 11.480713, 33.137551 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.027472 ], [ 0.889893, 11.005904 ], [ 0.769043, 10.477009 ], [ 1.417236, 9.828154 ], [ 1.461182, 9.340672 ], [ 1.658936, 9.134639 ], [ 1.614990, 6.839170 ], [ 1.856689, 6.151478 ], [ 1.054688, 5.932972 ], [ 0.834961, 6.282539 ], [ 0.560303, 6.915521 ], [ 0.483398, 7.416942 ], [ 0.703125, 8.320212 ], [ 0.450439, 8.678779 ], [ 0.362549, 9.470736 ], [ 0.362549, 10.196000 ], [ 0.000000, 10.649811 ], [ -0.054932, 10.714587 ], [ 0.000000, 10.919618 ], [ 0.021973, 11.027472 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.853271, 23.412847 ], [ 19.841309, 21.504186 ], [ 23.829346, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.016357, 15.686510 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.510986, 14.093957 ], [ 22.181396, 13.795406 ], [ 22.291260, 13.378932 ], [ 22.027588, 12.961736 ], [ 21.928711, 12.597455 ], [ 22.280273, 12.651058 ], [ 22.489014, 12.264864 ], [ 22.500000, 11.684514 ], [ 22.873535, 11.393879 ], [ 22.862549, 11.146066 ], [ 22.225342, 10.973550 ], [ 21.719971, 10.574222 ], [ 20.994873, 9.481572 ], [ 20.050049, 9.015302 ], [ 19.083252, 9.080400 ], [ 18.808594, 8.993600 ], [ 18.907471, 8.635334 ], [ 18.380127, 8.287599 ], [ 17.962646, 7.896030 ], [ 16.699219, 7.514981 ], [ 16.446533, 7.743651 ], [ 16.281738, 7.754537 ], [ 16.105957, 7.504089 ], [ 15.270996, 7.427837 ], [ 15.435791, 7.700105 ], [ 15.117188, 8.385431 ], [ 14.974365, 8.798225 ], [ 14.534912, 8.971897 ], [ 13.952637, 9.557417 ], [ 14.161377, 10.022948 ], [ 14.622803, 9.925566 ], [ 14.908447, 10.001310 ], [ 15.457764, 9.990491 ], [ 14.919434, 10.898042 ], [ 14.952393, 11.566144 ], [ 14.886475, 12.221918 ], [ 14.490967, 12.865360 ], [ 14.589844, 13.336175 ], [ 13.952637, 13.357554 ], [ 13.952637, 13.998037 ], [ 13.535156, 14.370834 ], [ 13.963623, 15.686510 ], [ 15.238037, 16.636192 ], [ 15.292969, 17.936929 ], [ 15.677490, 19.963023 ], [ 15.897217, 20.396123 ], [ 15.479736, 20.735566 ], [ 15.468750, 21.053744 ], [ 15.095215, 21.309846 ], [ 14.842529, 22.867318 ], [ 15.853271, 23.412847 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "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": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.697510, 35.710838 ], [ 24.235840, 35.371135 ], [ 25.015869, 35.433820 ], [ 25.762939, 35.362176 ], [ 25.740967, 35.182788 ], [ 26.279297, 35.308401 ], [ 26.158447, 35.012002 ], [ 24.719238, 34.921971 ], [ 24.730225, 35.092945 ], [ 23.510742, 35.281501 ], [ 23.697510, 35.710838 ] ] ], [ [ [ 26.455078, 41.640078 ], [ 26.597900, 41.566142 ], [ 26.312256, 40.979898 ], [ 26.290283, 40.938415 ], [ 26.048584, 40.830437 ], [ 25.444336, 40.855371 ], [ 24.916992, 40.955011 ], [ 23.708496, 40.688969 ], [ 24.400635, 40.128491 ], [ 23.895264, 39.968701 ], [ 23.334961, 39.968701 ], [ 22.807617, 40.480381 ], [ 22.620850, 40.262761 ], [ 22.840576, 39.664914 ], [ 23.345947, 39.198205 ], [ 22.972412, 38.976492 ], [ 23.521729, 38.513788 ], [ 24.016113, 38.220920 ], [ 24.038086, 37.657732 ], [ 23.104248, 37.926868 ], [ 23.400879, 37.413800 ], [ 22.774658, 37.309014 ], [ 23.148193, 36.430122 ], [ 22.489014, 36.412442 ], [ 21.665039, 36.853252 ], [ 21.291504, 37.649034 ], [ 21.115723, 38.315801 ], [ 20.214844, 39.342794 ], [ 20.148926, 39.631077 ], [ 20.610352, 40.111689 ], [ 20.665283, 40.438586 ], [ 20.994873, 40.580585 ], [ 21.016846, 40.847060 ], [ 21.665039, 40.938415 ], [ 21.752930, 40.979898 ], [ 22.049561, 41.153842 ], [ 22.587891, 41.137296 ], [ 22.752686, 41.310824 ], [ 22.950439, 41.343825 ], [ 23.686523, 41.310824 ], [ 24.488525, 41.590797 ], [ 25.191650, 41.236511 ], [ 26.103516, 41.335576 ], [ 26.103516, 41.640078 ], [ 26.455078, 41.640078 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.488037, 31.587894 ], [ 27.454834, 31.325487 ], [ 28.443604, 31.034108 ], [ 28.905029, 30.873940 ], [ 29.674072, 31.194008 ], [ 30.091553, 31.475524 ], [ 30.970459, 31.559815 ], [ 31.684570, 31.438037 ], [ 31.959229, 30.939924 ], [ 32.189941, 31.269161 ], [ 32.991943, 31.024694 ], [ 33.771973, 30.968189 ], [ 34.255371, 31.222197 ], [ 34.914551, 29.506549 ], [ 34.639893, 29.104177 ], [ 34.420166, 28.352734 ], [ 34.145508, 27.829361 ], [ 33.914795, 27.654338 ], [ 33.134766, 28.420391 ], [ 32.420654, 29.859701 ], [ 32.310791, 29.764377 ], [ 32.728271, 28.709861 ], [ 33.343506, 27.702984 ], [ 34.101562, 26.145576 ], [ 34.464111, 25.601902 ], [ 34.793701, 25.035839 ], [ 35.683594, 23.936055 ], [ 35.485840, 23.755182 ], [ 35.518799, 23.110049 ], [ 36.683350, 22.207749 ], [ 36.859131, 22.004175 ], [ 24.993896, 22.004175 ], [ 24.993896, 29.248063 ], [ 24.697266, 30.050077 ], [ 24.949951, 30.666266 ], [ 24.796143, 31.090574 ], [ 25.158691, 31.569175 ], [ 26.488037, 31.587894 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.769775, 37.387617 ], [ 43.934326, 37.256566 ], [ 44.285889, 37.002553 ], [ 44.769287, 37.177826 ], [ 45.000000, 36.756490 ], [ 45.417480, 35.978006 ], [ 45.878906, 35.773258 ], [ 45.878906, 34.912962 ], [ 45.648193, 34.750640 ], [ 45.406494, 33.970698 ], [ 45.878906, 33.339707 ], [ 45.878906, 29.132970 ], [ 45.000000, 29.171349 ], [ 44.703369, 29.180941 ], [ 41.879883, 31.194008 ], [ 40.396729, 31.896214 ], [ 39.188232, 32.166313 ], [ 38.781738, 33.385586 ], [ 41.000977, 34.425036 ], [ 41.374512, 35.630512 ], [ 41.286621, 36.359375 ], [ 41.835938, 36.606709 ], [ 42.341309, 37.230328 ], [ 42.769775, 37.387617 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 36.859131, 22.004175 ], [ 37.177734, 21.022983 ], [ 36.968994, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.474365, 18.615013 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.434511 ], [ 37.166748, 17.266728 ], [ 36.848145, 16.962233 ], [ 36.749268, 16.299051 ], [ 36.320801, 14.827991 ], [ 36.419678, 14.424040 ], [ 36.265869, 13.571242 ], [ 35.859375, 12.586732 ], [ 35.255127, 12.093039 ], [ 34.826660, 11.329253 ], [ 34.727783, 10.919618 ], [ 34.255371, 10.639014 ], [ 33.958740, 9.589917 ], [ 33.958740, 9.470736 ], [ 33.815918, 9.492408 ], [ 33.837891, 9.990491 ], [ 33.717041, 10.325728 ], [ 33.200684, 10.725381 ], [ 33.079834, 11.447723 ], [ 33.200684, 12.189704 ], [ 32.739258, 12.254128 ], [ 32.673340, 12.028576 ], [ 32.069092, 11.974845 ], [ 32.310791, 11.684514 ], [ 32.398682, 11.081385 ], [ 31.849365, 10.541821 ], [ 31.343994, 9.817329 ], [ 30.827637, 9.709057 ], [ 29.992676, 10.293301 ], [ 29.608154, 10.087854 ], [ 29.509277, 9.795678 ], [ 28.992920, 9.611582 ], [ 28.959961, 9.405710 ], [ 27.960205, 9.405710 ], [ 27.828369, 9.611582 ], [ 27.103271, 9.644077 ], [ 26.751709, 9.470736 ], [ 26.477051, 9.557417 ], [ 25.960693, 10.141932 ], [ 25.784912, 10.412183 ], [ 25.059814, 10.282491 ], [ 24.785156, 9.817329 ], [ 24.532471, 8.917634 ], [ 24.191895, 8.733077 ], [ 23.884277, 8.624472 ], [ 23.796387, 8.667918 ], [ 23.455811, 8.961045 ], [ 23.389893, 9.275622 ], [ 23.554688, 9.687398 ], [ 23.543701, 10.098670 ], [ 22.972412, 10.714587 ], [ 22.862549, 11.146066 ], [ 22.873535, 11.393879 ], [ 22.500000, 11.684514 ], [ 22.489014, 12.264864 ], [ 22.280273, 12.651058 ], [ 21.928711, 12.597455 ], [ 22.027588, 12.961736 ], [ 22.291260, 13.378932 ], [ 22.181396, 13.795406 ], [ 22.510986, 14.093957 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 23.016357, 15.686510 ], [ 23.884277, 15.612456 ], [ 23.829346, 19.580493 ], [ 23.840332, 20.004322 ], [ 24.993896, 20.004322 ], [ 24.993896, 22.004175 ], [ 36.859131, 22.004175 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.002686, 4.258768 ], [ 34.475098, 3.557283 ], [ 34.595947, 3.063725 ], [ 35.035400, 1.911267 ], [ 34.661865, 1.186439 ], [ 33.892822, 0.109863 ], [ 33.892822, -0.878872 ], [ 29.575195, -0.878872 ], [ 29.586182, -0.582265 ], [ 29.816895, -0.197754 ], [ 29.827881, 0.000000 ], [ 29.871826, 0.604237 ], [ 30.080566, 1.065612 ], [ 30.465088, 1.592812 ], [ 30.849609, 1.856365 ], [ 31.168213, 2.207705 ], [ 30.772705, 2.350415 ], [ 30.827637, 3.513421 ], [ 31.245117, 3.787522 ], [ 31.871338, 3.568248 ], [ 32.684326, 3.798484 ], [ 33.387451, 3.798484 ], [ 34.002686, 4.258768 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.288086, 5.506640 ], [ 35.815430, 5.342583 ], [ 35.815430, 4.784469 ], [ 36.156006, 4.455951 ], [ 36.848145, 4.455951 ], [ 38.111572, 3.601142 ], [ 38.430176, 3.590178 ], [ 38.660889, 3.623071 ], [ 38.891602, 3.502455 ], [ 39.550781, 3.425692 ], [ 39.847412, 3.842332 ], [ 40.759277, 4.258768 ], [ 41.165771, 3.930020 ], [ 41.846924, 3.919060 ], [ 40.979004, 2.789425 ], [ 40.989990, 0.000000 ], [ 40.989990, -0.856902 ], [ 41.000977, -0.878872 ], [ 33.892822, -0.878872 ], [ 33.892822, 0.109863 ], [ 34.661865, 1.186439 ], [ 35.035400, 1.911267 ], [ 34.595947, 3.063725 ], [ 34.475098, 3.557283 ], [ 34.002686, 4.258768 ], [ 35.288086, 5.506640 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.253032 ], [ 45.175781, 40.988192 ], [ 45.560303, 40.813809 ], [ 45.351562, 40.563895 ], [ 45.878906, 40.229218 ], [ 45.878906, 40.204050 ], [ 45.604248, 39.901309 ], [ 45.878906, 39.732538 ], [ 45.878906, 39.121537 ], [ 45.725098, 39.325799 ], [ 45.736084, 39.478606 ], [ 45.296631, 39.478606 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.395752, 40.010787 ], [ 43.648682, 40.254377 ], [ 43.747559, 40.747257 ], [ 43.626709, 40.979898 ], [ 43.571777, 41.095912 ], [ 44.967041, 41.253032 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 39.188232, 32.166313 ], [ 40.396729, 31.896214 ], [ 41.879883, 31.194008 ], [ 44.703369, 29.180941 ], [ 45.000000, 29.171349 ], [ 45.878906, 29.132970 ], [ 45.878906, 17.287709 ], [ 45.395508, 17.340152 ], [ 45.208740, 17.434511 ], [ 45.000000, 17.434511 ], [ 44.055176, 17.413546 ], [ 43.791504, 17.329664 ], [ 43.374023, 17.581194 ], [ 43.110352, 17.098792 ], [ 43.209229, 16.667769 ], [ 42.769775, 16.351768 ], [ 42.648926, 16.783506 ], [ 42.341309, 17.077790 ], [ 42.264404, 17.476432 ], [ 41.748047, 17.842833 ], [ 41.220703, 18.677471 ], [ 40.935059, 19.487308 ], [ 40.242920, 20.179724 ], [ 39.792480, 20.344627 ], [ 39.133301, 21.299611 ], [ 39.023438, 21.993989 ], [ 39.056396, 22.583583 ], [ 38.485107, 23.694835 ], [ 38.023682, 24.086589 ], [ 37.474365, 24.287027 ], [ 37.144775, 24.866503 ], [ 37.199707, 25.085599 ], [ 36.925049, 25.611810 ], [ 36.639404, 25.829561 ], [ 36.243896, 26.578702 ], [ 35.123291, 28.071980 ], [ 34.628906, 28.062286 ], [ 34.782715, 28.613459 ], [ 34.826660, 28.960089 ], [ 34.947510, 29.363027 ], [ 36.068115, 29.200123 ], [ 36.496582, 29.506549 ], [ 36.738281, 29.869229 ], [ 37.496338, 30.012031 ], [ 37.661133, 30.344436 ], [ 37.990723, 30.514949 ], [ 37.001953, 31.512996 ], [ 39.001465, 32.017392 ], [ 39.188232, 32.166313 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Yemen", "sov_a3": "YEM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Yemen", "adm0_a3": "YEM", "geou_dif": 0, "geounit": "Yemen", "gu_a3": "YEM", "su_dif": 0, "subunit": "Yemen", "su_a3": "YEM", "brk_diff": 0, "name": "Yemen", "name_long": "Yemen", "brk_a3": "YEM", "brk_name": "Yemen", "abbrev": "Yem.", "postal": "YE", "formal_en": "Republic of Yemen", "name_sort": "Yemen, Rep.", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 23822783, "gdp_md_est": 55280, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "YE", "iso_a3": "YEM", "iso_n3": "887", "un_a3": "887", "wb_a2": "RY", "wb_a3": "YEM", "woe_id": -99, "adm0_a3_is": "YEM", "adm0_a3_us": "YEM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.374023, 17.581194 ], [ 43.791504, 17.329664 ], [ 44.055176, 17.413546 ], [ 45.000000, 17.434511 ], [ 45.208740, 17.434511 ], [ 45.395508, 17.340152 ], [ 45.878906, 17.287709 ], [ 45.878906, 13.357554 ], [ 45.615234, 13.293411 ], [ 45.395508, 13.036669 ], [ 45.142822, 12.961736 ], [ 45.000000, 12.726084 ], [ 44.989014, 12.704651 ], [ 44.483643, 12.726084 ], [ 44.165039, 12.586732 ], [ 43.472900, 12.640338 ], [ 43.220215, 13.229251 ], [ 43.242188, 13.774066 ], [ 43.077393, 14.072645 ], [ 42.890625, 14.806749 ], [ 42.593994, 15.220589 ], [ 42.802734, 15.262989 ], [ 42.692871, 15.728814 ], [ 42.813721, 15.919074 ], [ 42.769775, 16.351768 ], [ 43.209229, 16.667769 ], [ 43.110352, 17.098792 ], [ 43.374023, 17.581194 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Gabon", "sov_a3": "GAB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gabon", "adm0_a3": "GAB", "geou_dif": 0, "geounit": "Gabon", "gu_a3": "GAB", "su_dif": 0, "subunit": "Gabon", "su_a3": "GAB", "brk_diff": 0, "name": "Gabon", "name_long": "Gabon", "brk_a3": "GAB", "brk_name": "Gabon", "abbrev": "Gabon", "postal": "GA", "formal_en": "Gabonese Republic", "name_sort": "Gabon", "mapcolor7": 6, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 1514993, "gdp_md_est": 21110, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "GA", "iso_a3": "GAB", "iso_n3": "266", "un_a3": "266", "wb_a2": "GA", "wb_a3": "GAB", "woe_id": -99, "adm0_a3_is": "GAB", "adm0_a3_us": "GAB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": 3, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.941895, 2.328460 ], [ 13.073730, 2.273573 ], [ 12.996826, 1.834403 ], [ 13.282471, 1.318243 ], [ 14.018555, 1.406109 ], [ 14.271240, 1.197423 ], [ 13.842773, 0.043945 ], [ 13.864746, 0.000000 ], [ 14.315186, -0.549308 ], [ 14.359131, -0.878872 ], [ 8.811035, -0.878872 ], [ 8.822021, -0.769020 ], [ 9.041748, -0.450435 ], [ 9.195557, 0.000000 ], [ 9.283447, 0.274657 ], [ 9.492188, 1.010690 ], [ 9.821777, 1.076597 ], [ 11.282959, 1.065612 ], [ 11.271973, 2.262595 ], [ 11.744385, 2.328460 ], [ 12.348633, 2.196727 ], [ 12.941895, 2.328460 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -0.878906, 54.572062 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.677188 ], [ 0.175781, 53.330873 ], [ 0.461426, 52.935397 ], [ 1.680908, 52.742943 ], [ 1.549072, 52.106505 ], [ 1.043701, 51.808615 ], [ 1.439209, 51.296276 ], [ 0.549316, 50.771208 ], [ 0.000000, 50.771208 ], [ -0.791016, 50.778155 ], [ -0.878906, 50.764259 ], [ -0.878906, 54.572062 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.382324, 43.012681 ], [ 9.558105, 42.155259 ], [ 9.228516, 41.385052 ], [ 8.767090, 41.590797 ], [ 8.536377, 42.261049 ], [ 8.745117, 42.633959 ], [ 9.382324, 43.012681 ] ] ], [ [ [ 2.504883, 51.151786 ], [ 2.647705, 50.798991 ], [ 3.120117, 50.785102 ], [ 3.581543, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.790039, 49.986552 ], [ 5.668945, 49.532339 ], [ 5.888672, 49.446700 ], [ 6.185303, 49.468124 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.023461 ], [ 7.591553, 48.334343 ], [ 7.459717, 47.620975 ], [ 7.185059, 47.450380 ], [ 6.734619, 47.546872 ], [ 6.767578, 47.294134 ], [ 6.031494, 46.732331 ], [ 6.020508, 46.278631 ], [ 6.492920, 46.430285 ], [ 6.833496, 45.996962 ], [ 6.800537, 45.713851 ], [ 7.086182, 45.336702 ], [ 6.745605, 45.034715 ], [ 6.998291, 44.260937 ], [ 7.547607, 44.134913 ], [ 7.426758, 43.699651 ], [ 6.525879, 43.133061 ], [ 4.548340, 43.405047 ], [ 3.098145, 43.076913 ], [ 2.977295, 42.480200 ], [ 1.823730, 42.350425 ], [ 0.692139, 42.803462 ], [ 0.329590, 42.585444 ], [ 0.000000, 42.666281 ], [ -0.878906, 42.884015 ], [ -0.878906, 49.389524 ], [ 0.000000, 49.681847 ], [ 1.329346, 50.127622 ], [ 1.636963, 50.951506 ], [ 2.504883, 51.151786 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.878906, 42.884015 ], [ 0.000000, 42.666281 ], [ 0.329590, 42.585444 ], [ 0.692139, 42.803462 ], [ 1.823730, 42.350425 ], [ 2.977295, 42.480200 ], [ 3.032227, 41.894100 ], [ 2.087402, 41.228249 ], [ 0.802002, 41.021355 ], [ 0.791016, 40.979898 ], [ 0.714111, 40.680638 ], [ 0.307617, 40.313043 ], [ -0.878906, 40.313043 ], [ -0.878906, 42.884015 ] ] ] } } +, +{ "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": [ [ [ [ 45.878906, 66.861082 ], [ 45.878906, 42.057450 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 45.000000, 42.609706 ], [ 44.527588, 42.714732 ], [ 43.923340, 42.561173 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.221190 ], [ 40.913086, 43.389082 ], [ 40.067139, 43.556510 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.284537 ], [ 37.529297, 44.660839 ], [ 36.672363, 45.251688 ], [ 37.397461, 45.406164 ], [ 38.232422, 46.248250 ], [ 37.672119, 46.641894 ], [ 39.144287, 47.047669 ], [ 39.111328, 47.264320 ], [ 38.221436, 47.107523 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.239309 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.930008 ], [ 38.001709, 49.915862 ], [ 37.386475, 50.387508 ], [ 36.617432, 50.226124 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.013428, 51.213766 ], [ 34.222412, 51.261915 ], [ 34.134521, 51.570241 ], [ 34.387207, 51.774638 ], [ 33.750000, 52.335339 ], [ 32.706299, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.156982, 52.066000 ], [ 31.783447, 52.106505 ], [ 31.530762, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.684326, 53.357109 ], [ 32.398682, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.783447, 53.975474 ], [ 31.376953, 54.162434 ], [ 30.750732, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.795105 ], [ 29.366455, 55.671389 ], [ 29.223633, 55.918430 ], [ 28.168945, 56.170023 ], [ 27.850342, 56.764768 ], [ 27.762451, 57.249338 ], [ 27.279053, 57.480403 ], [ 27.707520, 57.792089 ], [ 27.410889, 58.728302 ], [ 28.125000, 59.305160 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.505935 ], [ 30.201416, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.870179 ], [ 30.025635, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.951465 ], [ 30.212402, 65.807279 ], [ 29.498291, 66.513260 ], [ 29.135742, 66.861082 ], [ 41.110840, 66.861082 ], [ 41.121826, 66.791909 ], [ 40.528564, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.375244, 66.000150 ], [ 35.375977, 66.513260 ], [ 33.914795, 66.761585 ], [ 33.178711, 66.635556 ], [ 33.442383, 66.513260 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.221924, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.335150 ], [ 36.529541, 64.764759 ], [ 37.166748, 65.146115 ], [ 39.583740, 64.524823 ], [ 40.429688, 64.764759 ], [ 39.759521, 65.499298 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.421143 ], [ 43.945312, 66.071546 ], [ 44.318848, 66.513260 ], [ 44.527588, 66.757250 ], [ 44.384766, 66.861082 ], [ 45.878906, 66.861082 ] ] ], [ [ [ 21.258545, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.642822, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.885010, 54.316523 ], [ 19.654541, 54.431713 ], [ 19.885254, 54.870285 ], [ 21.258545, 55.191412 ] ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 15.699463, 66.861082 ], [ 15.391846, 66.513260 ], [ 15.106201, 66.196009 ], [ 13.546143, 64.788168 ], [ 13.919678, 64.449111 ], [ 13.568115, 64.052978 ], [ 12.579346, 64.067396 ], [ 11.920166, 63.129538 ], [ 11.986084, 61.804284 ], [ 12.623291, 61.296626 ], [ 12.293701, 60.119619 ], [ 11.458740, 59.433903 ], [ 11.019287, 58.859224 ], [ 10.349121, 59.472989 ], [ 8.371582, 58.315260 ], [ 7.042236, 58.083685 ], [ 5.657959, 58.591162 ], [ 5.306396, 59.667741 ], [ 4.987793, 61.975106 ], [ 5.910645, 62.618615 ], [ 8.547363, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.348633, 65.883704 ], [ 13.117676, 66.513260 ], [ 13.546143, 66.861082 ], [ 15.699463, 66.861082 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.370605, 56.114936 ], [ 12.689209, 55.615589 ], [ 12.084961, 54.800685 ], [ 11.041260, 55.366625 ], [ 10.898438, 55.782751 ], [ 12.370605, 56.114936 ] ] ], [ [ [ 10.579834, 57.733485 ], [ 10.535889, 57.219608 ], [ 10.239258, 56.891003 ], [ 10.360107, 56.613931 ], [ 10.909424, 56.462490 ], [ 10.667725, 56.084298 ], [ 10.360107, 56.194481 ], [ 9.645996, 55.472627 ], [ 9.920654, 54.983918 ], [ 9.272461, 54.832336 ], [ 8.525391, 54.965002 ], [ 8.118896, 55.522412 ], [ 8.085938, 56.541315 ], [ 8.250732, 56.812908 ], [ 8.536377, 57.112385 ], [ 9.415283, 57.177947 ], [ 9.766846, 57.450861 ], [ 10.579834, 57.733485 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Netherlands", "sov_a3": "NL1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Netherlands", "adm0_a3": "NLD", "geou_dif": 0, "geounit": "Netherlands", "gu_a3": "NLD", "su_dif": 0, "subunit": "Netherlands", "su_a3": "NLD", "brk_diff": 0, "name": "Netherlands", "name_long": "Netherlands", "brk_a3": "NLD", "brk_name": "Netherlands", "abbrev": "Neth.", "postal": "NL", "formal_en": "Kingdom of the Netherlands", "name_sort": "Netherlands", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 16715999, "gdp_md_est": 672000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NL", "iso_a3": "NLD", "iso_n3": "528", "un_a3": "528", "wb_a2": "NL", "wb_a3": "NLD", "woe_id": -99, "adm0_a3_is": "NLD", "adm0_a3_us": "NLD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.064453, 53.514185 ], [ 6.899414, 53.488046 ], [ 7.086182, 53.146770 ], [ 6.833496, 52.234528 ], [ 6.580811, 51.856139 ], [ 5.987549, 51.856139 ], [ 6.152344, 50.805935 ], [ 5.603027, 51.041394 ], [ 4.965820, 51.481383 ], [ 4.042969, 51.268789 ], [ 3.306885, 51.351201 ], [ 3.823242, 51.624837 ], [ 4.702148, 53.094024 ], [ 6.064453, 53.514185 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Switzerland", "sov_a3": "CHE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Switzerland", "adm0_a3": "CHE", "geou_dif": 0, "geounit": "Switzerland", "gu_a3": "CHE", "su_dif": 0, "subunit": "Switzerland", "su_a3": "CHE", "brk_diff": 0, "name": "Switzerland", "name_long": "Switzerland", "brk_a3": "CHE", "brk_name": "Switzerland", "abbrev": "Switz.", "postal": "CH", "formal_en": "Swiss Confederation", "name_sort": "Switzerland", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 7604467, "gdp_md_est": 316700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CH", "iso_a3": "CHE", "iso_n3": "756", "un_a3": "756", "wb_a2": "CH", "wb_a3": "CHE", "woe_id": -99, "adm0_a3_is": "CHE", "adm0_a3_us": "CHE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 11, "long_len": 11, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.514404, 47.835283 ], [ 9.591064, 47.532038 ], [ 9.624023, 47.353711 ], [ 9.470215, 47.107523 ], [ 9.931641, 46.927759 ], [ 10.437012, 46.897739 ], [ 10.360107, 46.490829 ], [ 9.920654, 46.316584 ], [ 9.173584, 46.445427 ], [ 8.964844, 46.042736 ], [ 8.481445, 46.012224 ], [ 8.305664, 46.164614 ], [ 7.745361, 45.828799 ], [ 7.272949, 45.782848 ], [ 6.833496, 45.996962 ], [ 6.492920, 46.430285 ], [ 6.020508, 46.278631 ], [ 6.031494, 46.732331 ], [ 6.767578, 47.294134 ], [ 6.734619, 47.546872 ], [ 7.185059, 47.450380 ], [ 7.459717, 47.620975 ], [ 8.316650, 47.620975 ], [ 8.514404, 47.835283 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Poland", "sov_a3": "POL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Poland", "adm0_a3": "POL", "geou_dif": 0, "geounit": "Poland", "gu_a3": "POL", "su_dif": 0, "subunit": "Poland", "su_a3": "POL", "brk_diff": 0, "name": "Poland", "name_long": "Poland", "brk_a3": "POL", "brk_name": "Poland", "abbrev": "Pol.", "postal": "PL", "formal_en": "Republic of Poland", "name_sort": "Poland", "mapcolor7": 3, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 38482919, "gdp_md_est": 667900, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PL", "iso_a3": "POL", "iso_n3": "616", "un_a3": "616", "wb_a2": "PL", "wb_a3": "POL", "woe_id": -99, "adm0_a3_is": "POL", "adm0_a3_us": "POL", "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": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.622070, 54.857640 ], [ 18.610840, 54.686534 ], [ 18.687744, 54.444492 ], [ 19.654541, 54.431713 ], [ 20.885010, 54.316523 ], [ 22.730713, 54.329338 ], [ 23.236084, 54.226708 ], [ 23.477783, 53.917281 ], [ 23.521729, 53.474970 ], [ 23.796387, 53.094024 ], [ 23.796387, 52.696361 ], [ 23.192139, 52.489470 ], [ 23.499756, 52.025459 ], [ 23.521729, 51.583897 ], [ 24.027100, 50.708634 ], [ 23.917236, 50.429518 ], [ 23.422852, 50.310392 ], [ 22.510986, 49.482401 ], [ 22.774658, 49.030665 ], [ 22.554932, 49.088258 ], [ 21.599121, 49.475263 ], [ 20.885010, 49.332282 ], [ 20.412598, 49.432413 ], [ 19.819336, 49.217597 ], [ 19.313965, 49.575102 ], [ 18.907471, 49.439557 ], [ 18.391113, 49.993615 ], [ 17.644043, 50.050085 ], [ 17.545166, 50.366489 ], [ 16.864014, 50.478483 ], [ 16.710205, 50.219095 ], [ 16.171875, 50.429518 ], [ 16.237793, 50.701677 ], [ 15.490723, 50.785102 ], [ 15.007324, 51.110420 ], [ 14.600830, 51.747439 ], [ 14.677734, 52.093008 ], [ 14.436035, 52.629729 ], [ 14.073486, 52.981723 ], [ 14.348145, 53.252069 ], [ 14.117432, 53.761702 ], [ 14.798584, 54.052939 ], [ 16.358643, 54.514704 ], [ 17.622070, 54.857640 ] ] ] } } +, +{ "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.808105, 43.277205 ], [ 20.950928, 43.133061 ], [ 21.137695, 43.068888 ], [ 21.269531, 42.916206 ], [ 21.434326, 42.867912 ], [ 21.632080, 42.682435 ], [ 21.774902, 42.690511 ], [ 21.654053, 42.439674 ], [ 21.533203, 42.326062 ], [ 21.566162, 42.252918 ], [ 21.346436, 42.212245 ], [ 20.753174, 42.057450 ], [ 20.709229, 41.853196 ], [ 20.588379, 41.861379 ], [ 20.522461, 42.220382 ], [ 20.280762, 42.326062 ], [ 20.061035, 42.593533 ], [ 20.247803, 42.819581 ], [ 20.489502, 42.892064 ], [ 20.632324, 43.221190 ], [ 20.808105, 43.277205 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "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": "Polygon", "coordinates": [ [ [ 25.158691, 57.973157 ], [ 25.598145, 57.850598 ], [ 26.455078, 57.480403 ], [ 27.279053, 57.480403 ], [ 27.762451, 57.249338 ], [ 27.850342, 56.764768 ], [ 28.168945, 56.170023 ], [ 27.092285, 55.788929 ], [ 26.488037, 55.615589 ], [ 25.532227, 56.102683 ], [ 24.993896, 56.170023 ], [ 24.851074, 56.377419 ], [ 23.873291, 56.273861 ], [ 22.192383, 56.340901 ], [ 21.049805, 56.035226 ], [ 21.082764, 56.788845 ], [ 21.577148, 57.415378 ], [ 22.521973, 57.756938 ], [ 23.312988, 57.010833 ], [ 24.114990, 57.028774 ], [ 24.312744, 57.797944 ], [ 25.158691, 57.973157 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.851074, 56.377419 ], [ 24.993896, 56.170023 ], [ 25.532227, 56.102683 ], [ 26.488037, 55.615589 ], [ 26.586914, 55.172594 ], [ 25.762939, 54.851315 ], [ 25.532227, 54.284469 ], [ 24.444580, 53.910810 ], [ 23.477783, 53.917281 ], [ 23.236084, 54.226708 ], [ 22.730713, 54.329338 ], [ 22.642822, 54.584797 ], [ 22.752686, 54.857640 ], [ 22.313232, 55.015426 ], [ 21.258545, 55.191412 ], [ 21.049805, 56.035226 ], [ 22.192383, 56.340901 ], [ 23.873291, 56.273861 ], [ 24.851074, 56.377419 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.653809, 44.237328 ], [ 22.939453, 43.826601 ], [ 23.323975, 43.897892 ], [ 24.093018, 43.747289 ], [ 25.565186, 43.691708 ], [ 26.059570, 43.945372 ], [ 27.235107, 44.182204 ], [ 27.960205, 43.818675 ], [ 28.553467, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.663574, 42.585444 ], [ 27.993164, 42.008489 ], [ 27.125244, 42.147114 ], [ 26.114502, 41.828642 ], [ 26.103516, 41.335576 ], [ 25.191650, 41.236511 ], [ 24.488525, 41.590797 ], [ 23.686523, 41.310824 ], [ 22.950439, 41.343825 ], [ 22.873535, 42.000325 ], [ 22.379150, 42.326062 ], [ 22.543945, 42.463993 ], [ 22.434082, 42.585444 ], [ 22.598877, 42.900113 ], [ 22.983398, 43.213183 ], [ 22.500000, 43.644026 ], [ 22.401123, 44.008620 ], [ 22.653809, 44.237328 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.067139, 43.556510 ], [ 40.913086, 43.389082 ], [ 42.385254, 43.221190 ], [ 43.747559, 42.747012 ], [ 43.923340, 42.561173 ], [ 44.527588, 42.714732 ], [ 45.000000, 42.609706 ], [ 45.461426, 42.504503 ], [ 45.769043, 42.098222 ], [ 45.878906, 42.057450 ], [ 45.878906, 41.162114 ], [ 45.208740, 41.418015 ], [ 45.000000, 41.269550 ], [ 44.967041, 41.253032 ], [ 43.571777, 41.095912 ], [ 42.615967, 41.590797 ], [ 41.550293, 41.541478 ], [ 41.693115, 41.967659 ], [ 41.451416, 42.650122 ], [ 40.869141, 43.020714 ], [ 40.319824, 43.133061 ], [ 39.946289, 43.436966 ], [ 40.067139, 43.556510 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "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": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.114502, 41.828642 ], [ 26.597900, 41.566142 ], [ 26.312256, 40.979898 ], [ 26.290283, 40.938415 ], [ 26.048584, 40.830437 ], [ 25.444336, 40.855371 ], [ 24.916992, 40.955011 ], [ 23.708496, 40.688969 ], [ 24.169922, 40.313043 ], [ 22.972412, 40.313043 ], [ 22.807617, 40.480381 ], [ 22.664795, 40.313043 ], [ 20.643311, 40.313043 ], [ 20.665283, 40.438586 ], [ 20.994873, 40.580585 ], [ 21.016846, 40.847060 ], [ 21.665039, 40.938415 ], [ 21.752930, 40.979898 ], [ 22.049561, 41.153842 ], [ 22.587891, 41.137296 ], [ 22.752686, 41.310824 ], [ 22.950439, 41.343825 ], [ 23.686523, 41.310824 ], [ 24.488525, 41.590797 ], [ 25.191650, 41.236511 ], [ 26.103516, 41.335576 ], [ 26.114502, 41.828642 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.167236, 42.041134 ], [ 36.903076, 41.335576 ], [ 38.221436, 40.979898 ], [ 38.342285, 40.955011 ], [ 38.583984, 40.979898 ], [ 39.506836, 41.104191 ], [ 40.363770, 41.021355 ], [ 41.550293, 41.541478 ], [ 42.615967, 41.590797 ], [ 43.571777, 41.095912 ], [ 43.626709, 40.979898 ], [ 43.747559, 40.747257 ], [ 43.659668, 40.313043 ], [ 27.147217, 40.313043 ], [ 27.279053, 40.421860 ], [ 28.817139, 40.463666 ], [ 29.102783, 40.979898 ], [ 29.234619, 41.228249 ], [ 31.135254, 41.087632 ], [ 32.343750, 41.738528 ], [ 33.508301, 42.024814 ], [ 35.167236, 42.041134 ] ] ], [ [ [ 27.125244, 42.147114 ], [ 27.993164, 42.008489 ], [ 28.114014, 41.623655 ], [ 28.981934, 41.302571 ], [ 28.806152, 41.062786 ], [ 27.608643, 41.004775 ], [ 27.586670, 40.979898 ], [ 27.191162, 40.697299 ], [ 26.597900, 40.313043 ], [ 26.246338, 40.313043 ], [ 26.037598, 40.622292 ], [ 26.048584, 40.830437 ], [ 26.290283, 40.938415 ], [ 26.312256, 40.979898 ], [ 26.597900, 41.566142 ], [ 26.114502, 41.828642 ], [ 27.125244, 42.147114 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.253032 ], [ 45.000000, 41.219986 ], [ 45.175781, 40.988192 ], [ 45.560303, 40.813809 ], [ 45.351562, 40.563895 ], [ 45.736084, 40.313043 ], [ 43.659668, 40.313043 ], [ 43.747559, 40.747257 ], [ 43.626709, 40.979898 ], [ 43.571777, 41.095912 ], [ 44.967041, 41.253032 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 39.364014, 66.160511 ], [ 37.441406, 66.160511 ], [ 35.375977, 66.513260 ], [ 33.914795, 66.761585 ], [ 33.178711, 66.635556 ], [ 33.442383, 66.513260 ], [ 34.233398, 66.160511 ], [ 29.860840, 66.160511 ], [ 29.498291, 66.513260 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.443604, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.158650 ], [ 31.091309, 69.561390 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.507568, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.528564, 66.513260 ], [ 40.012207, 66.266856 ], [ 39.364014, 66.160511 ] ] ], [ [ [ 45.000000, 68.395135 ], [ 45.878906, 68.293779 ], [ 45.878906, 67.600849 ], [ 45.549316, 67.567334 ], [ 45.560303, 67.011719 ], [ 45.878906, 66.874030 ], [ 45.878906, 66.160511 ], [ 44.022217, 66.160511 ], [ 44.318848, 66.513260 ], [ 44.527588, 66.757250 ], [ 43.692627, 67.352555 ], [ 44.187012, 67.954025 ], [ 43.450928, 68.572428 ], [ 45.000000, 68.395135 ] ] ], [ [ [ 41.330566, 66.160511 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.421143 ], [ 43.703613, 66.160511 ], [ 41.330566, 66.160511 ] ] ] ] } } +, +{ "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": [ [ [ [ 28.157959, 71.187754 ], [ 31.289062, 70.455184 ], [ 30.003662, 70.188827 ], [ 31.091309, 69.561390 ], [ 29.399414, 69.158650 ], [ 28.586426, 69.068563 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.166473 ], [ 26.169434, 69.828260 ], [ 25.686035, 69.096020 ], [ 24.730225, 68.652556 ], [ 23.653564, 68.895187 ], [ 22.346191, 68.843700 ], [ 21.236572, 69.372573 ], [ 20.643311, 69.107777 ], [ 20.017090, 69.068563 ], [ 19.874268, 68.407268 ], [ 17.984619, 68.568414 ], [ 17.720947, 68.011685 ], [ 16.765137, 68.015798 ], [ 15.391846, 66.513260 ], [ 15.062256, 66.160511 ], [ 12.689209, 66.160511 ], [ 13.117676, 66.513260 ], [ 14.754639, 67.813394 ], [ 16.435547, 68.564399 ], [ 19.182129, 69.820681 ], [ 21.368408, 70.255741 ], [ 23.016357, 70.203715 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.157959, 71.187754 ] ] ], [ [ [ 19.896240, 79.335219 ], [ 20.610352, 79.171335 ], [ 21.533203, 78.956665 ], [ 19.017334, 78.562667 ], [ 18.468018, 77.827957 ], [ 17.589111, 77.638894 ], [ 17.116699, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.382306 ], [ 14.666748, 77.737285 ], [ 13.161621, 78.025574 ], [ 11.217041, 78.870048 ], [ 10.755615, 79.335219 ], [ 19.896240, 79.335219 ] ] ], [ [ [ 22.873535, 78.455425 ], [ 23.280029, 78.080156 ], [ 24.719238, 77.855723 ], [ 22.489014, 77.446940 ], [ 20.720215, 77.678812 ], [ 21.412354, 77.936352 ], [ 20.808105, 78.255861 ], [ 22.873535, 78.455425 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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": "Polygon", "coordinates": [ [ [ 20.643311, 69.107777 ], [ 21.972656, 68.620539 ], [ 23.532715, 67.937524 ], [ 23.554688, 66.513260 ], [ 23.565674, 66.399160 ], [ 23.763428, 66.160511 ], [ 15.062256, 66.160511 ], [ 15.391846, 66.513260 ], [ 16.765137, 68.015798 ], [ 17.720947, 68.011685 ], [ 17.984619, 68.568414 ], [ 19.874268, 68.407268 ], [ 20.017090, 69.068563 ], [ 20.643311, 69.107777 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.729492, 70.166473 ], [ 29.014893, 69.767557 ], [ 28.586426, 69.068563 ], [ 28.443604, 68.366801 ], [ 29.970703, 67.701110 ], [ 29.047852, 66.947274 ], [ 29.498291, 66.513260 ], [ 29.860840, 66.160511 ], [ 23.763428, 66.160511 ], [ 23.565674, 66.399160 ], [ 23.554688, 66.513260 ], [ 23.532715, 67.937524 ], [ 21.972656, 68.620539 ], [ 20.643311, 69.107777 ], [ 21.236572, 69.372573 ], [ 22.346191, 68.843700 ], [ 23.653564, 68.895187 ], [ 24.730225, 68.652556 ], [ 25.686035, 69.096020 ], [ 26.169434, 69.828260 ], [ 27.729492, 70.166473 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 45.878906, 80.688011 ], [ 45.878906, 80.577145 ], [ 45.000000, 80.587930 ], [ 44.846191, 80.591523 ], [ 45.000000, 80.605880 ], [ 45.878906, 80.688011 ] ] ] } } +, +{ "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": [ [ [ [ 16.984863, 80.052358 ], [ 18.248291, 79.702907 ], [ 20.610352, 79.171335 ], [ 21.324463, 79.004962 ], [ 11.085205, 79.004962 ], [ 10.920410, 79.171335 ], [ 10.437012, 79.653695 ], [ 13.161621, 80.010518 ], [ 13.710938, 79.661584 ], [ 15.139160, 79.675377 ], [ 15.512695, 80.016233 ], [ 16.984863, 80.052358 ] ] ], [ [ [ 22.917480, 80.657741 ], [ 25.444336, 80.408388 ], [ 27.399902, 80.058050 ], [ 25.916748, 79.518659 ], [ 23.016357, 79.400085 ], [ 20.072021, 79.568506 ], [ 19.896240, 79.843346 ], [ 18.457031, 79.860768 ], [ 17.358398, 80.320120 ], [ 20.445557, 80.598704 ], [ 21.906738, 80.358836 ], [ 22.917480, 80.657741 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 90.878906, -79.004962 ], [ 90.878906, -85.126373 ], [ 44.121094, -85.126373 ], [ 44.121094, -79.004962 ], [ 90.878906, -79.004962 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 56.887207, -66.160511 ], [ 57.150879, -66.244738 ], [ 57.216797, -66.513260 ], [ 57.249756, -66.679087 ], [ 58.128662, -67.011719 ], [ 58.743896, -67.284773 ], [ 59.930420, -67.403266 ], [ 60.600586, -67.676085 ], [ 61.424561, -67.949900 ], [ 62.380371, -68.011685 ], [ 63.182373, -67.813394 ], [ 64.050293, -67.403266 ], [ 64.984131, -67.617589 ], [ 66.906738, -67.854844 ], [ 67.884521, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.708252, -68.970221 ], [ 69.664307, -69.224997 ], [ 69.554443, -69.676174 ], [ 68.587646, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.696320 ], [ 69.060059, -70.674517 ], [ 68.928223, -71.066928 ], [ 68.411865, -71.441171 ], [ 67.939453, -71.852807 ], [ 68.708496, -72.164987 ], [ 69.862061, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.694744 ], [ 71.905518, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.618896, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.123779, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.112549, -68.322205 ], [ 80.090332, -68.069202 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.649414, -67.088828 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.747803, -66.513260 ], [ 87.978516, -66.209308 ], [ 88.385010, -66.513260 ], [ 88.824463, -66.951576 ], [ 89.670410, -67.148632 ], [ 90.000000, -67.174217 ], [ 90.626221, -67.225306 ], [ 90.878906, -67.195518 ], [ 90.878906, -79.335219 ], [ 44.121094, -79.335219 ], [ 44.121094, -68.265319 ], [ 45.000000, -68.019910 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.088828 ], [ 49.921875, -67.110204 ], [ 50.745850, -66.874030 ], [ 50.943604, -66.522016 ], [ 50.976562, -66.513260 ], [ 51.789551, -66.244738 ], [ 52.163086, -66.160511 ], [ 56.887207, -66.160511 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 54.525146, -65.816282 ], [ 55.404053, -65.874725 ], [ 56.348877, -65.973325 ], [ 57.150879, -66.244738 ], [ 57.216797, -66.513260 ], [ 57.249756, -66.679087 ], [ 57.722168, -66.861082 ], [ 50.756836, -66.861082 ], [ 50.943604, -66.522016 ], [ 50.976562, -66.513260 ], [ 51.789551, -66.244738 ], [ 52.613525, -66.049257 ], [ 53.602295, -65.892680 ], [ 54.525146, -65.816282 ] ] ], [ [ [ 88.385010, -66.513260 ], [ 88.725586, -66.861082 ], [ 87.484131, -66.861082 ], [ 87.747803, -66.513260 ], [ 87.978516, -66.209308 ], [ 88.385010, -66.513260 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "French Southern and Antarctic Lands", "adm0_a3": "ATF", "geou_dif": 0, "geounit": "French Southern and Antarctic Lands", "gu_a3": "ATF", "su_dif": 0, "subunit": "French Southern and Antarctic Lands", "su_a3": "ATF", "brk_diff": 0, "name": "Fr. S. Antarctic Lands", "name_long": "French Southern and Antarctic Lands", "brk_a3": "ATF", "brk_name": "Fr. S. and Antarctic Lands", "abbrev": "Fr. S.A.L.", "postal": "TF", "formal_en": "Territory of the French Southern and Antarctic Lands", "note_adm0": "Fr.", "name_sort": "French Southern and Antarctic Lands", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 140, "gdp_md_est": 16, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TF", "iso_a3": "ATF", "iso_n3": "260", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATF", "adm0_a3_us": "ATF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Seven seas (open ocean)", "region_un": "Seven seas (open ocean)", "subregion": "Seven seas (open ocean)", "region_wb": "Sub-Saharan Africa", "name_len": 22, "long_len": 35, "abbrev_len": 10, "tiny": 2, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.928223, -48.618385 ], [ 69.576416, -48.936935 ], [ 70.521240, -49.059470 ], [ 70.554199, -49.253465 ], [ 70.279541, -49.703168 ], [ 68.741455, -49.774170 ], [ 68.719482, -49.239121 ], [ 68.928223, -48.618385 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Madagascar", "sov_a3": "MDG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Madagascar", "adm0_a3": "MDG", "geou_dif": 0, "geounit": "Madagascar", "gu_a3": "MDG", "su_dif": 0, "subunit": "Madagascar", "su_a3": "MDG", "brk_diff": 0, "name": "Madagascar", "name_long": "Madagascar", "brk_a3": "MDG", "brk_name": "Madagascar", "abbrev": "Mad.", "postal": "MG", "formal_en": "Republic of Madagascar", "name_sort": "Madagascar", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 20653556, "gdp_md_est": 20130, "pop_year": -99, "lastcensus": 1993, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MG", "iso_a3": "MDG", "iso_n3": "450", "un_a3": "450", "wb_a2": "MG", "wb_a3": "MDG", "woe_id": -99, "adm0_a3_is": "MDG", "adm0_a3_us": "MDG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.185791, -12.039321 ], [ 49.537354, -12.468760 ], [ 49.801025, -12.886780 ], [ 50.053711, -13.549881 ], [ 50.207520, -14.753635 ], [ 50.471191, -15.220589 ], [ 50.372314, -15.697086 ], [ 50.196533, -15.993015 ], [ 49.855957, -15.411319 ], [ 49.669189, -15.707663 ], [ 49.855957, -16.446622 ], [ 49.768066, -16.867634 ], [ 49.493408, -17.098792 ], [ 49.427490, -17.947381 ], [ 48.537598, -20.488773 ], [ 47.922363, -22.390714 ], [ 47.537842, -23.775291 ], [ 47.087402, -24.936257 ], [ 46.274414, -25.175117 ], [ 45.406494, -25.591994 ], [ 45.000000, -25.413509 ], [ 44.121094, -25.015929 ], [ 44.121094, -20.468189 ], [ 44.373779, -20.066251 ], [ 44.461670, -19.425154 ], [ 44.230957, -18.958246 ], [ 44.121094, -18.583776 ], [ 44.121094, -17.151288 ], [ 44.307861, -16.846605 ], [ 44.439697, -16.214675 ], [ 44.934082, -16.172473 ], [ 45.000000, -16.151369 ], [ 45.494385, -15.971892 ], [ 45.867920, -15.792254 ], [ 46.307373, -15.771109 ], [ 46.878662, -15.209988 ], [ 47.702637, -14.594216 ], [ 47.999268, -14.083301 ], [ 47.867432, -13.656663 ], [ 48.284912, -13.774066 ], [ 48.834229, -13.079478 ], [ 48.856201, -12.479487 ], [ 49.185791, -12.039321 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 48.328857, 41.640078 ], [ 47.977295, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.889648, 41.640078 ], [ 48.328857, 41.640078 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.219482, 41.640078 ], [ 46.636963, 41.186922 ], [ 46.494141, 41.071069 ], [ 45.955811, 41.129021 ], [ 45.208740, 41.418015 ], [ 44.967041, 41.253032 ], [ 44.121094, 41.153842 ], [ 44.121094, 41.640078 ], [ 46.219482, 41.640078 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 44.121094, 39.385264 ], [ 44.417725, 38.281313 ], [ 44.219971, 37.978845 ], [ 44.769287, 37.177826 ], [ 44.285889, 37.002553 ], [ 44.121094, 37.134045 ], [ 44.121094, 39.385264 ] ] ], [ [ [ 44.121094, 39.436193 ], [ 44.121094, 40.103286 ], [ 44.395752, 40.010787 ], [ 44.791260, 39.715638 ], [ 44.121094, 39.436193 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.121094, 9.026153 ], [ 45.000000, 8.711359 ], [ 46.944580, 8.004837 ], [ 47.779541, 8.004837 ], [ 45.000000, 5.047171 ], [ 44.956055, 5.003394 ], [ 44.121094, 4.981505 ], [ 44.121094, 9.026153 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 69.543457, 41.640078 ], [ 69.060059, 41.385052 ], [ 68.818359, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 66.708984, 41.170384 ], [ 66.588135, 41.640078 ], [ 69.543457, 41.640078 ] ] ], [ [ [ 55.964355, 41.640078 ], [ 55.964355, 41.310824 ], [ 55.447998, 41.261291 ], [ 55.107422, 41.640078 ], [ 55.964355, 41.640078 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.706055, 41.640078 ], [ 78.541260, 41.582580 ], [ 78.178711, 41.186922 ], [ 76.904297, 41.071069 ], [ 76.519775, 40.430224 ], [ 75.465088, 40.563895 ], [ 74.772949, 40.371659 ], [ 73.817139, 39.901309 ], [ 73.959961, 39.664914 ], [ 73.674316, 39.436193 ], [ 71.784668, 39.283294 ], [ 70.543213, 39.605688 ], [ 69.455566, 39.529467 ], [ 69.554443, 40.103286 ], [ 70.642090, 39.943436 ], [ 71.004639, 40.245992 ], [ 71.773682, 40.153687 ], [ 73.048096, 40.871988 ], [ 72.795410, 40.979898 ], [ 71.861572, 41.393294 ], [ 71.147461, 41.145570 ], [ 70.411377, 41.525030 ], [ 70.565186, 41.640078 ], [ 78.706055, 41.640078 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.253032 ], [ 45.186768, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.351562, 40.563895 ], [ 45.889893, 40.220830 ], [ 45.604248, 39.901309 ], [ 46.032715, 39.631077 ], [ 46.483154, 39.470125 ], [ 46.505127, 38.771216 ], [ 46.142578, 38.745515 ], [ 45.725098, 39.325799 ], [ 45.736084, 39.478606 ], [ 45.296631, 39.478606 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.395752, 40.010787 ], [ 44.121094, 40.103286 ], [ 44.121094, 41.153842 ], [ 44.967041, 41.253032 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 44.121094, 29.602118 ], [ 44.703369, 29.180941 ], [ 45.000000, 29.171349 ], [ 46.560059, 29.104177 ], [ 47.449951, 29.008140 ], [ 47.702637, 28.526622 ], [ 48.405762, 28.555576 ], [ 48.801270, 27.693256 ], [ 49.295654, 27.469287 ], [ 49.460449, 27.117813 ], [ 50.141602, 26.696545 ], [ 50.207520, 26.283565 ], [ 50.108643, 25.948166 ], [ 50.229492, 25.611810 ], [ 50.526123, 25.334097 ], [ 50.657959, 25.005973 ], [ 50.800781, 24.756808 ], [ 51.108398, 24.557116 ], [ 51.383057, 24.637031 ], [ 51.569824, 24.246965 ], [ 51.613770, 24.016362 ], [ 51.998291, 23.008964 ], [ 54.997559, 22.502407 ], [ 55.206299, 22.715390 ], [ 55.656738, 22.004175 ], [ 54.997559, 20.004322 ], [ 51.998291, 19.010190 ], [ 49.108887, 18.625425 ], [ 48.175049, 18.166730 ], [ 47.460938, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.746826, 17.287709 ], [ 46.362305, 17.235252 ], [ 45.395508, 17.340152 ], [ 45.208740, 17.434511 ], [ 45.000000, 17.434511 ], [ 44.121094, 17.413546 ], [ 44.121094, 29.602118 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Yemen", "sov_a3": "YEM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Yemen", "adm0_a3": "YEM", "geou_dif": 0, "geounit": "Yemen", "gu_a3": "YEM", "su_dif": 0, "subunit": "Yemen", "su_a3": "YEM", "brk_diff": 0, "name": "Yemen", "name_long": "Yemen", "brk_a3": "YEM", "brk_name": "Yemen", "abbrev": "Yem.", "postal": "YE", "formal_en": "Republic of Yemen", "name_sort": "Yemen, Rep.", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 23822783, "gdp_md_est": 55280, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "YE", "iso_a3": "YEM", "iso_n3": "887", "un_a3": "887", "wb_a2": "RY", "wb_a3": "YEM", "woe_id": -99, "adm0_a3_is": "YEM", "adm0_a3_us": "YEM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.998291, 19.010190 ], [ 52.778320, 17.350638 ], [ 53.107910, 16.657244 ], [ 52.382812, 16.383391 ], [ 52.185059, 15.940202 ], [ 52.163086, 15.601875 ], [ 51.163330, 15.178181 ], [ 49.570312, 14.711135 ], [ 48.669434, 14.008696 ], [ 48.229980, 13.955392 ], [ 47.933350, 14.008696 ], [ 47.351074, 13.592600 ], [ 46.713867, 13.400307 ], [ 45.867920, 13.357554 ], [ 45.615234, 13.293411 ], [ 45.395508, 13.036669 ], [ 45.142822, 12.961736 ], [ 45.000000, 12.726084 ], [ 44.989014, 12.704651 ], [ 44.483643, 12.726084 ], [ 44.165039, 12.586732 ], [ 44.121094, 12.597455 ], [ 44.121094, 17.413546 ], [ 45.000000, 17.434511 ], [ 45.208740, 17.434511 ], [ 45.395508, 17.340152 ], [ 46.362305, 17.235252 ], [ 46.746826, 17.287709 ], [ 46.999512, 16.951724 ], [ 47.460938, 17.119793 ], [ 48.175049, 18.166730 ], [ 49.108887, 18.625425 ], [ 51.998291, 19.010190 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.963308 ], [ 70.455322, 40.497092 ], [ 70.598145, 40.220830 ], [ 71.004639, 40.245992 ], [ 70.642090, 39.943436 ], [ 69.554443, 40.103286 ], [ 69.455566, 39.529467 ], [ 70.543213, 39.605688 ], [ 71.784668, 39.283294 ], [ 73.674316, 39.436193 ], [ 73.927002, 38.513788 ], [ 74.256592, 38.608286 ], [ 74.860840, 38.384728 ], [ 74.827881, 37.996163 ], [ 74.970703, 37.422526 ], [ 73.937988, 37.422526 ], [ 73.256836, 37.501010 ], [ 72.630615, 37.055177 ], [ 72.191162, 36.949892 ], [ 71.839600, 36.738884 ], [ 71.444092, 37.072710 ], [ 71.531982, 37.909534 ], [ 71.235352, 37.961523 ], [ 71.345215, 38.264063 ], [ 70.795898, 38.487995 ], [ 70.367432, 38.143198 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.596824 ], [ 69.510498, 37.614231 ], [ 69.191895, 37.151561 ], [ 68.851318, 37.352693 ], [ 68.126221, 37.028869 ], [ 67.829590, 37.151561 ], [ 68.389893, 38.160476 ], [ 68.170166, 38.908133 ], [ 67.434082, 39.147103 ], [ 67.697754, 39.588757 ], [ 68.532715, 39.537940 ], [ 69.005127, 40.086477 ], [ 69.323730, 40.730608 ], [ 70.664062, 40.963308 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Nepal", "sov_a3": "NPL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nepal", "adm0_a3": "NPL", "geou_dif": 0, "geounit": "Nepal", "gu_a3": "NPL", "su_dif": 0, "subunit": "Nepal", "su_a3": "NPL", "brk_diff": 0, "name": "Nepal", "name_long": "Nepal", "brk_a3": "NPL", "brk_name": "Nepal", "abbrev": "Nepal", "postal": "NP", "formal_en": "Nepal", "name_sort": "Nepal", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 28563377, "gdp_md_est": 31080, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NP", "iso_a3": "NPL", "iso_n3": "524", "un_a3": "524", "wb_a2": "NP", "wb_a3": "NPL", "woe_id": -99, "adm0_a3_is": "NPL", "adm0_a3_us": "NPL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.518555, 30.429730 ], [ 82.320557, 30.116622 ], [ 83.331299, 29.468297 ], [ 83.891602, 29.324720 ], [ 84.232178, 28.844674 ], [ 85.001221, 28.652031 ], [ 85.814209, 28.207609 ], [ 86.945801, 27.974998 ], [ 88.110352, 27.877928 ], [ 88.033447, 27.449790 ], [ 88.165283, 26.814266 ], [ 88.055420, 26.421390 ], [ 87.220459, 26.401711 ], [ 86.022949, 26.637639 ], [ 85.242920, 26.735799 ], [ 84.671631, 27.235095 ], [ 83.298340, 27.371767 ], [ 81.990967, 27.926474 ], [ 81.057129, 28.420391 ], [ 80.079346, 28.796546 ], [ 80.474854, 29.735762 ], [ 81.101074, 30.192618 ], [ 81.518555, 30.429730 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sri Lanka", "sov_a3": "LKA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sri Lanka", "adm0_a3": "LKA", "geou_dif": 0, "geounit": "Sri Lanka", "gu_a3": "LKA", "su_dif": 0, "subunit": "Sri Lanka", "su_a3": "LKA", "brk_diff": 0, "name": "Sri Lanka", "name_long": "Sri Lanka", "brk_a3": "LKA", "brk_name": "Sri Lanka", "abbrev": "Sri L.", "postal": "LK", "formal_en": "Democratic Socialist Republic of Sri Lanka", "name_sort": "Sri Lanka", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 21324791, "gdp_md_est": 91870, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LK", "iso_a3": "LKA", "iso_n3": "144", "un_a3": "144", "wb_a2": "LK", "wb_a3": "LKA", "woe_id": -99, "adm0_a3_is": "LKA", "adm0_a3_us": "LKA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.145264, 9.828154 ], [ 80.837402, 9.275622 ], [ 81.298828, 8.570158 ], [ 81.782227, 7.525873 ], [ 81.628418, 6.489983 ], [ 81.210938, 6.206090 ], [ 80.343018, 5.976680 ], [ 79.870605, 6.773716 ], [ 79.694824, 8.211490 ], [ 80.145264, 9.828154 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bhutan", "sov_a3": "BTN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bhutan", "adm0_a3": "BTN", "geou_dif": 0, "geounit": "Bhutan", "gu_a3": "BTN", "su_dif": 0, "subunit": "Bhutan", "su_a3": "BTN", "brk_diff": 0, "name": "Bhutan", "name_long": "Bhutan", "brk_a3": "BTN", "brk_name": "Bhutan", "abbrev": "Bhutan", "postal": "BT", "formal_en": "Kingdom of Bhutan", "name_sort": "Bhutan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 691141, "gdp_md_est": 3524, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BT", "iso_a3": "BTN", "iso_n3": "064", "un_a3": "064", "wb_a2": "BT", "wb_a3": "BTN", "woe_id": -99, "adm0_a3_is": "BTN", "adm0_a3_us": "BTN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.010986, 28.304381 ], [ 90.725098, 28.071980 ], [ 90.878906, 28.062286 ], [ 90.878906, 26.843677 ], [ 90.362549, 26.882880 ], [ 90.000000, 26.784847 ], [ 89.736328, 26.725987 ], [ 88.835449, 27.108034 ], [ 88.813477, 27.303452 ], [ 89.472656, 28.042895 ], [ 90.000000, 28.294707 ], [ 90.010986, 28.304381 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 90.878906, 66.861082 ], [ 90.878906, 50.387508 ], [ 90.703125, 50.338449 ], [ 90.000000, 50.014799 ], [ 88.802490, 49.475263 ], [ 87.747803, 49.303636 ], [ 87.352295, 49.217597 ], [ 86.824951, 49.830896 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.407959, 50.317408 ], [ 83.924561, 50.896104 ], [ 83.375244, 51.075920 ], [ 81.936035, 50.812877 ], [ 80.562744, 51.392351 ], [ 80.035400, 50.868378 ], [ 77.794189, 53.409532 ], [ 76.519775, 54.181727 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.421631, 53.494582 ], [ 73.498535, 54.040038 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.172594 ], [ 69.060059, 55.385352 ], [ 68.159180, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.981723 ], [ 60.732422, 52.722986 ], [ 60.919189, 52.449314 ], [ 59.963379, 51.964577 ], [ 61.578369, 51.275662 ], [ 61.336670, 50.805935 ], [ 59.930420, 50.847573 ], [ 59.633789, 50.548344 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.048301 ], [ 55.711670, 50.625073 ], [ 54.525146, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.756836, 51.692990 ], [ 48.691406, 50.611132 ], [ 48.570557, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.360912 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.400032 ], [ 47.307129, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.566414 ], [ 49.097900, 46.399988 ], [ 48.636475, 45.813486 ], [ 47.669678, 45.644768 ], [ 46.680908, 44.613934 ], [ 47.581787, 43.667872 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.977295, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.395264, 41.861379 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 45.000000, 42.609706 ], [ 44.527588, 42.714732 ], [ 44.121094, 42.609706 ], [ 44.121094, 66.275698 ], [ 44.527588, 66.757250 ], [ 44.384766, 66.861082 ], [ 45.900879, 66.861082 ], [ 46.340332, 66.670387 ], [ 47.724609, 66.861082 ], [ 72.004395, 66.861082 ], [ 71.531982, 66.513260 ], [ 71.279297, 66.324274 ], [ 72.421875, 66.173828 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.535143 ], [ 73.916016, 66.791909 ], [ 73.948975, 66.861082 ], [ 90.878906, 66.861082 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.527588, 42.714732 ], [ 45.000000, 42.609706 ], [ 45.461426, 42.504503 ], [ 45.769043, 42.098222 ], [ 46.395264, 41.861379 ], [ 46.142578, 41.730330 ], [ 46.636963, 41.186922 ], [ 46.494141, 41.071069 ], [ 45.955811, 41.129021 ], [ 45.208740, 41.418015 ], [ 45.000000, 41.269550 ], [ 44.967041, 41.253032 ], [ 44.121094, 41.153842 ], [ 44.121094, 42.609706 ], [ 44.527588, 42.714732 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.060059, 55.385352 ], [ 70.861816, 55.172594 ], [ 71.169434, 54.136696 ], [ 72.224121, 54.380557 ], [ 73.498535, 54.040038 ], [ 73.421631, 53.494582 ], [ 74.377441, 53.553363 ], [ 76.882324, 54.495568 ], [ 76.519775, 54.181727 ], [ 77.794189, 53.409532 ], [ 80.035400, 50.868378 ], [ 80.562744, 51.392351 ], [ 81.936035, 50.812877 ], [ 83.375244, 51.075920 ], [ 83.924561, 50.896104 ], [ 84.407959, 50.317408 ], [ 85.111084, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.824951, 49.830896 ], [ 87.352295, 49.217597 ], [ 86.594238, 48.552978 ], [ 85.759277, 48.458352 ], [ 85.715332, 47.457809 ], [ 85.155029, 47.002734 ], [ 83.177490, 47.331377 ], [ 82.452393, 45.544831 ], [ 81.947021, 45.321254 ], [ 79.958496, 44.918139 ], [ 80.859375, 43.181147 ], [ 80.178223, 42.924252 ], [ 80.255127, 42.350425 ], [ 79.639893, 42.504503 ], [ 79.134521, 42.859860 ], [ 77.651367, 42.964463 ], [ 75.992432, 42.988576 ], [ 75.629883, 42.884015 ], [ 74.212646, 43.301196 ], [ 73.641357, 43.092961 ], [ 73.487549, 42.504503 ], [ 71.839600, 42.851806 ], [ 71.180420, 42.706660 ], [ 70.960693, 42.269179 ], [ 70.378418, 42.081917 ], [ 69.060059, 41.385052 ], [ 68.818359, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 66.708984, 41.170384 ], [ 66.500244, 41.992160 ], [ 66.016846, 42.000325 ], [ 66.093750, 43.004647 ], [ 64.896240, 43.731414 ], [ 63.182373, 43.651975 ], [ 62.006836, 43.508721 ], [ 61.051025, 44.410240 ], [ 58.502197, 45.590978 ], [ 55.920410, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.447998, 41.261291 ], [ 54.744873, 42.049293 ], [ 54.074707, 42.326062 ], [ 52.943115, 42.122673 ], [ 52.492676, 41.787697 ], [ 52.437744, 42.032974 ], [ 52.690430, 42.447781 ], [ 52.492676, 42.795401 ], [ 51.339111, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.328369, 44.284537 ], [ 50.295410, 44.613934 ], [ 51.273193, 44.520010 ], [ 51.306152, 45.251688 ], [ 52.163086, 45.413876 ], [ 53.031006, 45.259422 ], [ 53.217773, 46.240652 ], [ 53.041992, 46.860191 ], [ 52.031250, 46.807580 ], [ 51.185303, 47.055154 ], [ 50.031738, 46.611715 ], [ 49.097900, 46.399988 ], [ 48.592529, 46.566414 ], [ 48.691406, 47.077604 ], [ 48.054199, 47.746711 ], [ 47.307129, 47.717154 ], [ 46.461182, 48.400032 ], [ 47.043457, 49.152970 ], [ 46.746826, 49.360912 ], [ 47.548828, 50.457504 ], [ 48.570557, 49.880478 ], [ 48.691406, 50.611132 ], [ 50.756836, 51.692990 ], [ 52.327881, 51.720223 ], [ 54.525146, 51.027576 ], [ 55.711670, 50.625073 ], [ 56.777344, 51.048301 ], [ 58.359375, 51.069017 ], [ 59.633789, 50.548344 ], [ 59.930420, 50.847573 ], [ 61.336670, 50.805935 ], [ 61.578369, 51.275662 ], [ 59.963379, 51.964577 ], [ 60.919189, 52.449314 ], [ 60.732422, 52.722986 ], [ 61.699219, 52.981723 ], [ 60.974121, 53.670680 ], [ 61.435547, 54.007769 ], [ 65.170898, 54.354956 ], [ 65.665283, 54.603892 ], [ 68.159180, 54.971308 ], [ 69.060059, 55.385352 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.212646, 43.301196 ], [ 75.629883, 42.884015 ], [ 75.992432, 42.988576 ], [ 77.651367, 42.964463 ], [ 79.134521, 42.859860 ], [ 79.639893, 42.504503 ], [ 80.255127, 42.350425 ], [ 80.112305, 42.130821 ], [ 78.541260, 41.582580 ], [ 78.178711, 41.186922 ], [ 76.904297, 41.071069 ], [ 76.519775, 40.430224 ], [ 75.465088, 40.563895 ], [ 74.772949, 40.371659 ], [ 74.663086, 40.313043 ], [ 72.070312, 40.313043 ], [ 73.048096, 40.871988 ], [ 72.795410, 40.979898 ], [ 71.861572, 41.393294 ], [ 71.147461, 41.145570 ], [ 70.411377, 41.525030 ], [ 71.257324, 42.171546 ], [ 70.960693, 42.269179 ], [ 71.180420, 42.706660 ], [ 71.839600, 42.851806 ], [ 73.487549, 42.504503 ], [ 73.641357, 43.092961 ], [ 74.212646, 43.301196 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.253032 ], [ 45.000000, 41.219986 ], [ 45.186768, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.351562, 40.563895 ], [ 45.736084, 40.313043 ], [ 44.121094, 40.313043 ], [ 44.121094, 41.153842 ], [ 44.967041, 41.253032 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.623047, 42.755080 ], [ 59.974365, 42.228517 ], [ 60.073242, 41.426253 ], [ 60.457764, 41.228249 ], [ 61.545410, 41.269550 ], [ 61.875000, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.248535, 40.313043 ], [ 52.756348, 40.313043 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.638967 ], [ 54.733887, 40.955011 ], [ 54.700928, 40.979898 ], [ 53.997803, 41.557922 ], [ 53.712158, 42.130821 ], [ 52.910156, 41.869561 ], [ 52.811279, 41.137296 ], [ 52.492676, 41.787697 ], [ 52.943115, 42.122673 ], [ 54.074707, 42.326062 ], [ 54.744873, 42.049293 ], [ 55.447998, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.095947, 41.327326 ], [ 56.931152, 41.828642 ], [ 57.777100, 42.171546 ], [ 58.623047, 42.755080 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.963308 ], [ 70.455322, 40.497092 ], [ 70.543213, 40.313043 ], [ 69.114990, 40.313043 ], [ 69.323730, 40.730608 ], [ 70.664062, 40.963308 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 90.878906, 47.002734 ], [ 90.274658, 47.694974 ], [ 90.000000, 47.768868 ], [ 88.846436, 48.070738 ], [ 88.011475, 48.603858 ], [ 87.747803, 49.303636 ], [ 88.802490, 49.475263 ], [ 90.000000, 50.014799 ], [ 90.703125, 50.338449 ], [ 90.878906, 50.387508 ], [ 90.878906, 47.002734 ] ] ], [ [ [ 90.878906, 46.611715 ], [ 90.878906, 45.367584 ], [ 90.582275, 45.721522 ], [ 90.878906, 46.611715 ] ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 87.747803, 49.303636 ], [ 88.011475, 48.603858 ], [ 88.846436, 48.070738 ], [ 90.000000, 47.768868 ], [ 90.274658, 47.694974 ], [ 90.878906, 47.002734 ], [ 90.878906, 46.611715 ], [ 90.582275, 45.721522 ], [ 90.878906, 45.367584 ], [ 90.878906, 40.313043 ], [ 74.663086, 40.313043 ], [ 74.772949, 40.371659 ], [ 75.465088, 40.563895 ], [ 76.519775, 40.430224 ], [ 76.904297, 41.071069 ], [ 78.178711, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.112305, 42.130821 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.924252 ], [ 80.859375, 43.181147 ], [ 79.958496, 44.918139 ], [ 81.947021, 45.321254 ], [ 82.452393, 45.544831 ], [ 83.177490, 47.331377 ], [ 85.155029, 47.002734 ], [ 85.715332, 47.457809 ], [ 85.759277, 48.458352 ], [ 86.594238, 48.552978 ], [ 87.352295, 49.217597 ], [ 87.747803, 49.303636 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 90.878906, 75.672197 ], [ 90.878906, 66.160511 ], [ 44.121094, 66.160511 ], [ 44.121094, 66.275698 ], [ 44.527588, 66.757250 ], [ 44.121094, 67.054588 ], [ 44.121094, 67.871403 ], [ 44.187012, 67.954025 ], [ 44.121094, 68.011685 ], [ 44.121094, 68.496040 ], [ 45.000000, 68.395135 ], [ 46.241455, 68.253111 ], [ 46.812744, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.340332, 66.670387 ], [ 47.889404, 66.886972 ], [ 48.131104, 67.525373 ], [ 50.218506, 67.999341 ], [ 53.712158, 68.859555 ], [ 54.470215, 68.811957 ], [ 53.481445, 68.204212 ], [ 54.722900, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.883316 ], [ 59.941406, 68.281586 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.522991 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.126221, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.710842 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.934751 ], [ 69.191895, 72.845262 ], [ 69.938965, 73.041829 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.839600, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.784424, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.411310 ], [ 73.234863, 67.742759 ], [ 71.531982, 66.513260 ], [ 71.279297, 66.324274 ], [ 72.421875, 66.173828 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.535143 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.284773 ], [ 75.047607, 67.763556 ], [ 74.465332, 68.330320 ], [ 74.926758, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.630335 ], [ 74.399414, 70.634484 ], [ 73.092041, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.652100, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.155843 ], [ 75.893555, 71.876745 ], [ 77.574463, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.243652, 73.852342 ], [ 84.649658, 73.806447 ], [ 86.813965, 73.937674 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.000000, 75.576730 ], [ 90.252686, 75.642260 ], [ 90.878906, 75.672197 ] ] ], [ [ [ 68.148193, 76.940488 ], [ 68.851318, 76.544967 ], [ 68.170166, 76.234752 ], [ 64.632568, 75.740009 ], [ 61.578369, 75.261444 ], [ 58.469238, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.612793, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.668213, 70.765206 ], [ 53.404541, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.448975, 72.016337 ], [ 52.470703, 72.232161 ], [ 52.437744, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.623779, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.160889, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.148193, 76.940488 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 50.031738, 80.919761 ], [ 51.514893, 80.700447 ], [ 51.130371, 80.548322 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.746338, 80.176839 ], [ 47.581787, 80.010518 ], [ 46.494141, 80.247810 ], [ 47.065430, 80.560943 ], [ 45.000000, 80.587930 ], [ 44.846191, 80.591523 ], [ 45.000000, 80.605880 ], [ 46.790771, 80.772954 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.515792 ], [ 49.086914, 80.755321 ], [ 50.031738, 80.919761 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 135.878906, -79.004962 ], [ 135.878906, -85.126373 ], [ 89.121094, -85.126373 ], [ 89.121094, -79.004962 ], [ 135.878906, -79.004962 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 135.878906, -66.160511 ], [ 135.878906, -79.335219 ], [ 89.121094, -79.335219 ], [ 89.121094, -67.020299 ], [ 89.670410, -67.148632 ], [ 90.000000, -67.174217 ], [ 90.626221, -67.225306 ], [ 91.582031, -67.110204 ], [ 92.603760, -67.187000 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.382080, -66.912834 ], [ 100.887451, -66.578851 ], [ 101.063232, -66.513260 ], [ 101.568604, -66.306621 ], [ 101.821289, -66.160511 ], [ 104.589844, -66.160511 ], [ 104.908447, -66.324274 ], [ 105.292969, -66.513260 ], [ 106.171875, -66.934365 ], [ 107.160645, -66.951576 ], [ 108.072510, -66.951576 ], [ 109.149170, -66.835165 ], [ 110.225830, -66.696478 ], [ 110.786133, -66.513260 ], [ 111.049805, -66.421143 ], [ 111.676025, -66.160511 ], [ 114.521484, -66.160511 ], [ 114.895020, -66.385961 ], [ 115.180664, -66.513260 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.377930, -66.912834 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.860596, -67.187000 ], [ 121.651611, -66.874030 ], [ 122.310791, -66.561377 ], [ 122.882080, -66.513260 ], [ 123.211670, -66.482592 ], [ 123.409424, -66.513260 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.177002, -66.513260 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 134.780273, -66.160511 ], [ 135.878906, -66.160511 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 102.832031, -65.563005 ], [ 103.469238, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.324274 ], [ 105.292969, -66.513260 ], [ 106.018066, -66.861082 ], [ 100.458984, -66.861082 ], [ 100.887451, -66.578851 ], [ 101.063232, -66.513260 ], [ 101.568604, -66.306621 ], [ 102.832031, -65.563005 ] ] ], [ [ [ 114.378662, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.180664, -66.513260 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.657331 ], [ 117.235107, -66.861082 ], [ 108.929443, -66.861082 ], [ 110.225830, -66.696478 ], [ 110.786133, -66.513260 ], [ 111.049805, -66.421143 ], [ 111.741943, -66.129409 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.378662, -66.071546 ] ] ], [ [ [ 135.692139, -65.581179 ], [ 135.878906, -66.035873 ], [ 135.878906, -66.861082 ], [ 121.684570, -66.861082 ], [ 122.310791, -66.561377 ], [ 122.882080, -66.513260 ], [ 123.211670, -66.482592 ], [ 123.409424, -66.513260 ], [ 124.112549, -66.618122 ], [ 125.156250, -66.718199 ], [ 126.090088, -66.561377 ], [ 126.990967, -66.561377 ], [ 128.792725, -66.757250 ], [ 129.693604, -66.578851 ], [ 130.177002, -66.513260 ], [ 130.781250, -66.421143 ], [ 131.791992, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.846436, -66.284537 ], [ 134.747314, -66.209308 ], [ 135.000000, -65.775744 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 110.841064, 0.878872 ], [ 110.511475, 0.780005 ], [ 110.379639, 0.878872 ], [ 110.841064, 0.878872 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.958496, -8.885072 ], [ 125.068359, -9.080400 ], [ 125.079346, -9.384032 ], [ 124.431152, -10.131117 ], [ 123.574219, -10.358151 ], [ 123.453369, -10.239249 ], [ 123.541260, -9.893099 ], [ 123.969727, -9.286465 ], [ 124.958496, -8.885072 ] ] ], [ [ [ 119.893799, -9.351513 ], [ 120.421143, -9.665738 ], [ 120.772705, -9.968851 ], [ 120.706787, -10.239249 ], [ 120.289307, -10.250060 ], [ 118.959961, -9.557417 ], [ 119.893799, -9.351513 ] ] ], [ [ [ 117.894287, -8.091862 ], [ 118.256836, -8.352823 ], [ 118.872070, -8.276727 ], [ 119.124756, -8.700499 ], [ 117.268066, -9.037003 ], [ 116.729736, -9.026153 ], [ 117.081299, -8.450639 ], [ 117.630615, -8.439772 ], [ 117.894287, -8.091862 ] ] ], [ [ [ 122.893066, -8.091862 ], [ 122.750244, -8.646196 ], [ 121.245117, -8.928487 ], [ 119.915771, -8.809082 ], [ 119.915771, -8.439772 ], [ 120.706787, -8.233237 ], [ 121.333008, -8.526701 ], [ 122.003174, -8.450639 ], [ 122.893066, -8.091862 ] ] ], [ [ [ 106.051025, -5.889261 ], [ 107.259521, -5.954827 ], [ 108.061523, -6.337137 ], [ 108.479004, -6.413566 ], [ 108.621826, -6.773716 ], [ 110.533447, -6.871893 ], [ 110.753174, -6.457234 ], [ 112.609863, -6.937333 ], [ 112.972412, -7.591218 ], [ 114.477539, -7.776309 ], [ 115.697021, -8.363693 ], [ 114.554443, -8.743936 ], [ 113.455811, -8.341953 ], [ 112.554932, -8.374562 ], [ 111.511230, -8.298470 ], [ 110.577393, -8.113615 ], [ 109.423828, -7.732765 ], [ 108.687744, -7.634776 ], [ 108.270264, -7.765423 ], [ 106.446533, -7.351571 ], [ 106.270752, -6.915521 ], [ 105.358887, -6.850078 ], [ 106.051025, -5.889261 ] ] ], [ [ [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ], [ 134.714355, -6.206090 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ] ] ], [ [ [ 102.854004, 0.878872 ], [ 103.073730, 0.571280 ], [ 103.831787, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.436279, -0.703107 ], [ 104.007568, -1.054628 ], [ 104.359131, -1.076597 ], [ 104.534912, -1.779499 ], [ 104.886475, -2.339438 ], [ 105.611572, -2.427252 ], [ 106.105957, -3.052754 ], [ 105.853271, -4.302591 ], [ 105.809326, -5.845545 ], [ 104.699707, -5.867403 ], [ 103.864746, -5.036227 ], [ 102.579346, -4.214943 ], [ 102.150879, -3.612107 ], [ 101.392822, -2.789425 ], [ 100.898438, -2.043024 ], [ 100.140381, -0.648180 ], [ 99.448242, 0.000000 ], [ 99.261475, 0.186767 ], [ 99.019775, 0.878872 ], [ 102.854004, 0.878872 ] ] ], [ [ [ 124.793701, 0.878872 ], [ 124.431152, 0.428463 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.135498, 0.000000 ], [ 120.036621, -0.516350 ], [ 120.926514, -1.406109 ], [ 121.464844, -0.955766 ], [ 123.332520, -0.615223 ], [ 123.255615, -1.065612 ], [ 122.816162, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.497803, -1.900286 ], [ 122.453613, -3.184394 ], [ 122.266846, -3.524387 ], [ 123.167725, -4.674980 ], [ 123.156738, -5.331644 ], [ 122.618408, -5.626919 ], [ 122.233887, -5.276948 ], [ 122.717285, -4.455951 ], [ 121.728516, -4.850154 ], [ 121.486816, -4.565474 ], [ 121.618652, -4.182073 ], [ 120.893555, -3.601142 ], [ 120.970459, -2.624814 ], [ 120.300293, -2.921097 ], [ 120.388184, -4.094411 ], [ 120.421143, -5.517575 ], [ 119.794922, -5.670651 ], [ 119.366455, -5.375398 ], [ 119.652100, -4.455951 ], [ 119.498291, -3.491489 ], [ 119.069824, -3.480523 ], [ 118.762207, -2.800398 ], [ 119.179688, -2.141835 ], [ 119.322510, -1.351193 ], [ 119.772949, 0.000000 ], [ 119.816895, 0.164795 ], [ 120.025635, 0.571280 ], [ 120.388184, 0.878872 ], [ 124.793701, 0.878872 ] ] ], [ [ [ 132.374268, -0.362546 ], [ 133.978271, -0.780005 ], [ 134.143066, -1.142502 ], [ 134.417725, -2.767478 ], [ 135.000000, -3.096636 ], [ 135.450439, -3.359889 ], [ 135.878906, -2.822344 ], [ 135.878906, -4.532618 ], [ 135.153809, -4.455951 ], [ 135.000000, -4.357366 ], [ 133.659668, -3.535352 ], [ 133.363037, -4.017699 ], [ 132.978516, -4.105369 ], [ 132.747803, -3.743671 ], [ 132.747803, -3.305050 ], [ 131.989746, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.471157 ], [ 133.692627, -2.207705 ], [ 132.231445, -2.207705 ], [ 131.835938, -1.614776 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.933797 ], [ 131.857910, -0.692122 ], [ 132.374268, -0.362546 ] ] ], [ [ [ 118.762207, 0.878872 ], [ 117.806396, 0.790990 ], [ 117.476807, 0.109863 ], [ 117.476807, 0.000000 ], [ 117.520752, -0.801976 ], [ 116.553955, -1.482989 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.006740 ], [ 115.993652, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.491489 ], [ 113.752441, -3.436658 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.697998, -2.986927 ], [ 111.038818, -3.041783 ], [ 110.214844, -2.932069 ], [ 110.061035, -1.592812 ], [ 109.566650, -1.307260 ], [ 109.083252, -0.450435 ], [ 109.017334, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.006348, 0.878872 ], [ 110.379639, 0.878872 ], [ 110.511475, 0.780005 ], [ 110.841064, 0.878872 ], [ 118.762207, 0.878872 ] ] ], [ [ [ 129.364014, -2.800398 ], [ 130.462646, -3.085666 ], [ 130.825195, -3.853293 ], [ 129.990234, -3.436658 ], [ 129.144287, -3.359889 ], [ 128.583984, -3.425692 ], [ 127.891846, -3.392791 ], [ 128.133545, -2.833317 ], [ 129.364014, -2.800398 ] ] ], [ [ [ 126.990967, -3.118576 ], [ 127.243652, -3.458591 ], [ 126.870117, -3.787522 ], [ 126.177979, -3.601142 ], [ 125.980225, -3.173425 ], [ 126.990967, -3.118576 ] ] ], [ [ [ 128.671875, 0.878872 ], [ 128.627930, 0.263671 ], [ 128.111572, 0.362546 ], [ 128.023682, 0.000000 ], [ 127.957764, -0.241699 ], [ 128.375244, -0.769020 ], [ 128.089600, -0.889857 ], [ 127.694092, -0.263671 ], [ 127.628174, 0.000000 ], [ 127.419434, 0.878872 ], [ 128.671875, 0.878872 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "East Timor", "sov_a3": "TLS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "East Timor", "adm0_a3": "TLS", "geou_dif": 0, "geounit": "East Timor", "gu_a3": "TLS", "su_dif": 0, "subunit": "East Timor", "su_a3": "TLS", "brk_diff": 0, "name": "Timor-Leste", "name_long": "Timor-Leste", "brk_a3": "TLS", "brk_name": "Timor-Leste", "abbrev": "T.L.", "postal": "TL", "formal_en": "Democratic Republic of Timor-Leste", "name_sort": "Timor-Leste", "name_alt": "East Timor", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1131612, "gdp_md_est": 2520, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "TL", "iso_a3": "TLS", "iso_n3": "626", "un_a3": "626", "wb_a2": "TP", "wb_a3": "TMP", "woe_id": -99, "adm0_a3_is": "TLS", "adm0_a3_us": "TLS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.947021, -8.265855 ], [ 127.331543, -8.396300 ], [ 126.958008, -8.667918 ], [ 125.925293, -9.102097 ], [ 125.079346, -9.384032 ], [ 125.068359, -9.080400 ], [ 124.958496, -8.885072 ], [ 125.079346, -8.646196 ], [ 125.936279, -8.428904 ], [ 126.639404, -8.396300 ], [ 126.947021, -8.265855 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 132.352295, -11.124507 ], [ 133.011475, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.670410, -11.931852 ], [ 135.000000, -12.093039 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.964097 ], [ 135.878906, -14.061988 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.494385, -14.987240 ], [ 135.878906, -15.252389 ], [ 135.878906, -34.831841 ], [ 135.197754, -34.470335 ], [ 135.230713, -33.943360 ], [ 135.000000, -33.669497 ], [ 134.604492, -33.220308 ], [ 134.077148, -32.842674 ], [ 134.263916, -32.611616 ], [ 132.989502, -32.008076 ], [ 132.286377, -31.980123 ], [ 131.319580, -31.494262 ], [ 129.528809, -31.587894 ], [ 128.232422, -31.942840 ], [ 127.100830, -32.277845 ], [ 126.145020, -32.212801 ], [ 125.079346, -32.722599 ], [ 124.211426, -32.953368 ], [ 124.024658, -33.477272 ], [ 123.651123, -33.888658 ], [ 122.805176, -33.906896 ], [ 122.178955, -33.998027 ], [ 121.289062, -33.815666 ], [ 120.574951, -33.925130 ], [ 119.882812, -33.970698 ], [ 119.289551, -34.506557 ], [ 119.003906, -34.461277 ], [ 118.498535, -34.741612 ], [ 118.015137, -35.056980 ], [ 117.290039, -35.021000 ], [ 116.619873, -35.021000 ], [ 115.554199, -34.379713 ], [ 115.015869, -34.189086 ], [ 115.037842, -33.614619 ], [ 115.543213, -33.486435 ], [ 115.708008, -33.257063 ], [ 115.675049, -32.898038 ], [ 115.795898, -32.203505 ], [ 115.686035, -31.606610 ], [ 115.158691, -30.600094 ], [ 114.993896, -30.021544 ], [ 115.037842, -29.458731 ], [ 114.631348, -28.806174 ], [ 114.609375, -28.507316 ], [ 114.169922, -28.110749 ], [ 114.038086, -27.332735 ], [ 113.466797, -26.539394 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.539394 ], [ 113.433838, -25.611810 ], [ 113.928223, -25.908644 ], [ 114.224854, -26.293415 ], [ 114.213867, -25.780107 ], [ 113.719482, -24.996016 ], [ 113.620605, -24.676970 ], [ 113.389893, -24.377121 ], [ 113.499756, -23.805450 ], [ 113.697510, -23.553917 ], [ 113.840332, -23.059516 ], [ 113.730469, -22.471955 ], [ 114.147949, -21.749296 ], [ 114.224854, -22.512557 ], [ 114.642334, -21.820708 ], [ 115.455322, -21.493964 ], [ 115.938721, -21.063997 ], [ 116.707764, -20.694462 ], [ 117.158203, -20.622502 ], [ 117.432861, -20.745840 ], [ 118.223877, -20.365228 ], [ 118.828125, -20.262197 ], [ 118.981934, -20.035290 ], [ 119.245605, -19.952696 ], [ 119.794922, -19.973349 ], [ 120.849609, -19.673626 ], [ 121.398926, -19.238550 ], [ 121.651611, -18.698285 ], [ 122.233887, -18.187607 ], [ 122.277832, -17.790535 ], [ 122.310791, -17.245744 ], [ 123.002930, -16.404470 ], [ 123.431396, -17.266728 ], [ 123.848877, -17.067287 ], [ 123.497314, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.320139 ], [ 124.376221, -15.559544 ], [ 124.925537, -15.072124 ], [ 125.167236, -14.679254 ], [ 125.661621, -14.509144 ], [ 125.683594, -14.221789 ], [ 126.123047, -14.338904 ], [ 126.134033, -14.093957 ], [ 127.056885, -13.816744 ], [ 127.803955, -14.275030 ], [ 128.353271, -14.859850 ], [ 128.979492, -14.870469 ], [ 129.616699, -14.966013 ], [ 129.407959, -14.413400 ], [ 129.880371, -13.613956 ], [ 130.330811, -13.346865 ], [ 130.177002, -13.100880 ], [ 130.616455, -12.533115 ], [ 131.220703, -12.178965 ], [ 131.726074, -12.297068 ], [ 132.572021, -12.103781 ], [ 132.550049, -11.598432 ], [ 131.813965, -11.264612 ], [ 132.352295, -11.124507 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.108398, 29.458731 ], [ 96.580811, 28.835050 ], [ 96.240234, 28.420391 ], [ 97.316895, 28.265682 ], [ 97.393799, 27.887639 ], [ 97.042236, 27.702984 ], [ 97.130127, 27.088473 ], [ 96.416016, 27.274161 ], [ 95.119629, 26.578702 ], [ 95.152588, 26.007424 ], [ 94.592285, 25.165173 ], [ 94.548340, 24.676970 ], [ 94.097900, 23.855698 ], [ 93.317871, 24.086589 ], [ 93.284912, 23.049407 ], [ 93.054199, 22.705255 ], [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.142334, 23.634460 ], [ 91.867676, 23.624395 ], [ 91.702881, 22.988738 ], [ 91.153564, 23.503552 ], [ 91.461182, 24.076559 ], [ 91.911621, 24.136728 ], [ 92.373047, 24.986058 ], [ 91.790771, 25.155229 ], [ 90.867920, 25.135339 ], [ 90.000000, 25.264568 ], [ 89.912109, 25.274504 ], [ 89.824219, 25.967922 ], [ 89.351807, 26.017298 ], [ 89.121094, 26.145576 ], [ 89.121094, 26.980829 ], [ 89.736328, 26.725987 ], [ 90.000000, 26.784847 ], [ 90.362549, 26.882880 ], [ 91.208496, 26.814266 ], [ 92.032471, 26.843677 ], [ 92.098389, 27.459539 ], [ 91.691895, 27.780772 ], [ 92.493896, 27.897349 ], [ 93.405762, 28.642389 ], [ 94.559326, 29.286399 ], [ 95.394287, 29.036961 ], [ 96.108398, 29.458731 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.051270, 41.640078 ], [ 104.963379, 41.599013 ], [ 104.897461, 41.640078 ], [ 105.051270, 41.640078 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bhutan", "sov_a3": "BTN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bhutan", "adm0_a3": "BTN", "geou_dif": 0, "geounit": "Bhutan", "gu_a3": "BTN", "su_dif": 0, "subunit": "Bhutan", "su_a3": "BTN", "brk_diff": 0, "name": "Bhutan", "name_long": "Bhutan", "brk_a3": "BTN", "brk_name": "Bhutan", "abbrev": "Bhutan", "postal": "BT", "formal_en": "Kingdom of Bhutan", "name_sort": "Bhutan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 691141, "gdp_md_est": 3524, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BT", "iso_a3": "BTN", "iso_n3": "064", "un_a3": "064", "wb_a2": "BT", "wb_a3": "BTN", "woe_id": -99, "adm0_a3_is": "BTN", "adm0_a3_us": "BTN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.010986, 28.304381 ], [ 90.725098, 28.071980 ], [ 91.252441, 28.042895 ], [ 91.691895, 27.780772 ], [ 92.098389, 27.459539 ], [ 92.032471, 26.843677 ], [ 91.208496, 26.814266 ], [ 90.362549, 26.882880 ], [ 90.000000, 26.784847 ], [ 89.736328, 26.725987 ], [ 89.121094, 26.980829 ], [ 89.121094, 27.654338 ], [ 89.472656, 28.042895 ], [ 90.000000, 28.294707 ], [ 90.010986, 28.304381 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.910156, 28.343065 ], [ 98.239746, 27.751608 ], [ 98.679199, 27.518015 ], [ 98.701172, 26.745610 ], [ 98.668213, 25.928407 ], [ 97.723389, 25.085599 ], [ 97.602539, 23.905927 ], [ 98.657227, 24.066528 ], [ 98.887939, 23.150462 ], [ 99.525146, 22.958393 ], [ 99.239502, 22.126355 ], [ 99.975586, 21.749296 ], [ 100.415039, 21.565502 ], [ 101.140137, 21.851302 ], [ 101.173096, 21.442843 ], [ 100.327148, 20.786931 ], [ 100.107422, 20.427013 ], [ 99.536133, 20.190035 ], [ 98.953857, 19.756364 ], [ 98.250732, 19.715000 ], [ 97.789307, 18.635835 ], [ 97.371826, 18.448347 ], [ 97.855225, 17.570721 ], [ 98.492432, 16.846605 ], [ 98.898926, 16.183024 ], [ 98.536377, 15.315976 ], [ 98.184814, 15.125159 ], [ 98.426514, 14.626109 ], [ 99.096680, 13.838080 ], [ 99.206543, 13.272026 ], [ 99.195557, 12.811801 ], [ 99.580078, 11.899604 ], [ 99.030762, 10.962764 ], [ 98.547363, 9.936388 ], [ 98.448486, 10.682201 ], [ 98.756104, 11.447723 ], [ 98.426514, 12.039321 ], [ 98.503418, 13.132979 ], [ 98.096924, 13.645987 ], [ 97.767334, 14.838612 ], [ 97.591553, 16.109153 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.436085 ], [ 95.361328, 15.718239 ], [ 94.801025, 15.813396 ], [ 94.185791, 16.045813 ], [ 94.526367, 17.287709 ], [ 94.317627, 18.218916 ], [ 93.537598, 19.373341 ], [ 93.658447, 19.735684 ], [ 93.076172, 19.859727 ], [ 92.362061, 20.673905 ], [ 92.296143, 21.483741 ], [ 92.647705, 21.330315 ], [ 92.669678, 22.044913 ], [ 93.164062, 22.278931 ], [ 93.054199, 22.705255 ], [ 93.284912, 23.049407 ], [ 93.317871, 24.086589 ], [ 94.097900, 23.855698 ], [ 94.548340, 24.676970 ], [ 94.592285, 25.165173 ], [ 95.152588, 26.007424 ], [ 95.119629, 26.578702 ], [ 96.416016, 27.274161 ], [ 97.130127, 27.088473 ], [ 97.042236, 27.702984 ], [ 97.393799, 27.887639 ], [ 97.316895, 28.265682 ], [ 97.910156, 28.343065 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Laos", "sov_a3": "LAO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Laos", "adm0_a3": "LAO", "geou_dif": 0, "geounit": "Laos", "gu_a3": "LAO", "su_dif": 0, "subunit": "Laos", "su_a3": "LAO", "brk_diff": 0, "name": "Lao PDR", "name_long": "Lao PDR", "brk_a3": "LAO", "brk_name": "Laos", "abbrev": "Laos", "postal": "LA", "formal_en": "Lao People's Democratic Republic", "name_sort": "Lao PDR", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 6834942, "gdp_md_est": 13980, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LA", "iso_a3": "LAO", "iso_n3": "418", "un_a3": "418", "wb_a2": "LA", "wb_a3": "LAO", "woe_id": -99, "adm0_a3_is": "LAO", "adm0_a3_us": "LAO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.161865, 22.471955 ], [ 102.744141, 21.677848 ], [ 103.194580, 20.776659 ], [ 104.425049, 20.766387 ], [ 104.820557, 19.890723 ], [ 104.183350, 19.632240 ], [ 103.886719, 19.269665 ], [ 105.084229, 18.667063 ], [ 106.545410, 16.604610 ], [ 107.303467, 15.919074 ], [ 107.556152, 15.209988 ], [ 107.380371, 14.211139 ], [ 106.490479, 14.572951 ], [ 106.040039, 13.891411 ], [ 105.216064, 14.275030 ], [ 105.534668, 14.732386 ], [ 105.578613, 15.580711 ], [ 104.776611, 16.446622 ], [ 104.710693, 17.434511 ], [ 103.952637, 18.250220 ], [ 103.194580, 18.312811 ], [ 102.996826, 17.968283 ], [ 102.403564, 17.936929 ], [ 102.106934, 18.114529 ], [ 101.052246, 17.518344 ], [ 101.030273, 18.417079 ], [ 101.271973, 19.466592 ], [ 100.601807, 19.518375 ], [ 100.546875, 20.117840 ], [ 100.107422, 20.427013 ], [ 100.327148, 20.786931 ], [ 101.173096, 21.442843 ], [ 101.260986, 21.207459 ], [ 101.799316, 21.176729 ], [ 101.645508, 22.319589 ], [ 102.161865, 22.471955 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.125244, 6.937333 ], [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 118.344727, 5.714380 ], [ 119.179688, 5.408211 ], [ 119.102783, 5.025283 ], [ 118.432617, 4.970560 ], [ 118.608398, 4.488809 ], [ 117.872314, 4.138243 ], [ 117.004395, 4.313546 ], [ 115.861816, 4.313546 ], [ 115.510254, 3.173425 ], [ 115.125732, 2.822344 ], [ 114.620361, 1.439058 ], [ 113.796387, 1.219390 ], [ 112.851562, 1.504954 ], [ 112.379150, 1.417092 ], [ 111.796875, 0.911827 ], [ 111.148682, 0.977736 ], [ 110.511475, 0.780005 ], [ 109.819336, 1.340210 ], [ 109.654541, 2.010086 ], [ 110.390625, 1.669686 ], [ 111.159668, 1.856365 ], [ 111.368408, 2.701635 ], [ 111.796875, 2.888180 ], [ 112.994385, 3.107606 ], [ 113.708496, 3.897138 ], [ 114.202881, 4.532618 ], [ 114.653320, 4.017699 ], [ 114.862061, 4.357366 ], [ 115.345459, 4.324501 ], [ 115.444336, 5.451959 ], [ 116.213379, 6.151478 ], [ 116.718750, 6.926427 ], [ 117.125244, 6.937333 ] ] ], [ [ [ 100.250244, 6.653695 ], [ 101.074219, 6.206090 ], [ 101.151123, 5.692516 ], [ 101.810303, 5.812757 ], [ 102.139893, 6.227934 ], [ 102.370605, 6.129631 ], [ 102.952881, 5.528511 ], [ 103.370361, 4.861101 ], [ 103.436279, 4.182073 ], [ 103.326416, 3.732708 ], [ 103.425293, 3.392791 ], [ 103.502197, 2.800398 ], [ 103.853760, 2.526037 ], [ 104.238281, 1.636740 ], [ 104.227295, 1.296276 ], [ 103.513184, 1.230374 ], [ 102.568359, 1.977147 ], [ 101.381836, 2.767478 ], [ 101.271973, 3.272146 ], [ 100.689697, 3.940981 ], [ 100.546875, 4.773521 ], [ 100.195312, 5.320705 ], [ 100.305176, 6.042236 ], [ 100.085449, 6.468151 ], [ 100.250244, 6.653695 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Taiwan", "sov_a3": "TWN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Taiwan", "adm0_a3": "TWN", "geou_dif": 0, "geounit": "Taiwan", "gu_a3": "TWN", "su_dif": 0, "subunit": "Taiwan", "su_a3": "TWN", "brk_diff": 1, "name": "Taiwan", "name_long": "Taiwan", "brk_a3": "B77", "brk_name": "Taiwan", "abbrev": "Taiwan", "postal": "TW", "note_brk": "Self admin.; Claimed by China", "name_sort": "Taiwan", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 22974347, "gdp_md_est": 712000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TW", "iso_a3": "TWN", "iso_n3": "158", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "TWN", "adm0_a3_us": "TWN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.486816, 25.304304 ], [ 121.948242, 25.005973 ], [ 121.772461, 24.397133 ], [ 121.168213, 22.796439 ], [ 120.739746, 21.973614 ], [ 120.212402, 22.816694 ], [ 120.102539, 23.563987 ], [ 120.684814, 24.547123 ], [ 121.486816, 25.304304 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Philippines", "sov_a3": "PHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Philippines", "adm0_a3": "PHL", "geou_dif": 0, "geounit": "Philippines", "gu_a3": "PHL", "su_dif": 0, "subunit": "Philippines", "su_a3": "PHL", "brk_diff": 0, "name": "Philippines", "name_long": "Philippines", "brk_a3": "PHL", "brk_name": "Philippines", "abbrev": "Phil.", "postal": "PH", "formal_en": "Republic of the Philippines", "name_sort": "Philippines", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 97976603, "gdp_md_est": 317500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PH", "iso_a3": "PHL", "iso_n3": "608", "un_a3": "608", "wb_a2": "PH", "wb_a3": "PHL", "woe_id": -99, "adm0_a3_is": "PHL", "adm0_a3_us": "PHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.408936, 9.763198 ], [ 126.221924, 9.286465 ], [ 126.375732, 8.418036 ], [ 126.474609, 7.754537 ], [ 126.529541, 7.199001 ], [ 126.188965, 6.282539 ], [ 125.826416, 7.297088 ], [ 125.354004, 6.795535 ], [ 125.672607, 6.053161 ], [ 125.386963, 5.583184 ], [ 124.211426, 6.162401 ], [ 123.936768, 6.893707 ], [ 124.233398, 7.362467 ], [ 123.607178, 7.841615 ], [ 123.288574, 7.427837 ], [ 122.816162, 7.460518 ], [ 122.080078, 6.904614 ], [ 121.915283, 7.199001 ], [ 122.310791, 8.037473 ], [ 122.937012, 8.320212 ], [ 123.486328, 8.700499 ], [ 123.837891, 8.244110 ], [ 124.595947, 8.515836 ], [ 124.760742, 8.961045 ], [ 125.463867, 8.993600 ], [ 125.408936, 9.763198 ] ] ], [ [ [ 119.509277, 11.372339 ], [ 119.685059, 10.563422 ], [ 119.025879, 10.012130 ], [ 118.498535, 9.318990 ], [ 117.169189, 8.374562 ], [ 117.663574, 9.069551 ], [ 118.377686, 9.687398 ], [ 118.981934, 10.379765 ], [ 119.509277, 11.372339 ] ] ], [ [ [ 124.068604, 11.243062 ], [ 123.980713, 10.282491 ], [ 123.618164, 9.958030 ], [ 123.299561, 9.318990 ], [ 122.991943, 9.026153 ], [ 122.376709, 9.719886 ], [ 122.585449, 9.990491 ], [ 122.827148, 10.271681 ], [ 122.937012, 10.887254 ], [ 123.497314, 10.941192 ], [ 123.332520, 10.271681 ], [ 124.068604, 11.243062 ] ] ], [ [ [ 124.266357, 12.565287 ], [ 125.222168, 12.543840 ], [ 125.496826, 12.168226 ], [ 125.782471, 11.049038 ], [ 125.002441, 11.318481 ], [ 125.024414, 10.984335 ], [ 125.277100, 10.368958 ], [ 124.793701, 10.141932 ], [ 124.749756, 10.844096 ], [ 124.453125, 10.898042 ], [ 124.299316, 11.501557 ], [ 124.881592, 11.426187 ], [ 124.870605, 11.802834 ], [ 124.266357, 12.565287 ] ] ], [ [ [ 121.882324, 11.899604 ], [ 122.475586, 11.587669 ], [ 123.112793, 11.587669 ], [ 123.090820, 11.167624 ], [ 122.629395, 10.746969 ], [ 121.992188, 10.444598 ], [ 121.959229, 10.908830 ], [ 122.036133, 11.426187 ], [ 121.882324, 11.899604 ] ] ], [ [ [ 120.322266, 13.475106 ], [ 121.179199, 13.432367 ], [ 121.519775, 13.079478 ], [ 121.256104, 12.211180 ], [ 120.827637, 12.704651 ], [ 120.322266, 13.475106 ] ] ], [ [ [ 121.311035, 18.510866 ], [ 121.937256, 18.218916 ], [ 122.244873, 18.479609 ], [ 122.332764, 18.229351 ], [ 122.167969, 17.811456 ], [ 122.508545, 17.098792 ], [ 122.244873, 16.267414 ], [ 121.662598, 15.940202 ], [ 121.497803, 15.125159 ], [ 121.728516, 14.338904 ], [ 122.255859, 14.221789 ], [ 122.695312, 14.338904 ], [ 123.947754, 13.784737 ], [ 123.848877, 13.239945 ], [ 124.178467, 13.004558 ], [ 124.068604, 12.543840 ], [ 123.288574, 13.036669 ], [ 122.926025, 13.560562 ], [ 122.662354, 13.186468 ], [ 122.025146, 13.784737 ], [ 121.124268, 13.645987 ], [ 120.618896, 13.859414 ], [ 120.673828, 14.275030 ], [ 120.981445, 14.530415 ], [ 120.684814, 14.764259 ], [ 120.563965, 14.402759 ], [ 120.069580, 14.976627 ], [ 119.915771, 15.411319 ], [ 119.882812, 16.372851 ], [ 120.278320, 16.035255 ], [ 120.388184, 17.602139 ], [ 120.706787, 18.510866 ], [ 121.311035, 18.510866 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "name_sort": "Japan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "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": [ [ [ [ 135.878906, 35.880149 ], [ 135.878906, 33.541395 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 133.330078, 34.379713 ], [ 132.154541, 33.906896 ], [ 130.979004, 33.888658 ], [ 131.989746, 33.155948 ], [ 131.330566, 31.456782 ], [ 130.682373, 31.034108 ], [ 130.198975, 31.419288 ], [ 130.440674, 32.324276 ], [ 129.814453, 32.611616 ], [ 129.407959, 33.302986 ], [ 130.352783, 33.605470 ], [ 130.869141, 34.234512 ], [ 131.879883, 34.750640 ], [ 132.615967, 35.433820 ], [ 134.604492, 35.737595 ], [ 135.000000, 35.657296 ], [ 135.670166, 35.532226 ], [ 135.878906, 35.880149 ] ] ], [ [ [ 133.901367, 34.370645 ], [ 134.637451, 34.152727 ], [ 134.758301, 33.806538 ], [ 134.197998, 33.201924 ], [ 133.791504, 33.523079 ], [ 133.275146, 33.293804 ], [ 133.011475, 32.713355 ], [ 132.352295, 32.990236 ], [ 132.363281, 33.468108 ], [ 132.923584, 34.061761 ], [ 133.483887, 33.952474 ], [ 133.901367, 34.370645 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.374268, -0.362546 ], [ 133.978271, -0.780005 ], [ 134.022217, -0.878872 ], [ 130.836182, -0.878872 ], [ 131.857910, -0.692122 ], [ 132.374268, -0.362546 ] ] ], [ [ [ 125.057373, 1.647722 ], [ 125.233154, 1.428075 ], [ 124.431152, 0.428463 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.135498, 0.000000 ], [ 120.036621, -0.516350 ], [ 120.399170, -0.878872 ], [ 119.476318, -0.878872 ], [ 119.772949, 0.000000 ], [ 119.816895, 0.164795 ], [ 120.025635, 0.571280 ], [ 120.882568, 1.318243 ], [ 121.662598, 1.021674 ], [ 122.926025, 0.878872 ], [ 124.068604, 0.922812 ], [ 125.057373, 1.647722 ] ] ], [ [ [ 127.924805, 2.174771 ], [ 128.001709, 1.636740 ], [ 128.583984, 1.548884 ], [ 128.682861, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.111572, 0.362546 ], [ 128.023682, 0.000000 ], [ 127.957764, -0.241699 ], [ 128.375244, -0.769020 ], [ 128.144531, -0.878872 ], [ 128.078613, -0.878872 ], [ 127.694092, -0.263671 ], [ 127.628174, 0.000000 ], [ 127.397461, 1.021674 ], [ 127.595215, 1.812442 ], [ 127.924805, 2.174771 ] ] ], [ [ [ 117.004395, 4.313546 ], [ 117.872314, 4.138243 ], [ 117.312012, 3.239240 ], [ 118.048096, 2.295528 ], [ 117.872314, 1.834403 ], [ 118.992920, 0.911827 ], [ 117.806396, 0.790990 ], [ 117.476807, 0.109863 ], [ 117.476807, 0.000000 ], [ 117.520752, -0.801976 ], [ 117.410889, -0.878872 ], [ 109.324951, -0.878872 ], [ 109.083252, -0.450435 ], [ 109.017334, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.061279, 1.351193 ], [ 109.654541, 2.010086 ], [ 109.819336, 1.340210 ], [ 110.511475, 0.780005 ], [ 111.148682, 0.977736 ], [ 111.796875, 0.911827 ], [ 112.379150, 1.417092 ], [ 112.851562, 1.504954 ], [ 113.796387, 1.219390 ], [ 114.620361, 1.439058 ], [ 115.125732, 2.822344 ], [ 115.510254, 3.173425 ], [ 115.861816, 4.313546 ], [ 117.004395, 4.313546 ] ] ], [ [ [ 95.284424, 5.484768 ], [ 95.932617, 5.441022 ], [ 97.481689, 5.255068 ], [ 98.360596, 4.269724 ], [ 99.140625, 3.601142 ], [ 99.689941, 3.184394 ], [ 100.634766, 2.108899 ], [ 101.656494, 2.086941 ], [ 102.491455, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.831787, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.436279, -0.703107 ], [ 103.710938, -0.878872 ], [ 100.261230, -0.878872 ], [ 100.140381, -0.648180 ], [ 99.448242, 0.000000 ], [ 99.261475, 0.186767 ], [ 98.964844, 1.043643 ], [ 98.591309, 1.834403 ], [ 97.690430, 2.460181 ], [ 97.174072, 3.316018 ], [ 96.416016, 3.875216 ], [ 95.372314, 4.981505 ], [ 95.284424, 5.484768 ] ] ], [ [ [ 123.288574, -0.878872 ], [ 121.893311, -0.878872 ], [ 123.332520, -0.615223 ], [ 123.288574, -0.878872 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 135.878906, 66.861082 ], [ 135.878906, 55.210222 ], [ 135.120850, 54.730964 ], [ 135.878906, 54.673831 ], [ 135.878906, 44.308127 ], [ 135.000000, 43.524655 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.901611, 42.803462 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.770264, 42.220382 ], [ 130.638428, 42.399122 ], [ 130.627441, 42.908160 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.972571 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.219568 ], [ 134.494629, 47.583937 ], [ 135.000000, 48.436490 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.480204 ], [ 133.363037, 48.188063 ], [ 132.506104, 47.791016 ], [ 130.979004, 47.791016 ], [ 130.572510, 48.734455 ], [ 129.396973, 49.446700 ], [ 127.650146, 49.767074 ], [ 127.276611, 50.743408 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.788232 ], [ 125.936279, 52.796119 ], [ 125.057373, 53.166534 ], [ 123.563232, 53.461890 ], [ 122.244873, 53.435719 ], [ 120.992432, 53.252069 ], [ 120.168457, 52.756243 ], [ 120.717773, 52.522906 ], [ 120.728760, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.278564, 50.148746 ], [ 117.872314, 49.518076 ], [ 116.674805, 49.894634 ], [ 115.477295, 49.809632 ], [ 114.960938, 50.141706 ], [ 114.356689, 50.254230 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.468018, 49.289306 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.611816, 50.282319 ], [ 103.666992, 50.092393 ], [ 102.249756, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.522416 ], [ 99.975586, 51.638476 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.250977, 49.731581 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.141846, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.230225, 50.805935 ], [ 90.703125, 50.338449 ], [ 90.000000, 50.014799 ], [ 89.121094, 49.617828 ], [ 89.121094, 66.861082 ], [ 135.878906, 66.861082 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.854980, 52.052490 ], [ 99.975586, 51.638476 ], [ 100.887451, 51.522416 ], [ 102.062988, 51.261915 ], [ 102.249756, 50.513427 ], [ 103.666992, 50.092393 ], [ 104.611816, 50.282319 ], [ 105.886230, 50.408518 ], [ 106.885986, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.468018, 49.289306 ], [ 109.401855, 49.296472 ], [ 110.654297, 49.131408 ], [ 111.577148, 49.382373 ], [ 112.895508, 49.546598 ], [ 114.356689, 50.254230 ], [ 114.960938, 50.141706 ], [ 115.477295, 49.809632 ], [ 116.674805, 49.894634 ], [ 116.191406, 49.138597 ], [ 115.477295, 48.136767 ], [ 115.740967, 47.731934 ], [ 116.301270, 47.857403 ], [ 117.290039, 47.702368 ], [ 118.059082, 48.070738 ], [ 118.861084, 47.754098 ], [ 119.761963, 47.055154 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.807580 ], [ 117.410889, 46.679594 ], [ 116.707764, 46.392411 ], [ 115.982666, 45.729191 ], [ 114.455566, 45.344424 ], [ 113.455811, 44.809122 ], [ 112.434082, 45.019185 ], [ 111.862793, 45.104546 ], [ 111.346436, 44.465151 ], [ 111.665039, 44.079693 ], [ 111.818848, 43.747289 ], [ 111.126709, 43.413029 ], [ 110.401611, 42.875964 ], [ 109.237061, 42.520700 ], [ 107.742920, 42.488302 ], [ 106.127930, 42.138968 ], [ 104.963379, 41.599013 ], [ 104.512939, 41.910453 ], [ 103.304443, 41.910453 ], [ 101.832275, 42.520700 ], [ 100.843506, 42.666281 ], [ 99.514160, 42.528796 ], [ 97.448730, 42.755080 ], [ 96.339111, 42.730874 ], [ 95.756836, 43.325178 ], [ 95.306396, 44.245199 ], [ 94.680176, 44.355278 ], [ 93.471680, 44.980342 ], [ 92.131348, 45.120053 ], [ 90.944824, 45.290347 ], [ 90.582275, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.274658, 47.694974 ], [ 89.121094, 48.004625 ], [ 89.121094, 49.617828 ], [ 90.000000, 50.014799 ], [ 90.703125, 50.338449 ], [ 92.230225, 50.805935 ], [ 93.098145, 50.499452 ], [ 94.141846, 50.485474 ], [ 94.812012, 50.014799 ], [ 95.811768, 49.979488 ], [ 97.250977, 49.731581 ], [ 98.228760, 50.422519 ], [ 97.822266, 51.013755 ], [ 98.854980, 52.052490 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 123.563232, 53.461890 ], [ 125.057373, 53.166534 ], [ 125.936279, 52.796119 ], [ 126.562500, 51.788232 ], [ 126.936035, 51.358062 ], [ 127.276611, 50.743408 ], [ 127.650146, 49.767074 ], [ 129.396973, 49.446700 ], [ 130.572510, 48.734455 ], [ 130.979004, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.363037, 48.188063 ], [ 135.000000, 48.480204 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.436490 ], [ 134.494629, 47.583937 ], [ 134.110107, 47.219568 ], [ 133.769531, 46.118942 ], [ 133.088379, 45.151053 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.972571 ], [ 131.286621, 44.119142 ], [ 131.143799, 42.932296 ], [ 130.627441, 42.908160 ], [ 130.638428, 42.399122 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.431566 ], [ 128.045654, 42.000325 ], [ 128.199463, 41.467428 ], [ 127.342529, 41.508577 ], [ 126.859131, 41.820455 ], [ 126.177979, 41.112469 ], [ 125.914307, 40.979898 ], [ 125.079346, 40.572240 ], [ 124.749756, 40.313043 ], [ 122.036133, 40.313043 ], [ 122.167969, 40.430224 ], [ 121.629639, 40.946714 ], [ 120.761719, 40.597271 ], [ 120.311279, 40.313043 ], [ 89.121094, 40.313043 ], [ 89.121094, 48.004625 ], [ 90.274658, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.290347 ], [ 92.131348, 45.120053 ], [ 93.471680, 44.980342 ], [ 94.680176, 44.355278 ], [ 95.306396, 44.245199 ], [ 95.756836, 43.325178 ], [ 96.339111, 42.730874 ], [ 97.448730, 42.755080 ], [ 99.514160, 42.528796 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.520700 ], [ 103.304443, 41.910453 ], [ 104.512939, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.138968 ], [ 107.742920, 42.488302 ], [ 109.237061, 42.520700 ], [ 110.401611, 42.875964 ], [ 111.126709, 43.413029 ], [ 111.818848, 43.747289 ], [ 111.665039, 44.079693 ], [ 111.346436, 44.465151 ], [ 111.862793, 45.104546 ], [ 112.434082, 45.019185 ], [ 113.455811, 44.809122 ], [ 114.455566, 45.344424 ], [ 115.982666, 45.729191 ], [ 116.707764, 46.392411 ], [ 117.410889, 46.679594 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.761963, 47.055154 ], [ 118.861084, 47.754098 ], [ 118.059082, 48.070738 ], [ 117.290039, 47.702368 ], [ 116.301270, 47.857403 ], [ 115.740967, 47.731934 ], [ 115.477295, 48.136767 ], [ 116.191406, 49.138597 ], [ 116.674805, 49.894634 ], [ 117.872314, 49.518076 ], [ 119.278564, 50.148746 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.728760, 51.964577 ], [ 120.717773, 52.522906 ], [ 120.168457, 52.756243 ], [ 120.992432, 53.252069 ], [ 122.244873, 53.435719 ], [ 123.563232, 53.461890 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "North Korea", "sov_a3": "PRK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "North Korea", "adm0_a3": "PRK", "geou_dif": 0, "geounit": "North Korea", "gu_a3": "PRK", "su_dif": 0, "subunit": "North Korea", "su_a3": "PRK", "brk_diff": 0, "name": "Dem. Rep. Korea", "name_long": "Dem. Rep. Korea", "brk_a3": "PRK", "brk_name": "Dem. Rep. Korea", "abbrev": "N.K.", "postal": "KP", "formal_en": "Democratic People's Republic of Korea", "name_sort": "Korea, Dem. Rep.", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 22665345, "gdp_md_est": 40000, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KP", "iso_a3": "PRK", "iso_n3": "408", "un_a3": "408", "wb_a2": "KP", "wb_a3": "PRK", "woe_id": -99, "adm0_a3_is": "PRK", "adm0_a3_us": "PRK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 15, "long_len": 15, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.990234, 42.988576 ], [ 130.638428, 42.399122 ], [ 130.770264, 42.220382 ], [ 130.396729, 42.285437 ], [ 129.957275, 41.943149 ], [ 129.660645, 41.607228 ], [ 129.693604, 40.979898 ], [ 129.704590, 40.888601 ], [ 129.177246, 40.663973 ], [ 129.001465, 40.488737 ], [ 128.781738, 40.313043 ], [ 124.749756, 40.313043 ], [ 125.079346, 40.572240 ], [ 125.914307, 40.979898 ], [ 126.177979, 41.112469 ], [ 126.859131, 41.820455 ], [ 127.342529, 41.508577 ], [ 128.199463, 41.467428 ], [ 128.045654, 42.000325 ], [ 129.594727, 42.431566 ], [ 129.990234, 42.988576 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 104.348145, 77.699894 ], [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.323975, 76.224292 ], [ 114.125977, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.390869, 74.182063 ], [ 110.632324, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.521729, 73.337311 ], [ 113.961182, 73.596792 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.590586 ], [ 119.014893, 73.121756 ], [ 123.189697, 72.974406 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.562631 ], [ 126.968994, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.399028 ], [ 128.452148, 71.982386 ], [ 129.715576, 71.194838 ], [ 131.286621, 70.790525 ], [ 132.253418, 71.839115 ], [ 133.857422, 71.388649 ], [ 135.000000, 71.570115 ], [ 135.560303, 71.656749 ], [ 135.878906, 71.608283 ], [ 135.878906, 66.160511 ], [ 89.121094, 66.160511 ], [ 89.121094, 75.353398 ], [ 90.000000, 75.576730 ], [ 90.252686, 75.642260 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.668701, 75.917526 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.432026 ], [ 101.030273, 76.863308 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.699894 ] ] ], [ [ [ 102.205811, 79.335219 ], [ 102.832031, 79.282227 ], [ 103.337402, 79.171335 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.922567 ], [ 101.162109, 79.171335 ], [ 101.260986, 79.235133 ], [ 101.997070, 79.335219 ], [ 102.205811, 79.335219 ] ] ], [ [ [ 100.052490, 79.335219 ], [ 100.008545, 79.171335 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.757087 ], [ 94.965820, 79.046790 ], [ 94.427490, 79.171335 ], [ 93.713379, 79.335219 ], [ 100.052490, 79.335219 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ], [ 103.337402, 79.171335 ], [ 104.084473, 79.004962 ], [ 100.920410, 79.004962 ], [ 101.162109, 79.171335 ], [ 101.260986, 79.235133 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.932617, 81.251691 ], [ 97.877197, 80.748259 ], [ 100.184326, 79.781164 ], [ 100.008545, 79.171335 ], [ 99.964600, 79.004962 ], [ 95.350342, 79.004962 ], [ 94.965820, 79.046790 ], [ 94.427490, 79.171335 ], [ 93.306885, 79.428340 ], [ 92.537842, 80.144924 ], [ 91.175537, 80.342262 ], [ 93.768311, 81.024916 ], [ 95.932617, 81.251691 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 164.498291, -79.004962 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 161.751709, -79.171335 ], [ 160.916748, -79.730364 ], [ 160.740967, -80.199306 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.944002 ], [ 161.114502, -81.278386 ], [ 161.619873, -81.689909 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.395157 ], [ 165.091553, -82.708426 ], [ 166.596680, -83.022216 ], [ 168.892822, -83.335329 ], [ 169.398193, -83.825220 ], [ 172.276611, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.979004, -84.158613 ], [ 178.275146, -84.471948 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.126373 ], [ 134.121094, -85.126373 ], [ 134.121094, -79.004962 ], [ 164.498291, -79.004962 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 135.966797, -66.160511 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.449951, -66.951576 ], [ 138.592529, -66.895596 ], [ 139.899902, -66.874030 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.195068, -67.225306 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.892086 ], [ 147.722168, -68.126576 ], [ 148.831787, -68.382996 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.871439 ], [ 153.632812, -68.891231 ], [ 154.281006, -68.560384 ], [ 155.159912, -68.831802 ], [ 155.928955, -69.146920 ], [ 156.807861, -69.384181 ], [ 158.016357, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.664307, -69.990535 ], [ 160.795898, -70.226028 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.714471 ], [ 164.915771, -70.772443 ], [ 166.113281, -70.754345 ], [ 167.299805, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.453125, -71.205460 ], [ 170.496826, -71.399165 ], [ 171.199951, -71.694744 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.438850 ], [ 169.749756, -73.242545 ], [ 169.277344, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.376709, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.640869, -74.770072 ], [ 164.948730, -75.143595 ], [ 164.223633, -75.458589 ], [ 163.817139, -75.869328 ], [ 163.564453, -76.239979 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.739990, -78.181838 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.906044 ], [ 163.663330, -79.121686 ], [ 161.762695, -79.161010 ], [ 161.751709, -79.171335 ], [ 161.510010, -79.335219 ], [ 134.121094, -79.335219 ], [ 134.121094, -66.262434 ], [ 134.747314, -66.209308 ], [ 134.780273, -66.160511 ], [ 135.966797, -66.160511 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.867920, -66.031411 ], [ 136.197510, -66.443107 ], [ 136.614990, -66.774586 ], [ 137.010498, -66.861082 ], [ 134.121094, -66.861082 ], [ 134.121094, -66.262434 ], [ 134.747314, -66.209308 ], [ 135.000000, -65.775744 ], [ 135.021973, -65.717076 ], [ 135.065918, -65.307240 ] ] ], [ [ [ 144.371338, -66.835165 ], [ 144.711914, -66.861082 ], [ 140.130615, -66.861082 ], [ 140.800781, -66.813547 ], [ 142.119141, -66.813547 ], [ 143.052979, -66.796238 ], [ 144.371338, -66.835165 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.733887, -40.697299 ], [ 145.393066, -40.788860 ], [ 145.920410, -40.979898 ], [ 146.359863, -41.137296 ], [ 146.986084, -40.979898 ], [ 147.689209, -40.805494 ], [ 148.282471, -40.871988 ], [ 148.293457, -40.979898 ], [ 148.359375, -42.057450 ], [ 148.007812, -42.399122 ], [ 147.908936, -43.205176 ], [ 147.557373, -42.932296 ], [ 146.865234, -43.628123 ], [ 146.656494, -43.580391 ], [ 146.041260, -43.548548 ], [ 145.426025, -42.690511 ], [ 145.294189, -42.032974 ], [ 144.711914, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.733887, -40.697299 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "New Zealand", "sov_a3": "NZ1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "New Zealand", "adm0_a3": "NZL", "geou_dif": 0, "geounit": "New Zealand", "gu_a3": "NZL", "su_dif": 0, "subunit": "New Zealand", "su_a3": "NZL", "brk_diff": 0, "name": "New Zealand", "name_long": "New Zealand", "brk_a3": "NZL", "brk_name": "New Zealand", "abbrev": "N.Z.", "postal": "NZ", "formal_en": "New Zealand", "name_sort": "New Zealand", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 4213418, "gdp_md_est": 116700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NZ", "iso_a3": "NZL", "iso_n3": "554", "un_a3": "554", "wb_a2": "NZ", "wb_a3": "NZL", "woe_id": -99, "adm0_a3_is": "NZL", "adm0_a3_us": "NZL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.792969, -40.488737 ], [ 173.012695, -40.913513 ], [ 173.045654, -40.979898 ], [ 173.243408, -41.327326 ], [ 173.858643, -40.979898 ], [ 173.957520, -40.921814 ], [ 173.990479, -40.979898 ], [ 174.243164, -41.343825 ], [ 174.243164, -41.763117 ], [ 173.869629, -42.228517 ], [ 173.221436, -42.964463 ], [ 172.705078, -43.365126 ], [ 173.078613, -43.850374 ], [ 172.298584, -43.858297 ], [ 171.452637, -44.237328 ], [ 171.177979, -44.894796 ], [ 170.606689, -45.905300 ], [ 169.332275, -46.634351 ], [ 168.409424, -46.619261 ], [ 167.761230, -46.286224 ], [ 166.673584, -46.217852 ], [ 166.508789, -45.851760 ], [ 167.036133, -45.104546 ], [ 168.299561, -44.119142 ], [ 168.947754, -43.929550 ], [ 169.661865, -43.548548 ], [ 170.518799, -43.028745 ], [ 171.123047, -42.512602 ], [ 171.562500, -41.763117 ], [ 171.947021, -41.508577 ], [ 172.089844, -40.979898 ], [ 172.089844, -40.955011 ], [ 172.792969, -40.488737 ] ] ], [ [ [ 176.704102, -40.313043 ], [ 176.231689, -40.979898 ], [ 176.011963, -41.286062 ], [ 175.231934, -41.681118 ], [ 175.067139, -41.418015 ], [ 174.649658, -41.277806 ], [ 174.858398, -40.979898 ], [ 175.220947, -40.455307 ], [ 175.133057, -40.313043 ], [ 176.704102, -40.313043 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Fiji", "sov_a3": "FJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Fiji", "adm0_a3": "FJI", "geou_dif": 0, "geounit": "Fiji", "gu_a3": "FJI", "su_dif": 0, "subunit": "Fiji", "su_a3": "FJI", "brk_diff": 0, "name": "Fiji", "name_long": "Fiji", "brk_a3": "FJI", "brk_name": "Fiji", "abbrev": "Fiji", "postal": "FJ", "formal_en": "Republic of Fiji", "name_sort": "Fiji", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 944720, "gdp_md_est": 3579, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "FJ", "iso_a3": "FJI", "iso_n3": "242", "un_a3": "242", "wb_a2": "FJ", "wb_a3": "FJI", "woe_id": -99, "adm0_a3_is": "FJI", "adm0_a3_us": "FJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.363037, -17.329664 ], [ 178.714600, -17.623082 ], [ 178.549805, -18.145852 ], [ 177.923584, -18.281518 ], [ 177.374268, -18.156291 ], [ 177.275391, -17.717294 ], [ 177.659912, -17.371610 ], [ 178.121338, -17.497389 ], [ 178.363037, -17.329664 ] ] ], [ [ [ 180.000000, -16.066929 ], [ 180.000000, -16.551962 ], [ 179.362793, -16.794024 ], [ 178.714600, -17.004262 ], [ 178.593750, -16.636192 ], [ 179.088135, -16.425548 ], [ 179.406738, -16.372851 ], [ 180.000000, -16.066929 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.121094, -1.098565 ], [ 134.143066, -1.142502 ], [ 134.417725, -2.767478 ], [ 135.000000, -3.096636 ], [ 135.450439, -3.359889 ], [ 136.285400, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ], [ 139.174805, -2.043024 ], [ 139.921875, -2.405299 ], [ 140.998535, -2.591889 ], [ 141.031494, -9.112945 ], [ 140.141602, -8.287599 ], [ 139.119873, -8.091862 ], [ 138.878174, -8.374562 ], [ 137.603760, -8.407168 ], [ 138.032227, -7.591218 ], [ 138.658447, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.386336 ], [ 135.988770, -4.543570 ], [ 135.153809, -4.455951 ], [ 135.000000, -4.357366 ], [ 134.121094, -3.820408 ], [ 134.121094, -1.098565 ] ] ], [ [ [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ], [ 134.714355, -6.206090 ], [ 134.208984, -6.893707 ], [ 134.121094, -6.118708 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.733887, -40.697299 ], [ 145.393066, -40.788860 ], [ 145.920410, -40.979898 ], [ 146.359863, -41.137296 ], [ 146.986084, -40.979898 ], [ 147.689209, -40.805494 ], [ 148.282471, -40.871988 ], [ 148.293457, -40.979898 ], [ 148.326416, -41.640078 ], [ 145.030518, -41.640078 ], [ 144.711914, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.733887, -40.697299 ] ] ], [ [ [ 142.514648, -10.660608 ], [ 142.789307, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.107910, -11.899604 ], [ 143.151855, -12.318536 ], [ 143.514404, -12.833226 ], [ 143.591309, -13.400307 ], [ 143.558350, -13.763396 ], [ 143.920898, -14.541050 ], [ 144.558105, -14.168534 ], [ 144.887695, -14.594216 ], [ 145.371094, -14.976627 ], [ 145.261230, -15.421910 ], [ 145.480957, -16.277960 ], [ 145.634766, -16.783506 ], [ 145.887451, -16.899172 ], [ 146.151123, -17.759150 ], [ 146.063232, -18.271086 ], [ 146.381836, -18.958246 ], [ 147.469482, -19.476950 ], [ 148.842773, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.282227, -21.258661 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.116177 ], [ 150.479736, -22.553147 ], [ 150.721436, -22.400872 ], [ 150.897217, -23.453168 ], [ 152.072754, -24.457151 ], [ 152.852783, -25.264568 ], [ 153.127441, -26.066652 ], [ 153.160400, -26.637639 ], [ 153.083496, -27.254630 ], [ 153.566895, -28.101058 ], [ 153.511963, -28.988922 ], [ 153.336182, -29.449165 ], [ 153.061523, -30.344436 ], [ 153.083496, -30.921076 ], [ 152.885742, -31.634676 ], [ 152.446289, -32.546813 ], [ 151.699219, -33.036298 ], [ 151.336670, -33.815666 ], [ 151.007080, -34.307144 ], [ 150.710449, -35.164828 ], [ 150.325928, -35.666222 ], [ 150.073242, -36.412442 ], [ 149.941406, -37.107765 ], [ 149.996338, -37.422526 ], [ 149.414062, -37.770715 ], [ 148.304443, -37.805444 ], [ 147.381592, -38.212288 ], [ 146.920166, -38.599700 ], [ 146.315918, -39.027719 ], [ 145.480957, -38.591114 ], [ 144.876709, -38.410558 ], [ 145.030518, -37.892196 ], [ 144.481201, -38.082690 ], [ 143.602295, -38.805470 ], [ 142.745361, -38.530979 ], [ 142.174072, -38.376115 ], [ 141.602783, -38.307181 ], [ 140.635986, -38.013476 ], [ 139.987793, -37.396346 ], [ 139.801025, -36.641978 ], [ 139.570312, -36.137875 ], [ 139.075928, -35.728677 ], [ 138.120117, -35.603719 ], [ 138.438721, -35.119909 ], [ 138.197021, -34.379713 ], [ 137.713623, -35.074965 ], [ 136.823730, -35.254591 ], [ 137.351074, -34.705493 ], [ 137.493896, -34.125448 ], [ 137.889404, -33.632916 ], [ 137.801514, -32.898038 ], [ 136.988525, -33.751748 ], [ 136.362305, -34.089061 ], [ 135.988770, -34.885931 ], [ 135.197754, -34.470335 ], [ 135.230713, -33.943360 ], [ 135.000000, -33.669497 ], [ 134.604492, -33.220308 ], [ 134.121094, -32.870360 ], [ 134.121094, -32.796510 ], [ 134.263916, -32.611616 ], [ 134.121094, -32.537552 ], [ 134.121094, -11.953349 ], [ 134.384766, -12.039321 ], [ 134.670410, -11.931852 ], [ 135.000000, -12.093039 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.953349 ], [ 136.252441, -12.039321 ], [ 136.483154, -11.856599 ], [ 136.944580, -12.350734 ], [ 136.680908, -12.886780 ], [ 136.296387, -13.282719 ], [ 135.955811, -13.314794 ], [ 136.076660, -13.720708 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.494385, -14.987240 ], [ 136.285400, -15.548960 ], [ 137.054443, -15.866242 ], [ 137.570801, -16.214675 ], [ 138.295898, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.097900, -17.056785 ], [ 139.251709, -17.361125 ], [ 140.207520, -17.706828 ], [ 140.866699, -17.361125 ], [ 141.064453, -16.825574 ], [ 141.273193, -16.383391 ], [ 141.394043, -15.834536 ], [ 141.701660, -15.040296 ], [ 141.558838, -14.551684 ], [ 141.624756, -14.264383 ], [ 141.514893, -13.688688 ], [ 141.646729, -12.940322 ], [ 141.833496, -12.736801 ], [ 141.679688, -12.404389 ], [ 141.921387, -11.867351 ], [ 142.108154, -11.318481 ], [ 142.141113, -11.038255 ], [ 142.514648, -10.660608 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Papua New Guinea", "sov_a3": "PNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Papua New Guinea", "adm0_a3": "PNG", "geou_dif": 0, "geounit": "Papua New Guinea", "gu_a3": "PNG", "su_dif": 1, "subunit": "Papua New Guinea", "su_a3": "PN1", "brk_diff": 0, "name": "Papua New Guinea", "name_long": "Papua New Guinea", "brk_a3": "PN1", "brk_name": "Papua New Guinea", "abbrev": "P.N.G.", "postal": "PG", "formal_en": "Independent State of Papua New Guinea", "name_sort": "Papua New Guinea", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 6057263, "gdp_md_est": 13210, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PG", "iso_a3": "PNG", "iso_n3": "598", "un_a3": "598", "wb_a2": "PG", "wb_a3": "PNG", "woe_id": -99, "adm0_a3_is": "PNG", "adm0_a3_us": "PNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 16, "long_len": 16, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.998535, -2.591889 ], [ 142.734375, -3.283114 ], [ 144.580078, -3.853293 ], [ 145.272217, -4.368320 ], [ 145.821533, -4.872048 ], [ 145.975342, -5.462896 ], [ 147.645264, -6.075011 ], [ 147.886963, -6.610044 ], [ 146.964111, -6.719165 ], [ 147.183838, -7.384258 ], [ 148.073730, -8.037473 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.069551 ], [ 149.260254, -9.514079 ], [ 150.029297, -9.676569 ], [ 149.732666, -9.871452 ], [ 150.798340, -10.293301 ], [ 150.688477, -10.574222 ], [ 150.018311, -10.649811 ], [ 149.776611, -10.390572 ], [ 147.908936, -10.120302 ], [ 147.128906, -9.492408 ], [ 146.557617, -8.939340 ], [ 146.041260, -8.059230 ], [ 144.733887, -7.623887 ], [ 143.887939, -7.906912 ], [ 143.283691, -8.244110 ], [ 143.404541, -8.982749 ], [ 142.624512, -9.318990 ], [ 142.064209, -9.156333 ], [ 141.031494, -9.112945 ], [ 140.998535, -2.591889 ] ] ], [ [ [ 154.643555, -5.036227 ], [ 154.753418, -5.331644 ], [ 155.061035, -5.561315 ], [ 155.544434, -6.195168 ], [ 156.016846, -6.533645 ], [ 155.874023, -6.817353 ], [ 155.599365, -6.915521 ], [ 155.159912, -6.533645 ], [ 154.720459, -5.900189 ], [ 154.511719, -5.134715 ], [ 154.643555, -5.036227 ] ] ], [ [ [ 152.127686, -4.138243 ], [ 152.336426, -4.302591 ], [ 152.314453, -4.861101 ], [ 151.973877, -5.473832 ], [ 151.457520, -5.550381 ], [ 151.292725, -5.834616 ], [ 150.238037, -6.315299 ], [ 149.699707, -6.315299 ], [ 148.886719, -6.020385 ], [ 148.315430, -5.736243 ], [ 148.392334, -5.430085 ], [ 149.293213, -5.583184 ], [ 149.842529, -5.495704 ], [ 149.985352, -5.025283 ], [ 150.139160, -4.992450 ], [ 150.227051, -5.528511 ], [ 150.798340, -5.451959 ], [ 151.083984, -5.112830 ], [ 151.644287, -4.751624 ], [ 151.534424, -4.160158 ], [ 152.127686, -4.138243 ] ] ], [ [ [ 150.930176, -2.493109 ], [ 151.479492, -2.778451 ], [ 151.809082, -2.997899 ], [ 152.237549, -3.239240 ], [ 152.633057, -3.655964 ], [ 153.017578, -3.973861 ], [ 153.138428, -4.499762 ], [ 152.819824, -4.762573 ], [ 152.633057, -4.171115 ], [ 152.402344, -3.787522 ], [ 151.380615, -3.030812 ], [ 150.655518, -2.734557 ], [ 150.930176, -2.493109 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Solomon Islands", "sov_a3": "SLB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Solomon Islands", "adm0_a3": "SLB", "geou_dif": 0, "geounit": "Solomon Islands", "gu_a3": "SLB", "su_dif": 0, "subunit": "Solomon Islands", "su_a3": "SLB", "brk_diff": 0, "name": "Solomon Is.", "name_long": "Solomon Islands", "brk_a3": "SLB", "brk_name": "Solomon Is.", "abbrev": "S. Is.", "postal": "SB", "name_sort": "Solomon Islands", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 595613, "gdp_md_est": 1078, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SB", "iso_a3": "SLB", "iso_n3": "090", "un_a3": "090", "wb_a2": "SB", "wb_a3": "SLB", "woe_id": -99, "adm0_a3_is": "SLB", "adm0_a3_us": "SLB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 15, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.312256, -10.196000 ], [ 161.916504, -10.444598 ], [ 162.114258, -10.477009 ], [ 162.388916, -10.822515 ], [ 161.696777, -10.811724 ], [ 161.312256, -10.196000 ] ] ], [ [ [ 159.697266, -9.232249 ], [ 160.356445, -9.394871 ], [ 160.686035, -9.600750 ], [ 160.850830, -9.871452 ], [ 160.455322, -9.893099 ], [ 159.840088, -9.784851 ], [ 159.631348, -9.633246 ], [ 159.697266, -9.232249 ] ] ], [ [ [ 160.916748, -8.309341 ], [ 161.279297, -9.112945 ], [ 161.674805, -9.589917 ], [ 161.520996, -9.774025 ], [ 160.784912, -8.906780 ], [ 160.576172, -8.309341 ], [ 160.916748, -8.309341 ] ] ], [ [ [ 158.356934, -7.318882 ], [ 158.818359, -7.558547 ], [ 159.631348, -8.015716 ], [ 159.873047, -8.331083 ], [ 159.916992, -8.537565 ], [ 159.125977, -8.113615 ], [ 158.576660, -7.754537 ], [ 158.203125, -7.416942 ], [ 158.356934, -7.318882 ] ] ], [ [ [ 156.533203, -6.599131 ], [ 157.137451, -7.013668 ], [ 157.532959, -7.340675 ], [ 157.335205, -7.395153 ], [ 156.895752, -7.166300 ], [ 156.489258, -6.762806 ], [ 156.533203, -6.599131 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Vanuatu", "sov_a3": "VUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vanuatu", "adm0_a3": "VUT", "geou_dif": 0, "geounit": "Vanuatu", "gu_a3": "VUT", "su_dif": 0, "subunit": "Vanuatu", "su_a3": "VUT", "brk_diff": 0, "name": "Vanuatu", "name_long": "Vanuatu", "brk_a3": "VUT", "brk_name": "Vanuatu", "abbrev": "Van.", "postal": "VU", "formal_en": "Republic of Vanuatu", "name_sort": "Vanuatu", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 218519, "gdp_md_est": 988.5, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VU", "iso_a3": "VUT", "iso_n3": "548", "un_a3": "548", "wb_a2": "VU", "wb_a3": "VUT", "woe_id": -99, "adm0_a3_is": "VUT", "adm0_a3_us": "VUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": 2, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.211914, -15.887376 ], [ 167.838135, -16.457159 ], [ 167.508545, -16.594081 ], [ 167.178955, -16.151369 ], [ 167.211914, -15.887376 ] ] ], [ [ [ 166.618652, -14.626109 ], [ 167.102051, -14.923554 ], [ 167.266846, -15.739388 ], [ 166.992188, -15.612456 ], [ 166.783447, -15.665354 ], [ 166.640625, -15.390136 ], [ 166.618652, -14.626109 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "New Zealand", "sov_a3": "NZ1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "New Zealand", "adm0_a3": "NZL", "geou_dif": 0, "geounit": "New Zealand", "gu_a3": "NZL", "su_dif": 0, "subunit": "New Zealand", "su_a3": "NZL", "brk_diff": 0, "name": "New Zealand", "name_long": "New Zealand", "brk_a3": "NZL", "brk_name": "New Zealand", "abbrev": "N.Z.", "postal": "NZ", "formal_en": "New Zealand", "name_sort": "New Zealand", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 4213418, "gdp_md_est": 116700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NZ", "iso_a3": "NZL", "iso_n3": "554", "un_a3": "554", "wb_a2": "NZ", "wb_a3": "NZL", "woe_id": -99, "adm0_a3_is": "NZL", "adm0_a3_us": "NZL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.792969, -40.488737 ], [ 173.012695, -40.913513 ], [ 173.045654, -40.979898 ], [ 173.243408, -41.327326 ], [ 173.858643, -40.979898 ], [ 173.957520, -40.921814 ], [ 173.990479, -40.979898 ], [ 174.243164, -41.343825 ], [ 174.243164, -41.640078 ], [ 171.760254, -41.640078 ], [ 171.947021, -41.508577 ], [ 172.089844, -40.979898 ], [ 172.089844, -40.955011 ], [ 172.792969, -40.488737 ] ] ], [ [ [ 173.001709, -34.443159 ], [ 173.551025, -35.003003 ], [ 174.320068, -35.263562 ], [ 174.605713, -36.155618 ], [ 175.330811, -37.204082 ], [ 175.352783, -36.518466 ], [ 175.803223, -36.791691 ], [ 175.957031, -37.553288 ], [ 176.759033, -37.874853 ], [ 177.429199, -37.952861 ], [ 178.000488, -37.579413 ], [ 178.516846, -37.692514 ], [ 178.264160, -38.582526 ], [ 177.967529, -39.164141 ], [ 177.198486, -39.138582 ], [ 176.934814, -39.444678 ], [ 177.022705, -39.876019 ], [ 176.879883, -40.061257 ], [ 176.231689, -40.979898 ], [ 176.011963, -41.286062 ], [ 175.330811, -41.640078 ], [ 175.198975, -41.640078 ], [ 175.067139, -41.418015 ], [ 174.649658, -41.277806 ], [ 174.858398, -40.979898 ], [ 175.220947, -40.455307 ], [ 174.891357, -39.901309 ], [ 173.814697, -39.504041 ], [ 173.847656, -39.138582 ], [ 174.572754, -38.796908 ], [ 174.737549, -38.022131 ], [ 174.693604, -37.378888 ], [ 174.287109, -36.703660 ], [ 174.309082, -36.527295 ], [ 173.836670, -36.120128 ], [ 173.045654, -35.236646 ], [ 172.628174, -34.524661 ], [ 173.001709, -34.443159 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "name_sort": "Japan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "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": [ [ [ [ 134.121094, 34.307144 ], [ 134.637451, 34.152727 ], [ 134.758301, 33.806538 ], [ 134.197998, 33.201924 ], [ 134.121094, 33.266250 ], [ 134.121094, 34.307144 ] ] ], [ [ [ 141.361084, 41.385052 ], [ 141.525879, 40.979898 ], [ 141.910400, 39.993956 ], [ 141.877441, 39.181175 ], [ 140.954590, 38.177751 ], [ 140.965576, 37.142803 ], [ 140.592041, 36.350527 ], [ 140.767822, 35.844535 ], [ 140.251465, 35.146863 ], [ 138.966064, 34.669359 ], [ 137.208252, 34.615127 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 134.121094, 34.479392 ], [ 134.121094, 35.666222 ], [ 134.604492, 35.737595 ], [ 135.000000, 35.657296 ], [ 135.670166, 35.532226 ], [ 136.713867, 37.309014 ], [ 137.384033, 36.835668 ], [ 139.416504, 38.220920 ], [ 140.053711, 39.444678 ], [ 139.877930, 40.563895 ], [ 140.295410, 41.195190 ], [ 141.361084, 41.385052 ] ] ], [ [ [ 141.086426, 41.640078 ], [ 141.064453, 41.590797 ], [ 139.954834, 41.574361 ], [ 139.943848, 41.640078 ], [ 141.086426, 41.640078 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 180.000000, 66.861082 ], [ 180.000000, 64.984005 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.483643, 62.573106 ], [ 179.219971, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.561768, 61.773123 ], [ 173.671875, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.321045, 59.883425 ], [ 168.892822, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.838623, 60.163376 ], [ 164.871826, 59.734253 ], [ 163.531494, 59.872398 ], [ 163.212891, 59.215312 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.615992 ], [ 163.048096, 56.163906 ], [ 162.125244, 56.127184 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.348553 ], [ 160.015869, 53.206033 ], [ 158.521729, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.412354, 51.706608 ], [ 155.983887, 53.159947 ], [ 155.423584, 55.385352 ], [ 155.906982, 56.770788 ], [ 156.752930, 57.368015 ], [ 156.807861, 57.833055 ], [ 158.356934, 58.060444 ], [ 160.147705, 59.316375 ], [ 161.861572, 60.343260 ], [ 163.663330, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.114746, 60.549177 ], [ 159.301758, 61.778319 ], [ 156.719971, 61.438767 ], [ 154.215088, 59.761928 ], [ 155.039062, 59.147769 ], [ 152.808838, 58.887619 ], [ 151.259766, 58.785285 ], [ 151.336670, 59.506455 ], [ 149.776611, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.691895, 54.603892 ], [ 137.186279, 53.981935 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.258807 ], [ 139.899902, 54.194583 ], [ 141.339111, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.504150, 50.050085 ], [ 140.053711, 48.451066 ], [ 138.548584, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.856689, 45.151053 ], [ 135.505371, 43.992815 ], [ 135.000000, 43.524655 ], [ 134.868164, 43.405047 ], [ 134.121094, 43.076913 ], [ 134.121094, 47.227029 ], [ 134.494629, 47.583937 ], [ 135.000000, 48.436490 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.480204 ], [ 134.121094, 48.319734 ], [ 134.121094, 66.861082 ], [ 180.000000, 66.861082 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.250732, 52.742943 ], [ 143.228760, 51.761040 ], [ 143.646240, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.864774 ], [ 143.525391, 46.837650 ], [ 143.503418, 46.141783 ], [ 142.745361, 46.747389 ], [ 142.086182, 45.974060 ], [ 141.899414, 46.807580 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.130127, 49.617828 ], [ 142.174072, 50.958427 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.768196 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ] ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 135.021973, 48.480204 ], [ 135.000000, 48.436490 ], [ 134.494629, 47.583937 ], [ 134.121094, 47.227029 ], [ 134.121094, 48.319734 ], [ 135.000000, 48.480204 ], [ 135.021973, 48.480204 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "name_sort": "Japan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "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": [ [ [ [ 141.361084, 41.385052 ], [ 141.525879, 40.979898 ], [ 141.778564, 40.313043 ], [ 139.910889, 40.313043 ], [ 139.877930, 40.563895 ], [ 140.295410, 41.195190 ], [ 141.361084, 41.385052 ] ] ], [ [ [ 141.965332, 45.552525 ], [ 143.140869, 44.512176 ], [ 143.909912, 44.174325 ], [ 144.613037, 43.961191 ], [ 145.316162, 44.386692 ], [ 145.535889, 43.269206 ], [ 144.052734, 42.988576 ], [ 143.173828, 42.000325 ], [ 141.602783, 42.682435 ], [ 141.064453, 41.590797 ], [ 139.954834, 41.574361 ], [ 139.812012, 42.569264 ], [ 140.306396, 43.341160 ], [ 141.372070, 43.389082 ], [ 141.668701, 44.777936 ], [ 141.965332, 45.552525 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 140.460205, 72.851742 ], [ 149.490967, 72.201963 ], [ 150.347900, 71.608283 ], [ 152.962646, 70.844673 ], [ 157.005615, 71.034820 ], [ 158.994141, 70.869891 ], [ 159.829102, 70.455184 ], [ 159.708252, 69.725722 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.645625 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.584396 ], [ 169.573975, 68.696505 ], [ 170.815430, 69.017480 ], [ 170.002441, 69.653267 ], [ 170.452881, 70.099269 ], [ 173.638916, 69.820681 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 66.160511 ], [ 134.121094, 66.160511 ], [ 134.121094, 71.430678 ], [ 135.000000, 71.570115 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.490063 ], [ 139.141846, 72.418950 ], [ 140.460205, 72.851742 ] ] ], [ [ [ 180.000000, 71.517945 ], [ 180.000000, 70.833855 ], [ 178.901367, 70.783294 ], [ 178.714600, 71.098984 ], [ 180.000000, 71.517945 ] ] ], [ [ [ 142.053223, 73.858452 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.207666 ], [ 140.031738, 73.318400 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.766569 ], [ 142.053223, 73.858452 ] ] ], [ [ [ 138.823242, 76.137695 ], [ 141.470947, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.847801 ], [ 138.955078, 74.613445 ], [ 136.966553, 75.264239 ], [ 137.504883, 75.949568 ], [ 138.823242, 76.137695 ] ] ], [ [ [ 146.348877, 75.497157 ], [ 148.216553, 75.347841 ], [ 150.721436, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.174549 ], [ 146.348877, 75.497157 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -162.575684, -85.051129 ], [ -162.301025, -85.088894 ], [ -180.000000, -85.088894 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -159.461060, -79.088462 ], [ -159.411621, -79.171335 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -162.630615, -79.171335 ], [ -162.767944, -79.088462 ], [ -159.461060, -79.088462 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "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": [ [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.411621, -79.171335 ], [ -159.362183, -79.253586 ], [ -162.487793, -79.253586 ], [ -162.630615, -79.171335 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -157.500000, -77.118032 ], [ -157.060547, -77.270224 ], [ -157.060547, -78.429011 ], [ -157.269287, -78.378217 ], [ -157.500000, -78.274853 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Fiji", "sov_a3": "FJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Fiji", "adm0_a3": "FJI", "geou_dif": 0, "geounit": "Fiji", "gu_a3": "FJI", "su_dif": 0, "subunit": "Fiji", "su_a3": "FJI", "brk_diff": 0, "name": "Fiji", "name_long": "Fiji", "brk_a3": "FJI", "brk_name": "Fiji", "abbrev": "Fiji", "postal": "FJ", "formal_en": "Republic of Fiji", "name_sort": "Fiji", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 944720, "gdp_md_est": 3579, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "FJ", "iso_a3": "FJI", "iso_n3": "242", "un_a3": "242", "wb_a2": "FJ", "wb_a3": "FJI", "woe_id": -99, "adm0_a3_is": "FJI", "adm0_a3_us": "FJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -179.796753, -16.019416 ], [ -179.917603, -16.499299 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.066929 ], [ -179.796753, -16.019416 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.252808, 21.222821 ], [ -157.060547, 21.207459 ], [ -157.060547, 21.084500 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -158.131714, 21.314964 ], [ -158.258057, 21.539957 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.395142, 21.943046 ], [ -159.466553, 21.886987 ], [ -159.576416, 21.943046 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ], [ -157.840576, 21.534847 ], [ -158.252563, 21.534847 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.395142, 21.943046 ], [ -159.466553, 21.886987 ], [ -159.576416, 21.943046 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -158.417358, 56.022948 ], [ -158.433838, 55.995309 ], [ -159.032593, 55.776573 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.240601, 55.024873 ], [ -163.070068, 54.692884 ], [ -164.789429, 54.406143 ], [ -164.943237, 54.575246 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.351012 ], [ -162.037354, 55.776573 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.548706, 56.022948 ], [ -158.417358, 56.022948 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.060547, 58.915992 ], [ -157.500000, 58.799516 ], [ -158.197632, 58.616917 ], [ -158.521729, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.674082 ], [ -162.059326, 59.268688 ], [ -161.878052, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.822632, 59.800634 ], [ -164.663086, 60.269791 ], [ -165.349731, 60.508639 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.756714, 63.221255 ], [ -163.070068, 63.059937 ], [ -162.262573, 63.543658 ], [ -161.537476, 63.457874 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.223104 ], [ -161.520996, 64.404058 ], [ -160.779419, 64.790508 ], [ -161.394653, 64.778807 ], [ -162.454834, 64.560241 ], [ -162.762451, 64.339908 ], [ -163.547974, 64.560241 ], [ -164.965210, 64.449111 ], [ -166.426392, 64.687365 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.767456, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.674316, 66.513260 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.118292 ], [ -162.196655, 66.513260 ], [ -162.427368, 66.687784 ], [ -157.060547, 66.687784 ], [ -157.060547, 58.915992 ] ] ], [ [ [ -166.470337, 60.386720 ], [ -165.679321, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.195679, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.459106, 60.215262 ], [ -166.470337, 60.386720 ] ] ], [ [ [ -171.732788, 63.784913 ], [ -171.117554, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.433317 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.293579, 63.196496 ], [ -170.672607, 63.376756 ], [ -171.557007, 63.320083 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.784913 ] ] ], [ [ [ -157.060547, 58.898971 ], [ -157.060547, 56.815914 ], [ -157.500000, 56.671320 ], [ -158.120728, 56.465525 ], [ -158.433838, 55.995309 ], [ -159.032593, 55.776573 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -160.680542, 55.528631 ], [ -162.520752, 55.528631 ], [ -162.037354, 55.776573 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.219608 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.500000, 58.387318 ], [ -157.060547, 58.898971 ] ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ -171.381226, 66.687784 ], [ -171.013184, 66.513260 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 66.687784 ], [ -175.001221, 66.687784 ], [ -175.017700, 66.585400 ], [ -174.825439, 66.513260 ], [ -174.342041, 66.337505 ], [ -174.451904, 66.687784 ], [ -171.381226, 66.687784 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.657837, 66.576667 ], [ -163.674316, 66.513260 ], [ -163.718262, 66.337505 ], [ -165.574951, 66.337505 ], [ -164.767456, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ] ] ], [ [ [ -157.060547, 66.337505 ], [ -161.965942, 66.337505 ], [ -162.196655, 66.513260 ], [ -162.493286, 66.737732 ], [ -163.723755, 67.116613 ], [ -164.432373, 67.617589 ], [ -165.393677, 68.044569 ], [ -166.766968, 68.360725 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.916934 ], [ -163.168945, 69.372573 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.043579, 70.893280 ], [ -158.120728, 70.824836 ], [ -157.500000, 71.041960 ], [ -157.060547, 71.194838 ], [ -157.060547, 66.337505 ] ] ] ] } } +, +{ "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": [ [ [ [ -174.342041, 66.337505 ], [ -180.000000, 66.337505 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.825439, 66.513260 ], [ -174.342041, 66.337505 ] ] ], [ [ [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ] ] ], [ [ [ -174.342041, 66.337505 ], [ -174.396973, 66.513260 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -171.013184, 66.513260 ], [ -170.645142, 66.337505 ], [ -174.342041, 66.337505 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -134.560547, -82.620052 ], [ -134.560547, -85.088894 ], [ -143.585815, -85.088894 ], [ -143.212280, -85.051129 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.885742, -82.676285 ], [ -152.830811, -82.620052 ], [ -134.560547, -82.620052 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "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": "Polygon", "coordinates": [ [ [ -134.560547, -79.088462 ], [ -134.560547, -82.732092 ], [ -152.946167, -82.732092 ], [ -152.885742, -82.676285 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.275757, -79.171335 ], [ -153.391113, -79.162043 ], [ -154.852295, -79.088462 ], [ -134.560547, -79.088462 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "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": "Polygon", "coordinates": [ [ [ -135.219727, -74.301409 ], [ -134.560547, -74.350383 ], [ -134.560547, -79.253586 ], [ -152.193604, -79.253586 ], [ -153.275757, -79.171335 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -157.500000, -78.274853 ], [ -157.939453, -78.076752 ], [ -157.939453, -76.973960 ], [ -157.879028, -76.986335 ], [ -157.500000, -77.118032 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.066528, 19.859727 ], [ -154.808350, 19.513198 ], [ -154.835815, 19.456234 ], [ -155.225830, 19.243736 ], [ -155.544434, 19.088076 ], [ -155.692749, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.912476, 19.342245 ], [ -156.077271, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.978511 ], [ -155.923462, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.615601, 21.012727 ], [ -156.258545, 20.920397 ], [ -156.000366, 20.766387 ], [ -156.082764, 20.648206 ], [ -156.417847, 20.576225 ], [ -156.588135, 20.786931 ], [ -156.703491, 20.869078 ], [ -156.714478, 20.930659 ], [ -156.615601, 21.012727 ] ] ], [ [ [ -157.252808, 21.222821 ], [ -156.758423, 21.181851 ], [ -156.791382, 21.069123 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ] ] ], [ [ [ -157.939453, 21.652323 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -157.939453, 21.294493 ], [ -157.939453, 21.652323 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -157.939453, 21.652323 ], [ -157.840576, 21.534847 ], [ -157.939453, 21.534847 ], [ -157.939453, 21.652323 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -134.560547, 66.687784 ], [ -134.560547, 59.037729 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.324783 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.993042, 66.513260 ], [ -140.993042, 66.687784 ], [ -134.560547, 66.687784 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -140.993042, 66.687784 ], [ -140.993042, 66.513260 ], [ -140.998535, 60.307906 ], [ -140.015259, 60.277962 ], [ -139.042969, 60.001733 ], [ -138.345337, 59.562158 ], [ -137.455444, 58.907483 ], [ -136.483154, 59.464617 ], [ -135.477905, 59.789580 ], [ -135.000000, 59.324783 ], [ -134.945068, 59.271495 ], [ -134.560547, 59.037729 ], [ -134.560547, 58.156214 ], [ -135.000000, 58.185185 ], [ -136.631470, 58.214132 ], [ -137.801514, 58.502305 ], [ -139.872437, 59.539888 ], [ -140.828247, 59.728716 ], [ -142.575073, 60.086763 ], [ -143.959351, 60.001733 ], [ -145.925903, 60.459926 ], [ -147.117920, 60.885027 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.979754 ], [ -148.573608, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.369593 ], [ -151.721191, 59.156220 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.729630 ], [ -152.583618, 60.062099 ], [ -154.022827, 59.352796 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.308228, 57.730552 ], [ -156.313477, 57.424252 ], [ -156.560669, 56.980911 ], [ -157.500000, 56.671320 ], [ -157.939453, 56.523140 ], [ -157.939453, 57.468589 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.500000, 58.387318 ], [ -157.044067, 58.921664 ], [ -157.500000, 58.799516 ], [ -157.939453, 58.685504 ], [ -157.939453, 66.687784 ], [ -140.993042, 66.687784 ] ] ], [ [ [ -153.231812, 57.970244 ], [ -152.567139, 57.903174 ], [ -152.144165, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.737662 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.462681 ], [ -153.764648, 57.818429 ], [ -153.231812, 57.970244 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -135.000000, 69.478746 ], [ -134.560547, 69.590144 ], [ -134.560547, 66.337505 ], [ -140.993042, 66.337505 ], [ -140.993042, 66.513260 ], [ -140.987549, 69.712393 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -156.582642, 71.358822 ], [ -155.072021, 71.148745 ], [ -154.346924, 70.698136 ], [ -153.901978, 70.891482 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.431280 ], [ -149.721680, 70.530391 ], [ -147.617798, 70.214875 ], [ -145.695190, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.993042, 66.513260 ], [ -140.993042, 66.337505 ], [ -157.939453, 66.337505 ], [ -157.939453, 70.889683 ], [ -157.500000, 71.041960 ], [ -156.582642, 71.358822 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -112.060547, -82.620052 ], [ -112.060547, -85.088894 ], [ -135.439453, -85.088894 ], [ -135.439453, -82.620052 ], [ -112.060547, -82.620052 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -112.060547, -79.088462 ], [ -112.060547, -82.732092 ], [ -135.439453, -82.732092 ], [ -135.439453, -79.088462 ], [ -112.060547, -79.088462 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ -113.571167, -73.898111 ], [ -113.318481, -74.019543 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.500000, -74.610530 ], [ -112.302246, -74.713693 ], [ -112.060547, -74.646932 ], [ -112.060547, -79.253586 ], [ -135.439453, -79.253586 ], [ -135.439453, -74.341490 ], [ -135.219727, -74.301409 ], [ -135.000000, -74.317750 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -114.878540, -74.019543 ], [ -114.505005, -73.898111 ], [ -113.571167, -73.898111 ] ] ], [ [ [ -119.531250, -73.898111 ], [ -119.976196, -74.019543 ], [ -120.234375, -74.087457 ], [ -121.464844, -74.019543 ], [ -121.624146, -74.010467 ], [ -121.948242, -73.898111 ], [ -119.531250, -73.898111 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "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": [ [ [ [ -117.471313, -74.027103 ], [ -116.823120, -74.140084 ], [ -118.339233, -74.140084 ], [ -117.471313, -74.027103 ] ] ], [ [ [ -113.318481, -74.019543 ], [ -113.302002, -74.027103 ], [ -113.192139, -74.140084 ], [ -115.515747, -74.140084 ], [ -115.026855, -74.066358 ], [ -114.878540, -74.019543 ], [ -113.944702, -73.714276 ], [ -113.318481, -74.019543 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -119.976196, -74.019543 ], [ -120.234375, -74.087457 ], [ -121.464844, -74.019543 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, 41.310824 ], [ -112.060547, 31.658057 ], [ -112.500000, 31.793555 ], [ -113.307495, 32.040677 ], [ -114.818115, 32.528289 ], [ -114.724731, 32.722599 ], [ -115.993652, 32.616243 ], [ -117.130737, 32.537552 ], [ -117.301025, 33.050112 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.086304, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.371704, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.160337 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.117272 ], [ -123.728027, 38.955137 ], [ -123.865356, 39.770548 ], [ -124.398193, 40.317232 ], [ -124.222412, 40.979898 ], [ -124.183960, 41.145570 ], [ -124.189453, 41.310824 ], [ -112.060547, 41.310824 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.724731, 32.722599 ], [ -114.818115, 32.528289 ], [ -113.307495, 32.040677 ], [ -112.500000, 31.793555 ], [ -112.060547, 31.658057 ], [ -112.060547, 28.782104 ], [ -112.230835, 28.955282 ], [ -112.274780, 29.267233 ], [ -112.500000, 29.587789 ], [ -112.813110, 30.021544 ], [ -113.164673, 30.789037 ], [ -113.153687, 31.175210 ], [ -113.873291, 31.569175 ], [ -114.208374, 31.527044 ], [ -114.779663, 31.802893 ], [ -114.938965, 31.395847 ], [ -114.774170, 30.916364 ], [ -114.675293, 30.164126 ], [ -114.334717, 29.754840 ], [ -113.593140, 29.065773 ], [ -113.428345, 28.830238 ], [ -113.274536, 28.758028 ], [ -113.142700, 28.415560 ], [ -112.966919, 28.425222 ], [ -112.763672, 27.780772 ], [ -112.500000, 27.561852 ], [ -112.461548, 27.527758 ], [ -112.247314, 27.176469 ], [ -112.060547, 27.024877 ], [ -112.060547, 24.681961 ], [ -112.186890, 24.741842 ], [ -112.153931, 25.473033 ], [ -112.302246, 26.012361 ], [ -112.500000, 26.145576 ], [ -113.466797, 26.770135 ], [ -113.598633, 26.642549 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.142257 ], [ -115.059814, 27.727298 ], [ -114.982910, 27.800210 ], [ -114.570923, 27.741885 ], [ -114.202881, 28.115594 ], [ -114.164429, 28.570050 ], [ -114.933472, 29.281608 ], [ -115.521240, 29.559123 ], [ -115.889282, 30.183122 ], [ -116.724243, 31.639352 ], [ -117.130737, 32.537552 ], [ -115.993652, 32.616243 ], [ -114.724731, 32.722599 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ] ] ], [ [ [ -112.060547, 56.022948 ], [ -112.060547, 49.001844 ], [ -112.500000, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.006714, 55.776573 ], [ -130.012207, 55.918430 ], [ -130.292358, 56.022948 ], [ -112.060547, 56.022948 ] ] ], [ [ [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -112.060547, 49.001844 ], [ -112.060547, 40.647304 ], [ -124.310303, 40.647304 ], [ -124.222412, 40.979898 ], [ -124.183960, 41.145570 ], [ -124.216919, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.145508, 43.711564 ], [ -123.903809, 45.525592 ], [ -124.085083, 46.867703 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.188063 ], [ -124.568481, 48.381794 ], [ -123.123779, 48.041365 ], [ -122.590942, 47.096305 ], [ -122.343750, 47.361153 ], [ -122.503052, 48.180739 ], [ -122.843628, 49.001844 ], [ -112.060547, 49.001844 ] ] ], [ [ [ -130.292358, 56.022948 ], [ -130.012207, 55.918430 ], [ -130.006714, 55.776573 ], [ -129.984741, 55.285372 ], [ -130.539551, 54.803851 ], [ -131.088867, 55.182004 ], [ -131.967773, 55.500639 ], [ -132.061157, 55.776573 ], [ -132.138062, 56.022948 ], [ -130.292358, 56.022948 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "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": "Polygon", "coordinates": [ [ [ -112.060547, 66.687784 ], [ -112.060547, 55.528631 ], [ -129.995728, 55.528631 ], [ -130.006714, 55.776573 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.324783 ], [ -135.439453, 59.753628 ], [ -135.439453, 66.687784 ], [ -112.060547, 66.687784 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -135.439453, 59.753628 ], [ -135.000000, 59.324783 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.695341 ], [ -131.709595, 56.553428 ], [ -130.012207, 55.918430 ], [ -130.006714, 55.776573 ], [ -129.995728, 55.528631 ], [ -131.978760, 55.528631 ], [ -132.061157, 55.776573 ], [ -132.253418, 56.371335 ], [ -133.544312, 57.180925 ], [ -134.082642, 58.124320 ], [ -135.000000, 58.185185 ], [ -135.038452, 58.188080 ], [ -135.439453, 58.196766 ], [ -135.439453, 59.753628 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -112.500000, 67.732354 ], [ -112.060547, 67.751080 ], [ -112.060547, 66.337505 ], [ -135.439453, 66.337505 ], [ -135.439453, 69.364831 ], [ -135.000000, 69.478746 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ] ] ], [ [ [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.500000, 72.948653 ], [ -112.445068, 72.956705 ], [ -112.060547, 72.819319 ], [ -112.060547, 68.602509 ], [ -112.500000, 68.580453 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.500000, 70.355706 ], [ -112.417603, 70.366783 ], [ -112.500000, 70.377854 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ] ] ], [ [ [ -117.405396, 74.140084 ], [ -116.998901, 74.019543 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.480591, 74.019543 ], [ -124.672852, 74.140084 ], [ -117.405396, 74.140084 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.998901, 74.019543 ], [ -116.592407, 73.898111 ], [ -124.288330, 73.898111 ], [ -124.480591, 74.019543 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ] ] ], [ [ [ -112.060547, 75.156266 ], [ -112.500000, 75.145003 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -112.500000, 76.112667 ], [ -112.060547, 75.968226 ], [ -112.060547, 75.156266 ] ] ], [ [ [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ] ] ], [ [ [ -112.060547, 78.098296 ], [ -112.060547, 77.412270 ], [ -112.500000, 77.508873 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -112.500000, 78.067669 ], [ -112.060547, 78.098296 ] ] ], [ [ [ -112.060547, 78.688336 ], [ -112.060547, 78.408058 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -112.500000, 78.558309 ], [ -112.060547, 78.688336 ] ] ], [ [ [ -112.060547, 75.106932 ], [ -112.060547, 74.446412 ], [ -112.225342, 74.418402 ], [ -112.500000, 74.413974 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -112.500000, 75.014886 ], [ -112.060547, 75.106932 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -89.560547, -82.620052 ], [ -89.560547, -85.088894 ], [ -112.939453, -85.088894 ], [ -112.939453, -82.620052 ], [ -89.560547, -82.620052 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -89.560547, -79.088462 ], [ -89.560547, -82.732092 ], [ -112.939453, -82.732092 ], [ -112.939453, -79.088462 ], [ -89.560547, -79.088462 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -89.560547, -73.898111 ], [ -89.560547, -79.253586 ], [ -112.939453, -79.253586 ], [ -112.939453, -74.382950 ], [ -112.500000, -74.610530 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -102.683716, -74.019543 ], [ -102.870483, -73.898111 ], [ -89.560547, -73.898111 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -90.000000, -73.245712 ], [ -89.560547, -72.858219 ], [ -89.560547, -74.140084 ], [ -101.997070, -74.140084 ], [ -102.546387, -74.105519 ], [ -102.683716, -74.019543 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.844238, 22.350076 ], [ -97.717896, 21.943046 ], [ -97.701416, 21.902278 ], [ -97.393799, 21.412162 ], [ -97.190552, 20.637925 ], [ -96.525879, 19.895888 ], [ -96.295166, 19.321511 ], [ -95.905151, 18.828316 ], [ -94.839478, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.554077, 18.427502 ], [ -92.790527, 18.526492 ], [ -92.037964, 18.708692 ], [ -91.411743, 18.880300 ], [ -90.774536, 19.285221 ], [ -90.538330, 19.870060 ], [ -90.455933, 20.709877 ], [ -90.280151, 21.002471 ], [ -90.000000, 21.110125 ], [ -89.604492, 21.263781 ], [ -89.560547, 21.274019 ], [ -89.560547, 17.816686 ], [ -90.000000, 17.821916 ], [ -91.005249, 17.821916 ], [ -91.005249, 17.256236 ], [ -91.455688, 17.256236 ], [ -91.082153, 16.920195 ], [ -90.714111, 16.688817 ], [ -90.604248, 16.472963 ], [ -90.439453, 16.415009 ], [ -90.466919, 16.072207 ], [ -91.752319, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.066819 ], [ -92.208252, 14.833302 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.617747 ], [ -93.878174, 15.940202 ], [ -94.696655, 16.204125 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.755249 ], [ -96.558838, 15.654776 ], [ -97.267456, 15.919074 ], [ -98.014526, 16.109153 ], [ -98.948364, 16.567758 ], [ -99.700928, 16.709863 ], [ -100.832520, 17.172283 ], [ -101.667480, 17.649257 ], [ -101.920166, 17.921249 ], [ -102.480469, 17.978733 ], [ -103.502197, 18.297165 ], [ -103.919678, 18.750310 ], [ -104.996338, 19.316327 ], [ -105.496216, 19.947533 ], [ -105.732422, 20.437308 ], [ -105.402832, 20.535077 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.079375 ], [ -105.270996, 21.422390 ], [ -105.606079, 21.871695 ], [ -105.622559, 21.943046 ], [ -105.693970, 22.273847 ], [ -105.748901, 22.350076 ], [ -97.844238, 22.350076 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guatemala", "sov_a3": "GTM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guatemala", "adm0_a3": "GTM", "geou_dif": 0, "geounit": "Guatemala", "gu_a3": "GTM", "su_dif": 0, "subunit": "Guatemala", "su_a3": "GTM", "brk_diff": 0, "name": "Guatemala", "name_long": "Guatemala", "brk_a3": "GTM", "brk_name": "Guatemala", "abbrev": "Guat.", "postal": "GT", "formal_en": "Republic of Guatemala", "name_sort": "Guatemala", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 13276517, "gdp_md_est": 68580, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GT", "iso_a3": "GTM", "iso_n3": "320", "un_a3": "320", "wb_a2": "GT", "wb_a3": "GTM", "woe_id": -99, "adm0_a3_is": "GTM", "adm0_a3_us": "GTM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.821916 ], [ -89.560547, 17.816686 ], [ -89.560547, 14.370834 ], [ -89.588013, 14.365513 ], [ -89.560547, 14.306969 ], [ -89.560547, 14.232438 ], [ -89.725342, 14.136576 ], [ -90.000000, 13.934067 ], [ -90.065918, 13.886079 ], [ -90.098877, 13.736717 ], [ -90.609741, 13.912740 ], [ -91.235962, 13.928736 ], [ -91.691895, 14.131249 ], [ -92.230225, 14.541050 ], [ -92.208252, 14.833302 ], [ -92.087402, 15.066819 ], [ -92.230225, 15.252389 ], [ -91.752319, 16.066929 ], [ -90.466919, 16.072207 ], [ -90.439453, 16.415009 ], [ -90.604248, 16.472963 ], [ -90.714111, 16.688817 ], [ -91.082153, 16.920195 ], [ -91.455688, 17.256236 ], [ -91.005249, 17.256236 ], [ -91.005249, 17.821916 ], [ -90.000000, 17.821916 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "El Salvador", "sov_a3": "SLV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "El Salvador", "adm0_a3": "SLV", "geou_dif": 0, "geounit": "El Salvador", "gu_a3": "SLV", "su_dif": 0, "subunit": "El Salvador", "su_a3": "SLV", "brk_diff": 0, "name": "El Salvador", "name_long": "El Salvador", "brk_a3": "SLV", "brk_name": "El Salvador", "abbrev": "El. S.", "postal": "SV", "formal_en": "Republic of El Salvador", "name_sort": "El Salvador", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 8, "pop_est": 7185218, "gdp_md_est": 43630, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SV", "iso_a3": "SLV", "iso_n3": "222", "un_a3": "222", "wb_a2": "SV", "wb_a3": "SLV", "woe_id": -99, "adm0_a3_is": "SLV", "adm0_a3_us": "SLV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 11, "long_len": 11, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.560547, 14.232438 ], [ -89.560547, 13.496473 ], [ -89.813232, 13.523179 ], [ -90.000000, 13.667338 ], [ -90.098877, 13.736717 ], [ -90.065918, 13.886079 ], [ -90.000000, 13.934067 ], [ -89.725342, 14.136576 ], [ -89.560547, 14.232438 ] ] ], [ [ [ -89.560547, 14.306969 ], [ -89.588013, 14.365513 ], [ -89.560547, 14.370834 ], [ -89.560547, 14.306969 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, 41.310824 ], [ -89.560547, 30.173625 ], [ -89.598999, 30.164126 ], [ -89.560547, 30.111870 ], [ -89.560547, 29.224096 ], [ -89.780273, 29.310351 ], [ -90.000000, 29.200123 ], [ -90.159302, 29.118574 ], [ -90.884399, 29.152161 ], [ -91.631470, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.229980, 29.788217 ], [ -93.850708, 29.716681 ], [ -94.691162, 29.482643 ], [ -95.603027, 28.738764 ], [ -96.597290, 28.309217 ], [ -97.141113, 27.834219 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.691637 ], [ -97.333374, 26.214591 ], [ -97.141113, 25.874052 ], [ -97.531128, 25.844393 ], [ -98.245239, 26.061718 ], [ -99.025269, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.542371 ], [ -100.112915, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.958862, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.112183, 28.974507 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.242798, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.027832, 31.334871 ], [ -112.500000, 31.793555 ], [ -112.939453, 31.928855 ], [ -112.939453, 41.310824 ], [ -89.560547, 41.310824 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -112.939453, 30.306503 ], [ -112.939453, 31.928855 ], [ -112.500000, 31.793555 ], [ -111.027832, 31.334871 ], [ -108.242798, 31.344254 ], [ -108.242798, 31.756196 ], [ -106.512451, 31.756196 ], [ -106.144409, 31.400535 ], [ -105.633545, 31.085870 ], [ -105.040283, 30.647364 ], [ -104.710693, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.272025 ], [ -103.112183, 28.974507 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.958862, 29.382175 ], [ -100.458984, 28.700225 ], [ -100.112915, 28.110749 ], [ -99.525146, 27.542371 ], [ -99.305420, 26.843677 ], [ -99.025269, 26.372185 ], [ -98.245239, 26.061718 ], [ -97.531128, 25.844393 ], [ -97.141113, 25.874052 ], [ -97.531128, 24.996016 ], [ -97.706909, 24.277012 ], [ -97.778320, 22.933101 ], [ -97.877197, 22.446572 ], [ -97.717896, 21.943046 ], [ -97.701416, 21.902278 ], [ -97.470703, 21.534847 ], [ -105.353394, 21.534847 ], [ -105.606079, 21.871695 ], [ -105.622559, 21.943046 ], [ -105.693970, 22.273847 ], [ -106.029053, 22.776182 ], [ -106.913452, 23.770264 ], [ -107.918701, 24.552120 ], [ -108.402100, 25.175117 ], [ -109.264526, 25.582085 ], [ -109.445801, 25.829561 ], [ -109.291992, 26.445984 ], [ -109.802856, 26.676913 ], [ -110.396118, 27.166695 ], [ -110.643311, 27.863360 ], [ -111.181641, 27.945886 ], [ -111.763916, 28.468691 ], [ -112.230835, 28.955282 ], [ -112.274780, 29.267233 ], [ -112.500000, 29.587789 ], [ -112.813110, 30.021544 ], [ -112.939453, 30.306503 ] ] ], [ [ [ -112.939453, 28.352734 ], [ -112.763672, 27.780772 ], [ -112.500000, 27.561852 ], [ -112.461548, 27.527758 ], [ -112.247314, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.286011, 25.735581 ], [ -110.989380, 25.299338 ], [ -110.714722, 24.826625 ], [ -110.659790, 24.302047 ], [ -110.176392, 24.266997 ], [ -109.775391, 23.815501 ], [ -109.412842, 23.367471 ], [ -109.434814, 23.185813 ], [ -109.857788, 22.821757 ], [ -110.033569, 22.826820 ], [ -110.297241, 23.433009 ], [ -110.950928, 24.001308 ], [ -111.676025, 24.487149 ], [ -112.186890, 24.741842 ], [ -112.153931, 25.473033 ], [ -112.302246, 26.012361 ], [ -112.500000, 26.145576 ], [ -112.939453, 26.431228 ], [ -112.939453, 28.352734 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -89.560547, 56.022948 ], [ -89.560547, 48.011975 ], [ -89.604492, 48.011975 ], [ -90.000000, 48.096426 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -112.939453, 49.001844 ], [ -112.939453, 56.022948 ], [ -89.560547, 56.022948 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.822998, 49.389524 ], [ -94.641724, 48.843028 ], [ -94.334106, 48.672826 ], [ -93.630981, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.834961, 48.272225 ], [ -90.000000, 48.096426 ], [ -89.604492, 48.011975 ], [ -89.560547, 48.011975 ], [ -89.560547, 40.647304 ], [ -112.939453, 40.647304 ], [ -112.939453, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.158081, 49.385949 ], [ -94.822998, 49.389524 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -89.560547, 66.687784 ], [ -89.560547, 64.050575 ], [ -89.917603, 64.033744 ], [ -90.000000, 63.988009 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -90.000000, 57.076575 ], [ -89.560547, 56.974924 ], [ -89.560547, 55.528631 ], [ -112.939453, 55.528631 ], [ -112.939453, 66.687784 ], [ -89.560547, 66.687784 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "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": [ [ [ [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -90.000000, 68.802028 ], [ -89.560547, 69.060712 ], [ -89.560547, 66.337505 ], [ -112.939453, 66.337505 ], [ -112.939453, 67.713612 ], [ -112.500000, 67.732354 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ] ] ], [ [ [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -112.500000, 68.580453 ], [ -112.939453, 68.556368 ], [ -112.939453, 70.298378 ], [ -112.500000, 70.355706 ], [ -112.417603, 70.366783 ], [ -112.500000, 70.377854 ], [ -112.939453, 70.431280 ], [ -112.939453, 72.888954 ], [ -112.500000, 72.948653 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ] ] ], [ [ [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ] ] ], [ [ [ -89.560547, 72.988876 ], [ -89.560547, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.587473 ], [ -90.208740, 72.235514 ], [ -90.000000, 72.478584 ], [ -89.560547, 72.988876 ] ] ], [ [ [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ] ] ], [ [ [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ], [ -91.785278, 74.019543 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.927368, 74.019543 ], [ -94.504395, 74.135580 ] ] ], [ [ [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ], [ -91.785278, 74.019543 ], [ -90.834961, 73.898111 ], [ -95.366821, 73.898111 ], [ -94.504395, 74.135580 ] ] ], [ [ [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -112.500000, 74.413974 ], [ -112.939453, 74.406593 ], [ -112.939453, 74.920855 ], [ -112.500000, 75.014886 ], [ -111.796875, 75.163300 ], [ -112.500000, 75.145003 ], [ -112.939453, 75.133733 ], [ -112.939453, 76.183684 ], [ -112.593384, 76.141643 ], [ -112.500000, 76.112667 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ] ] ], [ [ [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -90.000000, 75.884072 ], [ -89.824219, 75.847855 ], [ -89.560547, 75.750830 ], [ -89.560547, 74.500817 ], [ -89.769287, 74.516956 ], [ -90.000000, 74.544794 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ] ] ], [ [ [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ] ] ], [ [ [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ] ] ], [ [ [ -89.560547, 76.959094 ], [ -89.560547, 76.742917 ], [ -89.620972, 76.952895 ], [ -89.560547, 76.959094 ] ] ], [ [ [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -112.500000, 77.508873 ], [ -112.939453, 77.604745 ], [ -112.939453, 77.967310 ], [ -112.725220, 78.051758 ], [ -112.500000, 78.067669 ], [ -111.269531, 78.153679 ] ] ], [ [ [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ] ] ], [ [ [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ] ] ], [ [ [ -104.798584, 79.253586 ], [ -103.617554, 79.171335 ], [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.468750, 79.171335 ], [ -105.485229, 79.253586 ], [ -104.798584, 79.253586 ] ] ], [ [ [ -89.560547, 79.253586 ], [ -89.560547, 78.267036 ], [ -90.000000, 78.249150 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.768311, 79.171335 ], [ -93.526611, 79.253586 ], [ -89.560547, 79.253586 ] ] ], [ [ [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.500000, 78.408058 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -112.500000, 78.558309 ], [ -111.500244, 78.850946 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -105.496216, 79.301620 ], [ -103.617554, 79.171335 ], [ -103.529663, 79.166173 ], [ -102.952881, 79.088462 ], [ -105.452271, 79.088462 ], [ -105.468750, 79.171335 ], [ -105.496216, 79.301620 ] ] ], [ [ [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ], [ -90.000000, 80.579842 ], [ -89.560547, 80.523935 ], [ -89.560547, 79.088462 ], [ -93.938599, 79.088462 ], [ -93.938599, 79.114427 ], [ -93.768311, 79.171335 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ] ] ], [ [ [ -89.560547, 82.100285 ], [ -89.560547, 80.951780 ], [ -90.000000, 81.165215 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -90.000000, 82.088196 ], [ -89.560547, 82.100285 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -67.060547, -82.620052 ], [ -67.060547, -85.088894 ], [ -90.439453, -85.088894 ], [ -90.439453, -82.620052 ], [ -67.060547, -82.620052 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -78.019409, -79.088462 ], [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -67.500000, -81.361287 ], [ -67.060547, -81.389295 ], [ -67.060547, -82.732092 ], [ -90.439453, -82.732092 ], [ -90.439453, -79.088462 ], [ -78.019409, -79.088462 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -67.060547, -73.898111 ], [ -67.060547, -75.775147 ], [ -67.197876, -75.791336 ], [ -67.500000, -75.843825 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -77.777710, -79.253586 ], [ -90.439453, -79.253586 ], [ -90.439453, -73.898111 ], [ -76.371460, -73.898111 ], [ -76.223145, -73.968044 ], [ -75.250854, -73.898111 ], [ -67.060547, -73.898111 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "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": [ [ [ [ -67.060547, -66.772419 ], [ -67.060547, -74.140084 ], [ -90.439453, -74.140084 ], [ -90.439453, -73.342036 ], [ -90.093384, -73.321553 ], [ -90.000000, -73.245712 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.500000, -72.549557 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.500000, -71.327192 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.500000, -68.330320 ], [ -67.428589, -68.149077 ], [ -67.500000, -67.991108 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.500000, -67.103793 ], [ -67.252808, -66.874030 ], [ -67.060547, -66.772419 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.922974, -55.528631 ], [ -68.153687, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.016113, -55.528631 ], [ -67.922974, -55.528631 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.516221 ], [ -68.637085, -52.633063 ], [ -68.637085, -54.867124 ], [ -67.500000, -54.870285 ], [ -67.060547, -54.889246 ], [ -67.060547, -55.018575 ], [ -67.291260, -55.301011 ], [ -67.500000, -55.375989 ], [ -68.153687, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.497527 ], [ -69.960938, -55.197683 ], [ -71.010132, -55.053203 ], [ -72.268066, -54.492377 ], [ -73.289795, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.044516 ], [ -72.438354, -53.712965 ], [ -71.109009, -54.072283 ], [ -70.592651, -53.615321 ], [ -70.268555, -52.928775 ], [ -69.345703, -52.516221 ] ] ], [ [ [ -71.878052, -40.647304 ], [ -71.916504, -40.830437 ], [ -71.900024, -40.979898 ], [ -71.751709, -42.049293 ], [ -72.152710, -42.252918 ], [ -71.916504, -43.405047 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.334229, -44.406316 ], [ -71.224365, -44.781835 ], [ -71.663818, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.921997, -46.882723 ], [ -72.449341, -47.735629 ], [ -72.333984, -48.242967 ], [ -72.652588, -48.875554 ], [ -73.416138, -49.317961 ], [ -73.328247, -50.376999 ], [ -72.976685, -50.739932 ], [ -72.312012, -50.673835 ], [ -72.333984, -51.423189 ], [ -71.916504, -52.008555 ], [ -69.499512, -52.140231 ], [ -68.576660, -52.298402 ], [ -69.466553, -52.291683 ], [ -69.944458, -52.536273 ], [ -70.845337, -52.898962 ], [ -71.010132, -53.833081 ], [ -71.433105, -53.855767 ], [ -72.559204, -53.530513 ], [ -73.707275, -52.832640 ], [ -74.948730, -52.261434 ], [ -75.261841, -51.628248 ], [ -74.981689, -51.041394 ], [ -75.481567, -50.376999 ], [ -75.613403, -48.672826 ], [ -75.184937, -47.709762 ], [ -74.130249, -46.939012 ], [ -75.646362, -46.645665 ], [ -74.696045, -45.763691 ], [ -74.355469, -44.099421 ], [ -73.240356, -44.453389 ], [ -72.718506, -42.382894 ], [ -73.394165, -42.114524 ], [ -73.701782, -43.365126 ], [ -74.333496, -43.221190 ], [ -74.020386, -41.791793 ], [ -73.872070, -40.979898 ], [ -73.806152, -40.647304 ], [ -71.878052, -40.647304 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.637085, -52.633063 ], [ -68.252563, -53.097323 ], [ -67.752686, -53.849286 ], [ -67.500000, -53.965781 ], [ -67.060547, -54.168866 ], [ -67.060547, -54.889246 ], [ -67.500000, -54.870285 ], [ -68.637085, -54.867124 ], [ -68.637085, -52.633063 ] ] ], [ [ [ -67.060547, -40.647304 ], [ -67.060547, -45.398450 ], [ -67.296753, -45.548679 ], [ -67.500000, -46.088472 ], [ -67.582397, -46.301406 ], [ -67.500000, -46.362093 ], [ -67.060547, -46.687131 ], [ -67.060547, -48.643798 ], [ -67.170410, -48.694586 ], [ -67.500000, -49.300054 ], [ -67.818604, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.142456, -50.729502 ], [ -68.818359, -51.767840 ], [ -68.153687, -52.348763 ], [ -68.576660, -52.298402 ], [ -69.499512, -52.140231 ], [ -71.916504, -52.008555 ], [ -72.333984, -51.423189 ], [ -72.312012, -50.673835 ], [ -72.976685, -50.739932 ], [ -73.328247, -50.376999 ], [ -73.416138, -49.317961 ], [ -72.652588, -48.875554 ], [ -72.333984, -48.242967 ], [ -72.449341, -47.735629 ], [ -71.921997, -46.882723 ], [ -71.553955, -45.560218 ], [ -71.663818, -44.972571 ], [ -71.224365, -44.781835 ], [ -71.334229, -44.406316 ], [ -71.795654, -44.205835 ], [ -71.466064, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.152710, -42.252918 ], [ -71.751709, -42.049293 ], [ -71.900024, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.878052, -40.647304 ], [ -67.060547, -40.647304 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.208618, -21.534847 ], [ -68.093262, -21.943046 ], [ -67.829590, -22.872379 ], [ -67.500000, -22.806567 ], [ -67.109985, -22.735657 ], [ -67.060547, -22.826820 ], [ -67.060547, -23.211058 ], [ -67.329712, -24.021379 ], [ -67.500000, -24.101633 ], [ -68.422852, -24.517139 ], [ -68.389893, -26.180089 ], [ -68.598633, -26.504989 ], [ -68.296509, -26.897578 ], [ -69.005127, -27.518015 ], [ -69.658813, -28.459033 ], [ -70.015869, -29.367814 ], [ -69.922485, -30.334954 ], [ -70.537720, -31.363018 ], [ -70.076294, -33.086939 ], [ -69.818115, -33.270843 ], [ -69.818115, -34.189086 ], [ -70.389404, -35.169318 ], [ -70.367432, -36.004673 ], [ -71.125488, -36.655200 ], [ -71.119995, -37.575059 ], [ -70.817871, -38.552461 ], [ -71.416626, -38.912407 ], [ -71.685791, -39.804316 ], [ -71.916504, -40.830437 ], [ -71.900024, -40.979898 ], [ -71.850586, -41.310824 ], [ -73.932495, -41.310824 ], [ -73.872070, -40.979898 ], [ -73.679810, -39.939225 ], [ -73.218384, -39.257778 ], [ -73.509521, -38.281313 ], [ -73.591919, -37.155939 ], [ -73.168945, -37.120906 ], [ -72.553711, -35.505400 ], [ -71.867065, -33.906896 ], [ -71.438599, -32.417066 ], [ -71.669312, -30.916364 ], [ -71.372681, -30.092861 ], [ -71.493530, -28.859108 ], [ -70.905762, -27.639740 ], [ -70.729980, -25.705888 ], [ -70.405884, -23.624395 ], [ -70.169678, -21.943046 ], [ -70.114746, -21.534847 ], [ -68.208618, -21.534847 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -21.534847 ], [ -67.060547, -22.684984 ], [ -67.109985, -22.735657 ], [ -67.500000, -22.806567 ], [ -67.829590, -22.872379 ], [ -68.093262, -21.943046 ], [ -68.208618, -21.534847 ], [ -67.060547, -21.534847 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, -23.211058 ], [ -67.060547, -41.310824 ], [ -71.850586, -41.310824 ], [ -71.900024, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.685791, -39.804316 ], [ -71.416626, -38.912407 ], [ -70.817871, -38.552461 ], [ -71.119995, -37.575059 ], [ -71.125488, -36.655200 ], [ -70.367432, -36.004673 ], [ -70.389404, -35.169318 ], [ -69.818115, -34.189086 ], [ -69.818115, -33.270843 ], [ -70.076294, -33.086939 ], [ -70.537720, -31.363018 ], [ -69.922485, -30.334954 ], [ -70.015869, -29.367814 ], [ -69.658813, -28.459033 ], [ -69.005127, -27.518015 ], [ -68.296509, -26.897578 ], [ -68.598633, -26.504989 ], [ -68.389893, -26.180089 ], [ -68.422852, -24.517139 ], [ -67.500000, -24.101633 ], [ -67.329712, -24.021379 ], [ -67.060547, -23.211058 ] ] ], [ [ [ -67.060547, -22.826820 ], [ -67.109985, -22.735657 ], [ -67.060547, -22.684984 ], [ -67.060547, -22.826820 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.021362, 0.439449 ], [ -70.021362, -0.181274 ], [ -69.581909, -0.549308 ], [ -69.422607, -1.120534 ], [ -69.444580, -1.554375 ], [ -69.895020, -4.297113 ], [ -70.394897, -3.765597 ], [ -70.697021, -3.738190 ], [ -70.048828, -2.723583 ], [ -70.817871, -2.251617 ], [ -71.416626, -2.339438 ], [ -71.779175, -2.169281 ], [ -72.328491, -2.432740 ], [ -73.075562, -2.306506 ], [ -73.663330, -1.257834 ], [ -74.124756, -0.999705 ], [ -74.443359, -0.527336 ], [ -75.108032, -0.054932 ], [ -75.377197, -0.148315 ], [ -75.651855, 0.000000 ], [ -75.805664, 0.087891 ], [ -76.294556, 0.417477 ], [ -76.580200, 0.258178 ], [ -77.426147, 0.400998 ], [ -77.453613, 0.439449 ], [ -70.021362, 0.439449 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.453613, 0.439449 ], [ -77.426147, 0.400998 ], [ -76.580200, 0.258178 ], [ -76.294556, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.651855, 0.000000 ], [ -75.377197, -0.148315 ], [ -75.234375, -0.906334 ], [ -75.547485, -1.559866 ], [ -76.640625, -2.608352 ], [ -77.838135, -2.997899 ], [ -78.453369, -3.869735 ], [ -78.640137, -4.543570 ], [ -79.205933, -4.954142 ], [ -79.628906, -4.450474 ], [ -80.029907, -4.340934 ], [ -80.447388, -4.423090 ], [ -80.469360, -4.056056 ], [ -80.189209, -3.820408 ], [ -80.304565, -3.403758 ], [ -79.771729, -2.652251 ], [ -79.991455, -2.218684 ], [ -80.370483, -2.679687 ], [ -80.969238, -2.246129 ], [ -80.765991, -1.960677 ], [ -80.936279, -1.054628 ], [ -80.584717, -0.906334 ], [ -80.403442, -0.280150 ], [ -80.233154, 0.000000 ], [ -80.024414, 0.362546 ], [ -80.035400, 0.439449 ], [ -77.453613, 0.439449 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Peru", "sov_a3": "PER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Peru", "adm0_a3": "PER", "geou_dif": 0, "geounit": "Peru", "gu_a3": "PER", "su_dif": 0, "subunit": "Peru", "su_a3": "PER", "brk_diff": 0, "name": "Peru", "name_long": "Peru", "brk_a3": "PER", "brk_name": "Peru", "abbrev": "Peru", "postal": "PE", "formal_en": "Republic of Peru", "name_sort": "Peru", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 11, "pop_est": 29546963, "gdp_md_est": 247300, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PE", "iso_a3": "PER", "iso_n3": "604", "un_a3": "604", "wb_a2": "PE", "wb_a3": "PER", "woe_id": -99, "adm0_a3_is": "PER", "adm0_a3_us": "PER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.108032, -0.054932 ], [ -74.443359, -0.527336 ], [ -74.124756, -0.999705 ], [ -73.663330, -1.257834 ], [ -73.075562, -2.306506 ], [ -72.328491, -2.432740 ], [ -71.779175, -2.169281 ], [ -71.416626, -2.339438 ], [ -70.817871, -2.251617 ], [ -70.048828, -2.723583 ], [ -70.697021, -3.738190 ], [ -70.394897, -3.765597 ], [ -69.895020, -4.297113 ], [ -70.795898, -4.247812 ], [ -70.933228, -4.401183 ], [ -71.751709, -4.592852 ], [ -72.894287, -5.271478 ], [ -72.965698, -5.736243 ], [ -73.223877, -6.085936 ], [ -73.125000, -6.626414 ], [ -73.729248, -6.915521 ], [ -73.723755, -7.340675 ], [ -73.987427, -7.520427 ], [ -73.575439, -8.423470 ], [ -73.020630, -9.031578 ], [ -73.229370, -9.459899 ], [ -72.564697, -9.519497 ], [ -72.185669, -10.049994 ], [ -71.306763, -10.077037 ], [ -70.482788, -9.486990 ], [ -70.548706, -11.005904 ], [ -70.098267, -11.119117 ], [ -69.532471, -10.946585 ], [ -68.670044, -12.559925 ], [ -68.884277, -12.897489 ], [ -68.933716, -13.597939 ], [ -68.950195, -14.450639 ], [ -69.340210, -14.950092 ], [ -69.164429, -15.321274 ], [ -69.395142, -15.660065 ], [ -68.961182, -16.499299 ], [ -69.592896, -17.575957 ], [ -69.862061, -18.088423 ], [ -70.372925, -18.344098 ], [ -71.378174, -17.769612 ], [ -71.466064, -17.361125 ], [ -73.449097, -16.357039 ], [ -75.239868, -15.262989 ], [ -76.014404, -14.647368 ], [ -76.426392, -13.822078 ], [ -76.261597, -13.533860 ], [ -77.107544, -12.221918 ], [ -78.096313, -10.374362 ], [ -79.041138, -8.385431 ], [ -79.447632, -7.928675 ], [ -79.760742, -7.193551 ], [ -80.540771, -6.539103 ], [ -81.254883, -6.135093 ], [ -80.930786, -5.687050 ], [ -81.414185, -4.735201 ], [ -81.101074, -4.034138 ], [ -80.304565, -3.403758 ], [ -80.189209, -3.820408 ], [ -80.469360, -4.056056 ], [ -80.447388, -4.423090 ], [ -80.029907, -4.340934 ], [ -79.628906, -4.450474 ], [ -79.205933, -4.954142 ], [ -78.640137, -4.543570 ], [ -78.453369, -3.869735 ], [ -77.838135, -2.997899 ], [ -76.640625, -2.608352 ], [ -75.547485, -1.559866 ], [ -75.234375, -0.906334 ], [ -75.377197, -0.148315 ], [ -75.108032, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.592896, -17.575957 ], [ -69.104004, -18.255437 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.404430 ], [ -68.757935, -20.370377 ], [ -68.225098, -21.493964 ], [ -68.093262, -21.943046 ], [ -67.977905, -22.350076 ], [ -70.224609, -22.350076 ], [ -70.169678, -21.943046 ], [ -70.092773, -21.391705 ], [ -70.169678, -19.756364 ], [ -70.372925, -18.344098 ], [ -69.862061, -18.088423 ], [ -69.592896, -17.575957 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -10.223031 ], [ -67.060547, -22.350076 ], [ -67.977905, -22.350076 ], [ -68.093262, -21.943046 ], [ -68.225098, -21.493964 ], [ -68.757935, -20.370377 ], [ -68.444824, -19.404430 ], [ -68.972168, -18.979026 ], [ -69.104004, -18.255437 ], [ -69.592896, -17.575957 ], [ -68.961182, -16.499299 ], [ -69.395142, -15.660065 ], [ -69.164429, -15.321274 ], [ -69.340210, -14.950092 ], [ -68.950195, -14.450639 ], [ -68.933716, -13.597939 ], [ -68.884277, -12.897489 ], [ -68.670044, -12.559925 ], [ -69.532471, -10.946585 ], [ -68.790894, -11.032864 ], [ -68.274536, -11.011297 ], [ -68.049316, -10.709189 ], [ -67.500000, -10.455402 ], [ -67.175903, -10.304110 ], [ -67.060547, -10.223031 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ -67.060547, 0.439449 ], [ -67.060547, -10.223031 ], [ -67.175903, -10.304110 ], [ -67.500000, -10.455402 ], [ -68.049316, -10.709189 ], [ -68.274536, -11.011297 ], [ -68.790894, -11.032864 ], [ -69.532471, -10.946585 ], [ -70.098267, -11.119117 ], [ -70.548706, -11.005904 ], [ -70.482788, -9.486990 ], [ -71.306763, -10.077037 ], [ -72.185669, -10.049994 ], [ -72.564697, -9.519497 ], [ -73.229370, -9.459899 ], [ -73.020630, -9.031578 ], [ -73.575439, -8.423470 ], [ -73.987427, -7.520427 ], [ -73.723755, -7.340675 ], [ -73.729248, -6.915521 ], [ -73.125000, -6.626414 ], [ -73.223877, -6.085936 ], [ -72.965698, -5.736243 ], [ -72.894287, -5.271478 ], [ -71.751709, -4.592852 ], [ -70.933228, -4.401183 ], [ -70.795898, -4.247812 ], [ -69.895020, -4.297113 ], [ -69.444580, -1.554375 ], [ -69.422607, -1.120534 ], [ -69.581909, -0.549308 ], [ -70.021362, -0.181274 ], [ -70.021362, 0.439449 ], [ -67.060547, 0.439449 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.055664, 21.545066 ], [ -86.813965, 21.335432 ], [ -86.846924, 20.853679 ], [ -87.385254, 20.257044 ], [ -87.621460, 19.647761 ], [ -87.440186, 19.476950 ], [ -87.588501, 19.041349 ], [ -87.841187, 18.260653 ], [ -88.093872, 18.521283 ], [ -88.494873, 18.490029 ], [ -88.851929, 17.884659 ], [ -89.033203, 18.004856 ], [ -89.154053, 17.957832 ], [ -89.148560, 17.811456 ], [ -90.000000, 17.821916 ], [ -90.439453, 17.821916 ], [ -90.439453, 20.730428 ], [ -90.280151, 21.002471 ], [ -90.000000, 21.110125 ], [ -89.604492, 21.263781 ], [ -88.544312, 21.493964 ], [ -87.659912, 21.463293 ], [ -87.055664, 21.545066 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guatemala", "sov_a3": "GTM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guatemala", "adm0_a3": "GTM", "geou_dif": 0, "geounit": "Guatemala", "gu_a3": "GTM", "su_dif": 0, "subunit": "Guatemala", "su_a3": "GTM", "brk_diff": 0, "name": "Guatemala", "name_long": "Guatemala", "brk_a3": "GTM", "brk_name": "Guatemala", "abbrev": "Guat.", "postal": "GT", "formal_en": "Republic of Guatemala", "name_sort": "Guatemala", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 13276517, "gdp_md_est": 68580, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GT", "iso_a3": "GTM", "iso_n3": "320", "un_a3": "320", "wb_a2": "GT", "wb_a3": "GTM", "woe_id": -99, "adm0_a3_is": "GTM", "adm0_a3_us": "GTM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.821916 ], [ -89.148560, 17.811456 ], [ -89.154053, 17.020020 ], [ -89.230957, 15.887376 ], [ -88.934326, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.522339, 15.855674 ], [ -88.225708, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.159546, 15.066819 ], [ -89.225464, 14.875778 ], [ -89.148560, 14.679254 ], [ -89.357300, 14.429360 ], [ -89.588013, 14.365513 ], [ -89.538574, 14.248411 ], [ -89.725342, 14.136576 ], [ -90.000000, 13.934067 ], [ -90.065918, 13.886079 ], [ -90.098877, 13.736717 ], [ -90.439453, 13.854081 ], [ -90.439453, 17.821916 ], [ -90.000000, 17.821916 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Belize", "sov_a3": "BLZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belize", "adm0_a3": "BLZ", "geou_dif": 0, "geounit": "Belize", "gu_a3": "BLZ", "su_dif": 0, "subunit": "Belize", "su_a3": "BLZ", "brk_diff": 0, "name": "Belize", "name_long": "Belize", "brk_a3": "BLZ", "brk_name": "Belize", "abbrev": "Belize", "postal": "BZ", "formal_en": "Belize", "name_sort": "Belize", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 307899, "gdp_md_est": 2536, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BZ", "iso_a3": "BLZ", "iso_n3": "084", "un_a3": "084", "wb_a2": "BZ", "wb_a3": "BLZ", "woe_id": -99, "adm0_a3_is": "BLZ", "adm0_a3_us": "BLZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.302612, 18.500447 ], [ -88.297119, 18.354526 ], [ -88.110352, 18.349312 ], [ -88.126831, 18.077979 ], [ -88.286133, 17.649257 ], [ -88.198242, 17.492150 ], [ -88.308105, 17.135541 ], [ -88.242188, 17.041029 ], [ -88.357544, 16.530898 ], [ -88.555298, 16.267414 ], [ -88.736572, 16.235772 ], [ -88.934326, 15.887376 ], [ -89.230957, 15.887376 ], [ -89.154053, 17.020020 ], [ -89.148560, 17.811456 ], [ -89.154053, 17.957832 ], [ -89.033203, 18.004856 ], [ -88.851929, 17.884659 ], [ -88.494873, 18.490029 ], [ -88.302612, 18.500447 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "El Salvador", "sov_a3": "SLV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "El Salvador", "adm0_a3": "SLV", "geou_dif": 0, "geounit": "El Salvador", "gu_a3": "SLV", "su_dif": 0, "subunit": "El Salvador", "su_a3": "SLV", "brk_diff": 0, "name": "El Salvador", "name_long": "El Salvador", "brk_a3": "SLV", "brk_name": "El Salvador", "abbrev": "El. S.", "postal": "SV", "formal_en": "Republic of El Salvador", "name_sort": "El Salvador", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 8, "pop_est": 7185218, "gdp_md_est": 43630, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SV", "iso_a3": "SLV", "iso_n3": "222", "un_a3": "222", "wb_a2": "SV", "wb_a3": "SLV", "woe_id": -99, "adm0_a3_is": "SLV", "adm0_a3_us": "SLV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 11, "long_len": 11, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.357300, 14.429360 ], [ -89.060669, 14.344226 ], [ -88.846436, 14.141902 ], [ -88.544312, 13.982046 ], [ -88.505859, 13.848747 ], [ -88.066406, 13.966054 ], [ -87.863159, 13.896744 ], [ -87.725830, 13.790071 ], [ -87.797241, 13.389620 ], [ -87.907104, 13.149027 ], [ -88.483887, 13.165074 ], [ -88.846436, 13.261333 ], [ -89.258423, 13.459080 ], [ -89.813232, 13.523179 ], [ -90.000000, 13.667338 ], [ -90.098877, 13.736717 ], [ -90.065918, 13.886079 ], [ -90.000000, 13.934067 ], [ -89.725342, 14.136576 ], [ -89.538574, 14.248411 ], [ -89.588013, 14.365513 ], [ -89.357300, 14.429360 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cuba", "sov_a3": "CUB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cuba", "adm0_a3": "CUB", "geou_dif": 0, "geounit": "Cuba", "gu_a3": "CUB", "su_dif": 0, "subunit": "Cuba", "su_a3": "CUB", "brk_diff": 0, "name": "Cuba", "name_long": "Cuba", "brk_a3": "CUB", "brk_name": "Cuba", "abbrev": "Cuba", "postal": "CU", "formal_en": "Republic of Cuba", "name_sort": "Cuba", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 11451652, "gdp_md_est": 108200, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CU", "iso_a3": "CUB", "iso_n3": "192", "un_a3": "192", "wb_a2": "CU", "wb_a3": "CUB", "woe_id": -99, "adm0_a3_is": "CUB", "adm0_a3_us": "CUB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.107300, 22.350076 ], [ -77.536011, 21.943046 ], [ -76.525269, 21.207459 ], [ -76.195679, 21.222821 ], [ -75.602417, 21.017855 ], [ -75.673828, 20.735566 ], [ -74.937744, 20.694462 ], [ -74.179688, 20.287961 ], [ -74.300537, 20.050771 ], [ -74.965210, 19.926877 ], [ -75.635376, 19.875226 ], [ -76.327515, 19.957860 ], [ -77.755737, 19.859727 ], [ -77.085571, 20.416717 ], [ -77.497559, 20.673905 ], [ -78.140259, 20.740703 ], [ -78.486328, 21.033237 ], [ -78.722534, 21.601258 ], [ -79.288330, 21.560393 ], [ -80.222168, 21.830907 ], [ -80.386963, 21.943046 ], [ -80.518799, 22.039822 ], [ -81.826172, 22.192491 ], [ -82.106323, 22.350076 ], [ -78.107300, 22.350076 ] ] ], [ [ [ -83.248901, 22.350076 ], [ -83.496094, 22.172145 ], [ -83.913574, 22.156883 ], [ -84.034424, 21.943046 ], [ -84.056396, 21.912471 ], [ -84.550781, 21.805408 ], [ -84.979248, 21.897181 ], [ -84.896851, 21.943046 ], [ -84.451904, 22.207749 ], [ -84.364014, 22.350076 ], [ -83.248901, 22.350076 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Costa Rica", "sov_a3": "CRI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Costa Rica", "adm0_a3": "CRI", "geou_dif": 0, "geounit": "Costa Rica", "gu_a3": "CRI", "su_dif": 0, "subunit": "Costa Rica", "su_a3": "CRI", "brk_diff": 0, "name": "Costa Rica", "name_long": "Costa Rica", "brk_a3": "CRI", "brk_name": "Costa Rica", "abbrev": "C.R.", "postal": "CR", "formal_en": "Republic of Costa Rica", "name_sort": "Costa Rica", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 4253877, "gdp_md_est": 48320, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CR", "iso_a3": "CRI", "iso_n3": "188", "un_a3": "188", "wb_a2": "CR", "wb_a3": "CRI", "woe_id": -99, "adm0_a3_is": "CRI", "adm0_a3_us": "CRI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.567017, 11.221510 ], [ -84.907837, 10.957371 ], [ -84.677124, 11.086775 ], [ -84.358521, 11.000512 ], [ -84.193726, 10.795537 ], [ -83.897095, 10.730778 ], [ -83.660889, 10.941192 ], [ -83.402710, 10.395975 ], [ -83.018188, 9.995901 ], [ -82.551270, 9.568251 ], [ -82.935791, 9.481572 ], [ -82.930298, 9.074976 ], [ -82.721558, 8.928487 ], [ -82.869873, 8.809082 ], [ -82.831421, 8.629903 ], [ -82.913818, 8.428904 ], [ -82.968750, 8.227801 ], [ -83.512573, 8.450639 ], [ -83.715820, 8.657057 ], [ -83.600464, 8.830795 ], [ -83.633423, 9.053277 ], [ -83.913574, 9.291886 ], [ -84.303589, 9.492408 ], [ -84.649658, 9.616998 ], [ -84.715576, 9.909333 ], [ -84.979248, 10.087854 ], [ -84.913330, 9.801091 ], [ -85.111084, 9.557417 ], [ -85.341797, 9.838979 ], [ -85.665894, 9.936388 ], [ -85.797729, 10.136524 ], [ -85.792236, 10.444598 ], [ -85.660400, 10.757763 ], [ -85.946045, 10.898042 ], [ -85.567017, 11.221510 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Jamaica", "sov_a3": "JAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Jamaica", "adm0_a3": "JAM", "geou_dif": 0, "geounit": "Jamaica", "gu_a3": "JAM", "su_dif": 0, "subunit": "Jamaica", "su_a3": "JAM", "brk_diff": 0, "name": "Jamaica", "name_long": "Jamaica", "brk_a3": "JAM", "brk_name": "Jamaica", "abbrev": "Jam.", "postal": "J", "formal_en": "Jamaica", "name_sort": "Jamaica", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 10, "pop_est": 2825928, "gdp_md_est": 20910, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "JM", "iso_a3": "JAM", "iso_n3": "388", "un_a3": "388", "wb_a2": "JM", "wb_a3": "JAM", "woe_id": -99, "adm0_a3_is": "JAM", "adm0_a3_us": "JAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.799683, 18.526492 ], [ -76.898804, 18.401443 ], [ -76.365967, 18.161511 ], [ -76.201172, 17.889887 ], [ -76.904297, 17.868975 ], [ -77.206421, 17.701595 ], [ -77.766724, 17.863747 ], [ -78.338013, 18.229351 ], [ -78.222656, 18.458768 ], [ -77.799683, 18.526492 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Haiti", "sov_a3": "HTI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Haiti", "adm0_a3": "HTI", "geou_dif": 0, "geounit": "Haiti", "gu_a3": "HTI", "su_dif": 0, "subunit": "Haiti", "su_a3": "HTI", "brk_diff": 0, "name": "Haiti", "name_long": "Haiti", "brk_a3": "HTI", "brk_name": "Haiti", "abbrev": "Haiti", "postal": "HT", "formal_en": "Republic of Haiti", "name_sort": "Haiti", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 9035536, "gdp_md_est": 11500, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "HT", "iso_a3": "HTI", "iso_n3": "332", "un_a3": "332", "wb_a2": "HT", "wb_a3": "HTI", "woe_id": -99, "adm0_a3_is": "HTI", "adm0_a3_us": "HTI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.190918, 19.916548 ], [ -72.581177, 19.875226 ], [ -71.713257, 19.715000 ], [ -71.625366, 19.171113 ], [ -71.702271, 18.786717 ], [ -71.949463, 18.620219 ], [ -71.691284, 18.318026 ], [ -71.713257, 18.046644 ], [ -72.377930, 18.218916 ], [ -72.844849, 18.145852 ], [ -73.454590, 18.218916 ], [ -73.927002, 18.036198 ], [ -74.459839, 18.344098 ], [ -74.371948, 18.667063 ], [ -73.454590, 18.526492 ], [ -72.696533, 18.448347 ], [ -72.339478, 18.672267 ], [ -72.795410, 19.103648 ], [ -72.784424, 19.487308 ], [ -73.416138, 19.642588 ], [ -73.190918, 19.916548 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.757202, 12.441941 ], [ -71.400146, 12.377563 ], [ -71.141968, 12.114523 ], [ -71.334229, 11.781325 ], [ -71.976929, 11.609193 ], [ -72.229614, 11.113727 ], [ -72.619629, 10.822515 ], [ -72.910767, 10.455402 ], [ -73.031616, 9.741542 ], [ -73.306274, 9.156333 ], [ -72.789917, 9.085824 ], [ -72.663574, 8.629903 ], [ -72.443848, 8.407168 ], [ -72.361450, 8.004837 ], [ -72.482300, 7.634776 ], [ -72.449341, 7.427837 ], [ -72.202148, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.675049, 7.089990 ], [ -70.098267, 6.964597 ], [ -69.389648, 6.102322 ], [ -68.988647, 6.211551 ], [ -68.269043, 6.156939 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.500000, 5.621453 ], [ -67.521973, 5.561315 ], [ -67.747192, 5.222247 ], [ -67.824097, 4.505238 ], [ -67.626343, 3.842332 ], [ -67.500000, 3.716264 ], [ -67.340698, 3.546318 ], [ -67.307739, 3.321502 ], [ -67.500000, 3.129546 ], [ -67.813110, 2.822344 ], [ -67.500000, 2.635789 ], [ -67.450562, 2.602864 ], [ -67.181396, 2.251617 ], [ -67.060547, 1.856365 ], [ -67.066040, 1.131518 ], [ -67.263794, 1.724593 ], [ -67.500000, 1.999106 ], [ -67.538452, 2.037534 ], [ -67.873535, 1.697139 ], [ -69.818115, 1.719102 ], [ -69.807129, 1.093073 ], [ -69.219360, 0.988720 ], [ -69.257812, 0.604237 ], [ -69.455566, 0.708600 ], [ -70.015869, 0.543815 ], [ -70.021362, 0.000000 ], [ -70.021362, -0.181274 ], [ -69.713745, -0.439449 ], [ -74.575195, -0.439449 ], [ -75.108032, -0.054932 ], [ -75.377197, -0.148315 ], [ -75.651855, 0.000000 ], [ -75.805664, 0.087891 ], [ -76.294556, 0.417477 ], [ -76.580200, 0.258178 ], [ -77.426147, 0.400998 ], [ -77.673340, 0.829439 ], [ -77.860107, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.768518 ], [ -78.667603, 2.268084 ], [ -78.431396, 2.630301 ], [ -77.937012, 2.701635 ], [ -77.514038, 3.326986 ], [ -77.129517, 3.853293 ], [ -77.497559, 4.088932 ], [ -77.310791, 4.669505 ], [ -77.536011, 5.583184 ], [ -77.321777, 5.845545 ], [ -77.481079, 6.691887 ], [ -77.882080, 7.226249 ], [ -77.755737, 7.710992 ], [ -77.431641, 7.640220 ], [ -77.244873, 7.939556 ], [ -77.475586, 8.526701 ], [ -77.354736, 8.673348 ], [ -76.838379, 8.640765 ], [ -76.091309, 9.340672 ], [ -75.679321, 9.443643 ], [ -75.668335, 9.774025 ], [ -75.481567, 10.622817 ], [ -74.910278, 11.086775 ], [ -74.278564, 11.102947 ], [ -74.201660, 11.313094 ], [ -73.416138, 11.232286 ], [ -72.630615, 11.732924 ], [ -72.240601, 11.958723 ], [ -71.757202, 12.441941 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "Puerto Rico", "adm0_a3": "PRI", "geou_dif": 0, "geounit": "Puerto Rico", "gu_a3": "PRI", "su_dif": 0, "subunit": "Puerto Rico", "su_a3": "PRI", "brk_diff": 0, "name": "Puerto Rico", "name_long": "Puerto Rico", "brk_a3": "PRI", "brk_name": "Puerto Rico", "abbrev": "P.R.", "postal": "PR", "formal_en": "Commonwealth of Puerto Rico", "note_adm0": "Commonwealth of U.S.A.", "name_sort": "Puerto Rico", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 3971020, "gdp_md_est": 70230, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "PR", "iso_a3": "PRI", "iso_n3": "630", "un_a3": "630", "wb_a2": "PR", "wb_a3": "PRI", "woe_id": -99, "adm0_a3_is": "PRI", "adm0_a3_us": "PRI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, 18.521283 ], [ -67.060547, 17.957832 ], [ -67.186890, 17.947381 ], [ -67.247314, 18.375379 ], [ -67.104492, 18.521283 ], [ -67.060547, 18.521283 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Venezuela", "sov_a3": "VEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Venezuela", "adm0_a3": "VEN", "geou_dif": 0, "geounit": "Venezuela", "gu_a3": "VEN", "su_dif": 0, "subunit": "Venezuela", "su_a3": "VEN", "brk_diff": 0, "name": "Venezuela", "name_long": "Venezuela", "brk_a3": "VEN", "brk_name": "Venezuela", "abbrev": "Ven.", "postal": "VE", "formal_en": "Bolivarian Republic of Venezuela", "formal_fr": "República Bolivariana de Venezuela", "name_sort": "Venezuela, RB", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 26814843, "gdp_md_est": 357400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "VE", "iso_a3": "VEN", "iso_n3": "862", "un_a3": "862", "wb_a2": "VE", "wb_a3": "VEN", "woe_id": -99, "adm0_a3_is": "VEN", "adm0_a3_us": "VEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.944458, 12.162856 ], [ -69.587402, 11.463874 ], [ -68.884277, 11.447723 ], [ -68.236084, 10.887254 ], [ -68.197632, 10.558022 ], [ -67.500000, 10.552622 ], [ -67.296753, 10.547221 ], [ -67.060547, 10.568822 ], [ -67.060547, 1.856365 ], [ -67.181396, 2.251617 ], [ -67.450562, 2.602864 ], [ -67.500000, 2.635789 ], [ -67.813110, 2.822344 ], [ -67.500000, 3.129546 ], [ -67.307739, 3.321502 ], [ -67.340698, 3.546318 ], [ -67.500000, 3.716264 ], [ -67.626343, 3.842332 ], [ -67.824097, 4.505238 ], [ -67.747192, 5.222247 ], [ -67.521973, 5.561315 ], [ -67.500000, 5.621453 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -68.269043, 6.156939 ], [ -68.988647, 6.211551 ], [ -69.389648, 6.102322 ], [ -70.098267, 6.964597 ], [ -70.675049, 7.089990 ], [ -71.960449, 6.991859 ], [ -72.202148, 7.340675 ], [ -72.449341, 7.427837 ], [ -72.482300, 7.634776 ], [ -72.361450, 8.004837 ], [ -72.443848, 8.407168 ], [ -72.663574, 8.629903 ], [ -72.789917, 9.085824 ], [ -73.306274, 9.156333 ], [ -73.031616, 9.741542 ], [ -72.910767, 10.455402 ], [ -72.619629, 10.822515 ], [ -72.229614, 11.113727 ], [ -71.976929, 11.609193 ], [ -71.334229, 11.781325 ], [ -71.361694, 11.544616 ], [ -71.949463, 11.426187 ], [ -71.625366, 10.973550 ], [ -71.636353, 10.450000 ], [ -72.075806, 9.866040 ], [ -71.696777, 9.074976 ], [ -71.268311, 9.140063 ], [ -71.043091, 9.860628 ], [ -71.350708, 10.212219 ], [ -71.405640, 10.973550 ], [ -70.158691, 11.377724 ], [ -70.296021, 11.851223 ], [ -69.944458, 12.162856 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.859863, 1.384143 ], [ -77.860107, 0.812961 ], [ -77.673340, 0.829439 ], [ -77.426147, 0.400998 ], [ -76.580200, 0.258178 ], [ -76.294556, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.651855, 0.000000 ], [ -75.377197, -0.148315 ], [ -75.322266, -0.439449 ], [ -80.447388, -0.439449 ], [ -80.403442, -0.280150 ], [ -80.233154, 0.000000 ], [ -80.024414, 0.362546 ], [ -80.095825, 0.769020 ], [ -79.546509, 0.983228 ], [ -78.859863, 1.384143 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Peru", "sov_a3": "PER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Peru", "adm0_a3": "PER", "geou_dif": 0, "geounit": "Peru", "gu_a3": "PER", "su_dif": 0, "subunit": "Peru", "su_a3": "PER", "brk_diff": 0, "name": "Peru", "name_long": "Peru", "brk_a3": "PER", "brk_name": "Peru", "abbrev": "Peru", "postal": "PE", "formal_en": "Republic of Peru", "name_sort": "Peru", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 11, "pop_est": 29546963, "gdp_md_est": 247300, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PE", "iso_a3": "PER", "iso_n3": "604", "un_a3": "604", "wb_a2": "PE", "wb_a3": "PER", "woe_id": -99, "adm0_a3_is": "PER", "adm0_a3_us": "PER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.108032, -0.054932 ], [ -74.575195, -0.439449 ], [ -75.322266, -0.439449 ], [ -75.377197, -0.148315 ], [ -75.108032, -0.054932 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ -67.538452, 2.037534 ], [ -67.500000, 1.999106 ], [ -67.263794, 1.724593 ], [ -67.060547, 1.137010 ], [ -67.060547, -0.439449 ], [ -69.713745, -0.439449 ], [ -70.021362, -0.181274 ], [ -70.021362, 0.000000 ], [ -70.015869, 0.543815 ], [ -69.455566, 0.708600 ], [ -69.257812, 0.604237 ], [ -69.219360, 0.988720 ], [ -69.807129, 1.093073 ], [ -69.818115, 1.719102 ], [ -67.873535, 1.697139 ], [ -67.538452, 2.037534 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.943970, 41.310824 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.569946, 40.979898 ], [ -73.712769, 40.934265 ], [ -73.333740, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.026367, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.350220, 40.630630 ], [ -73.987427, 40.630630 ], [ -73.954468, 40.751418 ], [ -74.262085, 40.476203 ], [ -73.965454, 40.430224 ], [ -74.179688, 39.711413 ], [ -74.910278, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.499802 ], [ -75.322266, 38.963680 ], [ -75.075073, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.382690, 38.017804 ], [ -75.942993, 37.217206 ], [ -76.036377, 37.260938 ], [ -75.723267, 37.939865 ], [ -76.234131, 38.320111 ], [ -76.354980, 39.151363 ], [ -76.547241, 38.719805 ], [ -76.333008, 38.087013 ], [ -76.992188, 38.242495 ], [ -76.305542, 37.918201 ], [ -76.261597, 36.967449 ], [ -75.975952, 36.901587 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.554574 ], [ -76.365967, 34.809293 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.929688 ], [ -78.557739, 33.865854 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.304565, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.732393 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.473520 ], [ -80.535278, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.209663 ], [ -80.134277, 25.819672 ], [ -80.381470, 25.209911 ], [ -80.683594, 25.080624 ], [ -81.172485, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.874052 ], [ -82.710571, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.104177 ], [ -83.710327, 29.940655 ], [ -84.100342, 30.092861 ], [ -85.111084, 29.640320 ], [ -85.292358, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.533569, 30.278044 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.598999, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.434204, 29.492206 ], [ -89.219971, 29.291190 ], [ -89.412231, 29.161756 ], [ -89.780273, 29.310351 ], [ -90.000000, 29.200123 ], [ -90.159302, 29.118574 ], [ -90.439453, 29.132970 ], [ -90.439453, 41.310824 ], [ -71.943970, 41.310824 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.055664, 21.545066 ], [ -87.044678, 21.534847 ], [ -87.116089, 21.534847 ], [ -87.055664, 21.545066 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "The Bahamas", "sov_a3": "BHS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "The Bahamas", "adm0_a3": "BHS", "geou_dif": 0, "geounit": "The Bahamas", "gu_a3": "BHS", "su_dif": 0, "subunit": "The Bahamas", "su_a3": "BHS", "brk_diff": 0, "name": "Bahamas", "name_long": "Bahamas", "brk_a3": "BHS", "brk_name": "Bahamas", "abbrev": "Bhs.", "postal": "BS", "formal_en": "Commonwealth of the Bahamas", "name_sort": "Bahamas, The", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 309156, "gdp_md_est": 9093, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BS", "iso_a3": "BHS", "iso_n3": "044", "un_a3": "044", "wb_a2": "BS", "wb_a3": "BHS", "woe_id": -99, "adm0_a3_is": "BHS", "adm0_a3_us": "BHS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.195190, 25.214881 ], [ -77.893066, 25.170145 ], [ -77.541504, 24.342092 ], [ -77.536011, 23.760209 ], [ -77.783203, 23.714954 ], [ -78.035889, 24.287027 ], [ -78.409424, 24.577100 ], [ -78.195190, 25.214881 ] ] ], [ [ [ -77.794189, 27.044449 ], [ -77.003174, 26.593439 ], [ -77.173462, 25.883937 ], [ -77.360229, 26.007424 ], [ -77.343750, 26.534480 ], [ -77.788696, 26.926968 ], [ -77.794189, 27.044449 ] ] ], [ [ [ -78.513794, 26.873081 ], [ -77.854614, 26.843677 ], [ -77.821655, 26.583615 ], [ -78.914795, 26.421390 ], [ -78.980713, 26.794654 ], [ -78.513794, 26.873081 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cuba", "sov_a3": "CUB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cuba", "adm0_a3": "CUB", "geou_dif": 0, "geounit": "Cuba", "gu_a3": "CUB", "su_dif": 0, "subunit": "Cuba", "su_a3": "CUB", "brk_diff": 0, "name": "Cuba", "name_long": "Cuba", "brk_a3": "CUB", "brk_name": "Cuba", "abbrev": "Cuba", "postal": "CU", "formal_en": "Republic of Cuba", "name_sort": "Cuba", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 11451652, "gdp_md_est": 108200, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CU", "iso_a3": "CUB", "iso_n3": "192", "un_a3": "192", "wb_a2": "CU", "wb_a3": "CUB", "woe_id": -99, "adm0_a3_is": "CUB", "adm0_a3_us": "CUB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.271118, 23.190863 ], [ -81.408691, 23.120154 ], [ -80.623169, 23.110049 ], [ -79.683838, 22.766051 ], [ -79.282837, 22.400872 ], [ -78.348999, 22.512557 ], [ -77.997437, 22.278931 ], [ -77.536011, 21.943046 ], [ -76.981201, 21.534847 ], [ -78.695068, 21.534847 ], [ -78.722534, 21.601258 ], [ -79.288330, 21.560393 ], [ -80.222168, 21.830907 ], [ -80.386963, 21.943046 ], [ -80.518799, 22.039822 ], [ -81.826172, 22.192491 ], [ -82.172241, 22.390714 ], [ -81.798706, 22.639363 ], [ -82.776489, 22.690052 ], [ -83.496094, 22.172145 ], [ -83.913574, 22.156883 ], [ -84.034424, 21.943046 ], [ -84.056396, 21.912471 ], [ -84.550781, 21.805408 ], [ -84.979248, 21.897181 ], [ -84.896851, 21.943046 ], [ -84.451904, 22.207749 ], [ -84.232178, 22.568366 ], [ -83.781738, 22.791375 ], [ -83.270874, 22.983681 ], [ -82.512817, 23.079732 ], [ -82.271118, 23.190863 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -67.060547, 56.022948 ], [ -67.060547, 49.664072 ], [ -67.236328, 49.514510 ], [ -67.500000, 49.421694 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -67.060547, 48.933326 ], [ -67.060547, 45.147179 ], [ -67.137451, 45.139430 ], [ -67.500000, 45.452424 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.000000, 48.096426 ], [ -90.439453, 48.188063 ], [ -90.439453, 56.022948 ], [ -87.363281, 56.022948 ], [ -87.324829, 56.001453 ], [ -86.314087, 55.776573 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.195435, 55.776573 ], [ -77.096558, 55.838314 ], [ -76.953735, 56.022948 ], [ -67.060547, 56.022948 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.379517, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.441642 ], [ -84.342041, 46.411352 ], [ -84.144287, 46.513516 ], [ -84.094849, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.282349, 42.212245 ], [ -80.249634, 42.366662 ], [ -78.942261, 42.863886 ], [ -78.920288, 42.968482 ], [ -79.013672, 43.273206 ], [ -79.172974, 43.468868 ], [ -78.722534, 43.628123 ], [ -76.821899, 43.632099 ], [ -76.503296, 44.020472 ], [ -76.376953, 44.099421 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.004883, 46.694667 ], [ -69.241333, 47.450380 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.357432 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.500000, 45.452424 ], [ -67.137451, 45.139430 ], [ -67.060547, 44.991998 ], [ -67.060547, 44.770137 ], [ -67.500000, 44.570904 ], [ -68.032837, 44.327778 ], [ -69.060059, 43.980958 ], [ -70.120239, 43.687736 ], [ -70.647583, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.338245 ], [ -70.499268, 41.808173 ], [ -70.081787, 41.783601 ], [ -70.186157, 42.147114 ], [ -69.889526, 41.926803 ], [ -69.966431, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.496235 ], [ -71.861572, 41.323201 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.569946, 40.979898 ], [ -73.712769, 40.934265 ], [ -73.333740, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.026367, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.267822, 40.647304 ], [ -73.981934, 40.647304 ], [ -73.954468, 40.751418 ], [ -74.069824, 40.647304 ], [ -90.439453, 40.647304 ], [ -90.439453, 48.188063 ], [ -90.000000, 48.096426 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.022998 ], [ -88.379517, 48.305121 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -90.439453, 63.753350 ], [ -90.439453, 66.687784 ], [ -82.578735, 66.687784 ], [ -83.067627, 66.513260 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.559192 ], [ -85.797729, 66.513260 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.000000, 63.988009 ], [ -90.439453, 63.753350 ] ] ], [ [ [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -67.500000, 58.271954 ], [ -67.060547, 58.439108 ], [ -67.060547, 55.528631 ], [ -77.601929, 55.528631 ], [ -77.195435, 55.776573 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ] ] ], [ [ [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ] ] ], [ [ [ -67.060547, 66.687784 ], [ -67.060547, 66.357339 ], [ -67.500000, 66.313242 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.500000, 65.337055 ], [ -67.093506, 65.109148 ], [ -67.060547, 65.099899 ], [ -67.060547, 63.198973 ], [ -67.500000, 63.339808 ], [ -68.785400, 63.746061 ], [ -67.500000, 62.965212 ], [ -67.373657, 62.885205 ], [ -67.060547, 62.706907 ], [ -67.060547, 62.065307 ], [ -67.500000, 62.129572 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -73.685303, 66.513260 ], [ -73.454590, 66.687784 ], [ -67.060547, 66.687784 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ] ] ], [ [ [ -90.439453, 57.180925 ], [ -90.000000, 57.076575 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.314087, 55.776573 ], [ -86.072388, 55.724017 ], [ -85.583496, 55.528631 ], [ -90.439453, 55.528631 ], [ -90.439453, 57.180925 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "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": [ [ [ [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.067627, 66.513260 ], [ -83.347778, 66.412352 ], [ -84.017944, 66.337505 ], [ -85.012207, 66.337505 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.559192 ], [ -85.797729, 66.513260 ], [ -85.902100, 66.337505 ], [ -90.439453, 66.337505 ], [ -90.439453, 68.542306 ], [ -90.000000, 68.802028 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ] ] ], [ [ [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -67.500000, 69.718107 ], [ -67.060547, 69.279484 ], [ -67.060547, 69.164512 ], [ -67.500000, 69.052858 ], [ -68.807373, 68.720441 ], [ -67.500000, 68.360725 ], [ -67.060547, 68.238859 ], [ -67.060547, 66.357339 ], [ -67.247314, 66.337505 ], [ -73.910522, 66.337505 ], [ -73.685303, 66.513260 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.587473 ], [ -90.208740, 72.235514 ], [ -90.000000, 72.478584 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ] ] ], [ [ [ -75.899048, 68.287684 ], [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -75.899048, 68.287684 ] ] ], [ [ [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -90.439453, 75.970890 ], [ -90.000000, 75.884072 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -90.000000, 74.544794 ], [ -90.439453, 74.598864 ], [ -90.439453, 75.970890 ] ] ], [ [ [ -76.146240, 79.253586 ], [ -75.531006, 79.198134 ], [ -75.635376, 79.171335 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.242920, 79.171335 ], [ -85.171509, 79.253586 ], [ -76.146240, 79.253586 ] ] ], [ [ [ -86.204224, 79.253586 ], [ -86.583252, 79.171335 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.439453, 78.231237 ], [ -90.439453, 79.253586 ], [ -86.204224, 79.253586 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, 77.394300 ], [ -67.500000, 77.421844 ], [ -71.043091, 77.636542 ], [ -73.300781, 78.044933 ], [ -73.163452, 78.433418 ], [ -69.378662, 78.914496 ], [ -67.500000, 79.163075 ], [ -67.060547, 79.219732 ], [ -67.060547, 77.394300 ] ] ], [ [ [ -67.060547, 77.369100 ], [ -67.060547, 76.106073 ], [ -67.500000, 76.092877 ], [ -68.505249, 76.062478 ], [ -69.669800, 76.380383 ], [ -71.405640, 77.008582 ], [ -68.779907, 77.323374 ], [ -67.500000, 77.357083 ], [ -67.060547, 77.369100 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -90.439453, 80.636316 ], [ -90.000000, 80.579842 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -86.583252, 79.171335 ], [ -86.967773, 79.088462 ], [ -90.439453, 79.088462 ], [ -90.439453, 80.636316 ] ] ], [ [ [ -67.060547, 82.732092 ], [ -67.060547, 81.650118 ], [ -67.500000, 81.540928 ], [ -67.659302, 81.502052 ], [ -67.500000, 81.502052 ], [ -67.060547, 81.502864 ], [ -67.060547, 81.105113 ], [ -67.500000, 80.990573 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -75.635376, 79.171335 ], [ -75.953979, 79.088462 ], [ -85.308838, 79.088462 ], [ -85.242920, 79.171335 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.000000, 81.165215 ], [ -90.203247, 81.260042 ], [ -90.439453, 81.321593 ], [ -90.439453, 82.041938 ], [ -90.104370, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.688599, 82.676285 ], [ -82.606201, 82.732092 ], [ -67.060547, 82.732092 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, 79.991442 ], [ -67.500000, 80.049510 ], [ -68.027344, 80.117621 ], [ -67.500000, 80.358836 ], [ -67.153931, 80.516698 ], [ -67.060547, 80.535685 ], [ -67.060547, 79.991442 ] ] ], [ [ [ -67.060547, 79.219732 ], [ -67.060547, 79.088462 ], [ -68.065796, 79.088462 ], [ -67.060547, 79.219732 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -85.501099, 82.652438 ], [ -84.737549, 82.620052 ], [ -85.632935, 82.620052 ], [ -85.501099, 82.652438 ] ] ], [ [ [ -68.505249, 83.106457 ], [ -67.500000, 83.077387 ], [ -67.060547, 83.064796 ], [ -67.060547, 82.620052 ], [ -82.765503, 82.620052 ], [ -82.688599, 82.676285 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -44.560547, -82.620052 ], [ -44.560547, -85.088894 ], [ -67.939453, -85.088894 ], [ -67.939453, -82.620052 ], [ -59.194336, -82.620052 ], [ -59.073486, -82.676285 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.942383, -82.676285 ], [ -55.629272, -82.620052 ], [ -44.560547, -82.620052 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "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": [ [ [ [ -67.939453, -81.333189 ], [ -67.500000, -81.361287 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -59.073486, -82.676285 ], [ -58.958130, -82.732092 ], [ -67.939453, -82.732092 ], [ -67.939453, -81.333189 ] ] ], [ [ [ -45.000000, -81.836284 ], [ -44.829712, -81.846419 ], [ -44.560547, -81.877523 ], [ -44.560547, -82.732092 ], [ -56.255493, -82.732092 ], [ -55.942383, -82.676285 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -45.000000, -81.836284 ] ] ], [ [ [ -44.560547, -79.088462 ], [ -44.560547, -80.274756 ], [ -44.884644, -80.339497 ], [ -45.000000, -80.357916 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.350342, -79.171335 ], [ -50.251465, -79.088462 ], [ -44.560547, -79.088462 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -45.000000, -78.101694 ], [ -44.560547, -78.255861 ], [ -44.560547, -79.253586 ], [ -50.465698, -79.253586 ], [ -50.350342, -79.171335 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -61.100464, -73.898111 ], [ -61.259766, -74.019543 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -67.500000, -75.843825 ], [ -67.939453, -75.920199 ], [ -67.939453, -73.898111 ], [ -61.100464, -73.898111 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "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": "Polygon", "coordinates": [ [ [ -62.550659, -66.337505 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -63.764648, -66.513260 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.259766, -74.019543 ], [ -61.380615, -74.105519 ], [ -61.435547, -74.140084 ], [ -67.939453, -74.140084 ], [ -67.939453, -72.783586 ], [ -67.500000, -72.549557 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.500000, -71.327192 ], [ -67.565918, -71.244356 ], [ -67.939453, -70.826640 ], [ -67.939453, -68.912981 ], [ -67.587891, -68.540296 ], [ -67.500000, -68.330320 ], [ -67.428589, -68.149077 ], [ -67.500000, -67.991108 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.500000, -67.103793 ], [ -67.252808, -66.874030 ], [ -66.588135, -66.513260 ], [ -66.280518, -66.337505 ], [ -62.550659, -66.337505 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.922974, -55.528631 ], [ -67.939453, -55.534848 ], [ -67.939453, -55.528631 ], [ -67.922974, -55.528631 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -61.298218, -64.543718 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -63.764648, -66.513260 ], [ -64.050293, -66.687784 ], [ -66.901245, -66.687784 ], [ -66.588135, -66.513260 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.939453, -54.867124 ], [ -67.500000, -54.870285 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.301011 ], [ -67.500000, -55.375989 ], [ -67.939453, -55.534848 ], [ -67.939453, -54.867124 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.939453, -53.566414 ], [ -67.752686, -53.849286 ], [ -67.500000, -53.965781 ], [ -66.450806, -54.447686 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.197683 ], [ -66.450806, -55.247815 ], [ -66.961670, -54.895565 ], [ -67.500000, -54.870285 ], [ -67.939453, -54.867124 ], [ -67.939453, -53.566414 ] ] ], [ [ [ -62.160645, -40.647304 ], [ -62.149658, -40.676472 ], [ -62.666016, -40.979898 ], [ -62.748413, -41.025499 ], [ -63.775635, -41.166249 ], [ -64.270020, -40.979898 ], [ -64.736938, -40.801336 ], [ -64.995117, -40.979898 ], [ -65.121460, -41.062786 ], [ -64.978638, -42.057450 ], [ -64.308472, -42.358544 ], [ -63.759155, -42.041134 ], [ -63.462524, -42.561173 ], [ -64.379883, -42.871938 ], [ -65.181885, -43.492783 ], [ -65.330200, -44.500423 ], [ -65.566406, -45.034715 ], [ -66.511230, -45.038597 ], [ -67.296753, -45.548679 ], [ -67.500000, -46.088472 ], [ -67.582397, -46.301406 ], [ -67.500000, -46.362093 ], [ -66.599121, -47.032695 ], [ -65.643311, -47.234490 ], [ -65.989380, -48.133101 ], [ -67.170410, -48.694586 ], [ -67.500000, -49.300054 ], [ -67.818604, -49.866317 ], [ -67.939453, -49.922935 ], [ -67.939453, -40.647304 ], [ -62.160645, -40.647304 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "Falkland Islands", "adm0_a3": "FLK", "geou_dif": 0, "geounit": "Falkland Islands", "gu_a3": "FLK", "su_dif": 0, "subunit": "Falkland Islands", "su_a3": "FLK", "brk_diff": 1, "name": "Falkland Is.", "name_long": "Falkland Islands", "brk_a3": "B12", "brk_name": "Falkland Is.", "abbrev": "Flk. Is.", "postal": "FK", "formal_en": "Falkland Islands", "note_adm0": "U.K.", "note_brk": "Admin. by U.K.; Claimed by Argentina", "name_sort": "Falkland Islands", "name_alt": "Islas Malvinas", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 3140, "gdp_md_est": 105.1, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FK", "iso_a3": "FLK", "iso_n3": "238", "un_a3": "238", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "FLK", "adm0_a3_us": "FLK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 12, "long_len": 16, "abbrev_len": 8, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.551636, -51.096623 ], [ -57.755127, -51.549751 ], [ -58.051758, -51.896834 ], [ -59.403076, -52.197507 ], [ -59.853516, -51.849353 ], [ -60.704956, -52.298402 ], [ -61.204834, -51.849353 ], [ -60.001831, -51.248163 ], [ -59.150391, -51.498485 ], [ -58.551636, -51.096623 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.939453, -22.482106 ], [ -67.829590, -22.872379 ], [ -67.500000, -22.806567 ], [ -67.109985, -22.735657 ], [ -66.989136, -22.983681 ], [ -67.329712, -24.021379 ], [ -67.500000, -24.101633 ], [ -67.939453, -24.302047 ], [ -67.939453, -22.482106 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.451782, -21.534847 ], [ -62.589111, -21.943046 ], [ -62.687988, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.989868, -21.988895 ], [ -64.379883, -22.796439 ], [ -64.967651, -22.075459 ], [ -65.681763, -21.943046 ], [ -66.275024, -21.830907 ], [ -66.379395, -21.943046 ], [ -67.109985, -22.735657 ], [ -67.500000, -22.806567 ], [ -67.829590, -22.872379 ], [ -67.939453, -22.482106 ], [ -67.939453, -21.534847 ], [ -62.451782, -21.534847 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ -44.560547, -21.534847 ], [ -44.560547, -23.327124 ], [ -44.648438, -23.347299 ], [ -45.000000, -23.574057 ], [ -45.357056, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.653198, -24.881453 ], [ -48.499146, -25.874052 ], [ -48.641968, -26.622908 ], [ -48.477173, -27.171582 ], [ -48.663940, -28.183402 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.224096 ], [ -50.701904, -30.982319 ], [ -51.580811, -31.774878 ], [ -52.256470, -32.245329 ], [ -52.712402, -33.192731 ], [ -53.377075, -33.765449 ], [ -53.651733, -33.201924 ], [ -53.212280, -32.727220 ], [ -53.789062, -32.045333 ], [ -54.574585, -31.494262 ], [ -55.601807, -30.850363 ], [ -55.975342, -30.878655 ], [ -56.980591, -30.107118 ], [ -57.628784, -30.211608 ], [ -56.293945, -28.849485 ], [ -55.162354, -27.877928 ], [ -54.492188, -27.474161 ], [ -53.651733, -26.922070 ], [ -53.629761, -26.120918 ], [ -54.135132, -25.547398 ], [ -54.629517, -25.735581 ], [ -54.431763, -25.160201 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.016362 ], [ -54.656982, -23.835601 ], [ -55.030518, -23.996290 ], [ -55.404053, -23.956136 ], [ -55.519409, -23.569022 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.355156 ], [ -56.475220, -22.085640 ], [ -56.881714, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.930908, -21.943046 ], [ -57.914429, -21.534847 ], [ -44.560547, -21.534847 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Paraguay", "sov_a3": "PRY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Paraguay", "adm0_a3": "PRY", "geou_dif": 0, "geounit": "Paraguay", "gu_a3": "PRY", "su_dif": 0, "subunit": "Paraguay", "su_a3": "PRY", "brk_diff": 0, "name": "Paraguay", "name_long": "Paraguay", "brk_a3": "PRY", "brk_name": "Paraguay", "abbrev": "Para.", "postal": "PY", "formal_en": "Republic of Paraguay", "name_sort": "Paraguay", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 2, "pop_est": 6995655, "gdp_md_est": 28890, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PY", "iso_a3": "PRY", "iso_n3": "600", "un_a3": "600", "wb_a2": "PY", "wb_a3": "PRY", "woe_id": -99, "adm0_a3_is": "PRY", "adm0_a3_us": "PRY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.914429, -21.534847 ], [ -57.930908, -21.943046 ], [ -57.941895, -22.085640 ], [ -56.881714, -22.278931 ], [ -56.475220, -22.085640 ], [ -55.799561, -22.355156 ], [ -55.612793, -22.654572 ], [ -55.519409, -23.569022 ], [ -55.404053, -23.956136 ], [ -55.030518, -23.996290 ], [ -54.656982, -23.835601 ], [ -54.294434, -24.016362 ], [ -54.294434, -24.567108 ], [ -54.431763, -25.160201 ], [ -54.629517, -25.735581 ], [ -54.788818, -26.617997 ], [ -55.700684, -27.386401 ], [ -56.491699, -27.547242 ], [ -57.612305, -27.391278 ], [ -58.623047, -27.122702 ], [ -57.634277, -25.601902 ], [ -57.782593, -25.160201 ], [ -58.809814, -24.766785 ], [ -60.029297, -24.031414 ], [ -60.847778, -23.875792 ], [ -62.687988, -22.248429 ], [ -62.589111, -21.943046 ], [ -62.451782, -21.534847 ], [ -57.914429, -21.534847 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.275024, -21.830907 ], [ -65.681763, -21.943046 ], [ -64.967651, -22.075459 ], [ -64.379883, -22.796439 ], [ -63.989868, -21.988895 ], [ -62.847290, -22.034730 ], [ -62.687988, -22.248429 ], [ -60.847778, -23.875792 ], [ -60.029297, -24.031414 ], [ -58.809814, -24.766785 ], [ -57.782593, -25.160201 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.122702 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.386401 ], [ -54.788818, -26.617997 ], [ -54.629517, -25.735581 ], [ -54.135132, -25.547398 ], [ -53.629761, -26.120918 ], [ -53.651733, -26.922070 ], [ -54.492188, -27.474161 ], [ -55.162354, -27.877928 ], [ -56.293945, -28.849485 ], [ -57.628784, -30.211608 ], [ -57.875977, -31.015279 ], [ -58.145142, -32.040677 ], [ -58.134155, -33.036298 ], [ -58.353882, -33.261657 ], [ -58.496704, -34.429567 ], [ -57.227783, -35.285985 ], [ -57.365112, -35.973561 ], [ -56.738892, -36.412442 ], [ -56.788330, -36.897194 ], [ -57.749634, -38.182069 ], [ -59.232788, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.826871 ], [ -62.127686, -39.423464 ], [ -62.330933, -40.170479 ], [ -62.149658, -40.676472 ], [ -62.666016, -40.979898 ], [ -62.748413, -41.025499 ], [ -63.775635, -41.166249 ], [ -64.270020, -40.979898 ], [ -64.736938, -40.801336 ], [ -64.995117, -40.979898 ], [ -65.121460, -41.062786 ], [ -65.088501, -41.310824 ], [ -67.939453, -41.310824 ], [ -67.939453, -24.302047 ], [ -67.500000, -24.101633 ], [ -67.329712, -24.021379 ], [ -66.989136, -22.983681 ], [ -67.109985, -22.735657 ], [ -66.379395, -21.943046 ], [ -66.275024, -21.830907 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Uruguay", "sov_a3": "URY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uruguay", "adm0_a3": "URY", "geou_dif": 0, "geounit": "Uruguay", "gu_a3": "URY", "su_dif": 0, "subunit": "Uruguay", "su_a3": "URY", "brk_diff": 0, "name": "Uruguay", "name_long": "Uruguay", "brk_a3": "URY", "brk_name": "Uruguay", "abbrev": "Ury.", "postal": "UY", "formal_en": "Oriental Republic of Uruguay", "name_sort": "Uruguay", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 3494382, "gdp_md_est": 43160, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "UY", "iso_a3": "URY", "iso_n3": "858", "un_a3": "858", "wb_a2": "UY", "wb_a3": "URY", "woe_id": -99, "adm0_a3_is": "URY", "adm0_a3_us": "URY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.980591, -30.107118 ], [ -55.975342, -30.878655 ], [ -55.601807, -30.850363 ], [ -54.574585, -31.494262 ], [ -53.789062, -32.045333 ], [ -53.212280, -32.727220 ], [ -53.651733, -33.201924 ], [ -53.377075, -33.765449 ], [ -53.811035, -34.393312 ], [ -54.937134, -34.948991 ], [ -55.678711, -34.750640 ], [ -56.217041, -34.858890 ], [ -57.139893, -34.429567 ], [ -57.821045, -34.461277 ], [ -58.430786, -33.906896 ], [ -58.353882, -33.261657 ], [ -58.134155, -33.036298 ], [ -58.145142, -32.040677 ], [ -57.875977, -31.015279 ], [ -57.628784, -30.211608 ], [ -56.980591, -30.107118 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.341187, -9.757784 ], [ -65.445557, -10.509417 ], [ -65.324707, -10.892648 ], [ -65.407104, -11.566144 ], [ -64.319458, -12.458033 ], [ -63.198853, -12.624258 ], [ -62.803345, -12.999205 ], [ -62.127686, -13.197165 ], [ -61.715698, -13.485790 ], [ -61.089478, -13.475106 ], [ -60.507202, -13.774066 ], [ -60.463257, -14.349548 ], [ -60.265503, -14.642054 ], [ -60.254517, -15.072124 ], [ -60.545654, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.244019, -16.299051 ], [ -58.392334, -16.872890 ], [ -58.282471, -17.266728 ], [ -57.738647, -17.549772 ], [ -57.502441, -18.171950 ], [ -57.678223, -18.958246 ], [ -57.952881, -19.399249 ], [ -57.854004, -19.968186 ], [ -58.167114, -20.174567 ], [ -58.183594, -19.864894 ], [ -59.117432, -19.352611 ], [ -60.045776, -19.342245 ], [ -61.787109, -19.632240 ], [ -62.270508, -20.509355 ], [ -62.292480, -21.048618 ], [ -62.589111, -21.943046 ], [ -62.687988, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.989868, -21.988895 ], [ -64.160156, -22.350076 ], [ -64.742432, -22.350076 ], [ -64.967651, -22.075459 ], [ -65.681763, -21.943046 ], [ -66.275024, -21.830907 ], [ -66.379395, -21.943046 ], [ -66.752930, -22.350076 ], [ -67.939453, -22.350076 ], [ -67.939453, -10.660608 ], [ -67.500000, -10.455402 ], [ -67.175903, -10.304110 ], [ -66.648560, -9.930977 ], [ -65.341187, -9.757784 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ -50.504150, 0.439449 ], [ -50.701904, 0.225219 ], [ -50.471191, 0.000000 ], [ -50.388794, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.587036, -1.235866 ], [ -47.828979, -0.576772 ], [ -46.571045, -0.939289 ], [ -45.000000, -1.515936 ], [ -44.906616, -1.548884 ], [ -44.560547, -1.966167 ], [ -44.560547, -2.619326 ], [ -44.582520, -2.690661 ], [ -44.560547, -2.685174 ], [ -44.560547, -22.350076 ], [ -55.816040, -22.350076 ], [ -56.475220, -22.085640 ], [ -56.881714, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.930908, -21.943046 ], [ -57.875977, -20.730428 ], [ -58.167114, -20.174567 ], [ -57.854004, -19.968186 ], [ -57.952881, -19.399249 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.171950 ], [ -57.738647, -17.549772 ], [ -58.282471, -17.266728 ], [ -58.392334, -16.872890 ], [ -58.244019, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.254517, -15.072124 ], [ -60.265503, -14.642054 ], [ -60.463257, -14.349548 ], [ -60.507202, -13.774066 ], [ -61.089478, -13.475106 ], [ -61.715698, -13.485790 ], [ -62.127686, -13.197165 ], [ -62.803345, -12.999205 ], [ -63.198853, -12.624258 ], [ -64.319458, -12.458033 ], [ -65.407104, -11.566144 ], [ -65.324707, -10.892648 ], [ -65.445557, -10.509417 ], [ -65.341187, -9.757784 ], [ -66.648560, -9.930977 ], [ -67.175903, -10.304110 ], [ -67.500000, -10.455402 ], [ -67.939453, -10.660608 ], [ -67.939453, 0.439449 ], [ -50.504150, 0.439449 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Paraguay", "sov_a3": "PRY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Paraguay", "adm0_a3": "PRY", "geou_dif": 0, "geounit": "Paraguay", "gu_a3": "PRY", "su_dif": 0, "subunit": "Paraguay", "su_a3": "PRY", "brk_diff": 0, "name": "Paraguay", "name_long": "Paraguay", "brk_a3": "PRY", "brk_name": "Paraguay", "abbrev": "Para.", "postal": "PY", "formal_en": "Republic of Paraguay", "name_sort": "Paraguay", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 2, "pop_est": 6995655, "gdp_md_est": 28890, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PY", "iso_a3": "PRY", "iso_n3": "600", "un_a3": "600", "wb_a2": "PY", "wb_a3": "PRY", "woe_id": -99, "adm0_a3_is": "PRY", "adm0_a3_us": "PRY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.045776, -19.342245 ], [ -59.117432, -19.352611 ], [ -58.183594, -19.864894 ], [ -58.167114, -20.174567 ], [ -57.875977, -20.730428 ], [ -57.930908, -21.943046 ], [ -57.941895, -22.085640 ], [ -56.881714, -22.278931 ], [ -56.475220, -22.085640 ], [ -55.816040, -22.350076 ], [ -62.572632, -22.350076 ], [ -62.687988, -22.248429 ], [ -62.589111, -21.943046 ], [ -62.292480, -21.048618 ], [ -62.270508, -20.509355 ], [ -61.787109, -19.632240 ], [ -60.045776, -19.342245 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -66.275024, -21.830907 ], [ -65.681763, -21.943046 ], [ -64.967651, -22.075459 ], [ -64.742432, -22.350076 ], [ -66.752930, -22.350076 ], [ -66.379395, -21.943046 ], [ -66.275024, -21.830907 ] ] ], [ [ [ -62.847290, -22.034730 ], [ -62.687988, -22.248429 ], [ -62.572632, -22.350076 ], [ -64.160156, -22.350076 ], [ -63.989868, -21.988895 ], [ -62.847290, -22.034730 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.500000, 5.621453 ], [ -67.521973, 5.561315 ], [ -67.747192, 5.222247 ], [ -67.824097, 4.505238 ], [ -67.626343, 3.842332 ], [ -67.500000, 3.716264 ], [ -67.340698, 3.546318 ], [ -67.307739, 3.321502 ], [ -67.500000, 3.129546 ], [ -67.813110, 2.822344 ], [ -67.500000, 2.635789 ], [ -67.450562, 2.602864 ], [ -67.181396, 2.251617 ], [ -66.879272, 1.257834 ], [ -67.066040, 1.131518 ], [ -67.263794, 1.724593 ], [ -67.500000, 1.999106 ], [ -67.538452, 2.037534 ], [ -67.873535, 1.697139 ], [ -67.939453, 1.697139 ], [ -67.939453, 6.222473 ], [ -67.697754, 6.271618 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "Puerto Rico", "adm0_a3": "PRI", "geou_dif": 0, "geounit": "Puerto Rico", "gu_a3": "PRI", "su_dif": 0, "subunit": "Puerto Rico", "su_a3": "PRI", "brk_diff": 0, "name": "Puerto Rico", "name_long": "Puerto Rico", "brk_a3": "PRI", "brk_name": "Puerto Rico", "abbrev": "P.R.", "postal": "PR", "formal_en": "Commonwealth of Puerto Rico", "note_adm0": "Commonwealth of U.S.A.", "name_sort": "Puerto Rico", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 3971020, "gdp_md_est": 70230, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "PR", "iso_a3": "PRI", "iso_n3": "630", "un_a3": "630", "wb_a2": "PR", "wb_a3": "PRI", "woe_id": -99, "adm0_a3_is": "PRI", "adm0_a3_us": "PRI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.104492, 18.521283 ], [ -66.286011, 18.516075 ], [ -65.775146, 18.427502 ], [ -65.593872, 18.229351 ], [ -65.852051, 17.978733 ], [ -66.604614, 17.983958 ], [ -67.186890, 17.947381 ], [ -67.247314, 18.375379 ], [ -67.104492, 18.521283 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Venezuela", "sov_a3": "VEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Venezuela", "adm0_a3": "VEN", "geou_dif": 0, "geounit": "Venezuela", "gu_a3": "VEN", "su_dif": 0, "subunit": "Venezuela", "su_a3": "VEN", "brk_diff": 0, "name": "Venezuela", "name_long": "Venezuela", "brk_a3": "VEN", "brk_name": "Venezuela", "abbrev": "Ven.", "postal": "VE", "formal_en": "Bolivarian Republic of Venezuela", "formal_fr": "República Bolivariana de Venezuela", "name_sort": "Venezuela, RB", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 26814843, "gdp_md_est": 357400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "VE", "iso_a3": "VEN", "iso_n3": "862", "un_a3": "862", "wb_a2": "VE", "wb_a3": "VEN", "woe_id": -99, "adm0_a3_is": "VEN", "adm0_a3_us": "VEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.885986, 10.719984 ], [ -62.731934, 10.422988 ], [ -62.391357, 9.952620 ], [ -61.589355, 9.876864 ], [ -60.831299, 9.384032 ], [ -60.671997, 8.581021 ], [ -60.150146, 8.608179 ], [ -59.760132, 8.369127 ], [ -60.551147, 7.781751 ], [ -60.639038, 7.416942 ], [ -60.298462, 7.046379 ], [ -60.545654, 6.860985 ], [ -61.160889, 6.697343 ], [ -61.144409, 6.238855 ], [ -61.413574, 5.960290 ], [ -60.737915, 5.200365 ], [ -60.606079, 4.921306 ], [ -60.968628, 4.538094 ], [ -62.089233, 4.165637 ], [ -62.808838, 4.012220 ], [ -63.094482, 3.771078 ], [ -63.890991, 4.023179 ], [ -64.632568, 4.149201 ], [ -64.819336, 4.061536 ], [ -64.368896, 3.798484 ], [ -64.412842, 3.129546 ], [ -64.270020, 2.498597 ], [ -63.424072, 2.416276 ], [ -63.369141, 2.202216 ], [ -64.083252, 1.916757 ], [ -64.204102, 1.493971 ], [ -64.616089, 1.329226 ], [ -65.357666, 1.098565 ], [ -65.549927, 0.790990 ], [ -66.329956, 0.725078 ], [ -66.879272, 1.257834 ], [ -67.181396, 2.251617 ], [ -67.450562, 2.602864 ], [ -67.500000, 2.635789 ], [ -67.813110, 2.822344 ], [ -67.500000, 3.129546 ], [ -67.307739, 3.321502 ], [ -67.340698, 3.546318 ], [ -67.500000, 3.716264 ], [ -67.626343, 3.842332 ], [ -67.824097, 4.505238 ], [ -67.747192, 5.222247 ], [ -67.521973, 5.561315 ], [ -67.500000, 5.621453 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -67.939453, 6.222473 ], [ -67.939453, 10.552622 ], [ -67.500000, 10.552622 ], [ -67.296753, 10.547221 ], [ -66.231079, 10.649811 ], [ -65.659790, 10.201407 ], [ -64.890747, 10.082446 ], [ -64.330444, 10.390572 ], [ -64.319458, 10.644412 ], [ -63.083496, 10.703792 ], [ -61.885986, 10.719984 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Trinidad and Tobago", "sov_a3": "TTO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Trinidad and Tobago", "adm0_a3": "TTO", "geou_dif": 0, "geounit": "Trinidad and Tobago", "gu_a3": "TTO", "su_dif": 0, "subunit": "Trinidad and Tobago", "su_a3": "TTO", "brk_diff": 0, "name": "Trinidad and Tobago", "name_long": "Trinidad and Tobago", "brk_a3": "TTO", "brk_name": "Trinidad and Tobago", "abbrev": "Tr.T.", "postal": "TT", "formal_en": "Republic of Trinidad and Tobago", "name_sort": "Trinidad and Tobago", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 1310000, "gdp_md_est": 29010, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TT", "iso_a3": "TTO", "iso_n3": "780", "un_a3": "780", "wb_a2": "TT", "wb_a3": "TTO", "woe_id": -99, "adm0_a3_is": "TTO", "adm0_a3_us": "TTO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 19, "long_len": 19, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.105957, 10.892648 ], [ -60.897217, 10.860281 ], [ -60.935669, 10.114894 ], [ -61.770630, 10.001310 ], [ -61.951904, 10.093262 ], [ -61.660767, 10.368958 ], [ -61.682739, 10.763159 ], [ -61.105957, 10.892648 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Guyana", "sov_a3": "GUY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guyana", "adm0_a3": "GUY", "geou_dif": 0, "geounit": "Guyana", "gu_a3": "GUY", "su_dif": 0, "subunit": "Guyana", "su_a3": "GUY", "brk_diff": 0, "name": "Guyana", "name_long": "Guyana", "brk_a3": "GUY", "brk_name": "Guyana", "abbrev": "Guy.", "postal": "GY", "formal_en": "Co-operative Republic of Guyana", "name_sort": "Guyana", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 772298, "gdp_md_est": 2966, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GY", "iso_a3": "GUY", "iso_n3": "328", "un_a3": "328", "wb_a2": "GY", "wb_a3": "GUY", "woe_id": -99, "adm0_a3_is": "GUY", "adm0_a3_us": "GUY", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.760132, 8.369127 ], [ -59.106445, 7.999397 ], [ -58.485718, 7.351571 ], [ -58.458252, 6.833716 ], [ -58.079224, 6.811898 ], [ -57.150879, 5.976680 ], [ -57.310181, 5.074529 ], [ -57.914429, 4.817312 ], [ -57.864990, 4.581901 ], [ -58.046265, 4.061536 ], [ -57.606812, 3.337954 ], [ -57.282715, 3.337954 ], [ -57.150879, 2.772965 ], [ -56.541138, 1.900286 ], [ -56.782837, 1.867345 ], [ -57.337646, 1.949697 ], [ -57.661743, 1.686158 ], [ -58.117676, 1.510445 ], [ -58.430786, 1.466515 ], [ -58.540649, 1.268817 ], [ -59.035034, 1.318243 ], [ -59.650269, 1.790480 ], [ -59.721680, 2.251617 ], [ -59.979858, 2.756504 ], [ -59.820557, 3.606625 ], [ -59.540405, 3.962901 ], [ -59.771118, 4.428567 ], [ -60.111694, 4.576425 ], [ -59.985352, 5.014339 ], [ -60.216064, 5.249598 ], [ -60.737915, 5.200365 ], [ -61.413574, 5.960290 ], [ -61.144409, 6.238855 ], [ -61.160889, 6.697343 ], [ -60.545654, 6.860985 ], [ -60.298462, 7.046379 ], [ -60.639038, 7.416942 ], [ -60.551147, 7.781751 ], [ -59.760132, 8.369127 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Suriname", "sov_a3": "SUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Suriname", "adm0_a3": "SUR", "geou_dif": 0, "geounit": "Suriname", "gu_a3": "SUR", "su_dif": 0, "subunit": "Suriname", "su_a3": "SUR", "brk_diff": 0, "name": "Suriname", "name_long": "Suriname", "brk_a3": "SUR", "brk_name": "Suriname", "abbrev": "Sur.", "postal": "SR", "formal_en": "Republic of Suriname", "name_sort": "Suriname", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 481267, "gdp_md_est": 4254, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "SR", "iso_a3": "SUR", "iso_n3": "740", "un_a3": "740", "wb_a2": "SR", "wb_a3": "SUR", "woe_id": -99, "adm0_a3_is": "SUR", "adm0_a3_us": "SUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.036011, 6.025848 ], [ -53.959351, 5.758105 ], [ -54.481201, 4.899414 ], [ -54.404297, 4.214943 ], [ -54.008789, 3.623071 ], [ -54.184570, 3.189879 ], [ -54.272461, 2.734557 ], [ -54.525146, 2.311994 ], [ -55.101929, 2.526037 ], [ -55.574341, 2.421764 ], [ -55.975342, 2.515061 ], [ -56.074219, 2.224173 ], [ -55.909424, 2.026555 ], [ -55.997314, 1.817932 ], [ -56.541138, 1.900286 ], [ -57.150879, 2.772965 ], [ -57.282715, 3.337954 ], [ -57.606812, 3.337954 ], [ -58.046265, 4.061536 ], [ -57.864990, 4.581901 ], [ -57.914429, 4.817312 ], [ -57.310181, 5.074529 ], [ -57.150879, 5.976680 ], [ -55.953369, 5.774501 ], [ -55.843506, 5.954827 ], [ -55.036011, 6.025848 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.959351, 5.758105 ], [ -52.882690, 5.413680 ], [ -51.828003, 4.570949 ], [ -51.663208, 4.160158 ], [ -52.250977, 3.244724 ], [ -52.558594, 2.509573 ], [ -52.943115, 2.125367 ], [ -53.421021, 2.054003 ], [ -53.558350, 2.339438 ], [ -53.783569, 2.377857 ], [ -54.091187, 2.108899 ], [ -54.525146, 2.311994 ], [ -54.272461, 2.740044 ], [ -54.184570, 3.195364 ], [ -54.014282, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.481201, 4.899414 ], [ -53.959351, 5.758105 ] ] ] } } +, +{ "type": "Feature", "properties": { "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": "Polygon", "coordinates": [ [ [ -60.216064, 5.249598 ], [ -59.985352, 5.014339 ], [ -60.111694, 4.576425 ], [ -59.771118, 4.428567 ], [ -59.540405, 3.962901 ], [ -59.820557, 3.606625 ], [ -59.979858, 2.756504 ], [ -59.721680, 2.251617 ], [ -59.650269, 1.790480 ], [ -59.035034, 1.318243 ], [ -58.540649, 1.268817 ], [ -58.430786, 1.466515 ], [ -58.117676, 1.510445 ], [ -57.661743, 1.686158 ], [ -57.337646, 1.949697 ], [ -56.782837, 1.867345 ], [ -56.541138, 1.900286 ], [ -55.997314, 1.817932 ], [ -55.909424, 2.026555 ], [ -56.074219, 2.224173 ], [ -55.975342, 2.515061 ], [ -55.574341, 2.421764 ], [ -55.101929, 2.526037 ], [ -54.525146, 2.311994 ], [ -54.091187, 2.108899 ], [ -53.783569, 2.377857 ], [ -53.558350, 2.339438 ], [ -53.421021, 2.054003 ], [ -52.943115, 2.125367 ], [ -52.558594, 2.509573 ], [ -52.250977, 3.244724 ], [ -51.663208, 4.160158 ], [ -51.322632, 4.203986 ], [ -51.069946, 3.650482 ], [ -50.509644, 1.905776 ], [ -49.976807, 1.741065 ], [ -49.949341, 1.049136 ], [ -50.701904, 0.225219 ], [ -50.471191, 0.000000 ], [ -50.388794, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.614502, -0.439449 ], [ -67.939453, -0.439449 ], [ -67.939453, 1.697139 ], [ -67.873535, 1.697139 ], [ -67.538452, 2.037534 ], [ -67.500000, 1.999106 ], [ -67.263794, 1.724593 ], [ -67.066040, 1.131518 ], [ -66.879272, 1.257834 ], [ -66.329956, 0.725078 ], [ -65.549927, 0.790990 ], [ -65.357666, 1.098565 ], [ -64.616089, 1.329226 ], [ -64.204102, 1.493971 ], [ -64.083252, 1.916757 ], [ -63.369141, 2.202216 ], [ -63.424072, 2.416276 ], [ -64.270020, 2.498597 ], [ -64.412842, 3.129546 ], [ -64.368896, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.632568, 4.149201 ], [ -63.890991, 4.023179 ], [ -63.094482, 3.771078 ], [ -62.808838, 4.012220 ], [ -62.089233, 4.165637 ], [ -60.968628, 4.538094 ], [ -60.606079, 4.921306 ], [ -60.737915, 5.200365 ], [ -60.216064, 5.249598 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -67.939453, 49.267805 ], [ -67.939453, 56.022948 ], [ -61.051025, 56.022948 ], [ -60.474243, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -67.500000, 49.421694 ], [ -67.939453, 49.267805 ] ] ], [ [ [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ] ] ], [ [ [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ] ] ], [ [ [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ] ] ], [ [ [ -67.939453, 48.585692 ], [ -67.500000, 48.759810 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.500000, 45.452424 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -67.939453, 47.163575 ], [ -67.939453, 48.585692 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.939453, 47.163575 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.500000, 45.452424 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.813019 ], [ -67.500000, 44.570904 ], [ -67.939453, 44.370987 ], [ -67.939453, 47.163575 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "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": [ [ [ [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.474243, 55.776573 ], [ -60.078735, 55.528631 ], [ -67.939453, 55.528631 ], [ -67.939453, 58.450607 ], [ -67.653809, 58.214132 ], [ -67.500000, 58.271954 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ] ] ], [ [ [ -67.939453, 66.271278 ], [ -67.939453, 66.687784 ], [ -61.935425, 66.687784 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -67.500000, 66.313242 ], [ -67.939453, 66.271278 ] ] ], [ [ [ -67.939453, 63.236101 ], [ -67.500000, 62.965212 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -67.500000, 62.129572 ], [ -67.939453, 62.193702 ], [ -67.939453, 63.236101 ] ] ], [ [ [ -67.939453, 65.581179 ], [ -67.500000, 65.337055 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -67.500000, 63.339808 ], [ -67.939453, 63.479957 ], [ -67.939453, 65.581179 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 66.687784 ], [ -44.560547, 60.048389 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.157910 ], [ -46.268921, 60.855613 ], [ -48.268433, 60.860963 ], [ -49.235229, 61.407236 ], [ -49.905396, 62.385277 ], [ -51.635742, 63.629185 ], [ -52.141113, 64.280376 ], [ -52.278442, 65.178418 ], [ -53.662720, 66.100494 ], [ -53.464966, 66.513260 ], [ -53.377075, 66.687784 ], [ -44.560547, 66.687784 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "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": [ [ [ [ -67.939453, 68.483955 ], [ -67.500000, 68.360725 ], [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.012329, 66.513260 ], [ -62.089233, 66.337505 ], [ -66.637573, 66.337505 ], [ -66.725464, 66.388161 ], [ -67.247314, 66.337505 ], [ -67.939453, 66.337505 ], [ -67.939453, 68.483955 ] ] ], [ [ [ -67.939453, 68.942607 ], [ -67.939453, 70.134765 ], [ -67.917480, 70.123562 ], [ -67.500000, 69.718107 ], [ -66.972656, 69.187945 ], [ -67.500000, 69.052858 ], [ -67.939453, 68.942607 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 74.140084 ], [ -44.560547, 66.337505 ], [ -53.547363, 66.337505 ], [ -53.464966, 66.513260 ], [ -53.305664, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.358699 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.148876 ], [ -50.872192, 69.930300 ], [ -52.014771, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.285314 ], [ -54.684448, 69.611206 ], [ -54.750366, 70.290969 ], [ -54.360352, 70.823031 ], [ -53.432007, 70.837461 ], [ -51.394043, 70.570631 ], [ -53.113403, 71.205460 ], [ -54.008789, 71.547525 ], [ -55.003052, 71.407923 ], [ -55.838013, 71.655020 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.959925 ], [ -56.123657, 73.650999 ], [ -56.535645, 74.019543 ], [ -56.667480, 74.140084 ], [ -44.560547, 74.140084 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 79.253586 ], [ -44.560547, 73.898111 ], [ -56.398315, 73.898111 ], [ -56.535645, 74.019543 ], [ -57.326660, 74.710796 ], [ -58.601074, 75.099871 ], [ -58.590088, 75.517778 ], [ -61.270752, 76.103435 ], [ -63.396606, 76.175811 ], [ -66.066284, 76.135063 ], [ -67.500000, 76.092877 ], [ -67.939453, 76.079668 ], [ -67.939453, 77.346257 ], [ -67.500000, 77.357083 ], [ -66.769409, 77.376305 ], [ -67.500000, 77.421844 ], [ -67.939453, 77.448134 ], [ -67.939453, 79.105086 ], [ -67.500000, 79.163075 ], [ -67.434082, 79.171335 ], [ -66.802368, 79.253586 ], [ -44.560547, 79.253586 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "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": "Polygon", "coordinates": [ [ [ -62.545166, 82.732092 ], [ -62.171631, 82.676285 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.500000, 81.540928 ], [ -67.659302, 81.502052 ], [ -67.500000, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.500000, 80.990573 ], [ -67.840576, 80.900669 ], [ -67.939453, 80.883278 ], [ -67.939453, 82.732092 ], [ -62.545166, 82.732092 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -44.560547, 81.666853 ], [ -44.560547, 79.088462 ], [ -67.939453, 79.088462 ], [ -67.939453, 79.105086 ], [ -67.434082, 79.171335 ], [ -65.714722, 79.395031 ], [ -65.324707, 79.758726 ], [ -67.500000, 80.049510 ], [ -67.939453, 80.106301 ], [ -67.939453, 80.156200 ], [ -67.500000, 80.358836 ], [ -67.153931, 80.516698 ], [ -63.693237, 81.214014 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.287476, 82.034330 ], [ -57.211304, 82.191114 ], [ -54.135132, 82.200065 ], [ -53.047485, 81.888381 ], [ -50.394287, 82.439374 ], [ -48.004761, 82.065480 ], [ -46.604004, 81.986228 ], [ -45.000000, 81.736620 ], [ -44.560547, 81.666853 ] ] ], [ [ [ -44.560547, 81.670037 ], [ -45.000000, 81.772072 ], [ -46.906128, 82.200065 ], [ -46.768799, 82.628514 ], [ -46.505127, 82.676285 ], [ -46.203003, 82.732092 ], [ -44.560547, 82.732092 ], [ -44.560547, 81.670037 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "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": "Polygon", "coordinates": [ [ [ -67.939453, 83.090616 ], [ -67.500000, 83.077387 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -62.171631, 82.676285 ], [ -61.853027, 82.629219 ], [ -61.853027, 82.620052 ], [ -67.939453, 82.620052 ], [ -67.939453, 83.090616 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 83.025552 ], [ -44.560547, 82.620052 ], [ -46.768799, 82.620052 ], [ -46.768799, 82.628514 ], [ -46.505127, 82.676285 ], [ -45.000000, 82.948424 ], [ -44.560547, 83.025552 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -22.060547, -82.620052 ], [ -22.060547, -85.088894 ], [ -45.439453, -85.088894 ], [ -45.439453, -82.620052 ], [ -22.060547, -82.620052 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ -22.060547, -79.088462 ], [ -22.060547, -82.732092 ], [ -45.439453, -82.732092 ], [ -45.439453, -81.812068 ], [ -45.000000, -81.836284 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.853882, -79.171335 ], [ -35.914307, -79.088462 ], [ -22.060547, -79.088462 ] ] ], [ [ [ -43.489380, -79.088462 ], [ -43.467407, -79.171335 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -45.000000, -80.357916 ], [ -45.439453, -80.427590 ], [ -45.439453, -79.088462 ], [ -43.489380, -79.088462 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "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": [ [ [ [ -45.439453, -78.006183 ], [ -45.159302, -78.046071 ], [ -45.000000, -78.101694 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.467407, -79.171335 ], [ -43.445435, -79.253586 ], [ -45.439453, -79.253586 ], [ -45.439453, -78.006183 ] ] ], [ [ [ -22.060547, -76.041292 ], [ -22.060547, -79.253586 ], [ -35.793457, -79.253586 ], [ -35.853882, -79.171335 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.500000, -76.108711 ], [ -22.461548, -76.104754 ], [ -22.060547, -76.041292 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -40.880127, -21.534847 ], [ -40.946045, -21.932855 ], [ -40.957031, -21.943046 ], [ -41.759033, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.963451 ], [ -44.648438, -23.347299 ], [ -45.000000, -23.574057 ], [ -45.357056, -23.795398 ], [ -45.439453, -23.815501 ], [ -45.439453, -21.534847 ], [ -40.880127, -21.534847 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "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": "Polygon", "coordinates": [ [ [ -45.439453, -1.351193 ], [ -45.000000, -1.515936 ], [ -44.906616, -1.548884 ], [ -44.417725, -2.136346 ], [ -44.582520, -2.690661 ], [ -43.423462, -2.377857 ], [ -41.473389, -2.910125 ], [ -39.979248, -2.871722 ], [ -38.501587, -3.699819 ], [ -37.227173, -4.817312 ], [ -36.458130, -5.107358 ], [ -35.601196, -5.145657 ], [ -35.238647, -5.462896 ], [ -34.733276, -7.340675 ], [ -35.128784, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.051392, -11.038255 ], [ -37.688599, -12.168226 ], [ -38.424683, -13.036669 ], [ -38.677368, -13.052724 ], [ -38.957520, -13.790071 ], [ -38.886108, -15.665354 ], [ -39.166260, -17.203770 ], [ -39.270630, -17.863747 ], [ -39.583740, -18.260653 ], [ -39.765015, -19.596019 ], [ -40.775757, -20.899871 ], [ -40.946045, -21.932855 ], [ -40.957031, -21.943046 ], [ -41.720581, -22.350076 ], [ -45.439453, -22.350076 ], [ -45.439453, -1.351193 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -34.194946, 66.687784 ], [ -34.205933, 66.681261 ], [ -34.722290, 66.513260 ], [ -36.353760, 65.980034 ], [ -37.045898, 65.939754 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.460542 ], [ -40.671387, 64.841932 ], [ -40.687866, 64.139369 ], [ -41.193237, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.379517, 60.100457 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.157910 ], [ -45.439453, 60.400289 ], [ -45.439453, 66.687784 ], [ -34.194946, 66.687784 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iceland", "sov_a3": "ISL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iceland", "adm0_a3": "ISL", "geou_dif": 0, "geounit": "Iceland", "gu_a3": "ISL", "su_dif": 0, "subunit": "Iceland", "su_a3": "ISL", "brk_diff": 0, "name": "Iceland", "name_long": "Iceland", "brk_a3": "ISL", "brk_name": "Iceland", "abbrev": "Iceland", "postal": "IS", "formal_en": "Republic of Iceland", "name_sort": "Iceland", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 306694, "gdp_md_est": 12710, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IS", "iso_a3": "ISL", "iso_n3": "352", "un_a3": "352", "wb_a2": "IS", "wb_a3": "ISL", "woe_id": -99, "adm0_a3_is": "ISL", "adm0_a3_us": "ISL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.060547, 64.468059 ], [ -22.500000, 64.567319 ], [ -23.955688, 64.893259 ], [ -22.500000, 65.051285 ], [ -22.186890, 65.086018 ], [ -22.230835, 65.380571 ], [ -22.500000, 65.410303 ], [ -24.329224, 65.612952 ], [ -23.653564, 66.264645 ], [ -22.500000, 66.374956 ], [ -22.137451, 66.412352 ], [ -22.060547, 66.379359 ], [ -22.060547, 64.468059 ] ] ], [ [ [ -22.060547, 64.277992 ], [ -22.060547, 63.881808 ], [ -22.500000, 63.932545 ], [ -22.763672, 63.961496 ], [ -22.500000, 64.079404 ], [ -22.060547, 64.277992 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, 74.140084 ], [ -22.060547, 73.323130 ], [ -22.175903, 73.310514 ], [ -22.500000, 73.308936 ], [ -23.571167, 73.307358 ], [ -22.500000, 72.733112 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -22.500000, 72.227132 ], [ -24.279785, 72.598908 ], [ -24.796143, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.500000, 71.642914 ], [ -22.137451, 71.469124 ], [ -22.060547, 71.318396 ], [ -22.060547, 70.630841 ], [ -22.500000, 70.583418 ], [ -23.538208, 70.471717 ], [ -24.307251, 70.857286 ], [ -25.548706, 71.432427 ], [ -25.202637, 70.752534 ], [ -26.367188, 70.227886 ], [ -23.730469, 70.185103 ], [ -22.500000, 70.136632 ], [ -22.351685, 70.131032 ], [ -22.500000, 70.082434 ], [ -25.032349, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.777954, 68.122482 ], [ -32.816162, 67.736516 ], [ -34.205933, 66.681261 ], [ -34.722290, 66.513260 ], [ -35.260620, 66.337505 ], [ -45.439453, 66.337505 ], [ -45.439453, 74.140084 ], [ -22.060547, 74.140084 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iceland", "sov_a3": "ISL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iceland", "adm0_a3": "ISL", "geou_dif": 0, "geounit": "Iceland", "gu_a3": "ISL", "su_dif": 0, "subunit": "Iceland", "su_a3": "ISL", "brk_diff": 0, "name": "Iceland", "name_long": "Iceland", "brk_a3": "ISL", "brk_name": "Iceland", "abbrev": "Iceland", "postal": "IS", "formal_en": "Republic of Iceland", "name_sort": "Iceland", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 306694, "gdp_md_est": 12710, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IS", "iso_a3": "ISL", "iso_n3": "352", "un_a3": "352", "wb_a2": "IS", "wb_a3": "ISL", "woe_id": -99, "adm0_a3_is": "ISL", "adm0_a3_us": "ISL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.137451, 66.412352 ], [ -22.060547, 66.379359 ], [ -22.060547, 66.337505 ], [ -22.884521, 66.337505 ], [ -22.137451, 66.412352 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, 79.253586 ], [ -22.060547, 73.898111 ], [ -45.439453, 73.898111 ], [ -45.439453, 79.253586 ], [ -22.060547, 79.253586 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, 82.732092 ], [ -22.060547, 82.476146 ], [ -22.500000, 82.382789 ], [ -22.692261, 82.341904 ], [ -26.520996, 82.297857 ], [ -31.904297, 82.200065 ], [ -31.398926, 82.022140 ], [ -27.861328, 82.131931 ], [ -24.845581, 81.786995 ], [ -22.906494, 82.093487 ], [ -22.500000, 81.921643 ], [ -22.077026, 81.735041 ], [ -22.500000, 81.512599 ], [ -23.170166, 81.153396 ], [ -22.500000, 81.252526 ], [ -22.060547, 81.317447 ], [ -22.060547, 79.088462 ], [ -45.439453, 79.088462 ], [ -45.439453, 81.806589 ], [ -45.000000, 81.736620 ], [ -44.527588, 81.661279 ], [ -45.000000, 81.772072 ], [ -45.439453, 81.872865 ], [ -45.439453, 82.732092 ], [ -22.060547, 82.732092 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ], [ -22.500000, 82.945726 ], [ -22.060547, 82.888151 ], [ -22.060547, 82.620052 ], [ -45.439453, 82.620052 ], [ -45.439453, 82.869765 ], [ -45.000000, 82.948424 ], [ -43.406982, 83.225420 ], [ -39.902344, 83.180561 ], [ -38.622437, 83.549234 ], [ -35.090332, 83.645406 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 0.439453, -82.620052 ], [ 0.439453, -85.088894 ], [ -22.939453, -85.088894 ], [ -22.939453, -82.620052 ], [ 0.439453, -82.620052 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 0.439453, -79.088462 ], [ 0.439453, -82.732092 ], [ -22.939453, -82.732092 ], [ -22.939453, -79.088462 ], [ 0.439453, -79.088462 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 0.439453, -73.898111 ], [ 0.439453, -79.253586 ], [ -22.939453, -79.253586 ], [ -22.939453, -76.149535 ], [ -22.500000, -76.108711 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -15.803833, -74.019543 ], [ -16.347656, -73.898111 ], [ 0.439453, -73.898111 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "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": "Polygon", "coordinates": [ [ [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.000000, -71.568378 ], [ 0.439453, -71.434176 ], [ 0.439453, -74.140084 ], [ -15.435791, -74.140084 ], [ -15.408325, -74.105519 ], [ -15.803833, -74.019543 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 7, "sovereignt": "Western Sahara", "sov_a3": "SAH", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Western Sahara", "adm0_a3": "SAH", "geou_dif": 0, "geounit": "Western Sahara", "gu_a3": "SAH", "su_dif": 0, "subunit": "Western Sahara", "su_a3": "SAH", "brk_diff": 1, "name": "W. Sahara", "name_long": "Western Sahara", "brk_a3": "B28", "brk_name": "W. Sahara", "abbrev": "W. Sah.", "postal": "WS", "formal_en": "Sahrawi Arab Democratic Republic", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Morocco", "name_sort": "Western Sahara", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 4, "mapcolor13": 4, "pop_est": -99, "gdp_md_est": -99, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "EH", "iso_a3": "ESH", "iso_n3": "732", "un_a3": "732", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "SAH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 14, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.068237, 22.350076 ], [ -12.930908, 21.330315 ], [ -16.847534, 21.335432 ], [ -17.067261, 21.002471 ], [ -17.023315, 21.422390 ], [ -14.754639, 21.504186 ], [ -14.633789, 21.861499 ], [ -14.556885, 21.943046 ], [ -14.221802, 22.314508 ], [ -14.216309, 22.350076 ], [ -13.068237, 22.350076 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.216309, 22.350076 ], [ -14.221802, 22.314508 ], [ -14.556885, 21.943046 ], [ -14.633789, 21.861499 ], [ -14.754639, 21.504186 ], [ -17.023315, 21.422390 ], [ -16.973877, 21.886987 ], [ -16.896973, 21.943046 ], [ -16.589355, 22.161971 ], [ -16.473999, 22.350076 ], [ -14.216309, 22.350076 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "name_sort": "Senegal", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.578857, 16.599346 ], [ -14.100952, 16.304323 ], [ -13.436279, 16.040534 ], [ -12.832031, 15.305380 ], [ -12.172852, 14.620794 ], [ -12.128906, 13.998037 ], [ -11.931152, 13.427024 ], [ -11.557617, 13.143678 ], [ -11.469727, 12.758232 ], [ -11.519165, 12.447305 ], [ -11.661987, 12.388294 ], [ -12.205811, 12.468760 ], [ -12.282715, 12.356100 ], [ -12.502441, 12.334636 ], [ -13.222046, 12.576010 ], [ -15.551147, 12.629618 ], [ -15.820312, 12.517028 ], [ -16.149902, 12.549202 ], [ -16.682739, 12.388294 ], [ -16.842041, 13.154376 ], [ -15.935669, 13.132979 ], [ -15.693970, 13.272026 ], [ -15.512695, 13.282719 ], [ -15.144653, 13.512497 ], [ -14.716187, 13.298757 ], [ -14.282227, 13.282719 ], [ -13.848267, 13.507155 ], [ -14.051514, 13.795406 ], [ -14.381104, 13.629972 ], [ -14.688721, 13.635310 ], [ -15.084229, 13.880746 ], [ -15.402832, 13.864747 ], [ -15.628052, 13.624633 ], [ -16.715698, 13.597939 ], [ -17.127686, 14.376155 ], [ -17.627563, 14.732386 ], [ -17.188110, 14.923554 ], [ -16.704712, 15.623037 ], [ -16.468506, 16.135539 ], [ -16.122437, 16.457159 ], [ -15.628052, 16.372851 ], [ -15.139160, 16.588817 ], [ -14.578857, 16.599346 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guinea", "sov_a3": "GIN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea", "adm0_a3": "GIN", "geou_dif": 0, "geounit": "Guinea", "gu_a3": "GIN", "su_dif": 0, "subunit": "Guinea", "su_a3": "GIN", "brk_diff": 0, "name": "Guinea", "name_long": "Guinea", "brk_a3": "GIN", "brk_name": "Guinea", "abbrev": "Gin.", "postal": "GN", "formal_en": "Republic of Guinea", "name_sort": "Guinea", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 10057975, "gdp_md_est": 10600, "pop_year": -99, "lastcensus": 1996, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GN", "iso_a3": "GIN", "iso_n3": "324", "un_a3": "324", "wb_a2": "GN", "wb_a3": "GIN", "woe_id": -99, "adm0_a3_is": "GIN", "adm0_a3_us": "GIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.705444, 12.586732 ], [ -13.222046, 12.576010 ], [ -12.502441, 12.334636 ], [ -12.282715, 12.356100 ], [ -12.205811, 12.468760 ], [ -11.661987, 12.388294 ], [ -11.519165, 12.447305 ], [ -11.458740, 12.076924 ], [ -11.299438, 12.082296 ], [ -11.041260, 12.216549 ], [ -10.870972, 12.178965 ], [ -10.596313, 11.926478 ], [ -10.167847, 11.845847 ], [ -9.893188, 12.060809 ], [ -9.569092, 12.195073 ], [ -9.332886, 12.334636 ], [ -9.129639, 12.313169 ], [ -8.909912, 12.093039 ], [ -8.789062, 11.813588 ], [ -8.377075, 11.393879 ], [ -8.585815, 11.140677 ], [ -8.624268, 10.811724 ], [ -8.410034, 10.914224 ], [ -8.283691, 10.795537 ], [ -8.338623, 10.498614 ], [ -8.031006, 10.206813 ], [ -8.234253, 10.131117 ], [ -8.311157, 9.790264 ], [ -8.080444, 9.378612 ], [ -7.833252, 8.581021 ], [ -8.206787, 8.456072 ], [ -8.300171, 8.320212 ], [ -8.223267, 8.124491 ], [ -8.283691, 7.689217 ], [ -8.442993, 7.689217 ], [ -8.723145, 7.716435 ], [ -8.926392, 7.313433 ], [ -9.212036, 7.318882 ], [ -9.404297, 7.531319 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.542998 ], [ -10.019531, 8.428904 ], [ -10.233765, 8.407168 ], [ -10.508423, 8.352823 ], [ -10.497437, 8.716789 ], [ -10.656738, 8.977323 ], [ -10.623779, 9.270201 ], [ -10.843506, 9.692813 ], [ -11.118164, 10.049994 ], [ -11.920166, 10.049994 ], [ -12.150879, 9.860628 ], [ -12.431030, 9.838979 ], [ -12.601318, 9.622414 ], [ -12.716675, 9.346092 ], [ -13.249512, 8.906780 ], [ -13.688965, 9.497826 ], [ -14.078979, 9.887687 ], [ -14.331665, 10.017539 ], [ -14.584351, 10.217625 ], [ -14.694214, 10.660608 ], [ -14.842529, 10.881859 ], [ -15.133667, 11.043647 ], [ -14.688721, 11.528470 ], [ -14.386597, 11.512322 ], [ -14.122925, 11.679135 ], [ -13.903198, 11.679135 ], [ -13.743896, 11.813588 ], [ -13.831787, 12.146746 ], [ -13.721924, 12.248760 ], [ -13.705444, 12.586732 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.163330, 22.350076 ], [ -6.119385, 21.943046 ], [ -5.493164, 16.325411 ], [ -5.317383, 16.204125 ], [ -5.542603, 15.506619 ], [ -9.552612, 15.490739 ], [ -9.700928, 15.268288 ], [ -10.090942, 15.331870 ], [ -10.651245, 15.135764 ], [ -11.354370, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.837769, 14.801439 ], [ -12.172852, 14.620794 ], [ -12.832031, 15.305380 ], [ -13.436279, 16.040534 ], [ -14.100952, 16.304323 ], [ -14.578857, 16.599346 ], [ -15.139160, 16.588817 ], [ -15.628052, 16.372851 ], [ -16.122437, 16.457159 ], [ -16.468506, 16.135539 ], [ -16.550903, 16.678293 ], [ -16.270752, 17.167034 ], [ -16.149902, 18.109308 ], [ -16.259766, 19.098458 ], [ -16.380615, 19.596019 ], [ -16.281738, 20.097206 ], [ -16.539917, 20.571082 ], [ -17.067261, 21.002471 ], [ -16.847534, 21.335432 ], [ -12.930908, 21.330315 ], [ -13.068237, 22.350076 ], [ -6.163330, 22.350076 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.862427, 22.350076 ], [ -0.230713, 21.943046 ], [ 0.000000, 21.795208 ], [ 0.439453, 21.514407 ], [ 0.439453, 14.934170 ], [ 0.000000, 14.928862 ], [ -0.269165, 14.928862 ], [ -0.516357, 15.119856 ], [ -1.071167, 14.976627 ], [ -2.005005, 14.562318 ], [ -2.197266, 14.248411 ], [ -2.971802, 13.800741 ], [ -3.109131, 13.544541 ], [ -3.526611, 13.341520 ], [ -4.010010, 13.475106 ], [ -4.284668, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.223999, 11.716788 ], [ -5.202026, 11.377724 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.374362 ], [ -5.817261, 10.223031 ], [ -6.053467, 10.098670 ], [ -6.207275, 10.525619 ], [ -6.498413, 10.412183 ], [ -6.668701, 10.433793 ], [ -6.855469, 10.141932 ], [ -7.624512, 10.147339 ], [ -7.904663, 10.298706 ], [ -8.031006, 10.206813 ], [ -8.338623, 10.498614 ], [ -8.283691, 10.795537 ], [ -8.410034, 10.914224 ], [ -8.624268, 10.811724 ], [ -8.585815, 11.140677 ], [ -8.377075, 11.393879 ], [ -8.789062, 11.813588 ], [ -8.909912, 12.093039 ], [ -9.129639, 12.313169 ], [ -9.332886, 12.334636 ], [ -9.569092, 12.195073 ], [ -9.893188, 12.060809 ], [ -10.167847, 11.845847 ], [ -10.596313, 11.926478 ], [ -10.870972, 12.178965 ], [ -11.041260, 12.216549 ], [ -11.299438, 12.082296 ], [ -11.458740, 12.076924 ], [ -11.519165, 12.447305 ], [ -11.469727, 12.758232 ], [ -11.557617, 13.143678 ], [ -11.931152, 13.427024 ], [ -12.128906, 13.998037 ], [ -12.172852, 14.620794 ], [ -11.837769, 14.801439 ], [ -11.667480, 15.390136 ], [ -11.354370, 15.411319 ], [ -10.651245, 15.135764 ], [ -10.090942, 15.331870 ], [ -9.700928, 15.268288 ], [ -9.552612, 15.490739 ], [ -5.542603, 15.506619 ], [ -5.317383, 16.204125 ], [ -5.493164, 16.325411 ], [ -6.119385, 21.943046 ], [ -6.163330, 22.350076 ], [ -0.862427, 22.350076 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.516357, 15.119856 ], [ -0.269165, 14.928862 ], [ 0.000000, 14.928862 ], [ 0.373535, 14.934170 ], [ 0.291138, 14.445319 ], [ 0.428467, 13.992706 ], [ 0.439453, 13.982046 ], [ 0.439453, 11.011297 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.102947 ], [ -0.763550, 10.941192 ], [ -1.208496, 11.011297 ], [ -2.944336, 10.962764 ], [ -2.966309, 10.395975 ], [ -2.828979, 9.644077 ], [ -3.515625, 9.903921 ], [ -3.982544, 9.866040 ], [ -4.334106, 9.611582 ], [ -4.784546, 9.822742 ], [ -4.954834, 10.152746 ], [ -5.405273, 10.374362 ], [ -5.471191, 10.951978 ], [ -5.202026, 11.377724 ], [ -5.223999, 11.716788 ], [ -4.427490, 12.543840 ], [ -4.284668, 13.229251 ], [ -4.010010, 13.475106 ], [ -3.526611, 13.341520 ], [ -3.109131, 13.544541 ], [ -2.971802, 13.800741 ], [ -2.197266, 14.248411 ], [ -2.005005, 14.562318 ], [ -1.071167, 14.976627 ], [ -0.516357, 15.119856 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ivory Coast", "sov_a3": "CIV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ivory Coast", "adm0_a3": "CIV", "geou_dif": 0, "geounit": "Ivory Coast", "gu_a3": "CIV", "su_dif": 0, "subunit": "Ivory Coast", "su_a3": "CIV", "brk_diff": 0, "name": "Côte d'Ivoire", "name_long": "Côte d'Ivoire", "brk_a3": "CIV", "brk_name": "Côte d'Ivoire", "abbrev": "I.C.", "postal": "CI", "formal_en": "Republic of Ivory Coast", "formal_fr": "Republic of Cote D'Ivoire", "name_sort": "Côte d'Ivoire", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 20617068, "gdp_md_est": 33850, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CI", "iso_a3": "CIV", "iso_n3": "384", "un_a3": "384", "wb_a2": "CI", "wb_a3": "CIV", "woe_id": -99, "adm0_a3_is": "CIV", "adm0_a3_us": "CIV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 13, "long_len": 13, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.207275, 10.525619 ], [ -6.053467, 10.098670 ], [ -5.817261, 10.223031 ], [ -5.405273, 10.374362 ], [ -4.954834, 10.152746 ], [ -4.784546, 9.822742 ], [ -4.334106, 9.611582 ], [ -3.982544, 9.866040 ], [ -3.515625, 9.903921 ], [ -2.828979, 9.644077 ], [ -2.565308, 8.222364 ], [ -2.988281, 7.384258 ], [ -3.246460, 6.255237 ], [ -2.812500, 5.391805 ], [ -2.856445, 4.997922 ], [ -3.312378, 4.986977 ], [ -4.010010, 5.183953 ], [ -4.652710, 5.173011 ], [ -5.839233, 4.997922 ], [ -6.531372, 4.707828 ], [ -7.520142, 4.340934 ], [ -7.712402, 4.368320 ], [ -7.635498, 5.189423 ], [ -7.542114, 5.315236 ], [ -7.575073, 5.708914 ], [ -7.998047, 6.129631 ], [ -8.316650, 6.195168 ], [ -8.607788, 6.468151 ], [ -8.388062, 6.915521 ], [ -8.486938, 7.400600 ], [ -8.442993, 7.689217 ], [ -8.283691, 7.689217 ], [ -8.223267, 8.124491 ], [ -8.300171, 8.320212 ], [ -8.206787, 8.456072 ], [ -7.833252, 8.581021 ], [ -8.080444, 9.378612 ], [ -8.311157, 9.790264 ], [ -8.234253, 10.131117 ], [ -8.031006, 10.206813 ], [ -7.904663, 10.298706 ], [ -7.624512, 10.147339 ], [ -6.855469, 10.141932 ], [ -6.668701, 10.433793 ], [ -6.498413, 10.412183 ], [ -6.207275, 10.525619 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 22.350076 ], [ 0.439453, 21.514407 ], [ 0.000000, 21.795208 ], [ -0.230713, 21.943046 ], [ -0.862427, 22.350076 ], [ 0.439453, 22.350076 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 14.934170 ], [ 0.439453, 13.982046 ], [ 0.428467, 13.992706 ], [ 0.291138, 14.445319 ], [ 0.373535, 14.934170 ], [ 0.439453, 14.934170 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.022080 ], [ 0.439453, 11.011297 ], [ 0.439453, 8.857934 ], [ 0.362549, 9.465317 ], [ 0.362549, 10.196000 ], [ 0.000000, 10.649811 ], [ -0.054932, 10.709189 ], [ 0.000000, 10.919618 ], [ 0.021973, 11.022080 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 7, "sovereignt": "Western Sahara", "sov_a3": "SAH", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Western Sahara", "adm0_a3": "SAH", "geou_dif": 0, "geounit": "Western Sahara", "gu_a3": "SAH", "su_dif": 0, "subunit": "Western Sahara", "su_a3": "SAH", "brk_diff": 1, "name": "W. Sahara", "name_long": "Western Sahara", "brk_a3": "B28", "brk_name": "W. Sahara", "abbrev": "W. Sah.", "postal": "WS", "formal_en": "Sahrawi Arab Democratic Republic", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Morocco", "name_sort": "Western Sahara", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 4, "mapcolor13": 4, "pop_est": -99, "gdp_md_est": -99, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "EH", "iso_a3": "ESH", "iso_n3": "732", "un_a3": "732", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "SAH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 14, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.668213, 27.659204 ], [ -8.684692, 27.396155 ], [ -8.690186, 25.883937 ], [ -11.969604, 25.938287 ], [ -11.942139, 23.377556 ], [ -12.875977, 23.286765 ], [ -13.123169, 22.776182 ], [ -13.013306, 21.943046 ], [ -12.958374, 21.534847 ], [ -14.743652, 21.534847 ], [ -14.633789, 21.861499 ], [ -14.556885, 21.943046 ], [ -14.221802, 22.314508 ], [ -13.892212, 23.694835 ], [ -12.502441, 24.771772 ], [ -12.035522, 26.032106 ], [ -11.722412, 26.106121 ], [ -11.392822, 26.887780 ], [ -10.552368, 26.995513 ], [ -10.189819, 26.863281 ], [ -9.739380, 26.863281 ], [ -9.415283, 27.093364 ], [ -8.800049, 27.122702 ], [ -8.822021, 27.659204 ], [ -8.668213, 27.659204 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 41.310824 ], [ 0.439453, 40.426042 ], [ 0.104370, 40.124291 ], [ 0.000000, 39.901309 ], [ -0.280151, 39.313050 ], [ 0.000000, 38.903858 ], [ 0.109863, 38.741231 ], [ 0.000000, 38.655488 ], [ -0.472412, 38.294248 ], [ -0.686646, 37.644685 ], [ -1.439209, 37.444335 ], [ -2.147827, 36.677231 ], [ -3.416748, 36.659606 ], [ -4.372559, 36.681636 ], [ -4.998779, 36.328403 ], [ -5.377808, 35.946883 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.520386, 36.945502 ], [ -7.454224, 37.099003 ], [ -7.542114, 37.431251 ], [ -7.168579, 37.805444 ], [ -7.031250, 38.078366 ], [ -7.377319, 38.376115 ], [ -7.102661, 39.031986 ], [ -7.503662, 39.631077 ], [ -7.069702, 39.715638 ], [ -7.031250, 40.187267 ], [ -6.866455, 40.333983 ], [ -6.855469, 40.979898 ], [ -6.855469, 41.112469 ], [ -6.514893, 41.310824 ], [ 0.439453, 41.310824 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.932617, 35.764343 ], [ -5.196533, 35.755428 ], [ -4.592285, 35.330812 ], [ -3.641968, 35.402484 ], [ -2.609253, 35.182788 ], [ -2.175293, 35.169318 ], [ -1.796265, 34.529187 ], [ -1.735840, 33.920572 ], [ -1.389771, 32.865746 ], [ -1.126099, 32.653251 ], [ -1.312866, 32.263911 ], [ -2.620239, 32.096536 ], [ -3.070679, 31.728167 ], [ -3.652954, 31.639352 ], [ -3.691406, 30.897511 ], [ -4.861450, 30.505484 ], [ -5.245972, 30.002517 ], [ -6.064453, 29.735762 ], [ -7.064209, 29.583012 ], [ -8.679199, 28.844674 ], [ -8.668213, 27.659204 ], [ -8.822021, 27.659204 ], [ -8.800049, 27.122702 ], [ -9.415283, 27.093364 ], [ -9.739380, 26.863281 ], [ -10.189819, 26.863281 ], [ -10.552368, 26.995513 ], [ -11.392822, 26.887780 ], [ -11.722412, 26.106121 ], [ -12.035522, 26.032106 ], [ -12.502441, 24.771772 ], [ -13.892212, 23.694835 ], [ -14.221802, 22.314508 ], [ -14.556885, 21.943046 ], [ -14.633789, 21.861499 ], [ -14.743652, 21.534847 ], [ -17.012329, 21.534847 ], [ -16.973877, 21.886987 ], [ -16.896973, 21.943046 ], [ -16.589355, 22.161971 ], [ -16.265259, 22.679916 ], [ -16.331177, 23.019076 ], [ -15.985107, 23.725012 ], [ -15.430298, 24.362110 ], [ -15.089722, 24.522137 ], [ -14.826050, 25.105497 ], [ -14.804077, 25.636574 ], [ -14.441528, 26.258936 ], [ -13.776855, 26.622908 ], [ -13.145142, 27.644606 ], [ -12.623291, 28.042895 ], [ -11.689453, 28.149503 ], [ -10.903931, 28.835050 ], [ -10.404053, 29.099377 ], [ -9.569092, 29.935895 ], [ -9.816284, 31.179910 ], [ -9.437256, 32.040677 ], [ -9.305420, 32.565333 ], [ -8.662720, 33.243282 ], [ -7.657471, 33.701493 ], [ -6.915894, 34.111805 ], [ -6.245728, 35.146863 ], [ -5.932617, 35.764343 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.684692, 27.396155 ], [ -4.927368, 24.976099 ], [ -6.454468, 24.961160 ], [ -6.119385, 21.943046 ], [ -6.069946, 21.534847 ], [ -12.958374, 21.534847 ], [ -13.013306, 21.943046 ], [ -13.123169, 22.776182 ], [ -12.875977, 23.286765 ], [ -11.942139, 23.377556 ], [ -11.969604, 25.938287 ], [ -8.690186, 25.883937 ], [ -8.684692, 27.396155 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.927368, 24.976099 ], [ -1.554565, 22.796439 ], [ -0.230713, 21.943046 ], [ 0.395508, 21.534847 ], [ -6.069946, 21.534847 ], [ -6.119385, 21.943046 ], [ -6.454468, 24.961160 ], [ -4.927368, 24.976099 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 36.261992 ], [ 0.439453, 21.534847 ], [ 0.395508, 21.534847 ], [ -0.230713, 21.943046 ], [ -1.554565, 22.796439 ], [ -4.927368, 24.976099 ], [ -8.684692, 27.396155 ], [ -8.668213, 27.591066 ], [ -8.679199, 28.844674 ], [ -7.064209, 29.583012 ], [ -6.064453, 29.735762 ], [ -5.245972, 30.002517 ], [ -4.861450, 30.505484 ], [ -3.691406, 30.897511 ], [ -3.652954, 31.639352 ], [ -3.070679, 31.728167 ], [ -2.620239, 32.096536 ], [ -1.312866, 32.263911 ], [ -1.126099, 32.653251 ], [ -1.389771, 32.865746 ], [ -1.735840, 33.920572 ], [ -1.796265, 34.529187 ], [ -2.175293, 35.169318 ], [ -1.213989, 35.715298 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.973561 ], [ 0.439453, 36.261992 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ireland", "sov_a3": "IRL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ireland", "adm0_a3": "IRL", "geou_dif": 0, "geounit": "Ireland", "gu_a3": "IRL", "su_dif": 0, "subunit": "Ireland", "su_a3": "IRL", "brk_diff": 0, "name": "Ireland", "name_long": "Ireland", "brk_a3": "IRL", "brk_name": "Ireland", "abbrev": "Ire.", "postal": "IRL", "formal_en": "Ireland", "name_sort": "Ireland", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 4203200, "gdp_md_est": 188400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IE", "iso_a3": "IRL", "iso_n3": "372", "un_a3": "372", "wb_a2": "IE", "wb_a3": "IRL", "woe_id": -99, "adm0_a3_is": "IRL", "adm0_a3_us": "IRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.575073, 55.131790 ], [ -7.366333, 54.597528 ], [ -7.575073, 54.062612 ], [ -6.954346, 54.075506 ], [ -6.201782, 53.868725 ], [ -6.036987, 53.153359 ], [ -6.789551, 52.261434 ], [ -8.563843, 51.672555 ], [ -9.981079, 51.822198 ], [ -9.168091, 52.865814 ], [ -9.689941, 53.881679 ], [ -8.333130, 54.667478 ], [ -7.575073, 55.131790 ] ] ] } } +, +{ "type": "Feature", "properties": { "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": [ [ [ [ -3.070679, 56.022948 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.988525, 55.776573 ], [ -1.115112, 54.626158 ], [ -0.433960, 54.466845 ], [ 0.000000, 53.673934 ], [ 0.181274, 53.327592 ], [ 0.439453, 52.975108 ], [ 0.439453, 50.767734 ], [ 0.000000, 50.771208 ], [ -0.791016, 50.778155 ], [ -2.493896, 50.502946 ], [ -2.960815, 50.698197 ], [ -3.619995, 50.229638 ], [ -4.542847, 50.341955 ], [ -5.245972, 49.961822 ], [ -5.778809, 50.162824 ], [ -4.312134, 51.210325 ], [ -3.416748, 51.426614 ], [ -4.987793, 51.594135 ], [ -5.267944, 51.991646 ], [ -4.224243, 52.301761 ], [ -4.773560, 52.842595 ], [ -4.581299, 53.497850 ], [ -3.092651, 53.406257 ], [ -2.949829, 53.985165 ], [ -3.630981, 54.616617 ], [ -4.844971, 54.791185 ], [ -5.086670, 55.062641 ], [ -4.724121, 55.509971 ], [ -5.042725, 55.776573 ], [ -5.048218, 55.785840 ], [ -5.059204, 55.776573 ], [ -5.586548, 55.313517 ], [ -5.619507, 55.776573 ], [ -5.630493, 56.022948 ], [ -3.070679, 56.022948 ] ] ], [ [ [ -6.734619, 55.175731 ], [ -5.663452, 54.556137 ], [ -6.201782, 53.868725 ], [ -6.954346, 54.075506 ], [ -7.575073, 54.062612 ], [ -7.366333, 54.597528 ], [ -7.575073, 55.131790 ], [ -6.734619, 55.175731 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 49.830896 ], [ 0.439453, 42.642041 ], [ 0.335083, 42.581400 ], [ 0.000000, 42.666281 ], [ -1.505127, 43.036776 ], [ -1.906128, 43.424999 ], [ -1.384277, 44.024422 ], [ -1.197510, 46.016039 ], [ -2.230225, 47.066380 ], [ -2.966309, 47.572820 ], [ -4.493408, 47.956824 ], [ -4.597778, 48.687334 ], [ -3.295898, 48.904449 ], [ -1.620483, 48.647428 ], [ -1.933594, 49.777717 ], [ -0.994263, 49.350177 ], [ 0.000000, 49.681847 ], [ 0.439453, 49.830896 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Portugal", "sov_a3": "PRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Portugal", "adm0_a3": "PRT", "geou_dif": 0, "geounit": "Portugal", "gu_a3": "PRT", "su_dif": 1, "subunit": "Portugal", "su_a3": "PR1", "brk_diff": 0, "name": "Portugal", "name_long": "Portugal", "brk_a3": "PR1", "brk_name": "Portugal", "abbrev": "Port.", "postal": "P", "formal_en": "Portuguese Republic", "name_sort": "Portugal", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 10707924, "gdp_md_est": 208627, "pop_year": -99, "lastcensus": 2011, "gdp_year": 0, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PT", "iso_a3": "PRT", "iso_n3": "620", "un_a3": "620", "wb_a2": "PT", "wb_a3": "PRT", "woe_id": -99, "adm0_a3_is": "PRT", "adm0_a3_us": "PRT", "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": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.267212, 42.281373 ], [ -8.014526, 41.791793 ], [ -7.426758, 41.795888 ], [ -7.256470, 41.918629 ], [ -6.668701, 41.885921 ], [ -6.394043, 41.385052 ], [ -6.855469, 41.112469 ], [ -6.855469, 40.979898 ], [ -6.860962, 40.647304 ], [ -8.811035, 40.647304 ], [ -8.772583, 40.763901 ], [ -8.783569, 40.979898 ], [ -8.794556, 41.186922 ], [ -8.992310, 41.545589 ], [ -9.036255, 41.881831 ], [ -8.673706, 42.134895 ], [ -8.267212, 42.281373 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.981567, 43.751257 ], [ -6.756592, 43.568452 ], [ -5.416260, 43.576411 ], [ -4.350586, 43.405047 ], [ -3.521118, 43.456906 ], [ -1.906128, 43.424999 ], [ -1.505127, 43.036776 ], [ 0.000000, 42.666281 ], [ 0.335083, 42.581400 ], [ 0.439453, 42.642041 ], [ 0.439453, 40.647304 ], [ -6.860962, 40.647304 ], [ -6.855469, 40.979898 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.385052 ], [ -6.668701, 41.885921 ], [ -7.256470, 41.918629 ], [ -7.426758, 41.795888 ], [ -8.014526, 41.791793 ], [ -8.267212, 42.281373 ], [ -8.673706, 42.134895 ], [ -9.036255, 41.881831 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.028745 ], [ -7.981567, 43.751257 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iceland", "sov_a3": "ISL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iceland", "adm0_a3": "ISL", "geou_dif": 0, "geounit": "Iceland", "gu_a3": "ISL", "su_dif": 0, "subunit": "Iceland", "su_a3": "ISL", "brk_diff": 0, "name": "Iceland", "name_long": "Iceland", "brk_a3": "ISL", "brk_name": "Iceland", "abbrev": "Iceland", "postal": "IS", "formal_en": "Republic of Iceland", "name_sort": "Iceland", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 306694, "gdp_md_est": 12710, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IS", "iso_a3": "ISL", "iso_n3": "352", "un_a3": "352", "wb_a2": "IS", "wb_a3": "ISL", "woe_id": -99, "adm0_a3_is": "ISL", "adm0_a3_us": "ISL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.171875, 66.528580 ], [ -15.853271, 66.513260 ], [ -14.512939, 66.456275 ], [ -14.743652, 65.809530 ], [ -13.612061, 65.127638 ], [ -14.913940, 64.366061 ], [ -17.797852, 63.680377 ], [ -18.660278, 63.497122 ], [ -22.500000, 63.932545 ], [ -22.763672, 63.961496 ], [ -22.500000, 64.079404 ], [ -21.780396, 64.404058 ], [ -22.500000, 64.567319 ], [ -22.939453, 64.666219 ], [ -22.939453, 65.002582 ], [ -22.500000, 65.051285 ], [ -22.186890, 65.086018 ], [ -22.230835, 65.380571 ], [ -22.500000, 65.410303 ], [ -22.939453, 65.458261 ], [ -22.939453, 66.333095 ], [ -22.500000, 66.374956 ], [ -22.137451, 66.412352 ], [ -20.577393, 65.732884 ], [ -19.061279, 66.277908 ], [ -17.803345, 65.995681 ], [ -16.210327, 66.513260 ], [ -16.171875, 66.528580 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ -3.010254, 58.636935 ], [ -4.075928, 57.554155 ], [ -3.059692, 57.692406 ], [ -1.961060, 57.686533 ], [ -2.224731, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.988525, 55.776573 ], [ -1.796265, 55.528631 ], [ -4.746094, 55.528631 ], [ -5.042725, 55.776573 ], [ -5.048218, 55.785840 ], [ -5.059204, 55.776573 ], [ -5.344849, 55.528631 ], [ -5.603027, 55.528631 ], [ -5.619507, 55.776573 ], [ -5.646973, 56.276911 ], [ -6.152344, 56.785836 ], [ -5.789795, 57.821355 ], [ -5.015259, 58.631217 ], [ -4.213257, 58.551061 ], [ -3.010254, 58.636935 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.939453, 73.308936 ], [ -22.939453, 74.140084 ], [ -21.357422, 74.140084 ], [ -21.011353, 74.019543 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.175903, 73.310514 ], [ -22.500000, 73.308936 ], [ -22.939453, 73.308936 ] ] ], [ [ [ -22.939453, 70.153423 ], [ -22.500000, 70.136632 ], [ -22.351685, 70.131032 ], [ -22.500000, 70.082434 ], [ -22.939453, 69.941607 ], [ -22.939453, 70.153423 ] ] ], [ [ [ -22.939453, 71.847674 ], [ -22.500000, 71.642914 ], [ -22.137451, 71.469124 ], [ -21.758423, 70.665426 ], [ -22.500000, 70.583418 ], [ -22.939453, 70.535883 ], [ -22.939453, 71.847674 ] ] ], [ [ [ -22.939453, 72.971189 ], [ -22.500000, 72.733112 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -22.500000, 72.227132 ], [ -22.939453, 72.319122 ], [ -22.939453, 72.971189 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iceland", "sov_a3": "ISL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iceland", "adm0_a3": "ISL", "geou_dif": 0, "geounit": "Iceland", "gu_a3": "ISL", "su_dif": 0, "subunit": "Iceland", "su_a3": "ISL", "brk_diff": 0, "name": "Iceland", "name_long": "Iceland", "brk_a3": "ISL", "brk_name": "Iceland", "abbrev": "Iceland", "postal": "IS", "formal_en": "Republic of Iceland", "name_sort": "Iceland", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 306694, "gdp_md_est": 12710, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IS", "iso_a3": "ISL", "iso_n3": "352", "un_a3": "352", "wb_a2": "IS", "wb_a3": "ISL", "woe_id": -99, "adm0_a3_is": "ISL", "adm0_a3_us": "ISL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.137451, 66.412352 ], [ -21.967163, 66.337505 ], [ -22.884521, 66.337505 ], [ -22.137451, 66.412352 ] ] ], [ [ [ -15.853271, 66.513260 ], [ -14.512939, 66.456275 ], [ -14.551392, 66.337505 ], [ -16.754150, 66.337505 ], [ -16.210327, 66.513260 ], [ -16.171875, 66.528580 ], [ -15.853271, 66.513260 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -19.088745, 79.253586 ], [ -19.193115, 79.171335 ], [ -19.709473, 78.751731 ], [ -19.676514, 77.638894 ], [ -18.473511, 76.986335 ], [ -20.039062, 76.945452 ], [ -21.681519, 76.629067 ], [ -19.835815, 76.098157 ], [ -19.599609, 75.248861 ], [ -20.670776, 75.156266 ], [ -19.374390, 74.296950 ], [ -21.599121, 74.223935 ], [ -21.011353, 74.019543 ], [ -20.665283, 73.898111 ], [ -22.939453, 73.898111 ], [ -22.939453, 79.253586 ], [ -19.088745, 79.253586 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.939453, 81.187124 ], [ -22.500000, 81.252526 ], [ -20.626831, 81.524751 ], [ -15.770874, 81.913147 ], [ -12.771606, 81.719233 ], [ -12.211304, 81.291703 ], [ -16.287231, 80.580741 ], [ -16.853027, 80.350552 ], [ -20.050049, 80.177776 ], [ -17.731934, 80.129870 ], [ -18.901978, 79.400085 ], [ -19.193115, 79.171335 ], [ -19.297485, 79.088462 ], [ -22.939453, 79.088462 ], [ -22.939453, 81.187124 ] ] ], [ [ [ -22.939453, 82.338976 ], [ -22.939453, 82.732092 ], [ -20.890503, 82.732092 ], [ -20.846558, 82.727226 ], [ -21.093750, 82.676285 ], [ -22.500000, 82.382789 ], [ -22.692261, 82.341904 ], [ -22.939453, 82.338976 ] ] ], [ [ [ -22.939453, 82.088196 ], [ -22.906494, 82.093487 ], [ -22.500000, 81.921643 ], [ -22.077026, 81.735041 ], [ -22.500000, 81.512599 ], [ -22.939453, 81.278386 ], [ -22.939453, 82.088196 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.939453, 83.002837 ], [ -22.500000, 82.945726 ], [ -20.846558, 82.727226 ], [ -21.093750, 82.676285 ], [ -21.368408, 82.620052 ], [ -22.939453, 82.620052 ], [ -22.939453, 83.002837 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 22.939453, -82.620052 ], [ 22.939453, -85.088894 ], [ -0.439453, -85.088894 ], [ -0.439453, -82.620052 ], [ 22.939453, -82.620052 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 22.939453, -79.088462 ], [ 22.939453, -82.732092 ], [ -0.439453, -82.732092 ], [ -0.439453, -79.088462 ], [ 22.939453, -79.088462 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 22.939453, -73.898111 ], [ 22.939453, -79.253586 ], [ -0.439453, -79.253586 ], [ -0.439453, -73.898111 ], [ 22.939453, -73.898111 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.500000, -70.665426 ], [ 22.565918, -70.696320 ], [ 22.939453, -70.636305 ], [ 22.939453, -74.140084 ], [ -0.439453, -74.140084 ], [ -0.439453, -71.435925 ], [ -0.230713, -71.637723 ], [ 0.000000, -71.568378 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Namibia", "sov_a3": "NAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Namibia", "adm0_a3": "NAM", "geou_dif": 0, "geounit": "Namibia", "gu_a3": "NAM", "su_dif": 0, "subunit": "Namibia", "su_a3": "NAM", "brk_diff": 0, "name": "Namibia", "name_long": "Namibia", "brk_a3": "NAM", "brk_name": "Namibia", "abbrev": "Nam.", "postal": "NA", "formal_en": "Republic of Namibia", "name_sort": "Namibia", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 2108665, "gdp_md_est": 13250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "NA", "iso_a3": "NAM", "iso_n3": "516", "un_a3": "516", "wb_a2": "NA", "wb_a3": "NAM", "woe_id": -99, "adm0_a3_is": "NAM", "adm0_a3_us": "NAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.879517, -21.534847 ], [ 20.879517, -21.810508 ], [ 19.890747, -21.846204 ], [ 19.890747, -28.459033 ], [ 19.000854, -28.969701 ], [ 18.462524, -29.041763 ], [ 17.830811, -28.854296 ], [ 17.385864, -28.782104 ], [ 17.215576, -28.352734 ], [ 16.820068, -28.081674 ], [ 16.342163, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.205078, -27.088473 ], [ 14.985352, -26.115986 ], [ 14.738159, -25.388698 ], [ 14.403076, -23.850674 ], [ 14.381104, -22.654572 ], [ 14.254761, -22.111088 ], [ 14.095459, -21.943046 ], [ 13.864746, -21.698265 ], [ 13.760376, -21.534847 ], [ 20.879517, -21.534847 ] ] ] } } +, +{ "type": "Feature", "properties": { "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": "Polygon", "coordinates": [ [ [ 22.939453, -21.534847 ], [ 22.939453, -25.443275 ], [ 22.824097, -25.497827 ], [ 22.576904, -25.977799 ], [ 22.500000, -26.027170 ], [ 22.104492, -26.278640 ], [ 21.604614, -26.725987 ], [ 20.885010, -26.824071 ], [ 20.665283, -26.475490 ], [ 20.753174, -25.864167 ], [ 20.165405, -24.916331 ], [ 19.890747, -24.766785 ], [ 19.890747, -21.846204 ], [ 20.879517, -21.810508 ], [ 20.879517, -21.534847 ], [ 22.939453, -21.534847 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Africa", "sov_a3": "ZAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Africa", "adm0_a3": "ZAF", "geou_dif": 0, "geounit": "South Africa", "gu_a3": "ZAF", "su_dif": 0, "subunit": "South Africa", "su_a3": "ZAF", "brk_diff": 0, "name": "South Africa", "name_long": "South Africa", "brk_a3": "ZAF", "brk_name": "South Africa", "abbrev": "S.Af.", "postal": "ZA", "formal_en": "Republic of South Africa", "name_sort": "South Africa", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 49052489, "gdp_md_est": 491000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ZA", "iso_a3": "ZAF", "iso_n3": "710", "un_a3": "710", "wb_a2": "ZA", "wb_a3": "ZAF", "woe_id": -99, "adm0_a3_is": "ZAF", "adm0_a3_us": "ZAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.890747, -24.766785 ], [ 20.165405, -24.916331 ], [ 20.753174, -25.864167 ], [ 20.665283, -26.475490 ], [ 20.885010, -26.824071 ], [ 21.604614, -26.725987 ], [ 22.104492, -26.278640 ], [ 22.500000, -26.027170 ], [ 22.576904, -25.977799 ], [ 22.824097, -25.497827 ], [ 22.939453, -25.443275 ], [ 22.939453, -33.906896 ], [ 22.571411, -33.861293 ], [ 22.500000, -33.888658 ], [ 21.538696, -34.257216 ], [ 20.687256, -34.415973 ], [ 20.066528, -34.791250 ], [ 19.616089, -34.818313 ], [ 19.193115, -34.461277 ], [ 18.852539, -34.443159 ], [ 18.424072, -33.993473 ], [ 18.374634, -34.134542 ], [ 18.242798, -33.865854 ], [ 18.248291, -33.280028 ], [ 17.924194, -32.606989 ], [ 18.242798, -32.426340 ], [ 18.220825, -31.658057 ], [ 17.561646, -30.722949 ], [ 17.061768, -29.873992 ], [ 16.342163, -28.574874 ], [ 16.820068, -28.081674 ], [ 17.215576, -28.352734 ], [ 17.385864, -28.782104 ], [ 17.830811, -28.854296 ], [ 18.462524, -29.041763 ], [ 19.000854, -28.969701 ], [ 19.890747, -28.459033 ], [ 19.890747, -24.766785 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Gabon", "sov_a3": "GAB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gabon", "adm0_a3": "GAB", "geou_dif": 0, "geounit": "Gabon", "gu_a3": "GAB", "su_dif": 0, "subunit": "Gabon", "su_a3": "GAB", "brk_diff": 0, "name": "Gabon", "name_long": "Gabon", "brk_a3": "GAB", "brk_name": "Gabon", "abbrev": "Gabon", "postal": "GA", "formal_en": "Gabonese Republic", "name_sort": "Gabon", "mapcolor7": 6, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 1514993, "gdp_md_est": 21110, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "GA", "iso_a3": "GAB", "iso_n3": "266", "un_a3": "266", "wb_a2": "GA", "wb_a3": "GAB", "woe_id": -99, "adm0_a3_is": "GAB", "adm0_a3_us": "GAB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": 3, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.991089, 0.439449 ], [ 13.842773, 0.043945 ], [ 13.870239, 0.000000 ], [ 14.315186, -0.549308 ], [ 14.425049, -1.329226 ], [ 14.298706, -1.993616 ], [ 13.991089, -2.465669 ], [ 13.106689, -2.427252 ], [ 12.573853, -1.944207 ], [ 12.491455, -2.388834 ], [ 11.815796, -2.509573 ], [ 11.475220, -2.761991 ], [ 11.854248, -3.425692 ], [ 11.090698, -3.973861 ], [ 10.063477, -2.964984 ], [ 9.404297, -2.141835 ], [ 8.794556, -1.109550 ], [ 8.827515, -0.774513 ], [ 9.047241, -0.455928 ], [ 9.201050, 0.000000 ], [ 9.288940, 0.269164 ], [ 9.332886, 0.439449 ], [ 13.991089, 0.439449 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 0.439449 ], [ 22.939453, -10.989728 ], [ 22.835083, -11.016689 ], [ 22.500000, -10.995120 ], [ 22.401123, -10.989728 ], [ 22.153931, -11.081385 ], [ 22.203369, -9.893099 ], [ 21.873779, -9.519497 ], [ 21.796875, -8.906780 ], [ 21.945190, -8.303906 ], [ 21.741943, -7.917793 ], [ 21.725464, -7.286190 ], [ 20.511475, -7.297088 ], [ 20.599365, -6.937333 ], [ 20.088501, -6.942786 ], [ 20.033569, -7.111795 ], [ 19.412842, -7.155400 ], [ 19.165649, -7.732765 ], [ 19.011841, -7.983078 ], [ 18.462524, -7.841615 ], [ 18.132935, -7.983078 ], [ 17.468262, -8.064669 ], [ 16.858521, -7.220800 ], [ 16.572876, -6.620957 ], [ 16.325684, -5.872868 ], [ 13.370361, -5.861939 ], [ 13.024292, -5.982144 ], [ 12.733154, -5.960290 ], [ 12.321167, -6.096860 ], [ 12.178345, -5.785432 ], [ 12.436523, -5.681584 ], [ 12.463989, -5.244128 ], [ 12.628784, -4.986977 ], [ 12.991333, -4.778995 ], [ 13.255005, -4.877521 ], [ 13.595581, -4.499762 ], [ 14.144897, -4.505238 ], [ 14.205322, -4.789943 ], [ 14.578857, -4.965088 ], [ 15.166626, -4.340934 ], [ 15.748901, -3.853293 ], [ 16.001587, -3.529869 ], [ 15.968628, -2.707122 ], [ 16.402588, -1.735574 ], [ 16.864014, -1.224882 ], [ 17.523193, -0.741556 ], [ 17.638550, -0.422970 ], [ 17.660522, -0.054932 ], [ 17.687988, 0.000000 ], [ 17.825317, 0.291136 ], [ 17.808838, 0.439449 ], [ 22.939453, 0.439449 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.370361, -5.861939 ], [ 16.325684, -5.872868 ], [ 16.572876, -6.620957 ], [ 16.858521, -7.220800 ], [ 17.468262, -8.064669 ], [ 18.132935, -7.983078 ], [ 18.462524, -7.841615 ], [ 19.011841, -7.983078 ], [ 19.165649, -7.732765 ], [ 19.412842, -7.155400 ], [ 20.033569, -7.111795 ], [ 20.088501, -6.942786 ], [ 20.599365, -6.937333 ], [ 20.511475, -7.297088 ], [ 21.725464, -7.286190 ], [ 21.741943, -7.917793 ], [ 21.945190, -8.303906 ], [ 21.796875, -8.906780 ], [ 21.873779, -9.519497 ], [ 22.203369, -9.893099 ], [ 22.153931, -11.081385 ], [ 22.401123, -10.989728 ], [ 22.500000, -10.995120 ], [ 22.835083, -11.016689 ], [ 22.939453, -10.989728 ], [ 22.939453, -12.902844 ], [ 22.500000, -12.897489 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.077486 ], [ 22.500000, -16.820316 ], [ 22.560425, -16.893916 ], [ 22.939453, -17.256236 ], [ 22.939453, -17.581194 ], [ 22.500000, -17.680662 ], [ 21.373901, -17.926476 ], [ 18.951416, -17.785305 ], [ 18.259277, -17.308688 ], [ 14.205322, -17.350638 ], [ 14.057007, -17.418787 ], [ 13.458252, -16.967487 ], [ 12.810059, -16.941215 ], [ 12.211304, -17.109293 ], [ 11.733398, -17.298199 ], [ 11.640015, -16.673031 ], [ 11.777344, -15.792254 ], [ 12.123413, -14.875778 ], [ 12.172852, -14.445319 ], [ 12.496948, -13.544541 ], [ 12.733154, -13.132979 ], [ 13.309937, -12.479487 ], [ 13.628540, -12.033948 ], [ 13.738403, -11.296934 ], [ 13.683472, -10.730778 ], [ 13.386841, -10.368958 ], [ 13.117676, -9.763198 ], [ 12.870483, -9.161756 ], [ 12.925415, -8.955619 ], [ 13.233032, -8.559294 ], [ 12.727661, -6.926427 ], [ 12.222290, -6.293459 ], [ 12.321167, -6.096860 ], [ 12.733154, -5.960290 ], [ 13.024292, -5.982144 ], [ 13.370361, -5.861939 ] ] ], [ [ [ 12.617798, -4.434044 ], [ 12.991333, -4.778995 ], [ 12.628784, -4.986977 ], [ 12.463989, -5.244128 ], [ 12.436523, -5.681584 ], [ 12.178345, -5.785432 ], [ 11.914673, -5.036227 ], [ 12.315674, -4.603803 ], [ 12.617798, -4.434044 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Namibia", "sov_a3": "NAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Namibia", "adm0_a3": "NAM", "geou_dif": 0, "geounit": "Namibia", "gu_a3": "NAM", "su_dif": 0, "subunit": "Namibia", "su_a3": "NAM", "brk_diff": 0, "name": "Namibia", "name_long": "Namibia", "brk_a3": "NAM", "brk_name": "Namibia", "abbrev": "Nam.", "postal": "NA", "formal_en": "Republic of Namibia", "name_sort": "Namibia", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 2108665, "gdp_md_est": 13250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "NA", "iso_a3": "NAM", "iso_n3": "516", "un_a3": "516", "wb_a2": "NA", "wb_a3": "NAM", "woe_id": -99, "adm0_a3_is": "NAM", "adm0_a3_us": "NAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.810059, -16.941215 ], [ 13.458252, -16.967487 ], [ 14.057007, -17.418787 ], [ 14.205322, -17.350638 ], [ 18.259277, -17.308688 ], [ 18.951416, -17.785305 ], [ 21.373901, -17.926476 ], [ 22.500000, -17.680662 ], [ 22.939453, -17.581194 ], [ 22.939453, -17.926476 ], [ 22.500000, -18.025751 ], [ 21.654053, -18.218916 ], [ 20.906982, -18.250220 ], [ 20.879517, -21.810508 ], [ 19.890747, -21.846204 ], [ 19.890747, -22.350076 ], [ 14.309692, -22.350076 ], [ 14.254761, -22.111088 ], [ 14.095459, -21.943046 ], [ 13.864746, -21.698265 ], [ 13.348389, -20.869078 ], [ 12.826538, -19.668453 ], [ 12.606812, -19.041349 ], [ 11.793823, -18.067535 ], [ 11.733398, -17.298199 ], [ 12.211304, -17.109293 ], [ 12.810059, -16.941215 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, -12.897489 ], [ 22.939453, -12.902844 ], [ 22.939453, -17.256236 ], [ 22.560425, -16.893916 ], [ 22.500000, -16.820316 ], [ 21.884766, -16.077486 ], [ 21.928711, -12.897489 ], [ 22.500000, -12.897489 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 22.939453, -17.926476 ], [ 22.939453, -22.350076 ], [ 19.890747, -22.350076 ], [ 19.890747, -21.846204 ], [ 20.879517, -21.810508 ], [ 20.906982, -18.250220 ], [ 21.654053, -18.218916 ], [ 22.500000, -18.025751 ], [ 22.939453, -17.926476 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 22.080550 ], [ 0.000000, 21.795208 ], [ 1.818237, 20.612220 ], [ 2.059937, 20.143628 ], [ 2.680664, 19.859727 ], [ 3.142090, 19.694314 ], [ 3.153076, 19.062118 ], [ 4.262695, 19.155547 ], [ 4.268188, 16.857120 ], [ 3.718872, 16.188300 ], [ 3.636475, 15.570128 ], [ 2.746582, 15.411319 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.971320 ], [ 0.373535, 14.934170 ], [ 0.000000, 14.928862 ], [ -0.269165, 14.928862 ], [ -0.439453, 15.061515 ], [ -0.439453, 22.080550 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 15.061515 ], [ -0.269165, 14.928862 ], [ 0.000000, 14.928862 ], [ 0.373535, 14.934170 ], [ 0.291138, 14.445319 ], [ 0.428467, 13.992706 ], [ 0.988770, 13.336175 ], [ 1.021729, 12.854649 ], [ 2.175293, 12.629618 ], [ 2.153320, 11.942601 ], [ 1.933594, 11.641476 ], [ 1.444702, 11.549998 ], [ 1.241455, 11.113727 ], [ 0.895386, 11.000512 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.102947 ], [ -0.439453, 15.061515 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.102947 ], [ 0.000000, 11.027472 ], [ 0.021973, 11.022080 ], [ 0.000000, 10.919618 ], [ -0.054932, 10.709189 ], [ 0.000000, 10.649811 ], [ 0.362549, 10.196000 ], [ 0.362549, 9.465317 ], [ 0.455933, 8.678779 ], [ 0.708618, 8.314777 ], [ 0.488892, 7.416942 ], [ 0.565796, 6.915521 ], [ 0.834961, 6.282539 ], [ 1.054688, 5.932972 ], [ 0.000000, 5.533978 ], [ -0.439453, 5.369929 ], [ -0.439453, 11.102947 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.975586, 22.350076 ], [ 9.244995, 21.943046 ], [ 8.569336, 21.570611 ], [ 5.674438, 19.606369 ], [ 4.262695, 19.155547 ], [ 3.153076, 19.062118 ], [ 3.142090, 19.694314 ], [ 2.680664, 19.859727 ], [ 2.059937, 20.143628 ], [ 1.818237, 20.612220 ], [ 0.000000, 21.795208 ], [ -0.439453, 22.080550 ], [ -0.439453, 22.350076 ], [ 9.975586, 22.350076 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 22.350076 ], [ 22.939453, 20.014645 ], [ 22.500000, 20.226120 ], [ 19.846802, 21.499075 ], [ 18.918457, 21.943046 ], [ 18.072510, 22.350076 ], [ 22.939453, 22.350076 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.930420, 22.350076 ], [ 14.996338, 21.943046 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.048618 ], [ 15.485229, 20.730428 ], [ 15.902710, 20.390974 ], [ 15.682983, 19.957860 ], [ 15.298462, 17.931702 ], [ 15.243530, 16.630929 ], [ 13.969116, 15.686510 ], [ 13.535156, 14.370834 ], [ 13.952637, 13.998037 ], [ 13.952637, 13.357554 ], [ 14.595337, 13.330830 ], [ 14.490967, 12.860004 ], [ 14.210815, 12.806445 ], [ 14.177856, 12.484850 ], [ 13.991089, 12.463396 ], [ 13.315430, 13.560562 ], [ 13.079224, 13.597939 ], [ 12.299194, 13.042021 ], [ 11.524658, 13.330830 ], [ 10.986328, 13.389620 ], [ 10.700684, 13.250640 ], [ 10.112915, 13.277373 ], [ 9.519653, 12.854649 ], [ 9.014282, 12.827870 ], [ 7.800293, 13.346865 ], [ 7.327881, 13.100880 ], [ 6.817017, 13.116930 ], [ 6.443481, 13.496473 ], [ 5.438232, 13.870080 ], [ 4.367065, 13.752725 ], [ 4.103394, 13.533860 ], [ 3.966064, 12.956383 ], [ 3.680420, 12.554564 ], [ 3.609009, 11.662996 ], [ 2.845459, 12.238023 ], [ 2.488403, 12.238023 ], [ 2.153320, 11.942601 ], [ 2.175293, 12.629618 ], [ 1.021729, 12.854649 ], [ 0.988770, 13.336175 ], [ 0.428467, 13.992706 ], [ 0.291138, 14.445319 ], [ 0.373535, 14.934170 ], [ 1.010742, 14.971320 ], [ 1.384277, 15.326572 ], [ 2.746582, 15.411319 ], [ 3.636475, 15.570128 ], [ 3.718872, 16.188300 ], [ 4.268188, 16.857120 ], [ 4.262695, 19.155547 ], [ 5.674438, 19.606369 ], [ 8.569336, 21.570611 ], [ 9.244995, 21.943046 ], [ 9.975586, 22.350076 ], [ 14.930420, 22.350076 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.022080 ], [ 0.895386, 11.000512 ], [ 0.769043, 10.471607 ], [ 1.422729, 9.828154 ], [ 1.461182, 9.335252 ], [ 1.664429, 9.129216 ], [ 1.614990, 6.833716 ], [ 1.862183, 6.146016 ], [ 1.054688, 5.932972 ], [ 0.834961, 6.282539 ], [ 0.565796, 6.915521 ], [ 0.488892, 7.416942 ], [ 0.708618, 8.314777 ], [ 0.455933, 8.678779 ], [ 0.362549, 9.465317 ], [ 0.362549, 10.196000 ], [ 0.000000, 10.649811 ], [ -0.054932, 10.709189 ], [ 0.000000, 10.919618 ], [ 0.021973, 11.022080 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.438232, 13.870080 ], [ 6.443481, 13.496473 ], [ 6.817017, 13.116930 ], [ 7.327881, 13.100880 ], [ 7.800293, 13.346865 ], [ 9.014282, 12.827870 ], [ 9.519653, 12.854649 ], [ 10.112915, 13.277373 ], [ 10.700684, 13.250640 ], [ 10.986328, 13.389620 ], [ 11.524658, 13.330830 ], [ 12.299194, 13.042021 ], [ 13.079224, 13.597939 ], [ 13.315430, 13.560562 ], [ 13.991089, 12.463396 ], [ 14.177856, 12.484850 ], [ 14.573364, 12.087667 ], [ 14.463501, 11.904979 ], [ 14.414062, 11.576907 ], [ 13.568115, 10.800933 ], [ 13.304443, 10.163560 ], [ 13.167114, 9.644077 ], [ 12.952881, 9.421968 ], [ 12.749634, 8.722218 ], [ 12.216797, 8.309341 ], [ 12.062988, 7.803521 ], [ 11.837769, 7.400600 ], [ 11.744385, 6.986407 ], [ 11.057739, 6.648239 ], [ 10.491943, 7.057282 ], [ 10.112915, 7.040927 ], [ 9.519653, 6.457234 ], [ 9.228516, 6.446318 ], [ 8.756104, 5.484768 ], [ 8.497925, 4.773521 ], [ 7.459717, 4.412137 ], [ 7.080688, 4.466904 ], [ 6.696167, 4.242334 ], [ 5.894165, 4.264246 ], [ 5.361328, 4.888467 ], [ 5.031738, 5.615986 ], [ 4.323120, 6.271618 ], [ 3.570557, 6.260697 ], [ 2.691650, 6.260697 ], [ 2.746582, 7.874265 ], [ 2.719116, 8.510403 ], [ 2.911377, 9.140063 ], [ 3.218994, 9.449062 ], [ 3.702393, 10.066220 ], [ 3.598022, 10.336536 ], [ 3.795776, 10.736175 ], [ 3.570557, 11.329253 ], [ 3.609009, 11.662996 ], [ 3.680420, 12.554564 ], [ 3.966064, 12.956383 ], [ 4.103394, 13.533860 ], [ 4.367065, 13.752725 ], [ 5.438232, 13.870080 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Equatorial Guinea", "sov_a3": "GNQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Equatorial Guinea", "adm0_a3": "GNQ", "geou_dif": 0, "geounit": "Equatorial Guinea", "gu_a3": "GNQ", "su_dif": 0, "subunit": "Equatorial Guinea", "su_a3": "GNQ", "brk_diff": 0, "name": "Eq. Guinea", "name_long": "Equatorial Guinea", "brk_a3": "GNQ", "brk_name": "Eq. Guinea", "abbrev": "Eq. G.", "postal": "GQ", "formal_en": "Republic of Equatorial Guinea", "name_sort": "Equatorial Guinea", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 650702, "gdp_md_est": 14060, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "7. Least developed region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GQ", "iso_a3": "GNQ", "iso_n3": "226", "un_a3": "226", "wb_a2": "GQ", "wb_a3": "GNQ", "woe_id": -99, "adm0_a3_is": "GNQ", "adm0_a3_us": "GNQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 17, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.645996, 2.284551 ], [ 11.271973, 2.262595 ], [ 11.282959, 1.060120 ], [ 9.827271, 1.071105 ], [ 9.492188, 1.010690 ], [ 9.305420, 1.164471 ], [ 9.645996, 2.284551 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.072510, 22.350076 ], [ 18.918457, 21.943046 ], [ 22.500000, 20.226120 ], [ 22.939453, 20.014645 ], [ 22.939453, 15.543668 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.109940 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.083301 ], [ 22.181396, 13.790071 ], [ 22.291260, 13.373588 ], [ 22.033081, 12.956383 ], [ 21.934204, 12.592094 ], [ 22.285767, 12.651058 ], [ 22.494507, 12.264864 ], [ 22.500000, 12.136005 ], [ 22.505493, 11.684514 ], [ 22.873535, 11.388494 ], [ 22.862549, 11.146066 ], [ 22.500000, 11.049038 ], [ 22.230835, 10.973550 ], [ 21.719971, 10.568822 ], [ 21.000366, 9.476154 ], [ 20.055542, 9.015302 ], [ 19.088745, 9.074976 ], [ 18.808594, 8.988175 ], [ 18.907471, 8.635334 ], [ 18.385620, 8.282163 ], [ 17.962646, 7.896030 ], [ 16.704712, 7.509535 ], [ 16.452026, 7.738208 ], [ 16.287231, 7.754537 ], [ 16.105957, 7.498643 ], [ 15.276489, 7.422389 ], [ 15.435791, 7.694661 ], [ 15.117188, 8.385431 ], [ 14.979858, 8.798225 ], [ 14.540405, 8.966471 ], [ 13.952637, 9.552000 ], [ 14.166870, 10.022948 ], [ 14.622803, 9.925566 ], [ 14.908447, 9.995901 ], [ 15.463257, 9.985081 ], [ 14.919434, 10.892648 ], [ 14.957886, 11.560762 ], [ 14.891968, 12.221918 ], [ 14.490967, 12.860004 ], [ 14.595337, 13.330830 ], [ 13.952637, 13.357554 ], [ 13.952637, 13.998037 ], [ 13.535156, 14.370834 ], [ 13.969116, 15.686510 ], [ 15.243530, 16.630929 ], [ 15.298462, 17.931702 ], [ 15.682983, 19.957860 ], [ 15.902710, 20.390974 ], [ 15.485229, 20.730428 ], [ 15.468750, 21.048618 ], [ 15.095215, 21.309846 ], [ 14.996338, 21.943046 ], [ 14.930420, 22.350076 ], [ 18.072510, 22.350076 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.490967, 12.860004 ], [ 14.891968, 12.221918 ], [ 14.957886, 11.560762 ], [ 14.919434, 10.892648 ], [ 15.463257, 9.985081 ], [ 14.908447, 9.995901 ], [ 14.622803, 9.925566 ], [ 14.166870, 10.022948 ], [ 13.952637, 9.552000 ], [ 14.540405, 8.966471 ], [ 14.979858, 8.798225 ], [ 15.117188, 8.385431 ], [ 15.435791, 7.694661 ], [ 15.276489, 7.422389 ], [ 14.771118, 6.413566 ], [ 14.534912, 6.227934 ], [ 14.458008, 5.451959 ], [ 14.556885, 5.030755 ], [ 14.474487, 4.735201 ], [ 14.946899, 4.214943 ], [ 15.034790, 3.853293 ], [ 15.402832, 3.337954 ], [ 15.858765, 3.014356 ], [ 15.902710, 2.558963 ], [ 16.012573, 2.268084 ], [ 15.935669, 1.730084 ], [ 15.144653, 1.966167 ], [ 14.337158, 2.229662 ], [ 13.073730, 2.268084 ], [ 12.947388, 2.322972 ], [ 12.354126, 2.196727 ], [ 11.749878, 2.328460 ], [ 11.271973, 2.262595 ], [ 9.645996, 2.284551 ], [ 9.794312, 3.074695 ], [ 9.404297, 3.738190 ], [ 8.942871, 3.908099 ], [ 8.739624, 4.357366 ], [ 8.486938, 4.499762 ], [ 8.497925, 4.773521 ], [ 8.756104, 5.484768 ], [ 9.228516, 6.446318 ], [ 9.519653, 6.457234 ], [ 10.112915, 7.040927 ], [ 10.491943, 7.057282 ], [ 11.057739, 6.648239 ], [ 11.744385, 6.986407 ], [ 11.837769, 7.400600 ], [ 12.062988, 7.803521 ], [ 12.216797, 8.309341 ], [ 12.749634, 8.722218 ], [ 12.952881, 9.421968 ], [ 13.167114, 9.644077 ], [ 13.304443, 10.163560 ], [ 13.568115, 10.800933 ], [ 14.414062, 11.576907 ], [ 14.463501, 11.904979 ], [ 14.573364, 12.087667 ], [ 14.177856, 12.484850 ], [ 14.210815, 12.806445 ], [ 14.490967, 12.860004 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.862549, 11.146066 ], [ 22.939453, 10.860281 ], [ 22.939453, 4.691404 ], [ 22.840576, 4.713303 ], [ 22.703247, 4.636655 ], [ 22.500000, 4.225900 ], [ 22.401123, 4.034138 ], [ 21.654053, 4.225900 ], [ 20.923462, 4.324501 ], [ 20.286255, 4.696879 ], [ 19.467773, 5.036227 ], [ 18.929443, 4.713303 ], [ 18.539429, 4.203986 ], [ 18.451538, 3.507938 ], [ 17.808838, 3.562765 ], [ 17.127686, 3.732708 ], [ 16.534424, 3.200848 ], [ 16.012573, 2.268084 ], [ 15.902710, 2.558963 ], [ 15.858765, 3.014356 ], [ 15.402832, 3.337954 ], [ 15.034790, 3.853293 ], [ 14.946899, 4.214943 ], [ 14.474487, 4.735201 ], [ 14.556885, 5.030755 ], [ 14.458008, 5.451959 ], [ 14.534912, 6.227934 ], [ 14.771118, 6.413566 ], [ 15.276489, 7.422389 ], [ 16.105957, 7.498643 ], [ 16.287231, 7.754537 ], [ 16.452026, 7.738208 ], [ 16.704712, 7.509535 ], [ 17.962646, 7.896030 ], [ 18.385620, 8.282163 ], [ 18.907471, 8.635334 ], [ 18.808594, 8.988175 ], [ 19.088745, 9.074976 ], [ 20.055542, 9.015302 ], [ 21.000366, 9.476154 ], [ 21.719971, 10.568822 ], [ 22.230835, 10.973550 ], [ 22.500000, 11.049038 ], [ 22.862549, 11.146066 ] ] ] } } +, +{ "type": "Feature", "properties": { "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": "Polygon", "coordinates": [ [ [ 22.939453, 15.543668 ], [ 22.939453, 10.860281 ], [ 22.862549, 11.146066 ], [ 22.873535, 11.388494 ], [ 22.505493, 11.684514 ], [ 22.500000, 12.136005 ], [ 22.494507, 12.264864 ], [ 22.285767, 12.651058 ], [ 21.934204, 12.592094 ], [ 22.033081, 12.956383 ], [ 22.291260, 13.373588 ], [ 22.181396, 13.790071 ], [ 22.500000, 14.083301 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.109940 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 22.939453, 15.543668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Gabon", "sov_a3": "GAB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gabon", "adm0_a3": "GAB", "geou_dif": 0, "geounit": "Gabon", "gu_a3": "GAB", "su_dif": 0, "subunit": "Gabon", "su_a3": "GAB", "brk_diff": 0, "name": "Gabon", "name_long": "Gabon", "brk_a3": "GAB", "brk_name": "Gabon", "abbrev": "Gabon", "postal": "GA", "formal_en": "Gabonese Republic", "name_sort": "Gabon", "mapcolor7": 6, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 1514993, "gdp_md_est": 21110, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "GA", "iso_a3": "GAB", "iso_n3": "266", "un_a3": "266", "wb_a2": "GA", "wb_a3": "GAB", "woe_id": -99, "adm0_a3_is": "GAB", "adm0_a3_us": "GAB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": 3, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.749878, 2.328460 ], [ 12.354126, 2.196727 ], [ 12.947388, 2.322972 ], [ 13.073730, 2.268084 ], [ 13.002319, 1.834403 ], [ 13.282471, 1.318243 ], [ 14.024048, 1.400617 ], [ 14.271240, 1.197423 ], [ 13.842773, 0.043945 ], [ 13.870239, 0.000000 ], [ 14.221802, -0.439449 ], [ 9.052734, -0.439449 ], [ 9.201050, 0.000000 ], [ 9.288940, 0.269164 ], [ 9.492188, 1.010690 ], [ 9.827271, 1.071105 ], [ 11.282959, 1.060120 ], [ 11.271973, 2.262595 ], [ 11.749878, 2.328460 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.467773, 5.036227 ], [ 20.286255, 4.696879 ], [ 20.923462, 4.324501 ], [ 21.654053, 4.225900 ], [ 22.401123, 4.034138 ], [ 22.500000, 4.225900 ], [ 22.703247, 4.636655 ], [ 22.840576, 4.713303 ], [ 22.939453, 4.691404 ], [ 22.939453, -0.439449 ], [ 17.633057, -0.439449 ], [ 17.660522, -0.054932 ], [ 17.687988, 0.000000 ], [ 17.825317, 0.291136 ], [ 17.770386, 0.856902 ], [ 17.896729, 1.746556 ], [ 18.088989, 2.366880 ], [ 18.391113, 2.904639 ], [ 18.451538, 3.507938 ], [ 18.539429, 4.203986 ], [ 18.929443, 4.713303 ], [ 19.467773, 5.036227 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.208252, 41.310824 ], [ 2.087402, 41.228249 ], [ 0.807495, 41.017211 ], [ 0.796509, 40.979898 ], [ 0.719604, 40.680638 ], [ 0.104370, 40.124291 ], [ 0.000000, 39.901309 ], [ -0.280151, 39.313050 ], [ 0.000000, 38.903858 ], [ 0.109863, 38.741231 ], [ 0.000000, 38.655488 ], [ -0.439453, 38.315801 ], [ -0.439453, 41.310824 ], [ 2.208252, 41.310824 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 22.080550 ], [ 0.395508, 21.534847 ], [ -0.439453, 21.534847 ], [ -0.439453, 22.080550 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.518188, 38.233865 ], [ 15.155640, 37.444335 ], [ 15.309448, 37.138425 ], [ 15.095215, 36.624345 ], [ 14.331665, 36.998166 ], [ 13.826294, 37.107765 ], [ 12.425537, 37.614231 ], [ 12.568359, 38.130236 ], [ 13.738403, 38.035112 ], [ 15.518188, 38.233865 ] ] ], [ [ [ 16.457520, 41.310824 ], [ 17.265015, 40.979898 ], [ 17.517700, 40.880295 ], [ 18.374634, 40.359103 ], [ 18.479004, 40.170479 ], [ 18.292236, 39.812756 ], [ 17.737427, 40.279526 ], [ 16.869507, 40.442767 ], [ 16.446533, 39.795876 ], [ 17.166138, 39.427707 ], [ 17.050781, 38.903858 ], [ 16.633301, 38.843986 ], [ 16.100464, 37.987504 ], [ 15.682983, 37.909534 ], [ 15.682983, 38.216604 ], [ 15.891724, 38.754083 ], [ 16.105957, 38.967951 ], [ 15.715942, 39.546412 ], [ 15.408325, 40.048643 ], [ 14.996338, 40.174676 ], [ 14.699707, 40.605612 ], [ 14.057007, 40.788860 ], [ 13.848267, 40.979898 ], [ 13.623047, 41.191056 ], [ 12.886963, 41.257162 ], [ 12.788086, 41.310824 ], [ 16.457520, 41.310824 ] ] ], [ [ [ 9.206543, 41.211722 ], [ 9.404297, 40.979898 ], [ 9.805298, 40.501269 ], [ 9.667969, 39.181175 ], [ 9.212036, 39.240763 ], [ 8.805542, 38.908133 ], [ 8.426514, 39.172659 ], [ 8.388062, 40.380028 ], [ 8.157349, 40.950863 ], [ 8.706665, 40.901058 ], [ 8.838501, 40.979898 ], [ 9.206543, 41.211722 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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.527954, 41.310824 ], [ 20.604858, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.016846, 40.842905 ], [ 20.994873, 40.580585 ], [ 20.670776, 40.438586 ], [ 20.610352, 40.111689 ], [ 20.148926, 39.626846 ], [ 19.978638, 39.698734 ], [ 19.956665, 39.918163 ], [ 19.401855, 40.254377 ], [ 19.313965, 40.730608 ], [ 19.390869, 41.310824 ], [ 20.527954, 41.310824 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Tunisia", "sov_a3": "TUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tunisia", "adm0_a3": "TUN", "geou_dif": 0, "geounit": "Tunisia", "gu_a3": "TUN", "su_dif": 0, "subunit": "Tunisia", "su_a3": "TUN", "brk_diff": 0, "name": "Tunisia", "name_long": "Tunisia", "brk_a3": "TUN", "brk_name": "Tunisia", "abbrev": "Tun.", "postal": "TN", "formal_en": "Republic of Tunisia", "name_sort": "Tunisia", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 10486339, "gdp_md_est": 81710, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TN", "iso_a3": "TUN", "iso_n3": "788", "un_a3": "788", "wb_a2": "TN", "wb_a3": "TUN", "woe_id": -99, "adm0_a3_is": "TUN", "adm0_a3_us": "TUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.508667, 37.352693 ], [ 10.206299, 37.230328 ], [ 10.178833, 36.725677 ], [ 11.024780, 37.094622 ], [ 11.096191, 36.901587 ], [ 10.596313, 36.412442 ], [ 10.590820, 35.951330 ], [ 10.936890, 35.701917 ], [ 10.805054, 34.836350 ], [ 10.145874, 34.334364 ], [ 10.338135, 33.788279 ], [ 10.854492, 33.770015 ], [ 11.107178, 33.293804 ], [ 11.486206, 33.137551 ], [ 11.431274, 32.370683 ], [ 10.942383, 32.082575 ], [ 10.634766, 31.765537 ], [ 9.948120, 31.377089 ], [ 10.052490, 30.963479 ], [ 9.964600, 30.543339 ], [ 9.481201, 30.311246 ], [ 9.052734, 32.105843 ], [ 8.437500, 32.509762 ], [ 8.426514, 32.750323 ], [ 7.608032, 33.344296 ], [ 7.520142, 34.098159 ], [ 8.140869, 34.655804 ], [ 8.371582, 35.483038 ], [ 8.217773, 36.434542 ], [ 8.415527, 36.949892 ], [ 9.508667, 37.352693 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.486206, 33.137551 ], [ 12.661743, 32.796510 ], [ 13.079224, 32.879587 ], [ 13.914185, 32.713355 ], [ 15.243530, 32.268555 ], [ 15.710449, 31.377089 ], [ 16.611328, 31.184609 ], [ 18.017578, 30.765439 ], [ 19.083252, 30.268556 ], [ 19.572144, 30.529145 ], [ 20.050049, 30.987028 ], [ 19.819336, 31.756196 ], [ 20.132446, 32.240683 ], [ 20.852051, 32.708733 ], [ 21.538696, 32.847289 ], [ 22.500000, 32.699489 ], [ 22.895508, 32.639375 ], [ 22.939453, 32.583849 ], [ 22.939453, 21.534847 ], [ 19.764404, 21.534847 ], [ 18.918457, 21.943046 ], [ 15.858765, 23.412847 ], [ 14.848022, 22.867318 ], [ 14.139404, 22.492257 ], [ 13.579102, 23.044353 ], [ 11.997070, 23.473324 ], [ 11.557617, 24.101633 ], [ 10.766602, 24.567108 ], [ 10.299683, 24.382124 ], [ 9.948120, 24.941238 ], [ 9.909668, 25.368846 ], [ 9.316406, 26.096255 ], [ 9.711914, 26.514820 ], [ 9.624023, 27.142257 ], [ 9.755859, 27.688392 ], [ 9.678955, 28.144660 ], [ 9.854736, 28.960089 ], [ 9.805298, 29.425245 ], [ 9.481201, 30.311246 ], [ 9.964600, 30.543339 ], [ 10.052490, 30.963479 ], [ 9.948120, 31.377089 ], [ 10.634766, 31.765537 ], [ 10.942383, 32.082575 ], [ 11.431274, 32.370683 ], [ 11.486206, 33.137551 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.997070, 23.473324 ], [ 13.579102, 23.044353 ], [ 14.139404, 22.492257 ], [ 14.848022, 22.867318 ], [ 14.996338, 21.943046 ], [ 15.056763, 21.534847 ], [ 8.525391, 21.534847 ], [ 9.244995, 21.943046 ], [ 11.997070, 23.473324 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.858765, 23.412847 ], [ 18.918457, 21.943046 ], [ 19.764404, 21.534847 ], [ 15.056763, 21.534847 ], [ 14.996338, 21.943046 ], [ 14.848022, 22.867318 ], [ 15.858765, 23.412847 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "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": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 41.310824 ], [ 22.939453, 40.354917 ], [ 22.813110, 40.476203 ], [ 22.620850, 40.258569 ], [ 22.846069, 39.660685 ], [ 22.939453, 39.576056 ], [ 22.939453, 37.335224 ], [ 22.774658, 37.309014 ], [ 22.939453, 36.923548 ], [ 22.939453, 36.421282 ], [ 22.500000, 36.412442 ], [ 22.489014, 36.412442 ], [ 21.665039, 36.848857 ], [ 21.291504, 37.649034 ], [ 21.115723, 38.311491 ], [ 20.725708, 38.771216 ], [ 20.214844, 39.342794 ], [ 20.148926, 39.626846 ], [ 20.610352, 40.111689 ], [ 20.670776, 40.438586 ], [ 20.994873, 40.580585 ], [ 21.016846, 40.842905 ], [ 21.670532, 40.934265 ], [ 21.758423, 40.979898 ], [ 22.055054, 41.153842 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.791138, 41.310824 ], [ 22.939453, 41.310824 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "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": "Polygon", "coordinates": [ [ [ -0.433960, 54.466845 ], [ 0.000000, 53.673934 ], [ 0.181274, 53.327592 ], [ 0.466919, 52.932086 ], [ 1.680908, 52.739618 ], [ 1.554565, 52.103131 ], [ 1.049194, 51.808615 ], [ 1.444702, 51.292841 ], [ 0.549316, 50.767734 ], [ 0.000000, 50.771208 ], [ -0.439453, 50.774682 ], [ -0.439453, 54.466845 ], [ -0.433960, 54.466845 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.387817, 43.012681 ], [ 9.558105, 42.155259 ], [ 9.228516, 41.380930 ], [ 8.772583, 41.586688 ], [ 8.541870, 42.256984 ], [ 8.745117, 42.629917 ], [ 9.387817, 43.012681 ] ] ], [ [ [ 2.510376, 51.151786 ], [ 2.653198, 50.798991 ], [ 3.120117, 50.781629 ], [ 3.587036, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.795532, 49.986552 ], [ 5.668945, 49.532339 ], [ 5.894165, 49.443129 ], [ 6.185303, 49.464554 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.019859 ], [ 7.591553, 48.334343 ], [ 7.465210, 47.620975 ], [ 7.190552, 47.450380 ], [ 6.734619, 47.543164 ], [ 6.767578, 47.290408 ], [ 6.036987, 46.728566 ], [ 6.020508, 46.274834 ], [ 6.498413, 46.430285 ], [ 6.838989, 45.993145 ], [ 6.800537, 45.710015 ], [ 7.091675, 45.336702 ], [ 6.745605, 45.030833 ], [ 7.003784, 44.257003 ], [ 7.547607, 44.130971 ], [ 7.432251, 43.695680 ], [ 6.525879, 43.129052 ], [ 4.553833, 43.401056 ], [ 3.098145, 43.076913 ], [ 2.982788, 42.476149 ], [ 1.823730, 42.346365 ], [ 0.697632, 42.799431 ], [ 0.335083, 42.581400 ], [ 0.000000, 42.666281 ], [ -0.439453, 42.775243 ], [ -0.439453, 49.535904 ], [ 0.000000, 49.681847 ], [ 1.334839, 50.127622 ], [ 1.636963, 50.948045 ], [ 2.510376, 51.151786 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.697632, 42.799431 ], [ 1.823730, 42.346365 ], [ 2.982788, 42.476149 ], [ 3.037720, 41.894100 ], [ 2.087402, 41.228249 ], [ 0.807495, 41.017211 ], [ 0.796509, 40.979898 ], [ 0.719604, 40.680638 ], [ 0.686646, 40.647304 ], [ -0.439453, 40.647304 ], [ -0.439453, 42.775243 ], [ 0.000000, 42.666281 ], [ 0.335083, 42.581400 ], [ 0.697632, 42.799431 ] ] ] } } +, +{ "type": "Feature", "properties": { "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": "Polygon", "coordinates": [ [ [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.500000, 54.949231 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 22.500000, 54.326135 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.425537, 56.022948 ], [ 12.579346, 55.776573 ], [ 12.689209, 55.612487 ], [ 12.084961, 54.800685 ], [ 11.041260, 55.366625 ], [ 10.903931, 55.776573 ], [ 10.898438, 55.782751 ], [ 11.975098, 56.022948 ], [ 12.425537, 56.022948 ] ] ], [ [ [ 10.200806, 56.022948 ], [ 9.953613, 55.776573 ], [ 9.645996, 55.472627 ], [ 9.920654, 54.983918 ], [ 9.277954, 54.832336 ], [ 8.525391, 54.965002 ], [ 8.118896, 55.519302 ], [ 8.107910, 55.776573 ], [ 8.102417, 56.022948 ], [ 10.200806, 56.022948 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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": "Polygon", "coordinates": [ [ [ 14.534912, 56.022948 ], [ 14.359131, 55.776573 ], [ 14.095459, 55.410307 ], [ 12.941895, 55.363503 ], [ 12.799072, 55.776573 ], [ 12.716675, 56.022948 ], [ 14.534912, 56.022948 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Netherlands", "sov_a3": "NL1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Netherlands", "adm0_a3": "NLD", "geou_dif": 0, "geounit": "Netherlands", "gu_a3": "NLD", "su_dif": 0, "subunit": "Netherlands", "su_a3": "NLD", "brk_diff": 0, "name": "Netherlands", "name_long": "Netherlands", "brk_a3": "NLD", "brk_name": "Netherlands", "abbrev": "Neth.", "postal": "NL", "formal_en": "Kingdom of the Netherlands", "name_sort": "Netherlands", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 16715999, "gdp_md_est": 672000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NL", "iso_a3": "NLD", "iso_n3": "528", "un_a3": "528", "wb_a2": "NL", "wb_a3": "NLD", "woe_id": -99, "adm0_a3_is": "NLD", "adm0_a3_us": "NLD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.069946, 53.510918 ], [ 6.904907, 53.484777 ], [ 7.091675, 53.146770 ], [ 6.838989, 52.231164 ], [ 6.586304, 51.852746 ], [ 5.987549, 51.852746 ], [ 6.152344, 50.805935 ], [ 5.603027, 51.037940 ], [ 4.971313, 51.477962 ], [ 4.042969, 51.268789 ], [ 3.312378, 51.347770 ], [ 3.828735, 51.621427 ], [ 4.702148, 53.094024 ], [ 6.069946, 53.510918 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Luxembourg", "sov_a3": "LUX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Luxembourg", "adm0_a3": "LUX", "geou_dif": 0, "geounit": "Luxembourg", "gu_a3": "LUX", "su_dif": 0, "subunit": "Luxembourg", "su_a3": "LUX", "brk_diff": 0, "name": "Luxembourg", "name_long": "Luxembourg", "brk_a3": "LUX", "brk_name": "Luxembourg", "abbrev": "Lux.", "postal": "L", "formal_en": "Grand Duchy of Luxembourg", "name_sort": "Luxembourg", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 491775, "gdp_md_est": 39370, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "LU", "iso_a3": "LUX", "iso_n3": "442", "un_a3": "442", "wb_a2": "LU", "wb_a3": "LUX", "woe_id": -99, "adm0_a3_is": "LUX", "adm0_a3_us": "LUX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.042480, 50.131143 ], [ 6.240234, 49.905249 ], [ 6.185303, 49.464554 ], [ 5.894165, 49.443129 ], [ 5.668945, 49.532339 ], [ 5.778809, 50.092393 ], [ 6.042480, 50.131143 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Switzerland", "sov_a3": "CHE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Switzerland", "adm0_a3": "CHE", "geou_dif": 0, "geounit": "Switzerland", "gu_a3": "CHE", "su_dif": 0, "subunit": "Switzerland", "su_a3": "CHE", "brk_diff": 0, "name": "Switzerland", "name_long": "Switzerland", "brk_a3": "CHE", "brk_name": "Switzerland", "abbrev": "Switz.", "postal": "CH", "formal_en": "Swiss Confederation", "name_sort": "Switzerland", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 7604467, "gdp_md_est": 316700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CH", "iso_a3": "CHE", "iso_n3": "756", "un_a3": "756", "wb_a2": "CH", "wb_a3": "CHE", "woe_id": -99, "adm0_a3_is": "CHE", "adm0_a3_us": "CHE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 11, "long_len": 11, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.519897, 47.831596 ], [ 9.591064, 47.528329 ], [ 9.629517, 47.349989 ], [ 9.475708, 47.103784 ], [ 9.931641, 46.924007 ], [ 10.442505, 46.893985 ], [ 10.360107, 46.487047 ], [ 9.920654, 46.316584 ], [ 9.179077, 46.441642 ], [ 8.964844, 46.038923 ], [ 8.486938, 46.008409 ], [ 8.311157, 46.164614 ], [ 7.750854, 45.824971 ], [ 7.272949, 45.779017 ], [ 6.838989, 45.993145 ], [ 6.498413, 46.430285 ], [ 6.020508, 46.274834 ], [ 6.036987, 46.728566 ], [ 6.767578, 47.290408 ], [ 6.734619, 47.543164 ], [ 7.190552, 47.450380 ], [ 7.465210, 47.620975 ], [ 8.316650, 47.617273 ], [ 8.519897, 47.831596 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Czech Republic", "sov_a3": "CZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Czech Republic", "adm0_a3": "CZE", "geou_dif": 0, "geounit": "Czech Republic", "gu_a3": "CZE", "su_dif": 0, "subunit": "Czech Republic", "su_a3": "CZE", "brk_diff": 0, "name": "Czech Rep.", "name_long": "Czech Republic", "brk_a3": "CZE", "brk_name": "Czech Rep.", "abbrev": "Cz. Rep.", "postal": "CZ", "formal_en": "Czech Republic", "name_sort": "Czech Republic", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 10211904, "gdp_md_est": 265200, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CZ", "iso_a3": "CZE", "iso_n3": "203", "un_a3": "203", "wb_a2": "CZ", "wb_a3": "CZE", "woe_id": -99, "adm0_a3_is": "CZE", "adm0_a3_us": "CZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 14, "abbrev_len": 8, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.304199, 51.117317 ], [ 14.567871, 51.003386 ], [ 15.012817, 51.106971 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.698197 ], [ 16.171875, 50.426019 ], [ 16.715698, 50.219095 ], [ 16.864014, 50.474987 ], [ 17.550659, 50.362985 ], [ 17.644043, 50.050085 ], [ 18.391113, 49.990084 ], [ 18.852539, 49.496675 ], [ 18.550415, 49.496675 ], [ 18.396606, 49.317961 ], [ 18.165894, 49.274973 ], [ 18.099976, 49.045070 ], [ 17.913208, 48.998240 ], [ 17.885742, 48.904449 ], [ 17.539673, 48.803246 ], [ 17.100220, 48.817716 ], [ 16.957397, 48.600225 ], [ 16.495972, 48.788771 ], [ 16.029053, 48.734455 ], [ 15.249023, 49.041469 ], [ 14.897461, 48.965794 ], [ 14.337158, 48.556614 ], [ 13.595581, 48.879167 ], [ 13.029785, 49.307217 ], [ 12.518921, 49.550162 ], [ 12.414551, 49.972422 ], [ 12.238770, 50.268277 ], [ 12.963867, 50.485474 ], [ 13.337402, 50.736455 ], [ 14.051514, 50.927276 ], [ 14.304199, 51.117317 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Poland", "sov_a3": "POL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Poland", "adm0_a3": "POL", "geou_dif": 0, "geounit": "Poland", "gu_a3": "POL", "su_dif": 0, "subunit": "Poland", "su_a3": "POL", "brk_diff": 0, "name": "Poland", "name_long": "Poland", "brk_a3": "POL", "brk_name": "Poland", "abbrev": "Pol.", "postal": "PL", "formal_en": "Republic of Poland", "name_sort": "Poland", "mapcolor7": 3, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 38482919, "gdp_md_est": 667900, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PL", "iso_a3": "POL", "iso_n3": "616", "un_a3": "616", "wb_a2": "PL", "wb_a3": "POL", "woe_id": -99, "adm0_a3_is": "POL", "adm0_a3_us": "POL", "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": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.622070, 54.854478 ], [ 18.616333, 54.683359 ], [ 18.693237, 54.441297 ], [ 19.660034, 54.428518 ], [ 20.890503, 54.313319 ], [ 22.500000, 54.326135 ], [ 22.730713, 54.329338 ], [ 22.939453, 54.284469 ], [ 22.939453, 49.866317 ], [ 22.516479, 49.478832 ], [ 22.774658, 49.030665 ], [ 22.554932, 49.088258 ], [ 22.500000, 49.109838 ], [ 21.604614, 49.471694 ], [ 20.885010, 49.332282 ], [ 20.412598, 49.432413 ], [ 19.824829, 49.217597 ], [ 19.319458, 49.575102 ], [ 18.907471, 49.435985 ], [ 18.391113, 49.990084 ], [ 17.644043, 50.050085 ], [ 17.550659, 50.362985 ], [ 16.864014, 50.474987 ], [ 16.715698, 50.219095 ], [ 16.171875, 50.426019 ], [ 16.237793, 50.698197 ], [ 15.490723, 50.785102 ], [ 15.012817, 51.106971 ], [ 14.606323, 51.747439 ], [ 14.683228, 52.093008 ], [ 14.436035, 52.626395 ], [ 14.073486, 52.981723 ], [ 14.348145, 53.248782 ], [ 14.117432, 53.758454 ], [ 14.798584, 54.052939 ], [ 16.358643, 54.514704 ], [ 17.622070, 54.854478 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Austria", "sov_a3": "AUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Austria", "adm0_a3": "AUT", "geou_dif": 0, "geounit": "Austria", "gu_a3": "AUT", "su_dif": 0, "subunit": "Austria", "su_a3": "AUT", "brk_diff": 0, "name": "Austria", "name_long": "Austria", "brk_a3": "AUT", "brk_name": "Austria", "abbrev": "Aust.", "postal": "A", "formal_en": "Republic of Austria", "name_sort": "Austria", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 8210281, "gdp_md_est": 329500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AT", "iso_a3": "AUT", "iso_n3": "040", "un_a3": "040", "wb_a2": "AT", "wb_a3": "AUT", "woe_id": -99, "adm0_a3_is": "AUT", "adm0_a3_us": "AUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.249023, 49.041469 ], [ 16.029053, 48.734455 ], [ 16.495972, 48.788771 ], [ 16.957397, 48.600225 ], [ 16.875000, 48.472921 ], [ 16.979370, 48.125768 ], [ 16.902466, 47.717154 ], [ 16.336670, 47.713458 ], [ 16.528931, 47.498648 ], [ 16.199341, 46.852678 ], [ 16.007080, 46.687131 ], [ 15.133667, 46.660747 ], [ 14.628296, 46.434071 ], [ 13.804321, 46.509735 ], [ 12.376099, 46.769968 ], [ 12.150879, 47.118738 ], [ 11.162109, 46.942762 ], [ 11.046753, 46.754917 ], [ 10.442505, 46.893985 ], [ 9.931641, 46.924007 ], [ 9.475708, 47.103784 ], [ 9.629517, 47.349989 ], [ 9.591064, 47.528329 ], [ 9.893188, 47.580231 ], [ 10.398560, 47.305310 ], [ 10.541382, 47.569114 ], [ 11.425781, 47.524620 ], [ 12.139893, 47.706065 ], [ 12.617798, 47.672786 ], [ 12.930908, 47.468950 ], [ 13.024292, 47.639485 ], [ 12.881470, 48.290503 ], [ 13.238525, 48.418264 ], [ 13.595581, 48.879167 ], [ 14.337158, 48.556614 ], [ 14.897461, 48.965794 ], [ 15.249023, 49.041469 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.206543, 41.211722 ], [ 9.404297, 40.979898 ], [ 9.684448, 40.647304 ], [ 8.278198, 40.647304 ], [ 8.157349, 40.950863 ], [ 8.706665, 40.901058 ], [ 8.838501, 40.979898 ], [ 9.206543, 41.211722 ] ] ], [ [ [ 12.150879, 47.118738 ], [ 12.376099, 46.769968 ], [ 13.804321, 46.509735 ], [ 13.694458, 46.019853 ], [ 13.936157, 45.594822 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.381592, 44.887012 ], [ 12.260742, 44.602202 ], [ 12.584839, 44.091531 ], [ 13.524170, 43.588349 ], [ 14.029541, 42.763146 ], [ 15.139160, 41.955405 ], [ 15.924683, 41.963575 ], [ 16.166382, 41.742627 ], [ 15.886230, 41.541478 ], [ 17.265015, 40.979898 ], [ 17.517700, 40.880295 ], [ 17.896729, 40.647304 ], [ 14.551392, 40.647304 ], [ 14.057007, 40.788860 ], [ 13.848267, 40.979898 ], [ 13.623047, 41.191056 ], [ 12.886963, 41.257162 ], [ 12.101440, 41.705729 ], [ 11.189575, 42.358544 ], [ 10.508423, 42.932296 ], [ 10.195312, 43.921637 ], [ 9.700928, 44.040219 ], [ 8.887939, 44.367060 ], [ 8.426514, 44.233393 ], [ 7.849731, 43.771094 ], [ 7.432251, 43.695680 ], [ 7.547607, 44.130971 ], [ 7.003784, 44.257003 ], [ 6.745605, 45.030833 ], [ 7.091675, 45.336702 ], [ 6.800537, 45.710015 ], [ 6.838989, 45.993145 ], [ 7.272949, 45.779017 ], [ 7.750854, 45.824971 ], [ 8.311157, 46.164614 ], [ 8.486938, 46.008409 ], [ 8.964844, 46.038923 ], [ 9.179077, 46.441642 ], [ 9.920654, 46.316584 ], [ 10.360107, 46.487047 ], [ 10.442505, 46.893985 ], [ 11.046753, 46.754917 ], [ 11.162109, 46.942762 ], [ 12.150879, 47.118738 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Hungary", "sov_a3": "HUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Hungary", "adm0_a3": "HUN", "geou_dif": 0, "geounit": "Hungary", "gu_a3": "HUN", "su_dif": 0, "subunit": "Hungary", "su_a3": "HUN", "brk_diff": 0, "name": "Hungary", "name_long": "Hungary", "brk_a3": "HUN", "brk_name": "Hungary", "abbrev": "Hun.", "postal": "HU", "formal_en": "Republic of Hungary", "name_sort": "Hungary", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 9905596, "gdp_md_est": 196600, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "HU", "iso_a3": "HUN", "iso_n3": "348", "un_a3": "348", "wb_a2": "HU", "wb_a3": "HUN", "woe_id": -99, "adm0_a3_is": "HUN", "adm0_a3_us": "HUN", "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": "Polygon", "coordinates": [ [ [ 20.797119, 48.625647 ], [ 21.868286, 48.323387 ], [ 22.082520, 48.425555 ], [ 22.500000, 48.221013 ], [ 22.637329, 48.151428 ], [ 22.708740, 47.883197 ], [ 22.500000, 47.813155 ], [ 22.098999, 47.672786 ], [ 21.621094, 46.995241 ], [ 21.016846, 46.316584 ], [ 20.214844, 46.130363 ], [ 19.594116, 46.172223 ], [ 18.825073, 45.909122 ], [ 18.451538, 45.759859 ], [ 17.627563, 45.954969 ], [ 16.880493, 46.381044 ], [ 16.561890, 46.505954 ], [ 16.369629, 46.841407 ], [ 16.199341, 46.852678 ], [ 16.528931, 47.498648 ], [ 16.336670, 47.713458 ], [ 16.902466, 47.717154 ], [ 16.979370, 48.125768 ], [ 17.484741, 47.868459 ], [ 17.852783, 47.761484 ], [ 18.693237, 47.883197 ], [ 18.775635, 48.085419 ], [ 19.171143, 48.114767 ], [ 19.660034, 48.268569 ], [ 19.764404, 48.202710 ], [ 20.236816, 48.330691 ], [ 20.473022, 48.563885 ], [ 20.797119, 48.625647 ] ] ] } } +, +{ "type": "Feature", "properties": { "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.215088, 43.524655 ], [ 19.478760, 43.353144 ], [ 19.627075, 43.217187 ], [ 19.956665, 43.109004 ], [ 20.335693, 42.900113 ], [ 20.253296, 42.815551 ], [ 20.066528, 42.589489 ], [ 19.797363, 42.500453 ], [ 19.736938, 42.690511 ], [ 19.302979, 42.195969 ], [ 19.368896, 41.877741 ], [ 19.160156, 41.955405 ], [ 18.880005, 42.285437 ], [ 18.446045, 42.480200 ], [ 18.555908, 42.650122 ], [ 18.704224, 43.201172 ], [ 19.028320, 43.432977 ], [ 19.215088, 43.524655 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 56.022948 ], [ 22.939453, 54.284469 ], [ 22.730713, 54.329338 ], [ 22.648315, 54.584797 ], [ 22.752686, 54.857640 ], [ 22.500000, 54.949231 ], [ 22.313232, 55.015426 ], [ 21.264038, 55.191412 ], [ 21.115723, 55.776573 ], [ 21.055298, 56.022948 ], [ 22.939453, 56.022948 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "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": "Polygon", "coordinates": [ [ [ 22.939453, 47.997274 ], [ 22.939453, 43.834527 ], [ 22.653809, 44.237328 ], [ 22.500000, 44.386692 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.429857 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.684277 ], [ 22.456055, 44.703802 ], [ 22.142944, 44.480830 ], [ 21.560669, 44.770137 ], [ 21.478271, 45.182037 ], [ 20.874023, 45.417732 ], [ 20.758667, 45.736860 ], [ 20.214844, 46.130363 ], [ 21.016846, 46.316584 ], [ 21.621094, 46.995241 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.813155 ], [ 22.708740, 47.883197 ], [ 22.939453, 47.997274 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.939453, 43.173135 ], [ 22.939453, 41.459195 ], [ 22.879028, 42.000325 ], [ 22.500000, 42.244785 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.423457 ], [ 22.543945, 42.463993 ], [ 22.500000, 42.512602 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.702623 ], [ 22.604370, 42.900113 ], [ 22.939453, 43.173135 ] ] ], [ [ [ 22.939453, 43.253205 ], [ 22.500000, 43.644026 ], [ 22.406616, 44.008620 ], [ 22.500000, 44.091531 ], [ 22.653809, 44.237328 ], [ 22.939453, 43.834527 ], [ 22.939453, 43.253205 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "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": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 41.339700 ], [ 22.939453, 40.647304 ], [ 21.000366, 40.647304 ], [ 21.016846, 40.842905 ], [ 21.670532, 40.934265 ], [ 21.758423, 40.979898 ], [ 22.055054, 41.153842 ], [ 22.500000, 41.137296 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.939453, 41.339700 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "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": "Polygon", "coordinates": [ [ [ 15.545654, 66.687784 ], [ 15.391846, 66.513260 ], [ 15.106201, 66.196009 ], [ 13.551636, 64.788168 ], [ 13.919678, 64.446742 ], [ 13.568115, 64.050575 ], [ 12.579346, 64.067396 ], [ 11.925659, 63.129538 ], [ 11.991577, 61.801688 ], [ 12.628784, 61.293988 ], [ 12.299194, 60.119619 ], [ 11.464233, 59.433903 ], [ 11.024780, 58.856383 ], [ 10.354614, 59.470199 ], [ 8.377075, 58.315260 ], [ 7.047729, 58.080781 ], [ 5.663452, 58.588299 ], [ 5.306396, 59.664966 ], [ 4.987793, 61.972525 ], [ 5.910645, 62.616089 ], [ 8.552856, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.354126, 65.881460 ], [ 13.123169, 66.513260 ], [ 13.337402, 66.687784 ], [ 15.545654, 66.687784 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.370605, 56.111873 ], [ 12.579346, 55.776573 ], [ 12.689209, 55.612487 ], [ 12.628784, 55.528631 ], [ 10.986328, 55.528631 ], [ 10.903931, 55.776573 ], [ 10.898438, 55.782751 ], [ 12.370605, 56.111873 ] ] ], [ [ [ 10.579834, 57.730552 ], [ 10.541382, 57.216634 ], [ 10.244751, 56.891003 ], [ 10.365601, 56.610909 ], [ 10.909424, 56.459455 ], [ 10.667725, 56.084298 ], [ 10.365601, 56.191424 ], [ 9.953613, 55.776573 ], [ 9.706421, 55.528631 ], [ 8.118896, 55.528631 ], [ 8.107910, 55.776573 ], [ 8.085938, 56.541315 ], [ 8.256226, 56.812908 ], [ 8.541870, 57.112385 ], [ 9.420776, 57.174970 ], [ 9.772339, 57.450861 ], [ 10.579834, 57.730552 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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": "Polygon", "coordinates": [ [ [ 22.939453, 66.687784 ], [ 22.939453, 65.850015 ], [ 22.500000, 65.777998 ], [ 22.181396, 65.723852 ], [ 21.209106, 65.028104 ], [ 21.368408, 64.415921 ], [ 19.775391, 63.609658 ], [ 17.847290, 62.749696 ], [ 17.116699, 61.341444 ], [ 17.830811, 60.638183 ], [ 18.786621, 60.084023 ], [ 17.863770, 58.955674 ], [ 16.825562, 58.722599 ], [ 16.446533, 57.043718 ], [ 15.875244, 56.105747 ], [ 14.661255, 56.203649 ], [ 14.359131, 55.776573 ], [ 14.183350, 55.528631 ], [ 12.886963, 55.528631 ], [ 12.799072, 55.776573 ], [ 12.623291, 56.307396 ], [ 11.782837, 57.441993 ], [ 11.024780, 58.856383 ], [ 11.464233, 59.433903 ], [ 12.299194, 60.119619 ], [ 12.628784, 61.293988 ], [ 11.991577, 61.801688 ], [ 11.925659, 63.129538 ], [ 12.579346, 64.067396 ], [ 13.568115, 64.050575 ], [ 13.919678, 64.446742 ], [ 13.551636, 64.788168 ], [ 15.106201, 66.196009 ], [ 15.391846, 66.513260 ], [ 15.545654, 66.687784 ], [ 22.939453, 66.687784 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 64.057785 ], [ 22.939453, 59.855851 ], [ 22.868042, 59.847574 ], [ 22.500000, 60.196156 ], [ 22.285767, 60.392148 ], [ 21.318970, 60.721571 ], [ 21.544189, 61.705499 ], [ 21.055298, 62.608508 ], [ 21.533203, 63.191541 ], [ 22.439575, 63.818864 ], [ 22.500000, 63.845512 ], [ 22.939453, 64.057785 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "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": "Polygon", "coordinates": [ [ [ 22.521973, 57.754007 ], [ 22.939453, 57.365052 ], [ 22.939453, 56.310443 ], [ 22.500000, 56.328721 ], [ 22.197876, 56.337856 ], [ 21.055298, 56.032157 ], [ 21.088257, 56.785836 ], [ 21.577148, 57.412420 ], [ 22.500000, 57.745213 ], [ 22.521973, 57.754007 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.197876, 56.337856 ], [ 22.500000, 56.328721 ], [ 22.939453, 56.310443 ], [ 22.939453, 55.528631 ], [ 21.181641, 55.528631 ], [ 21.115723, 55.776573 ], [ 21.055298, 56.032157 ], [ 22.197876, 56.337856 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "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": "Polygon", "coordinates": [ [ [ 21.373901, 70.255741 ], [ 22.500000, 70.220452 ], [ 22.939453, 70.205576 ], [ 22.939453, 68.865498 ], [ 22.500000, 68.847665 ], [ 22.351685, 68.843700 ], [ 21.242065, 69.370638 ], [ 20.643311, 69.107777 ], [ 20.022583, 69.066601 ], [ 19.874268, 68.407268 ], [ 17.990112, 68.568414 ], [ 17.726440, 68.011685 ], [ 16.765137, 68.015798 ], [ 15.391846, 66.513260 ], [ 15.232544, 66.337505 ], [ 12.908936, 66.337505 ], [ 13.123169, 66.513260 ], [ 14.760132, 67.811319 ], [ 16.435547, 68.564399 ], [ 19.182129, 69.818786 ], [ 21.373901, 70.255741 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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": "Polygon", "coordinates": [ [ [ 20.643311, 69.107777 ], [ 21.978149, 68.618536 ], [ 22.500000, 68.393113 ], [ 22.939453, 68.200133 ], [ 22.939453, 66.337505 ], [ 15.232544, 66.337505 ], [ 15.391846, 66.513260 ], [ 16.765137, 68.015798 ], [ 17.726440, 68.011685 ], [ 17.990112, 68.568414 ], [ 19.874268, 68.407268 ], [ 20.022583, 69.066601 ], [ 20.643311, 69.107777 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.242065, 69.370638 ], [ 22.351685, 68.843700 ], [ 22.500000, 68.847665 ], [ 22.939453, 68.865498 ], [ 22.939453, 68.200133 ], [ 22.500000, 68.393113 ], [ 21.978149, 68.618536 ], [ 20.643311, 69.107777 ], [ 21.242065, 69.370638 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "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": [ [ [ [ 20.253296, 79.253586 ], [ 20.615845, 79.171335 ], [ 21.538696, 78.956665 ], [ 19.022827, 78.562667 ], [ 18.468018, 77.826799 ], [ 17.589111, 77.638894 ], [ 17.116699, 76.809516 ], [ 15.908203, 76.770602 ], [ 13.760376, 77.381106 ], [ 14.666748, 77.736118 ], [ 13.167114, 78.025574 ], [ 11.217041, 78.870048 ], [ 10.925903, 79.171335 ], [ 10.843506, 79.253586 ], [ 20.253296, 79.253586 ] ] ], [ [ [ 22.879028, 78.455425 ], [ 22.939453, 78.403642 ], [ 22.939453, 77.529054 ], [ 22.500000, 77.446940 ], [ 22.489014, 77.445746 ], [ 20.725708, 77.677640 ], [ 21.412354, 77.935203 ], [ 20.808105, 78.254743 ], [ 22.500000, 78.419091 ], [ 22.879028, 78.455425 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 16.990356, 80.051409 ], [ 18.248291, 79.701925 ], [ 20.615845, 79.171335 ], [ 20.972900, 79.088462 ], [ 11.008301, 79.088462 ], [ 10.925903, 79.171335 ], [ 10.442505, 79.652708 ], [ 13.167114, 80.010518 ], [ 13.716431, 79.660599 ], [ 15.139160, 79.674392 ], [ 15.518188, 80.016233 ], [ 16.990356, 80.051409 ] ] ], [ [ [ 22.917480, 80.657741 ], [ 22.939453, 80.655958 ], [ 22.939453, 79.405136 ], [ 22.500000, 79.430356 ], [ 20.072021, 79.567511 ], [ 19.896240, 79.842378 ], [ 18.457031, 79.860768 ], [ 17.363892, 80.319196 ], [ 20.451050, 80.598704 ], [ 21.906738, 80.357916 ], [ 22.500000, 80.534782 ], [ 22.917480, 80.657741 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 45.439453, -82.620052 ], [ 45.439453, -85.088894 ], [ 22.060547, -85.088894 ], [ 22.060547, -82.620052 ], [ 45.439453, -82.620052 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 45.439453, -79.088462 ], [ 45.439453, -82.732092 ], [ 22.060547, -82.732092 ], [ 22.060547, -79.088462 ], [ 45.439453, -79.088462 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 45.439453, -73.898111 ], [ 45.439453, -79.253586 ], [ 22.060547, -79.253586 ], [ 22.060547, -73.898111 ], [ 45.439453, -73.898111 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 45.439453, -67.896221 ], [ 45.439453, -74.140084 ], [ 22.060547, -74.140084 ], [ 22.060547, -70.464371 ], [ 22.500000, -70.665426 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 45.000000, -68.021966 ], [ 45.439453, -67.896221 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zimbabwe", "sov_a3": "ZWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zimbabwe", "adm0_a3": "ZWE", "geou_dif": 0, "geounit": "Zimbabwe", "gu_a3": "ZWE", "su_dif": 0, "subunit": "Zimbabwe", "su_a3": "ZWE", "brk_diff": 0, "name": "Zimbabwe", "name_long": "Zimbabwe", "brk_a3": "ZWE", "brk_name": "Zimbabwe", "abbrev": "Zimb.", "postal": "ZW", "formal_en": "Republic of Zimbabwe", "name_sort": "Zimbabwe", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 12619600, "gdp_md_est": 9323, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ZW", "iso_a3": "ZWE", "iso_n3": "716", "un_a3": "716", "wb_a2": "ZW", "wb_a3": "ZWE", "woe_id": -99, "adm0_a3_is": "ZWE", "adm0_a3_us": "ZWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.854858, -21.534847 ], [ 31.475830, -21.943046 ], [ 31.190186, -22.248429 ], [ 30.657349, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.100909 ], [ 29.426880, -22.090730 ], [ 29.218140, -21.943046 ], [ 28.789673, -21.637005 ], [ 28.262329, -21.534847 ], [ 31.854858, -21.534847 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mozambique", "sov_a3": "MOZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mozambique", "adm0_a3": "MOZ", "geou_dif": 0, "geounit": "Mozambique", "gu_a3": "MOZ", "su_dif": 0, "subunit": "Mozambique", "su_a3": "MOZ", "brk_diff": 0, "name": "Mozambique", "name_long": "Mozambique", "brk_a3": "MOZ", "brk_name": "Mozambique", "abbrev": "Moz.", "postal": "MZ", "formal_en": "Republic of Mozambique", "name_sort": "Mozambique", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 21669278, "gdp_md_est": 18940, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MZ", "iso_a3": "MOZ", "iso_n3": "508", "un_a3": "508", "wb_a2": "MZ", "wb_a3": "MOZ", "woe_id": -99, "adm0_a3_is": "MOZ", "adm0_a3_us": "MOZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.266113, -21.534847 ], [ 35.370483, -21.836006 ], [ 35.375977, -21.943046 ], [ 35.381470, -22.136532 ], [ 35.557251, -22.085640 ], [ 35.529785, -23.069624 ], [ 35.370483, -23.533773 ], [ 35.606689, -23.704895 ], [ 35.458374, -24.121689 ], [ 35.035400, -24.477150 ], [ 34.211426, -24.811668 ], [ 33.008423, -25.353955 ], [ 32.574463, -25.725684 ], [ 32.656860, -26.145576 ], [ 32.915039, -26.214591 ], [ 32.827148, -26.740705 ], [ 32.069092, -26.730893 ], [ 31.981201, -26.288490 ], [ 31.832886, -25.839449 ], [ 31.750488, -25.482951 ], [ 31.926270, -24.367114 ], [ 31.668091, -23.654588 ], [ 31.190186, -22.248429 ], [ 31.475830, -21.943046 ], [ 31.854858, -21.534847 ], [ 35.266113, -21.534847 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 28.262329, -21.534847 ], [ 28.789673, -21.637005 ], [ 29.218140, -21.943046 ], [ 29.426880, -22.090730 ], [ 28.015137, -22.826820 ], [ 27.114258, -23.574057 ], [ 26.784668, -24.236947 ], [ 26.482544, -24.612063 ], [ 25.938721, -24.691943 ], [ 25.762939, -25.170145 ], [ 25.664062, -25.482951 ], [ 25.021362, -25.715786 ], [ 24.208374, -25.666285 ], [ 23.730469, -25.388698 ], [ 23.307495, -25.264568 ], [ 22.824097, -25.497827 ], [ 22.576904, -25.977799 ], [ 22.500000, -26.027170 ], [ 22.104492, -26.278640 ], [ 22.060547, -26.318037 ], [ 22.060547, -21.534847 ], [ 28.262329, -21.534847 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Africa", "sov_a3": "ZAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Africa", "adm0_a3": "ZAF", "geou_dif": 0, "geounit": "South Africa", "gu_a3": "ZAF", "su_dif": 0, "subunit": "South Africa", "su_a3": "ZAF", "brk_diff": 0, "name": "South Africa", "name_long": "South Africa", "brk_a3": "ZAF", "brk_name": "South Africa", "abbrev": "S.Af.", "postal": "ZA", "formal_en": "Republic of South Africa", "name_sort": "South Africa", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 49052489, "gdp_md_est": 491000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ZA", "iso_a3": "ZAF", "iso_n3": "710", "un_a3": "710", "wb_a2": "ZA", "wb_a3": "ZAF", "woe_id": -99, "adm0_a3_is": "ZAF", "adm0_a3_us": "ZAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.426880, -22.090730 ], [ 29.838867, -22.100909 ], [ 30.322266, -22.268764 ], [ 30.657349, -22.146708 ], [ 31.190186, -22.248429 ], [ 31.668091, -23.654588 ], [ 31.926270, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.832886, -25.839449 ], [ 31.333008, -25.656382 ], [ 31.041870, -25.730633 ], [ 30.948486, -26.022234 ], [ 30.673828, -26.396790 ], [ 30.684814, -26.740705 ], [ 31.278076, -27.283926 ], [ 31.865845, -27.176469 ], [ 32.069092, -26.730893 ], [ 32.827148, -26.740705 ], [ 32.579956, -27.469287 ], [ 32.459106, -28.299544 ], [ 32.200928, -28.748397 ], [ 31.519775, -29.252856 ], [ 31.322021, -29.401320 ], [ 30.899048, -29.907329 ], [ 30.618896, -30.420256 ], [ 30.053101, -31.137603 ], [ 28.921509, -32.170963 ], [ 28.218384, -32.768800 ], [ 27.460327, -33.224903 ], [ 26.416626, -33.614619 ], [ 25.905762, -33.664925 ], [ 25.779419, -33.943360 ], [ 25.169678, -33.792844 ], [ 24.675293, -33.984364 ], [ 23.593140, -33.792844 ], [ 22.983398, -33.916013 ], [ 22.571411, -33.861293 ], [ 22.500000, -33.888658 ], [ 22.060547, -34.057211 ], [ 22.060547, -26.318037 ], [ 22.104492, -26.278640 ], [ 22.500000, -26.027170 ], [ 22.576904, -25.977799 ], [ 22.824097, -25.497827 ], [ 23.307495, -25.264568 ], [ 23.730469, -25.388698 ], [ 24.208374, -25.666285 ], [ 25.021362, -25.715786 ], [ 25.664062, -25.482951 ], [ 25.762939, -25.170145 ], [ 25.938721, -24.691943 ], [ 26.482544, -24.612063 ], [ 26.784668, -24.236947 ], [ 27.114258, -23.574057 ], [ 28.015137, -22.826820 ], [ 29.426880, -22.090730 ] ], [ [ 28.536987, -28.647210 ], [ 28.070068, -28.849485 ], [ 27.531738, -29.238477 ], [ 26.998901, -29.873992 ], [ 27.745972, -30.642638 ], [ 28.103027, -30.543339 ], [ 28.289795, -30.225848 ], [ 28.844604, -30.069094 ], [ 29.014893, -29.740532 ], [ 29.322510, -29.252856 ], [ 28.976440, -28.955282 ], [ 28.536987, -28.647210 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Swaziland", "sov_a3": "SWZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Swaziland", "adm0_a3": "SWZ", "geou_dif": 0, "geounit": "Swaziland", "gu_a3": "SWZ", "su_dif": 0, "subunit": "Swaziland", "su_a3": "SWZ", "brk_diff": 0, "name": "Swaziland", "name_long": "Swaziland", "brk_a3": "SWZ", "brk_name": "Swaziland", "abbrev": "Swz.", "postal": "SW", "formal_en": "Kingdom of Swaziland", "name_sort": "Swaziland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 1123913, "gdp_md_est": 5702, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SZ", "iso_a3": "SWZ", "iso_n3": "748", "un_a3": "748", "wb_a2": "SZ", "wb_a3": "SWZ", "woe_id": -99, "adm0_a3_is": "SWZ", "adm0_a3_us": "SWZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.333008, -25.656382 ], [ 31.832886, -25.839449 ], [ 31.981201, -26.288490 ], [ 32.069092, -26.730893 ], [ 31.865845, -27.176469 ], [ 31.278076, -27.283926 ], [ 30.684814, -26.740705 ], [ 30.673828, -26.396790 ], [ 30.948486, -26.022234 ], [ 31.041870, -25.730633 ], [ 31.333008, -25.656382 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Madagascar", "sov_a3": "MDG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Madagascar", "adm0_a3": "MDG", "geou_dif": 0, "geounit": "Madagascar", "gu_a3": "MDG", "su_dif": 0, "subunit": "Madagascar", "su_a3": "MDG", "brk_diff": 0, "name": "Madagascar", "name_long": "Madagascar", "brk_a3": "MDG", "brk_name": "Madagascar", "abbrev": "Mad.", "postal": "MG", "formal_en": "Republic of Madagascar", "name_sort": "Madagascar", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 20653556, "gdp_md_est": 20130, "pop_year": -99, "lastcensus": 1993, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MG", "iso_a3": "MDG", "iso_n3": "450", "un_a3": "450", "wb_a2": "MG", "wb_a3": "MDG", "woe_id": -99, "adm0_a3_is": "MDG", "adm0_a3_us": "MDG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -21.534847 ], [ 45.439453, -25.582085 ], [ 45.406494, -25.596948 ], [ 45.000000, -25.418470 ], [ 44.038696, -24.986058 ], [ 43.758545, -24.457151 ], [ 43.692627, -23.574057 ], [ 43.341064, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.280640, -21.943046 ], [ 43.379517, -21.534847 ], [ 45.439453, -21.534847 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.123535, 0.439449 ], [ 33.892822, 0.109863 ], [ 33.892822, 0.000000 ], [ 33.898315, -0.944781 ], [ 31.865845, -1.027167 ], [ 30.767212, -1.010690 ], [ 30.415649, -1.131518 ], [ 29.816895, -1.439058 ], [ 29.575195, -1.340210 ], [ 29.586182, -0.582265 ], [ 29.816895, -0.203247 ], [ 29.833374, 0.000000 ], [ 29.860840, 0.439449 ], [ 34.123535, 0.439449 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.984497, 0.439449 ], [ 40.989990, 0.000000 ], [ 40.989990, -0.856902 ], [ 41.583252, -1.680667 ], [ 40.880127, -2.081451 ], [ 40.632935, -2.498597 ], [ 40.259399, -2.569939 ], [ 40.116577, -3.277630 ], [ 39.797974, -3.677892 ], [ 39.600220, -4.346411 ], [ 39.199219, -4.674980 ], [ 37.765503, -3.672410 ], [ 37.694092, -3.096636 ], [ 34.068604, -1.054628 ], [ 33.898315, -0.944781 ], [ 33.892822, 0.000000 ], [ 33.892822, 0.109863 ], [ 34.123535, 0.439449 ], [ 40.984497, 0.439449 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.313599, 0.439449 ], [ 43.132324, 0.296630 ], [ 42.868652, 0.000000 ], [ 42.039185, -0.917319 ], [ 41.808472, -1.444549 ], [ 41.583252, -1.680667 ], [ 40.989990, -0.856902 ], [ 40.989990, 0.000000 ], [ 40.984497, 0.439449 ], [ 43.313599, 0.439449 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.860840, 0.439449 ], [ 29.833374, 0.000000 ], [ 29.816895, -0.203247 ], [ 29.586182, -0.582265 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.614776 ], [ 29.251099, -2.213195 ], [ 29.113770, -2.290039 ], [ 29.020386, -2.838804 ], [ 29.273071, -3.288598 ], [ 29.338989, -4.499762 ], [ 29.514771, -5.419148 ], [ 29.415894, -5.938436 ], [ 29.619141, -6.517272 ], [ 30.195923, -7.079088 ], [ 30.739746, -8.336518 ], [ 30.344238, -8.233237 ], [ 28.998413, -8.401734 ], [ 28.734741, -8.521268 ], [ 28.449097, -9.161756 ], [ 28.668823, -9.600750 ], [ 28.493042, -10.784745 ], [ 28.372192, -11.792080 ], [ 28.641357, -11.969471 ], [ 29.338989, -12.356100 ], [ 29.613647, -12.173595 ], [ 29.696045, -13.255986 ], [ 28.932495, -13.245293 ], [ 28.520508, -12.693933 ], [ 28.152466, -12.270231 ], [ 27.383423, -12.130635 ], [ 27.163696, -11.603813 ], [ 26.548462, -11.921103 ], [ 25.751953, -11.781325 ], [ 25.416870, -11.329253 ], [ 24.779663, -11.237674 ], [ 24.312744, -11.259225 ], [ 24.252319, -10.951978 ], [ 23.911743, -10.925011 ], [ 23.455811, -10.865676 ], [ 22.835083, -11.016689 ], [ 22.500000, -10.995120 ], [ 22.401123, -10.989728 ], [ 22.153931, -11.081385 ], [ 22.203369, -9.893099 ], [ 22.060547, -9.725300 ], [ 22.060547, 0.439449 ], [ 29.860840, 0.439449 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.060547, -12.897489 ], [ 22.060547, -9.725300 ], [ 22.203369, -9.893099 ], [ 22.153931, -11.081385 ], [ 22.401123, -10.989728 ], [ 22.500000, -10.995120 ], [ 22.835083, -11.016689 ], [ 23.455811, -10.865676 ], [ 23.911743, -10.925011 ], [ 24.016113, -11.232286 ], [ 23.900757, -11.722167 ], [ 24.076538, -12.189704 ], [ 23.928223, -12.565287 ], [ 24.016113, -12.908198 ], [ 22.500000, -12.897489 ], [ 22.060547, -12.897489 ] ] ], [ [ [ 22.060547, -16.288506 ], [ 22.500000, -16.820316 ], [ 22.560425, -16.893916 ], [ 23.214111, -17.518344 ], [ 22.500000, -17.680662 ], [ 22.060547, -17.774843 ], [ 22.060547, -16.288506 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Namibia", "sov_a3": "NAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Namibia", "adm0_a3": "NAM", "geou_dif": 0, "geounit": "Namibia", "gu_a3": "NAM", "su_dif": 0, "subunit": "Namibia", "su_a3": "NAM", "brk_diff": 0, "name": "Namibia", "name_long": "Namibia", "brk_a3": "NAM", "brk_name": "Namibia", "abbrev": "Nam.", "postal": "NA", "formal_en": "Republic of Namibia", "name_sort": "Namibia", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 2108665, "gdp_md_est": 13250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "NA", "iso_a3": "NAM", "iso_n3": "516", "un_a3": "516", "wb_a2": "NA", "wb_a3": "NAM", "woe_id": -99, "adm0_a3_is": "NAM", "adm0_a3_us": "NAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.032593, -17.292954 ], [ 24.680786, -17.350638 ], [ 25.076294, -17.575957 ], [ 25.081787, -17.659726 ], [ 24.515991, -17.884659 ], [ 24.213867, -17.884659 ], [ 23.576660, -18.276302 ], [ 23.192139, -17.868975 ], [ 22.500000, -18.025751 ], [ 22.060547, -18.124971 ], [ 22.060547, -17.774843 ], [ 22.500000, -17.680662 ], [ 23.214111, -17.518344 ], [ 24.032593, -17.292954 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Rwanda", "sov_a3": "RWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Rwanda", "adm0_a3": "RWA", "geou_dif": 0, "geounit": "Rwanda", "gu_a3": "RWA", "su_dif": 0, "subunit": "Rwanda", "su_a3": "RWA", "brk_diff": 0, "name": "Rwanda", "name_long": "Rwanda", "brk_a3": "RWA", "brk_name": "Rwanda", "abbrev": "Rwa.", "postal": "RW", "formal_en": "Republic of Rwanda", "name_sort": "Rwanda", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 10473282, "gdp_md_est": 9706, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "RW", "iso_a3": "RWA", "iso_n3": "646", "un_a3": "646", "wb_a2": "RW", "wb_a3": "RWA", "woe_id": -99, "adm0_a3_is": "RWA", "adm0_a3_us": "RWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.415649, -1.131518 ], [ 30.811157, -1.697139 ], [ 30.756226, -2.284551 ], [ 30.465088, -2.410787 ], [ 29.937744, -2.344926 ], [ 29.630127, -2.915611 ], [ 29.020386, -2.838804 ], [ 29.113770, -2.290039 ], [ 29.251099, -2.213195 ], [ 29.289551, -1.614776 ], [ 29.575195, -1.340210 ], [ 29.816895, -1.439058 ], [ 30.415649, -1.131518 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.344238, -8.233237 ], [ 30.739746, -8.336518 ], [ 31.157227, -8.591884 ], [ 31.552734, -8.760224 ], [ 32.189941, -8.928487 ], [ 32.755737, -9.226827 ], [ 33.228149, -9.676569 ], [ 33.480835, -10.520219 ], [ 33.310547, -10.795537 ], [ 33.112793, -11.603813 ], [ 33.305054, -12.431212 ], [ 32.986450, -12.779661 ], [ 32.684326, -13.710035 ], [ 33.211670, -13.971385 ], [ 30.179443, -14.790817 ], [ 30.272827, -15.506619 ], [ 29.514771, -15.644197 ], [ 28.943481, -16.040534 ], [ 28.822632, -16.388661 ], [ 28.465576, -16.467695 ], [ 27.597656, -17.287709 ], [ 27.042847, -17.936929 ], [ 26.702271, -17.957832 ], [ 26.378174, -17.842833 ], [ 25.263062, -17.732991 ], [ 25.081787, -17.659726 ], [ 25.076294, -17.575957 ], [ 24.680786, -17.350638 ], [ 24.032593, -17.292954 ], [ 23.214111, -17.518344 ], [ 22.560425, -16.893916 ], [ 22.500000, -16.820316 ], [ 22.060547, -16.288506 ], [ 22.060547, -12.897489 ], [ 22.500000, -12.897489 ], [ 24.016113, -12.908198 ], [ 23.928223, -12.565287 ], [ 24.076538, -12.189704 ], [ 23.900757, -11.722167 ], [ 24.016113, -11.232286 ], [ 23.911743, -10.925011 ], [ 24.252319, -10.951978 ], [ 24.312744, -11.259225 ], [ 24.779663, -11.237674 ], [ 25.416870, -11.329253 ], [ 25.751953, -11.781325 ], [ 26.548462, -11.921103 ], [ 27.163696, -11.603813 ], [ 27.383423, -12.130635 ], [ 28.152466, -12.270231 ], [ 28.520508, -12.693933 ], [ 28.932495, -13.245293 ], [ 29.696045, -13.255986 ], [ 29.613647, -12.173595 ], [ 29.338989, -12.356100 ], [ 28.641357, -11.969471 ], [ 28.372192, -11.792080 ], [ 28.493042, -10.784745 ], [ 28.668823, -9.600750 ], [ 28.449097, -9.161756 ], [ 28.734741, -8.521268 ], [ 28.998413, -8.401734 ], [ 30.344238, -8.233237 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zimbabwe", "sov_a3": "ZWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zimbabwe", "adm0_a3": "ZWE", "geou_dif": 0, "geounit": "Zimbabwe", "gu_a3": "ZWE", "su_dif": 0, "subunit": "Zimbabwe", "su_a3": "ZWE", "brk_diff": 0, "name": "Zimbabwe", "name_long": "Zimbabwe", "brk_a3": "ZWE", "brk_name": "Zimbabwe", "abbrev": "Zimb.", "postal": "ZW", "formal_en": "Republic of Zimbabwe", "name_sort": "Zimbabwe", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 12619600, "gdp_md_est": 9323, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ZW", "iso_a3": "ZWE", "iso_n3": "716", "un_a3": "716", "wb_a2": "ZW", "wb_a3": "ZWE", "woe_id": -99, "adm0_a3_is": "ZWE", "adm0_a3_us": "ZWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.272827, -15.506619 ], [ 30.338745, -15.876809 ], [ 31.168213, -15.855674 ], [ 31.635132, -16.066929 ], [ 31.849365, -16.314868 ], [ 32.327271, -16.388661 ], [ 32.843628, -16.709863 ], [ 32.849121, -17.978733 ], [ 32.651367, -18.667063 ], [ 32.607422, -19.414792 ], [ 32.772217, -19.715000 ], [ 32.656860, -20.303418 ], [ 32.508545, -20.390974 ], [ 32.244873, -21.115249 ], [ 31.475830, -21.943046 ], [ 31.190186, -22.248429 ], [ 30.657349, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.100909 ], [ 29.426880, -22.090730 ], [ 29.218140, -21.943046 ], [ 28.789673, -21.637005 ], [ 28.020630, -21.483741 ], [ 27.723999, -20.848545 ], [ 27.723999, -20.493919 ], [ 27.295532, -20.390974 ], [ 26.163940, -19.290406 ], [ 25.845337, -18.713894 ], [ 25.647583, -18.531700 ], [ 25.263062, -17.732991 ], [ 26.378174, -17.842833 ], [ 26.702271, -17.957832 ], [ 27.042847, -17.936929 ], [ 27.597656, -17.287709 ], [ 28.465576, -16.467695 ], [ 28.822632, -16.388661 ], [ 28.943481, -16.040534 ], [ 29.514771, -15.644197 ], [ 30.272827, -15.506619 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "United Republic of Tanzania", "sov_a3": "TZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Republic of Tanzania", "adm0_a3": "TZA", "geou_dif": 0, "geounit": "Tanzania", "gu_a3": "TZA", "su_dif": 0, "subunit": "Tanzania", "su_a3": "TZA", "brk_diff": 0, "name": "Tanzania", "name_long": "Tanzania", "brk_a3": "TZA", "brk_name": "Tanzania", "abbrev": "Tanz.", "postal": "TZ", "formal_en": "United Republic of Tanzania", "name_sort": "Tanzania", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 41048532, "gdp_md_est": 54250, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TZ", "iso_a3": "TZA", "iso_n3": "834", "un_a3": "834", "wb_a2": "TZ", "wb_a3": "TZA", "woe_id": -99, "adm0_a3_is": "TZA", "adm0_a3_us": "TZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.898315, -0.944781 ], [ 34.068604, -1.054628 ], [ 37.694092, -3.096636 ], [ 37.765503, -3.672410 ], [ 39.199219, -4.674980 ], [ 38.737793, -5.905653 ], [ 38.798218, -6.473609 ], [ 39.435425, -6.839170 ], [ 39.468384, -7.095442 ], [ 39.193726, -7.700105 ], [ 39.248657, -8.004837 ], [ 39.182739, -8.483239 ], [ 39.534302, -9.107521 ], [ 39.946289, -10.093262 ], [ 40.314331, -10.314919 ], [ 39.517822, -10.892648 ], [ 38.424683, -11.280774 ], [ 37.825928, -11.264612 ], [ 37.468872, -11.566144 ], [ 36.771240, -11.593051 ], [ 36.513062, -11.716788 ], [ 35.310059, -11.436955 ], [ 34.557495, -11.517705 ], [ 34.277344, -10.158153 ], [ 33.739014, -9.416548 ], [ 32.755737, -9.226827 ], [ 32.189941, -8.928487 ], [ 31.552734, -8.760224 ], [ 31.157227, -8.591884 ], [ 30.739746, -8.336518 ], [ 30.195923, -7.079088 ], [ 29.619141, -6.517272 ], [ 29.415894, -5.938436 ], [ 29.514771, -5.419148 ], [ 29.338989, -4.499762 ], [ 29.750977, -4.450474 ], [ 30.113525, -4.088932 ], [ 30.503540, -3.568248 ], [ 30.750732, -3.354405 ], [ 30.739746, -3.030812 ], [ 30.525513, -2.805885 ], [ 30.465088, -2.410787 ], [ 30.756226, -2.284551 ], [ 30.811157, -1.697139 ], [ 30.415649, -1.131518 ], [ 30.767212, -1.010690 ], [ 31.865845, -1.027167 ], [ 33.898315, -0.944781 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.755737, -9.226827 ], [ 33.739014, -9.416548 ], [ 34.277344, -10.158153 ], [ 34.557495, -11.517705 ], [ 34.277344, -12.275599 ], [ 34.557495, -13.576581 ], [ 34.903564, -13.560562 ], [ 35.266113, -13.886079 ], [ 35.683594, -14.610163 ], [ 35.771484, -15.892659 ], [ 35.337524, -16.103876 ], [ 35.029907, -16.799282 ], [ 34.376221, -16.183024 ], [ 34.304810, -15.474857 ], [ 34.513550, -15.008464 ], [ 34.458618, -14.610163 ], [ 34.063110, -14.354870 ], [ 33.788452, -14.450639 ], [ 33.211670, -13.971385 ], [ 32.684326, -13.710035 ], [ 32.986450, -12.779661 ], [ 33.305054, -12.431212 ], [ 33.112793, -11.603813 ], [ 33.310547, -10.795537 ], [ 33.480835, -10.520219 ], [ 33.228149, -9.676569 ], [ 32.755737, -9.226827 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mozambique", "sov_a3": "MOZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mozambique", "adm0_a3": "MOZ", "geou_dif": 0, "geounit": "Mozambique", "gu_a3": "MOZ", "su_dif": 0, "subunit": "Mozambique", "su_a3": "MOZ", "brk_diff": 0, "name": "Mozambique", "name_long": "Mozambique", "brk_a3": "MOZ", "brk_name": "Mozambique", "abbrev": "Moz.", "postal": "MZ", "formal_en": "Republic of Mozambique", "name_sort": "Mozambique", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 21669278, "gdp_md_est": 18940, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MZ", "iso_a3": "MOZ", "iso_n3": "508", "un_a3": "508", "wb_a2": "MZ", "wb_a3": "MOZ", "woe_id": -99, "adm0_a3_is": "MOZ", "adm0_a3_us": "MOZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.314331, -10.314919 ], [ 40.473633, -10.763159 ], [ 40.435181, -11.759815 ], [ 40.556030, -12.634978 ], [ 40.594482, -14.200488 ], [ 40.770264, -14.689881 ], [ 40.473633, -15.406024 ], [ 40.089111, -16.098598 ], [ 39.451904, -16.720385 ], [ 38.534546, -17.098792 ], [ 37.408447, -17.581194 ], [ 36.276855, -18.656654 ], [ 35.892334, -18.838714 ], [ 35.194702, -19.549437 ], [ 34.782715, -19.782211 ], [ 34.700317, -20.493919 ], [ 35.172729, -21.253542 ], [ 35.370483, -21.836006 ], [ 35.375977, -21.943046 ], [ 35.381470, -22.136532 ], [ 35.557251, -22.085640 ], [ 35.551758, -22.350076 ], [ 31.223145, -22.350076 ], [ 31.190186, -22.248429 ], [ 31.475830, -21.943046 ], [ 32.244873, -21.115249 ], [ 32.508545, -20.390974 ], [ 32.656860, -20.303418 ], [ 32.772217, -19.715000 ], [ 32.607422, -19.414792 ], [ 32.651367, -18.667063 ], [ 32.849121, -17.978733 ], [ 32.843628, -16.709863 ], [ 32.327271, -16.388661 ], [ 31.849365, -16.314868 ], [ 31.635132, -16.066929 ], [ 31.168213, -15.855674 ], [ 30.338745, -15.876809 ], [ 30.272827, -15.506619 ], [ 30.179443, -14.790817 ], [ 33.211670, -13.971385 ], [ 33.788452, -14.450639 ], [ 34.063110, -14.354870 ], [ 34.458618, -14.610163 ], [ 34.513550, -15.008464 ], [ 34.304810, -15.474857 ], [ 34.376221, -16.183024 ], [ 35.029907, -16.799282 ], [ 35.337524, -16.103876 ], [ 35.771484, -15.892659 ], [ 35.683594, -14.610163 ], [ 35.266113, -13.886079 ], [ 34.903564, -13.560562 ], [ 34.557495, -13.576581 ], [ 34.277344, -12.275599 ], [ 34.557495, -11.517705 ], [ 35.310059, -11.436955 ], [ 36.513062, -11.716788 ], [ 36.771240, -11.593051 ], [ 37.468872, -11.566144 ], [ 37.825928, -11.264612 ], [ 38.424683, -11.280774 ], [ 39.517822, -10.892648 ], [ 40.314331, -10.314919 ] ] ] } } +, +{ "type": "Feature", "properties": { "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": "Polygon", "coordinates": [ [ [ 25.081787, -17.659726 ], [ 25.263062, -17.732991 ], [ 25.647583, -18.531700 ], [ 25.845337, -18.713894 ], [ 26.163940, -19.290406 ], [ 27.295532, -20.390974 ], [ 27.723999, -20.493919 ], [ 27.723999, -20.848545 ], [ 28.020630, -21.483741 ], [ 28.789673, -21.637005 ], [ 29.218140, -21.943046 ], [ 29.426880, -22.090730 ], [ 28.932495, -22.350076 ], [ 22.060547, -22.350076 ], [ 22.060547, -18.124971 ], [ 22.500000, -18.025751 ], [ 23.192139, -17.868975 ], [ 23.576660, -18.276302 ], [ 24.213867, -17.884659 ], [ 24.515991, -17.884659 ], [ 25.081787, -17.659726 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Africa", "sov_a3": "ZAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Africa", "adm0_a3": "ZAF", "geou_dif": 0, "geounit": "South Africa", "gu_a3": "ZAF", "su_dif": 0, "subunit": "South Africa", "su_a3": "ZAF", "brk_diff": 0, "name": "South Africa", "name_long": "South Africa", "brk_a3": "ZAF", "brk_name": "South Africa", "abbrev": "S.Af.", "postal": "ZA", "formal_en": "Republic of South Africa", "name_sort": "South Africa", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 49052489, "gdp_md_est": 491000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ZA", "iso_a3": "ZAF", "iso_n3": "710", "un_a3": "710", "wb_a2": "ZA", "wb_a3": "ZAF", "woe_id": -99, "adm0_a3_is": "ZAF", "adm0_a3_us": "ZAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.426880, -22.090730 ], [ 29.838867, -22.100909 ], [ 30.322266, -22.268764 ], [ 30.657349, -22.146708 ], [ 31.190186, -22.248429 ], [ 31.223145, -22.350076 ], [ 28.932495, -22.350076 ], [ 29.426880, -22.090730 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Madagascar", "sov_a3": "MDG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Madagascar", "adm0_a3": "MDG", "geou_dif": 0, "geounit": "Madagascar", "gu_a3": "MDG", "su_dif": 0, "subunit": "Madagascar", "su_a3": "MDG", "brk_diff": 0, "name": "Madagascar", "name_long": "Madagascar", "brk_a3": "MDG", "brk_name": "Madagascar", "abbrev": "Mad.", "postal": "MG", "formal_en": "Republic of Madagascar", "name_sort": "Madagascar", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 20653556, "gdp_md_est": 20130, "pop_year": -99, "lastcensus": 1993, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MG", "iso_a3": "MDG", "iso_n3": "450", "un_a3": "450", "wb_a2": "MG", "wb_a3": "MDG", "woe_id": -99, "adm0_a3_is": "MDG", "adm0_a3_us": "MDG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -15.993015 ], [ 45.439453, -22.350076 ], [ 43.286133, -22.350076 ], [ 43.253174, -22.055096 ], [ 43.280640, -21.943046 ], [ 43.428955, -21.335432 ], [ 43.890381, -21.161361 ], [ 43.895874, -20.828010 ], [ 44.373779, -20.071411 ], [ 44.461670, -19.430334 ], [ 44.230957, -18.958246 ], [ 44.038696, -18.328455 ], [ 43.961792, -17.408305 ], [ 44.307861, -16.846605 ], [ 44.445190, -16.214675 ], [ 44.939575, -16.177749 ], [ 45.000000, -16.156645 ], [ 45.439453, -15.993015 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.999390, 22.350076 ], [ 24.999390, 20.004322 ], [ 23.845825, 20.004322 ], [ 23.834839, 19.580493 ], [ 22.500000, 20.226120 ], [ 22.060547, 20.437308 ], [ 22.060547, 22.350076 ], [ 24.999390, 22.350076 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.060547, 12.993853 ], [ 22.060547, 20.437308 ], [ 22.500000, 20.226120 ], [ 23.834839, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.021851, 15.681221 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.109940 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.083301 ], [ 22.181396, 13.790071 ], [ 22.291260, 13.373588 ], [ 22.060547, 12.993853 ] ] ], [ [ [ 22.060547, 12.613537 ], [ 22.285767, 12.651058 ], [ 22.494507, 12.264864 ], [ 22.500000, 12.136005 ], [ 22.505493, 11.684514 ], [ 22.873535, 11.388494 ], [ 22.862549, 11.146066 ], [ 22.500000, 11.049038 ], [ 22.230835, 10.973550 ], [ 22.060547, 10.838701 ], [ 22.060547, 12.613537 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.862549, 11.146066 ], [ 22.972412, 10.714587 ], [ 23.549194, 10.093262 ], [ 23.554688, 9.681984 ], [ 23.389893, 9.270201 ], [ 23.455811, 8.955619 ], [ 23.801880, 8.667918 ], [ 24.565430, 8.233237 ], [ 25.114746, 7.825289 ], [ 25.120239, 7.504089 ], [ 25.795898, 6.980954 ], [ 26.213379, 6.550017 ], [ 26.460571, 5.949363 ], [ 27.213135, 5.555848 ], [ 27.372437, 5.238657 ], [ 27.042847, 5.129243 ], [ 26.400146, 5.151128 ], [ 25.647583, 5.260538 ], [ 25.274048, 5.173011 ], [ 25.125732, 4.932251 ], [ 24.801636, 4.899414 ], [ 24.406128, 5.112830 ], [ 23.296509, 4.614753 ], [ 22.840576, 4.713303 ], [ 22.703247, 4.636655 ], [ 22.500000, 4.225900 ], [ 22.401123, 4.034138 ], [ 22.060547, 4.121806 ], [ 22.060547, 10.838701 ], [ 22.230835, 10.973550 ], [ 22.500000, 11.049038 ], [ 22.862549, 11.146066 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.502075, 22.350076 ], [ 36.688843, 22.207749 ], [ 36.864624, 22.004175 ], [ 24.999390, 22.004175 ], [ 24.999390, 22.350076 ], [ 36.502075, 22.350076 ] ] ] } } +, +{ "type": "Feature", "properties": { "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": "Polygon", "coordinates": [ [ [ 36.864624, 22.004175 ], [ 36.881104, 21.943046 ], [ 37.183228, 21.022983 ], [ 36.968994, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.479858, 18.615013 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.429270 ], [ 37.166748, 17.266728 ], [ 36.848145, 16.956979 ], [ 36.749268, 16.293779 ], [ 36.320801, 14.822681 ], [ 36.425171, 14.424040 ], [ 36.265869, 13.565902 ], [ 35.859375, 12.581371 ], [ 35.255127, 12.087667 ], [ 34.826660, 11.323867 ], [ 34.727783, 10.914224 ], [ 34.255371, 10.633615 ], [ 33.958740, 9.584501 ], [ 33.958740, 9.465317 ], [ 33.821411, 9.486990 ], [ 33.837891, 9.985081 ], [ 33.717041, 10.325728 ], [ 33.206177, 10.725381 ], [ 33.085327, 11.442339 ], [ 33.206177, 12.184334 ], [ 32.739258, 12.248760 ], [ 32.673340, 12.028576 ], [ 32.069092, 11.974845 ], [ 32.310791, 11.684514 ], [ 32.398682, 11.081385 ], [ 31.849365, 10.536421 ], [ 31.349487, 9.811916 ], [ 30.833130, 9.709057 ], [ 29.992676, 10.293301 ], [ 29.613647, 10.087854 ], [ 29.514771, 9.795678 ], [ 28.998413, 9.606166 ], [ 28.965454, 9.400291 ], [ 27.965698, 9.400291 ], [ 27.828369, 9.606166 ], [ 27.108765, 9.638661 ], [ 26.751709, 9.470736 ], [ 26.477051, 9.557417 ], [ 25.960693, 10.136524 ], [ 25.790405, 10.412183 ], [ 25.065308, 10.277086 ], [ 24.790649, 9.811916 ], [ 24.532471, 8.917634 ], [ 24.191895, 8.733077 ], [ 23.884277, 8.624472 ], [ 23.801880, 8.667918 ], [ 23.455811, 8.955619 ], [ 23.389893, 9.270201 ], [ 23.554688, 9.681984 ], [ 23.549194, 10.093262 ], [ 22.972412, 10.714587 ], [ 22.862549, 11.146066 ], [ 22.873535, 11.388494 ], [ 22.505493, 11.684514 ], [ 22.500000, 12.136005 ], [ 22.494507, 12.264864 ], [ 22.285767, 12.651058 ], [ 22.060547, 12.613537 ], [ 22.060547, 12.993853 ], [ 22.291260, 13.373588 ], [ 22.181396, 13.790071 ], [ 22.500000, 14.083301 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.109940 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 23.021851, 15.681221 ], [ 23.884277, 15.612456 ], [ 23.834839, 19.580493 ], [ 23.845825, 20.004322 ], [ 24.999390, 20.004322 ], [ 24.999390, 22.004175 ], [ 36.864624, 22.004175 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.739258, 12.248760 ], [ 33.206177, 12.184334 ], [ 33.085327, 11.442339 ], [ 33.206177, 10.725381 ], [ 33.717041, 10.325728 ], [ 33.837891, 9.985081 ], [ 33.821411, 9.486990 ], [ 33.958740, 9.465317 ], [ 33.969727, 8.689639 ], [ 33.821411, 8.379997 ], [ 33.294067, 8.358258 ], [ 32.953491, 7.787194 ], [ 33.563232, 7.716435 ], [ 34.074097, 7.226249 ], [ 34.249878, 6.828261 ], [ 34.705811, 6.599131 ], [ 35.293579, 5.506640 ], [ 34.002686, 4.253290 ], [ 33.387451, 3.793003 ], [ 32.684326, 3.793003 ], [ 31.876831, 3.562765 ], [ 31.245117, 3.782041 ], [ 30.833130, 3.513421 ], [ 29.948730, 4.176594 ], [ 29.712524, 4.603803 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.427124, 4.291636 ], [ 27.976685, 4.412137 ], [ 27.372437, 5.238657 ], [ 27.213135, 5.555848 ], [ 26.460571, 5.949363 ], [ 26.213379, 6.550017 ], [ 25.795898, 6.980954 ], [ 25.120239, 7.504089 ], [ 25.114746, 7.825289 ], [ 24.565430, 8.233237 ], [ 23.884277, 8.624472 ], [ 24.191895, 8.733077 ], [ 24.532471, 8.917634 ], [ 24.790649, 9.811916 ], [ 25.065308, 10.277086 ], [ 25.790405, 10.412183 ], [ 25.960693, 10.136524 ], [ 26.477051, 9.557417 ], [ 26.751709, 9.470736 ], [ 27.108765, 9.638661 ], [ 27.828369, 9.606166 ], [ 27.965698, 9.400291 ], [ 28.965454, 9.400291 ], [ 28.998413, 9.606166 ], [ 29.514771, 9.795678 ], [ 29.613647, 10.087854 ], [ 29.992676, 10.293301 ], [ 30.833130, 9.709057 ], [ 31.349487, 9.811916 ], [ 31.849365, 10.536421 ], [ 32.398682, 11.081385 ], [ 32.310791, 11.684514 ], [ 32.069092, 11.974845 ], [ 32.673340, 12.028576 ], [ 32.739258, 12.248760 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.002686, 4.253290 ], [ 34.475098, 3.557283 ], [ 34.595947, 3.058239 ], [ 35.035400, 1.911267 ], [ 34.667358, 1.180947 ], [ 34.178467, 0.516350 ], [ 33.892822, 0.109863 ], [ 33.892822, 0.000000 ], [ 33.898315, -0.439449 ], [ 29.674072, -0.439449 ], [ 29.816895, -0.203247 ], [ 29.833374, 0.000000 ], [ 29.871826, 0.598744 ], [ 30.086060, 1.065612 ], [ 30.465088, 1.587321 ], [ 30.849609, 1.850874 ], [ 31.173706, 2.207705 ], [ 30.772705, 2.344926 ], [ 30.833130, 3.513421 ], [ 31.245117, 3.782041 ], [ 31.876831, 3.562765 ], [ 32.684326, 3.793003 ], [ 33.387451, 3.793003 ], [ 34.002686, 4.253290 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Eritrea", "sov_a3": "ERI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Eritrea", "adm0_a3": "ERI", "geou_dif": 0, "geounit": "Eritrea", "gu_a3": "ERI", "su_dif": 0, "subunit": "Eritrea", "su_a3": "ERI", "brk_diff": 0, "name": "Eritrea", "name_long": "Eritrea", "brk_a3": "ERI", "brk_name": "Eritrea", "abbrev": "Erit.", "postal": "ER", "formal_en": "State of Eritrea", "name_sort": "Eritrea", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 5647168, "gdp_md_est": 3945, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ER", "iso_a3": "ERI", "iso_n3": "232", "un_a3": "232", "wb_a2": "ER", "wb_a3": "ERI", "woe_id": -99, "adm0_a3_is": "ERI", "adm0_a3_us": "ERI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.408203, 17.999632 ], [ 38.990479, 16.841348 ], [ 39.265137, 15.924356 ], [ 39.808960, 15.437796 ], [ 41.176758, 14.493190 ], [ 41.731567, 13.923404 ], [ 42.588501, 13.004558 ], [ 43.077393, 12.704651 ], [ 42.775269, 12.458033 ], [ 42.346802, 12.543840 ], [ 42.006226, 12.870715 ], [ 41.594238, 13.453737 ], [ 41.154785, 13.774066 ], [ 40.891113, 14.120595 ], [ 40.023193, 14.519780 ], [ 39.336548, 14.535733 ], [ 39.094849, 14.743011 ], [ 38.512573, 14.509144 ], [ 37.902832, 14.960706 ], [ 37.589722, 14.216464 ], [ 36.425171, 14.424040 ], [ 36.320801, 14.822681 ], [ 36.749268, 16.293779 ], [ 36.848145, 16.956979 ], [ 37.166748, 17.266728 ], [ 37.902832, 17.429270 ], [ 38.408203, 17.999632 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.293579, 5.506640 ], [ 35.815430, 5.342583 ], [ 35.815430, 4.778995 ], [ 36.156006, 4.450474 ], [ 36.853638, 4.450474 ], [ 38.117065, 3.601142 ], [ 38.435669, 3.590178 ], [ 38.666382, 3.617589 ], [ 38.891602, 3.502455 ], [ 39.556274, 3.425692 ], [ 39.852905, 3.842332 ], [ 40.764771, 4.258768 ], [ 41.171265, 3.924540 ], [ 41.852417, 3.919060 ], [ 40.979004, 2.789425 ], [ 40.989990, 0.000000 ], [ 40.989990, -0.439449 ], [ 33.898315, -0.439449 ], [ 33.892822, 0.000000 ], [ 33.892822, 0.109863 ], [ 34.178467, 0.516350 ], [ 34.667358, 1.180947 ], [ 35.035400, 1.911267 ], [ 34.595947, 3.058239 ], [ 34.475098, 3.557283 ], [ 34.002686, 4.253290 ], [ 35.293579, 5.506640 ] ] ] } } +, +{ "type": "Feature", "properties": { "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": "Polygon", "coordinates": [ [ [ 45.439453, 22.350076 ], [ 45.439453, 17.329664 ], [ 45.395508, 17.334908 ], [ 45.214233, 17.434511 ], [ 45.000000, 17.429270 ], [ 44.060669, 17.413546 ], [ 43.791504, 17.324420 ], [ 43.379517, 17.581194 ], [ 43.110352, 17.093542 ], [ 43.214722, 16.667769 ], [ 42.775269, 16.351768 ], [ 42.648926, 16.778246 ], [ 42.346802, 17.077790 ], [ 42.269897, 17.476432 ], [ 41.753540, 17.837604 ], [ 41.220703, 18.672267 ], [ 40.935059, 19.487308 ], [ 40.242920, 20.179724 ], [ 39.797974, 20.339476 ], [ 39.138794, 21.294493 ], [ 39.028931, 21.943046 ], [ 39.023438, 21.988895 ], [ 39.045410, 22.350076 ], [ 45.439453, 22.350076 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Yemen", "sov_a3": "YEM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Yemen", "adm0_a3": "YEM", "geou_dif": 0, "geounit": "Yemen", "gu_a3": "YEM", "su_dif": 0, "subunit": "Yemen", "su_a3": "YEM", "brk_diff": 0, "name": "Yemen", "name_long": "Yemen", "brk_a3": "YEM", "brk_name": "Yemen", "abbrev": "Yem.", "postal": "YE", "formal_en": "Republic of Yemen", "name_sort": "Yemen, Rep.", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 23822783, "gdp_md_est": 55280, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "YE", "iso_a3": "YEM", "iso_n3": "887", "un_a3": "887", "wb_a2": "RY", "wb_a3": "YEM", "woe_id": -99, "adm0_a3_is": "YEM", "adm0_a3_us": "YEM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.379517, 17.581194 ], [ 43.791504, 17.324420 ], [ 44.060669, 17.413546 ], [ 45.000000, 17.429270 ], [ 45.214233, 17.434511 ], [ 45.395508, 17.334908 ], [ 45.439453, 17.329664 ], [ 45.439453, 13.068777 ], [ 45.401001, 13.031318 ], [ 45.142822, 12.956383 ], [ 45.000000, 12.720726 ], [ 44.989014, 12.704651 ], [ 44.489136, 12.726084 ], [ 44.170532, 12.586732 ], [ 43.478394, 12.640338 ], [ 43.220215, 13.223904 ], [ 43.247681, 13.768731 ], [ 43.082886, 14.067317 ], [ 42.890625, 14.806749 ], [ 42.599487, 15.215288 ], [ 42.802734, 15.262989 ], [ 42.698364, 15.723526 ], [ 42.819214, 15.913791 ], [ 42.775269, 16.351768 ], [ 43.214722, 16.667769 ], [ 43.110352, 17.093542 ], [ 43.379517, 17.581194 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "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": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.143311, 11.463874 ], [ 43.467407, 11.280774 ], [ 43.665161, 10.865676 ], [ 44.115601, 10.450000 ], [ 44.609985, 10.444598 ], [ 45.000000, 10.547221 ], [ 45.439453, 10.671404 ], [ 45.439453, 8.548430 ], [ 45.000000, 8.705929 ], [ 43.676147, 9.188870 ], [ 43.291626, 9.541166 ], [ 42.923584, 10.022948 ], [ 42.555542, 10.574222 ], [ 42.775269, 10.930405 ], [ 43.143311, 11.463874 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 5.512107 ], [ 45.439453, 1.966167 ], [ 45.000000, 1.675176 ], [ 44.066162, 1.054628 ], [ 43.132324, 0.296630 ], [ 42.868652, 0.000000 ], [ 42.473145, -0.439449 ], [ 40.989990, -0.439449 ], [ 40.989990, 0.000000 ], [ 40.979004, 2.789425 ], [ 41.852417, 3.919060 ], [ 42.127075, 4.236856 ], [ 42.764282, 4.253290 ], [ 43.659668, 4.959615 ], [ 44.961548, 5.003394 ], [ 45.000000, 5.041699 ], [ 45.439453, 5.512107 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.647583, 5.260538 ], [ 26.400146, 5.151128 ], [ 27.042847, 5.129243 ], [ 27.372437, 5.238657 ], [ 27.976685, 4.412137 ], [ 28.427124, 4.291636 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.712524, 4.603803 ], [ 29.948730, 4.176594 ], [ 30.833130, 3.513421 ], [ 30.772705, 2.344926 ], [ 31.173706, 2.207705 ], [ 30.849609, 1.850874 ], [ 30.465088, 1.587321 ], [ 30.086060, 1.065612 ], [ 29.871826, 0.598744 ], [ 29.833374, 0.000000 ], [ 29.816895, -0.203247 ], [ 29.674072, -0.439449 ], [ 22.060547, -0.439449 ], [ 22.060547, 4.121806 ], [ 22.401123, 4.034138 ], [ 22.500000, 4.225900 ], [ 22.703247, 4.636655 ], [ 22.840576, 4.713303 ], [ 23.296509, 4.614753 ], [ 24.406128, 5.112830 ], [ 24.801636, 4.899414 ], [ 25.125732, 4.932251 ], [ 25.274048, 5.173011 ], [ 25.647583, 5.260538 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "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.791138, 41.310824 ], [ 22.758179, 41.306698 ], [ 22.593384, 41.133159 ], [ 22.060547, 41.149706 ], [ 22.060547, 41.310824 ], [ 22.791138, 41.310824 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.927734, 41.310824 ], [ 25.197144, 41.236511 ], [ 25.043335, 41.310824 ], [ 25.927734, 41.310824 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.065918, 41.310824 ], [ 44.967041, 41.248903 ], [ 43.577271, 41.095912 ], [ 43.154297, 41.310824 ], [ 45.065918, 41.310824 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.060547, 32.768800 ], [ 22.500000, 32.699489 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.194209 ], [ 23.604126, 32.189560 ], [ 23.922729, 32.017392 ], [ 24.916992, 31.900878 ], [ 25.164185, 31.569175 ], [ 24.801636, 31.090574 ], [ 24.955444, 30.666266 ], [ 24.697266, 30.045322 ], [ 24.999390, 29.243270 ], [ 24.999390, 21.534847 ], [ 22.060547, 21.534847 ], [ 22.060547, 32.768800 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "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": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.697510, 35.706377 ], [ 24.241333, 35.371135 ], [ 25.021362, 35.429344 ], [ 25.768433, 35.357696 ], [ 25.740967, 35.182788 ], [ 26.284790, 35.303919 ], [ 26.163940, 35.007503 ], [ 24.724731, 34.921971 ], [ 24.730225, 35.088451 ], [ 23.510742, 35.281501 ], [ 23.697510, 35.706377 ] ] ], [ [ [ 26.477051, 41.310824 ], [ 26.312256, 40.979898 ], [ 26.290283, 40.938415 ], [ 26.054077, 40.826280 ], [ 25.444336, 40.855371 ], [ 24.922485, 40.950863 ], [ 23.713989, 40.688969 ], [ 24.406128, 40.128491 ], [ 23.895264, 39.964491 ], [ 23.340454, 39.964491 ], [ 22.813110, 40.476203 ], [ 22.620850, 40.258569 ], [ 22.846069, 39.660685 ], [ 23.345947, 39.193948 ], [ 22.972412, 38.972222 ], [ 23.527222, 38.513788 ], [ 24.021606, 38.220920 ], [ 24.038086, 37.657732 ], [ 23.109741, 37.922534 ], [ 23.406372, 37.413800 ], [ 22.774658, 37.309014 ], [ 23.153687, 36.425703 ], [ 22.500000, 36.412442 ], [ 22.489014, 36.412442 ], [ 22.060547, 36.641978 ], [ 22.060547, 41.149706 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.791138, 41.310824 ], [ 25.043335, 41.310824 ], [ 25.197144, 41.236511 ], [ 25.927734, 41.310824 ], [ 26.477051, 41.310824 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Northern Cyprus", "sov_a3": "CYN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Northern Cyprus", "adm0_a3": "CYN", "geou_dif": 0, "geounit": "Northern Cyprus", "gu_a3": "CYN", "su_dif": 0, "subunit": "Northern Cyprus", "su_a3": "CYN", "brk_diff": 1, "name": "N. Cyprus", "name_long": "Northern Cyprus", "brk_a3": "B20", "brk_name": "N. Cyprus", "abbrev": "N. Cy.", "postal": "CN", "formal_en": "Turkish Republic of Northern Cyprus", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Cyprus", "name_sort": "Cyprus, Northern", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 265100, "gdp_md_est": 3600, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "CYP", "adm0_a3_us": "CYP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 15, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.573975, 35.675147 ], [ 33.898315, 35.250105 ], [ 33.969727, 35.061477 ], [ 33.865356, 35.097440 ], [ 33.673096, 35.021000 ], [ 33.524780, 35.038992 ], [ 33.475342, 35.003003 ], [ 33.453369, 35.101934 ], [ 33.381958, 35.164828 ], [ 33.189697, 35.173808 ], [ 32.915039, 35.088451 ], [ 32.728271, 35.142371 ], [ 32.799683, 35.146863 ], [ 32.942505, 35.389050 ], [ 33.662109, 35.375614 ], [ 34.573975, 35.675147 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.493530, 31.587894 ], [ 27.454834, 31.325487 ], [ 28.449097, 31.029401 ], [ 28.910522, 30.873940 ], [ 29.679565, 31.189308 ], [ 30.091553, 31.475524 ], [ 30.975952, 31.559815 ], [ 31.684570, 31.433350 ], [ 31.959229, 30.935213 ], [ 32.189941, 31.264466 ], [ 32.991943, 31.024694 ], [ 33.771973, 30.968189 ], [ 34.260864, 31.222197 ], [ 34.920044, 29.501769 ], [ 34.639893, 29.104177 ], [ 34.425659, 28.347899 ], [ 34.151001, 27.824503 ], [ 33.920288, 27.649472 ], [ 33.134766, 28.420391 ], [ 32.420654, 29.854937 ], [ 32.316284, 29.764377 ], [ 32.733765, 28.709861 ], [ 33.343506, 27.702984 ], [ 34.101562, 26.145576 ], [ 34.469604, 25.601902 ], [ 34.793701, 25.035839 ], [ 35.689087, 23.931034 ], [ 35.491333, 23.755182 ], [ 35.524292, 23.104997 ], [ 36.688843, 22.207749 ], [ 36.864624, 22.004175 ], [ 24.999390, 22.004175 ], [ 24.999390, 29.243270 ], [ 24.697266, 30.045322 ], [ 24.955444, 30.666266 ], [ 24.801636, 31.090574 ], [ 25.164185, 31.569175 ], [ 26.493530, 31.587894 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 43.154297, 41.310824 ], [ 43.577271, 41.095912 ], [ 43.632202, 40.979898 ], [ 43.747559, 40.743095 ], [ 43.654175, 40.254377 ], [ 44.395752, 40.006580 ], [ 44.791260, 39.715638 ], [ 44.104614, 39.431950 ], [ 44.417725, 38.281313 ], [ 44.225464, 37.974515 ], [ 44.769287, 37.173449 ], [ 44.291382, 37.002553 ], [ 43.939819, 37.256566 ], [ 42.775269, 37.387617 ], [ 42.346802, 37.230328 ], [ 41.209717, 37.077093 ], [ 40.671387, 37.094622 ], [ 39.517822, 36.716871 ], [ 38.699341, 36.716871 ], [ 38.166504, 36.901587 ], [ 37.062378, 36.624345 ], [ 36.738281, 36.818080 ], [ 36.683350, 36.261992 ], [ 36.145020, 35.822267 ], [ 35.776978, 36.275279 ], [ 36.156006, 36.650793 ], [ 35.546265, 36.567012 ], [ 34.711304, 36.796090 ], [ 34.024658, 36.222119 ], [ 32.508545, 36.111253 ], [ 31.695557, 36.646385 ], [ 30.618896, 36.681636 ], [ 30.388184, 36.266421 ], [ 29.696045, 36.146747 ], [ 28.729248, 36.677231 ], [ 27.636108, 36.659606 ], [ 27.048340, 37.653383 ], [ 26.317749, 38.212288 ], [ 26.801147, 38.989303 ], [ 26.169434, 39.465885 ], [ 27.279053, 40.421860 ], [ 28.817139, 40.463666 ], [ 29.102783, 40.979898 ], [ 29.234619, 41.224118 ], [ 31.140747, 41.087632 ], [ 31.552734, 41.310824 ], [ 37.001953, 41.310824 ], [ 38.226929, 40.979898 ], [ 38.342285, 40.950863 ], [ 38.583984, 40.979898 ], [ 39.512329, 41.104191 ], [ 40.369263, 41.017211 ], [ 41.039429, 41.310824 ], [ 43.154297, 41.310824 ] ] ], [ [ [ 28.954468, 41.310824 ], [ 28.987427, 41.302571 ], [ 28.806152, 41.058644 ], [ 27.614136, 41.000630 ], [ 27.586670, 40.979898 ], [ 27.191162, 40.693134 ], [ 26.356201, 40.153687 ], [ 26.043091, 40.618122 ], [ 26.054077, 40.826280 ], [ 26.290283, 40.938415 ], [ 26.312256, 40.979898 ], [ 26.477051, 41.310824 ], [ 28.954468, 41.310824 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lebanon", "sov_a3": "LBN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lebanon", "adm0_a3": "LBN", "geou_dif": 0, "geounit": "Lebanon", "gu_a3": "LBN", "su_dif": 0, "subunit": "Lebanon", "su_a3": "LBN", "brk_diff": 0, "name": "Lebanon", "name_long": "Lebanon", "brk_a3": "LBN", "brk_name": "Lebanon", "abbrev": "Leb.", "postal": "LB", "formal_en": "Lebanese Republic", "name_sort": "Lebanon", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 12, "pop_est": 4017095, "gdp_md_est": 44060, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LB", "iso_a3": "LBN", "iso_n3": "422", "un_a3": "422", "wb_a2": "LB", "wb_a3": "LBN", "woe_id": -99, "adm0_a3_is": "LBN", "adm0_a3_us": "LBN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.996704, 34.646766 ], [ 36.447144, 34.597042 ], [ 36.606445, 34.202716 ], [ 36.062622, 33.829357 ], [ 35.820923, 33.280028 ], [ 35.551758, 33.266250 ], [ 35.458374, 33.091542 ], [ 35.123291, 33.091542 ], [ 35.480347, 33.906896 ], [ 35.996704, 34.646766 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.775269, 37.387617 ], [ 43.939819, 37.256566 ], [ 44.291382, 37.002553 ], [ 44.769287, 37.173449 ], [ 45.000000, 36.756490 ], [ 45.417480, 35.978006 ], [ 45.439453, 35.969115 ], [ 45.439453, 34.048108 ], [ 45.411987, 33.970698 ], [ 45.439453, 33.938803 ], [ 45.439453, 29.152161 ], [ 45.000000, 29.166552 ], [ 44.708862, 29.180941 ], [ 41.885376, 31.194008 ], [ 40.396729, 31.891551 ], [ 39.193726, 32.161663 ], [ 38.787231, 33.380999 ], [ 41.000977, 34.420505 ], [ 41.380005, 35.630512 ], [ 41.286621, 36.359375 ], [ 41.835938, 36.606709 ], [ 42.346802, 37.230328 ], [ 42.775269, 37.387617 ] ] ] } } +, +{ "type": "Feature", "properties": { "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": "Polygon", "coordinates": [ [ [ 36.864624, 22.004175 ], [ 36.881104, 21.943046 ], [ 37.018433, 21.534847 ], [ 24.999390, 21.534847 ], [ 24.999390, 22.004175 ], [ 36.864624, 22.004175 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.248903 ], [ 45.175781, 40.988192 ], [ 45.439453, 40.867834 ], [ 45.439453, 40.663973 ], [ 45.357056, 40.563895 ], [ 45.439453, 40.513799 ], [ 45.439453, 39.474365 ], [ 45.296631, 39.474365 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.395752, 40.006580 ], [ 43.654175, 40.254377 ], [ 43.747559, 40.743095 ], [ 43.632202, 40.979898 ], [ 43.577271, 41.095912 ], [ 44.967041, 41.248903 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 35.969115 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.756490 ], [ 44.769287, 37.173449 ], [ 44.225464, 37.974515 ], [ 44.417725, 38.281313 ], [ 44.104614, 39.431950 ], [ 44.791260, 39.715638 ], [ 44.950562, 39.338546 ], [ 45.000000, 39.296048 ], [ 45.439453, 38.891033 ], [ 45.439453, 35.969115 ] ] ], [ [ [ 45.439453, 34.048108 ], [ 45.439453, 33.938803 ], [ 45.411987, 33.970698 ], [ 45.439453, 34.048108 ] ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 39.193726, 32.161663 ], [ 40.396729, 31.891551 ], [ 41.885376, 31.194008 ], [ 44.708862, 29.180941 ], [ 45.000000, 29.166552 ], [ 45.439453, 29.152161 ], [ 45.439453, 21.534847 ], [ 39.094849, 21.534847 ], [ 39.028931, 21.943046 ], [ 39.023438, 21.988895 ], [ 39.061890, 22.583583 ], [ 38.490601, 23.689805 ], [ 38.023682, 24.081574 ], [ 37.479858, 24.287027 ], [ 37.150269, 24.861519 ], [ 37.205200, 25.085599 ], [ 36.930542, 25.606856 ], [ 36.639404, 25.829561 ], [ 36.243896, 26.573790 ], [ 35.128784, 28.067133 ], [ 34.628906, 28.062286 ], [ 34.782715, 28.608637 ], [ 34.832153, 28.960089 ], [ 34.953003, 29.358239 ], [ 36.068115, 29.200123 ], [ 36.496582, 29.506549 ], [ 36.738281, 29.869229 ], [ 37.501831, 30.007274 ], [ 37.666626, 30.339695 ], [ 37.996216, 30.510217 ], [ 37.001953, 31.512996 ], [ 39.001465, 32.012734 ], [ 39.193726, 32.161663 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 45.439453, 56.022948 ], [ 45.439453, 42.512602 ], [ 45.000000, 42.609706 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.948730, 55.776573 ], [ 29.893799, 55.792017 ], [ 29.838867, 55.776573 ], [ 29.366455, 55.671389 ], [ 29.306030, 55.776573 ], [ 29.229126, 55.918430 ], [ 28.789673, 56.022948 ], [ 45.439453, 56.022948 ] ] ], [ [ [ 22.060547, 55.059495 ], [ 22.313232, 55.015426 ], [ 22.500000, 54.949231 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 22.500000, 54.326135 ], [ 22.060547, 54.322931 ], [ 22.060547, 55.059495 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Poland", "sov_a3": "POL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Poland", "adm0_a3": "POL", "geou_dif": 0, "geounit": "Poland", "gu_a3": "POL", "su_dif": 0, "subunit": "Poland", "su_a3": "POL", "brk_diff": 0, "name": "Poland", "name_long": "Poland", "brk_a3": "POL", "brk_name": "Poland", "abbrev": "Pol.", "postal": "PL", "formal_en": "Republic of Poland", "name_sort": "Poland", "mapcolor7": 3, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 38482919, "gdp_md_est": 667900, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PL", "iso_a3": "POL", "iso_n3": "616", "un_a3": "616", "wb_a2": "PL", "wb_a3": "POL", "woe_id": -99, "adm0_a3_is": "POL", "adm0_a3_us": "POL", "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": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.730713, 54.329338 ], [ 23.241577, 54.223496 ], [ 23.483276, 53.914046 ], [ 23.527222, 53.471700 ], [ 23.801880, 53.090725 ], [ 23.796387, 52.693032 ], [ 23.197632, 52.489470 ], [ 23.505249, 52.025459 ], [ 23.521729, 51.580483 ], [ 24.027100, 50.708634 ], [ 23.922729, 50.426019 ], [ 23.422852, 50.310392 ], [ 22.516479, 49.478832 ], [ 22.774658, 49.030665 ], [ 22.554932, 49.088258 ], [ 22.500000, 49.109838 ], [ 22.060547, 49.289306 ], [ 22.060547, 54.322931 ], [ 22.500000, 54.326135 ], [ 22.730713, 54.329338 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Hungary", "sov_a3": "HUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Hungary", "adm0_a3": "HUN", "geou_dif": 0, "geounit": "Hungary", "gu_a3": "HUN", "su_dif": 0, "subunit": "Hungary", "su_a3": "HUN", "brk_diff": 0, "name": "Hungary", "name_long": "Hungary", "brk_a3": "HUN", "brk_name": "Hungary", "abbrev": "Hun.", "postal": "HU", "formal_en": "Republic of Hungary", "name_sort": "Hungary", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 9905596, "gdp_md_est": 196600, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "HU", "iso_a3": "HUN", "iso_n3": "348", "un_a3": "348", "wb_a2": "HU", "wb_a3": "HUN", "woe_id": -99, "adm0_a3_is": "HUN", "adm0_a3_us": "HUN", "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": "Polygon", "coordinates": [ [ [ 22.082520, 48.425555 ], [ 22.500000, 48.221013 ], [ 22.637329, 48.151428 ], [ 22.708740, 47.883197 ], [ 22.500000, 47.813155 ], [ 22.098999, 47.672786 ], [ 22.060547, 47.617273 ], [ 22.060547, 48.410972 ], [ 22.082520, 48.425555 ] ] ] } } +, +{ "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": [ [ [ 22.456055, 44.703802 ], [ 22.500000, 44.684277 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.429857 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.386692 ], [ 22.653809, 44.237328 ], [ 22.500000, 44.091531 ], [ 22.406616, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.213183 ], [ 22.604370, 42.900113 ], [ 22.500000, 42.702623 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.512602 ], [ 22.543945, 42.463993 ], [ 22.500000, 42.423457 ], [ 22.379150, 42.322001 ], [ 22.060547, 42.309815 ], [ 22.060547, 44.523927 ], [ 22.142944, 44.480830 ], [ 22.456055, 44.703802 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "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": "Polygon", "coordinates": [ [ [ 27.767944, 56.022948 ], [ 27.075806, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.174927, 55.776573 ], [ 25.686035, 56.022948 ], [ 27.767944, 56.022948 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.686035, 56.022948 ], [ 26.174927, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.586914, 55.169456 ], [ 25.768433, 54.848153 ], [ 25.532227, 54.284469 ], [ 24.450073, 53.907574 ], [ 23.483276, 53.914046 ], [ 23.241577, 54.223496 ], [ 22.730713, 54.329338 ], [ 22.648315, 54.584797 ], [ 22.752686, 54.857640 ], [ 22.500000, 54.949231 ], [ 22.313232, 55.015426 ], [ 22.060547, 55.059495 ], [ 22.060547, 56.022948 ], [ 25.686035, 56.022948 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "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": "Polygon", "coordinates": [ [ [ 26.614380, 48.221013 ], [ 26.921997, 48.125768 ], [ 27.229614, 47.827908 ], [ 27.548218, 47.405785 ], [ 28.125000, 46.811339 ], [ 28.157959, 46.373464 ], [ 28.053589, 45.947330 ], [ 28.229370, 45.490946 ], [ 28.674316, 45.305803 ], [ 29.146729, 45.467836 ], [ 29.602661, 45.294211 ], [ 29.624634, 45.038597 ], [ 29.141235, 44.820812 ], [ 28.833618, 44.914249 ], [ 28.553467, 43.707594 ], [ 27.965698, 43.814711 ], [ 27.240601, 44.178265 ], [ 26.065063, 43.945372 ], [ 25.565186, 43.691708 ], [ 24.098511, 43.743321 ], [ 23.329468, 43.897892 ], [ 22.939453, 43.826601 ], [ 22.653809, 44.237328 ], [ 22.500000, 44.386692 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.429857 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.684277 ], [ 22.456055, 44.703802 ], [ 22.142944, 44.480830 ], [ 22.060547, 44.523927 ], [ 22.060547, 47.617273 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.813155 ], [ 22.708740, 47.883197 ], [ 23.137207, 48.096426 ], [ 23.757935, 47.986245 ], [ 24.400635, 47.982568 ], [ 24.862061, 47.739323 ], [ 25.202637, 47.894248 ], [ 25.944214, 47.989922 ], [ 26.196899, 48.221013 ], [ 26.614380, 48.221013 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.653809, 44.237328 ], [ 22.939453, 43.826601 ], [ 23.329468, 43.897892 ], [ 24.098511, 43.743321 ], [ 25.565186, 43.691708 ], [ 26.065063, 43.945372 ], [ 27.240601, 44.178265 ], [ 27.965698, 43.814711 ], [ 28.553467, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.669067, 42.581400 ], [ 27.993164, 42.008489 ], [ 27.130737, 42.143042 ], [ 26.114502, 41.828642 ], [ 26.103516, 41.331451 ], [ 25.197144, 41.236511 ], [ 24.488525, 41.586688 ], [ 23.692017, 41.310824 ], [ 22.950439, 41.339700 ], [ 22.879028, 42.000325 ], [ 22.500000, 42.244785 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.423457 ], [ 22.543945, 42.463993 ], [ 22.500000, 42.512602 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.702623 ], [ 22.604370, 42.900113 ], [ 22.983398, 43.213183 ], [ 22.500000, 43.644026 ], [ 22.406616, 44.008620 ], [ 22.500000, 44.091531 ], [ 22.653809, 44.237328 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.072632, 43.556510 ], [ 40.918579, 43.385090 ], [ 42.390747, 43.221190 ], [ 43.753052, 42.742978 ], [ 43.928833, 42.557127 ], [ 44.533081, 42.714732 ], [ 45.000000, 42.609706 ], [ 45.439453, 42.512602 ], [ 45.439453, 41.327326 ], [ 45.214233, 41.413896 ], [ 45.000000, 41.269550 ], [ 44.967041, 41.248903 ], [ 43.577271, 41.095912 ], [ 42.615967, 41.586688 ], [ 41.550293, 41.537366 ], [ 41.698608, 41.963575 ], [ 41.451416, 42.646081 ], [ 40.874634, 43.016697 ], [ 40.319824, 43.129052 ], [ 39.951782, 43.436966 ], [ 40.072632, 43.556510 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "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": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.114502, 41.828642 ], [ 26.603394, 41.566142 ], [ 26.312256, 40.979898 ], [ 26.290283, 40.938415 ], [ 26.054077, 40.826280 ], [ 25.444336, 40.855371 ], [ 24.922485, 40.950863 ], [ 23.713989, 40.688969 ], [ 23.763428, 40.647304 ], [ 22.060547, 40.647304 ], [ 22.060547, 41.149706 ], [ 22.500000, 41.137296 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.950439, 41.339700 ], [ 23.692017, 41.310824 ], [ 24.488525, 41.586688 ], [ 25.197144, 41.236511 ], [ 26.103516, 41.331451 ], [ 26.114502, 41.828642 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.167236, 42.041134 ], [ 36.908569, 41.335576 ], [ 38.226929, 40.979898 ], [ 38.342285, 40.950863 ], [ 38.583984, 40.979898 ], [ 39.512329, 41.104191 ], [ 40.369263, 41.017211 ], [ 41.550293, 41.537366 ], [ 42.615967, 41.586688 ], [ 43.577271, 41.095912 ], [ 43.632202, 40.979898 ], [ 43.747559, 40.743095 ], [ 43.731079, 40.647304 ], [ 28.921509, 40.647304 ], [ 29.102783, 40.979898 ], [ 29.234619, 41.224118 ], [ 31.140747, 41.087632 ], [ 32.343750, 41.738528 ], [ 33.508301, 42.020733 ], [ 35.167236, 42.041134 ] ] ], [ [ [ 27.130737, 42.143042 ], [ 27.993164, 42.008489 ], [ 28.114014, 41.623655 ], [ 28.987427, 41.302571 ], [ 28.806152, 41.058644 ], [ 27.614136, 41.000630 ], [ 27.586670, 40.979898 ], [ 27.191162, 40.693134 ], [ 27.119751, 40.647304 ], [ 26.043091, 40.647304 ], [ 26.054077, 40.826280 ], [ 26.290283, 40.938415 ], [ 26.312256, 40.979898 ], [ 26.603394, 41.566142 ], [ 26.114502, 41.828642 ], [ 27.130737, 42.143042 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.248903 ], [ 45.000000, 41.215854 ], [ 45.175781, 40.988192 ], [ 45.439453, 40.867834 ], [ 45.439453, 40.663973 ], [ 45.422974, 40.647304 ], [ 43.731079, 40.647304 ], [ 43.747559, 40.743095 ], [ 43.632202, 40.979898 ], [ 43.577271, 41.095912 ], [ 44.967041, 41.248903 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 45.439453, 66.687784 ], [ 45.439453, 55.528631 ], [ 30.877075, 55.528631 ], [ 30.871582, 55.553495 ], [ 29.948730, 55.776573 ], [ 29.893799, 55.792017 ], [ 29.838867, 55.776573 ], [ 29.366455, 55.671389 ], [ 29.306030, 55.776573 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.498291, 66.513260 ], [ 29.317017, 66.687784 ], [ 33.502808, 66.687784 ], [ 33.184204, 66.633377 ], [ 33.447876, 66.513260 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.324341, 66.513260 ], [ 44.472656, 66.687784 ], [ 45.439453, 66.687784 ] ] ], [ [ [ 40.902100, 66.687784 ], [ 40.534058, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 35.375977, 66.513260 ], [ 34.343262, 66.687784 ], [ 40.902100, 66.687784 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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": "Polygon", "coordinates": [ [ [ 23.560181, 66.687784 ], [ 23.560181, 66.513260 ], [ 23.565674, 66.396961 ], [ 23.900757, 66.009086 ], [ 22.500000, 65.777998 ], [ 22.181396, 65.723852 ], [ 22.060547, 65.637889 ], [ 22.060547, 66.687784 ], [ 23.560181, 66.687784 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.317017, 66.687784 ], [ 29.498291, 66.513260 ], [ 30.212402, 65.807279 ], [ 29.542236, 64.949139 ], [ 30.443115, 64.206377 ], [ 30.031128, 63.553446 ], [ 31.514282, 62.870179 ], [ 31.135254, 62.359805 ], [ 30.206909, 61.780916 ], [ 28.064575, 60.505935 ], [ 26.251831, 60.424699 ], [ 24.494019, 60.059358 ], [ 22.868042, 59.847574 ], [ 22.500000, 60.196156 ], [ 22.285767, 60.392148 ], [ 22.060547, 60.470758 ], [ 22.060547, 63.555892 ], [ 22.439575, 63.818864 ], [ 22.500000, 63.845512 ], [ 24.730225, 64.902580 ], [ 25.394897, 65.111460 ], [ 25.290527, 65.535721 ], [ 23.900757, 66.009086 ], [ 23.565674, 66.396961 ], [ 23.560181, 66.513260 ], [ 23.560181, 66.687784 ], [ 29.317017, 66.687784 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "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": "Polygon", "coordinates": [ [ [ 25.164185, 57.970244 ], [ 25.598145, 57.847674 ], [ 26.460571, 57.477450 ], [ 27.284546, 57.477450 ], [ 27.767944, 57.246366 ], [ 27.850342, 56.761757 ], [ 28.174438, 56.170023 ], [ 27.075806, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.174927, 55.776573 ], [ 25.532227, 56.102683 ], [ 24.999390, 56.166965 ], [ 24.856567, 56.374377 ], [ 23.873291, 56.273861 ], [ 22.500000, 56.328721 ], [ 22.197876, 56.337856 ], [ 22.060547, 56.301301 ], [ 22.060547, 57.586559 ], [ 22.500000, 57.745213 ], [ 22.521973, 57.754007 ], [ 23.312988, 57.007842 ], [ 24.120483, 57.025784 ], [ 24.312744, 57.795016 ], [ 25.164185, 57.970244 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.856567, 56.374377 ], [ 24.999390, 56.166965 ], [ 25.532227, 56.102683 ], [ 26.174927, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.510010, 55.528631 ], [ 22.060547, 55.528631 ], [ 22.060547, 56.301301 ], [ 22.197876, 56.337856 ], [ 22.500000, 56.328721 ], [ 23.873291, 56.273861 ], [ 24.856567, 56.374377 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 40.160522, 66.337505 ], [ 36.414185, 66.337505 ], [ 35.375977, 66.513260 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 33.447876, 66.513260 ], [ 33.843384, 66.337505 ], [ 29.679565, 66.337505 ], [ 29.498291, 66.513260 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.534058, 66.513260 ], [ 40.160522, 66.337505 ] ] ], [ [ [ 45.000000, 68.395135 ], [ 45.439453, 68.344514 ], [ 45.439453, 66.337505 ], [ 44.170532, 66.337505 ], [ 44.324341, 66.513260 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 45.000000, 68.395135 ] ] ], [ [ [ 41.753540, 66.337505 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.231201, 66.337505 ], [ 41.753540, 66.337505 ] ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 28.163452, 71.185982 ], [ 31.289062, 70.455184 ], [ 30.003662, 70.186965 ], [ 31.096802, 69.559471 ], [ 29.399414, 69.158650 ], [ 28.591919, 69.066601 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.164610 ], [ 26.174927, 69.826365 ], [ 25.686035, 69.094060 ], [ 24.730225, 68.650556 ], [ 23.659058, 68.893209 ], [ 22.500000, 68.847665 ], [ 22.351685, 68.843700 ], [ 22.060547, 68.984016 ], [ 22.060547, 70.233460 ], [ 22.500000, 70.220452 ], [ 23.021851, 70.203715 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.986560 ], [ 28.163452, 71.185982 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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": "Polygon", "coordinates": [ [ [ 22.060547, 68.582459 ], [ 22.500000, 68.393113 ], [ 23.538208, 67.937524 ], [ 23.560181, 66.513260 ], [ 23.565674, 66.396961 ], [ 23.615112, 66.337505 ], [ 22.060547, 66.337505 ], [ 22.060547, 68.582459 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.729492, 70.164610 ], [ 29.014893, 69.767557 ], [ 28.591919, 69.066601 ], [ 28.443604, 68.364776 ], [ 29.976196, 67.699025 ], [ 29.053345, 66.945123 ], [ 29.498291, 66.513260 ], [ 29.679565, 66.337505 ], [ 23.615112, 66.337505 ], [ 23.565674, 66.396961 ], [ 23.560181, 66.513260 ], [ 23.538208, 67.937524 ], [ 22.500000, 68.393113 ], [ 22.060547, 68.582459 ], [ 22.060547, 68.984016 ], [ 22.351685, 68.843700 ], [ 22.500000, 68.847665 ], [ 23.659058, 68.893209 ], [ 24.730225, 68.650556 ], [ 25.686035, 69.094060 ], [ 26.174927, 69.826365 ], [ 27.729492, 70.164610 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "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": "Polygon", "coordinates": [ [ [ 22.879028, 78.455425 ], [ 23.280029, 78.080156 ], [ 24.719238, 77.854567 ], [ 22.500000, 77.446940 ], [ 22.489014, 77.445746 ], [ 22.060547, 77.502931 ], [ 22.060547, 78.376004 ], [ 22.500000, 78.419091 ], [ 22.879028, 78.455425 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "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": "Polygon", "coordinates": [ [ [ 45.439453, 80.646142 ], [ 45.439453, 80.582539 ], [ 45.000000, 80.587930 ], [ 44.846191, 80.590625 ], [ 45.000000, 80.604983 ], [ 45.439453, 80.646142 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 22.917480, 80.657741 ], [ 25.444336, 80.407473 ], [ 27.405396, 80.057101 ], [ 25.922241, 79.518659 ], [ 23.021851, 79.400085 ], [ 22.500000, 79.430356 ], [ 22.060547, 79.455516 ], [ 22.060547, 80.403810 ], [ 22.500000, 80.534782 ], [ 22.917480, 80.657741 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 67.939453, -82.620052 ], [ 67.939453, -85.088894 ], [ 44.560547, -85.088894 ], [ 44.560547, -82.620052 ], [ 67.939453, -82.620052 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 67.939453, -79.088462 ], [ 67.939453, -82.732092 ], [ 44.560547, -82.732092 ], [ 44.560547, -79.088462 ], [ 67.939453, -79.088462 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 67.939453, -73.898111 ], [ 67.939453, -79.253586 ], [ 44.560547, -79.253586 ], [ 44.560547, -73.898111 ], [ 67.939453, -73.898111 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 57.172852, -66.337505 ], [ 57.216797, -66.513260 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.500000, -67.902421 ], [ 67.890015, -67.933397 ], [ 67.939453, -67.933397 ], [ 67.939453, -70.244604 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.667244 ], [ 67.939453, -74.140084 ], [ 44.560547, -74.140084 ], [ 44.560547, -68.142942 ], [ 45.000000, -68.021966 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 50.976562, -66.513260 ], [ 51.520386, -66.337505 ], [ 57.172852, -66.337505 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "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": "Polygon", "coordinates": [ [ [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.216797, -66.513260 ], [ 57.255249, -66.679087 ], [ 57.271729, -66.687784 ], [ 50.855713, -66.687784 ], [ 50.949097, -66.522016 ], [ 50.976562, -66.513260 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Madagascar", "sov_a3": "MDG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Madagascar", "adm0_a3": "MDG", "geou_dif": 0, "geounit": "Madagascar", "gu_a3": "MDG", "su_dif": 0, "subunit": "Madagascar", "su_a3": "MDG", "brk_diff": 0, "name": "Madagascar", "name_long": "Madagascar", "brk_a3": "MDG", "brk_name": "Madagascar", "abbrev": "Mad.", "postal": "MG", "formal_en": "Republic of Madagascar", "name_sort": "Madagascar", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 20653556, "gdp_md_est": 20130, "pop_year": -99, "lastcensus": 1993, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MG", "iso_a3": "MDG", "iso_n3": "450", "un_a3": "450", "wb_a2": "MG", "wb_a3": "MDG", "woe_id": -99, "adm0_a3_is": "MDG", "adm0_a3_us": "MDG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.208008, -21.534847 ], [ 48.076172, -21.943046 ], [ 47.927856, -22.390714 ], [ 47.543335, -23.780318 ], [ 47.092896, -24.941238 ], [ 46.279907, -25.175117 ], [ 45.406494, -25.596948 ], [ 45.000000, -25.418470 ], [ 44.829712, -25.344026 ], [ 44.560547, -25.219851 ], [ 44.560547, -21.534847 ], [ 48.208008, -21.534847 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Madagascar", "sov_a3": "MDG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Madagascar", "adm0_a3": "MDG", "geou_dif": 0, "geounit": "Madagascar", "gu_a3": "MDG", "su_dif": 0, "subunit": "Madagascar", "su_a3": "MDG", "brk_diff": 0, "name": "Madagascar", "name_long": "Madagascar", "brk_a3": "MDG", "brk_name": "Madagascar", "abbrev": "Mad.", "postal": "MG", "formal_en": "Republic of Madagascar", "name_sort": "Madagascar", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 20653556, "gdp_md_est": 20130, "pop_year": -99, "lastcensus": 1993, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MG", "iso_a3": "MDG", "iso_n3": "450", "un_a3": "450", "wb_a2": "MG", "wb_a3": "MDG", "woe_id": -99, "adm0_a3_is": "MDG", "adm0_a3_us": "MDG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.191284, -12.039321 ], [ 49.542847, -12.468760 ], [ 49.806519, -12.892135 ], [ 50.053711, -13.555222 ], [ 50.213013, -14.753635 ], [ 50.471191, -15.225889 ], [ 50.372314, -15.702375 ], [ 50.196533, -15.998295 ], [ 49.855957, -15.411319 ], [ 49.669189, -15.707663 ], [ 49.861450, -16.446622 ], [ 49.773560, -16.872890 ], [ 49.493408, -17.104043 ], [ 49.432983, -17.952606 ], [ 49.037476, -19.114029 ], [ 48.543091, -20.493919 ], [ 48.076172, -21.943046 ], [ 47.944336, -22.350076 ], [ 44.560547, -22.350076 ], [ 44.560547, -16.204125 ], [ 44.939575, -16.177749 ], [ 45.000000, -16.156645 ], [ 45.499878, -15.971892 ], [ 45.867920, -15.792254 ], [ 46.307373, -15.776395 ], [ 46.878662, -15.209988 ], [ 47.702637, -14.594216 ], [ 48.004761, -14.088629 ], [ 47.867432, -13.662001 ], [ 48.290405, -13.779402 ], [ 48.839722, -13.084829 ], [ 48.861694, -12.484850 ], [ 49.191284, -12.039321 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.560547, 8.868790 ], [ 45.000000, 8.705929 ], [ 46.944580, 7.999397 ], [ 47.785034, 8.004837 ], [ 45.000000, 5.041699 ], [ 44.961548, 5.003394 ], [ 44.560547, 4.992450 ], [ 44.560547, 8.868790 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 55.437012, 22.350076 ], [ 55.662231, 22.004175 ], [ 55.645752, 21.943046 ], [ 54.997559, 20.004322 ], [ 51.998291, 19.004997 ], [ 49.114380, 18.620219 ], [ 48.180542, 18.166730 ], [ 47.466431, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.746826, 17.287709 ], [ 46.362305, 17.235252 ], [ 45.395508, 17.334908 ], [ 45.214233, 17.434511 ], [ 45.000000, 17.429270 ], [ 44.560547, 17.424029 ], [ 44.560547, 22.350076 ], [ 55.437012, 22.350076 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Yemen", "sov_a3": "YEM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Yemen", "adm0_a3": "YEM", "geou_dif": 0, "geounit": "Yemen", "gu_a3": "YEM", "su_dif": 0, "subunit": "Yemen", "su_a3": "YEM", "brk_diff": 0, "name": "Yemen", "name_long": "Yemen", "brk_a3": "YEM", "brk_name": "Yemen", "abbrev": "Yem.", "postal": "YE", "formal_en": "Republic of Yemen", "name_sort": "Yemen, Rep.", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 23822783, "gdp_md_est": 55280, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "YE", "iso_a3": "YEM", "iso_n3": "887", "un_a3": "887", "wb_a2": "RY", "wb_a3": "YEM", "woe_id": -99, "adm0_a3_is": "YEM", "adm0_a3_us": "YEM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.998291, 19.004997 ], [ 52.778320, 17.350638 ], [ 53.107910, 16.651981 ], [ 52.382812, 16.383391 ], [ 52.190552, 15.940202 ], [ 52.163086, 15.601875 ], [ 51.168823, 15.178181 ], [ 49.570312, 14.711135 ], [ 48.674927, 14.003367 ], [ 48.235474, 13.950061 ], [ 47.938843, 14.008696 ], [ 47.351074, 13.592600 ], [ 46.713867, 13.400307 ], [ 45.873413, 13.352210 ], [ 45.620728, 13.293411 ], [ 45.401001, 13.031318 ], [ 45.142822, 12.956383 ], [ 45.000000, 12.720726 ], [ 44.989014, 12.704651 ], [ 44.560547, 12.720726 ], [ 44.560547, 17.424029 ], [ 45.000000, 17.429270 ], [ 45.214233, 17.434511 ], [ 45.395508, 17.334908 ], [ 46.362305, 17.235252 ], [ 46.746826, 17.287709 ], [ 46.999512, 16.951724 ], [ 47.466431, 17.119793 ], [ 48.180542, 18.166730 ], [ 49.114380, 18.620219 ], [ 51.998291, 19.004997 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Oman", "sov_a3": "OMN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Oman", "adm0_a3": "OMN", "geou_dif": 0, "geounit": "Oman", "gu_a3": "OMN", "su_dif": 0, "subunit": "Oman", "su_a3": "OMN", "brk_diff": 0, "name": "Oman", "name_long": "Oman", "brk_a3": "OMN", "brk_name": "Oman", "abbrev": "Oman", "postal": "OM", "formal_en": "Sultanate of Oman", "name_sort": "Oman", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3418085, "gdp_md_est": 66980, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "OM", "iso_a3": "OMN", "iso_n3": "512", "un_a3": "512", "wb_a2": "OM", "wb_a3": "OMN", "woe_id": -99, "adm0_a3_is": "OMN", "adm0_a3_us": "OMN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.804077, 22.350076 ], [ 59.804077, 22.314508 ], [ 59.578857, 21.943046 ], [ 59.441528, 21.718680 ], [ 59.282227, 21.437730 ], [ 58.859253, 21.115249 ], [ 58.485718, 20.432160 ], [ 58.029785, 20.483628 ], [ 57.821045, 20.246737 ], [ 57.661743, 19.740854 ], [ 57.788086, 19.072501 ], [ 57.689209, 18.947856 ], [ 57.233276, 18.953051 ], [ 56.607056, 18.578569 ], [ 56.508179, 18.088423 ], [ 56.282959, 17.879431 ], [ 55.656738, 17.884659 ], [ 55.266724, 17.633552 ], [ 55.272217, 17.230005 ], [ 54.788818, 16.951724 ], [ 54.234009, 17.046281 ], [ 53.569336, 16.709863 ], [ 53.107910, 16.651981 ], [ 51.998291, 19.004997 ], [ 54.997559, 20.004322 ], [ 55.645752, 21.943046 ], [ 55.662231, 22.004175 ], [ 55.437012, 22.350076 ], [ 59.804077, 22.350076 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "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": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.944092, 11.415418 ], [ 48.938599, 11.399264 ], [ 48.933105, 10.984335 ], [ 48.933105, 9.454480 ], [ 48.482666, 8.841651 ], [ 47.785034, 8.004837 ], [ 46.944580, 7.999397 ], [ 45.000000, 8.705929 ], [ 44.560547, 8.868790 ], [ 44.560547, 10.444598 ], [ 44.609985, 10.444598 ], [ 45.000000, 10.547221 ], [ 45.554810, 10.698394 ], [ 46.642456, 10.817120 ], [ 47.521362, 11.129897 ], [ 48.021240, 11.194568 ], [ 48.378296, 11.377724 ], [ 48.944092, 11.415418 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.108398, 12.028576 ], [ 51.130371, 11.749059 ], [ 51.036987, 11.167624 ], [ 51.042480, 10.644412 ], [ 50.833740, 10.282491 ], [ 50.548096, 9.199715 ], [ 50.070190, 8.086423 ], [ 49.449463, 6.806444 ], [ 48.592529, 5.342583 ], [ 47.735596, 4.220421 ], [ 46.560059, 2.860749 ], [ 45.560303, 2.048514 ], [ 45.000000, 1.675176 ], [ 44.560547, 1.384143 ], [ 44.560547, 4.992450 ], [ 44.961548, 5.003394 ], [ 45.000000, 5.041699 ], [ 47.785034, 8.004837 ], [ 48.482666, 8.841651 ], [ 48.933105, 9.454480 ], [ 48.938599, 11.399264 ], [ 48.944092, 11.415418 ], [ 49.262695, 11.431571 ], [ 49.724121, 11.582288 ], [ 50.256958, 11.684514 ], [ 50.729370, 12.023203 ], [ 51.108398, 12.028576 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 47.922363, 41.310824 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 47.268677, 41.310824 ], [ 47.922363, 41.310824 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.516113, 41.310824 ], [ 46.636963, 41.182788 ], [ 46.499634, 41.066928 ], [ 45.961304, 41.124884 ], [ 45.477905, 41.310824 ], [ 46.516113, 41.310824 ] ] ], [ [ [ 45.065918, 41.310824 ], [ 44.967041, 41.248903 ], [ 44.560547, 41.203456 ], [ 44.560547, 41.310824 ], [ 45.065918, 41.310824 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 44.560547, 37.483577 ], [ 44.769287, 37.173449 ], [ 44.560547, 37.099003 ], [ 44.560547, 37.483577 ] ] ], [ [ [ 44.560547, 39.618384 ], [ 44.560547, 39.888665 ], [ 44.791260, 39.715638 ], [ 44.560547, 39.618384 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.769287, 37.173449 ], [ 45.000000, 36.756490 ], [ 45.417480, 35.978006 ], [ 46.071167, 35.679610 ], [ 46.148071, 35.097440 ], [ 45.648193, 34.750640 ], [ 45.411987, 33.970698 ], [ 46.104126, 33.017876 ], [ 47.334595, 32.472695 ], [ 47.845459, 31.709476 ], [ 47.680664, 30.987028 ], [ 47.999268, 30.987028 ], [ 48.010254, 30.453409 ], [ 48.565063, 29.931135 ], [ 47.971802, 29.978729 ], [ 47.301636, 30.059586 ], [ 46.565552, 29.099377 ], [ 45.000000, 29.166552 ], [ 44.708862, 29.180941 ], [ 44.560547, 29.286399 ], [ 44.560547, 37.099003 ], [ 44.769287, 37.173449 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.939453, 41.310824 ], [ 67.939453, 41.137296 ], [ 66.708984, 41.170384 ], [ 66.676025, 41.310824 ], [ 67.939453, 41.310824 ] ] ], [ [ [ 55.964355, 41.310824 ], [ 55.453491, 41.261291 ], [ 55.409546, 41.310824 ], [ 55.964355, 41.310824 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.248903 ], [ 45.175781, 40.988192 ], [ 45.186768, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.357056, 40.563895 ], [ 45.889893, 40.220830 ], [ 45.609741, 39.901309 ], [ 46.032715, 39.631077 ], [ 46.483154, 39.465885 ], [ 46.505127, 38.771216 ], [ 46.142578, 38.741231 ], [ 45.730591, 39.321550 ], [ 45.736084, 39.474365 ], [ 45.296631, 39.474365 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.560547, 39.888665 ], [ 44.560547, 41.203456 ], [ 44.967041, 41.248903 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.791260, 39.715638 ], [ 44.950562, 39.338546 ], [ 45.000000, 39.296048 ], [ 45.455933, 38.878205 ], [ 46.142578, 38.741231 ], [ 46.505127, 38.771216 ], [ 47.680664, 39.512517 ], [ 48.059692, 39.584524 ], [ 48.350830, 39.291797 ], [ 48.010254, 38.796908 ], [ 48.630981, 38.272689 ], [ 48.878174, 38.324420 ], [ 49.196777, 37.583766 ], [ 50.147095, 37.378888 ], [ 50.839233, 36.875227 ], [ 52.261963, 36.703660 ], [ 53.822021, 36.967449 ], [ 53.920898, 37.199706 ], [ 54.799805, 37.396346 ], [ 55.508423, 37.965854 ], [ 56.178589, 37.935533 ], [ 56.618042, 38.121593 ], [ 57.326660, 38.030786 ], [ 58.430786, 37.522797 ], [ 59.232788, 37.413800 ], [ 60.375366, 36.531709 ], [ 61.122437, 36.491973 ], [ 61.210327, 35.652833 ], [ 60.798340, 34.406910 ], [ 60.523682, 33.678640 ], [ 60.963135, 33.532237 ], [ 60.534668, 32.985628 ], [ 60.858765, 32.184911 ], [ 60.941162, 31.550453 ], [ 61.699219, 31.381779 ], [ 61.776123, 30.737114 ], [ 60.869751, 29.831114 ], [ 61.364136, 29.305561 ], [ 61.770630, 28.700225 ], [ 62.726440, 28.260844 ], [ 62.753906, 27.381523 ], [ 63.231812, 27.220441 ], [ 63.314209, 26.760326 ], [ 61.869507, 26.244156 ], [ 61.495972, 25.080624 ], [ 59.611816, 25.383735 ], [ 58.524170, 25.611810 ], [ 57.392578, 25.740529 ], [ 56.969604, 26.966142 ], [ 56.491699, 27.147145 ], [ 55.722656, 26.966142 ], [ 54.711914, 26.485324 ], [ 53.492432, 26.814266 ], [ 52.481689, 27.581329 ], [ 51.520386, 27.868217 ], [ 50.850220, 28.815800 ], [ 50.114136, 30.149877 ], [ 49.575806, 29.988245 ], [ 48.938599, 30.320730 ], [ 48.565063, 29.931135 ], [ 48.010254, 30.453409 ], [ 47.999268, 30.987028 ], [ 47.680664, 30.987028 ], [ 47.845459, 31.709476 ], [ 47.334595, 32.472695 ], [ 46.104126, 33.017876 ], [ 45.411987, 33.970698 ], [ 45.648193, 34.750640 ], [ 46.148071, 35.097440 ], [ 46.071167, 35.679610 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.756490 ], [ 44.769287, 37.173449 ], [ 44.560547, 37.483577 ], [ 44.560547, 39.618384 ], [ 44.791260, 39.715638 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 44.560547, 29.286399 ], [ 44.708862, 29.180941 ], [ 45.000000, 29.166552 ], [ 46.565552, 29.099377 ], [ 47.455444, 29.003336 ], [ 47.708130, 28.526622 ], [ 48.411255, 28.555576 ], [ 48.806763, 27.693256 ], [ 49.295654, 27.464414 ], [ 49.465942, 27.112923 ], [ 50.147095, 26.691637 ], [ 50.207520, 26.278640 ], [ 50.108643, 25.948166 ], [ 50.234985, 25.611810 ], [ 50.526123, 25.329132 ], [ 50.657959, 25.000994 ], [ 50.806274, 24.756808 ], [ 51.108398, 24.557116 ], [ 51.388550, 24.632038 ], [ 51.575317, 24.246965 ], [ 51.613770, 24.016362 ], [ 51.998291, 23.003908 ], [ 55.003052, 22.497332 ], [ 55.206299, 22.710323 ], [ 55.662231, 22.004175 ], [ 55.645752, 21.943046 ], [ 55.508423, 21.534847 ], [ 44.560547, 21.534847 ], [ 44.560547, 29.286399 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Qatar", "sov_a3": "QAT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Qatar", "adm0_a3": "QAT", "geou_dif": 0, "geounit": "Qatar", "gu_a3": "QAT", "su_dif": 0, "subunit": "Qatar", "su_a3": "QAT", "brk_diff": 0, "name": "Qatar", "name_long": "Qatar", "brk_a3": "QAT", "brk_name": "Qatar", "abbrev": "Qatar", "postal": "QA", "formal_en": "State of Qatar", "name_sort": "Qatar", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 833285, "gdp_md_est": 91330, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "QA", "iso_a3": "QAT", "iso_n3": "634", "un_a3": "634", "wb_a2": "QA", "wb_a3": "QAT", "woe_id": -99, "adm0_a3_is": "QAT", "adm0_a3_us": "QAT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.284180, 26.115986 ], [ 51.586304, 25.804837 ], [ 51.602783, 25.219851 ], [ 51.388550, 24.632038 ], [ 51.108398, 24.557116 ], [ 50.806274, 24.756808 ], [ 50.740356, 25.482951 ], [ 51.009521, 26.007424 ], [ 51.284180, 26.115986 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 60.292969, 41.310824 ], [ 60.463257, 41.224118 ], [ 61.545410, 41.269550 ], [ 61.880493, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.369385, 40.057052 ], [ 63.517456, 39.364032 ], [ 64.165649, 38.895308 ], [ 65.214844, 38.406254 ], [ 66.544189, 37.978845 ], [ 66.516724, 37.365791 ], [ 66.214600, 37.396346 ], [ 65.742188, 37.662081 ], [ 65.588379, 37.309014 ], [ 64.742432, 37.112146 ], [ 64.544678, 36.315125 ], [ 63.978882, 36.009117 ], [ 63.193359, 35.857892 ], [ 62.984619, 35.406961 ], [ 62.226562, 35.272532 ], [ 61.210327, 35.652833 ], [ 61.122437, 36.491973 ], [ 60.375366, 36.531709 ], [ 59.232788, 37.413800 ], [ 58.430786, 37.522797 ], [ 57.326660, 38.030786 ], [ 56.618042, 38.121593 ], [ 56.178589, 37.935533 ], [ 55.508423, 37.965854 ], [ 54.799805, 37.396346 ], [ 53.920898, 37.199706 ], [ 53.734131, 37.909534 ], [ 53.876953, 38.955137 ], [ 53.096924, 39.291797 ], [ 53.355103, 39.977120 ], [ 52.690430, 40.036027 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.634799 ], [ 54.733887, 40.955011 ], [ 54.700928, 40.979898 ], [ 54.299927, 41.310824 ], [ 55.409546, 41.310824 ], [ 55.453491, 41.261291 ], [ 55.964355, 41.310824 ], [ 60.292969, 41.310824 ] ] ], [ [ [ 52.838745, 41.310824 ], [ 52.811279, 41.137296 ], [ 52.728882, 41.310824 ], [ 52.838745, 41.310824 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Oman", "sov_a3": "OMN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Oman", "adm0_a3": "OMN", "geou_dif": 0, "geounit": "Oman", "gu_a3": "OMN", "su_dif": 0, "subunit": "Oman", "su_a3": "OMN", "brk_diff": 0, "name": "Oman", "name_long": "Oman", "brk_a3": "OMN", "brk_name": "Oman", "abbrev": "Oman", "postal": "OM", "formal_en": "Sultanate of Oman", "name_sort": "Oman", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3418085, "gdp_md_est": 66980, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "OM", "iso_a3": "OMN", "iso_n3": "512", "un_a3": "512", "wb_a2": "OM", "wb_a3": "OMN", "woe_id": -99, "adm0_a3_is": "OMN", "adm0_a3_us": "OMN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.392822, 24.926295 ], [ 56.843262, 24.241956 ], [ 57.398071, 23.880815 ], [ 58.134155, 23.750154 ], [ 58.727417, 23.569022 ], [ 59.447021, 22.664710 ], [ 59.804077, 22.537927 ], [ 59.804077, 22.314508 ], [ 59.578857, 21.943046 ], [ 59.441528, 21.718680 ], [ 59.337158, 21.534847 ], [ 55.508423, 21.534847 ], [ 55.645752, 21.943046 ], [ 55.662231, 22.004175 ], [ 55.206299, 22.710323 ], [ 55.233765, 23.115102 ], [ 55.524902, 23.528737 ], [ 55.524902, 23.936055 ], [ 55.980835, 24.131715 ], [ 55.799561, 24.272005 ], [ 55.881958, 24.921313 ], [ 56.392822, 24.926295 ] ] ], [ [ [ 56.359863, 26.396790 ], [ 56.480713, 26.313113 ], [ 56.387329, 25.898762 ], [ 56.260986, 25.715786 ], [ 56.068726, 26.056783 ], [ 56.359863, 26.396790 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.939453, 38.980763 ], [ 67.500000, 39.121537 ], [ 67.439575, 39.142842 ], [ 67.500000, 39.240763 ], [ 67.697754, 39.584524 ], [ 67.939453, 39.567588 ], [ 67.939453, 38.980763 ] ] ], [ [ [ 67.939453, 37.343959 ], [ 67.939453, 37.103384 ], [ 67.829590, 37.147182 ], [ 67.939453, 37.343959 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 31.611288 ], [ 67.939453, 23.775291 ], [ 67.500000, 23.926013 ], [ 67.439575, 23.946096 ], [ 67.142944, 24.666986 ], [ 66.368408, 25.428393 ], [ 64.528198, 25.239727 ], [ 62.902222, 25.219851 ], [ 61.495972, 25.080624 ], [ 61.869507, 26.244156 ], [ 63.314209, 26.760326 ], [ 63.231812, 27.220441 ], [ 62.753906, 27.381523 ], [ 62.726440, 28.260844 ], [ 61.770630, 28.700225 ], [ 61.364136, 29.305561 ], [ 60.869751, 29.831114 ], [ 62.545166, 29.319931 ], [ 63.544922, 29.473079 ], [ 64.143677, 29.343875 ], [ 64.346924, 29.563902 ], [ 65.044556, 29.473079 ], [ 66.346436, 29.888281 ], [ 66.379395, 30.741836 ], [ 66.934204, 31.306715 ], [ 67.681274, 31.306715 ], [ 67.791138, 31.583215 ], [ 67.939453, 31.611288 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 67.939453, 56.022948 ], [ 67.939453, 54.939766 ], [ 67.500000, 54.873446 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 45.000000, 42.609706 ], [ 44.560547, 42.710696 ], [ 44.560547, 56.022948 ], [ 67.939453, 56.022948 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.560547, 42.710696 ], [ 45.000000, 42.609706 ], [ 45.466919, 42.504503 ], [ 45.774536, 42.094146 ], [ 46.400757, 41.861379 ], [ 46.142578, 41.726230 ], [ 46.636963, 41.182788 ], [ 46.499634, 41.066928 ], [ 45.961304, 41.124884 ], [ 45.214233, 41.413896 ], [ 45.000000, 41.269550 ], [ 44.967041, 41.248903 ], [ 44.560547, 41.203456 ], [ 44.560547, 42.710696 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 54.939766 ], [ 67.939453, 41.137296 ], [ 67.500000, 41.149706 ], [ 66.708984, 41.170384 ], [ 66.505737, 41.988077 ], [ 66.022339, 41.996243 ], [ 66.093750, 43.000630 ], [ 64.896240, 43.731414 ], [ 63.182373, 43.651975 ], [ 62.012329, 43.504737 ], [ 61.056519, 44.406316 ], [ 58.502197, 45.587134 ], [ 55.925903, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.453491, 41.261291 ], [ 54.750366, 42.045213 ], [ 54.074707, 42.326062 ], [ 52.943115, 42.118599 ], [ 52.498169, 41.783601 ], [ 52.443237, 42.028894 ], [ 52.690430, 42.447781 ], [ 52.498169, 42.795401 ], [ 51.339111, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.333862, 44.284537 ], [ 50.300903, 44.610023 ], [ 51.273193, 44.516093 ], [ 51.311646, 45.247821 ], [ 52.163086, 45.410020 ], [ 53.036499, 45.259422 ], [ 53.217773, 46.236853 ], [ 53.041992, 46.856435 ], [ 52.036743, 46.807580 ], [ 51.190796, 47.051411 ], [ 50.031738, 46.611715 ], [ 49.097900, 46.399988 ], [ 48.592529, 46.562637 ], [ 48.691406, 47.077604 ], [ 48.054199, 47.746711 ], [ 47.312622, 47.717154 ], [ 46.461182, 48.396385 ], [ 47.043457, 49.152970 ], [ 46.746826, 49.357334 ], [ 47.548828, 50.457504 ], [ 48.576050, 49.876938 ], [ 48.696899, 50.607646 ], [ 50.762329, 51.692990 ], [ 52.327881, 51.720223 ], [ 54.530640, 51.027576 ], [ 55.711670, 50.625073 ], [ 56.777344, 51.044848 ], [ 58.359375, 51.065565 ], [ 59.639282, 50.548344 ], [ 59.930420, 50.844105 ], [ 61.336670, 50.802463 ], [ 61.583862, 51.275662 ], [ 59.963379, 51.961192 ], [ 60.924683, 52.449314 ], [ 60.737915, 52.722986 ], [ 61.699219, 52.981723 ], [ 60.974121, 53.667426 ], [ 61.435547, 54.007769 ], [ 65.176392, 54.354956 ], [ 65.665283, 54.603892 ], [ 67.500000, 54.873446 ], [ 67.939453, 54.939766 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.248903 ], [ 45.000000, 41.215854 ], [ 45.175781, 40.988192 ], [ 45.186768, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.422974, 40.647304 ], [ 44.560547, 40.647304 ], [ 44.560547, 41.203456 ], [ 44.967041, 41.248903 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 52.910156, 40.880295 ], [ 53.794556, 40.647304 ], [ 52.849731, 40.647304 ], [ 52.910156, 40.880295 ] ] ], [ [ [ 59.974365, 42.224450 ], [ 60.078735, 41.426253 ], [ 60.463257, 41.224118 ], [ 61.545410, 41.269550 ], [ 61.880493, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.089233, 40.647304 ], [ 53.898926, 40.647304 ], [ 54.733887, 40.955011 ], [ 54.700928, 40.979898 ], [ 54.003296, 41.553811 ], [ 53.717651, 42.126747 ], [ 52.915649, 41.869561 ], [ 52.811279, 41.137296 ], [ 52.498169, 41.783601 ], [ 52.943115, 42.118599 ], [ 54.074707, 42.326062 ], [ 54.750366, 42.045213 ], [ 55.453491, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.095947, 41.323201 ], [ 56.931152, 41.828642 ], [ 57.782593, 42.171546 ], [ 58.628540, 42.755080 ], [ 59.974365, 42.224450 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 67.939453, 66.687784 ], [ 67.939453, 55.528631 ], [ 44.560547, 55.528631 ], [ 44.560547, 66.687784 ], [ 46.301880, 66.687784 ], [ 46.345825, 66.668211 ], [ 46.488647, 66.687784 ], [ 67.939453, 66.687784 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "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": [ [ [ [ 67.939453, 68.277521 ], [ 67.939453, 66.337505 ], [ 44.560547, 66.337505 ], [ 44.560547, 68.445644 ], [ 45.000000, 68.395135 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 67.500000, 68.417373 ], [ 67.939453, 68.277521 ] ] ], [ [ [ 58.211060, 74.140084 ], [ 58.024292, 74.019543 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 54.228516, 74.019543 ], [ 54.552612, 74.140084 ], [ 58.211060, 74.140084 ] ] ], [ [ [ 67.939453, 69.372573 ], [ 67.500000, 69.409311 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 67.500000, 71.430678 ], [ 67.939453, 71.644644 ], [ 67.939453, 69.372573 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 67.939453, 76.925585 ], [ 67.939453, 76.200727 ], [ 67.500000, 76.140327 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 58.024292, 74.019543 ], [ 57.837524, 73.898111 ], [ 53.898926, 73.898111 ], [ 54.228516, 74.019543 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 67.500000, 76.896974 ], [ 67.939453, 76.925585 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "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": "Polygon", "coordinates": [ [ [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 45.000000, 80.587930 ], [ 44.846191, 80.590625 ], [ 45.000000, 80.604983 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 90.439453, -82.620052 ], [ 90.439453, -85.088894 ], [ 67.060547, -85.088894 ], [ 67.060547, -82.620052 ], [ 90.439453, -82.620052 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 90.439453, -79.088462 ], [ 90.439453, -82.732092 ], [ 67.060547, -82.732092 ], [ 67.060547, -79.088462 ], [ 90.439453, -79.088462 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 90.439453, -73.898111 ], [ 90.439453, -79.253586 ], [ 67.060547, -79.253586 ], [ 67.060547, -73.898111 ], [ 90.439453, -73.898111 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 88.154297, -66.337505 ], [ 88.357544, -66.482592 ], [ 88.385010, -66.513260 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.000000, -67.176348 ], [ 90.439453, -67.212544 ], [ 90.439453, -74.140084 ], [ 67.060547, -74.140084 ], [ 67.060547, -67.867265 ], [ 67.500000, -67.902421 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.753296, -66.513260 ], [ 87.885132, -66.337505 ], [ 88.154297, -66.337505 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "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": "Polygon", "coordinates": [ [ [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.385010, -66.513260 ], [ 88.555298, -66.687784 ], [ 87.621460, -66.687784 ], [ 87.753296, -66.513260 ], [ 87.984009, -66.209308 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 3, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "French Southern and Antarctic Lands", "adm0_a3": "ATF", "geou_dif": 0, "geounit": "French Southern and Antarctic Lands", "gu_a3": "ATF", "su_dif": 0, "subunit": "French Southern and Antarctic Lands", "su_a3": "ATF", "brk_diff": 0, "name": "Fr. S. Antarctic Lands", "name_long": "French Southern and Antarctic Lands", "brk_a3": "ATF", "brk_name": "Fr. S. and Antarctic Lands", "abbrev": "Fr. S.A.L.", "postal": "TF", "formal_en": "Territory of the French Southern and Antarctic Lands", "note_adm0": "Fr.", "name_sort": "French Southern and Antarctic Lands", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 140, "gdp_md_est": 16, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TF", "iso_a3": "ATF", "iso_n3": "260", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATF", "adm0_a3_us": "ATF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Seven seas (open ocean)", "region_un": "Seven seas (open ocean)", "subregion": "Seven seas (open ocean)", "region_wb": "Sub-Saharan Africa", "name_len": 22, "long_len": 35, "abbrev_len": 10, "tiny": 2, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.933716, -48.622016 ], [ 69.576416, -48.936935 ], [ 70.521240, -49.063069 ], [ 70.559692, -49.253465 ], [ 70.279541, -49.706720 ], [ 68.741455, -49.774170 ], [ 68.719482, -49.239121 ], [ 68.933716, -48.622016 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.972778, 22.350076 ], [ 89.027710, 22.060187 ], [ 88.983765, 21.943046 ], [ 88.884888, 21.693161 ], [ 88.203735, 21.703369 ], [ 86.973267, 21.499075 ], [ 87.028198, 20.745840 ], [ 86.495361, 20.153942 ], [ 85.056152, 19.482129 ], [ 83.935547, 18.302381 ], [ 83.188477, 17.675428 ], [ 82.188721, 17.020020 ], [ 82.188721, 16.557227 ], [ 81.688843, 16.314868 ], [ 80.787964, 15.956048 ], [ 80.321045, 15.903225 ], [ 80.024414, 15.141067 ], [ 80.233154, 13.838080 ], [ 80.282593, 13.009910 ], [ 79.859619, 12.060809 ], [ 79.854126, 10.358151 ], [ 79.337769, 10.309515 ], [ 78.881836, 9.546583 ], [ 79.189453, 9.221405 ], [ 78.277588, 8.933914 ], [ 77.937012, 8.254983 ], [ 77.536011, 7.966758 ], [ 76.591187, 8.901353 ], [ 76.129761, 10.304110 ], [ 75.745239, 11.313094 ], [ 75.393677, 11.781325 ], [ 74.860840, 12.742158 ], [ 74.613647, 13.992706 ], [ 74.443359, 14.620794 ], [ 73.531494, 15.993015 ], [ 73.119507, 17.931702 ], [ 72.817383, 19.212616 ], [ 72.822876, 20.421865 ], [ 72.625122, 21.361013 ], [ 71.174927, 20.761250 ], [ 70.466309, 20.879343 ], [ 69.318237, 21.943046 ], [ 69.158936, 22.090730 ], [ 69.510498, 22.350076 ], [ 88.972778, 22.350076 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sri Lanka", "sov_a3": "LKA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sri Lanka", "adm0_a3": "LKA", "geou_dif": 0, "geounit": "Sri Lanka", "gu_a3": "LKA", "su_dif": 0, "subunit": "Sri Lanka", "su_a3": "LKA", "brk_diff": 0, "name": "Sri Lanka", "name_long": "Sri Lanka", "brk_a3": "LKA", "brk_name": "Sri Lanka", "abbrev": "Sri L.", "postal": "LK", "formal_en": "Democratic Socialist Republic of Sri Lanka", "name_sort": "Sri Lanka", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 21324791, "gdp_md_est": 91870, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LK", "iso_a3": "LKA", "iso_n3": "144", "un_a3": "144", "wb_a2": "LK", "wb_a3": "LKA", "woe_id": -99, "adm0_a3_is": "LKA", "adm0_a3_us": "LKA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.145264, 9.828154 ], [ 80.837402, 9.270201 ], [ 81.298828, 8.564726 ], [ 81.787720, 7.525873 ], [ 81.633911, 6.484525 ], [ 81.216431, 6.200629 ], [ 80.343018, 5.971217 ], [ 79.870605, 6.768261 ], [ 79.694824, 8.206053 ], [ 80.145264, 9.828154 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bangladesh", "sov_a3": "BGD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bangladesh", "adm0_a3": "BGD", "geou_dif": 0, "geounit": "Bangladesh", "gu_a3": "BGD", "su_dif": 0, "subunit": "Bangladesh", "su_a3": "BGD", "brk_diff": 0, "name": "Bangladesh", "name_long": "Bangladesh", "brk_a3": "BGD", "brk_name": "Bangladesh", "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "name_sort": "Bangladesh", "mapcolor7": 3, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 156050883, "gdp_md_est": 224000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BD", "iso_a3": "BGD", "iso_n3": "050", "un_a3": "050", "wb_a2": "BD", "wb_a3": "BGD", "woe_id": -99, "adm0_a3_is": "BGD", "adm0_a3_us": "BGD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 22.350076 ], [ 90.439453, 22.136532 ], [ 90.269165, 21.841105 ], [ 89.846191, 22.039822 ], [ 89.769287, 21.943046 ], [ 89.697876, 21.861499 ], [ 89.478149, 21.943046 ], [ 89.417725, 21.968519 ], [ 89.027710, 22.060187 ], [ 88.972778, 22.350076 ], [ 90.439453, 22.350076 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.021606, 41.310824 ], [ 68.818359, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 67.060547, 41.162114 ], [ 67.060547, 41.310824 ], [ 69.021606, 41.310824 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 78.299561, 41.310824 ], [ 78.184204, 41.186922 ], [ 76.904297, 41.066928 ], [ 76.849365, 40.979898 ], [ 76.525269, 40.430224 ], [ 75.465088, 40.563895 ], [ 74.772949, 40.367474 ], [ 73.817139, 39.897094 ], [ 73.959961, 39.660685 ], [ 73.674316, 39.431950 ], [ 71.784668, 39.283294 ], [ 70.548706, 39.605688 ], [ 69.461060, 39.529467 ], [ 69.554443, 40.103286 ], [ 70.647583, 39.939225 ], [ 71.010132, 40.245992 ], [ 71.773682, 40.149488 ], [ 73.053589, 40.867834 ], [ 72.795410, 40.979898 ], [ 72.053833, 41.310824 ], [ 78.299561, 41.310824 ] ] ], [ [ [ 71.630859, 41.310824 ], [ 71.152954, 41.145570 ], [ 70.828857, 41.310824 ], [ 71.630859, 41.310824 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.963308 ], [ 70.455322, 40.497092 ], [ 70.598145, 40.220830 ], [ 71.010132, 40.245992 ], [ 70.647583, 39.939225 ], [ 69.554443, 40.103286 ], [ 69.461060, 39.529467 ], [ 70.548706, 39.605688 ], [ 71.784668, 39.283294 ], [ 73.674316, 39.431950 ], [ 73.927002, 38.509490 ], [ 74.256592, 38.608286 ], [ 74.860840, 38.380422 ], [ 74.827881, 37.991834 ], [ 74.976196, 37.422526 ], [ 73.943481, 37.422526 ], [ 73.256836, 37.496652 ], [ 72.636108, 37.050793 ], [ 72.191162, 36.949892 ], [ 71.839600, 36.738884 ], [ 71.444092, 37.068328 ], [ 71.537476, 37.909534 ], [ 71.235352, 37.957192 ], [ 71.345215, 38.259750 ], [ 70.801392, 38.487995 ], [ 70.372925, 38.138877 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.592472 ], [ 69.515991, 37.609880 ], [ 69.191895, 37.151561 ], [ 68.856812, 37.348326 ], [ 68.131714, 37.024484 ], [ 67.829590, 37.147182 ], [ 68.389893, 38.160476 ], [ 68.175659, 38.903858 ], [ 67.500000, 39.121537 ], [ 67.439575, 39.142842 ], [ 67.500000, 39.240763 ], [ 67.697754, 39.584524 ], [ 68.532715, 39.533703 ], [ 69.010620, 40.086477 ], [ 69.329224, 40.730608 ], [ 70.664062, 40.963308 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.157471, 37.134045 ], [ 75.893555, 36.668419 ], [ 76.190186, 35.902400 ], [ 77.832642, 35.496456 ], [ 76.871338, 34.655804 ], [ 75.756226, 34.506557 ], [ 74.240112, 34.750640 ], [ 73.745728, 34.320755 ], [ 74.102783, 33.445193 ], [ 74.448853, 32.768800 ], [ 75.256348, 32.273200 ], [ 74.404907, 31.695456 ], [ 74.415894, 30.982319 ], [ 73.449097, 29.978729 ], [ 72.822876, 28.964895 ], [ 71.773682, 27.916767 ], [ 70.614624, 27.989551 ], [ 69.510498, 26.941660 ], [ 70.164185, 26.495157 ], [ 70.279541, 25.725684 ], [ 70.839844, 25.219851 ], [ 71.043091, 24.357105 ], [ 68.840332, 24.362110 ], [ 68.175659, 23.694835 ], [ 67.500000, 23.926013 ], [ 67.439575, 23.946096 ], [ 67.142944, 24.666986 ], [ 67.060547, 24.751820 ], [ 67.060547, 31.306715 ], [ 67.681274, 31.306715 ], [ 67.791138, 31.583215 ], [ 68.554688, 31.714149 ], [ 68.922729, 31.620644 ], [ 69.312744, 31.905541 ], [ 69.257812, 32.505129 ], [ 69.686279, 33.109948 ], [ 70.323486, 33.362650 ], [ 69.927979, 34.020795 ], [ 70.878296, 33.988918 ], [ 71.152954, 34.352507 ], [ 71.114502, 34.737098 ], [ 71.608887, 35.155846 ], [ 71.493530, 35.652833 ], [ 71.257324, 36.075742 ], [ 71.845093, 36.514051 ], [ 72.916260, 36.721274 ], [ 74.064331, 36.840065 ], [ 74.575195, 37.024484 ], [ 75.157471, 37.134045 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Nepal", "sov_a3": "NPL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nepal", "adm0_a3": "NPL", "geou_dif": 0, "geounit": "Nepal", "gu_a3": "NPL", "su_dif": 0, "subunit": "Nepal", "su_a3": "NPL", "brk_diff": 0, "name": "Nepal", "name_long": "Nepal", "brk_a3": "NPL", "brk_name": "Nepal", "abbrev": "Nepal", "postal": "NP", "formal_en": "Nepal", "name_sort": "Nepal", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 28563377, "gdp_md_est": 31080, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NP", "iso_a3": "NPL", "iso_n3": "524", "un_a3": "524", "wb_a2": "NP", "wb_a3": "NPL", "woe_id": -99, "adm0_a3_is": "NPL", "adm0_a3_us": "NPL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.524048, 30.424993 ], [ 82.326050, 30.116622 ], [ 83.336792, 29.468297 ], [ 83.897095, 29.324720 ], [ 84.232178, 28.844674 ], [ 85.006714, 28.647210 ], [ 85.819702, 28.207609 ], [ 86.951294, 27.974998 ], [ 88.115845, 27.877928 ], [ 88.038940, 27.449790 ], [ 88.170776, 26.814266 ], [ 88.055420, 26.416470 ], [ 87.225952, 26.401711 ], [ 86.022949, 26.632729 ], [ 85.248413, 26.730893 ], [ 84.671631, 27.235095 ], [ 83.303833, 27.366889 ], [ 81.996460, 27.926474 ], [ 81.057129, 28.420391 ], [ 80.084839, 28.796546 ], [ 80.474854, 29.730992 ], [ 81.106567, 30.187870 ], [ 81.524048, 30.424993 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.832642, 35.496456 ], [ 78.909302, 34.325292 ], [ 78.810425, 33.509339 ], [ 79.205933, 32.994843 ], [ 79.172974, 32.486597 ], [ 78.453369, 32.620870 ], [ 78.733521, 31.517679 ], [ 79.716797, 30.883369 ], [ 81.106567, 30.187870 ], [ 80.474854, 29.730992 ], [ 80.084839, 28.796546 ], [ 81.057129, 28.420391 ], [ 81.996460, 27.926474 ], [ 83.303833, 27.366889 ], [ 84.671631, 27.235095 ], [ 85.248413, 26.730893 ], [ 86.022949, 26.632729 ], [ 87.225952, 26.401711 ], [ 88.055420, 26.416470 ], [ 88.170776, 26.814266 ], [ 88.038940, 27.449790 ], [ 88.115845, 27.877928 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.103144 ], [ 89.741821, 26.721080 ], [ 90.000000, 26.784847 ], [ 90.368042, 26.877981 ], [ 90.439453, 26.873081 ], [ 90.439453, 25.195000 ], [ 90.000000, 25.259601 ], [ 89.917603, 25.274504 ], [ 89.829712, 25.967922 ], [ 89.351807, 26.017298 ], [ 88.560791, 26.450902 ], [ 88.209229, 25.770214 ], [ 88.928833, 25.239727 ], [ 88.302612, 24.866503 ], [ 88.082886, 24.502145 ], [ 88.698120, 24.236947 ], [ 88.527832, 23.634460 ], [ 88.873901, 22.882501 ], [ 89.027710, 22.060187 ], [ 88.983765, 21.943046 ], [ 88.884888, 21.693161 ], [ 88.203735, 21.703369 ], [ 87.203979, 21.534847 ], [ 69.757690, 21.534847 ], [ 69.158936, 22.090730 ], [ 69.642334, 22.451649 ], [ 69.345703, 22.847071 ], [ 68.175659, 23.694835 ], [ 68.840332, 24.362110 ], [ 71.043091, 24.357105 ], [ 70.839844, 25.219851 ], [ 70.279541, 25.725684 ], [ 70.164185, 26.495157 ], [ 69.510498, 26.941660 ], [ 70.614624, 27.989551 ], [ 71.773682, 27.916767 ], [ 72.822876, 28.964895 ], [ 73.449097, 29.978729 ], [ 74.415894, 30.982319 ], [ 74.404907, 31.695456 ], [ 75.256348, 32.273200 ], [ 74.448853, 32.768800 ], [ 74.102783, 33.445193 ], [ 73.745728, 34.320755 ], [ 74.240112, 34.750640 ], [ 75.756226, 34.506557 ], [ 76.871338, 34.655804 ], [ 77.832642, 35.496456 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bhutan", "sov_a3": "BTN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bhutan", "adm0_a3": "BTN", "geou_dif": 0, "geounit": "Bhutan", "gu_a3": "BTN", "su_dif": 0, "subunit": "Bhutan", "su_a3": "BTN", "brk_diff": 0, "name": "Bhutan", "name_long": "Bhutan", "brk_a3": "BTN", "brk_name": "Bhutan", "abbrev": "Bhutan", "postal": "BT", "formal_en": "Kingdom of Bhutan", "name_sort": "Bhutan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 691141, "gdp_md_est": 3524, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BT", "iso_a3": "BTN", "iso_n3": "064", "un_a3": "064", "wb_a2": "BT", "wb_a3": "BTN", "woe_id": -99, "adm0_a3_is": "BTN", "adm0_a3_us": "BTN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.010986, 28.299544 ], [ 90.439453, 28.164033 ], [ 90.439453, 26.873081 ], [ 90.368042, 26.877981 ], [ 90.000000, 26.784847 ], [ 89.741821, 26.721080 ], [ 88.835449, 27.103144 ], [ 88.813477, 27.303452 ], [ 89.472656, 28.042895 ], [ 90.000000, 28.289870 ], [ 90.010986, 28.299544 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bangladesh", "sov_a3": "BGD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bangladesh", "adm0_a3": "BGD", "geou_dif": 0, "geounit": "Bangladesh", "gu_a3": "BGD", "su_dif": 0, "subunit": "Bangladesh", "su_a3": "BGD", "brk_diff": 0, "name": "Bangladesh", "name_long": "Bangladesh", "brk_a3": "BGD", "brk_name": "Bangladesh", "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "name_sort": "Bangladesh", "mapcolor7": 3, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 156050883, "gdp_md_est": 224000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BD", "iso_a3": "BGD", "iso_n3": "050", "un_a3": "050", "wb_a2": "BD", "wb_a3": "BGD", "woe_id": -99, "adm0_a3_is": "BGD", "adm0_a3_us": "BGD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.560791, 26.450902 ], [ 89.351807, 26.017298 ], [ 89.829712, 25.967922 ], [ 89.917603, 25.274504 ], [ 90.000000, 25.259601 ], [ 90.439453, 25.195000 ], [ 90.439453, 22.136532 ], [ 90.269165, 21.841105 ], [ 90.000000, 21.968519 ], [ 89.846191, 22.039822 ], [ 89.769287, 21.943046 ], [ 89.697876, 21.861499 ], [ 89.478149, 21.943046 ], [ 89.417725, 21.968519 ], [ 89.027710, 22.060187 ], [ 88.873901, 22.882501 ], [ 88.527832, 23.634460 ], [ 88.698120, 24.236947 ], [ 88.082886, 24.502145 ], [ 88.302612, 24.866503 ], [ 88.928833, 25.239727 ], [ 88.209229, 25.770214 ], [ 88.560791, 26.450902 ] ] ] } } +, +{ "type": "Feature", "properties": { "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": "Polygon", "coordinates": [ [ [ 90.439453, 41.310824 ], [ 90.439453, 28.164033 ], [ 90.010986, 28.299544 ], [ 90.000000, 28.289870 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.115845, 27.877928 ], [ 86.951294, 27.974998 ], [ 85.819702, 28.207609 ], [ 85.006714, 28.647210 ], [ 84.232178, 28.844674 ], [ 83.897095, 29.324720 ], [ 83.336792, 29.468297 ], [ 82.326050, 30.116622 ], [ 81.524048, 30.424993 ], [ 81.106567, 30.187870 ], [ 79.716797, 30.883369 ], [ 78.733521, 31.517679 ], [ 78.453369, 32.620870 ], [ 79.172974, 32.486597 ], [ 79.205933, 32.994843 ], [ 78.810425, 33.509339 ], [ 78.909302, 34.325292 ], [ 77.832642, 35.496456 ], [ 76.190186, 35.902400 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.976196, 37.422526 ], [ 74.827881, 37.991834 ], [ 74.860840, 38.380422 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.509490 ], [ 73.674316, 39.431950 ], [ 73.959961, 39.660685 ], [ 73.817139, 39.897094 ], [ 74.772949, 40.367474 ], [ 75.465088, 40.563895 ], [ 76.525269, 40.430224 ], [ 76.849365, 40.979898 ], [ 76.904297, 41.066928 ], [ 78.184204, 41.186922 ], [ 78.299561, 41.310824 ], [ 90.439453, 41.310824 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "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": "Polygon", "coordinates": [ [ [ 90.439453, 56.022948 ], [ 90.439453, 50.212064 ], [ 90.000000, 50.014799 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 67.500000, 54.873446 ], [ 67.060547, 54.810183 ], [ 67.060547, 56.022948 ], [ 90.439453, 56.022948 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.065552, 55.385352 ], [ 70.861816, 55.172594 ], [ 71.174927, 54.133478 ], [ 72.224121, 54.377358 ], [ 73.504028, 54.036812 ], [ 73.421631, 53.491314 ], [ 74.382935, 53.550099 ], [ 76.887817, 54.492377 ], [ 76.519775, 54.178512 ], [ 77.799683, 53.406257 ], [ 80.035400, 50.864911 ], [ 80.568237, 51.388923 ], [ 81.941528, 50.812877 ], [ 83.380737, 51.072468 ], [ 83.930054, 50.892639 ], [ 84.413452, 50.313900 ], [ 85.111084, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.824951, 49.827353 ], [ 87.357788, 49.217597 ], [ 86.594238, 48.549342 ], [ 85.764771, 48.458352 ], [ 85.715332, 47.454094 ], [ 85.160522, 47.002734 ], [ 83.177490, 47.331377 ], [ 82.457886, 45.540984 ], [ 81.947021, 45.317392 ], [ 79.963989, 44.918139 ], [ 80.864868, 43.181147 ], [ 80.178223, 42.920229 ], [ 80.255127, 42.350425 ], [ 79.639893, 42.500453 ], [ 79.140015, 42.859860 ], [ 77.656860, 42.964463 ], [ 75.997925, 42.988576 ], [ 75.635376, 42.879990 ], [ 74.212646, 43.301196 ], [ 73.641357, 43.092961 ], [ 73.487549, 42.504503 ], [ 71.839600, 42.847779 ], [ 71.185913, 42.706660 ], [ 70.960693, 42.269179 ], [ 70.383911, 42.081917 ], [ 69.065552, 41.385052 ], [ 68.818359, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 67.500000, 41.149706 ], [ 67.060547, 41.162114 ], [ 67.060547, 54.810183 ], [ 67.500000, 54.873446 ], [ 68.164673, 54.971308 ], [ 69.065552, 55.385352 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.212646, 43.301196 ], [ 75.635376, 42.879990 ], [ 75.997925, 42.988576 ], [ 77.656860, 42.964463 ], [ 79.140015, 42.859860 ], [ 79.639893, 42.500453 ], [ 80.255127, 42.350425 ], [ 80.117798, 42.126747 ], [ 78.541260, 41.582580 ], [ 78.184204, 41.186922 ], [ 76.904297, 41.066928 ], [ 76.849365, 40.979898 ], [ 76.651611, 40.647304 ], [ 72.663574, 40.647304 ], [ 73.053589, 40.867834 ], [ 72.795410, 40.979898 ], [ 71.867065, 41.393294 ], [ 71.152954, 41.145570 ], [ 70.416870, 41.520917 ], [ 71.257324, 42.171546 ], [ 70.960693, 42.269179 ], [ 71.185913, 42.706660 ], [ 71.839600, 42.847779 ], [ 73.487549, 42.504503 ], [ 73.641357, 43.092961 ], [ 74.212646, 43.301196 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.963308 ], [ 70.521240, 40.647304 ], [ 69.285278, 40.647304 ], [ 69.329224, 40.730608 ], [ 70.664062, 40.963308 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 50.212064 ], [ 90.439453, 47.509780 ], [ 90.280151, 47.694974 ], [ 90.000000, 47.768868 ], [ 88.851929, 48.070738 ], [ 88.011475, 48.600225 ], [ 87.747803, 49.300054 ], [ 88.802490, 49.471694 ], [ 90.000000, 50.014799 ], [ 90.439453, 50.212064 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 87.747803, 49.300054 ], [ 88.011475, 48.600225 ], [ 88.851929, 48.070738 ], [ 90.000000, 47.768868 ], [ 90.280151, 47.694974 ], [ 90.439453, 47.509780 ], [ 90.439453, 40.647304 ], [ 76.651611, 40.647304 ], [ 76.849365, 40.979898 ], [ 76.904297, 41.066928 ], [ 78.184204, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.117798, 42.126747 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.920229 ], [ 80.864868, 43.181147 ], [ 79.963989, 44.918139 ], [ 81.947021, 45.317392 ], [ 82.457886, 45.540984 ], [ 83.177490, 47.331377 ], [ 85.160522, 47.002734 ], [ 85.715332, 47.454094 ], [ 85.764771, 48.458352 ], [ 86.594238, 48.549342 ], [ 87.357788, 49.217597 ], [ 87.747803, 49.300054 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 90.439453, 66.687784 ], [ 90.439453, 55.528631 ], [ 67.060547, 55.528631 ], [ 67.060547, 66.687784 ], [ 71.773682, 66.687784 ], [ 71.537476, 66.513260 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.532956 ], [ 73.482056, 66.687784 ], [ 90.439453, 66.687784 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "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": [ [ [ [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.537476, 66.513260 ], [ 71.301270, 66.337505 ], [ 67.060547, 66.337505 ], [ 67.060547, 68.558376 ], [ 67.500000, 68.417373 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 67.500000, 69.409311 ], [ 67.060547, 69.444056 ], [ 67.060547, 69.643715 ], [ 67.258301, 69.930300 ], [ 67.060547, 70.224170 ], [ 67.060547, 71.212537 ], [ 67.500000, 71.430678 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ] ] ], [ [ [ 90.439453, 66.337505 ], [ 72.603149, 66.337505 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.693115, 74.019543 ], [ 86.506348, 74.140084 ], [ 90.439453, 74.140084 ], [ 90.439453, 66.337505 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 90.439453, 75.650431 ], [ 90.439453, 73.898111 ], [ 86.176758, 73.898111 ], [ 86.819458, 73.937674 ], [ 86.693115, 74.019543 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.000000, 75.575362 ], [ 90.258179, 75.640898 ], [ 90.439453, 75.650431 ] ] ], [ [ [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 67.500000, 76.140327 ], [ 67.060547, 76.079668 ], [ 67.060547, 76.867052 ], [ 67.500000, 76.896974 ], [ 68.153687, 76.940488 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 112.939453, -82.620052 ], [ 112.939453, -85.088894 ], [ 89.560547, -85.088894 ], [ 89.560547, -82.620052 ], [ 112.939453, -82.620052 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 112.939453, -79.088462 ], [ 112.939453, -82.732092 ], [ 89.560547, -82.732092 ], [ 89.560547, -79.088462 ], [ 112.939453, -79.088462 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 112.939453, -73.898111 ], [ 112.939453, -79.253586 ], [ 89.560547, -79.253586 ], [ 89.560547, -73.898111 ], [ 112.939453, -73.898111 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 112.939453, -66.337505 ], [ 112.939453, -74.140084 ], [ 89.560547, -74.140084 ], [ 89.560547, -67.123020 ], [ 89.670410, -67.148632 ], [ 90.000000, -67.176348 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.502686, -66.337505 ], [ 104.924927, -66.337505 ], [ 105.292969, -66.513260 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 110.791626, -66.513260 ], [ 111.055298, -66.423340 ], [ 111.264038, -66.337505 ], [ 112.939453, -66.337505 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "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": [ [ [ [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 105.292969, -66.513260 ], [ 105.655518, -66.687784 ], [ 100.728149, -66.687784 ], [ 100.892944, -66.581034 ], [ 101.063232, -66.513260 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ] ] ], [ [ [ 112.939453, -66.687784 ], [ 110.269775, -66.687784 ], [ 110.791626, -66.513260 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.500000, -66.104945 ], [ 112.857056, -66.091591 ], [ 112.939453, -66.069318 ], [ 112.939453, -66.687784 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.051025, -5.894725 ], [ 107.259521, -5.954827 ], [ 108.067017, -6.342597 ], [ 108.484497, -6.419025 ], [ 108.621826, -6.773716 ], [ 110.538940, -6.877347 ], [ 110.758667, -6.462693 ], [ 112.500000, -6.915521 ], [ 112.609863, -6.942786 ], [ 112.939453, -7.520427 ], [ 112.939453, -8.363693 ], [ 112.500000, -8.369127 ], [ 111.516724, -8.298470 ], [ 110.582886, -8.119053 ], [ 109.423828, -7.738208 ], [ 108.693237, -7.640220 ], [ 108.275757, -7.765423 ], [ 106.452026, -7.351571 ], [ 106.276245, -6.920974 ], [ 105.364380, -6.850078 ], [ 106.051025, -5.894725 ] ] ], [ [ [ 103.276978, 0.439449 ], [ 103.837280, 0.109863 ], [ 103.782349, 0.000000 ], [ 103.436279, -0.708600 ], [ 104.007568, -1.054628 ], [ 104.364624, -1.082089 ], [ 104.534912, -1.779499 ], [ 104.886475, -2.339438 ], [ 105.617065, -2.427252 ], [ 106.105957, -3.058239 ], [ 105.853271, -4.302591 ], [ 105.814819, -5.851010 ], [ 104.705200, -5.872868 ], [ 103.864746, -5.036227 ], [ 102.579346, -4.214943 ], [ 102.150879, -3.612107 ], [ 101.398315, -2.794911 ], [ 100.898438, -2.048514 ], [ 100.140381, -0.648180 ], [ 99.453735, 0.000000 ], [ 99.261475, 0.186767 ], [ 99.173584, 0.439449 ], [ 103.276978, 0.439449 ] ] ], [ [ [ 112.939453, 0.439449 ], [ 112.939453, -3.211818 ], [ 112.500000, -3.343438 ], [ 112.066040, -3.475040 ], [ 111.697998, -2.992413 ], [ 111.044312, -3.047268 ], [ 110.220337, -2.932069 ], [ 110.066528, -1.592812 ], [ 109.566650, -1.312751 ], [ 109.088745, -0.455928 ], [ 109.017334, 0.000000 ], [ 108.951416, 0.417477 ], [ 108.951416, 0.439449 ], [ 112.939453, 0.439449 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 93.147583, 22.350076 ], [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.565308, 22.350076 ], [ 93.147583, 22.350076 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bangladesh", "sov_a3": "BGD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bangladesh", "adm0_a3": "BGD", "geou_dif": 0, "geounit": "Bangladesh", "gu_a3": "BGD", "su_dif": 0, "subunit": "Bangladesh", "su_a3": "BGD", "brk_diff": 0, "name": "Bangladesh", "name_long": "Bangladesh", "brk_a3": "BGD", "brk_name": "Bangladesh", "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "name_sort": "Bangladesh", "mapcolor7": 3, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 156050883, "gdp_md_est": 224000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BD", "iso_a3": "BGD", "iso_n3": "050", "un_a3": "050", "wb_a2": "BD", "wb_a3": "BGD", "woe_id": -99, "adm0_a3_is": "BGD", "adm0_a3_us": "BGD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 92.565308, 22.350076 ], [ 92.669678, 22.044913 ], [ 92.669678, 21.943046 ], [ 92.647705, 21.325198 ], [ 92.301636, 21.478629 ], [ 92.367554, 20.673905 ], [ 92.081909, 21.197216 ], [ 92.021484, 21.703369 ], [ 91.928101, 21.943046 ], [ 91.834717, 22.187405 ], [ 91.713867, 22.350076 ], [ 92.565308, 22.350076 ] ] ], [ [ [ 90.560303, 22.350076 ], [ 90.329590, 21.943046 ], [ 90.269165, 21.841105 ], [ 90.043945, 21.943046 ], [ 89.846191, 22.039822 ], [ 89.697876, 21.861499 ], [ 89.560547, 21.912471 ], [ 89.560547, 22.350076 ], [ 90.560303, 22.350076 ] ] ] ] } } +, +{ "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": [ [ [ [ 110.209351, 20.102365 ], [ 110.786133, 20.081729 ], [ 111.005859, 19.699486 ], [ 110.566406, 19.259294 ], [ 110.335693, 18.682675 ], [ 109.473267, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.621826, 19.368159 ], [ 109.116211, 19.823558 ], [ 110.209351, 20.102365 ] ] ], [ [ [ 112.939453, 22.350076 ], [ 112.939453, 21.948141 ], [ 112.500000, 21.790107 ], [ 111.840820, 21.555284 ], [ 110.780640, 21.401934 ], [ 110.440063, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.627075, 21.012727 ], [ 109.863281, 21.396819 ], [ 108.517456, 21.718680 ], [ 108.045044, 21.555284 ], [ 107.039795, 21.815608 ], [ 106.885986, 21.943046 ], [ 106.561890, 22.223005 ], [ 106.600342, 22.350076 ], [ 112.939453, 22.350076 ] ] ], [ [ [ 101.760864, 22.350076 ], [ 101.651001, 22.319589 ], [ 101.700439, 21.943046 ], [ 101.799316, 21.176729 ], [ 101.266479, 21.202337 ], [ 101.178589, 21.437730 ], [ 101.145630, 21.851302 ], [ 100.415039, 21.560393 ], [ 99.981079, 21.744194 ], [ 99.585571, 21.943046 ], [ 99.239502, 22.121266 ], [ 99.321899, 22.350076 ], [ 101.760864, 22.350076 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.321899, 22.350076 ], [ 99.239502, 22.121266 ], [ 99.585571, 21.943046 ], [ 99.981079, 21.744194 ], [ 100.415039, 21.560393 ], [ 101.145630, 21.851302 ], [ 101.178589, 21.437730 ], [ 100.327148, 20.786931 ], [ 100.112915, 20.421865 ], [ 99.541626, 20.190035 ], [ 98.959351, 19.756364 ], [ 98.250732, 19.709829 ], [ 97.794800, 18.630630 ], [ 97.371826, 18.448347 ], [ 97.855225, 17.570721 ], [ 98.492432, 16.841348 ], [ 98.898926, 16.183024 ], [ 98.536377, 15.310678 ], [ 98.190308, 15.125159 ], [ 98.426514, 14.626109 ], [ 99.096680, 13.832746 ], [ 99.206543, 13.272026 ], [ 99.195557, 12.806445 ], [ 99.585571, 11.894228 ], [ 99.036255, 10.962764 ], [ 98.552856, 9.936388 ], [ 98.453979, 10.676803 ], [ 98.761597, 11.442339 ], [ 98.426514, 12.033948 ], [ 98.508911, 13.127629 ], [ 98.102417, 13.640649 ], [ 97.772827, 14.838612 ], [ 97.597046, 16.103876 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.430816 ], [ 95.366821, 15.718239 ], [ 94.806519, 15.808110 ], [ 94.185791, 16.040534 ], [ 94.531860, 17.282464 ], [ 94.323120, 18.213698 ], [ 93.537598, 19.368159 ], [ 93.658447, 19.730513 ], [ 93.076172, 19.859727 ], [ 92.367554, 20.673905 ], [ 92.301636, 21.478629 ], [ 92.647705, 21.325198 ], [ 92.669678, 21.943046 ], [ 92.669678, 22.044913 ], [ 93.164062, 22.278931 ], [ 93.147583, 22.350076 ], [ 99.321899, 22.350076 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Laos", "sov_a3": "LAO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Laos", "adm0_a3": "LAO", "geou_dif": 0, "geounit": "Laos", "gu_a3": "LAO", "su_dif": 0, "subunit": "Laos", "su_a3": "LAO", "brk_diff": 0, "name": "Lao PDR", "name_long": "Lao PDR", "brk_a3": "LAO", "brk_name": "Laos", "abbrev": "Laos", "postal": "LA", "formal_en": "Lao People's Democratic Republic", "name_sort": "Lao PDR", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 6834942, "gdp_md_est": 13980, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LA", "iso_a3": "LAO", "iso_n3": "418", "un_a3": "418", "wb_a2": "LA", "wb_a3": "LAO", "woe_id": -99, "adm0_a3_is": "LAO", "adm0_a3_us": "LAO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.255249, 22.350076 ], [ 102.551880, 21.943046 ], [ 102.749634, 21.677848 ], [ 103.200073, 20.771523 ], [ 104.430542, 20.761250 ], [ 104.820557, 19.890723 ], [ 104.183350, 19.627066 ], [ 103.892212, 19.269665 ], [ 105.089722, 18.667063 ], [ 105.924683, 17.486911 ], [ 106.550903, 16.604610 ], [ 107.308960, 15.913791 ], [ 107.561646, 15.204687 ], [ 107.380371, 14.205814 ], [ 106.495972, 14.572951 ], [ 106.040039, 13.886079 ], [ 105.216064, 14.275030 ], [ 105.540161, 14.727073 ], [ 105.584106, 15.575419 ], [ 104.776611, 16.446622 ], [ 104.716187, 17.429270 ], [ 103.952637, 18.245003 ], [ 103.200073, 18.312811 ], [ 102.996826, 17.963058 ], [ 102.409058, 17.936929 ], [ 102.112427, 18.109308 ], [ 101.057739, 17.513106 ], [ 101.035767, 18.411867 ], [ 101.277466, 19.466592 ], [ 100.601807, 19.513198 ], [ 100.546875, 20.112682 ], [ 100.112915, 20.421865 ], [ 100.327148, 20.786931 ], [ 101.178589, 21.437730 ], [ 101.266479, 21.202337 ], [ 101.799316, 21.176729 ], [ 101.700439, 21.943046 ], [ 101.651001, 22.319589 ], [ 101.760864, 22.350076 ], [ 102.255249, 22.350076 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Vietnam", "sov_a3": "VNM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vietnam", "adm0_a3": "VNM", "geou_dif": 0, "geounit": "Vietnam", "gu_a3": "VNM", "su_dif": 0, "subunit": "Vietnam", "su_a3": "VNM", "brk_diff": 0, "name": "Vietnam", "name_long": "Vietnam", "brk_a3": "VNM", "brk_name": "Vietnam", "abbrev": "Viet.", "postal": "VN", "formal_en": "Socialist Republic of Vietnam", "name_sort": "Vietnam", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 86967524, "gdp_md_est": 241700, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VN", "iso_a3": "VNM", "iso_n3": "704", "un_a3": "704", "wb_a2": "VN", "wb_a3": "VNM", "woe_id": -99, "adm0_a3_is": "VNM", "adm0_a3_us": "VNM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.600342, 22.350076 ], [ 106.561890, 22.223005 ], [ 106.885986, 21.943046 ], [ 107.039795, 21.815608 ], [ 108.045044, 21.555284 ], [ 106.710205, 20.699600 ], [ 105.880737, 19.756364 ], [ 105.661011, 19.062118 ], [ 107.358398, 16.699340 ], [ 108.264771, 16.082764 ], [ 108.874512, 15.278886 ], [ 109.330444, 13.427024 ], [ 109.198608, 11.668376 ], [ 108.363647, 11.011297 ], [ 107.215576, 10.368958 ], [ 106.402588, 9.535749 ], [ 105.155640, 8.602747 ], [ 104.793091, 9.243093 ], [ 105.073242, 9.920155 ], [ 104.331665, 10.487812 ], [ 105.199585, 10.892648 ], [ 106.248779, 10.962764 ], [ 105.809326, 11.571525 ], [ 107.490234, 12.340002 ], [ 107.611084, 13.539201 ], [ 107.380371, 14.205814 ], [ 107.561646, 15.204687 ], [ 107.308960, 15.913791 ], [ 106.550903, 16.604610 ], [ 105.924683, 17.486911 ], [ 105.089722, 18.667063 ], [ 103.892212, 19.269665 ], [ 104.183350, 19.627066 ], [ 104.820557, 19.890723 ], [ 104.430542, 20.761250 ], [ 103.200073, 20.771523 ], [ 102.749634, 21.677848 ], [ 102.551880, 21.943046 ], [ 102.255249, 22.350076 ], [ 106.600342, 22.350076 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.939453, 3.096636 ], [ 112.939453, 1.477497 ], [ 112.857056, 1.499463 ], [ 112.500000, 1.433566 ], [ 112.379150, 1.411600 ], [ 111.796875, 0.906334 ], [ 111.154175, 0.977736 ], [ 110.511475, 0.774513 ], [ 109.824829, 1.340210 ], [ 109.660034, 2.010086 ], [ 110.396118, 1.664195 ], [ 111.165161, 1.850874 ], [ 111.368408, 2.701635 ], [ 111.796875, 2.888180 ], [ 112.500000, 3.014356 ], [ 112.939453, 3.096636 ] ] ], [ [ [ 100.255737, 6.648239 ], [ 101.074219, 6.206090 ], [ 101.151123, 5.692516 ], [ 101.810303, 5.812757 ], [ 102.139893, 6.222473 ], [ 102.370605, 6.129631 ], [ 102.958374, 5.528511 ], [ 103.375854, 4.855628 ], [ 103.436279, 4.182073 ], [ 103.331909, 3.727227 ], [ 103.425293, 3.387307 ], [ 103.502197, 2.794911 ], [ 103.853760, 2.520549 ], [ 104.243774, 1.631249 ], [ 104.227295, 1.296276 ], [ 103.518677, 1.230374 ], [ 102.568359, 1.971657 ], [ 101.387329, 2.761991 ], [ 101.271973, 3.272146 ], [ 100.695190, 3.940981 ], [ 100.552368, 4.768047 ], [ 100.195312, 5.315236 ], [ 100.305176, 6.042236 ], [ 100.085449, 6.468151 ], [ 100.255737, 6.648239 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 109.660034, 2.010086 ], [ 109.824829, 1.340210 ], [ 110.511475, 0.774513 ], [ 111.154175, 0.977736 ], [ 111.796875, 0.906334 ], [ 112.379150, 1.411600 ], [ 112.500000, 1.433566 ], [ 112.857056, 1.499463 ], [ 112.939453, 1.477497 ], [ 112.939453, -0.439449 ], [ 109.083252, -0.439449 ], [ 109.017334, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.066772, 1.345701 ], [ 109.660034, 2.010086 ] ] ], [ [ [ 95.289917, 5.484768 ], [ 95.932617, 5.441022 ], [ 97.481689, 5.249598 ], [ 98.366089, 4.269724 ], [ 99.140625, 3.595660 ], [ 99.689941, 3.178910 ], [ 100.640259, 2.103409 ], [ 101.656494, 2.086941 ], [ 102.496948, 1.400617 ], [ 103.073730, 0.565787 ], [ 103.837280, 0.109863 ], [ 103.782349, 0.000000 ], [ 103.568115, -0.439449 ], [ 99.915161, -0.439449 ], [ 99.453735, 0.000000 ], [ 99.261475, 0.186767 ], [ 98.964844, 1.043643 ], [ 98.596802, 1.828913 ], [ 97.695923, 2.454693 ], [ 97.174072, 3.310534 ], [ 96.421509, 3.869735 ], [ 95.377808, 4.976033 ], [ 95.289917, 5.484768 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.113892, 29.453948 ], [ 96.586304, 28.835050 ], [ 96.245728, 28.415560 ], [ 97.322388, 28.265682 ], [ 97.399292, 27.882784 ], [ 97.047729, 27.702984 ], [ 97.130127, 27.088473 ], [ 96.416016, 27.269279 ], [ 95.119629, 26.573790 ], [ 95.152588, 26.002487 ], [ 94.597778, 25.165173 ], [ 94.548340, 24.676970 ], [ 94.103394, 23.855698 ], [ 93.323364, 24.081574 ], [ 93.284912, 23.044353 ], [ 93.059692, 22.705255 ], [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.142334, 23.629427 ], [ 91.867676, 23.624395 ], [ 91.702881, 22.988738 ], [ 91.153564, 23.503552 ], [ 91.466675, 24.076559 ], [ 91.911621, 24.131715 ], [ 92.373047, 24.981079 ], [ 91.796265, 25.150257 ], [ 90.867920, 25.135339 ], [ 90.000000, 25.259601 ], [ 89.917603, 25.274504 ], [ 89.829712, 25.967922 ], [ 89.560547, 25.997550 ], [ 89.560547, 26.799558 ], [ 89.741821, 26.721080 ], [ 90.000000, 26.784847 ], [ 90.368042, 26.877981 ], [ 91.213989, 26.809364 ], [ 92.032471, 26.838776 ], [ 92.098389, 27.454665 ], [ 91.691895, 27.775912 ], [ 92.499390, 27.897349 ], [ 93.411255, 28.642389 ], [ 94.564819, 29.281608 ], [ 95.399780, 29.032158 ], [ 96.113892, 29.453948 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bhutan", "sov_a3": "BTN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bhutan", "adm0_a3": "BTN", "geou_dif": 0, "geounit": "Bhutan", "gu_a3": "BTN", "su_dif": 0, "subunit": "Bhutan", "su_a3": "BTN", "brk_diff": 0, "name": "Bhutan", "name_long": "Bhutan", "brk_a3": "BTN", "brk_name": "Bhutan", "abbrev": "Bhutan", "postal": "BT", "formal_en": "Kingdom of Bhutan", "name_sort": "Bhutan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 691141, "gdp_md_est": 3524, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BT", "iso_a3": "BTN", "iso_n3": "064", "un_a3": "064", "wb_a2": "BT", "wb_a3": "BTN", "woe_id": -99, "adm0_a3_is": "BTN", "adm0_a3_us": "BTN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.010986, 28.299544 ], [ 90.725098, 28.067133 ], [ 91.257935, 28.042895 ], [ 91.691895, 27.775912 ], [ 92.098389, 27.454665 ], [ 92.032471, 26.838776 ], [ 91.213989, 26.809364 ], [ 90.368042, 26.877981 ], [ 90.000000, 26.784847 ], [ 89.741821, 26.721080 ], [ 89.560547, 26.799558 ], [ 89.560547, 28.086520 ], [ 90.000000, 28.289870 ], [ 90.010986, 28.299544 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bangladesh", "sov_a3": "BGD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bangladesh", "adm0_a3": "BGD", "geou_dif": 0, "geounit": "Bangladesh", "gu_a3": "BGD", "su_dif": 0, "subunit": "Bangladesh", "su_a3": "BGD", "brk_diff": 0, "name": "Bangladesh", "name_long": "Bangladesh", "brk_a3": "BGD", "brk_name": "Bangladesh", "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "name_sort": "Bangladesh", "mapcolor7": 3, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 156050883, "gdp_md_est": 224000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BD", "iso_a3": "BGD", "iso_n3": "050", "un_a3": "050", "wb_a2": "BD", "wb_a3": "BGD", "woe_id": -99, "adm0_a3_is": "BGD", "adm0_a3_us": "BGD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.560547, 25.997550 ], [ 89.829712, 25.967922 ], [ 89.917603, 25.274504 ], [ 90.000000, 25.259601 ], [ 90.867920, 25.135339 ], [ 91.796265, 25.150257 ], [ 92.373047, 24.981079 ], [ 91.911621, 24.131715 ], [ 91.466675, 24.076559 ], [ 91.153564, 23.503552 ], [ 91.702881, 22.988738 ], [ 91.867676, 23.624395 ], [ 92.142334, 23.629427 ], [ 92.669678, 22.044913 ], [ 92.669678, 21.943046 ], [ 92.653198, 21.534847 ], [ 92.043457, 21.534847 ], [ 92.021484, 21.703369 ], [ 91.928101, 21.943046 ], [ 91.834717, 22.187405 ], [ 91.411743, 22.766051 ], [ 90.494385, 22.806567 ], [ 90.582275, 22.395793 ], [ 90.329590, 21.943046 ], [ 90.269165, 21.841105 ], [ 90.043945, 21.943046 ], [ 90.000000, 21.968519 ], [ 89.846191, 22.039822 ], [ 89.697876, 21.861499 ], [ 89.560547, 21.912471 ], [ 89.560547, 25.997550 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 112.939453, 41.310824 ], [ 112.939453, 21.948141 ], [ 111.840820, 21.555284 ], [ 111.730957, 21.534847 ], [ 109.275513, 21.534847 ], [ 108.517456, 21.718680 ], [ 108.045044, 21.555284 ], [ 107.039795, 21.815608 ], [ 106.885986, 21.943046 ], [ 106.561890, 22.223005 ], [ 106.721191, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.474487, 22.821757 ], [ 103.502197, 22.705255 ], [ 102.705688, 22.710323 ], [ 102.167358, 22.466878 ], [ 101.651001, 22.319589 ], [ 101.700439, 21.943046 ], [ 101.755371, 21.534847 ], [ 101.167603, 21.534847 ], [ 101.145630, 21.851302 ], [ 100.415039, 21.560393 ], [ 99.981079, 21.744194 ], [ 99.585571, 21.943046 ], [ 99.239502, 22.121266 ], [ 99.530640, 22.953335 ], [ 98.893433, 23.145411 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.900905 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.923467 ], [ 98.706665, 26.745610 ], [ 98.679199, 27.513143 ], [ 98.245239, 27.751608 ], [ 97.910156, 28.338230 ], [ 97.322388, 28.265682 ], [ 96.245728, 28.415560 ], [ 96.586304, 28.835050 ], [ 96.113892, 29.453948 ], [ 95.399780, 29.032158 ], [ 94.564819, 29.281608 ], [ 93.411255, 28.642389 ], [ 92.499390, 27.897349 ], [ 91.691895, 27.775912 ], [ 91.257935, 28.042895 ], [ 90.725098, 28.067133 ], [ 90.010986, 28.299544 ], [ 90.000000, 28.289870 ], [ 89.560547, 28.086520 ], [ 89.560547, 41.310824 ], [ 112.939453, 41.310824 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.910156, 28.338230 ], [ 98.245239, 27.751608 ], [ 98.679199, 27.513143 ], [ 98.706665, 26.745610 ], [ 98.668213, 25.923467 ], [ 97.723389, 25.085599 ], [ 97.602539, 23.900905 ], [ 98.657227, 24.066528 ], [ 98.893433, 23.145411 ], [ 99.530640, 22.953335 ], [ 99.239502, 22.121266 ], [ 99.585571, 21.943046 ], [ 99.981079, 21.744194 ], [ 100.415039, 21.560393 ], [ 101.145630, 21.851302 ], [ 101.167603, 21.534847 ], [ 92.653198, 21.534847 ], [ 92.669678, 21.943046 ], [ 92.669678, 22.044913 ], [ 93.164062, 22.278931 ], [ 93.059692, 22.705255 ], [ 93.284912, 23.044353 ], [ 93.323364, 24.081574 ], [ 94.103394, 23.855698 ], [ 94.548340, 24.676970 ], [ 94.597778, 25.165173 ], [ 95.152588, 26.002487 ], [ 95.119629, 26.573790 ], [ 96.416016, 27.269279 ], [ 97.130127, 27.088473 ], [ 97.047729, 27.702984 ], [ 97.399292, 27.882784 ], [ 97.322388, 28.265682 ], [ 97.910156, 28.338230 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Laos", "sov_a3": "LAO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Laos", "adm0_a3": "LAO", "geou_dif": 0, "geounit": "Laos", "gu_a3": "LAO", "su_dif": 0, "subunit": "Laos", "su_a3": "LAO", "brk_diff": 0, "name": "Lao PDR", "name_long": "Lao PDR", "brk_a3": "LAO", "brk_name": "Laos", "abbrev": "Laos", "postal": "LA", "formal_en": "Lao People's Democratic Republic", "name_sort": "Lao PDR", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 6834942, "gdp_md_est": 13980, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LA", "iso_a3": "LAO", "iso_n3": "418", "un_a3": "418", "wb_a2": "LA", "wb_a3": "LAO", "woe_id": -99, "adm0_a3_is": "LAO", "adm0_a3_us": "LAO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.167358, 22.466878 ], [ 102.551880, 21.943046 ], [ 102.749634, 21.677848 ], [ 102.821045, 21.534847 ], [ 101.755371, 21.534847 ], [ 101.700439, 21.943046 ], [ 101.651001, 22.319589 ], [ 102.167358, 22.466878 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Vietnam", "sov_a3": "VNM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vietnam", "adm0_a3": "VNM", "geou_dif": 0, "geounit": "Vietnam", "gu_a3": "VNM", "su_dif": 0, "subunit": "Vietnam", "su_a3": "VNM", "brk_diff": 0, "name": "Vietnam", "name_long": "Vietnam", "brk_a3": "VNM", "brk_name": "Vietnam", "abbrev": "Viet.", "postal": "VN", "formal_en": "Socialist Republic of Vietnam", "name_sort": "Vietnam", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 86967524, "gdp_md_est": 241700, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VN", "iso_a3": "VNM", "iso_n3": "704", "un_a3": "704", "wb_a2": "VN", "wb_a3": "VNM", "woe_id": -99, "adm0_a3_is": "VNM", "adm0_a3_us": "VNM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.325928, 23.352343 ], [ 105.809326, 22.978624 ], [ 106.721191, 22.796439 ], [ 106.561890, 22.223005 ], [ 106.885986, 21.943046 ], [ 107.039795, 21.815608 ], [ 108.045044, 21.555284 ], [ 108.017578, 21.534847 ], [ 102.821045, 21.534847 ], [ 102.749634, 21.677848 ], [ 102.551880, 21.943046 ], [ 102.167358, 22.466878 ], [ 102.705688, 22.710323 ], [ 103.502197, 22.705255 ], [ 104.474487, 22.821757 ], [ 105.325928, 23.352343 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 112.939453, 56.022948 ], [ 112.939453, 49.564415 ], [ 112.895508, 49.546598 ], [ 112.500000, 49.496675 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 90.000000, 50.014799 ], [ 89.560547, 49.813176 ], [ 89.560547, 56.022948 ], [ 112.939453, 56.022948 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.860474, 52.049112 ], [ 99.981079, 51.635067 ], [ 100.887451, 51.518998 ], [ 102.062988, 51.261915 ], [ 102.255249, 50.513427 ], [ 103.672485, 50.092393 ], [ 104.617310, 50.278809 ], [ 105.886230, 50.408518 ], [ 106.885986, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.473511, 49.285723 ], [ 109.401855, 49.296472 ], [ 110.659790, 49.131408 ], [ 111.577148, 49.378797 ], [ 112.500000, 49.496675 ], [ 112.895508, 49.546598 ], [ 112.939453, 49.564415 ], [ 112.939453, 44.914249 ], [ 112.500000, 44.999767 ], [ 111.868286, 45.104546 ], [ 111.346436, 44.461231 ], [ 111.665039, 44.075747 ], [ 111.824341, 43.743321 ], [ 111.126709, 43.409038 ], [ 110.407104, 42.871938 ], [ 109.242554, 42.520700 ], [ 107.742920, 42.484251 ], [ 106.127930, 42.134895 ], [ 104.963379, 41.599013 ], [ 104.518433, 41.910453 ], [ 103.309937, 41.910453 ], [ 101.832275, 42.516651 ], [ 100.843506, 42.666281 ], [ 99.514160, 42.524748 ], [ 97.448730, 42.751046 ], [ 96.344604, 42.726839 ], [ 95.762329, 43.321181 ], [ 95.306396, 44.245199 ], [ 94.685669, 44.355278 ], [ 93.477173, 44.976457 ], [ 92.131348, 45.116177 ], [ 90.944824, 45.286482 ], [ 90.582275, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.280151, 47.694974 ], [ 90.000000, 47.768868 ], [ 89.560547, 47.886881 ], [ 89.560547, 49.813176 ], [ 90.000000, 50.014799 ], [ 90.708618, 50.334943 ], [ 92.230225, 50.802463 ], [ 93.103638, 50.495958 ], [ 94.147339, 50.481978 ], [ 94.812012, 50.014799 ], [ 95.811768, 49.979488 ], [ 97.256470, 49.728030 ], [ 98.228760, 50.422519 ], [ 97.822266, 51.013755 ], [ 98.860474, 52.049112 ] ] ] } } +, +{ "type": "Feature", "properties": { "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": "Polygon", "coordinates": [ [ [ 89.560547, 47.886881 ], [ 90.000000, 47.768868 ], [ 90.280151, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.286482 ], [ 92.131348, 45.116177 ], [ 93.477173, 44.976457 ], [ 94.685669, 44.355278 ], [ 95.306396, 44.245199 ], [ 95.762329, 43.321181 ], [ 96.344604, 42.726839 ], [ 97.448730, 42.751046 ], [ 99.514160, 42.524748 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.516651 ], [ 103.309937, 41.910453 ], [ 104.518433, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.134895 ], [ 107.742920, 42.484251 ], [ 109.242554, 42.520700 ], [ 110.407104, 42.871938 ], [ 111.126709, 43.409038 ], [ 111.824341, 43.743321 ], [ 111.665039, 44.075747 ], [ 111.346436, 44.461231 ], [ 111.868286, 45.104546 ], [ 112.500000, 44.999767 ], [ 112.939453, 44.914249 ], [ 112.939453, 40.647304 ], [ 89.560547, 40.647304 ], [ 89.560547, 47.886881 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 112.939453, 66.687784 ], [ 112.939453, 55.528631 ], [ 89.560547, 55.528631 ], [ 89.560547, 66.687784 ], [ 112.939453, 66.687784 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 109.753418, 74.140084 ], [ 110.637817, 74.040702 ], [ 110.758667, 74.019543 ], [ 112.115479, 73.788054 ], [ 112.500000, 73.869139 ], [ 112.939453, 73.960457 ], [ 112.939453, 66.337505 ], [ 89.560547, 66.337505 ], [ 89.560547, 74.140084 ], [ 109.753418, 74.140084 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "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": [ [ [ [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 112.500000, 76.404937 ], [ 112.939453, 76.309057 ], [ 112.939453, 75.075840 ], [ 112.774658, 75.031921 ], [ 112.500000, 74.975064 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 110.758667, 74.019543 ], [ 111.472778, 73.898111 ], [ 89.560547, 73.898111 ], [ 89.560547, 75.464105 ], [ 90.000000, 75.575362 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ] ] ], [ [ [ 112.939453, 73.898111 ], [ 112.642822, 73.898111 ], [ 112.939453, 73.960457 ], [ 112.939453, 73.898111 ] ] ], [ [ [ 102.963867, 79.253586 ], [ 103.337402, 79.171335 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.167603, 79.171335 ], [ 101.260986, 79.234107 ], [ 101.403809, 79.253586 ], [ 102.963867, 79.253586 ] ] ], [ [ [ 100.036011, 79.253586 ], [ 100.014038, 79.171335 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 94.427490, 79.171335 ], [ 94.070435, 79.253586 ], [ 100.036011, 79.253586 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "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": [ [ [ [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ], [ 103.337402, 79.171335 ], [ 103.710938, 79.088462 ], [ 101.046753, 79.088462 ], [ 101.167603, 79.171335 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 100.014038, 79.171335 ], [ 99.992065, 79.088462 ], [ 94.784546, 79.088462 ], [ 94.427490, 79.171335 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 135.439453, -82.620052 ], [ 135.439453, -85.088894 ], [ 112.060547, -85.088894 ], [ 112.060547, -82.620052 ], [ 135.439453, -82.620052 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 135.439453, -79.088462 ], [ 135.439453, -82.732092 ], [ 112.060547, -82.732092 ], [ 112.060547, -79.088462 ], [ 135.439453, -79.088462 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 135.439453, -73.898111 ], [ 135.439453, -79.253586 ], [ 112.060547, -79.253586 ], [ 112.060547, -73.898111 ], [ 135.439453, -73.898111 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 135.439453, -66.337505 ], [ 135.439453, -74.140084 ], [ 112.060547, -74.140084 ], [ 112.060547, -66.337505 ], [ 114.812622, -66.337505 ], [ 114.895020, -66.385961 ], [ 115.180664, -66.513260 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 122.887573, -66.513260 ], [ 123.217163, -66.482592 ], [ 123.409424, -66.513260 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.177002, -66.513260 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.390503, -66.337505 ], [ 135.439453, -66.337505 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "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": [ [ [ [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.180664, -66.513260 ], [ 115.570679, -66.687784 ], [ 112.060547, -66.687784 ], [ 112.060547, -66.118292 ], [ 112.500000, -66.104945 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ] ] ], [ [ [ 116.768188, -66.687784 ], [ 115.938721, -66.687784 ], [ 116.696777, -66.659507 ], [ 116.768188, -66.687784 ] ] ], [ [ [ 123.409424, -66.513260 ], [ 124.118042, -66.620302 ], [ 124.821167, -66.687784 ], [ 122.052612, -66.687784 ], [ 122.316284, -66.561377 ], [ 122.887573, -66.513260 ], [ 123.217163, -66.482592 ], [ 123.409424, -66.513260 ] ] ], [ [ [ 128.133545, -66.687784 ], [ 125.348511, -66.687784 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.133545, -66.687784 ] ] ], [ [ [ 135.439453, -65.469667 ], [ 135.439453, -66.687784 ], [ 129.160767, -66.687784 ], [ 129.699097, -66.581034 ], [ 130.177002, -66.513260 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.000000, -65.775744 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.439453, -65.469667 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -21.534847 ], [ 135.439453, -34.597042 ], [ 135.203247, -34.474864 ], [ 135.236206, -33.947917 ], [ 135.000000, -33.669497 ], [ 134.609985, -33.220308 ], [ 134.082642, -32.847289 ], [ 134.269409, -32.616243 ], [ 132.989502, -32.008076 ], [ 132.286377, -31.980123 ], [ 131.325073, -31.494262 ], [ 129.534302, -31.587894 ], [ 128.237915, -31.947501 ], [ 127.100830, -32.277845 ], [ 126.145020, -32.212801 ], [ 125.084839, -32.727220 ], [ 124.216919, -32.957977 ], [ 124.024658, -33.481854 ], [ 123.656616, -33.888658 ], [ 122.810669, -33.911454 ], [ 122.178955, -34.002581 ], [ 121.294556, -33.820230 ], [ 120.574951, -33.929688 ], [ 119.888306, -33.975253 ], [ 119.295044, -34.506557 ], [ 119.003906, -34.461277 ], [ 118.504028, -34.746126 ], [ 118.020630, -35.061477 ], [ 117.290039, -35.021000 ], [ 116.619873, -35.021000 ], [ 115.559692, -34.384246 ], [ 115.021362, -34.193630 ], [ 115.043335, -33.619194 ], [ 115.543213, -33.486435 ], [ 115.713501, -33.257063 ], [ 115.675049, -32.898038 ], [ 115.801392, -32.203505 ], [ 115.686035, -31.611288 ], [ 115.158691, -30.600094 ], [ 114.993896, -30.026300 ], [ 115.037842, -29.458731 ], [ 114.636841, -28.806174 ], [ 114.614868, -28.512143 ], [ 114.169922, -28.115594 ], [ 114.043579, -27.332735 ], [ 113.472290, -26.539394 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.544309 ], [ 113.439331, -25.616763 ], [ 113.933716, -25.908644 ], [ 114.230347, -26.298340 ], [ 114.213867, -25.785053 ], [ 113.719482, -24.996016 ], [ 113.620605, -24.681961 ], [ 113.389893, -24.382124 ], [ 113.499756, -23.805450 ], [ 113.703003, -23.558952 ], [ 113.840332, -23.059516 ], [ 113.735962, -22.471955 ], [ 114.038086, -21.943046 ], [ 114.147949, -21.754398 ], [ 114.164429, -21.943046 ], [ 114.224854, -22.512557 ], [ 114.576416, -21.943046 ], [ 114.642334, -21.825807 ], [ 115.361938, -21.534847 ], [ 135.439453, -21.534847 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.963989, -8.890499 ], [ 125.068359, -9.085824 ], [ 125.084839, -9.389452 ], [ 124.431152, -10.136524 ], [ 123.579712, -10.358151 ], [ 123.458862, -10.239249 ], [ 123.546753, -9.898510 ], [ 123.975220, -9.286465 ], [ 124.963989, -8.890499 ] ] ], [ [ [ 119.899292, -9.356933 ], [ 120.421143, -9.665738 ], [ 120.772705, -9.968851 ], [ 120.712280, -10.239249 ], [ 120.294800, -10.255465 ], [ 118.965454, -9.557417 ], [ 119.899292, -9.356933 ] ] ], [ [ [ 117.899780, -8.091862 ], [ 118.256836, -8.358258 ], [ 118.877563, -8.276727 ], [ 119.124756, -8.700499 ], [ 117.965698, -8.901353 ], [ 117.273560, -9.037003 ], [ 116.735229, -9.031578 ], [ 117.081299, -8.456072 ], [ 117.630615, -8.445205 ], [ 117.899780, -8.091862 ] ] ], [ [ [ 122.898560, -8.091862 ], [ 122.755737, -8.646196 ], [ 121.250610, -8.928487 ], [ 119.921265, -8.809082 ], [ 119.915771, -8.439772 ], [ 120.712280, -8.233237 ], [ 121.338501, -8.532133 ], [ 122.003174, -8.456072 ], [ 122.898560, -8.091862 ] ] ], [ [ [ 112.060547, -6.800990 ], [ 112.500000, -6.915521 ], [ 112.609863, -6.942786 ], [ 112.977905, -7.591218 ], [ 114.477539, -7.776309 ], [ 115.702515, -8.369127 ], [ 114.559937, -8.749366 ], [ 113.461304, -8.347388 ], [ 112.554932, -8.374562 ], [ 112.500000, -8.369127 ], [ 112.060547, -8.336518 ], [ 112.060547, -6.800990 ] ] ], [ [ [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ], [ 134.719849, -6.211551 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ] ] ], [ [ [ 124.442139, 0.439449 ], [ 124.436646, 0.428463 ], [ 123.684082, 0.236205 ], [ 122.722778, 0.433956 ], [ 121.052856, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.135498, 0.000000 ], [ 120.036621, -0.516350 ], [ 120.932007, -1.406109 ], [ 121.470337, -0.955766 ], [ 123.338013, -0.615223 ], [ 123.255615, -1.071105 ], [ 122.821655, -0.928304 ], [ 122.387695, -1.515936 ], [ 121.503296, -1.900286 ], [ 122.453613, -3.184394 ], [ 122.266846, -3.524387 ], [ 123.167725, -4.680455 ], [ 123.162231, -5.337114 ], [ 122.623901, -5.632386 ], [ 122.233887, -5.282418 ], [ 122.717285, -4.461427 ], [ 121.734009, -4.850154 ], [ 121.486816, -4.570949 ], [ 121.618652, -4.187551 ], [ 120.893555, -3.601142 ], [ 120.970459, -2.624814 ], [ 120.300293, -2.926583 ], [ 120.388184, -4.094411 ], [ 120.426636, -5.523043 ], [ 119.794922, -5.670651 ], [ 119.366455, -5.375398 ], [ 119.652100, -4.455951 ], [ 119.498291, -3.491489 ], [ 119.075317, -3.486006 ], [ 118.767700, -2.800398 ], [ 119.179688, -2.141835 ], [ 119.322510, -1.351193 ], [ 119.772949, 0.000000 ], [ 119.822388, 0.159302 ], [ 119.970703, 0.439449 ], [ 124.442139, 0.439449 ] ] ], [ [ [ 132.379761, -0.368039 ], [ 133.983765, -0.780005 ], [ 134.143066, -1.147994 ], [ 134.417725, -2.767478 ], [ 135.000000, -3.102121 ], [ 135.439453, -3.354405 ], [ 135.439453, -4.488809 ], [ 135.159302, -4.461427 ], [ 135.000000, -4.357366 ], [ 133.659668, -3.535352 ], [ 133.363037, -4.023179 ], [ 132.978516, -4.110848 ], [ 132.753296, -3.743671 ], [ 132.753296, -3.310534 ], [ 131.989746, -2.816858 ], [ 133.066406, -2.460181 ], [ 133.775024, -2.476645 ], [ 133.692627, -2.213195 ], [ 132.231445, -2.207705 ], [ 131.835938, -1.614776 ], [ 130.940552, -1.428075 ], [ 130.517578, -0.933797 ], [ 131.863403, -0.692122 ], [ 132.379761, -0.368039 ] ] ], [ [ [ 117.641602, 0.439449 ], [ 117.476807, 0.104370 ], [ 117.482300, 0.000000 ], [ 117.520752, -0.801976 ], [ 116.559448, -1.482989 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.012220 ], [ 115.999146, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.491489 ], [ 113.752441, -3.436658 ], [ 113.252563, -3.118576 ], [ 112.500000, -3.343438 ], [ 112.066040, -3.475040 ], [ 112.060547, -3.464074 ], [ 112.060547, 0.439449 ], [ 117.641602, 0.439449 ] ] ], [ [ [ 129.369507, -2.800398 ], [ 130.468140, -3.091151 ], [ 130.830688, -3.853293 ], [ 129.990234, -3.442141 ], [ 129.149780, -3.359889 ], [ 128.589478, -3.425692 ], [ 127.897339, -3.392791 ], [ 128.133545, -2.838804 ], [ 129.369507, -2.800398 ] ] ], [ [ [ 126.996460, -3.124061 ], [ 127.249146, -3.458591 ], [ 126.870117, -3.787522 ], [ 126.183472, -3.606625 ], [ 125.985718, -3.173425 ], [ 126.996460, -3.124061 ] ] ], [ [ [ 128.644409, 0.439449 ], [ 128.633423, 0.263671 ], [ 128.117065, 0.357053 ], [ 128.029175, 0.000000 ], [ 127.963257, -0.247192 ], [ 128.375244, -0.774513 ], [ 128.095093, -0.895349 ], [ 127.694092, -0.263671 ], [ 127.633667, 0.000000 ], [ 127.529297, 0.439449 ], [ 128.644409, 0.439449 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "East Timor", "sov_a3": "TLS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "East Timor", "adm0_a3": "TLS", "geou_dif": 0, "geounit": "East Timor", "gu_a3": "TLS", "su_dif": 0, "subunit": "East Timor", "su_a3": "TLS", "brk_diff": 0, "name": "Timor-Leste", "name_long": "Timor-Leste", "brk_a3": "TLS", "brk_name": "Timor-Leste", "abbrev": "T.L.", "postal": "TL", "formal_en": "Democratic Republic of Timor-Leste", "name_sort": "Timor-Leste", "name_alt": "East Timor", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1131612, "gdp_md_est": 2520, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "TL", "iso_a3": "TLS", "iso_n3": "626", "un_a3": "626", "wb_a2": "TP", "wb_a3": "TMP", "woe_id": -99, "adm0_a3_is": "TLS", "adm0_a3_us": "TLS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.952515, -8.271291 ], [ 127.331543, -8.396300 ], [ 126.963501, -8.667918 ], [ 125.925293, -9.102097 ], [ 125.084839, -9.389452 ], [ 125.068359, -9.085824 ], [ 124.963989, -8.890499 ], [ 125.084839, -8.651626 ], [ 125.941772, -8.428904 ], [ 126.639404, -8.396300 ], [ 126.952515, -8.271291 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.147949, -21.754398 ], [ 114.164429, -21.943046 ], [ 114.208374, -22.350076 ], [ 113.807373, -22.350076 ], [ 114.038086, -21.943046 ], [ 114.147949, -21.754398 ] ] ], [ [ [ 133.016968, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.390259, -12.039321 ], [ 134.675903, -11.937227 ], [ 135.000000, -12.098410 ], [ 135.296631, -12.243392 ], [ 135.439453, -12.178965 ], [ 135.439453, -14.700508 ], [ 135.428467, -14.711135 ], [ 135.439453, -14.753635 ], [ 135.439453, -22.350076 ], [ 114.323730, -22.350076 ], [ 114.576416, -21.943046 ], [ 114.642334, -21.825807 ], [ 115.455322, -21.493964 ], [ 115.944214, -21.063997 ], [ 116.707764, -20.699600 ], [ 117.163696, -20.622502 ], [ 117.438354, -20.745840 ], [ 118.229370, -20.370377 ], [ 118.833618, -20.262197 ], [ 118.987427, -20.040450 ], [ 119.251099, -19.952696 ], [ 119.800415, -19.973349 ], [ 120.855103, -19.678798 ], [ 121.398926, -19.238550 ], [ 121.651611, -18.703489 ], [ 122.239380, -18.192825 ], [ 122.283325, -17.795766 ], [ 122.310791, -17.250990 ], [ 123.008423, -16.404470 ], [ 123.431396, -17.266728 ], [ 123.854370, -17.067287 ], [ 123.502808, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.325411 ], [ 124.376221, -15.564836 ], [ 124.925537, -15.072124 ], [ 125.167236, -14.679254 ], [ 125.667114, -14.509144 ], [ 125.683594, -14.227113 ], [ 126.123047, -14.344226 ], [ 126.139526, -14.093957 ], [ 126.578979, -13.950061 ], [ 127.062378, -13.816744 ], [ 127.803955, -14.275030 ], [ 128.358765, -14.865160 ], [ 128.984985, -14.875778 ], [ 129.616699, -14.966013 ], [ 129.407959, -14.418720 ], [ 129.885864, -13.613956 ], [ 130.336304, -13.352210 ], [ 130.182495, -13.106230 ], [ 130.616455, -12.533115 ], [ 131.220703, -12.178965 ], [ 131.731567, -12.302435 ], [ 132.572021, -12.109152 ], [ 132.555542, -11.598432 ], [ 131.819458, -11.270000 ], [ 132.352295, -11.124507 ], [ 133.016968, -11.372339 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 113.576660, 22.350076 ], [ 113.236084, 22.055096 ], [ 112.933960, 21.943046 ], [ 112.500000, 21.790107 ], [ 112.060547, 21.631899 ], [ 112.060547, 22.350076 ], [ 113.576660, 22.350076 ] ] ], [ [ [ 114.323730, 22.350076 ], [ 114.147949, 22.228090 ], [ 114.016113, 22.350076 ], [ 114.323730, 22.350076 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.125244, 6.931880 ], [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 118.344727, 5.708914 ], [ 119.179688, 5.408211 ], [ 119.108276, 5.019811 ], [ 118.438110, 4.970560 ], [ 118.613892, 4.483333 ], [ 117.877808, 4.138243 ], [ 117.009888, 4.308069 ], [ 115.861816, 4.308069 ], [ 115.515747, 3.173425 ], [ 115.131226, 2.822344 ], [ 114.620361, 1.433566 ], [ 113.801880, 1.219390 ], [ 112.857056, 1.499463 ], [ 112.500000, 1.433566 ], [ 112.379150, 1.411600 ], [ 112.060547, 1.137010 ], [ 112.060547, 2.937555 ], [ 112.500000, 3.014356 ], [ 112.994385, 3.107606 ], [ 113.708496, 3.897138 ], [ 114.202881, 4.527142 ], [ 114.658813, 4.012220 ], [ 114.867554, 4.351889 ], [ 115.345459, 4.319024 ], [ 115.449829, 5.451959 ], [ 116.218872, 6.146016 ], [ 116.724243, 6.926427 ], [ 117.125244, 6.931880 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Taiwan", "sov_a3": "TWN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Taiwan", "adm0_a3": "TWN", "geou_dif": 0, "geounit": "Taiwan", "gu_a3": "TWN", "su_dif": 0, "subunit": "Taiwan", "su_a3": "TWN", "brk_diff": 1, "name": "Taiwan", "name_long": "Taiwan", "brk_a3": "B77", "brk_name": "Taiwan", "abbrev": "Taiwan", "postal": "TW", "note_brk": "Self admin.; Claimed by China", "name_sort": "Taiwan", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 22974347, "gdp_md_est": 712000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TW", "iso_a3": "TWN", "iso_n3": "158", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "TWN", "adm0_a3_us": "TWN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 120.942993, 22.350076 ], [ 120.745239, 21.973614 ], [ 120.509033, 22.350076 ], [ 120.942993, 22.350076 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Philippines", "sov_a3": "PHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Philippines", "adm0_a3": "PHL", "geou_dif": 0, "geounit": "Philippines", "gu_a3": "PHL", "su_dif": 0, "subunit": "Philippines", "su_a3": "PHL", "brk_diff": 0, "name": "Philippines", "name_long": "Philippines", "brk_a3": "PHL", "brk_name": "Philippines", "abbrev": "Phil.", "postal": "PH", "formal_en": "Republic of the Philippines", "name_sort": "Philippines", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 97976603, "gdp_md_est": 317500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PH", "iso_a3": "PHL", "iso_n3": "608", "un_a3": "608", "wb_a2": "PH", "wb_a3": "PHL", "woe_id": -99, "adm0_a3_is": "PHL", "adm0_a3_us": "PHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.408936, 9.763198 ], [ 126.221924, 9.286465 ], [ 126.375732, 8.418036 ], [ 126.474609, 7.754537 ], [ 126.535034, 7.193551 ], [ 126.194458, 6.277078 ], [ 125.826416, 7.297088 ], [ 125.359497, 6.790080 ], [ 125.678101, 6.053161 ], [ 125.392456, 5.583184 ], [ 124.216919, 6.162401 ], [ 123.936768, 6.888254 ], [ 124.238892, 7.362467 ], [ 123.607178, 7.836173 ], [ 123.294067, 7.422389 ], [ 122.821655, 7.460518 ], [ 122.080078, 6.904614 ], [ 121.915283, 7.193551 ], [ 122.310791, 8.037473 ], [ 122.937012, 8.320212 ], [ 123.486328, 8.695069 ], [ 123.837891, 8.244110 ], [ 124.601440, 8.515836 ], [ 124.760742, 8.961045 ], [ 125.469360, 8.988175 ], [ 125.408936, 9.763198 ] ] ], [ [ [ 119.509277, 11.372339 ], [ 119.685059, 10.558022 ], [ 119.025879, 10.006720 ], [ 118.504028, 9.318990 ], [ 117.169189, 8.369127 ], [ 117.663574, 9.069551 ], [ 118.383179, 9.687398 ], [ 118.981934, 10.379765 ], [ 119.509277, 11.372339 ] ] ], [ [ [ 124.074097, 11.237674 ], [ 123.980713, 10.282491 ], [ 123.618164, 9.952620 ], [ 123.305054, 9.318990 ], [ 122.991943, 9.026153 ], [ 122.376709, 9.714472 ], [ 122.585449, 9.985081 ], [ 122.832642, 10.266276 ], [ 122.942505, 10.887254 ], [ 123.497314, 10.941192 ], [ 123.332520, 10.271681 ], [ 124.074097, 11.237674 ] ] ], [ [ [ 124.266357, 12.559925 ], [ 125.222168, 12.538478 ], [ 125.502319, 12.162856 ], [ 125.782471, 11.049038 ], [ 125.007935, 11.313094 ], [ 125.029907, 10.978943 ], [ 125.277100, 10.363555 ], [ 124.799194, 10.136524 ], [ 124.755249, 10.838701 ], [ 124.458618, 10.892648 ], [ 124.299316, 11.496174 ], [ 124.887085, 11.420802 ], [ 124.876099, 11.797457 ], [ 124.266357, 12.559925 ] ] ], [ [ [ 121.882324, 11.894228 ], [ 122.481079, 11.582288 ], [ 123.118286, 11.587669 ], [ 123.096313, 11.167624 ], [ 122.634888, 10.741572 ], [ 121.997681, 10.444598 ], [ 121.964722, 10.908830 ], [ 122.036133, 11.420802 ], [ 121.882324, 11.894228 ] ] ], [ [ [ 120.322266, 13.469764 ], [ 121.179199, 13.432367 ], [ 121.525269, 13.074128 ], [ 121.261597, 12.205811 ], [ 120.833130, 12.704651 ], [ 120.322266, 13.469764 ] ] ], [ [ [ 121.316528, 18.505657 ], [ 121.937256, 18.218916 ], [ 122.244873, 18.479609 ], [ 122.332764, 18.229351 ], [ 122.173462, 17.811456 ], [ 122.514038, 17.093542 ], [ 122.250366, 16.267414 ], [ 121.662598, 15.934920 ], [ 121.503296, 15.125159 ], [ 121.728516, 14.333582 ], [ 122.255859, 14.221789 ], [ 122.700806, 14.338904 ], [ 123.947754, 13.784737 ], [ 123.854370, 13.239945 ], [ 124.178467, 12.999205 ], [ 124.074097, 12.538478 ], [ 123.294067, 13.031318 ], [ 122.926025, 13.555222 ], [ 122.667847, 13.186468 ], [ 122.030640, 13.784737 ], [ 121.124268, 13.640649 ], [ 120.624390, 13.859414 ], [ 120.679321, 14.275030 ], [ 120.986938, 14.530415 ], [ 120.690308, 14.758947 ], [ 120.563965, 14.397439 ], [ 120.069580, 14.971320 ], [ 119.915771, 15.411319 ], [ 119.882812, 16.367580 ], [ 120.283813, 16.035255 ], [ 120.388184, 17.602139 ], [ 120.712280, 18.505657 ], [ 121.316528, 18.505657 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Brunei", "sov_a3": "BRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brunei", "adm0_a3": "BRN", "geou_dif": 0, "geounit": "Brunei", "gu_a3": "BRN", "su_dif": 0, "subunit": "Brunei", "su_a3": "BRN", "brk_diff": 0, "name": "Brunei", "name_long": "Brunei Darussalam", "brk_a3": "BRN", "brk_name": "Brunei", "abbrev": "Brunei", "postal": "BN", "formal_en": "Negara Brunei Darussalam", "name_sort": "Brunei", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 12, "pop_est": 388190, "gdp_md_est": 20250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BN", "iso_a3": "BRN", "iso_n3": "096", "un_a3": "096", "wb_a2": "BN", "wb_a3": "BRN", "woe_id": -99, "adm0_a3_is": "BRN", "adm0_a3_us": "BRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 17, "abbrev_len": 6, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.449829, 5.451959 ], [ 115.345459, 4.319024 ], [ 114.867554, 4.351889 ], [ 114.658813, 4.012220 ], [ 114.202881, 4.527142 ], [ 114.598389, 4.904887 ], [ 115.449829, 5.451959 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.379761, -0.368039 ], [ 132.648926, -0.439449 ], [ 132.269897, -0.439449 ], [ 132.379761, -0.368039 ] ] ], [ [ [ 125.062866, 1.647722 ], [ 125.238647, 1.422583 ], [ 124.436646, 0.428463 ], [ 123.684082, 0.236205 ], [ 122.722778, 0.433956 ], [ 121.052856, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.135498, 0.000000 ], [ 120.053101, -0.439449 ], [ 119.624634, -0.439449 ], [ 119.772949, 0.000000 ], [ 119.822388, 0.159302 ], [ 120.031128, 0.571280 ], [ 120.882568, 1.312751 ], [ 121.662598, 1.016182 ], [ 122.926025, 0.878872 ], [ 124.074097, 0.917319 ], [ 125.062866, 1.647722 ] ] ], [ [ [ 127.930298, 2.174771 ], [ 128.001709, 1.631249 ], [ 128.589478, 1.543392 ], [ 128.682861, 1.137010 ], [ 128.633423, 0.263671 ], [ 128.117065, 0.357053 ], [ 128.029175, 0.000000 ], [ 127.963257, -0.247192 ], [ 128.111572, -0.439449 ], [ 127.803955, -0.439449 ], [ 127.694092, -0.263671 ], [ 127.633667, 0.000000 ], [ 127.397461, 1.016182 ], [ 127.595215, 1.812442 ], [ 127.930298, 2.174771 ] ] ], [ [ [ 117.009888, 4.308069 ], [ 117.877808, 4.138243 ], [ 117.312012, 3.239240 ], [ 118.048096, 2.290039 ], [ 117.872314, 1.828913 ], [ 118.992920, 0.906334 ], [ 117.806396, 0.785498 ], [ 117.476807, 0.104370 ], [ 117.482300, 0.000000 ], [ 117.498779, -0.439449 ], [ 112.060547, -0.439449 ], [ 112.060547, 1.137010 ], [ 112.379150, 1.411600 ], [ 112.500000, 1.433566 ], [ 112.857056, 1.499463 ], [ 113.801880, 1.219390 ], [ 114.620361, 1.433566 ], [ 115.131226, 2.822344 ], [ 115.515747, 3.173425 ], [ 115.861816, 4.308069 ], [ 117.009888, 4.308069 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 126.375732, 41.310824 ], [ 126.177979, 41.108330 ], [ 125.919800, 40.979898 ], [ 125.079346, 40.572240 ], [ 124.260864, 39.930801 ], [ 122.865601, 39.639538 ], [ 122.129517, 39.172659 ], [ 121.052856, 38.899583 ], [ 121.585693, 39.364032 ], [ 121.371460, 39.753657 ], [ 122.167969, 40.426042 ], [ 121.635132, 40.946714 ], [ 120.767212, 40.597271 ], [ 119.635620, 39.901309 ], [ 119.020386, 39.253525 ], [ 118.042603, 39.206719 ], [ 117.531738, 38.741231 ], [ 118.059082, 38.065392 ], [ 118.877563, 37.900865 ], [ 118.910522, 37.448697 ], [ 119.701538, 37.160317 ], [ 120.822144, 37.870517 ], [ 121.706543, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.655200 ], [ 120.635376, 36.115690 ], [ 119.663086, 35.612651 ], [ 119.146729, 34.912962 ], [ 120.223389, 34.361576 ], [ 120.618896, 33.380999 ], [ 121.228638, 32.463426 ], [ 121.904297, 31.695456 ], [ 121.887817, 30.954058 ], [ 121.261597, 30.680440 ], [ 121.503296, 30.145127 ], [ 122.091064, 29.835879 ], [ 121.937256, 29.022552 ], [ 121.679077, 28.226970 ], [ 121.124268, 28.139816 ], [ 120.393677, 27.054234 ], [ 119.580688, 25.745477 ], [ 118.652344, 24.552120 ], [ 117.279053, 23.629427 ], [ 115.889282, 22.786311 ], [ 114.763184, 22.669779 ], [ 114.147949, 22.228090 ], [ 113.801880, 22.553147 ], [ 113.236084, 22.055096 ], [ 112.933960, 21.943046 ], [ 112.060547, 21.631899 ], [ 112.060547, 41.310824 ], [ 126.375732, 41.310824 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Taiwan", "sov_a3": "TWN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Taiwan", "adm0_a3": "TWN", "geou_dif": 0, "geounit": "Taiwan", "gu_a3": "TWN", "su_dif": 0, "subunit": "Taiwan", "su_a3": "TWN", "brk_diff": 1, "name": "Taiwan", "name_long": "Taiwan", "brk_a3": "B77", "brk_name": "Taiwan", "abbrev": "Taiwan", "postal": "TW", "note_brk": "Self admin.; Claimed by China", "name_sort": "Taiwan", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 22974347, "gdp_md_est": 712000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TW", "iso_a3": "TWN", "iso_n3": "158", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "TWN", "adm0_a3_us": "TWN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.492310, 25.299338 ], [ 121.948242, 25.000994 ], [ 121.772461, 24.397133 ], [ 121.173706, 22.791375 ], [ 120.745239, 21.973614 ], [ 120.217896, 22.816694 ], [ 120.102539, 23.558952 ], [ 120.690308, 24.542126 ], [ 121.492310, 25.299338 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Korea", "sov_a3": "KOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Korea", "adm0_a3": "KOR", "geou_dif": 0, "geounit": "South Korea", "gu_a3": "KOR", "su_dif": 0, "subunit": "South Korea", "su_a3": "KOR", "brk_diff": 0, "name": "Korea", "name_long": "Republic of Korea", "brk_a3": "KOR", "brk_name": "Republic of Korea", "abbrev": "S.K.", "postal": "KR", "formal_en": "Republic of Korea", "name_sort": "Korea, Rep.", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 48508972, "gdp_md_est": 1335000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "KR", "iso_a3": "KOR", "iso_n3": "410", "un_a3": "410", "wb_a2": "KR", "wb_a3": "KOR", "woe_id": -99, "adm0_a3_is": "KOR", "adm0_a3_us": "KOR", "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": 17, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.347778, 38.612578 ], [ 129.210205, 37.435612 ], [ 129.457397, 36.787291 ], [ 129.462891, 35.634977 ], [ 129.089355, 35.083956 ], [ 128.182983, 34.890437 ], [ 127.386475, 34.479392 ], [ 126.485596, 34.393312 ], [ 126.370239, 34.935482 ], [ 126.557007, 35.688533 ], [ 126.112061, 36.725677 ], [ 126.859131, 36.897194 ], [ 126.172485, 37.753344 ], [ 126.232910, 37.844495 ], [ 126.683350, 37.805444 ], [ 127.067871, 38.259750 ], [ 127.776489, 38.307181 ], [ 128.204956, 38.371809 ], [ 128.347778, 38.612578 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "name_sort": "Japan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "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": [ [ [ [ 134.604492, 35.733136 ], [ 135.000000, 35.657296 ], [ 135.439453, 35.576917 ], [ 135.439453, 33.669497 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 133.335571, 34.379713 ], [ 132.154541, 33.906896 ], [ 130.984497, 33.888658 ], [ 131.995239, 33.151349 ], [ 131.330566, 31.452096 ], [ 130.682373, 31.034108 ], [ 130.198975, 31.419288 ], [ 130.446167, 32.319634 ], [ 129.814453, 32.611616 ], [ 129.407959, 33.298395 ], [ 130.352783, 33.605470 ], [ 130.874634, 34.234512 ], [ 131.879883, 34.750640 ], [ 132.615967, 35.433820 ], [ 134.604492, 35.733136 ] ] ], [ [ [ 133.901367, 34.366111 ], [ 134.637451, 34.152727 ], [ 134.763794, 33.806538 ], [ 134.197998, 33.201924 ], [ 133.791504, 33.523079 ], [ 133.275146, 33.293804 ], [ 133.011475, 32.708733 ], [ 132.357788, 32.990236 ], [ 132.368774, 33.468108 ], [ 132.923584, 34.061761 ], [ 133.489380, 33.947917 ], [ 133.901367, 34.366111 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 135.439453, 56.022948 ], [ 135.439453, 54.930298 ], [ 135.120850, 54.730964 ], [ 135.439453, 54.705582 ], [ 135.439453, 43.921637 ], [ 135.000000, 43.520672 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.000000, 48.436490 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.476563 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 112.500000, 49.496675 ], [ 112.060547, 49.439557 ], [ 112.060547, 56.022948 ], [ 135.439453, 56.022948 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 114.362183, 50.250718 ], [ 114.960938, 50.141706 ], [ 115.482788, 49.806087 ], [ 116.674805, 49.891096 ], [ 116.191406, 49.135003 ], [ 115.482788, 48.136767 ], [ 115.740967, 47.728240 ], [ 116.306763, 47.853717 ], [ 117.290039, 47.698672 ], [ 118.059082, 48.067068 ], [ 118.861084, 47.750405 ], [ 119.767456, 47.051411 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.807580 ], [ 117.416382, 46.675826 ], [ 116.713257, 46.388622 ], [ 115.982666, 45.729191 ], [ 114.455566, 45.340563 ], [ 113.461304, 44.809122 ], [ 112.500000, 44.999767 ], [ 112.434082, 45.015302 ], [ 112.060547, 45.073521 ], [ 112.060547, 49.439557 ], [ 112.500000, 49.496675 ], [ 112.895508, 49.546598 ], [ 114.362183, 50.250718 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 123.568726, 53.461890 ], [ 125.062866, 53.163240 ], [ 125.941772, 52.796119 ], [ 126.562500, 51.784834 ], [ 126.936035, 51.354631 ], [ 127.282104, 50.739932 ], [ 127.655640, 49.763526 ], [ 129.396973, 49.443129 ], [ 130.578003, 48.730832 ], [ 130.984497, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.368530, 48.184401 ], [ 135.000000, 48.476563 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.436490 ], [ 134.500122, 47.580231 ], [ 134.110107, 47.215837 ], [ 133.769531, 46.118942 ], [ 133.093872, 45.147179 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.968684 ], [ 131.286621, 44.115198 ], [ 131.143799, 42.932296 ], [ 130.632935, 42.904136 ], [ 130.638428, 42.395066 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.427511 ], [ 128.051147, 41.996243 ], [ 128.204956, 41.467428 ], [ 127.342529, 41.504464 ], [ 126.864624, 41.820455 ], [ 126.177979, 41.108330 ], [ 125.919800, 40.979898 ], [ 125.233154, 40.647304 ], [ 121.937256, 40.647304 ], [ 121.635132, 40.946714 ], [ 120.899048, 40.647304 ], [ 112.060547, 40.647304 ], [ 112.060547, 45.073521 ], [ 112.500000, 44.999767 ], [ 113.461304, 44.809122 ], [ 114.455566, 45.340563 ], [ 115.982666, 45.729191 ], [ 116.713257, 46.388622 ], [ 117.416382, 46.675826 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.767456, 47.051411 ], [ 118.861084, 47.750405 ], [ 118.059082, 48.067068 ], [ 117.290039, 47.698672 ], [ 116.306763, 47.853717 ], [ 115.740967, 47.728240 ], [ 115.482788, 48.136767 ], [ 116.191406, 49.135003 ], [ 116.674805, 49.891096 ], [ 117.877808, 49.514510 ], [ 119.284058, 50.145226 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.734253, 51.964577 ], [ 120.723267, 52.519564 ], [ 120.173950, 52.756243 ], [ 120.997925, 53.252069 ], [ 122.244873, 53.432447 ], [ 123.568726, 53.461890 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "North Korea", "sov_a3": "PRK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "North Korea", "adm0_a3": "PRK", "geou_dif": 0, "geounit": "North Korea", "gu_a3": "PRK", "su_dif": 0, "subunit": "North Korea", "su_a3": "PRK", "brk_diff": 0, "name": "Dem. Rep. Korea", "name_long": "Dem. Rep. Korea", "brk_a3": "PRK", "brk_name": "Dem. Rep. Korea", "abbrev": "N.K.", "postal": "KP", "formal_en": "Democratic People's Republic of Korea", "name_sort": "Korea, Dem. Rep.", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 22665345, "gdp_md_est": 40000, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KP", "iso_a3": "PRK", "iso_n3": "408", "un_a3": "408", "wb_a2": "KP", "wb_a3": "PRK", "woe_id": -99, "adm0_a3_is": "PRK", "adm0_a3_us": "PRK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 15, "long_len": 15, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.990234, 42.988576 ], [ 130.638428, 42.395066 ], [ 130.775757, 42.220382 ], [ 130.396729, 42.281373 ], [ 129.962769, 41.943149 ], [ 129.666138, 41.603121 ], [ 129.699097, 40.979898 ], [ 129.704590, 40.884448 ], [ 129.182739, 40.663973 ], [ 129.171753, 40.647304 ], [ 125.233154, 40.647304 ], [ 125.919800, 40.979898 ], [ 126.177979, 41.108330 ], [ 126.864624, 41.820455 ], [ 127.342529, 41.504464 ], [ 128.204956, 41.467428 ], [ 128.051147, 41.996243 ], [ 129.594727, 42.427511 ], [ 129.990234, 42.988576 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 135.439453, 66.687784 ], [ 135.439453, 55.528631 ], [ 112.060547, 55.528631 ], [ 112.060547, 66.687784 ], [ 135.439453, 66.687784 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.439453, 71.637723 ], [ 135.439453, 66.337505 ], [ 112.060547, 66.337505 ], [ 112.060547, 73.798786 ], [ 112.115479, 73.788054 ], [ 112.500000, 73.869139 ], [ 113.016357, 73.977144 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 113.082275, 73.898111 ], [ 112.642822, 73.898111 ], [ 113.016357, 73.977144 ], [ 113.082275, 73.898111 ] ] ], [ [ [ 112.060547, 76.500159 ], [ 112.500000, 76.404937 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 112.500000, 74.975064 ], [ 112.060547, 74.882222 ], [ 112.060547, 76.500159 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 157.939453, -82.620052 ], [ 157.939453, -85.088894 ], [ 134.560547, -85.088894 ], [ 134.560547, -82.620052 ], [ 157.939453, -82.620052 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 157.939453, -79.088462 ], [ 157.939453, -82.732092 ], [ 134.560547, -82.732092 ], [ 134.560547, -79.088462 ], [ 157.939453, -79.088462 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 157.939453, -73.898111 ], [ 157.939453, -79.253586 ], [ 134.560547, -79.253586 ], [ 134.560547, -73.898111 ], [ 157.939453, -73.898111 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 136.115112, -66.337505 ], [ 136.203003, -66.443107 ], [ 136.285400, -66.513260 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 157.500000, -69.438269 ], [ 157.939453, -69.474895 ], [ 157.939453, -74.140084 ], [ 134.560547, -74.140084 ], [ 134.560547, -66.337505 ], [ 136.115112, -66.337505 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "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": "Polygon", "coordinates": [ [ [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.285400, -66.513260 ], [ 136.505127, -66.687784 ], [ 134.560547, -66.687784 ], [ 134.560547, -66.227029 ], [ 134.752808, -66.209308 ], [ 135.000000, -65.775744 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.739380, -40.701464 ], [ 145.393066, -40.788860 ], [ 145.920410, -40.979898 ], [ 146.359863, -41.137296 ], [ 146.991577, -40.979898 ], [ 147.689209, -40.805494 ], [ 148.287964, -40.871988 ], [ 148.293457, -40.979898 ], [ 148.359375, -42.061529 ], [ 148.013306, -42.403179 ], [ 147.908936, -43.209180 ], [ 147.562866, -42.936318 ], [ 146.865234, -43.632099 ], [ 146.661987, -43.580391 ], [ 146.046753, -43.548548 ], [ 145.431519, -42.690511 ], [ 145.294189, -42.032974 ], [ 144.717407, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.739380, -40.701464 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.739380, -40.701464 ], [ 145.393066, -40.788860 ], [ 145.920410, -40.979898 ], [ 146.359863, -41.137296 ], [ 146.991577, -40.979898 ], [ 147.689209, -40.805494 ], [ 148.287964, -40.871988 ], [ 148.293457, -40.979898 ], [ 148.309937, -41.310824 ], [ 144.810791, -41.310824 ], [ 144.717407, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.739380, -40.701464 ] ] ], [ [ [ 149.386597, -21.534847 ], [ 149.529419, -21.943046 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.121266 ], [ 150.479736, -22.553147 ], [ 150.726929, -22.400872 ], [ 150.897217, -23.458207 ], [ 151.605835, -24.071544 ], [ 152.072754, -24.457151 ], [ 152.852783, -25.264568 ], [ 153.132935, -26.066652 ], [ 153.160400, -26.637639 ], [ 153.088989, -27.259513 ], [ 153.566895, -28.105903 ], [ 153.511963, -28.993727 ], [ 153.336182, -29.453948 ], [ 153.067017, -30.349176 ], [ 153.088989, -30.921076 ], [ 152.891235, -31.639352 ], [ 152.446289, -32.546813 ], [ 151.704712, -33.040903 ], [ 151.342163, -33.815666 ], [ 151.007080, -34.307144 ], [ 150.710449, -35.169318 ], [ 150.325928, -35.670685 ], [ 150.073242, -36.416862 ], [ 149.941406, -37.107765 ], [ 149.996338, -37.422526 ], [ 149.419556, -37.770715 ], [ 148.304443, -37.805444 ], [ 147.381592, -38.216604 ], [ 146.920166, -38.603993 ], [ 146.315918, -39.031986 ], [ 145.486450, -38.591114 ], [ 144.876709, -38.414862 ], [ 145.030518, -37.892196 ], [ 144.481201, -38.082690 ], [ 143.607788, -38.805470 ], [ 142.745361, -38.535276 ], [ 142.174072, -38.376115 ], [ 141.602783, -38.307181 ], [ 140.635986, -38.017804 ], [ 139.987793, -37.400710 ], [ 139.806519, -36.641978 ], [ 139.570312, -36.137875 ], [ 139.081421, -35.728677 ], [ 138.120117, -35.608185 ], [ 138.444214, -35.124402 ], [ 138.202515, -34.384246 ], [ 137.719116, -35.074965 ], [ 136.829224, -35.259077 ], [ 137.351074, -34.705493 ], [ 137.499390, -34.129995 ], [ 137.889404, -33.637489 ], [ 137.807007, -32.898038 ], [ 136.994019, -33.751748 ], [ 136.367798, -34.093610 ], [ 135.988770, -34.885931 ], [ 135.203247, -34.474864 ], [ 135.236206, -33.947917 ], [ 135.000000, -33.669497 ], [ 134.609985, -33.220308 ], [ 134.560547, -33.183537 ], [ 134.560547, -21.534847 ], [ 149.386597, -21.534847 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 138.328857, -1.702630 ], [ 139.180298, -2.048514 ], [ 139.921875, -2.405299 ], [ 140.998535, -2.597377 ], [ 141.031494, -9.112945 ], [ 140.141602, -8.293035 ], [ 139.125366, -8.091862 ], [ 138.878174, -8.379997 ], [ 137.609253, -8.407168 ], [ 138.037720, -7.596663 ], [ 138.663940, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.391805 ], [ 135.988770, -4.543570 ], [ 135.159302, -4.461427 ], [ 135.000000, -4.357366 ], [ 134.560547, -4.088932 ], [ 134.560547, -2.844290 ], [ 135.000000, -3.102121 ], [ 135.455933, -3.365373 ], [ 136.290894, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ] ] ], [ [ [ 134.560547, -5.523043 ], [ 134.725342, -5.736243 ], [ 134.719849, -6.211551 ], [ 134.560547, -6.429942 ], [ 134.560547, -5.523043 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 142.514648, -10.666006 ], [ 142.794800, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.113403, -11.904979 ], [ 143.157349, -12.323903 ], [ 143.519897, -12.833226 ], [ 143.596802, -13.400307 ], [ 143.558350, -13.763396 ], [ 143.920898, -14.546367 ], [ 144.563599, -14.168534 ], [ 144.893188, -14.594216 ], [ 145.371094, -14.981933 ], [ 145.266724, -15.427206 ], [ 145.480957, -16.283233 ], [ 145.634766, -16.783506 ], [ 145.887451, -16.904428 ], [ 146.156616, -17.759150 ], [ 146.063232, -18.276302 ], [ 146.387329, -18.958246 ], [ 147.469482, -19.476950 ], [ 148.172607, -19.952696 ], [ 148.848267, -20.390974 ], [ 148.716431, -20.632784 ], [ 149.287720, -21.258661 ], [ 149.529419, -21.943046 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.121266 ], [ 150.287476, -22.350076 ], [ 134.560547, -22.350076 ], [ 134.560547, -11.980218 ], [ 134.675903, -11.937227 ], [ 135.000000, -12.098410 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.958723 ], [ 136.257935, -12.044693 ], [ 136.488647, -11.856599 ], [ 136.950073, -12.350734 ], [ 136.680908, -12.886780 ], [ 136.301880, -13.288065 ], [ 135.961304, -13.320140 ], [ 136.076660, -13.720708 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.499878, -14.992546 ], [ 136.290894, -15.548960 ], [ 137.059937, -15.866242 ], [ 137.576294, -16.214675 ], [ 138.301392, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.103394, -17.062036 ], [ 139.257202, -17.366367 ], [ 140.213013, -17.706828 ], [ 140.872192, -17.366367 ], [ 141.069946, -16.830832 ], [ 141.273193, -16.388661 ], [ 141.394043, -15.839820 ], [ 141.701660, -15.040296 ], [ 141.558838, -14.557001 ], [ 141.630249, -14.269707 ], [ 141.514893, -13.694025 ], [ 141.646729, -12.940322 ], [ 141.838989, -12.736801 ], [ 141.685181, -12.404389 ], [ 141.926880, -11.872727 ], [ 142.113647, -11.323867 ], [ 142.141113, -11.038255 ], [ 142.514648, -10.666006 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Papua New Guinea", "sov_a3": "PNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Papua New Guinea", "adm0_a3": "PNG", "geou_dif": 0, "geounit": "Papua New Guinea", "gu_a3": "PNG", "su_dif": 1, "subunit": "Papua New Guinea", "su_a3": "PN1", "brk_diff": 0, "name": "Papua New Guinea", "name_long": "Papua New Guinea", "brk_a3": "PN1", "brk_name": "Papua New Guinea", "abbrev": "P.N.G.", "postal": "PG", "formal_en": "Independent State of Papua New Guinea", "name_sort": "Papua New Guinea", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 6057263, "gdp_md_est": 13210, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PG", "iso_a3": "PNG", "iso_n3": "598", "un_a3": "598", "wb_a2": "PG", "wb_a3": "PNG", "woe_id": -99, "adm0_a3_is": "PNG", "adm0_a3_us": "PNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 16, "long_len": 16, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.998535, -2.597377 ], [ 142.734375, -3.288598 ], [ 144.580078, -3.858774 ], [ 145.272217, -4.368320 ], [ 145.827026, -4.872048 ], [ 145.980835, -5.462896 ], [ 147.645264, -6.080473 ], [ 147.886963, -6.610044 ], [ 146.969604, -6.719165 ], [ 147.189331, -7.384258 ], [ 148.079224, -8.042913 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.069551 ], [ 149.265747, -9.514079 ], [ 150.034790, -9.681984 ], [ 149.738159, -9.871452 ], [ 150.798340, -10.293301 ], [ 150.688477, -10.579622 ], [ 150.023804, -10.649811 ], [ 149.782104, -10.390572 ], [ 148.919678, -10.277086 ], [ 147.908936, -10.125709 ], [ 147.134399, -9.492408 ], [ 146.563110, -8.939340 ], [ 146.046753, -8.064669 ], [ 144.739380, -7.629331 ], [ 143.893433, -7.912353 ], [ 143.283691, -8.244110 ], [ 143.410034, -8.982749 ], [ 142.624512, -9.324411 ], [ 142.064209, -9.156333 ], [ 141.031494, -9.112945 ], [ 140.998535, -2.597377 ] ] ], [ [ [ 154.649048, -5.041699 ], [ 154.758911, -5.337114 ], [ 155.061035, -5.566783 ], [ 155.544434, -6.200629 ], [ 156.016846, -6.539103 ], [ 155.879517, -6.817353 ], [ 155.599365, -6.915521 ], [ 155.165405, -6.533645 ], [ 154.725952, -5.900189 ], [ 154.511719, -5.134715 ], [ 154.649048, -5.041699 ] ] ], [ [ [ 152.133179, -4.143722 ], [ 152.336426, -4.308069 ], [ 152.314453, -4.866574 ], [ 151.979370, -5.473832 ], [ 151.457520, -5.555848 ], [ 151.298218, -5.840081 ], [ 150.238037, -6.315299 ], [ 149.705200, -6.315299 ], [ 148.886719, -6.025848 ], [ 148.315430, -5.741708 ], [ 148.397827, -5.435554 ], [ 149.293213, -5.583184 ], [ 149.842529, -5.501172 ], [ 149.990845, -5.025283 ], [ 150.139160, -4.997922 ], [ 150.232544, -5.528511 ], [ 150.803833, -5.451959 ], [ 151.089478, -5.112830 ], [ 151.644287, -4.751624 ], [ 151.534424, -4.165637 ], [ 152.133179, -4.143722 ] ] ], [ [ [ 150.935669, -2.498597 ], [ 151.479492, -2.778451 ], [ 151.814575, -2.997899 ], [ 152.237549, -3.239240 ], [ 152.638550, -3.655964 ], [ 153.017578, -3.979341 ], [ 153.138428, -4.499762 ], [ 152.825317, -4.762573 ], [ 152.638550, -4.171115 ], [ 152.402344, -3.787522 ], [ 151.380615, -3.030812 ], [ 150.661011, -2.740044 ], [ 150.935669, -2.498597 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Solomon Islands", "sov_a3": "SLB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Solomon Islands", "adm0_a3": "SLB", "geou_dif": 0, "geounit": "Solomon Islands", "gu_a3": "SLB", "su_dif": 0, "subunit": "Solomon Islands", "su_a3": "SLB", "brk_diff": 0, "name": "Solomon Is.", "name_long": "Solomon Islands", "brk_a3": "SLB", "brk_name": "Solomon Is.", "abbrev": "S. Is.", "postal": "SB", "name_sort": "Solomon Islands", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 595613, "gdp_md_est": 1078, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SB", "iso_a3": "SLB", "iso_n3": "090", "un_a3": "090", "wb_a2": "SB", "wb_a3": "SLB", "woe_id": -99, "adm0_a3_is": "SLB", "adm0_a3_us": "SLB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 15, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 156.538696, -6.599131 ], [ 157.137451, -7.019120 ], [ 157.500000, -7.313433 ], [ 157.532959, -7.346123 ], [ 157.500000, -7.357019 ], [ 157.335205, -7.400600 ], [ 156.901245, -7.171751 ], [ 156.489258, -6.762806 ], [ 156.538696, -6.599131 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "name_sort": "Japan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "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": [ [ [ [ 141.394043, 41.310824 ], [ 141.525879, 40.979898 ], [ 141.910400, 39.993956 ], [ 141.882935, 39.181175 ], [ 140.954590, 38.177751 ], [ 140.971069, 37.142803 ], [ 140.597534, 36.346103 ], [ 140.773315, 35.844535 ], [ 140.251465, 35.142371 ], [ 138.971558, 34.669359 ], [ 137.213745, 34.610606 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 134.560547, 34.533712 ], [ 134.560547, 35.728677 ], [ 134.604492, 35.733136 ], [ 135.000000, 35.657296 ], [ 135.675659, 35.527756 ], [ 136.719360, 37.309014 ], [ 137.389526, 36.831272 ], [ 139.421997, 38.216604 ], [ 140.053711, 39.440435 ], [ 139.877930, 40.563895 ], [ 140.158081, 40.979898 ], [ 140.300903, 41.195190 ], [ 140.971069, 41.310824 ], [ 141.394043, 41.310824 ] ] ], [ [ [ 134.560547, 34.175453 ], [ 134.637451, 34.152727 ], [ 134.763794, 33.806538 ], [ 134.560547, 33.587167 ], [ 134.560547, 34.175453 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "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": [ [ [ [ 137.197266, 56.022948 ], [ 136.796265, 55.776573 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 135.000000, 43.520672 ], [ 134.868164, 43.401056 ], [ 134.560547, 43.265206 ], [ 134.560547, 47.683881 ], [ 135.000000, 48.436490 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.476563 ], [ 134.560547, 48.396385 ], [ 134.560547, 56.022948 ], [ 137.197266, 56.022948 ] ] ], [ [ [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ] ] ], [ [ [ 157.939453, 56.022948 ], [ 157.939453, 51.757640 ], [ 157.500000, 51.474540 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.566406, 55.776573 ], [ 155.648804, 56.022948 ], [ 157.939453, 56.022948 ] ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 135.021973, 48.480204 ], [ 135.000000, 48.436490 ], [ 134.560547, 47.683881 ], [ 134.560547, 48.396385 ], [ 135.000000, 48.476563 ], [ 135.021973, 48.480204 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "name_sort": "Japan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "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": [ [ [ [ 141.366577, 41.380930 ], [ 141.525879, 40.979898 ], [ 141.657715, 40.647304 ], [ 139.938354, 40.647304 ], [ 140.300903, 41.195190 ], [ 141.366577, 41.380930 ] ] ], [ [ [ 141.965332, 45.552525 ], [ 143.140869, 44.512176 ], [ 143.909912, 44.174325 ], [ 144.613037, 43.961191 ], [ 145.316162, 44.386692 ], [ 145.541382, 43.265206 ], [ 144.058228, 42.988576 ], [ 143.179321, 41.996243 ], [ 141.608276, 42.682435 ], [ 141.064453, 41.586688 ], [ 139.954834, 41.570252 ], [ 139.817505, 42.565219 ], [ 140.311890, 43.337165 ], [ 141.377563, 43.389082 ], [ 141.668701, 44.774036 ], [ 141.965332, 45.552525 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 157.939453, 61.595946 ], [ 157.500000, 61.538406 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 136.796265, 55.776573 ], [ 136.395264, 55.528631 ], [ 134.560547, 55.528631 ], [ 134.560547, 66.687784 ], [ 157.939453, 66.687784 ], [ 157.939453, 61.595946 ] ] ], [ [ [ 157.939453, 57.996455 ], [ 157.939453, 55.528631 ], [ 155.484009, 55.528631 ], [ 155.566406, 55.776573 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 157.500000, 57.932351 ], [ 157.939453, 57.996455 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "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": [ [ [ [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 157.500000, 70.991928 ], [ 157.939453, 70.956113 ], [ 157.939453, 66.337505 ], [ 134.560547, 66.337505 ], [ 134.560547, 71.498780 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ] ] ], [ [ [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ] ] ], [ [ [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 164.690552, -82.620052 ], [ 164.943237, -82.676285 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.088894 ], [ 157.060547, -85.088894 ], [ 157.060547, -82.620052 ], [ 164.690552, -82.620052 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "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": "Polygon", "coordinates": [ [ [ 163.910522, -79.088462 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 161.751709, -79.171335 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 164.943237, -82.676285 ], [ 165.201416, -82.732092 ], [ 157.060547, -82.732092 ], [ 157.060547, -79.088462 ], [ 163.910522, -79.088462 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "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": "Polygon", "coordinates": [ [ [ 167.832642, -73.898111 ], [ 167.629395, -74.019543 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 161.751709, -79.171335 ], [ 161.630859, -79.253586 ], [ 157.060547, -79.253586 ], [ 157.060547, -73.898111 ], [ 167.832642, -73.898111 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "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": "Polygon", "coordinates": [ [ [ 157.060547, -69.403514 ], [ 157.500000, -69.438269 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.629395, -74.019543 ], [ 167.426147, -74.140084 ], [ 157.060547, -74.140084 ], [ 157.060547, -69.403514 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "New Zealand", "sov_a3": "NZ1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "New Zealand", "adm0_a3": "NZL", "geou_dif": 0, "geounit": "New Zealand", "gu_a3": "NZL", "su_dif": 0, "subunit": "New Zealand", "su_a3": "NZL", "brk_diff": 0, "name": "New Zealand", "name_long": "New Zealand", "brk_a3": "NZL", "brk_name": "New Zealand", "abbrev": "N.Z.", "postal": "NZ", "formal_en": "New Zealand", "name_sort": "New Zealand", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 4213418, "gdp_md_est": 116700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NZ", "iso_a3": "NZL", "iso_n3": "554", "un_a3": "554", "wb_a2": "NZ", "wb_a3": "NZL", "woe_id": -99, "adm0_a3_is": "NZL", "adm0_a3_us": "NZL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.875366, -40.647304 ], [ 173.051147, -40.979898 ], [ 173.243408, -41.331451 ], [ 173.864136, -40.979898 ], [ 173.957520, -40.925965 ], [ 173.990479, -40.979898 ], [ 174.243164, -41.347948 ], [ 174.243164, -41.767215 ], [ 173.875122, -42.232585 ], [ 173.221436, -42.968482 ], [ 172.710571, -43.369119 ], [ 173.078613, -43.850374 ], [ 172.304077, -43.862258 ], [ 171.452637, -44.241264 ], [ 171.183472, -44.894796 ], [ 170.612183, -45.905300 ], [ 169.332275, -46.638122 ], [ 168.409424, -46.619261 ], [ 167.761230, -46.290020 ], [ 166.673584, -46.217852 ], [ 166.508789, -45.851760 ], [ 167.041626, -45.108423 ], [ 168.299561, -44.123085 ], [ 168.947754, -43.933506 ], [ 169.667358, -43.552529 ], [ 170.524292, -43.028745 ], [ 171.123047, -42.512602 ], [ 171.567993, -41.767215 ], [ 171.947021, -41.512691 ], [ 172.089844, -40.979898 ], [ 172.095337, -40.955011 ], [ 172.562256, -40.647304 ], [ 172.875366, -40.647304 ] ] ], [ [ [ 176.473389, -40.647304 ], [ 176.237183, -40.979898 ], [ 176.011963, -41.286062 ], [ 175.237427, -41.685220 ], [ 175.067139, -41.422134 ], [ 174.649658, -41.277806 ], [ 174.858398, -40.979898 ], [ 175.094604, -40.647304 ], [ 176.473389, -40.647304 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "New Caledonia", "adm0_a3": "NCL", "geou_dif": 0, "geounit": "New Caledonia", "gu_a3": "NCL", "su_dif": 0, "subunit": "New Caledonia", "su_a3": "NCL", "brk_diff": 0, "name": "New Caledonia", "name_long": "New Caledonia", "brk_a3": "NCL", "brk_name": "New Caledonia", "abbrev": "New C.", "postal": "NC", "formal_en": "New Caledonia", "formal_fr": "Nouvelle-Calédonie", "note_adm0": "Fr.", "name_sort": "New Caledonia", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 227436, "gdp_md_est": 3158, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "NC", "iso_a3": "NCL", "iso_n3": "540", "un_a3": "540", "wb_a2": "NC", "wb_a3": "NCL", "woe_id": -99, "adm0_a3_is": "NCL", "adm0_a3_us": "NCL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 166.376953, -21.534847 ], [ 166.596680, -21.698265 ], [ 166.871338, -21.943046 ], [ 167.118530, -22.156883 ], [ 166.739502, -22.395793 ], [ 166.184692, -22.126355 ], [ 165.888062, -21.943046 ], [ 165.470581, -21.677848 ], [ 165.294800, -21.534847 ], [ 166.376953, -21.534847 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "New Zealand", "sov_a3": "NZ1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "New Zealand", "adm0_a3": "NZL", "geou_dif": 0, "geounit": "New Zealand", "gu_a3": "NZL", "su_dif": 0, "subunit": "New Zealand", "su_a3": "NZL", "brk_diff": 0, "name": "New Zealand", "name_long": "New Zealand", "brk_a3": "NZL", "brk_name": "New Zealand", "abbrev": "N.Z.", "postal": "NZ", "formal_en": "New Zealand", "name_sort": "New Zealand", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 4213418, "gdp_md_est": 116700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NZ", "iso_a3": "NZL", "iso_n3": "554", "un_a3": "554", "wb_a2": "NZ", "wb_a3": "NZL", "woe_id": -99, "adm0_a3_is": "NZL", "adm0_a3_us": "NZL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.798462, -40.492915 ], [ 173.018188, -40.917664 ], [ 173.051147, -40.979898 ], [ 173.232422, -41.310824 ], [ 172.001953, -41.310824 ], [ 172.089844, -40.979898 ], [ 172.095337, -40.955011 ], [ 172.798462, -40.492915 ] ] ], [ [ [ 173.001709, -34.447689 ], [ 173.551025, -35.003003 ], [ 174.325562, -35.263562 ], [ 174.611206, -36.155618 ], [ 175.336304, -37.208457 ], [ 175.352783, -36.522881 ], [ 175.808716, -36.796090 ], [ 175.957031, -37.553288 ], [ 176.759033, -37.879189 ], [ 177.434692, -37.957192 ], [ 178.005981, -37.579413 ], [ 178.516846, -37.692514 ], [ 178.269653, -38.582526 ], [ 177.967529, -39.164141 ], [ 177.203979, -39.142842 ], [ 176.934814, -39.448919 ], [ 177.028198, -39.876019 ], [ 176.885376, -40.065461 ], [ 176.237183, -40.979898 ], [ 176.011963, -41.286062 ], [ 175.968018, -41.310824 ], [ 174.732056, -41.310824 ], [ 174.649658, -41.277806 ], [ 174.858398, -40.979898 ], [ 175.226440, -40.455307 ], [ 174.896851, -39.905523 ], [ 173.820190, -39.508279 ], [ 173.847656, -39.142842 ], [ 174.572754, -38.796908 ], [ 174.743042, -38.026459 ], [ 174.693604, -37.378888 ], [ 174.287109, -36.708064 ], [ 174.314575, -36.531709 ], [ 173.836670, -36.120128 ], [ 173.051147, -35.236646 ], [ 172.633667, -34.524661 ], [ 173.001709, -34.447689 ] ] ], [ [ [ 173.990479, -40.979898 ], [ 174.221191, -41.310824 ], [ 173.281860, -41.310824 ], [ 173.864136, -40.979898 ], [ 173.957520, -40.925965 ], [ 173.990479, -40.979898 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Fiji", "sov_a3": "FJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Fiji", "adm0_a3": "FJI", "geou_dif": 0, "geounit": "Fiji", "gu_a3": "FJI", "su_dif": 0, "subunit": "Fiji", "su_a3": "FJI", "brk_diff": 0, "name": "Fiji", "name_long": "Fiji", "brk_a3": "FJI", "brk_name": "Fiji", "abbrev": "Fiji", "postal": "FJ", "formal_en": "Republic of Fiji", "name_sort": "Fiji", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 944720, "gdp_md_est": 3579, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "FJ", "iso_a3": "FJI", "iso_n3": "242", "un_a3": "242", "wb_a2": "FJ", "wb_a3": "FJI", "woe_id": -99, "adm0_a3_is": "FJI", "adm0_a3_us": "FJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.368530, -17.334908 ], [ 178.714600, -17.628317 ], [ 178.549805, -18.145852 ], [ 177.929077, -18.286734 ], [ 177.379761, -18.161511 ], [ 177.280884, -17.722526 ], [ 177.665405, -17.376853 ], [ 178.121338, -17.502628 ], [ 178.368530, -17.334908 ] ] ], [ [ [ 180.000000, -16.066929 ], [ 180.000000, -16.551962 ], [ 179.362793, -16.799282 ], [ 178.720093, -17.009515 ], [ 178.593750, -16.636192 ], [ 179.093628, -16.430816 ], [ 179.412231, -16.378121 ], [ 180.000000, -16.066929 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Solomon Islands", "sov_a3": "SLB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Solomon Islands", "adm0_a3": "SLB", "geou_dif": 0, "geounit": "Solomon Islands", "gu_a3": "SLB", "su_dif": 0, "subunit": "Solomon Islands", "su_a3": "SLB", "brk_diff": 0, "name": "Solomon Is.", "name_long": "Solomon Islands", "brk_a3": "SLB", "brk_name": "Solomon Is.", "abbrev": "S. Is.", "postal": "SB", "name_sort": "Solomon Islands", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 595613, "gdp_md_est": 1078, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SB", "iso_a3": "SLB", "iso_n3": "090", "un_a3": "090", "wb_a2": "SB", "wb_a3": "SLB", "woe_id": -99, "adm0_a3_is": "SLB", "adm0_a3_us": "SLB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 15, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.317749, -10.201407 ], [ 161.916504, -10.444598 ], [ 162.114258, -10.482410 ], [ 162.394409, -10.822515 ], [ 161.696777, -10.817120 ], [ 161.317749, -10.201407 ] ] ], [ [ [ 159.702759, -9.237671 ], [ 160.361938, -9.400291 ], [ 160.686035, -9.606166 ], [ 160.850830, -9.871452 ], [ 160.460815, -9.893099 ], [ 159.845581, -9.790264 ], [ 159.636841, -9.638661 ], [ 159.702759, -9.237671 ] ] ], [ [ [ 160.916748, -8.314777 ], [ 161.279297, -9.118368 ], [ 161.674805, -9.595334 ], [ 161.526489, -9.779438 ], [ 160.784912, -8.912207 ], [ 160.576172, -8.314777 ], [ 160.916748, -8.314777 ] ] ], [ [ [ 158.356934, -7.318882 ], [ 158.818359, -7.558547 ], [ 159.636841, -8.015716 ], [ 159.873047, -8.336518 ], [ 159.916992, -8.537565 ], [ 159.131470, -8.113615 ], [ 158.582153, -7.754537 ], [ 158.208618, -7.416942 ], [ 158.356934, -7.318882 ] ] ], [ [ [ 157.060547, -6.964597 ], [ 157.137451, -7.019120 ], [ 157.500000, -7.313433 ], [ 157.532959, -7.346123 ], [ 157.500000, -7.357019 ], [ 157.335205, -7.400600 ], [ 157.060547, -7.258945 ], [ 157.060547, -6.964597 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Vanuatu", "sov_a3": "VUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vanuatu", "adm0_a3": "VUT", "geou_dif": 0, "geounit": "Vanuatu", "gu_a3": "VUT", "su_dif": 0, "subunit": "Vanuatu", "su_a3": "VUT", "brk_diff": 0, "name": "Vanuatu", "name_long": "Vanuatu", "brk_a3": "VUT", "brk_name": "Vanuatu", "abbrev": "Van.", "postal": "VU", "formal_en": "Republic of Vanuatu", "name_sort": "Vanuatu", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 218519, "gdp_md_est": 988.5, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VU", "iso_a3": "VUT", "iso_n3": "548", "un_a3": "548", "wb_a2": "VU", "wb_a3": "VUT", "woe_id": -99, "adm0_a3_is": "VUT", "adm0_a3_us": "VUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": 2, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.211914, -15.887376 ], [ 167.843628, -16.462427 ], [ 167.514038, -16.594081 ], [ 167.178955, -16.156645 ], [ 167.211914, -15.887376 ] ] ], [ [ [ 166.624146, -14.626109 ], [ 167.107544, -14.928862 ], [ 167.266846, -15.739388 ], [ 166.997681, -15.612456 ], [ 166.788940, -15.665354 ], [ 166.646118, -15.390136 ], [ 166.624146, -14.626109 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 162.075806, 56.022948 ], [ 161.949463, 55.776573 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 157.500000, 51.474540 ], [ 157.060547, 51.189673 ], [ 157.060547, 56.022948 ], [ 162.075806, 56.022948 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "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": "Polygon", "coordinates": [ [ [ 180.000000, 66.687784 ], [ 180.000000, 64.981682 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.949463, 55.776573 ], [ 161.823120, 55.528631 ], [ 157.060547, 55.528631 ], [ 157.060547, 57.871053 ], [ 157.500000, 57.932351 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 157.500000, 61.538406 ], [ 157.060547, 61.480760 ], [ 157.060547, 66.687784 ], [ 180.000000, 66.687784 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "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": [ [ [ [ 157.060547, 71.027678 ], [ 157.500000, 70.991928 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 66.337505 ], [ 157.060547, 66.337505 ], [ 157.060547, 71.027678 ] ] ], [ [ [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 0, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -169.664612, -83.956169 ], [ -169.571228, -83.979259 ], [ -169.002686, -84.117659 ], [ -168.750000, -84.181769 ], [ -168.530273, -84.237190 ], [ -168.530273, -85.070048 ], [ -180.000000, -85.070048 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139294 ], [ -177.258911, -84.452865 ], [ -177.140808, -84.417709 ], [ -176.086121, -84.099052 ], [ -175.948792, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.383240, -84.534302 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060808 ], [ -171.518555, -83.979259 ], [ -171.134033, -83.956169 ], [ -169.664612, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 0, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -169.953003, -83.884610 ], [ -169.571228, -83.979259 ], [ -169.477844, -84.002262 ], [ -171.903076, -84.002262 ], [ -171.518555, -83.979259 ], [ -169.953003, -83.884610 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 0, "y": 17 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Fiji", "sov_a3": "FJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Fiji", "adm0_a3": "FJI", "geou_dif": 0, "geounit": "Fiji", "gu_a3": "FJI", "su_dif": 0, "subunit": "Fiji", "su_a3": "FJI", "brk_diff": 0, "name": "Fiji", "name_long": "Fiji", "brk_a3": "FJI", "brk_name": "Fiji", "abbrev": "Fiji", "postal": "FJ", "formal_en": "Republic of Fiji", "name_sort": "Fiji", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 944720, "gdp_md_est": 3579, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "FJ", "iso_a3": "FJI", "iso_n3": "242", "un_a3": "242", "wb_a2": "FJ", "wb_a3": "FJI", "woe_id": -99, "adm0_a3_is": "FJI", "adm0_a3_us": "FJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -179.794006, -16.019416 ], [ -179.917603, -16.499299 ], [ -180.000000, -16.554594 ], [ -180.000000, -16.066929 ], [ -179.794006, -16.019416 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 0, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -171.732788, 63.783699 ], [ -171.114807, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.432089 ], [ -168.750000, 63.306514 ], [ -168.689575, 63.297876 ], [ -168.750000, 63.218780 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.290833, 63.195257 ], [ -170.672607, 63.376756 ], [ -171.554260, 63.318850 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.783699 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ -171.197205, 66.600676 ], [ -171.013184, 66.513260 ], [ -169.900818, 65.977798 ], [ -170.892334, 65.541408 ], [ -172.532043, 65.438860 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.252948 ], [ -173.894348, 64.282760 ], [ -174.655151, 64.632115 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.223206, 65.520930 ], [ -178.360291, 65.390867 ], [ -178.904114, 65.740785 ], [ -178.687134, 66.112731 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.404588 ], [ -180.000000, 64.980521 ], [ -180.000000, 66.600676 ], [ -175.012207, 66.600676 ], [ -175.014954, 66.585400 ], [ -174.822693, 66.513260 ], [ -174.342041, 66.336403 ], [ -174.396973, 66.513260 ], [ -174.424438, 66.600676 ], [ -171.197205, 66.600676 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 0, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.014954, 66.585400 ], [ -174.822693, 66.513260 ], [ -174.583740, 66.425537 ], [ -180.000000, 66.425537 ], [ -180.000000, 68.964307 ] ] ], [ [ [ -171.859131, 66.913911 ], [ -171.013184, 66.513260 ], [ -170.829163, 66.425537 ], [ -174.369507, 66.425537 ], [ -174.396973, 66.513260 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.913911 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 0, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -179.873657, 71.557955 ], [ -179.024963, 71.556217 ], [ -177.580261, 71.269949 ], [ -177.665405, 71.133652 ], [ -178.695374, 70.893280 ], [ -180.000000, 70.832953 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 1, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -168.969727, -84.125535 ], [ -168.750000, -84.181769 ], [ -168.530273, -84.237190 ], [ -167.022400, -84.570286 ], [ -164.182434, -84.825066 ], [ -162.575684, -85.051129 ], [ -162.435608, -85.070048 ], [ -168.969727, -85.070048 ], [ -168.969727, -84.125535 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 1, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -159.433594, -79.129976 ], [ -159.408875, -79.171335 ], [ -159.208374, -79.496652 ], [ -161.128235, -79.633945 ], [ -162.441101, -79.281206 ], [ -162.627869, -79.171335 ], [ -162.696533, -79.129976 ], [ -159.433594, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 1, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ -163.108521, -78.222831 ], [ -161.246338, -78.379877 ], [ -160.246582, -78.693184 ], [ -159.483032, -79.046269 ], [ -159.408875, -79.171335 ], [ -159.384155, -79.212538 ], [ -162.556458, -79.212538 ], [ -162.627869, -79.171335 ], [ -163.028870, -78.928746 ], [ -163.067322, -78.869518 ], [ -163.715515, -78.595299 ], [ -163.108521, -78.222831 ] ] ], [ [ [ -158.365173, -76.888876 ], [ -157.876282, -76.986954 ], [ -157.500000, -77.118644 ], [ -157.280273, -77.194959 ], [ -157.280273, -78.372683 ], [ -157.500000, -78.274853 ], [ -158.052063, -78.025574 ], [ -158.365173, -76.888876 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 1, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.280273, 21.171606 ], [ -157.280273, 21.097313 ], [ -157.326965, 21.099875 ], [ -157.280273, 21.171606 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.942200, 21.654875 ], [ -157.653809, 21.322640 ], [ -157.708740, 21.266340 ], [ -157.780151, 21.279137 ], [ -158.128967, 21.314964 ], [ -158.255310, 21.539957 ], [ -158.293762, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.362183, 22.146708 ], [ -159.345703, 21.983801 ], [ -159.392395, 21.943046 ], [ -159.463806, 21.884438 ], [ -159.576416, 21.943046 ], [ -159.801636, 22.067823 ], [ -159.749451, 22.139076 ], [ -159.735718, 22.146708 ], [ -159.362183, 22.146708 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 1, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.215377 ], [ -159.345703, 21.983801 ], [ -159.392395, 21.943046 ], [ -159.463806, 21.884438 ], [ -159.576416, 21.943046 ], [ -159.801636, 22.067823 ], [ -159.749451, 22.139076 ], [ -159.598389, 22.238260 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 1, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -158.694763, 55.899956 ], [ -159.032593, 55.776573 ], [ -159.603882, 55.567475 ], [ -160.290527, 55.645049 ], [ -161.224365, 55.365064 ], [ -162.237854, 55.024873 ], [ -163.070068, 54.691297 ], [ -164.786682, 54.404544 ], [ -164.943237, 54.573654 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.349451 ], [ -162.037354, 55.776573 ], [ -161.806641, 55.895336 ], [ -161.751709, 55.899956 ], [ -158.694763, 55.899956 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 1, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.280273, 58.857803 ], [ -157.500000, 58.799516 ], [ -158.194885, 58.616917 ], [ -158.518982, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.931587 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.672654 ], [ -162.056580, 59.267284 ], [ -161.875305, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.819885, 59.799253 ], [ -164.663086, 60.268428 ], [ -165.346985, 60.508639 ], [ -165.352478, 61.074231 ], [ -166.121521, 61.500424 ], [ -166.052856, 61.606396 ], [ -165.981445, 61.710706 ], [ -157.280273, 61.710706 ], [ -157.280273, 58.857803 ] ] ], [ [ [ -166.470337, 60.385362 ], [ -165.676575, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.192932, 59.755012 ], [ -166.849365, 59.942632 ], [ -167.456360, 60.213898 ], [ -166.470337, 60.385362 ] ] ], [ [ [ -157.280273, 58.644082 ], [ -157.280273, 56.742181 ], [ -157.500000, 56.669811 ], [ -158.117981, 56.464008 ], [ -158.433838, 55.995309 ], [ -159.032593, 55.776573 ], [ -159.370422, 55.652798 ], [ -162.279053, 55.652798 ], [ -162.037354, 55.776573 ], [ -161.806641, 55.895336 ], [ -160.565186, 56.009131 ], [ -160.070801, 56.418459 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.218121 ], [ -157.725220, 57.570361 ], [ -157.552185, 58.329683 ], [ -157.500000, 58.387318 ], [ -157.280273, 58.644082 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 1, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.280273, 66.600676 ], [ -157.280273, 61.501734 ], [ -166.121521, 61.501734 ], [ -166.052856, 61.606396 ], [ -165.737000, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.753967, 63.220018 ], [ -163.067322, 63.059937 ], [ -162.262573, 63.542434 ], [ -161.534729, 63.456647 ], [ -160.773926, 63.766708 ], [ -160.960693, 64.223104 ], [ -161.518250, 64.402872 ], [ -160.779419, 64.789338 ], [ -161.394653, 64.777637 ], [ -162.454834, 64.560241 ], [ -162.759705, 64.338718 ], [ -163.547974, 64.560241 ], [ -164.962463, 64.447927 ], [ -166.426392, 64.687365 ], [ -166.846619, 65.089489 ], [ -168.112793, 65.670724 ], [ -166.706543, 66.089364 ], [ -164.767456, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.655090, 66.576667 ], [ -163.671570, 66.513260 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.117180 ], [ -162.196655, 66.513260 ], [ -162.312012, 66.600676 ], [ -157.280273, 66.600676 ] ] ], [ [ [ -168.969727, 63.336111 ], [ -168.750000, 63.306514 ], [ -168.689575, 63.297876 ], [ -168.750000, 63.218780 ], [ -168.771973, 63.189064 ], [ -168.969727, 63.134503 ], [ -168.969727, 63.336111 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 1, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.655090, 66.576667 ], [ -163.671570, 66.513260 ], [ -163.696289, 66.425537 ], [ -165.171204, 66.425537 ], [ -164.767456, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.655090, 66.576667 ] ] ], [ [ [ -157.280273, 66.425537 ], [ -162.081299, 66.425537 ], [ -162.196655, 66.513260 ], [ -162.490540, 66.736648 ], [ -163.721008, 67.116613 ], [ -164.432373, 67.616543 ], [ -165.390930, 68.043542 ], [ -166.766968, 68.359712 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.915946 ], [ -163.168945, 69.371606 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.935974, 70.447832 ], [ -160.235596, 70.612614 ], [ -159.925232, 70.685421 ], [ -157.280273, 70.685421 ], [ -157.280273, 66.425537 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 1, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -157.280273, 71.117659 ], [ -157.280273, 70.539543 ], [ -160.548706, 70.539543 ], [ -160.235596, 70.612614 ], [ -159.040833, 70.892381 ], [ -158.120728, 70.824836 ], [ -157.500000, 71.041960 ], [ -157.280273, 71.117659 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 2, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -146.030273, -83.956169 ], [ -146.030273, -84.539009 ], [ -146.250000, -84.536918 ], [ -146.829529, -84.531162 ], [ -150.062256, -84.295908 ], [ -150.746155, -83.979259 ], [ -150.795593, -83.956169 ], [ -146.030273, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 2, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -146.030273, -82.648222 ], [ -146.030273, -84.002262 ], [ -150.699463, -84.002262 ], [ -150.746155, -83.979259 ], [ -150.905457, -83.904183 ], [ -153.588867, -83.688427 ], [ -153.410339, -83.237720 ], [ -153.039551, -82.826337 ], [ -152.885742, -82.676285 ], [ -152.858276, -82.648222 ], [ -146.030273, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 2, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -146.030273, -81.059130 ], [ -146.030273, -82.704241 ], [ -152.915955, -82.704241 ], [ -152.885742, -82.676285 ], [ -152.666016, -82.454176 ], [ -152.863770, -82.042319 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.838074, -81.101715 ], [ -154.410095, -81.160574 ], [ -153.407593, -81.093214 ], [ -152.904968, -81.059130 ], [ -151.864014, -81.059130 ], [ -151.715698, -81.093214 ], [ -150.650024, -81.336913 ], [ -149.164124, -81.093214 ], [ -148.960876, -81.059130 ], [ -146.030273, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 2, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ -156.838074, -81.101715 ], [ -155.805359, -81.127169 ], [ -156.717224, -81.127169 ], [ -156.838074, -81.101715 ] ] ], [ [ [ -151.715698, -81.093214 ], [ -151.570129, -81.127169 ], [ -153.910217, -81.127169 ], [ -153.407593, -81.093214 ], [ -152.100220, -81.003896 ], [ -151.715698, -81.093214 ] ] ], [ [ [ -146.030273, -81.127169 ], [ -149.370117, -81.127169 ], [ -149.164124, -81.093214 ], [ -148.867493, -81.043322 ], [ -147.222290, -80.670662 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.065491, -79.651722 ], [ -149.532166, -79.358068 ], [ -151.589355, -79.299070 ], [ -153.273010, -79.171335 ], [ -153.391113, -79.162043 ], [ -154.031067, -79.129976 ], [ -146.030273, -79.129976 ], [ -146.030273, -81.127169 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 2, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -146.030273, -76.790701 ], [ -146.030273, -79.212538 ], [ -152.734680, -79.212538 ], [ -153.273010, -79.171335 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063999 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -157.500000, -78.274853 ], [ -157.719727, -78.176211 ], [ -157.719727, -77.041882 ], [ -157.500000, -77.118644 ], [ -156.975403, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.745422, -77.065265 ], [ -152.921448, -77.496391 ], [ -151.333923, -77.398495 ], [ -150.004578, -77.182779 ], [ -148.749390, -76.908799 ], [ -148.515930, -76.840816 ], [ -148.342896, -76.790701 ], [ -146.030273, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 2, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -146.030273, -75.356870 ], [ -146.030273, -76.890745 ], [ -148.686218, -76.890745 ], [ -148.515930, -76.840816 ], [ -147.615051, -76.575609 ], [ -146.250000, -76.486687 ], [ -146.104431, -76.477699 ], [ -146.145630, -76.105414 ], [ -146.250000, -75.993510 ], [ -146.497192, -75.732565 ], [ -146.250000, -75.437887 ], [ -146.203308, -75.379765 ], [ -146.030273, -75.356870 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 2, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.249314 ], [ -155.404358, 20.081729 ], [ -155.225830, 19.993998 ], [ -155.063782, 19.859727 ], [ -154.808350, 19.510609 ], [ -154.833069, 19.453644 ], [ -155.223083, 19.241143 ], [ -155.544434, 19.085480 ], [ -155.690002, 18.916680 ], [ -155.937195, 19.059522 ], [ -155.909729, 19.339653 ], [ -156.074524, 19.704658 ], [ -156.025085, 19.815806 ], [ -155.852051, 19.978511 ], [ -155.920715, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.612854, 21.012727 ], [ -156.258545, 20.917831 ], [ -155.997620, 20.766387 ], [ -156.080017, 20.645636 ], [ -156.415100, 20.573653 ], [ -156.588135, 20.784363 ], [ -156.703491, 20.866511 ], [ -156.711731, 20.928093 ], [ -156.612854, 21.012727 ] ] ], [ [ [ -157.252808, 21.220261 ], [ -156.758423, 21.179290 ], [ -156.791382, 21.069123 ], [ -157.326965, 21.099875 ], [ -157.252808, 21.220261 ] ] ], [ [ [ -157.719727, 21.399377 ], [ -157.653809, 21.322640 ], [ -157.708740, 21.266340 ], [ -157.719727, 21.268900 ], [ -157.719727, 21.399377 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 2, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -146.030273, 61.710706 ], [ -146.030273, 60.496468 ], [ -146.250000, 60.576175 ], [ -147.115173, 60.885027 ], [ -148.224792, 60.673179 ], [ -148.018799, 59.978380 ], [ -148.570862, 59.915107 ], [ -149.729919, 59.706556 ], [ -150.608826, 59.369593 ], [ -151.718445, 59.156220 ], [ -151.861267, 59.745326 ], [ -151.410828, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.284752 ], [ -151.896973, 60.728287 ], [ -152.580872, 60.062099 ], [ -154.020081, 59.351396 ], [ -153.289490, 58.864905 ], [ -154.234314, 58.147519 ], [ -155.308228, 57.729086 ], [ -156.310730, 57.424252 ], [ -156.557922, 56.980911 ], [ -157.500000, 56.669811 ], [ -157.719727, 56.595791 ], [ -157.719727, 57.583614 ], [ -157.552185, 58.329683 ], [ -157.500000, 58.387318 ], [ -157.044067, 58.920246 ], [ -157.500000, 58.799516 ], [ -157.719727, 58.741132 ], [ -157.719727, 61.710706 ], [ -146.030273, 61.710706 ] ] ], [ [ [ -153.229065, 57.970244 ], [ -152.567139, 57.901715 ], [ -152.141418, 57.592447 ], [ -153.006592, 57.116859 ], [ -154.006348, 56.736155 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.461203 ], [ -153.764648, 57.816967 ], [ -153.229065, 57.970244 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 2, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -146.030273, 66.600676 ], [ -146.030273, 61.501734 ], [ -157.719727, 61.501734 ], [ -157.719727, 66.600676 ], [ -146.030273, 66.600676 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 2, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -152.248535, 70.685421 ], [ -152.267761, 70.612614 ], [ -152.270508, 70.600758 ], [ -150.740662, 70.430360 ], [ -149.721680, 70.530391 ], [ -147.615051, 70.214875 ], [ -146.250000, 70.147827 ], [ -146.030273, 70.137565 ], [ -146.030273, 66.425537 ], [ -157.719727, 66.425537 ], [ -157.719727, 70.685421 ], [ -152.248535, 70.685421 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 2, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -156.582642, 71.357945 ], [ -155.069275, 71.147857 ], [ -154.344177, 70.697228 ], [ -153.901978, 70.890583 ], [ -152.210083, 70.830248 ], [ -152.267761, 70.612614 ], [ -152.270508, 70.600758 ], [ -151.726685, 70.539543 ], [ -157.719727, 70.539543 ], [ -157.719727, 70.965073 ], [ -157.500000, 71.041960 ], [ -156.582642, 71.357945 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 3, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -134.780273, -83.956169 ], [ -134.780273, -85.070048 ], [ -143.399048, -85.070048 ], [ -143.212280, -85.051129 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570286 ], [ -146.250000, -84.536918 ], [ -146.469727, -84.534825 ], [ -146.469727, -83.956169 ], [ -134.780273, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 3, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -134.780273, -82.648222 ], [ -134.780273, -84.002262 ], [ -146.469727, -84.002262 ], [ -146.469727, -82.648222 ], [ -134.780273, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 3, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -134.780273, -81.059130 ], [ -134.780273, -82.704241 ], [ -146.469727, -82.704241 ], [ -146.469727, -81.059130 ], [ -134.780273, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 3, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -134.780273, -79.129976 ], [ -134.780273, -81.127169 ], [ -146.469727, -81.127169 ], [ -146.469727, -80.359755 ], [ -146.420288, -80.337653 ], [ -146.469727, -80.278004 ], [ -146.469727, -79.129976 ], [ -134.780273, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 3, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -134.780273, -76.790701 ], [ -134.780273, -79.212538 ], [ -146.469727, -79.212538 ], [ -146.469727, -76.790701 ], [ -134.780273, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 3, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -135.216980, -74.302152 ], [ -135.000000, -74.318493 ], [ -134.780273, -74.334817 ], [ -134.780273, -76.890745 ], [ -146.469727, -76.890745 ], [ -146.469727, -76.501441 ], [ -146.250000, -76.486687 ], [ -146.104431, -76.477699 ], [ -146.145630, -76.105414 ], [ -146.250000, -75.993510 ], [ -146.469727, -75.760967 ], [ -146.469727, -75.701395 ], [ -146.250000, -75.437887 ], [ -146.203308, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.324646, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.086446 ], [ -140.210266, -75.066641 ], [ -138.858948, -74.968655 ], [ -137.507629, -74.733232 ], [ -136.430969, -74.517689 ], [ -135.216980, -74.302152 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 3, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -134.780273, 61.710706 ], [ -134.780273, 59.171706 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.324783 ], [ -135.477905, 59.788198 ], [ -136.480408, 59.464617 ], [ -137.452698, 58.906064 ], [ -138.342590, 59.562158 ], [ -139.040222, 60.000359 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.306546 ], [ -140.998535, 61.710706 ], [ -134.780273, 61.710706 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -140.998535, 61.710706 ], [ -140.998535, 60.306546 ], [ -140.015259, 60.277962 ], [ -139.040222, 60.000359 ], [ -138.342590, 59.562158 ], [ -137.452698, 58.906064 ], [ -136.480408, 59.464617 ], [ -135.477905, 59.788198 ], [ -135.000000, 59.324783 ], [ -134.945068, 59.271495 ], [ -134.780273, 59.171706 ], [ -134.780273, 58.170702 ], [ -135.000000, 58.185185 ], [ -135.038452, 58.188080 ], [ -136.628723, 58.212685 ], [ -137.801514, 58.500870 ], [ -139.869690, 59.538495 ], [ -140.825500, 59.728716 ], [ -142.575073, 60.085393 ], [ -143.959351, 60.000359 ], [ -145.925903, 60.459926 ], [ -146.250000, 60.576175 ], [ -146.469727, 60.654340 ], [ -146.469727, 61.710706 ], [ -140.998535, 61.710706 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 3, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -134.780273, 66.600676 ], [ -134.780273, 61.501734 ], [ -140.998535, 61.501734 ], [ -140.998535, 61.606396 ], [ -140.993042, 66.000150 ], [ -140.993042, 66.600676 ], [ -134.780273, 66.600676 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -140.993042, 66.600676 ], [ -140.993042, 66.513260 ], [ -140.998535, 61.606396 ], [ -140.998535, 61.501734 ], [ -146.469727, 61.501734 ], [ -146.469727, 66.600676 ], [ -140.993042, 66.600676 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 3, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -140.987549, 69.712393 ], [ -139.122620, 69.471042 ], [ -137.548828, 68.990910 ], [ -136.505127, 68.898154 ], [ -135.626221, 69.315410 ], [ -135.000000, 69.477783 ], [ -134.780273, 69.534518 ], [ -134.780273, 66.425537 ], [ -140.993042, 66.425537 ], [ -140.993042, 66.513260 ], [ -140.987549, 69.712393 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -146.469727, 70.159017 ], [ -146.250000, 70.147827 ], [ -145.692444, 70.120761 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.993042, 66.513260 ], [ -140.993042, 66.425537 ], [ -146.469727, 66.425537 ], [ -146.469727, 70.159017 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -123.530273, -83.956169 ], [ -123.530273, -85.070048 ], [ -135.219727, -85.070048 ], [ -135.219727, -83.956169 ], [ -123.530273, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -123.530273, -82.648222 ], [ -123.530273, -84.002262 ], [ -135.219727, -84.002262 ], [ -135.219727, -82.648222 ], [ -123.530273, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -123.530273, -81.059130 ], [ -123.530273, -82.704241 ], [ -135.219727, -82.704241 ], [ -135.219727, -81.059130 ], [ -123.530273, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -123.530273, -79.129976 ], [ -123.530273, -81.127169 ], [ -135.219727, -81.127169 ], [ -135.219727, -79.129976 ], [ -123.530273, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -123.530273, -76.790701 ], [ -123.530273, -79.212538 ], [ -135.219727, -79.212538 ], [ -135.219727, -76.790701 ], [ -123.530273, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -132.258911, -74.302152 ], [ -130.926819, -74.478784 ], [ -129.556274, -74.458927 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.517689 ], [ -124.013672, -74.478784 ], [ -123.750000, -74.482458 ], [ -123.530273, -74.485397 ], [ -123.530273, -76.890745 ], [ -135.219727, -76.890745 ], [ -135.219727, -74.302895 ], [ -135.216980, -74.302152 ], [ -135.000000, -74.318493 ], [ -134.431458, -74.360753 ], [ -133.747559, -74.439782 ], [ -132.258911, -74.302152 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -126.559753, -73.245712 ], [ -125.559998, -73.480828 ], [ -124.032898, -73.872954 ], [ -124.620667, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.284851, -73.461293 ], [ -126.559753, -73.245712 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.530273, 41.145570 ], [ -123.530273, 38.741231 ], [ -123.728027, 38.953001 ], [ -123.750000, 39.087436 ], [ -123.865356, 39.768436 ], [ -124.398193, 40.315138 ], [ -124.222412, 40.979898 ], [ -124.181213, 41.143501 ], [ -124.181213, 41.145570 ], [ -123.530273, 41.145570 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -123.934021, 49.066668 ], [ -123.923035, 49.063069 ], [ -123.818665, 48.922499 ], [ -123.750000, 48.833990 ], [ -123.530273, 48.538432 ], [ -123.530273, 48.505687 ], [ -123.750000, 48.443778 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.826757 ], [ -125.738525, 48.922499 ], [ -125.859375, 49.066668 ], [ -123.934021, 49.066668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -124.568481, 48.379970 ], [ -123.750000, 48.189895 ], [ -123.530273, 48.136767 ], [ -123.530273, 40.813809 ], [ -124.266357, 40.813809 ], [ -124.222412, 40.979898 ], [ -124.181213, 41.143501 ], [ -124.214172, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.142761, 43.709579 ], [ -123.901062, 45.523668 ], [ -124.082336, 46.865825 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.186232 ], [ -124.568481, 48.379970 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -128.358765, 50.771208 ], [ -127.309570, 50.553580 ], [ -126.697083, 50.401515 ], [ -125.757751, 50.296358 ], [ -125.417175, 49.951220 ], [ -124.922791, 49.477048 ], [ -123.923035, 49.063069 ], [ -123.818665, 48.922499 ], [ -123.711548, 48.777913 ], [ -125.485840, 48.777913 ], [ -125.656128, 48.826757 ], [ -125.738525, 48.922499 ], [ -125.955505, 49.181703 ], [ -126.850891, 49.530557 ], [ -127.032166, 49.816721 ], [ -128.059387, 49.995381 ], [ -128.446655, 50.539617 ], [ -128.358765, 50.771208 ] ] ], [ [ [ -123.530273, 55.899956 ], [ -123.530273, 49.287515 ], [ -123.750000, 49.398463 ], [ -124.911804, 49.984786 ], [ -125.625916, 50.417269 ], [ -127.435913, 50.831963 ], [ -127.993469, 51.716819 ], [ -127.850647, 52.330304 ], [ -129.130554, 52.756243 ], [ -129.306335, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.536804, 54.803851 ], [ -129.981995, 55.285372 ], [ -130.003967, 55.776573 ], [ -130.009460, 55.899956 ], [ -123.530273, 55.899956 ] ] ], [ [ [ -133.181763, 54.170474 ], [ -132.712097, 54.040038 ], [ -131.750793, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.179504, 52.180669 ], [ -131.580505, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.170474 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -130.009460, 55.899956 ], [ -130.003967, 55.776573 ], [ -129.981995, 55.285372 ], [ -130.536804, 54.803851 ], [ -131.086121, 55.180436 ], [ -131.967773, 55.499083 ], [ -132.058411, 55.776573 ], [ -132.096863, 55.899956 ], [ -130.009460, 55.899956 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -123.530273, 61.710706 ], [ -123.530273, 55.652798 ], [ -129.998474, 55.652798 ], [ -130.003967, 55.776573 ], [ -130.009460, 55.916891 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.693873 ], [ -133.357544, 58.410345 ], [ -134.272156, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.324783 ], [ -135.219727, 59.539888 ], [ -135.219727, 61.710706 ], [ -123.530273, 61.710706 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -135.219727, 59.539888 ], [ -135.000000, 59.324783 ], [ -134.945068, 59.271495 ], [ -134.272156, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.693873 ], [ -131.709595, 56.553428 ], [ -130.009460, 55.916891 ], [ -130.003967, 55.776573 ], [ -129.998474, 55.652798 ], [ -132.017212, 55.652798 ], [ -132.058411, 55.776573 ], [ -132.250671, 56.371335 ], [ -133.541565, 57.179436 ], [ -134.079895, 58.124320 ], [ -135.000000, 58.185185 ], [ -135.038452, 58.188080 ], [ -135.219727, 58.190976 ], [ -135.219727, 59.539888 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -123.530273, 66.600676 ], [ -123.530273, 61.501734 ], [ -135.219727, 61.501734 ], [ -135.219727, 66.600676 ], [ -123.530273, 66.600676 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -128.139038, 70.484566 ], [ -127.449646, 70.377854 ], [ -125.757751, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.291077, 69.400615 ], [ -123.750000, 69.472005 ], [ -123.530273, 69.501842 ], [ -123.530273, 66.425537 ], [ -135.219727, 66.425537 ], [ -135.219727, 69.420899 ], [ -135.000000, 69.477783 ], [ -134.414978, 69.627466 ], [ -132.931824, 69.505689 ], [ -131.432190, 69.945375 ], [ -129.795227, 70.194411 ], [ -129.108582, 69.779901 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -123.530273, 74.079925 ], [ -123.530273, 71.266421 ], [ -123.620911, 71.340377 ], [ -123.750000, 71.370232 ], [ -125.930786, 71.869054 ], [ -125.502319, 72.292409 ], [ -124.807434, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.477844, 74.019543 ], [ -124.576721, 74.079925 ], [ -123.530273, 74.079925 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -123.530273, 74.357050 ], [ -123.530273, 73.958939 ], [ -124.381714, 73.958939 ], [ -124.477844, 74.019543 ], [ -124.920044, 74.293232 ], [ -123.750000, 74.347419 ], [ -123.530273, 74.357050 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -112.280273, -83.956169 ], [ -112.280273, -85.070048 ], [ -123.969727, -85.070048 ], [ -123.969727, -83.956169 ], [ -112.280273, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -112.280273, -82.648222 ], [ -112.280273, -84.002262 ], [ -123.969727, -84.002262 ], [ -123.969727, -82.648222 ], [ -112.280273, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -112.280273, -81.059130 ], [ -112.280273, -82.704241 ], [ -123.969727, -82.704241 ], [ -123.969727, -81.059130 ], [ -112.280273, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -112.280273, -79.129976 ], [ -112.280273, -81.127169 ], [ -123.969727, -81.127169 ], [ -123.969727, -79.129976 ], [ -112.280273, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -112.280273, -76.790701 ], [ -112.280273, -79.212538 ], [ -123.969727, -79.212538 ], [ -123.969727, -76.790701 ], [ -112.280273, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ -113.444824, -73.958939 ], [ -113.318481, -74.019543 ], [ -113.299255, -74.027859 ], [ -112.947693, -74.380731 ], [ -112.500000, -74.611259 ], [ -112.299500, -74.713693 ], [ -112.280273, -74.708623 ], [ -112.280273, -76.890745 ], [ -123.969727, -76.890745 ], [ -123.969727, -74.479519 ], [ -123.750000, -74.482458 ], [ -121.074829, -74.517689 ], [ -119.704285, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027859 ], [ -116.218872, -74.243338 ], [ -115.024109, -74.067112 ], [ -114.875793, -74.019543 ], [ -114.689026, -73.958939 ], [ -113.444824, -73.958939 ] ] ], [ [ [ -119.753723, -73.958939 ], [ -119.976196, -74.019543 ], [ -120.234375, -74.088210 ], [ -121.462097, -74.019543 ], [ -121.624146, -74.010467 ], [ -121.772461, -73.958939 ], [ -119.753723, -73.958939 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ -122.406921, -73.323918 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.726501, -73.480828 ], [ -119.292297, -73.833999 ], [ -119.976196, -74.019543 ], [ -120.201416, -74.079925 ], [ -120.390930, -74.079925 ], [ -121.462097, -74.019543 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.406921, -73.323918 ] ] ], [ [ [ -117.471313, -74.027859 ], [ -117.171936, -74.079925 ], [ -117.869568, -74.079925 ], [ -117.471313, -74.027859 ] ] ], [ [ [ -113.318481, -74.019543 ], [ -113.299255, -74.027859 ], [ -113.247070, -74.079925 ], [ -115.106506, -74.079925 ], [ -115.024109, -74.067112 ], [ -114.875793, -74.019543 ], [ -113.944702, -73.714276 ], [ -113.318481, -74.019543 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.280273, 32.138409 ], [ -112.280273, 31.723495 ], [ -112.500000, 31.791221 ], [ -113.024597, 31.952162 ], [ -113.307495, 32.040677 ], [ -113.615112, 32.138409 ], [ -112.280273, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -113.615112, 32.138409 ], [ -113.024597, 31.952162 ], [ -112.500000, 31.791221 ], [ -112.280273, 31.723495 ], [ -112.280273, 29.279212 ], [ -112.500000, 29.587789 ], [ -112.810364, 30.021544 ], [ -113.164673, 30.789037 ], [ -113.150940, 31.172860 ], [ -113.873291, 31.569175 ], [ -114.208374, 31.524703 ], [ -114.776917, 31.800558 ], [ -114.938965, 31.393502 ], [ -114.771423, 30.914007 ], [ -114.675293, 30.164126 ], [ -114.331970, 29.752455 ], [ -113.590393, 29.063372 ], [ -113.425598, 28.827832 ], [ -113.274536, 28.755620 ], [ -113.142700, 28.413144 ], [ -112.964172, 28.425222 ], [ -112.763672, 27.780772 ], [ -112.500000, 27.561852 ], [ -112.458801, 27.527758 ], [ -112.280273, 27.232652 ], [ -112.280273, 25.940757 ], [ -112.302246, 26.012361 ], [ -112.500000, 26.143111 ], [ -113.466797, 26.770135 ], [ -113.598633, 26.640094 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.142257 ], [ -115.057068, 27.724867 ], [ -114.982910, 27.800210 ], [ -114.570923, 27.741885 ], [ -114.200134, 28.115594 ], [ -114.164429, 28.567638 ], [ -114.933472, 29.281608 ], [ -115.521240, 29.556734 ], [ -115.889282, 30.183122 ], [ -116.260071, 30.838573 ], [ -116.724243, 31.637014 ], [ -116.864319, 31.952162 ], [ -116.949463, 32.138409 ], [ -113.615112, 32.138409 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.280273, 41.145570 ], [ -112.280273, 31.765537 ], [ -112.417603, 31.765537 ], [ -113.024597, 31.952162 ], [ -113.307495, 32.040677 ], [ -114.815369, 32.525974 ], [ -114.721985, 32.722599 ], [ -115.993652, 32.613930 ], [ -117.127991, 32.537552 ], [ -117.298279, 33.047810 ], [ -117.946472, 33.621481 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.083557, 34.079962 ], [ -119.440613, 34.350239 ], [ -120.368958, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.158091 ], [ -121.714783, 36.162270 ], [ -122.549744, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.115111 ], [ -123.728027, 38.953001 ], [ -123.750000, 39.087436 ], [ -123.865356, 39.768436 ], [ -123.969727, 39.876019 ], [ -123.969727, 41.145570 ], [ -112.280273, 41.145570 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.721985, 32.722599 ], [ -114.815369, 32.525974 ], [ -113.307495, 32.040677 ], [ -113.024597, 31.952162 ], [ -112.417603, 31.765537 ], [ -114.708252, 31.765537 ], [ -114.776917, 31.800558 ], [ -114.790649, 31.765537 ], [ -116.781921, 31.765537 ], [ -116.864319, 31.952162 ], [ -117.127991, 32.537552 ], [ -115.993652, 32.613930 ], [ -114.721985, 32.722599 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -123.934021, 49.066668 ], [ -123.923035, 49.063069 ], [ -123.750000, 48.833990 ], [ -123.511047, 48.511146 ], [ -123.750000, 48.443778 ], [ -123.969727, 48.383618 ], [ -123.969727, 49.066668 ], [ -123.934021, 49.066668 ] ] ], [ [ [ -112.280273, 49.066668 ], [ -112.280273, 49.000042 ], [ -122.840881, 49.000042 ], [ -122.975464, 49.003646 ], [ -123.101807, 49.066668 ], [ -112.280273, 49.066668 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.280273, 49.000042 ], [ -112.280273, 40.813809 ], [ -123.969727, 40.813809 ], [ -123.969727, 44.997825 ], [ -123.901062, 45.523668 ], [ -123.969727, 46.054173 ], [ -123.969727, 48.241138 ], [ -123.750000, 48.189895 ], [ -123.121033, 48.041365 ], [ -122.588196, 47.096305 ], [ -122.341003, 47.361153 ], [ -122.500305, 48.180739 ], [ -122.807922, 48.922499 ], [ -122.840881, 49.000042 ], [ -112.280273, 49.000042 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -123.969727, 49.082861 ], [ -123.923035, 49.063069 ], [ -123.711548, 48.777913 ], [ -123.969727, 48.777913 ], [ -123.969727, 49.082861 ] ] ], [ [ [ -112.280273, 55.899956 ], [ -112.280273, 49.000042 ], [ -122.840881, 49.000042 ], [ -122.975464, 49.003646 ], [ -123.750000, 49.398463 ], [ -123.969727, 49.510944 ], [ -123.969727, 55.899956 ], [ -112.280273, 55.899956 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.280273, 49.000042 ], [ -112.280273, 48.777913 ], [ -122.747498, 48.777913 ], [ -122.807922, 48.922499 ], [ -122.840881, 49.000042 ], [ -112.280273, 49.000042 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -112.280273, 61.710706 ], [ -112.280273, 55.652798 ], [ -123.969727, 55.652798 ], [ -123.969727, 61.710706 ], [ -112.280273, 61.710706 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -112.280273, 66.600676 ], [ -112.280273, 61.501734 ], [ -123.969727, 61.501734 ], [ -123.969727, 66.600676 ], [ -112.280273, 66.600676 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -122.684326, 69.855708 ], [ -121.473083, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.227112, 68.841718 ], [ -115.249329, 68.906063 ], [ -113.898010, 68.399180 ], [ -115.307007, 67.903454 ], [ -113.499756, 67.688600 ], [ -112.500000, 67.732354 ], [ -112.280273, 67.741719 ], [ -112.280273, 66.425537 ], [ -123.969727, 66.425537 ], [ -123.969727, 69.443092 ], [ -123.750000, 69.472005 ], [ -123.063354, 69.564267 ], [ -122.684326, 69.855708 ] ] ], [ [ [ -112.280273, 70.685421 ], [ -112.280273, 68.590481 ], [ -112.500000, 68.579450 ], [ -113.315735, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.221863, 69.280456 ], [ -116.109009, 69.168419 ], [ -117.342224, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.238104 ], [ -113.722229, 70.192550 ], [ -112.500000, 70.355706 ], [ -112.417603, 70.366783 ], [ -112.500000, 70.376932 ], [ -114.351196, 70.600758 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.009644, 70.612614 ], [ -118.111267, 70.685421 ], [ -112.280273, 70.685421 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -115.191650, 73.315246 ], [ -114.167175, 73.121756 ], [ -114.667053, 72.653038 ], [ -112.500000, 72.947848 ], [ -112.442322, 72.955900 ], [ -112.280273, 72.897841 ], [ -112.280273, 70.539543 ], [ -113.848572, 70.539543 ], [ -114.351196, 70.600758 ], [ -115.977173, 70.539543 ], [ -117.833862, 70.539543 ], [ -117.905273, 70.541373 ], [ -118.009644, 70.612614 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.402161, 71.558823 ], [ -118.564453, 72.308275 ], [ -117.866821, 72.706189 ], [ -115.191650, 73.315246 ] ] ], [ [ [ -117.199402, 74.079925 ], [ -116.998901, 74.019543 ], [ -116.586914, 73.896587 ], [ -115.513000, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.220886, 72.520707 ], [ -120.462341, 71.820272 ], [ -120.462341, 71.384265 ], [ -123.093567, 70.902268 ], [ -123.620911, 71.340377 ], [ -123.750000, 71.370232 ], [ -123.969727, 71.421054 ], [ -123.969727, 73.657955 ], [ -123.942261, 73.680352 ], [ -123.969727, 73.699635 ], [ -123.969727, 74.079925 ], [ -117.199402, 74.079925 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -121.539001, 74.449358 ], [ -120.110779, 74.241846 ], [ -117.556458, 74.185806 ], [ -116.998901, 74.019543 ], [ -116.795654, 73.958939 ], [ -123.969727, 73.958939 ], [ -123.969727, 74.337041 ], [ -123.750000, 74.347419 ], [ -121.539001, 74.449358 ] ] ], [ [ [ -112.280273, 75.149932 ], [ -112.500000, 75.144299 ], [ -116.312256, 75.043975 ], [ -117.713013, 75.222263 ], [ -116.347961, 76.199417 ], [ -115.405884, 76.478984 ], [ -112.590637, 76.141643 ], [ -112.500000, 76.112008 ], [ -112.280273, 76.039967 ], [ -112.280273, 75.149932 ] ] ], [ [ [ -116.334229, 76.890745 ], [ -116.336975, 76.877034 ], [ -116.419373, 76.840816 ], [ -117.108765, 76.530261 ], [ -118.042603, 76.481552 ], [ -119.902039, 76.053875 ], [ -121.500549, 75.900140 ], [ -122.857361, 76.116622 ], [ -121.214905, 76.840816 ], [ -121.159973, 76.864556 ], [ -121.077576, 76.890745 ], [ -116.334229, 76.890745 ] ] ], [ [ [ -112.280273, 75.060270 ], [ -112.280273, 74.416188 ], [ -112.500000, 74.413236 ], [ -113.744202, 74.394776 ], [ -113.873291, 74.720932 ], [ -112.500000, 75.014176 ], [ -112.280273, 75.060270 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -116.199646, 77.645360 ], [ -116.336975, 76.877034 ], [ -116.419373, 76.840816 ], [ -116.529236, 76.790701 ], [ -121.330261, 76.790701 ], [ -121.214905, 76.840816 ], [ -121.159973, 76.864556 ], [ -119.105530, 77.512436 ], [ -117.570190, 77.498770 ], [ -116.199646, 77.645360 ] ] ], [ [ [ -112.280273, 78.082425 ], [ -112.280273, 77.460066 ], [ -112.500000, 77.508278 ], [ -113.535461, 77.732617 ], [ -112.725220, 78.051190 ], [ -112.500000, 78.067101 ], [ -112.280273, 78.082425 ] ] ], [ [ [ -112.280273, 78.622964 ], [ -112.280273, 78.408058 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -112.500000, 78.558309 ], [ -112.280273, 78.622964 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -101.030273, -83.956169 ], [ -101.030273, -85.070048 ], [ -112.719727, -85.070048 ], [ -112.719727, -83.956169 ], [ -101.030273, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -101.030273, -82.648222 ], [ -101.030273, -84.002262 ], [ -112.719727, -84.002262 ], [ -112.719727, -82.648222 ], [ -101.030273, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -101.030273, -81.059130 ], [ -101.030273, -82.704241 ], [ -112.719727, -82.704241 ], [ -112.719727, -81.059130 ], [ -101.030273, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -101.030273, -79.129976 ], [ -101.030273, -81.127169 ], [ -112.719727, -81.127169 ], [ -112.719727, -79.129976 ], [ -101.030273, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -101.030273, -76.790701 ], [ -101.030273, -79.212538 ], [ -112.719727, -79.212538 ], [ -112.719727, -76.790701 ], [ -101.030273, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ -101.030273, -75.252357 ], [ -101.030273, -76.890745 ], [ -112.719727, -76.890745 ], [ -112.719727, -74.497881 ], [ -112.500000, -74.611259 ], [ -112.299500, -74.713693 ], [ -111.261292, -74.419877 ], [ -110.066528, -74.792423 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.878235, -74.948697 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -101.250000, -75.224364 ], [ -101.030273, -75.252357 ] ] ], [ [ [ -101.030273, -74.345937 ], [ -101.250000, -74.186555 ], [ -101.252747, -74.185058 ], [ -102.546387, -74.106272 ], [ -102.680969, -74.019543 ], [ -102.774353, -73.958939 ], [ -101.030273, -73.958939 ], [ -101.030273, -74.345937 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -101.250000, -72.796588 ], [ -101.030273, -72.786837 ], [ -101.030273, -74.079925 ], [ -102.587585, -74.079925 ], [ -102.680969, -74.019543 ], [ -103.114929, -73.734289 ], [ -103.329163, -73.361708 ], [ -103.683472, -72.616970 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -101.250000, -71.766208 ], [ -101.030273, -71.790256 ], [ -101.030273, -72.453760 ], [ -101.250000, -72.411482 ], [ -101.802063, -72.304936 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.030273, 22.146708 ], [ -101.030273, 17.287709 ], [ -101.250000, 17.413546 ], [ -101.667480, 17.649257 ], [ -101.920166, 17.918636 ], [ -102.480469, 17.976121 ], [ -103.502197, 18.294558 ], [ -103.919678, 18.750310 ], [ -104.993591, 19.316327 ], [ -105.493469, 19.947533 ], [ -105.732422, 20.434734 ], [ -105.400085, 20.532505 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.076812 ], [ -105.268250, 21.422390 ], [ -105.603333, 21.871695 ], [ -105.619812, 21.943046 ], [ -105.666504, 22.146708 ], [ -101.030273, 22.146708 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.030273, 32.138409 ], [ -101.030273, 29.422853 ], [ -101.250000, 29.547177 ], [ -101.664734, 29.781066 ], [ -102.480469, 29.761993 ], [ -103.112183, 28.972104 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.707947, 30.123749 ], [ -105.037537, 30.645001 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.509705, 31.756196 ], [ -108.240051, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.025085, 31.334871 ], [ -112.500000, 31.791221 ], [ -112.719727, 31.861230 ], [ -112.719727, 32.138409 ], [ -101.030273, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -112.719727, 29.897806 ], [ -112.719727, 31.861230 ], [ -112.500000, 31.791221 ], [ -111.025085, 31.334871 ], [ -108.242798, 31.344254 ], [ -108.240051, 31.756196 ], [ -106.509705, 31.756196 ], [ -106.144409, 31.400535 ], [ -105.633545, 31.085870 ], [ -105.037537, 30.645001 ], [ -104.707947, 30.123749 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.272025 ], [ -103.112183, 28.972104 ], [ -102.480469, 29.761993 ], [ -101.664734, 29.781066 ], [ -101.250000, 29.547177 ], [ -101.030273, 29.422853 ], [ -101.030273, 21.739091 ], [ -105.504456, 21.739091 ], [ -105.603333, 21.871695 ], [ -105.619812, 21.943046 ], [ -105.693970, 22.271306 ], [ -106.029053, 22.776182 ], [ -106.910706, 23.770264 ], [ -107.915955, 24.549622 ], [ -108.402100, 25.172631 ], [ -109.261780, 25.582085 ], [ -109.445801, 25.827089 ], [ -109.291992, 26.443525 ], [ -109.802856, 26.676913 ], [ -110.393372, 27.164252 ], [ -110.643311, 27.860932 ], [ -111.181641, 27.943460 ], [ -111.761169, 28.468691 ], [ -112.230835, 28.955282 ], [ -112.272034, 29.267233 ], [ -112.500000, 29.587789 ], [ -112.719727, 29.897806 ] ] ], [ [ [ -112.719727, 27.746746 ], [ -112.500000, 27.561852 ], [ -112.458801, 27.527758 ], [ -112.247314, 27.174026 ], [ -111.618347, 26.664641 ], [ -111.286011, 25.733107 ], [ -110.989380, 25.296854 ], [ -110.711975, 24.826625 ], [ -110.657043, 24.299544 ], [ -110.173645, 24.266997 ], [ -109.772644, 23.812988 ], [ -109.410095, 23.364950 ], [ -109.434814, 23.185813 ], [ -109.855042, 22.819226 ], [ -110.033569, 22.824289 ], [ -110.297241, 23.433009 ], [ -110.950928, 24.001308 ], [ -111.673279, 24.484649 ], [ -112.184143, 24.739348 ], [ -112.151184, 25.470554 ], [ -112.302246, 26.012361 ], [ -112.500000, 26.143111 ], [ -112.719727, 26.286028 ], [ -112.719727, 27.746746 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.030273, 41.145570 ], [ -101.030273, 31.765537 ], [ -112.417603, 31.765537 ], [ -112.719727, 31.861230 ], [ -112.719727, 41.145570 ], [ -101.030273, 41.145570 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.719727, 31.861230 ], [ -112.417603, 31.765537 ], [ -112.719727, 31.765537 ], [ -112.719727, 31.861230 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -101.030273, 49.066668 ], [ -101.030273, 49.000042 ], [ -112.719727, 49.000042 ], [ -112.719727, 49.066668 ], [ -101.030273, 49.066668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.030273, 49.000042 ], [ -101.030273, 40.813809 ], [ -112.719727, 40.813809 ], [ -112.719727, 49.000042 ], [ -101.030273, 49.000042 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -101.030273, 55.899956 ], [ -101.030273, 49.000042 ], [ -112.719727, 49.000042 ], [ -112.719727, 55.899956 ], [ -101.030273, 55.899956 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.030273, 49.000042 ], [ -101.030273, 48.777913 ], [ -112.719727, 48.777913 ], [ -112.719727, 49.000042 ], [ -101.030273, 49.000042 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -101.030273, 61.710706 ], [ -101.030273, 55.652798 ], [ -112.719727, 55.652798 ], [ -112.719727, 61.710706 ], [ -101.030273, 61.710706 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -101.030273, 66.600676 ], [ -101.030273, 61.501734 ], [ -112.719727, 61.501734 ], [ -112.719727, 66.600676 ], [ -101.030273, 66.600676 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -106.152649, 68.800041 ], [ -105.345154, 68.561388 ], [ -104.339905, 68.018882 ], [ -103.222046, 68.097907 ], [ -101.455994, 67.647899 ], [ -101.250000, 67.668781 ], [ -101.030273, 67.690686 ], [ -101.030273, 66.425537 ], [ -112.719727, 66.425537 ], [ -112.719727, 67.722985 ], [ -112.500000, 67.732354 ], [ -110.799866, 67.806132 ], [ -109.948425, 67.981843 ], [ -108.882751, 67.382150 ], [ -107.795105, 67.887951 ], [ -108.814087, 68.312057 ], [ -108.168640, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.152649, 68.800041 ] ] ], [ [ [ -103.417053, 70.685421 ], [ -103.172607, 70.612614 ], [ -102.788086, 70.498324 ], [ -101.250000, 70.096464 ], [ -101.030273, 70.037473 ], [ -101.030273, 69.825418 ], [ -101.090698, 69.585354 ], [ -101.250000, 69.576730 ], [ -102.733154, 69.504727 ], [ -102.095947, 69.120506 ], [ -102.431030, 68.753310 ], [ -104.241028, 68.910017 ], [ -105.960388, 69.180137 ], [ -107.124939, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.535950, 68.630549 ], [ -112.500000, 68.579450 ], [ -112.719727, 68.567410 ], [ -112.719727, 70.326137 ], [ -112.417603, 70.366783 ], [ -112.500000, 70.376932 ], [ -112.719727, 70.403663 ], [ -112.719727, 70.685421 ], [ -103.417053, 70.685421 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -107.517700, 73.236209 ], [ -106.523438, 73.076242 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699056 ], [ -104.466248, 70.993717 ], [ -103.172607, 70.612614 ], [ -102.928162, 70.539543 ], [ -112.719727, 70.539543 ], [ -112.719727, 72.918022 ], [ -112.500000, 72.947848 ], [ -112.442322, 72.955900 ], [ -111.052551, 72.450448 ], [ -109.920959, 72.961534 ], [ -109.009094, 72.633374 ], [ -108.190613, 71.651562 ], [ -107.687988, 72.066302 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ] ] ], [ [ [ -101.030273, 72.742078 ], [ -101.030273, 72.057842 ], [ -101.250000, 72.126250 ], [ -102.502441, 72.510804 ], [ -102.480469, 72.830674 ], [ -101.250000, 72.755925 ], [ -101.030273, 72.742078 ] ] ], [ [ [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.460511 ], [ -106.600342, 73.600670 ], [ -105.260010, 73.640171 ] ] ], [ [ [ -101.030273, 73.061045 ], [ -101.250000, 73.190200 ], [ -101.541138, 73.360135 ], [ -101.250000, 73.480047 ], [ -101.030273, 73.570401 ], [ -101.030273, 73.061045 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ], [ -108.212585, 76.202037 ], [ -107.819824, 75.845840 ], [ -106.929932, 76.013439 ], [ -105.883484, 75.969558 ], [ -105.707703, 75.479952 ], [ -106.314697, 75.005651 ], [ -109.701233, 74.850672 ], [ -112.225342, 74.417664 ], [ -112.500000, 74.413236 ], [ -112.719727, 74.410284 ], [ -112.719727, 74.967230 ], [ -112.500000, 75.014176 ], [ -111.796875, 75.162597 ], [ -112.500000, 75.144299 ], [ -112.719727, 75.138665 ], [ -112.719727, 76.157423 ], [ -112.590637, 76.141643 ], [ -112.500000, 76.112008 ], [ -110.816345, 75.549340 ], [ -109.069519, 75.473753 ], [ -110.497742, 76.430093 ], [ -109.583130, 76.794466 ] ] ], [ [ [ -101.030273, 76.410747 ], [ -101.030273, 75.633403 ], [ -101.250000, 75.623177 ], [ -102.502441, 75.564411 ], [ -102.565613, 76.336983 ], [ -101.491699, 76.305807 ], [ -101.250000, 76.360319 ], [ -101.030273, 76.410747 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -109.583130, 76.794466 ], [ -109.550171, 76.790701 ], [ -109.591370, 76.790701 ], [ -109.583130, 76.794466 ] ] ], [ [ [ -111.266785, 78.153115 ], [ -109.855042, 77.996477 ], [ -110.187378, 77.697553 ], [ -112.052307, 77.409277 ], [ -112.500000, 77.508278 ], [ -112.719727, 77.556308 ], [ -112.719727, 78.051758 ], [ -112.500000, 78.067101 ], [ -111.266785, 78.153115 ] ] ], [ [ [ -104.208069, 79.212538 ], [ -103.617554, 79.171335 ], [ -103.529663, 79.165657 ], [ -101.250000, 78.858909 ], [ -101.030273, 78.828618 ], [ -101.030273, 78.000474 ], [ -101.250000, 78.015882 ], [ -101.304932, 78.019304 ], [ -102.950134, 78.343308 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.422058, 78.918720 ], [ -105.468750, 79.171335 ], [ -105.476990, 79.212538 ], [ -104.208069, 79.212538 ] ] ], [ [ [ -111.500244, 78.850415 ], [ -110.964661, 78.804647 ], [ -109.665527, 78.602357 ], [ -110.882263, 78.406954 ], [ -112.500000, 78.408058 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -112.500000, 78.558309 ], [ -111.500244, 78.850415 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -105.493469, 79.301620 ], [ -103.617554, 79.171335 ], [ -103.529663, 79.165657 ], [ -103.263245, 79.129976 ], [ -105.460510, 79.129976 ], [ -105.468750, 79.171335 ], [ -105.493469, 79.301620 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -89.780273, -83.956169 ], [ -89.780273, -85.070048 ], [ -101.469727, -85.070048 ], [ -101.469727, -83.956169 ], [ -89.780273, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -89.780273, -82.648222 ], [ -89.780273, -84.002262 ], [ -101.469727, -84.002262 ], [ -101.469727, -82.648222 ], [ -89.780273, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -89.780273, -81.059130 ], [ -89.780273, -82.704241 ], [ -101.469727, -82.704241 ], [ -101.469727, -81.059130 ], [ -89.780273, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -89.780273, -79.129976 ], [ -89.780273, -81.127169 ], [ -101.469727, -81.127169 ], [ -101.469727, -79.129976 ], [ -89.780273, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -89.780273, -76.790701 ], [ -89.780273, -79.212538 ], [ -101.469727, -79.212538 ], [ -101.469727, -76.790701 ], [ -89.780273, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -89.780273, -73.958939 ], [ -89.780273, -76.890745 ], [ -101.469727, -76.890745 ], [ -101.469727, -75.195618 ], [ -101.250000, -75.224364 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.763855, -74.537473 ], [ -101.250000, -74.186555 ], [ -101.252747, -74.185058 ], [ -101.469727, -74.171579 ], [ -101.469727, -73.958939 ], [ -89.780273, -73.958939 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ -100.313416, -72.754296 ], [ -99.137878, -72.910759 ], [ -98.118896, -73.205286 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.616172 ], [ -95.045471, -73.479266 ], [ -93.674927, -73.283674 ], [ -92.441711, -73.165560 ], [ -91.422729, -73.400984 ], [ -90.090637, -73.322341 ], [ -90.000000, -73.245712 ], [ -89.780273, -73.053041 ], [ -89.780273, -74.079925 ], [ -101.469727, -74.079925 ], [ -101.469727, -72.807146 ], [ -101.250000, -72.796588 ], [ -100.313416, -72.754296 ] ] ], [ [ [ -101.469727, -71.742990 ], [ -101.250000, -71.766208 ], [ -100.431519, -71.854518 ], [ -98.984070, -71.933048 ], [ -97.885437, -72.070530 ], [ -96.789551, -71.952629 ], [ -96.201782, -72.520707 ], [ -96.984558, -72.442164 ], [ -98.198547, -72.481891 ], [ -99.434509, -72.442164 ], [ -100.785828, -72.500896 ], [ -101.250000, -72.411482 ], [ -101.469727, -72.369105 ], [ -101.469727, -71.742990 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.778320, 22.146708 ], [ -97.715149, 21.943046 ], [ -97.701416, 21.899730 ], [ -97.391052, 21.412162 ], [ -97.190552, 20.637925 ], [ -96.525879, 19.893306 ], [ -96.292419, 19.321511 ], [ -95.902405, 18.828316 ], [ -94.839478, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.551331, 18.424896 ], [ -92.787781, 18.526492 ], [ -92.037964, 18.706090 ], [ -91.408997, 18.877702 ], [ -90.774536, 19.285221 ], [ -90.535583, 19.867477 ], [ -90.453186, 20.709877 ], [ -90.280151, 20.999907 ], [ -90.000000, 21.110125 ], [ -89.780273, 21.194655 ], [ -89.780273, 17.816686 ], [ -90.000000, 17.819301 ], [ -91.002502, 17.819301 ], [ -91.002502, 17.256236 ], [ -91.455688, 17.253613 ], [ -91.082153, 16.920195 ], [ -90.714111, 16.688817 ], [ -90.601501, 16.472963 ], [ -90.439453, 16.412375 ], [ -90.466919, 16.069568 ], [ -91.749573, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.066819 ], [ -92.205505, 14.830646 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.617747 ], [ -93.875427, 15.940202 ], [ -94.693909, 16.201488 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.752606 ], [ -96.558838, 15.654776 ], [ -97.264709, 15.919074 ], [ -98.014526, 16.109153 ], [ -98.948364, 16.567758 ], [ -99.698181, 16.707232 ], [ -100.829773, 17.172283 ], [ -101.250000, 17.413546 ], [ -101.469727, 17.539297 ], [ -101.469727, 22.146708 ], [ -97.778320, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guatemala", "sov_a3": "GTM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guatemala", "adm0_a3": "GTM", "geou_dif": 0, "geounit": "Guatemala", "gu_a3": "GTM", "su_dif": 0, "subunit": "Guatemala", "su_a3": "GTM", "brk_diff": 0, "name": "Guatemala", "name_long": "Guatemala", "brk_a3": "GTM", "brk_name": "Guatemala", "abbrev": "Guat.", "postal": "GT", "formal_en": "Republic of Guatemala", "name_sort": "Guatemala", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 13276517, "gdp_md_est": 68580, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GT", "iso_a3": "GTM", "iso_n3": "320", "un_a3": "320", "wb_a2": "GT", "wb_a3": "GTM", "woe_id": -99, "adm0_a3_is": "GTM", "adm0_a3_us": "GTM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.819301 ], [ -89.780273, 17.816686 ], [ -89.780273, 14.093957 ], [ -90.000000, 13.931401 ], [ -90.065918, 13.883412 ], [ -90.096130, 13.736717 ], [ -90.609741, 13.910074 ], [ -91.233215, 13.928736 ], [ -91.691895, 14.128585 ], [ -92.230225, 14.541050 ], [ -92.205505, 14.830646 ], [ -92.087402, 15.066819 ], [ -92.230225, 15.252389 ], [ -91.749573, 16.066929 ], [ -90.466919, 16.069568 ], [ -90.439453, 16.412375 ], [ -90.601501, 16.472963 ], [ -90.714111, 16.688817 ], [ -91.082153, 16.920195 ], [ -91.455688, 17.253613 ], [ -91.002502, 17.256236 ], [ -91.002502, 17.819301 ], [ -90.000000, 17.819301 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "El Salvador", "sov_a3": "SLV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "El Salvador", "adm0_a3": "SLV", "geou_dif": 0, "geounit": "El Salvador", "gu_a3": "SLV", "su_dif": 0, "subunit": "El Salvador", "su_a3": "SLV", "brk_diff": 0, "name": "El Salvador", "name_long": "El Salvador", "brk_a3": "SLV", "brk_name": "El Salvador", "abbrev": "El. S.", "postal": "SV", "formal_en": "Republic of El Salvador", "name_sort": "El Salvador", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 8, "pop_est": 7185218, "gdp_md_est": 43630, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SV", "iso_a3": "SLV", "iso_n3": "222", "un_a3": "222", "wb_a2": "SV", "wb_a3": "SLV", "woe_id": -99, "adm0_a3_is": "SLV", "adm0_a3_us": "SLV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 11, "long_len": 11, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.780273, 14.093957 ], [ -89.780273, 13.517838 ], [ -89.813232, 13.523179 ], [ -90.000000, 13.664669 ], [ -90.096130, 13.736717 ], [ -90.065918, 13.883412 ], [ -90.000000, 13.931401 ], [ -89.780273, 14.093957 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.780273, 32.138409 ], [ -89.780273, 29.307956 ], [ -90.000000, 29.197726 ], [ -90.156555, 29.118574 ], [ -90.881653, 29.149763 ], [ -91.628723, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.227234, 29.785833 ], [ -93.850708, 29.714296 ], [ -94.691162, 29.480252 ], [ -95.600281, 28.738764 ], [ -96.594543, 28.309217 ], [ -97.141113, 27.831790 ], [ -97.371826, 27.381523 ], [ -97.380066, 26.691637 ], [ -97.330627, 26.212127 ], [ -97.141113, 25.871581 ], [ -97.531128, 25.841921 ], [ -98.242493, 26.061718 ], [ -99.022522, 26.372185 ], [ -99.302673, 26.841227 ], [ -99.522400, 27.542371 ], [ -100.110168, 28.110749 ], [ -100.456238, 28.697816 ], [ -100.958862, 29.382175 ], [ -101.250000, 29.547177 ], [ -101.469727, 29.671349 ], [ -101.469727, 32.138409 ], [ -89.780273, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.469727, 29.671349 ], [ -101.250000, 29.547177 ], [ -100.958862, 29.382175 ], [ -100.456238, 28.697816 ], [ -100.110168, 28.110749 ], [ -99.522400, 27.542371 ], [ -99.302673, 26.841227 ], [ -99.022522, 26.372185 ], [ -98.242493, 26.061718 ], [ -97.531128, 25.841921 ], [ -97.141113, 25.871581 ], [ -97.528381, 24.993526 ], [ -97.704163, 24.274509 ], [ -97.778320, 22.933101 ], [ -97.874451, 22.446572 ], [ -97.715149, 21.943046 ], [ -97.701416, 21.899730 ], [ -97.599792, 21.739091 ], [ -101.469727, 21.739091 ], [ -101.469727, 29.671349 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.780273, 41.145570 ], [ -89.780273, 31.765537 ], [ -101.469727, 31.765537 ], [ -101.469727, 41.145570 ], [ -89.780273, 41.145570 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -89.780273, 49.066668 ], [ -89.780273, 48.048710 ], [ -90.000000, 48.096426 ], [ -90.832214, 48.270397 ], [ -91.642456, 48.140432 ], [ -92.612000, 48.451066 ], [ -93.630981, 48.609306 ], [ -94.331360, 48.671013 ], [ -94.641724, 48.841221 ], [ -94.669189, 48.922499 ], [ -94.713135, 49.066668 ], [ -89.780273, 49.066668 ] ] ], [ [ [ -95.160828, 49.066668 ], [ -95.160828, 49.000042 ], [ -101.469727, 49.000042 ], [ -101.469727, 49.066668 ], [ -95.160828, 49.066668 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.713135, 49.066668 ], [ -94.669189, 48.922499 ], [ -94.641724, 48.841221 ], [ -94.331360, 48.671013 ], [ -93.630981, 48.609306 ], [ -92.612000, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.832214, 48.270397 ], [ -90.000000, 48.096426 ], [ -89.780273, 48.048710 ], [ -89.780273, 40.813809 ], [ -101.469727, 40.813809 ], [ -101.469727, 49.000042 ], [ -95.160828, 49.000042 ], [ -95.160828, 49.066668 ], [ -94.713135, 49.066668 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -89.780273, 55.899956 ], [ -89.780273, 48.777913 ], [ -94.526367, 48.777913 ], [ -94.641724, 48.841221 ], [ -94.669189, 48.922499 ], [ -94.820251, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.160828, 49.000042 ], [ -101.469727, 49.000042 ], [ -101.469727, 55.899956 ], [ -89.780273, 55.899956 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.820251, 49.389524 ], [ -94.669189, 48.922499 ], [ -94.641724, 48.841221 ], [ -94.526367, 48.777913 ], [ -101.469727, 48.777913 ], [ -101.469727, 49.000042 ], [ -95.160828, 49.000042 ], [ -95.158081, 49.385949 ], [ -94.820251, 49.389524 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -93.463440, 61.710706 ], [ -93.565063, 61.606396 ], [ -94.243469, 60.899724 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.216248, 58.782438 ], [ -92.765808, 57.846213 ], [ -92.298889, 57.088515 ], [ -90.898132, 57.284981 ], [ -90.000000, 57.076575 ], [ -89.780273, 57.025784 ], [ -89.780273, 55.652798 ], [ -101.469727, 55.652798 ], [ -101.469727, 61.710706 ], [ -93.463440, 61.710706 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -89.780273, 66.600676 ], [ -89.780273, 64.039756 ], [ -89.914856, 64.033744 ], [ -90.000000, 63.988009 ], [ -90.705872, 63.610879 ], [ -90.771790, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.025394 ], [ -93.565063, 61.606396 ], [ -93.666687, 61.501734 ], [ -101.469727, 61.501734 ], [ -101.469727, 66.600676 ], [ -89.780273, 66.600676 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -92.106628, 70.685421 ], [ -92.018738, 70.612614 ], [ -91.521606, 70.191619 ], [ -92.408752, 69.700010 ], [ -90.549316, 69.497994 ], [ -90.552063, 68.475895 ], [ -90.000000, 68.802028 ], [ -89.780273, 68.930761 ], [ -89.780273, 66.425537 ], [ -101.469727, 66.425537 ], [ -101.469727, 67.651033 ], [ -101.455994, 67.647899 ], [ -101.250000, 67.668781 ], [ -99.904175, 67.806132 ], [ -98.445740, 67.782258 ], [ -98.561096, 68.404235 ], [ -97.671204, 68.579450 ], [ -96.122131, 68.239878 ], [ -96.127625, 67.294317 ], [ -95.490417, 68.090734 ], [ -94.685669, 68.064072 ], [ -94.235229, 69.069544 ], [ -95.306396, 69.685711 ], [ -96.473694, 70.089918 ], [ -96.435242, 70.612614 ], [ -96.429749, 70.685421 ], [ -92.106628, 70.685421 ] ] ], [ [ [ -98.220520, 70.144096 ], [ -97.157593, 69.860437 ], [ -96.558838, 69.680943 ], [ -96.259460, 69.490297 ], [ -95.649719, 69.107777 ], [ -96.270447, 68.757291 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.951487 ], [ -99.799805, 69.400615 ], [ -98.918152, 69.710489 ], [ -98.220520, 70.144096 ] ] ], [ [ [ -101.469727, 70.154355 ], [ -101.250000, 70.096464 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.585354 ], [ -101.250000, 69.576730 ], [ -101.469727, 69.566185 ], [ -101.469727, 70.154355 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -95.210266, 71.921119 ], [ -93.891907, 71.760191 ], [ -92.878418, 71.319276 ], [ -92.018738, 70.612614 ], [ -91.933594, 70.539543 ], [ -96.440735, 70.539543 ], [ -96.435242, 70.612614 ], [ -96.391296, 71.194838 ], [ -95.210266, 71.921119 ] ] ], [ [ [ -89.780273, 72.735558 ], [ -89.780273, 71.222265 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.586606 ], [ -90.205994, 72.235514 ], [ -90.000000, 72.478584 ], [ -89.780273, 72.735558 ] ] ], [ [ [ -100.357361, 73.843938 ], [ -99.165344, 73.633981 ], [ -97.380066, 73.760425 ], [ -97.121887, 73.470673 ], [ -98.055725, 72.991286 ], [ -96.542358, 72.560262 ], [ -96.720886, 71.660206 ], [ -98.360596, 71.273477 ], [ -99.324646, 71.357067 ], [ -100.016785, 71.738687 ], [ -101.250000, 72.126250 ], [ -101.469727, 72.194406 ], [ -101.469727, 72.768947 ], [ -101.250000, 72.755925 ], [ -100.439758, 72.706189 ], [ -101.250000, 73.190200 ], [ -101.469727, 73.319188 ], [ -101.469727, 73.389211 ], [ -101.250000, 73.480047 ], [ -100.357361, 73.843938 ] ] ], [ [ [ -92.263184, 74.079925 ], [ -91.785278, 74.019543 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.270935, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.034241, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.495911, 73.863033 ], [ -94.927368, 74.019543 ], [ -94.707642, 74.079925 ], [ -92.263184, 74.079925 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -94.504395, 74.135580 ], [ -92.422485, 74.100253 ], [ -91.785278, 74.019543 ], [ -91.310120, 73.958939 ], [ -95.147095, 73.958939 ], [ -94.504395, 74.135580 ] ] ], [ [ [ -93.966064, 76.890745 ], [ -93.795776, 76.840816 ], [ -93.576050, 76.776886 ], [ -91.606750, 76.778771 ], [ -90.744324, 76.450056 ], [ -90.972290, 76.074381 ], [ -90.000000, 75.883402 ], [ -89.824219, 75.847855 ], [ -89.780273, 75.832401 ], [ -89.780273, 74.517689 ], [ -90.000000, 74.544794 ], [ -92.422485, 74.838465 ], [ -92.768555, 75.387389 ], [ -92.892151, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.962830, 76.441688 ], [ -97.121887, 76.751102 ], [ -97.042236, 76.840816 ], [ -96.995544, 76.890745 ], [ -93.966064, 76.890745 ] ] ], [ [ [ -94.853210, 75.647708 ], [ -93.979797, 75.297038 ], [ -93.614502, 74.980047 ], [ -94.158325, 74.593027 ], [ -95.611267, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.853210, 75.647708 ] ] ], [ [ [ -98.500671, 76.720223 ], [ -97.737122, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.160095, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.884705, 75.057437 ], [ -100.865479, 75.640898 ], [ -101.250000, 75.623177 ], [ -101.469727, 75.612944 ], [ -101.469727, 76.310358 ], [ -101.250000, 76.360319 ], [ -99.983826, 76.646840 ], [ -98.577576, 76.588993 ], [ -98.500671, 76.720223 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -96.745605, 77.161435 ], [ -94.685669, 77.098423 ], [ -93.795776, 76.840816 ], [ -93.625488, 76.790701 ], [ -97.086182, 76.790701 ], [ -97.042236, 76.840816 ], [ -96.745605, 77.161435 ] ] ], [ [ [ -96.437988, 77.834904 ], [ -94.424744, 77.820426 ], [ -93.721619, 77.634777 ], [ -93.842468, 77.520155 ], [ -94.295654, 77.491633 ], [ -96.171570, 77.555124 ], [ -96.437988, 77.834904 ] ] ], [ [ [ -98.632507, 78.872169 ], [ -97.338867, 78.832342 ], [ -96.756592, 78.766187 ], [ -95.561829, 78.418539 ], [ -95.830994, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.082992 ], [ -98.555603, 78.458173 ], [ -98.632507, 78.872169 ] ] ], [ [ [ -101.469727, 78.888590 ], [ -101.250000, 78.858909 ], [ -100.827026, 78.800913 ], [ -100.060730, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.250000, 78.015882 ], [ -101.304932, 78.019304 ], [ -101.469727, 78.052327 ], [ -101.469727, 78.888590 ] ] ], [ [ [ -89.780273, 79.212538 ], [ -89.780273, 78.257538 ], [ -90.000000, 78.248591 ], [ -90.804749, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.952332, 78.751195 ], [ -93.935852, 79.113908 ], [ -93.768311, 79.171335 ], [ -93.647461, 79.212538 ], [ -89.780273, 79.212538 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -92.092896, 81.127169 ], [ -92.010498, 81.093214 ], [ -91.134338, 80.723498 ], [ -90.000000, 80.579842 ], [ -89.780273, 80.551930 ], [ -89.780273, 79.129976 ], [ -93.889160, 79.129976 ], [ -93.768311, 79.171335 ], [ -93.147583, 79.380362 ], [ -94.974060, 79.372767 ], [ -96.078186, 79.705361 ], [ -96.709900, 80.158078 ], [ -96.017761, 80.602741 ], [ -95.325623, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.518127, 81.093214 ], [ -94.584045, 81.127169 ], [ -92.092896, 81.127169 ] ] ], [ [ [ -89.780273, 81.127169 ], [ -89.780273, 81.058703 ], [ -89.923096, 81.127169 ], [ -89.780273, 81.127169 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -92.411499, 81.257537 ], [ -92.010498, 81.093214 ], [ -91.928101, 81.059130 ], [ -94.454956, 81.059130 ], [ -94.518127, 81.093214 ], [ -94.737854, 81.206879 ], [ -92.411499, 81.257537 ] ] ], [ [ [ -89.780273, 82.094243 ], [ -89.780273, 81.059130 ], [ -90.000000, 81.164794 ], [ -90.200500, 81.260042 ], [ -91.370544, 81.553443 ], [ -91.587524, 81.894580 ], [ -90.101624, 82.085171 ], [ -90.000000, 82.087818 ], [ -89.780273, 82.094243 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -78.530273, -83.956169 ], [ -78.530273, -85.070048 ], [ -90.219727, -85.070048 ], [ -90.219727, -83.956169 ], [ -78.530273, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -78.530273, -82.648222 ], [ -78.530273, -84.002262 ], [ -90.219727, -84.002262 ], [ -90.219727, -82.648222 ], [ -78.530273, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -78.530273, -81.059130 ], [ -78.530273, -82.704241 ], [ -90.219727, -82.704241 ], [ -90.219727, -81.059130 ], [ -78.530273, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -78.530273, -79.129976 ], [ -78.530273, -81.127169 ], [ -90.219727, -81.127169 ], [ -90.219727, -79.129976 ], [ -78.530273, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -78.530273, -76.790701 ], [ -78.530273, -79.212538 ], [ -90.219727, -79.212538 ], [ -90.219727, -76.790701 ], [ -78.530273, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -78.530273, -73.958939 ], [ -78.530273, -76.890745 ], [ -90.219727, -76.890745 ], [ -90.219727, -73.958939 ], [ -78.530273, -73.958939 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -89.228210, -72.558615 ], [ -88.426208, -73.008952 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.087432 ], [ -85.193481, -73.479266 ], [ -83.880615, -73.518273 ], [ -82.666626, -73.636303 ], [ -81.471863, -73.851578 ], [ -80.689087, -73.479266 ], [ -80.296326, -73.126540 ], [ -79.299316, -73.518273 ], [ -78.530273, -73.463638 ], [ -78.530273, -74.079925 ], [ -90.219727, -74.079925 ], [ -90.219727, -73.330222 ], [ -90.090637, -73.322341 ], [ -90.000000, -73.245712 ], [ -89.228210, -72.558615 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 16 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.530273, 0.219726 ], [ -78.530273, -4.154679 ], [ -78.640137, -4.546308 ], [ -78.750000, -4.625704 ], [ -79.205933, -4.956879 ], [ -79.626160, -4.453212 ], [ -80.029907, -4.343673 ], [ -80.444641, -4.423090 ], [ -80.469360, -4.058796 ], [ -80.186462, -3.820408 ], [ -80.304565, -3.403758 ], [ -79.771729, -2.654994 ], [ -79.988708, -2.218684 ], [ -80.370483, -2.682430 ], [ -80.969238, -2.246129 ], [ -80.765991, -1.963422 ], [ -80.936279, -1.057374 ], [ -80.584717, -0.906334 ], [ -80.400696, -0.282897 ], [ -80.233154, 0.000000 ], [ -80.104065, 0.219726 ], [ -78.530273, 0.219726 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Peru", "sov_a3": "PER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Peru", "adm0_a3": "PER", "geou_dif": 0, "geounit": "Peru", "gu_a3": "PER", "su_dif": 0, "subunit": "Peru", "su_a3": "PER", "brk_diff": 0, "name": "Peru", "name_long": "Peru", "brk_a3": "PER", "brk_name": "Peru", "abbrev": "Peru", "postal": "PE", "formal_en": "Republic of Peru", "name_sort": "Peru", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 11, "pop_est": 29546963, "gdp_md_est": 247300, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PE", "iso_a3": "PER", "iso_n3": "604", "un_a3": "604", "wb_a2": "PE", "wb_a3": "PER", "woe_id": -99, "adm0_a3_is": "PER", "adm0_a3_us": "PER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.304565, -3.403758 ], [ -80.186462, -3.820408 ], [ -80.469360, -4.058796 ], [ -80.444641, -4.423090 ], [ -80.029907, -4.343673 ], [ -79.626160, -4.453212 ], [ -79.205933, -4.956879 ], [ -78.750000, -4.625704 ], [ -78.640137, -4.546308 ], [ -78.530273, -4.154679 ], [ -78.530273, -9.454480 ], [ -78.750000, -8.990888 ], [ -79.038391, -8.385431 ], [ -79.447632, -7.928675 ], [ -79.760742, -7.193551 ], [ -80.538025, -6.539103 ], [ -81.252136, -6.135093 ], [ -80.928040, -5.689783 ], [ -81.411438, -4.735201 ], [ -81.101074, -4.034138 ], [ -80.304565, -3.403758 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Nicaragua", "sov_a3": "NIC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nicaragua", "adm0_a3": "NIC", "geou_dif": 0, "geounit": "Nicaragua", "gu_a3": "NIC", "su_dif": 0, "subunit": "Nicaragua", "su_a3": "NIC", "brk_diff": 0, "name": "Nicaragua", "name_long": "Nicaragua", "brk_a3": "NIC", "brk_name": "Nicaragua", "abbrev": "Nic.", "postal": "NI", "formal_en": "Republic of Nicaragua", "name_sort": "Nicaragua", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 5891199, "gdp_md_est": 16790, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NI", "iso_a3": "NIC", "iso_n3": "558", "un_a3": "558", "wb_a2": "NI", "wb_a3": "NIC", "woe_id": -99, "adm0_a3_is": "NIC", "adm0_a3_us": "NIC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.839417, 11.393879 ], [ -83.855896, 11.375031 ], [ -83.822937, 11.178402 ], [ -83.809204, 11.105642 ], [ -83.658142, 10.941192 ], [ -83.897095, 10.728080 ], [ -84.190979, 10.795537 ], [ -84.358521, 11.000512 ], [ -84.674377, 11.084080 ], [ -84.905090, 10.954675 ], [ -85.468140, 11.178402 ], [ -85.564270, 11.218816 ], [ -85.608215, 11.178402 ], [ -85.712585, 11.089471 ], [ -85.811462, 11.178402 ], [ -86.050415, 11.393879 ], [ -83.839417, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Costa Rica", "sov_a3": "CRI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Costa Rica", "adm0_a3": "CRI", "geou_dif": 0, "geounit": "Costa Rica", "gu_a3": "CRI", "su_dif": 0, "subunit": "Costa Rica", "su_a3": "CRI", "brk_diff": 0, "name": "Costa Rica", "name_long": "Costa Rica", "brk_a3": "CRI", "brk_name": "Costa Rica", "abbrev": "C.R.", "postal": "CR", "formal_en": "Republic of Costa Rica", "name_sort": "Costa Rica", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 4253877, "gdp_md_est": 48320, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CR", "iso_a3": "CRI", "iso_n3": "188", "un_a3": "188", "wb_a2": "CR", "wb_a3": "CRI", "woe_id": -99, "adm0_a3_is": "CRI", "adm0_a3_us": "CRI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.564270, 11.218816 ], [ -85.468140, 11.178402 ], [ -84.905090, 10.954675 ], [ -84.674377, 11.084080 ], [ -84.358521, 11.000512 ], [ -84.190979, 10.795537 ], [ -83.897095, 10.728080 ], [ -83.658142, 10.941192 ], [ -83.402710, 10.395975 ], [ -83.018188, 9.993196 ], [ -82.548523, 9.568251 ], [ -82.933044, 9.478863 ], [ -82.927551, 9.074976 ], [ -82.721558, 8.925774 ], [ -82.869873, 8.809082 ], [ -82.831421, 8.627188 ], [ -82.913818, 8.426187 ], [ -82.966003, 8.225082 ], [ -83.509827, 8.447922 ], [ -83.713074, 8.657057 ], [ -83.597717, 8.830795 ], [ -83.633423, 9.053277 ], [ -83.910828, 9.291886 ], [ -84.303589, 9.489699 ], [ -84.649658, 9.616998 ], [ -84.715576, 9.909333 ], [ -84.976501, 10.087854 ], [ -84.913330, 9.798384 ], [ -85.111084, 9.557417 ], [ -85.341797, 9.836273 ], [ -85.663147, 9.933682 ], [ -85.797729, 10.136524 ], [ -85.792236, 10.441897 ], [ -85.660400, 10.755064 ], [ -85.943298, 10.895345 ], [ -85.608215, 11.178402 ], [ -85.564270, 11.218816 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Panama", "sov_a3": "PAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Panama", "adm0_a3": "PAN", "geou_dif": 0, "geounit": "Panama", "gu_a3": "PAN", "su_dif": 0, "subunit": "Panama", "su_a3": "PAN", "brk_diff": 0, "name": "Panama", "name_long": "Panama", "brk_a3": "PAN", "brk_name": "Panama", "abbrev": "Pan.", "postal": "PA", "formal_en": "Republic of Panama", "name_sort": "Panama", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 3360474, "gdp_md_est": 38830, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PA", "iso_a3": "PAN", "iso_n3": "591", "un_a3": "591", "wb_a2": "PA", "wb_a3": "PAN", "woe_id": -99, "adm0_a3_is": "PAN", "adm0_a3_us": "PAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.573975, 9.614290 ], [ -79.021912, 9.554709 ], [ -79.060364, 9.457190 ], [ -78.750000, 9.438224 ], [ -78.530273, 9.424677 ], [ -78.530273, 8.556578 ], [ -78.623657, 8.719503 ], [ -78.750000, 8.790083 ], [ -79.120789, 8.996313 ], [ -79.560242, 8.933914 ], [ -79.760742, 8.586453 ], [ -80.164490, 8.333800 ], [ -80.384216, 8.298470 ], [ -80.483093, 8.091862 ], [ -80.005188, 7.547656 ], [ -80.277100, 7.422389 ], [ -80.422668, 7.272568 ], [ -80.886841, 7.220800 ], [ -81.059875, 7.819847 ], [ -81.191711, 7.648387 ], [ -81.521301, 7.708270 ], [ -81.721802, 8.110896 ], [ -82.133789, 8.176149 ], [ -82.391968, 8.293035 ], [ -82.820435, 8.293035 ], [ -82.853394, 8.075546 ], [ -82.966003, 8.225082 ], [ -82.913818, 8.426187 ], [ -82.831421, 8.627188 ], [ -82.869873, 8.809082 ], [ -82.721558, 8.925774 ], [ -82.927551, 9.074976 ], [ -82.933044, 9.478863 ], [ -82.548523, 9.568251 ], [ -82.188721, 9.207849 ], [ -82.207947, 8.996313 ], [ -81.809692, 8.952906 ], [ -81.716309, 9.034290 ], [ -81.441650, 8.787368 ], [ -80.950012, 8.860648 ], [ -80.524292, 9.112945 ], [ -79.917297, 9.313569 ], [ -79.573975, 9.614290 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.530273, 2.471157 ], [ -78.530273, 1.197423 ], [ -78.750000, 1.320989 ], [ -78.857117, 1.381397 ], [ -78.991699, 1.691649 ], [ -78.750000, 1.741065 ], [ -78.618164, 1.768518 ], [ -78.664856, 2.268084 ], [ -78.530273, 2.471157 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.857117, 1.381397 ], [ -78.750000, 1.320989 ], [ -78.530273, 1.197423 ], [ -78.530273, -0.219726 ], [ -80.362244, -0.219726 ], [ -80.233154, 0.000000 ], [ -80.021667, 0.362546 ], [ -80.093079, 0.769020 ], [ -79.543762, 0.983228 ], [ -78.857117, 1.381397 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.052917, 21.545066 ], [ -86.813965, 21.332873 ], [ -86.846924, 20.851112 ], [ -87.385254, 20.257044 ], [ -87.621460, 19.647761 ], [ -87.437439, 19.474361 ], [ -87.588501, 19.041349 ], [ -87.838440, 18.260653 ], [ -88.091125, 18.518679 ], [ -88.492126, 18.487424 ], [ -88.849182, 17.884659 ], [ -89.030457, 18.002244 ], [ -89.151306, 17.957832 ], [ -89.145813, 17.808841 ], [ -90.000000, 17.819301 ], [ -90.068665, 17.821916 ], [ -90.219727, 17.819301 ], [ -90.219727, 21.022983 ], [ -90.000000, 21.110125 ], [ -89.601746, 21.263781 ], [ -88.544312, 21.493964 ], [ -87.659912, 21.460737 ], [ -87.052917, 21.545066 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guatemala", "sov_a3": "GTM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guatemala", "adm0_a3": "GTM", "geou_dif": 0, "geounit": "Guatemala", "gu_a3": "GTM", "su_dif": 0, "subunit": "Guatemala", "su_a3": "GTM", "brk_diff": 0, "name": "Guatemala", "name_long": "Guatemala", "brk_a3": "GTM", "brk_name": "Guatemala", "abbrev": "Guat.", "postal": "GT", "formal_en": "Republic of Guatemala", "name_sort": "Guatemala", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 13276517, "gdp_md_est": 68580, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GT", "iso_a3": "GTM", "iso_n3": "320", "un_a3": "320", "wb_a2": "GT", "wb_a3": "GTM", "woe_id": -99, "adm0_a3_is": "GTM", "adm0_a3_us": "GTM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.819301 ], [ -89.145813, 17.808841 ], [ -89.151306, 17.017394 ], [ -89.230957, 15.887376 ], [ -88.931580, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.519592, 15.855674 ], [ -88.225708, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.156799, 15.066819 ], [ -89.225464, 14.875778 ], [ -89.145813, 14.679254 ], [ -89.354553, 14.426700 ], [ -89.588013, 14.362852 ], [ -89.535828, 14.245749 ], [ -89.722595, 14.136576 ], [ -90.000000, 13.931401 ], [ -90.065918, 13.883412 ], [ -90.096130, 13.736717 ], [ -90.219727, 13.779402 ], [ -90.219727, 17.819301 ], [ -90.000000, 17.819301 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Belize", "sov_a3": "BLZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belize", "adm0_a3": "BLZ", "geou_dif": 0, "geounit": "Belize", "gu_a3": "BLZ", "su_dif": 0, "subunit": "Belize", "su_a3": "BLZ", "brk_diff": 0, "name": "Belize", "name_long": "Belize", "brk_a3": "BLZ", "brk_name": "Belize", "abbrev": "Belize", "postal": "BZ", "formal_en": "Belize", "name_sort": "Belize", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 307899, "gdp_md_est": 2536, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BZ", "iso_a3": "BLZ", "iso_n3": "084", "un_a3": "084", "wb_a2": "BZ", "wb_a3": "BLZ", "woe_id": -99, "adm0_a3_is": "BLZ", "adm0_a3_us": "BLZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.302612, 18.500447 ], [ -88.297119, 18.354526 ], [ -88.107605, 18.349312 ], [ -88.124084, 18.077979 ], [ -88.286133, 17.646639 ], [ -88.198242, 17.489531 ], [ -88.305359, 17.132916 ], [ -88.242188, 17.038403 ], [ -88.357544, 16.530898 ], [ -88.552551, 16.267414 ], [ -88.733826, 16.235772 ], [ -88.931580, 15.887376 ], [ -89.230957, 15.887376 ], [ -89.151306, 17.017394 ], [ -89.145813, 17.808841 ], [ -89.151306, 17.957832 ], [ -89.030457, 18.002244 ], [ -88.849182, 17.884659 ], [ -88.492126, 18.487424 ], [ -88.302612, 18.500447 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "El Salvador", "sov_a3": "SLV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "El Salvador", "adm0_a3": "SLV", "geou_dif": 0, "geounit": "El Salvador", "gu_a3": "SLV", "su_dif": 0, "subunit": "El Salvador", "su_a3": "SLV", "brk_diff": 0, "name": "El Salvador", "name_long": "El Salvador", "brk_a3": "SLV", "brk_name": "El Salvador", "abbrev": "El. S.", "postal": "SV", "formal_en": "Republic of El Salvador", "name_sort": "El Salvador", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 8, "pop_est": 7185218, "gdp_md_est": 43630, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SV", "iso_a3": "SLV", "iso_n3": "222", "un_a3": "222", "wb_a2": "SV", "wb_a3": "SLV", "woe_id": -99, "adm0_a3_is": "SLV", "adm0_a3_us": "SLV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 11, "long_len": 11, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.354553, 14.426700 ], [ -89.060669, 14.341565 ], [ -88.843689, 14.141902 ], [ -88.541565, 13.982046 ], [ -88.505859, 13.846080 ], [ -88.066406, 13.966054 ], [ -87.860413, 13.894077 ], [ -87.725830, 13.787404 ], [ -87.794495, 13.386948 ], [ -87.904358, 13.149027 ], [ -88.483887, 13.165074 ], [ -88.843689, 13.261333 ], [ -89.258423, 13.459080 ], [ -89.813232, 13.523179 ], [ -90.000000, 13.664669 ], [ -90.096130, 13.736717 ], [ -90.065918, 13.883412 ], [ -90.000000, 13.931401 ], [ -89.722595, 14.136576 ], [ -89.535828, 14.245749 ], [ -89.588013, 14.362852 ], [ -89.354553, 14.426700 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Honduras", "sov_a3": "HND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Honduras", "adm0_a3": "HND", "geou_dif": 0, "geounit": "Honduras", "gu_a3": "HND", "su_dif": 0, "subunit": "Honduras", "su_a3": "HND", "brk_diff": 0, "name": "Honduras", "name_long": "Honduras", "brk_a3": "HND", "brk_name": "Honduras", "abbrev": "Hond.", "postal": "HN", "formal_en": "Republic of Honduras", "name_sort": "Honduras", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7792854, "gdp_md_est": 33720, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "HN", "iso_a3": "HND", "iso_n3": "340", "un_a3": "340", "wb_a2": "HN", "wb_a3": "HND", "woe_id": -99, "adm0_a3_is": "HND", "adm0_a3_us": "HND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.003723, 16.006216 ], [ -85.685120, 15.956048 ], [ -85.446167, 15.887376 ], [ -85.182495, 15.911150 ], [ -84.984741, 15.998295 ], [ -84.528809, 15.858316 ], [ -84.369507, 15.837178 ], [ -84.064636, 15.649486 ], [ -83.776245, 15.424558 ], [ -83.410950, 15.270938 ], [ -83.147278, 14.997852 ], [ -83.490601, 15.016422 ], [ -83.630676, 14.881087 ], [ -83.976746, 14.750979 ], [ -84.229431, 14.750979 ], [ -84.451904, 14.623451 ], [ -84.649658, 14.668626 ], [ -84.822693, 14.820026 ], [ -84.927063, 14.790817 ], [ -85.053406, 14.551684 ], [ -85.149536, 14.562318 ], [ -85.166016, 14.354870 ], [ -85.514832, 14.080637 ], [ -85.698853, 13.960723 ], [ -85.803223, 13.838080 ], [ -86.097107, 14.040673 ], [ -86.314087, 13.771399 ], [ -86.522827, 13.779402 ], [ -86.756287, 13.755392 ], [ -86.734314, 13.264006 ], [ -86.882629, 13.255986 ], [ -87.006226, 13.025966 ], [ -87.319336, 12.985824 ], [ -87.489624, 13.298757 ], [ -87.794495, 13.386948 ], [ -87.725830, 13.787404 ], [ -87.860413, 13.894077 ], [ -88.066406, 13.966054 ], [ -88.505859, 13.846080 ], [ -88.541565, 13.982046 ], [ -88.843689, 14.141902 ], [ -89.060669, 14.341565 ], [ -89.354553, 14.426700 ], [ -89.145813, 14.679254 ], [ -89.225464, 14.875778 ], [ -89.156799, 15.066819 ], [ -88.681641, 15.347762 ], [ -88.225708, 15.728814 ], [ -88.121338, 15.689154 ], [ -87.904358, 15.866242 ], [ -87.615967, 15.879451 ], [ -87.525330, 15.797539 ], [ -87.368774, 15.847747 ], [ -86.904602, 15.757893 ], [ -86.443176, 15.784325 ], [ -86.121826, 15.895301 ], [ -86.003723, 16.006216 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Nicaragua", "sov_a3": "NIC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nicaragua", "adm0_a3": "NIC", "geou_dif": 0, "geounit": "Nicaragua", "gu_a3": "NIC", "su_dif": 0, "subunit": "Nicaragua", "su_a3": "NIC", "brk_diff": 0, "name": "Nicaragua", "name_long": "Nicaragua", "brk_a3": "NIC", "brk_name": "Nicaragua", "abbrev": "Nic.", "postal": "NI", "formal_en": "Republic of Nicaragua", "name_sort": "Nicaragua", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 5891199, "gdp_md_est": 16790, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NI", "iso_a3": "NIC", "iso_n3": "558", "un_a3": "558", "wb_a2": "NI", "wb_a3": "NIC", "woe_id": -99, "adm0_a3_is": "NIC", "adm0_a3_us": "NIC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.490601, 15.016422 ], [ -83.147278, 14.997852 ], [ -83.235168, 14.902322 ], [ -83.284607, 14.679254 ], [ -83.182983, 14.312292 ], [ -83.413696, 13.971385 ], [ -83.520813, 13.568572 ], [ -83.553772, 13.127629 ], [ -83.498840, 12.870715 ], [ -83.474121, 12.420483 ], [ -83.627930, 12.321219 ], [ -83.721313, 11.894228 ], [ -83.652649, 11.630716 ], [ -83.855896, 11.375031 ], [ -83.822937, 11.178402 ], [ -83.809204, 11.105642 ], [ -83.680115, 10.962764 ], [ -84.328308, 10.962764 ], [ -84.358521, 11.000512 ], [ -84.674377, 11.084080 ], [ -84.885864, 10.962764 ], [ -84.929810, 10.962764 ], [ -85.468140, 11.178402 ], [ -85.564270, 11.218816 ], [ -85.608215, 11.178402 ], [ -85.712585, 11.089471 ], [ -85.811462, 11.178402 ], [ -86.058655, 11.404649 ], [ -86.528320, 11.808211 ], [ -86.748047, 12.144061 ], [ -87.168274, 12.460715 ], [ -87.670898, 12.910875 ], [ -87.558289, 13.066101 ], [ -87.393494, 12.916230 ], [ -87.319336, 12.985824 ], [ -87.006226, 13.025966 ], [ -86.882629, 13.255986 ], [ -86.734314, 13.264006 ], [ -86.756287, 13.755392 ], [ -86.522827, 13.779402 ], [ -86.314087, 13.771399 ], [ -86.097107, 14.040673 ], [ -85.803223, 13.838080 ], [ -85.698853, 13.960723 ], [ -85.514832, 14.080637 ], [ -85.166016, 14.354870 ], [ -85.149536, 14.562318 ], [ -85.053406, 14.551684 ], [ -84.927063, 14.790817 ], [ -84.822693, 14.820026 ], [ -84.649658, 14.668626 ], [ -84.451904, 14.623451 ], [ -84.229431, 14.750979 ], [ -83.976746, 14.750979 ], [ -83.630676, 14.881087 ], [ -83.490601, 15.016422 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cuba", "sov_a3": "CUB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cuba", "adm0_a3": "CUB", "geou_dif": 0, "geounit": "Cuba", "gu_a3": "CUB", "su_dif": 0, "subunit": "Cuba", "su_a3": "CUB", "brk_diff": 0, "name": "Cuba", "name_long": "Cuba", "brk_a3": "CUB", "brk_name": "Cuba", "abbrev": "Cuba", "postal": "CU", "formal_en": "Republic of Cuba", "name_sort": "Cuba", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 11451652, "gdp_md_est": 108200, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CU", "iso_a3": "CUB", "iso_n3": "192", "un_a3": "192", "wb_a2": "CU", "wb_a3": "CUB", "woe_id": -99, "adm0_a3_is": "CUB", "adm0_a3_us": "CUB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.530273, 22.146708 ], [ -78.530273, 21.143431 ], [ -78.722534, 21.598704 ], [ -78.750000, 21.596151 ], [ -79.285583, 21.560393 ], [ -80.219421, 21.828357 ], [ -80.384216, 21.943046 ], [ -80.518799, 22.037276 ], [ -81.441650, 22.146708 ], [ -78.530273, 22.146708 ] ] ], [ [ [ -83.913574, 22.146708 ], [ -84.034424, 21.943046 ], [ -84.053650, 21.912471 ], [ -84.548035, 21.802858 ], [ -84.976501, 21.897181 ], [ -84.896851, 21.943046 ], [ -84.548035, 22.146708 ], [ -83.913574, 22.146708 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Costa Rica", "sov_a3": "CRI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Costa Rica", "adm0_a3": "CRI", "geou_dif": 0, "geounit": "Costa Rica", "gu_a3": "CRI", "su_dif": 0, "subunit": "Costa Rica", "su_a3": "CRI", "brk_diff": 0, "name": "Costa Rica", "name_long": "Costa Rica", "brk_a3": "CRI", "brk_name": "Costa Rica", "abbrev": "C.R.", "postal": "CR", "formal_en": "Republic of Costa Rica", "name_sort": "Costa Rica", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 4253877, "gdp_md_est": 48320, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CR", "iso_a3": "CRI", "iso_n3": "188", "un_a3": "188", "wb_a2": "CR", "wb_a3": "CRI", "woe_id": -99, "adm0_a3_is": "CRI", "adm0_a3_us": "CRI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.564270, 11.218816 ], [ -85.468140, 11.178402 ], [ -84.929810, 10.962764 ], [ -85.863647, 10.962764 ], [ -85.608215, 11.178402 ], [ -85.564270, 11.218816 ] ] ], [ [ [ -84.358521, 11.000512 ], [ -84.328308, 10.962764 ], [ -84.885864, 10.962764 ], [ -84.674377, 11.084080 ], [ -84.358521, 11.000512 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.741272, 32.138409 ], [ -80.867615, 32.033692 ], [ -80.930786, 31.952162 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.730032 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.538025, 28.473520 ], [ -80.532532, 28.040471 ], [ -80.057373, 26.880431 ], [ -80.090332, 26.207199 ], [ -80.134277, 25.817200 ], [ -80.381470, 25.207426 ], [ -80.680847, 25.080624 ], [ -81.172485, 25.202456 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.871581 ], [ -82.240906, 26.730893 ], [ -82.707825, 27.496090 ], [ -82.856140, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.101777 ], [ -83.710327, 29.938275 ], [ -84.100342, 30.090484 ], [ -85.111084, 29.637933 ], [ -85.289612, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.530823, 30.275672 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.596252, 30.161752 ], [ -89.414978, 29.895425 ], [ -89.431458, 29.489816 ], [ -89.219971, 29.291190 ], [ -89.409485, 29.161756 ], [ -89.780273, 29.307956 ], [ -90.000000, 29.197726 ], [ -90.156555, 29.118574 ], [ -90.219727, 29.120974 ], [ -90.219727, 32.138409 ], [ -80.741272, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "The Bahamas", "sov_a3": "BHS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "The Bahamas", "adm0_a3": "BHS", "geou_dif": 0, "geounit": "The Bahamas", "gu_a3": "BHS", "su_dif": 0, "subunit": "The Bahamas", "su_a3": "BHS", "brk_diff": 0, "name": "Bahamas", "name_long": "Bahamas", "brk_a3": "BHS", "brk_name": "Bahamas", "abbrev": "Bhs.", "postal": "BS", "formal_en": "Commonwealth of the Bahamas", "name_sort": "Bahamas, The", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 309156, "gdp_md_est": 9093, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BS", "iso_a3": "BHS", "iso_n3": "044", "un_a3": "044", "wb_a2": "BS", "wb_a3": "BHS", "woe_id": -99, "adm0_a3_is": "BHS", "adm0_a3_us": "BHS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.530273, 26.868181 ], [ -78.530273, 26.477949 ], [ -78.750000, 26.443525 ], [ -78.912048, 26.421390 ], [ -78.980713, 26.792203 ], [ -78.750000, 26.831424 ], [ -78.530273, 26.868181 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cuba", "sov_a3": "CUB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cuba", "adm0_a3": "CUB", "geou_dif": 0, "geounit": "Cuba", "gu_a3": "CUB", "su_dif": 0, "subunit": "Cuba", "su_a3": "CUB", "brk_diff": 0, "name": "Cuba", "name_long": "Cuba", "brk_a3": "CUB", "brk_name": "Cuba", "abbrev": "Cuba", "postal": "CU", "formal_en": "Republic of Cuba", "name_sort": "Cuba", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 11451652, "gdp_md_est": 108200, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CU", "iso_a3": "CUB", "iso_n3": "192", "un_a3": "192", "wb_a2": "CU", "wb_a3": "CUB", "woe_id": -99, "adm0_a3_is": "CUB", "adm0_a3_us": "CUB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.268372, 23.190863 ], [ -81.405945, 23.117628 ], [ -80.620422, 23.107523 ], [ -79.681091, 22.766051 ], [ -79.282837, 22.400872 ], [ -78.750000, 22.464340 ], [ -78.530273, 22.492257 ], [ -78.530273, 21.739091 ], [ -79.911804, 21.739091 ], [ -80.219421, 21.828357 ], [ -80.384216, 21.943046 ], [ -80.518799, 22.037276 ], [ -81.823425, 22.192491 ], [ -82.172241, 22.388174 ], [ -81.795959, 22.639363 ], [ -82.776489, 22.690052 ], [ -83.496094, 22.169601 ], [ -83.910828, 22.156883 ], [ -84.034424, 21.943046 ], [ -84.053650, 21.912471 ], [ -84.548035, 21.802858 ], [ -84.976501, 21.897181 ], [ -84.896851, 21.943046 ], [ -84.449158, 22.205206 ], [ -84.232178, 22.565830 ], [ -83.778992, 22.788843 ], [ -83.268127, 22.983681 ], [ -82.512817, 23.079732 ], [ -82.268372, 23.190863 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.530273, 41.145570 ], [ -78.530273, 33.865854 ], [ -78.554993, 33.863574 ], [ -78.750000, 33.719771 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.301819, 32.509762 ], [ -80.867615, 32.033692 ], [ -80.930786, 31.952162 ], [ -81.079102, 31.765537 ], [ -90.219727, 31.765537 ], [ -90.219727, 41.145570 ], [ -78.530273, 41.145570 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -78.530273, 49.066668 ], [ -78.530273, 43.626135 ], [ -78.722534, 43.626135 ], [ -78.750000, 43.616194 ], [ -79.172974, 43.466874 ], [ -79.010925, 43.271206 ], [ -78.920288, 42.966472 ], [ -78.939514, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.279602, 42.210211 ], [ -82.441406, 41.677015 ], [ -82.691345, 41.677015 ], [ -83.031921, 41.834781 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.900085, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.471375, 45.995054 ], [ -83.616943, 46.117038 ], [ -83.891602, 46.117038 ], [ -84.092102, 46.276733 ], [ -84.144287, 46.513516 ], [ -84.339294, 46.409458 ], [ -84.605713, 46.439750 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.877625, 46.901492 ], [ -86.462402, 47.554287 ], [ -87.440186, 47.940267 ], [ -88.379517, 48.303294 ], [ -89.274902, 48.021161 ], [ -89.601746, 48.010138 ], [ -90.000000, 48.096426 ], [ -90.219727, 48.142265 ], [ -90.219727, 49.066668 ], [ -78.530273, 49.066668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.379517, 48.303294 ], [ -87.440186, 47.940267 ], [ -86.462402, 47.554287 ], [ -84.877625, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.439750 ], [ -84.339294, 46.409458 ], [ -84.144287, 46.513516 ], [ -84.092102, 46.276733 ], [ -83.891602, 46.117038 ], [ -83.616943, 46.117038 ], [ -83.471375, 45.995054 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.900085, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.031921, 41.834781 ], [ -82.691345, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.279602, 42.210211 ], [ -80.249634, 42.366662 ], [ -78.939514, 42.863886 ], [ -78.920288, 42.966472 ], [ -79.010925, 43.271206 ], [ -79.172974, 43.466874 ], [ -78.750000, 43.616194 ], [ -78.722534, 43.626135 ], [ -78.530273, 43.626135 ], [ -78.530273, 40.813809 ], [ -90.219727, 40.813809 ], [ -90.219727, 48.142265 ], [ -90.000000, 48.096426 ], [ -89.601746, 48.010138 ], [ -89.274902, 48.021161 ], [ -88.379517, 48.303294 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -86.874390, 55.899956 ], [ -86.311340, 55.776573 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.361511, 55.246249 ], [ -82.273865, 55.149058 ], [ -82.438660, 54.282865 ], [ -82.125549, 53.278353 ], [ -81.403198, 52.158770 ], [ -79.914551, 51.208604 ], [ -79.145508, 51.534377 ], [ -78.750000, 52.283282 ], [ -78.604431, 52.562995 ], [ -78.750000, 53.016436 ], [ -79.126282, 54.141523 ], [ -79.832153, 54.669066 ], [ -78.750000, 54.985494 ], [ -78.530273, 55.050056 ], [ -78.530273, 48.777913 ], [ -90.219727, 48.777913 ], [ -90.219727, 55.899956 ], [ -86.874390, 55.899956 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -90.219727, 57.128786 ], [ -90.000000, 57.076575 ], [ -89.041443, 56.851976 ], [ -88.041687, 56.473111 ], [ -87.324829, 55.999917 ], [ -86.311340, 55.776573 ], [ -86.072388, 55.724017 ], [ -85.893860, 55.652798 ], [ -90.219727, 55.652798 ], [ -90.219727, 57.128786 ] ] ], [ [ [ -79.601440, 61.710706 ], [ -79.659119, 61.633812 ], [ -80.062866, 61.710706 ], [ -79.601440, 61.710706 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -79.931030, 62.386551 ], [ -79.521790, 62.364901 ], [ -79.266357, 62.159089 ], [ -79.659119, 61.633812 ], [ -80.101318, 61.718515 ], [ -80.362244, 62.017662 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.386551 ] ] ], [ [ [ -83.251648, 62.915233 ], [ -81.878357, 62.905227 ], [ -81.900330, 62.711944 ], [ -83.070374, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.251648, 62.915233 ] ] ], [ [ [ -85.885620, 65.739656 ], [ -85.163269, 65.658275 ], [ -84.976501, 65.217591 ], [ -84.465637, 65.372560 ], [ -83.883362, 65.110304 ], [ -82.790222, 64.767101 ], [ -81.642151, 64.456218 ], [ -81.554260, 63.980781 ], [ -80.818176, 64.057785 ], [ -80.104065, 63.726615 ], [ -80.991211, 63.412427 ], [ -82.548523, 63.652355 ], [ -83.108826, 64.102206 ], [ -84.103088, 63.570566 ], [ -85.525818, 63.052470 ], [ -85.869141, 63.637723 ], [ -87.223206, 63.542434 ], [ -86.355286, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ] ] ], [ [ [ -82.820435, 66.600676 ], [ -83.064880, 66.513260 ], [ -83.345032, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.559192 ], [ -85.797729, 66.513260 ], [ -86.069641, 66.057060 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.099807 ], [ -89.914856, 64.033744 ], [ -90.000000, 63.988009 ], [ -90.219727, 63.870924 ], [ -90.219727, 66.600676 ], [ -82.820435, 66.600676 ] ] ], [ [ [ -78.530273, 64.602682 ], [ -78.530273, 64.562601 ], [ -78.557739, 64.573216 ], [ -78.530273, 64.602682 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -85.523071, 69.882176 ], [ -84.103088, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.966248, 68.132715 ], [ -81.260376, 67.597709 ], [ -81.386719, 67.111272 ], [ -83.064880, 66.513260 ], [ -83.306580, 66.425537 ], [ -85.314331, 66.425537 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.559192 ], [ -85.797729, 66.513260 ], [ -85.849915, 66.425537 ], [ -90.219727, 66.425537 ], [ -90.219727, 68.672544 ], [ -90.000000, 68.802028 ], [ -89.217224, 69.259067 ], [ -88.019714, 68.615532 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.922044 ], [ -85.578003, 68.785138 ], [ -85.523071, 69.882176 ] ] ], [ [ [ -78.530273, 70.685421 ], [ -78.530273, 69.983955 ], [ -78.750000, 70.078691 ], [ -78.958740, 70.167405 ], [ -79.494324, 69.872727 ], [ -81.307068, 69.743797 ], [ -84.946289, 69.967026 ], [ -87.061157, 70.260380 ], [ -88.684387, 70.411031 ], [ -89.159546, 70.612614 ], [ -89.332581, 70.685421 ], [ -78.530273, 70.685421 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -85.827942, 73.804149 ], [ -86.564026, 73.157604 ], [ -85.775757, 72.534726 ], [ -84.850159, 73.340461 ], [ -82.317810, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -78.750000, 72.361616 ], [ -78.530273, 72.454588 ], [ -78.530273, 70.539543 ], [ -88.986511, 70.539543 ], [ -89.159546, 70.612614 ], [ -89.513855, 70.762491 ], [ -88.470154, 71.218728 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.586606 ], [ -90.205994, 72.235514 ], [ -90.000000, 72.478584 ], [ -89.436951, 73.129728 ], [ -88.409729, 73.538520 ], [ -85.827942, 73.804149 ] ] ], [ [ [ -80.354004, 73.760425 ], [ -78.750000, 73.684982 ], [ -78.530273, 73.674177 ], [ -78.530273, 72.859838 ], [ -78.750000, 72.833106 ], [ -79.488831, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.878601, 73.333373 ], [ -80.834656, 73.693467 ], [ -80.354004, 73.760425 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -90.219727, 75.926879 ], [ -90.000000, 75.883402 ], [ -89.824219, 75.847855 ], [ -89.189758, 75.610214 ], [ -87.838440, 75.566465 ], [ -86.380005, 75.482706 ], [ -84.789734, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.060120, 75.337416 ], [ -79.834900, 74.923713 ], [ -80.458374, 74.657836 ], [ -81.949768, 74.442729 ], [ -83.229675, 74.564543 ], [ -86.099854, 74.410284 ], [ -88.151550, 74.392559 ], [ -89.766541, 74.516223 ], [ -90.000000, 74.544794 ], [ -90.219727, 74.571852 ], [ -90.219727, 75.926879 ] ] ], [ [ [ -78.530273, 76.890745 ], [ -78.530273, 76.636687 ], [ -78.750000, 76.587719 ], [ -80.562744, 76.178435 ], [ -83.174744, 76.454560 ], [ -86.113586, 76.299303 ], [ -87.602234, 76.420423 ], [ -89.491882, 76.472561 ], [ -89.588013, 76.840816 ], [ -89.601746, 76.890745 ], [ -78.530273, 76.890745 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -78.530273, 79.212538 ], [ -78.530273, 77.473179 ], [ -78.750000, 77.426628 ], [ -79.760742, 77.210168 ], [ -79.620667, 76.983861 ], [ -78.750000, 77.003642 ], [ -78.530273, 77.008582 ], [ -78.530273, 76.790701 ], [ -89.574280, 76.790701 ], [ -89.588013, 76.840816 ], [ -89.618225, 76.952275 ], [ -87.769775, 77.178513 ], [ -88.261414, 77.900134 ], [ -87.651672, 77.970745 ], [ -84.976501, 77.539133 ], [ -86.341553, 78.180150 ], [ -87.962036, 78.372130 ], [ -87.154541, 78.758693 ], [ -85.380249, 78.997102 ], [ -85.240173, 79.171335 ], [ -85.204468, 79.212538 ], [ -78.530273, 79.212538 ] ] ], [ [ [ -86.393738, 79.212538 ], [ -86.583252, 79.171335 ], [ -87.190247, 79.039482 ], [ -89.035950, 78.287684 ], [ -90.000000, 78.248591 ], [ -90.219727, 78.239637 ], [ -90.219727, 79.212538 ], [ -86.393738, 79.212538 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -90.219727, 80.608121 ], [ -90.000000, 80.579842 ], [ -89.450684, 80.509454 ], [ -87.810974, 80.320120 ], [ -87.022705, 79.660106 ], [ -85.816956, 79.337252 ], [ -86.583252, 79.171335 ], [ -86.775513, 79.129976 ], [ -90.219727, 79.129976 ], [ -90.219727, 80.608121 ] ] ], [ [ [ -78.530273, 81.127169 ], [ -78.530273, 79.129976 ], [ -85.273132, 79.129976 ], [ -85.240173, 79.171335 ], [ -85.097351, 79.345888 ], [ -86.509094, 79.736728 ], [ -86.932068, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.410950, 80.100165 ], [ -81.850891, 80.464515 ], [ -84.100342, 80.580292 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.855820 ], [ -89.851685, 81.093214 ], [ -89.923096, 81.127169 ], [ -78.530273, 81.127169 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -78.530273, 82.704241 ], [ -78.530273, 81.059130 ], [ -89.783020, 81.059130 ], [ -89.851685, 81.093214 ], [ -90.000000, 81.164794 ], [ -90.200500, 81.260042 ], [ -90.219727, 81.265049 ], [ -90.219727, 82.070028 ], [ -90.101624, 82.085171 ], [ -90.000000, 82.087818 ], [ -88.934326, 82.117630 ], [ -86.970520, 82.279799 ], [ -85.501099, 82.652438 ], [ -84.262390, 82.600269 ], [ -83.180237, 82.320279 ], [ -82.685852, 82.676285 ], [ -82.647400, 82.704241 ], [ -78.530273, 82.704241 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -85.501099, 82.652438 ], [ -85.404968, 82.648222 ], [ -85.517578, 82.648222 ], [ -85.501099, 82.652438 ] ] ], [ [ [ -78.530273, 82.648222 ], [ -82.727051, 82.648222 ], [ -82.685852, 82.676285 ], [ -82.422180, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.307556, 83.130809 ], [ -78.750000, 83.138360 ], [ -78.530273, 83.141313 ], [ -78.530273, 82.648222 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -67.280273, -83.956169 ], [ -67.280273, -85.070048 ], [ -78.969727, -85.070048 ], [ -78.969727, -83.956169 ], [ -67.280273, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -67.280273, -82.648222 ], [ -67.280273, -84.002262 ], [ -78.969727, -84.002262 ], [ -78.969727, -82.648222 ], [ -67.280273, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -69.700012, -81.059130 ], [ -69.502258, -81.093214 ], [ -68.192139, -81.317447 ], [ -67.500000, -81.361287 ], [ -67.280273, -81.375303 ], [ -67.280273, -82.704241 ], [ -78.969727, -82.704241 ], [ -78.969727, -81.059130 ], [ -69.700012, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -78.019409, -79.129976 ], [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.259434 ], [ -73.245850, -80.416165 ], [ -71.444092, -80.690233 ], [ -70.015869, -81.003896 ], [ -69.502258, -81.093214 ], [ -69.307251, -81.127169 ], [ -78.969727, -81.127169 ], [ -78.969727, -79.129976 ], [ -78.019409, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -77.178955, -76.790701 ], [ -77.140503, -76.840816 ], [ -76.929016, -77.104554 ], [ -75.401917, -77.280509 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789705 ], [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -77.917786, -79.212538 ], [ -78.969727, -79.212538 ], [ -78.969727, -76.790701 ], [ -77.178955, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -67.280273, -73.958939 ], [ -67.280273, -75.806833 ], [ -67.500000, -75.844497 ], [ -68.447571, -76.006799 ], [ -69.798889, -76.222983 ], [ -70.600891, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.242126, -76.712650 ], [ -77.140503, -76.840816 ], [ -77.099304, -76.890745 ], [ -78.969727, -76.890745 ], [ -78.969727, -73.958939 ], [ -76.245117, -73.958939 ], [ -76.223145, -73.968802 ], [ -76.077576, -73.958939 ], [ -67.280273, -73.958939 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ -67.280273, -72.318288 ], [ -67.280273, -74.079925 ], [ -78.969727, -74.079925 ], [ -78.969727, -73.494879 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.636303 ], [ -76.223145, -73.968802 ], [ -74.891052, -73.871428 ], [ -73.852844, -73.655637 ], [ -72.833862, -73.400984 ], [ -71.619873, -73.263913 ], [ -70.210876, -73.146459 ], [ -68.936462, -73.008952 ], [ -67.958679, -72.793339 ], [ -67.500000, -72.550381 ], [ -67.370911, -72.480238 ], [ -67.280273, -72.318288 ] ] ], [ [ [ -68.705750, -70.539543 ], [ -68.661804, -70.612614 ], [ -68.453064, -70.955217 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.091656 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.366609 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.661071 ], [ -73.916016, -71.269067 ], [ -73.232117, -71.151407 ], [ -72.075806, -71.190411 ], [ -71.781921, -70.680879 ], [ -71.770935, -70.612614 ], [ -71.759949, -70.539543 ], [ -68.705750, -70.539543 ] ] ], [ [ [ -67.280273, -71.601349 ], [ -67.500000, -71.327192 ], [ -67.565918, -71.245239 ], [ -67.917480, -70.853683 ], [ -68.112488, -70.612614 ], [ -68.170166, -70.539543 ], [ -67.280273, -70.539543 ], [ -67.280273, -71.601349 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 24 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ -70.254822, -68.878368 ], [ -69.724731, -69.250312 ], [ -69.491272, -69.622685 ], [ -69.060059, -70.074011 ], [ -68.727722, -70.504742 ], [ -68.661804, -70.612614 ], [ -68.617859, -70.685421 ], [ -71.784668, -70.685421 ], [ -71.770935, -70.612614 ], [ -71.724243, -70.308561 ], [ -71.743469, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.254822, -68.878368 ] ] ], [ [ [ -67.280273, -66.902061 ], [ -67.280273, -70.685421 ], [ -68.054810, -70.685421 ], [ -68.112488, -70.612614 ], [ -68.233337, -70.461615 ], [ -68.486023, -70.108616 ], [ -68.546448, -69.717155 ], [ -68.447571, -69.325109 ], [ -67.977905, -68.952473 ], [ -67.585144, -68.541301 ], [ -67.500000, -68.330320 ], [ -67.428589, -68.149077 ], [ -67.500000, -67.991108 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.326101 ], [ -67.500000, -67.104861 ], [ -67.280273, -66.902061 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 21 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.517892 ], [ -68.634338, -52.634730 ], [ -68.634338, -54.868705 ], [ -67.563171, -54.868705 ], [ -67.500000, -54.871866 ], [ -67.280273, -54.881347 ], [ -67.280273, -55.286937 ], [ -67.291260, -55.301011 ], [ -67.500000, -55.375989 ], [ -68.150940, -55.610935 ], [ -68.642578, -55.579897 ], [ -69.233093, -55.497527 ], [ -69.958191, -55.197683 ], [ -71.007385, -55.053203 ], [ -72.265320, -54.493972 ], [ -73.287048, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.046167 ], [ -72.435608, -53.714590 ], [ -71.109009, -54.073894 ], [ -70.592651, -53.615321 ], [ -70.268555, -52.930430 ], [ -69.345703, -52.517892 ] ] ], [ [ [ -72.597656, -48.777913 ], [ -72.649841, -48.877361 ], [ -72.726746, -48.922499 ], [ -73.416138, -49.317961 ], [ -73.328247, -50.378751 ], [ -72.976685, -50.739932 ], [ -72.312012, -50.675576 ], [ -72.331238, -51.424902 ], [ -71.916504, -52.008555 ], [ -69.499512, -52.141917 ], [ -68.573914, -52.298402 ], [ -69.463806, -52.291683 ], [ -69.944458, -52.536273 ], [ -70.845337, -52.898962 ], [ -71.007385, -53.833081 ], [ -71.430359, -53.855767 ], [ -72.559204, -53.530513 ], [ -73.704529, -52.834299 ], [ -74.948730, -52.261434 ], [ -75.261841, -51.628248 ], [ -74.978943, -51.043121 ], [ -75.481567, -50.376999 ], [ -75.591431, -48.922499 ], [ -75.602417, -48.777913 ], [ -72.597656, -48.777913 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.634338, -52.634730 ], [ -68.252563, -53.098972 ], [ -67.752686, -53.849286 ], [ -67.500000, -53.965781 ], [ -67.280273, -54.067448 ], [ -67.280273, -54.881347 ], [ -67.500000, -54.871866 ], [ -67.563171, -54.868705 ], [ -68.634338, -54.868705 ], [ -68.634338, -52.634730 ] ] ], [ [ [ -67.280273, -48.777913 ], [ -67.280273, -48.904449 ], [ -67.500000, -49.301845 ], [ -67.818604, -49.868087 ], [ -68.730469, -50.263010 ], [ -69.139709, -50.731240 ], [ -68.815613, -51.769540 ], [ -68.150940, -52.348763 ], [ -68.573914, -52.298402 ], [ -69.499512, -52.141917 ], [ -71.916504, -52.008555 ], [ -72.331238, -51.424902 ], [ -72.312012, -50.675576 ], [ -72.976685, -50.739932 ], [ -73.328247, -50.378751 ], [ -73.416138, -49.317961 ], [ -72.726746, -48.922499 ], [ -72.649841, -48.877361 ], [ -72.597656, -48.777913 ], [ -67.280273, -48.777913 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 20 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.913757, -40.813809 ], [ -71.916504, -40.830437 ], [ -71.897278, -40.979898 ], [ -71.748962, -42.051332 ], [ -72.149963, -42.252918 ], [ -71.916504, -43.407043 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.331482, -44.406316 ], [ -71.224365, -44.783785 ], [ -71.661072, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.919250, -46.884600 ], [ -72.449341, -47.737476 ], [ -72.331238, -48.242967 ], [ -72.649841, -48.877361 ], [ -72.726746, -48.922499 ], [ -72.976685, -49.066668 ], [ -75.580444, -49.066668 ], [ -75.591431, -48.922499 ], [ -75.610657, -48.672826 ], [ -75.184937, -47.711610 ], [ -74.127502, -46.939012 ], [ -75.646362, -46.647551 ], [ -74.693298, -45.763691 ], [ -74.352722, -44.101393 ], [ -73.240356, -44.453389 ], [ -72.718506, -42.382894 ], [ -73.391418, -42.116561 ], [ -73.701782, -43.365126 ], [ -74.333496, -43.223191 ], [ -74.020386, -41.793840 ], [ -73.869324, -40.979898 ], [ -73.836365, -40.813809 ], [ -71.913757, -40.813809 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.280273, -40.813809 ], [ -67.280273, -45.542908 ], [ -67.294006, -45.550602 ], [ -67.500000, -46.090377 ], [ -67.582397, -46.301406 ], [ -67.500000, -46.362093 ], [ -67.280273, -46.524855 ], [ -67.280273, -48.904449 ], [ -67.370911, -49.066668 ], [ -72.976685, -49.066668 ], [ -72.726746, -48.922499 ], [ -72.649841, -48.877361 ], [ -72.331238, -48.242967 ], [ -72.449341, -47.737476 ], [ -71.919250, -46.884600 ], [ -71.553955, -45.560218 ], [ -71.661072, -44.972571 ], [ -71.224365, -44.783785 ], [ -71.331482, -44.406316 ], [ -71.795654, -44.205835 ], [ -71.466064, -43.786958 ], [ -71.916504, -43.407043 ], [ -72.149963, -42.252918 ], [ -71.748962, -42.051332 ], [ -71.897278, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.913757, -40.813809 ], [ -67.280273, -40.813809 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 19 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.430603, -31.765537 ], [ -70.381165, -31.952162 ], [ -70.076294, -33.089240 ], [ -69.815369, -33.273139 ], [ -69.818115, -34.191358 ], [ -70.389404, -35.169318 ], [ -70.367432, -36.004673 ], [ -71.122742, -36.657403 ], [ -71.119995, -37.575059 ], [ -70.815125, -38.552461 ], [ -71.413879, -38.914544 ], [ -71.683044, -39.806426 ], [ -71.916504, -40.830437 ], [ -71.897278, -40.979898 ], [ -71.875305, -41.145570 ], [ -73.899536, -41.145570 ], [ -73.869324, -40.979898 ], [ -73.679810, -39.941331 ], [ -73.218384, -39.257778 ], [ -73.506775, -38.281313 ], [ -73.589172, -37.155939 ], [ -73.168945, -37.123096 ], [ -72.553711, -35.507636 ], [ -71.864319, -33.906896 ], [ -71.438599, -32.417066 ], [ -71.512756, -31.952162 ], [ -71.540222, -31.765537 ], [ -70.430603, -31.765537 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.280273, -31.765537 ], [ -67.280273, -41.145570 ], [ -71.875305, -41.145570 ], [ -71.897278, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.683044, -39.806426 ], [ -71.413879, -38.914544 ], [ -70.815125, -38.552461 ], [ -71.119995, -37.575059 ], [ -71.122742, -36.657403 ], [ -70.367432, -36.004673 ], [ -70.389404, -35.169318 ], [ -69.818115, -34.191358 ], [ -69.815369, -33.273139 ], [ -70.076294, -33.089240 ], [ -70.381165, -31.952162 ], [ -70.430603, -31.765537 ], [ -67.280273, -31.765537 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 18 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.150940, -21.739091 ], [ -68.093262, -21.943046 ], [ -67.829590, -22.872379 ], [ -67.500000, -22.809099 ], [ -67.280273, -22.768584 ], [ -67.280273, -23.878303 ], [ -67.329712, -24.023888 ], [ -67.500000, -24.101633 ], [ -68.420105, -24.517139 ], [ -68.387146, -26.182554 ], [ -68.595886, -26.504989 ], [ -68.296509, -26.897578 ], [ -69.002380, -27.520451 ], [ -69.658813, -28.459033 ], [ -70.015869, -29.367814 ], [ -69.919739, -30.334954 ], [ -70.537720, -31.363018 ], [ -70.381165, -31.952162 ], [ -70.331726, -32.138409 ], [ -71.482544, -32.138409 ], [ -71.512756, -31.952162 ], [ -71.669312, -30.918720 ], [ -71.372681, -30.095237 ], [ -71.490784, -28.859108 ], [ -70.905762, -27.639740 ], [ -70.727234, -25.705888 ], [ -70.405884, -23.626911 ], [ -70.169678, -21.943046 ], [ -70.139465, -21.739091 ], [ -68.150940, -21.739091 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.280273, -21.739091 ], [ -67.280273, -22.768584 ], [ -67.500000, -22.809099 ], [ -67.829590, -22.872379 ], [ -68.093262, -21.943046 ], [ -68.150940, -21.739091 ], [ -67.280273, -21.739091 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.280273, -23.878303 ], [ -67.280273, -32.138409 ], [ -70.331726, -32.138409 ], [ -70.381165, -31.952162 ], [ -70.537720, -31.363018 ], [ -69.919739, -30.334954 ], [ -70.015869, -29.367814 ], [ -69.658813, -28.459033 ], [ -69.002380, -27.520451 ], [ -68.296509, -26.897578 ], [ -68.595886, -26.504989 ], [ -68.387146, -26.182554 ], [ -68.420105, -24.517139 ], [ -67.500000, -24.101633 ], [ -67.329712, -24.023888 ], [ -67.280273, -23.878303 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 17 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Peru", "sov_a3": "PER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Peru", "adm0_a3": "PER", "geou_dif": 0, "geounit": "Peru", "gu_a3": "PER", "su_dif": 0, "subunit": "Peru", "su_a3": "PER", "brk_diff": 0, "name": "Peru", "name_long": "Peru", "brk_a3": "PER", "brk_name": "Peru", "abbrev": "Peru", "postal": "PE", "formal_en": "Republic of Peru", "name_sort": "Peru", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 11, "pop_est": 29546963, "gdp_md_est": 247300, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PE", "iso_a3": "PER", "iso_n3": "604", "un_a3": "604", "wb_a2": "PE", "wb_a3": "PER", "woe_id": -99, "adm0_a3_is": "PER", "adm0_a3_us": "PER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.524231, -10.962764 ], [ -69.408875, -11.178402 ], [ -68.667297, -12.559925 ], [ -68.881531, -12.897489 ], [ -68.930969, -13.600609 ], [ -68.950195, -14.453299 ], [ -69.340210, -14.952746 ], [ -69.161682, -15.323923 ], [ -69.392395, -15.660065 ], [ -68.961182, -16.499299 ], [ -69.592896, -17.578576 ], [ -69.859314, -18.091033 ], [ -70.372925, -18.346705 ], [ -71.375427, -17.772228 ], [ -71.463318, -17.361125 ], [ -73.446350, -16.357039 ], [ -75.239868, -15.265638 ], [ -76.011658, -14.647368 ], [ -76.423645, -13.822078 ], [ -76.261597, -13.533860 ], [ -77.107544, -12.221918 ], [ -77.665100, -11.178402 ], [ -77.780457, -10.962764 ], [ -70.548706, -10.962764 ], [ -70.548706, -11.008601 ], [ -70.095520, -11.121812 ], [ -69.568176, -10.962764 ], [ -69.524231, -10.962764 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.592896, -17.578576 ], [ -69.101257, -18.258045 ], [ -68.969421, -18.981623 ], [ -68.444824, -19.404430 ], [ -68.757935, -20.370377 ], [ -68.222351, -21.493964 ], [ -68.093262, -21.943046 ], [ -68.035583, -22.146708 ], [ -70.197144, -22.146708 ], [ -70.169678, -21.943046 ], [ -70.092773, -21.391705 ], [ -70.166931, -19.756364 ], [ -70.372925, -18.346705 ], [ -69.859314, -18.091033 ], [ -69.592896, -17.578576 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.280273, -10.962764 ], [ -67.280273, -22.146708 ], [ -68.035583, -22.146708 ], [ -68.093262, -21.943046 ], [ -68.222351, -21.493964 ], [ -68.757935, -20.370377 ], [ -68.444824, -19.404430 ], [ -68.969421, -18.981623 ], [ -69.101257, -18.258045 ], [ -69.592896, -17.578576 ], [ -68.961182, -16.499299 ], [ -69.392395, -15.660065 ], [ -69.161682, -15.323923 ], [ -69.340210, -14.952746 ], [ -68.950195, -14.453299 ], [ -68.930969, -13.600609 ], [ -68.881531, -12.897489 ], [ -68.667297, -12.559925 ], [ -69.408875, -11.178402 ], [ -69.524231, -10.962764 ], [ -69.433594, -10.962764 ], [ -68.788147, -11.035560 ], [ -68.271790, -11.013993 ], [ -68.233337, -10.962764 ], [ -67.280273, -10.962764 ] ] ] } } +, +{ "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": [ [ [ [ -69.568176, -10.962764 ], [ -70.095520, -11.121812 ], [ -70.548706, -11.008601 ], [ -70.548706, -10.962764 ], [ -69.568176, -10.962764 ] ] ], [ [ [ -68.233337, -10.962764 ], [ -68.271790, -11.013993 ], [ -68.788147, -11.035560 ], [ -69.433594, -10.962764 ], [ -68.233337, -10.962764 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 16 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.018616, 0.219726 ], [ -70.021362, 0.000000 ], [ -70.021362, -0.184021 ], [ -69.579163, -0.549308 ], [ -69.422607, -1.120534 ], [ -69.444580, -1.554375 ], [ -69.895020, -4.297113 ], [ -70.394897, -3.765597 ], [ -70.694275, -3.740931 ], [ -70.048828, -2.723583 ], [ -70.815125, -2.254362 ], [ -71.413879, -2.342182 ], [ -71.776428, -2.169281 ], [ -72.328491, -2.432740 ], [ -73.072815, -2.306506 ], [ -73.660583, -1.257834 ], [ -74.124756, -1.002451 ], [ -74.443359, -0.530083 ], [ -75.108032, -0.054932 ], [ -75.374451, -0.151062 ], [ -75.649109, 0.000000 ], [ -75.802917, 0.085144 ], [ -76.003418, 0.219726 ], [ -70.018616, 0.219726 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.003418, 0.219726 ], [ -75.802917, 0.085144 ], [ -75.649109, 0.000000 ], [ -75.374451, -0.151062 ], [ -75.234375, -0.909081 ], [ -75.547485, -1.559866 ], [ -76.637878, -2.608352 ], [ -77.838135, -3.000642 ], [ -78.453369, -3.872476 ], [ -78.640137, -4.546308 ], [ -78.750000, -4.625704 ], [ -78.969727, -4.787206 ], [ -78.969727, 0.219726 ], [ -76.003418, 0.219726 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Peru", "sov_a3": "PER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Peru", "adm0_a3": "PER", "geou_dif": 0, "geounit": "Peru", "gu_a3": "PER", "su_dif": 0, "subunit": "Peru", "su_a3": "PER", "brk_diff": 0, "name": "Peru", "name_long": "Peru", "brk_a3": "PER", "brk_name": "Peru", "abbrev": "Peru", "postal": "PE", "formal_en": "Republic of Peru", "name_sort": "Peru", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 11, "pop_est": 29546963, "gdp_md_est": 247300, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PE", "iso_a3": "PER", "iso_n3": "604", "un_a3": "604", "wb_a2": "PE", "wb_a3": "PER", "woe_id": -99, "adm0_a3_is": "PER", "adm0_a3_us": "PER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.108032, -0.054932 ], [ -74.443359, -0.530083 ], [ -74.124756, -1.002451 ], [ -73.660583, -1.257834 ], [ -73.072815, -2.306506 ], [ -72.328491, -2.432740 ], [ -71.776428, -2.169281 ], [ -71.413879, -2.342182 ], [ -70.815125, -2.254362 ], [ -70.048828, -2.723583 ], [ -70.694275, -3.740931 ], [ -70.394897, -3.765597 ], [ -69.895020, -4.297113 ], [ -70.795898, -4.250551 ], [ -70.930481, -4.401183 ], [ -71.748962, -4.592852 ], [ -72.894287, -5.274213 ], [ -72.965698, -5.738976 ], [ -73.221130, -6.088667 ], [ -73.122253, -6.629142 ], [ -73.726501, -6.918247 ], [ -73.723755, -7.340675 ], [ -73.987427, -7.523150 ], [ -73.572693, -8.423470 ], [ -73.017883, -9.031578 ], [ -73.229370, -9.459899 ], [ -72.564697, -9.519497 ], [ -72.185669, -10.052698 ], [ -71.304016, -10.077037 ], [ -70.482788, -9.489699 ], [ -70.548706, -11.008601 ], [ -70.095520, -11.121812 ], [ -69.529724, -10.949282 ], [ -69.408875, -11.178402 ], [ -69.293518, -11.393879 ], [ -77.552490, -11.393879 ], [ -77.665100, -11.178402 ], [ -78.093567, -10.377064 ], [ -78.750000, -8.990888 ], [ -78.969727, -8.526701 ], [ -78.969727, -4.787206 ], [ -78.750000, -4.625704 ], [ -78.640137, -4.546308 ], [ -78.453369, -3.872476 ], [ -77.838135, -3.000642 ], [ -76.637878, -2.608352 ], [ -75.547485, -1.559866 ], [ -75.234375, -0.909081 ], [ -75.374451, -0.151062 ], [ -75.108032, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.280273, -10.355450 ], [ -67.280273, -11.393879 ], [ -69.293518, -11.393879 ], [ -69.408875, -11.178402 ], [ -69.529724, -10.949282 ], [ -68.788147, -11.035560 ], [ -68.271790, -11.013993 ], [ -68.049316, -10.711888 ], [ -67.500000, -10.455402 ], [ -67.280273, -10.355450 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ -67.280273, 0.219726 ], [ -67.280273, -10.355450 ], [ -67.500000, -10.455402 ], [ -68.049316, -10.711888 ], [ -68.271790, -11.013993 ], [ -68.788147, -11.035560 ], [ -69.529724, -10.949282 ], [ -70.095520, -11.121812 ], [ -70.548706, -11.008601 ], [ -70.482788, -9.489699 ], [ -71.304016, -10.077037 ], [ -72.185669, -10.052698 ], [ -72.564697, -9.519497 ], [ -73.229370, -9.459899 ], [ -73.017883, -9.031578 ], [ -73.572693, -8.423470 ], [ -73.987427, -7.523150 ], [ -73.723755, -7.340675 ], [ -73.726501, -6.918247 ], [ -73.122253, -6.629142 ], [ -73.221130, -6.088667 ], [ -72.965698, -5.738976 ], [ -72.894287, -5.274213 ], [ -71.748962, -4.592852 ], [ -70.930481, -4.401183 ], [ -70.795898, -4.250551 ], [ -69.895020, -4.297113 ], [ -69.444580, -1.554375 ], [ -69.422607, -1.120534 ], [ -69.579163, -0.549308 ], [ -70.021362, -0.184021 ], [ -70.021362, 0.000000 ], [ -70.018616, 0.219726 ], [ -67.280273, 0.219726 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Panama", "sov_a3": "PAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Panama", "adm0_a3": "PAN", "geou_dif": 0, "geounit": "Panama", "gu_a3": "PAN", "su_dif": 0, "subunit": "Panama", "su_a3": "PAN", "brk_diff": 0, "name": "Panama", "name_long": "Panama", "brk_a3": "PAN", "brk_name": "Panama", "abbrev": "Pan.", "postal": "PA", "formal_en": "Republic of Panama", "name_sort": "Panama", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 3360474, "gdp_md_est": 38830, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PA", "iso_a3": "PAN", "iso_n3": "591", "un_a3": "591", "wb_a2": "PA", "wb_a3": "PAN", "woe_id": -99, "adm0_a3_is": "PAN", "adm0_a3_us": "PAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.969727, 9.451771 ], [ -78.750000, 9.438224 ], [ -78.502808, 9.421968 ], [ -78.057861, 9.248514 ], [ -77.731018, 8.947480 ], [ -77.354736, 8.670633 ], [ -77.475586, 8.526701 ], [ -77.244873, 7.936836 ], [ -77.431641, 7.640220 ], [ -77.755737, 7.710992 ], [ -77.882080, 7.226249 ], [ -78.217163, 7.512258 ], [ -78.431396, 8.053791 ], [ -78.184204, 8.320212 ], [ -78.436890, 8.388148 ], [ -78.623657, 8.719503 ], [ -78.750000, 8.790083 ], [ -78.969727, 8.912207 ], [ -78.969727, 9.451771 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.084045, 11.393879 ], [ -72.193909, 11.178402 ], [ -72.229614, 11.111032 ], [ -72.616882, 10.822515 ], [ -72.908020, 10.452701 ], [ -73.028870, 9.738835 ], [ -73.306274, 9.153621 ], [ -72.789917, 9.085824 ], [ -72.660828, 8.627188 ], [ -72.441101, 8.407168 ], [ -72.361450, 8.004837 ], [ -72.482300, 7.634776 ], [ -72.446594, 7.425113 ], [ -72.199402, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.675049, 7.089990 ], [ -70.095520, 6.961870 ], [ -69.389648, 6.102322 ], [ -68.985901, 6.208821 ], [ -68.266296, 6.154209 ], [ -67.697754, 6.268888 ], [ -67.500000, 6.173324 ], [ -67.343445, 6.096860 ], [ -67.500000, 5.621453 ], [ -67.521973, 5.558582 ], [ -67.747192, 5.222247 ], [ -67.824097, 4.505238 ], [ -67.623596, 3.839591 ], [ -67.500000, 3.713523 ], [ -67.337952, 3.543576 ], [ -67.304993, 3.318760 ], [ -67.500000, 3.126804 ], [ -67.810364, 2.822344 ], [ -67.500000, 2.633045 ], [ -67.447815, 2.602864 ], [ -67.280273, 2.383346 ], [ -67.280273, 1.743810 ], [ -67.500000, 1.996361 ], [ -67.538452, 2.037534 ], [ -67.870789, 1.694394 ], [ -69.818115, 1.716357 ], [ -69.807129, 1.090327 ], [ -69.219360, 0.985974 ], [ -69.255066, 0.604237 ], [ -69.452820, 0.708600 ], [ -70.015869, 0.543815 ], [ -70.021362, 0.000000 ], [ -70.021362, -0.184021 ], [ -69.980164, -0.219726 ], [ -74.880066, -0.219726 ], [ -75.108032, -0.054932 ], [ -75.374451, -0.151062 ], [ -75.649109, 0.000000 ], [ -75.802917, 0.085144 ], [ -76.294556, 0.417477 ], [ -76.577454, 0.258178 ], [ -77.426147, 0.398251 ], [ -77.670593, 0.826693 ], [ -77.857361, 0.810215 ], [ -78.750000, 1.320989 ], [ -78.857117, 1.381397 ], [ -78.969727, 1.644977 ], [ -78.969727, 1.697139 ], [ -78.750000, 1.741065 ], [ -78.618164, 1.768518 ], [ -78.664856, 2.268084 ], [ -78.428650, 2.630301 ], [ -77.934265, 2.698892 ], [ -77.511292, 3.326986 ], [ -77.129517, 3.850553 ], [ -77.497559, 4.088932 ], [ -77.308044, 4.669505 ], [ -77.533264, 5.583184 ], [ -77.319031, 5.845545 ], [ -77.478333, 6.691887 ], [ -77.882080, 7.226249 ], [ -77.755737, 7.710992 ], [ -77.431641, 7.640220 ], [ -77.244873, 7.936836 ], [ -77.475586, 8.526701 ], [ -77.354736, 8.670633 ], [ -76.838379, 8.640765 ], [ -76.088562, 9.337962 ], [ -75.676575, 9.443643 ], [ -75.665588, 9.774025 ], [ -75.481567, 10.620118 ], [ -74.907532, 11.084080 ], [ -74.278564, 11.102947 ], [ -74.248352, 11.178402 ], [ -74.198914, 11.313094 ], [ -73.416138, 11.229592 ], [ -73.155212, 11.393879 ], [ -72.084045, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Venezuela", "sov_a3": "VEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Venezuela", "adm0_a3": "VEN", "geou_dif": 0, "geounit": "Venezuela", "gu_a3": "VEN", "su_dif": 0, "subunit": "Venezuela", "su_a3": "VEN", "brk_diff": 0, "name": "Venezuela", "name_long": "Venezuela", "brk_a3": "VEN", "brk_name": "Venezuela", "abbrev": "Ven.", "postal": "VE", "formal_en": "Bolivarian Republic of Venezuela", "formal_fr": "República Bolivariana de Venezuela", "name_sort": "Venezuela, RB", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 26814843, "gdp_md_est": 357400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "VE", "iso_a3": "VEN", "iso_n3": "862", "un_a3": "862", "wb_a2": "VE", "wb_a3": "VEN", "woe_id": -99, "adm0_a3_is": "VEN", "adm0_a3_us": "VEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.826599, 11.393879 ], [ -68.576660, 11.178402 ], [ -68.233337, 10.887254 ], [ -68.194885, 10.555322 ], [ -67.500000, 10.549922 ], [ -67.280273, 10.549922 ], [ -67.280273, 2.383346 ], [ -67.447815, 2.602864 ], [ -67.500000, 2.633045 ], [ -67.810364, 2.822344 ], [ -67.500000, 3.126804 ], [ -67.304993, 3.318760 ], [ -67.337952, 3.543576 ], [ -67.500000, 3.713523 ], [ -67.623596, 3.839591 ], [ -67.824097, 4.505238 ], [ -67.747192, 5.222247 ], [ -67.521973, 5.558582 ], [ -67.500000, 5.621453 ], [ -67.343445, 6.096860 ], [ -67.500000, 6.173324 ], [ -67.697754, 6.268888 ], [ -68.266296, 6.154209 ], [ -68.985901, 6.208821 ], [ -69.389648, 6.102322 ], [ -70.095520, 6.961870 ], [ -70.675049, 7.089990 ], [ -71.960449, 6.991859 ], [ -72.199402, 7.340675 ], [ -72.446594, 7.425113 ], [ -72.482300, 7.634776 ], [ -72.361450, 8.004837 ], [ -72.441101, 8.407168 ], [ -72.660828, 8.627188 ], [ -72.789917, 9.085824 ], [ -73.306274, 9.153621 ], [ -73.028870, 9.738835 ], [ -72.908020, 10.452701 ], [ -72.616882, 10.822515 ], [ -72.229614, 11.111032 ], [ -72.193909, 11.178402 ], [ -72.084045, 11.393879 ], [ -71.927490, 11.393879 ], [ -71.773682, 11.178402 ], [ -71.622620, 10.970854 ], [ -71.633606, 10.447299 ], [ -72.075806, 9.866040 ], [ -71.696777, 9.072264 ], [ -71.265564, 9.137351 ], [ -71.040344, 9.860628 ], [ -71.350708, 10.212219 ], [ -71.402893, 10.970854 ], [ -70.760193, 11.178402 ], [ -70.155945, 11.377724 ], [ -70.161438, 11.393879 ], [ -68.826599, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.857117, 1.381397 ], [ -78.750000, 1.320989 ], [ -77.857361, 0.810215 ], [ -77.670593, 0.826693 ], [ -77.426147, 0.398251 ], [ -76.577454, 0.258178 ], [ -76.294556, 0.417477 ], [ -75.802917, 0.085144 ], [ -75.649109, 0.000000 ], [ -75.374451, -0.151062 ], [ -75.363464, -0.219726 ], [ -78.969727, -0.219726 ], [ -78.969727, 1.315497 ], [ -78.857117, 1.381397 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Peru", "sov_a3": "PER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Peru", "adm0_a3": "PER", "geou_dif": 0, "geounit": "Peru", "gu_a3": "PER", "su_dif": 0, "subunit": "Peru", "su_a3": "PER", "brk_diff": 0, "name": "Peru", "name_long": "Peru", "brk_a3": "PER", "brk_name": "Peru", "abbrev": "Peru", "postal": "PE", "formal_en": "Republic of Peru", "name_sort": "Peru", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 11, "pop_est": 29546963, "gdp_md_est": 247300, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PE", "iso_a3": "PER", "iso_n3": "604", "un_a3": "604", "wb_a2": "PE", "wb_a3": "PER", "woe_id": -99, "adm0_a3_is": "PER", "adm0_a3_us": "PER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.108032, -0.054932 ], [ -74.880066, -0.219726 ], [ -75.363464, -0.219726 ], [ -75.374451, -0.151062 ], [ -75.108032, -0.054932 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ -67.538452, 2.037534 ], [ -67.500000, 1.996361 ], [ -67.280273, 1.743810 ], [ -67.280273, -0.219726 ], [ -69.980164, -0.219726 ], [ -70.021362, -0.184021 ], [ -70.021362, 0.000000 ], [ -70.015869, 0.543815 ], [ -69.452820, 0.708600 ], [ -69.255066, 0.604237 ], [ -69.219360, 0.985974 ], [ -69.807129, 1.090327 ], [ -69.818115, 1.716357 ], [ -67.870789, 1.694394 ], [ -67.538452, 2.037534 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cuba", "sov_a3": "CUB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cuba", "adm0_a3": "CUB", "geou_dif": 0, "geounit": "Cuba", "gu_a3": "CUB", "su_dif": 0, "subunit": "Cuba", "su_a3": "CUB", "brk_diff": 0, "name": "Cuba", "name_long": "Cuba", "brk_a3": "CUB", "brk_name": "Cuba", "abbrev": "Cuba", "postal": "CU", "formal_en": "Republic of Cuba", "name_sort": "Cuba", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 11451652, "gdp_md_est": 108200, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CU", "iso_a3": "CUB", "iso_n3": "192", "un_a3": "192", "wb_a2": "CU", "wb_a3": "CUB", "woe_id": -99, "adm0_a3_is": "CUB", "adm0_a3_us": "CUB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.816162, 22.146708 ], [ -77.536011, 21.943046 ], [ -76.525269, 21.207459 ], [ -76.195679, 21.222821 ], [ -75.599670, 21.017855 ], [ -75.671082, 20.735566 ], [ -74.934998, 20.694462 ], [ -74.179688, 20.285385 ], [ -74.297791, 20.050771 ], [ -74.962463, 19.924295 ], [ -75.635376, 19.875226 ], [ -76.324768, 19.955278 ], [ -77.755737, 19.857144 ], [ -77.085571, 20.414143 ], [ -77.494812, 20.673905 ], [ -78.137512, 20.740703 ], [ -78.483582, 21.030674 ], [ -78.722534, 21.598704 ], [ -78.750000, 21.596151 ], [ -78.969727, 21.583381 ], [ -78.969727, 22.146708 ], [ -77.816162, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Jamaica", "sov_a3": "JAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Jamaica", "adm0_a3": "JAM", "geou_dif": 0, "geounit": "Jamaica", "gu_a3": "JAM", "su_dif": 0, "subunit": "Jamaica", "su_a3": "JAM", "brk_diff": 0, "name": "Jamaica", "name_long": "Jamaica", "brk_a3": "JAM", "brk_name": "Jamaica", "abbrev": "Jam.", "postal": "J", "formal_en": "Jamaica", "name_sort": "Jamaica", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 10, "pop_est": 2825928, "gdp_md_est": 20910, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "JM", "iso_a3": "JAM", "iso_n3": "388", "un_a3": "388", "wb_a2": "JM", "wb_a3": "JAM", "woe_id": -99, "adm0_a3_is": "JAM", "adm0_a3_us": "JAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.799683, 18.526492 ], [ -77.571716, 18.492633 ], [ -76.898804, 18.401443 ], [ -76.365967, 18.161511 ], [ -76.201172, 17.887273 ], [ -76.904297, 17.868975 ], [ -77.206421, 17.701595 ], [ -77.766724, 17.863747 ], [ -78.338013, 18.226743 ], [ -78.219910, 18.456163 ], [ -77.799683, 18.526492 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Haiti", "sov_a3": "HTI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Haiti", "adm0_a3": "HTI", "geou_dif": 0, "geounit": "Haiti", "gu_a3": "HTI", "su_dif": 0, "subunit": "Haiti", "su_a3": "HTI", "brk_diff": 0, "name": "Haiti", "name_long": "Haiti", "brk_a3": "HTI", "brk_name": "Haiti", "abbrev": "Haiti", "postal": "HT", "formal_en": "Republic of Haiti", "name_sort": "Haiti", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 9035536, "gdp_md_est": 11500, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "HT", "iso_a3": "HTI", "iso_n3": "332", "un_a3": "332", "wb_a2": "HT", "wb_a3": "HTI", "woe_id": -99, "adm0_a3_is": "HTI", "adm0_a3_us": "HTI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.190918, 19.916548 ], [ -72.581177, 19.872643 ], [ -71.713257, 19.715000 ], [ -71.625366, 19.171113 ], [ -71.702271, 18.786717 ], [ -71.946716, 18.617616 ], [ -71.688538, 18.318026 ], [ -71.710510, 18.046644 ], [ -72.375183, 18.216307 ], [ -72.844849, 18.145852 ], [ -73.454590, 18.218916 ], [ -73.924255, 18.033586 ], [ -74.459839, 18.344098 ], [ -74.371948, 18.667063 ], [ -73.451843, 18.526492 ], [ -72.696533, 18.448347 ], [ -72.336731, 18.669665 ], [ -72.792664, 19.103648 ], [ -72.784424, 19.484718 ], [ -73.416138, 19.640001 ], [ -73.190918, 19.916548 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Dominican Republic", "sov_a3": "DOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Dominican Republic", "adm0_a3": "DOM", "geou_dif": 0, "geounit": "Dominican Republic", "gu_a3": "DOM", "su_dif": 0, "subunit": "Dominican Republic", "su_a3": "DOM", "brk_diff": 0, "name": "Dominican Rep.", "name_long": "Dominican Republic", "brk_a3": "DOM", "brk_name": "Dominican Rep.", "abbrev": "Dom. Rep.", "postal": "DO", "formal_en": "Dominican Republic", "name_sort": "Dominican Republic", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 9650054, "gdp_md_est": 78000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DO", "iso_a3": "DOM", "iso_n3": "214", "un_a3": "214", "wb_a2": "DO", "wb_a3": "DOM", "woe_id": -99, "adm0_a3_is": "DOM", "adm0_a3_us": "DOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 14, "long_len": 18, "abbrev_len": 9, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.589661, 19.885557 ], [ -70.806885, 19.880392 ], [ -70.216370, 19.624479 ], [ -69.952698, 19.650348 ], [ -69.771423, 19.295590 ], [ -69.224854, 19.313735 ], [ -69.255066, 19.015384 ], [ -68.810120, 18.981623 ], [ -68.318481, 18.612410 ], [ -68.692017, 18.205871 ], [ -69.167175, 18.424896 ], [ -69.625854, 18.383199 ], [ -69.955444, 18.430108 ], [ -70.133972, 18.247612 ], [ -70.518494, 18.184997 ], [ -70.669556, 18.427502 ], [ -71.001892, 18.284126 ], [ -71.402893, 17.599521 ], [ -71.658325, 17.759150 ], [ -71.710510, 18.046644 ], [ -71.688538, 18.318026 ], [ -71.946716, 18.617616 ], [ -71.702271, 18.786717 ], [ -71.625366, 19.171113 ], [ -71.713257, 19.715000 ], [ -71.589661, 19.885557 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.754456, 12.439259 ], [ -71.400146, 12.377563 ], [ -71.139221, 12.114523 ], [ -71.334229, 11.778637 ], [ -71.974182, 11.609193 ], [ -72.193909, 11.178402 ], [ -72.229614, 11.111032 ], [ -72.427368, 10.962764 ], [ -75.055847, 10.962764 ], [ -74.907532, 11.084080 ], [ -74.278564, 11.102947 ], [ -74.248352, 11.178402 ], [ -74.198914, 11.313094 ], [ -73.416138, 11.229592 ], [ -72.627869, 11.732924 ], [ -72.240601, 11.956036 ], [ -71.754456, 12.439259 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Venezuela", "sov_a3": "VEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Venezuela", "adm0_a3": "VEN", "geou_dif": 0, "geounit": "Venezuela", "gu_a3": "VEN", "su_dif": 0, "subunit": "Venezuela", "su_a3": "VEN", "brk_diff": 0, "name": "Venezuela", "name_long": "Venezuela", "brk_a3": "VEN", "brk_name": "Venezuela", "abbrev": "Ven.", "postal": "VE", "formal_en": "Bolivarian Republic of Venezuela", "formal_fr": "República Bolivariana de Venezuela", "name_sort": "Venezuela, RB", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 26814843, "gdp_md_est": 357400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "VE", "iso_a3": "VEN", "iso_n3": "862", "un_a3": "862", "wb_a2": "VE", "wb_a3": "VEN", "woe_id": -99, "adm0_a3_is": "VEN", "adm0_a3_us": "VEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -71.334229, 11.778637 ], [ -71.361694, 11.541925 ], [ -71.949463, 11.423495 ], [ -71.773682, 11.178402 ], [ -71.622620, 10.970854 ], [ -71.622620, 10.962764 ], [ -72.427368, 10.962764 ], [ -72.229614, 11.111032 ], [ -72.193909, 11.178402 ], [ -71.974182, 11.609193 ], [ -71.334229, 11.778637 ] ] ], [ [ [ -69.584656, 11.461183 ], [ -68.884277, 11.445031 ], [ -68.576660, 11.178402 ], [ -68.323975, 10.962764 ], [ -71.402893, 10.962764 ], [ -71.402893, 10.970854 ], [ -70.760193, 11.178402 ], [ -70.155945, 11.377724 ], [ -70.296021, 11.848535 ], [ -69.944458, 12.162856 ], [ -69.584656, 11.461183 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "The Bahamas", "sov_a3": "BHS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "The Bahamas", "adm0_a3": "BHS", "geou_dif": 0, "geounit": "The Bahamas", "gu_a3": "BHS", "su_dif": 0, "subunit": "The Bahamas", "su_a3": "BHS", "brk_diff": 0, "name": "Bahamas", "name_long": "Bahamas", "brk_a3": "BHS", "brk_name": "Bahamas", "abbrev": "Bhs.", "postal": "BS", "formal_en": "Commonwealth of the Bahamas", "name_sort": "Bahamas, The", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 309156, "gdp_md_est": 9093, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BS", "iso_a3": "BHS", "iso_n3": "044", "un_a3": "044", "wb_a2": "BS", "wb_a3": "BHS", "woe_id": -99, "adm0_a3_is": "BHS", "adm0_a3_us": "BHS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.192444, 25.212396 ], [ -77.890320, 25.170145 ], [ -77.541504, 24.342092 ], [ -77.536011, 23.760209 ], [ -77.780457, 23.712439 ], [ -78.035889, 24.287027 ], [ -78.409424, 24.577100 ], [ -78.192444, 25.212396 ] ] ], [ [ [ -77.791443, 27.042003 ], [ -77.000427, 26.590983 ], [ -77.173462, 25.881466 ], [ -77.357483, 26.007424 ], [ -77.341003, 26.532023 ], [ -77.788696, 26.926968 ], [ -77.791443, 27.042003 ] ] ], [ [ [ -78.511047, 26.870631 ], [ -77.851868, 26.841227 ], [ -77.821655, 26.581159 ], [ -78.750000, 26.443525 ], [ -78.912048, 26.421390 ], [ -78.969727, 26.735799 ], [ -78.969727, 26.792203 ], [ -78.750000, 26.831424 ], [ -78.511047, 26.870631 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cuba", "sov_a3": "CUB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cuba", "adm0_a3": "CUB", "geou_dif": 0, "geounit": "Cuba", "gu_a3": "CUB", "su_dif": 0, "subunit": "Cuba", "su_a3": "CUB", "brk_diff": 0, "name": "Cuba", "name_long": "Cuba", "brk_a3": "CUB", "brk_name": "Cuba", "abbrev": "Cuba", "postal": "CU", "formal_en": "Republic of Cuba", "name_sort": "Cuba", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 11451652, "gdp_md_est": 108200, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CU", "iso_a3": "CUB", "iso_n3": "192", "un_a3": "192", "wb_a2": "CU", "wb_a3": "CUB", "woe_id": -99, "adm0_a3_is": "CUB", "adm0_a3_us": "CUB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.348999, 22.512557 ], [ -77.994690, 22.278931 ], [ -77.536011, 21.943046 ], [ -77.258606, 21.739091 ], [ -78.969727, 21.739091 ], [ -78.969727, 22.438956 ], [ -78.750000, 22.464340 ], [ -78.348999, 22.512557 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.094788, 41.145570 ], [ -73.569946, 40.979898 ], [ -73.710022, 40.932190 ], [ -73.330994, 40.979898 ], [ -72.243347, 41.120746 ], [ -72.023621, 40.979898 ], [ -71.946716, 40.930115 ], [ -73.347473, 40.630630 ], [ -73.984680, 40.628546 ], [ -73.954468, 40.751418 ], [ -74.259338, 40.474114 ], [ -73.962708, 40.428133 ], [ -74.179688, 39.709300 ], [ -74.907532, 38.940185 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.528259, 39.499802 ], [ -75.322266, 38.961544 ], [ -75.072327, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.379944, 38.015640 ], [ -75.940247, 37.217206 ], [ -76.033630, 37.258752 ], [ -75.723267, 37.937699 ], [ -76.234131, 38.320111 ], [ -76.352234, 39.151363 ], [ -76.544495, 38.717662 ], [ -76.330261, 38.084851 ], [ -76.992188, 38.240337 ], [ -76.302795, 37.918201 ], [ -76.258850, 36.967449 ], [ -75.973206, 36.899391 ], [ -75.868835, 36.551569 ], [ -75.728760, 35.552340 ], [ -76.363220, 34.809293 ], [ -77.398682, 34.513346 ], [ -78.055115, 33.927409 ], [ -78.554993, 33.863574 ], [ -78.750000, 33.719771 ], [ -78.969727, 33.561995 ], [ -78.969727, 41.145570 ], [ -73.094788, 41.145570 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -78.969727, 43.538594 ], [ -78.969727, 49.066668 ], [ -68.513489, 49.066668 ], [ -68.672791, 48.922499 ], [ -69.955444, 47.746711 ], [ -71.106262, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.650818, 48.301467 ], [ -67.500000, 48.759810 ], [ -67.280273, 48.846643 ], [ -67.280273, 45.263289 ], [ -67.500000, 45.452424 ], [ -67.793884, 45.704261 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.355571 ], [ -68.906250, 47.185979 ], [ -69.238586, 47.448522 ], [ -70.002136, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.661316, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.507263, 45.009477 ], [ -73.350220, 45.007535 ], [ -74.869080, 45.001709 ], [ -75.319519, 44.816916 ], [ -76.376953, 44.097448 ], [ -76.500549, 44.018496 ], [ -76.821899, 43.630111 ], [ -77.739258, 43.630111 ], [ -78.722534, 43.626135 ], [ -78.750000, 43.616194 ], [ -78.969727, 43.538594 ] ] ], [ [ [ -78.969727, 43.135065 ], [ -78.920288, 42.966472 ], [ -78.939514, 42.863886 ], [ -78.969727, 42.853820 ], [ -78.969727, 43.135065 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.238586, 47.448522 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.355571 ], [ -67.791138, 47.066380 ], [ -67.793884, 45.704261 ], [ -67.500000, 45.452424 ], [ -67.280273, 45.263289 ], [ -67.280273, 44.668653 ], [ -67.500000, 44.568948 ], [ -68.032837, 44.325813 ], [ -69.060059, 43.980958 ], [ -70.117493, 43.685750 ], [ -70.647583, 43.090955 ], [ -70.815125, 42.865899 ], [ -70.826111, 42.336215 ], [ -70.496521, 41.806125 ], [ -70.081787, 41.781553 ], [ -70.186157, 42.145078 ], [ -69.886780, 41.924760 ], [ -69.966431, 41.638026 ], [ -70.642090, 41.475660 ], [ -71.122742, 41.496235 ], [ -71.861572, 41.321138 ], [ -72.295532, 41.271614 ], [ -72.877808, 41.222052 ], [ -73.569946, 40.979898 ], [ -73.710022, 40.932190 ], [ -73.330994, 40.979898 ], [ -72.243347, 41.120746 ], [ -72.023621, 40.979898 ], [ -71.946716, 40.930115 ], [ -72.490540, 40.813809 ], [ -78.969727, 40.813809 ], [ -78.969727, 42.853820 ], [ -78.939514, 42.863886 ], [ -78.920288, 42.966472 ], [ -78.969727, 43.135065 ], [ -78.969727, 43.538594 ], [ -78.750000, 43.616194 ], [ -78.722534, 43.626135 ], [ -77.739258, 43.630111 ], [ -76.821899, 43.630111 ], [ -76.500549, 44.018496 ], [ -76.376953, 44.097448 ], [ -75.319519, 44.816916 ], [ -74.869080, 45.001709 ], [ -73.350220, 45.007535 ], [ -71.507263, 45.009477 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.661316, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.002136, 46.694667 ], [ -69.238586, 47.448522 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -67.280273, 55.899956 ], [ -67.280273, 49.496675 ], [ -67.500000, 49.421694 ], [ -68.513489, 49.068468 ], [ -68.672791, 48.922499 ], [ -68.832092, 48.777913 ], [ -78.969727, 48.777913 ], [ -78.969727, 51.866316 ], [ -78.750000, 52.283282 ], [ -78.604431, 52.562995 ], [ -78.750000, 53.016436 ], [ -78.969727, 53.680442 ], [ -78.969727, 54.920828 ], [ -78.750000, 54.985494 ], [ -78.230896, 55.136500 ], [ -77.195435, 55.776573 ], [ -77.096558, 55.838314 ], [ -77.047119, 55.899956 ], [ -67.280273, 55.899956 ] ] ], [ [ [ -67.280273, 48.777913 ], [ -67.453308, 48.777913 ], [ -67.280273, 48.846643 ], [ -67.280273, 48.777913 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -72.070312, 61.710706 ], [ -71.850586, 61.606396 ], [ -71.677551, 61.526623 ], [ -71.375427, 61.137933 ], [ -69.592896, 61.062272 ], [ -69.620361, 60.222083 ], [ -69.288025, 58.958507 ], [ -68.376160, 58.802362 ], [ -67.651062, 58.212685 ], [ -67.500000, 58.270510 ], [ -67.280273, 58.355630 ], [ -67.280273, 55.652798 ], [ -77.398682, 55.652798 ], [ -77.195435, 55.776573 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.203247 ], [ -77.302551, 58.053179 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.774963, 60.759160 ], [ -77.953491, 61.606396 ], [ -77.975464, 61.710706 ], [ -72.070312, 61.710706 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -77.412415, 62.551591 ], [ -75.698547, 62.279423 ], [ -74.668579, 62.182169 ], [ -73.841858, 62.445054 ], [ -72.910767, 62.105168 ], [ -71.850586, 61.606396 ], [ -71.677551, 61.526623 ], [ -71.661072, 61.501734 ], [ -77.931519, 61.501734 ], [ -77.953491, 61.606396 ], [ -78.107300, 62.320279 ], [ -77.412415, 62.551591 ] ] ], [ [ [ -67.280273, 66.600676 ], [ -67.280273, 66.334198 ], [ -67.500000, 66.313242 ], [ -68.016357, 66.263540 ], [ -68.142700, 65.689953 ], [ -67.500000, 65.337055 ], [ -67.280273, 65.215289 ], [ -67.280273, 63.269476 ], [ -67.500000, 63.339808 ], [ -68.785400, 63.746061 ], [ -67.500000, 62.965212 ], [ -67.370911, 62.885205 ], [ -67.280273, 62.833835 ], [ -67.280273, 62.096171 ], [ -67.500000, 62.128289 ], [ -68.878784, 62.330484 ], [ -71.023865, 62.911481 ], [ -72.237854, 63.398902 ], [ -71.886292, 63.680377 ], [ -73.380432, 64.194423 ], [ -74.836121, 64.679143 ], [ -74.819641, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.573216 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.454838 ], [ -74.295044, 65.811781 ], [ -73.946228, 66.311035 ], [ -73.682556, 66.513260 ], [ -73.567200, 66.600676 ], [ -67.280273, 66.600676 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -69.763184, 70.685421 ], [ -69.318237, 70.612614 ], [ -68.788147, 70.525813 ], [ -67.917480, 70.122629 ], [ -67.500000, 69.717155 ], [ -67.280273, 69.498956 ], [ -67.280273, 69.108756 ], [ -67.500000, 69.052858 ], [ -68.807373, 68.720441 ], [ -67.500000, 68.360725 ], [ -67.280273, 68.299874 ], [ -67.280273, 66.425537 ], [ -73.795166, 66.425537 ], [ -73.682556, 66.513260 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.727149 ], [ -73.311768, 68.070228 ], [ -74.844360, 68.555363 ], [ -76.871338, 68.895187 ], [ -76.231384, 69.147898 ], [ -77.288818, 69.770406 ], [ -78.170471, 69.827312 ], [ -78.750000, 70.078691 ], [ -78.958740, 70.167405 ], [ -78.969727, 70.160881 ], [ -78.969727, 70.685421 ], [ -69.763184, 70.685421 ] ] ], [ [ [ -75.896301, 68.287684 ], [ -75.116272, 68.010656 ], [ -75.105286, 67.583050 ], [ -75.217896, 67.444390 ], [ -75.866089, 67.149699 ], [ -76.989441, 67.099518 ], [ -77.236633, 67.588287 ], [ -76.813660, 68.149077 ], [ -75.896301, 68.287684 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -77.827148, 72.750224 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.767927 ], [ -74.100037, 71.331588 ], [ -72.243347, 71.557086 ], [ -71.202393, 70.920233 ], [ -69.318237, 70.612614 ], [ -68.876038, 70.539543 ], [ -78.969727, 70.539543 ], [ -78.969727, 72.323293 ], [ -78.771973, 72.352459 ], [ -78.750000, 72.361616 ], [ -77.827148, 72.750224 ] ] ], [ [ [ -78.969727, 73.695009 ], [ -78.750000, 73.684982 ], [ -78.066101, 73.652545 ], [ -76.341248, 73.103405 ], [ -76.253357, 72.826619 ], [ -77.316284, 72.855790 ], [ -78.392944, 72.876828 ], [ -78.750000, 72.833106 ], [ -78.969727, 72.806334 ], [ -78.969727, 73.695009 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -77.901306, 76.890745 ], [ -77.895813, 76.840816 ], [ -77.890320, 76.778142 ], [ -78.750000, 76.587719 ], [ -78.969727, 76.538575 ], [ -78.969727, 76.890745 ], [ -77.901306, 76.890745 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.280273, 76.890745 ], [ -67.280273, 76.098817 ], [ -67.500000, 76.092216 ], [ -68.505249, 76.061816 ], [ -69.667053, 76.380383 ], [ -70.933228, 76.840816 ], [ -71.073303, 76.890745 ], [ -67.280273, 76.890745 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -78.969727, 77.379906 ], [ -78.969727, 79.212538 ], [ -75.693054, 79.212538 ], [ -75.531006, 79.198134 ], [ -75.632629, 79.171335 ], [ -76.223145, 79.019097 ], [ -75.393677, 78.526119 ], [ -76.343994, 78.182963 ], [ -77.890320, 77.900134 ], [ -78.362732, 77.508873 ], [ -78.750000, 77.426628 ], [ -78.969727, 77.379906 ] ] ], [ [ [ -78.969727, 76.998699 ], [ -78.750000, 77.003642 ], [ -77.912292, 77.022159 ], [ -77.895813, 76.840816 ], [ -77.890320, 76.790701 ], [ -78.969727, 76.790701 ], [ -78.969727, 76.998699 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.280273, 77.408079 ], [ -67.500000, 77.421246 ], [ -71.043091, 77.635954 ], [ -73.298035, 78.044364 ], [ -73.160706, 78.432867 ], [ -69.375916, 78.913968 ], [ -67.500000, 79.162559 ], [ -67.280273, 79.191440 ], [ -67.280273, 77.408079 ] ] ], [ [ [ -67.280273, 77.362492 ], [ -67.280273, 76.790701 ], [ -70.793152, 76.790701 ], [ -70.933228, 76.840816 ], [ -71.402893, 77.008582 ], [ -68.777161, 77.323374 ], [ -67.500000, 77.357083 ], [ -67.280273, 77.362492 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -67.280273, 81.127169 ], [ -67.280273, 81.048024 ], [ -67.500000, 80.990143 ], [ -67.840576, 80.900234 ], [ -69.472046, 80.617081 ], [ -71.180420, 79.800150 ], [ -73.243103, 79.634439 ], [ -73.880310, 79.430356 ], [ -76.909790, 79.323522 ], [ -75.531006, 79.198134 ], [ -75.632629, 79.171335 ], [ -75.794678, 79.129976 ], [ -78.969727, 79.129976 ], [ -78.969727, 81.127169 ], [ -67.280273, 81.127169 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.280273, 80.020042 ], [ -67.500000, 80.049036 ], [ -68.024597, 80.117621 ], [ -67.500000, 80.358376 ], [ -67.280273, 80.458143 ], [ -67.280273, 80.020042 ] ] ], [ [ [ -67.280273, 79.191440 ], [ -67.280273, 79.129976 ], [ -67.747192, 79.129976 ], [ -67.280273, 79.191440 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -67.280273, 82.704241 ], [ -67.280273, 81.595699 ], [ -67.500000, 81.540928 ], [ -67.659302, 81.501646 ], [ -67.500000, 81.502052 ], [ -67.280273, 81.502458 ], [ -67.280273, 81.059130 ], [ -78.969727, 81.059130 ], [ -78.969727, 82.704241 ], [ -67.280273, 82.704241 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -72.833862, 83.233515 ], [ -70.666809, 83.169790 ], [ -68.502502, 83.106457 ], [ -67.500000, 83.077387 ], [ -67.280273, 83.070763 ], [ -67.280273, 82.648222 ], [ -78.969727, 82.648222 ], [ -78.969727, 83.135407 ], [ -78.750000, 83.138360 ], [ -76.250610, 83.172076 ], [ -75.720520, 83.064132 ], [ -72.833862, 83.233515 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -56.030273, -83.956169 ], [ -56.030273, -85.070048 ], [ -67.719727, -85.070048 ], [ -67.719727, -83.956169 ], [ -56.030273, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -59.133911, -82.648222 ], [ -59.073486, -82.676285 ], [ -58.713684, -82.845861 ], [ -58.224792, -83.218288 ], [ -57.010803, -82.865673 ], [ -56.250000, -82.731397 ], [ -56.030273, -82.692373 ], [ -56.030273, -84.002262 ], [ -67.719727, -84.002262 ], [ -67.719727, -82.648222 ], [ -59.133911, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ -67.719727, -81.347249 ], [ -67.500000, -81.361287 ], [ -65.706482, -81.474408 ], [ -63.256531, -81.748454 ], [ -61.553650, -82.042319 ], [ -59.691467, -82.375504 ], [ -59.073486, -82.676285 ], [ -59.015808, -82.704241 ], [ -67.719727, -82.704241 ], [ -67.719727, -81.347249 ] ] ], [ [ [ -56.030273, -82.704241 ], [ -56.098938, -82.704241 ], [ -56.030273, -82.692373 ], [ -56.030273, -82.704241 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -60.611572, -79.628507 ], [ -59.573364, -80.040014 ], [ -59.867249, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.256775, -80.862801 ], [ -64.489746, -80.921928 ], [ -65.742188, -80.588380 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255715 ], [ -64.039307, -80.294687 ], [ -61.885986, -80.392815 ], [ -61.141663, -79.980935 ], [ -60.611572, -79.628507 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -61.177368, -73.958939 ], [ -61.259766, -74.019543 ], [ -61.377869, -74.106272 ], [ -61.965637, -74.439782 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.355164, -75.262841 ], [ -65.863037, -75.634766 ], [ -67.195129, -75.791336 ], [ -67.500000, -75.844497 ], [ -67.719727, -75.882732 ], [ -67.719727, -73.958939 ], [ -61.177368, -73.958939 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -62.059021, -70.539543 ], [ -61.954651, -70.612614 ], [ -61.809082, -70.716285 ], [ -61.515198, -71.088305 ], [ -61.377869, -72.009552 ], [ -61.083984, -72.381579 ], [ -61.004333, -72.773828 ], [ -60.691223, -73.165560 ], [ -60.828552, -73.695009 ], [ -61.259766, -74.019543 ], [ -61.342163, -74.079925 ], [ -67.719727, -74.079925 ], [ -67.719727, -72.667773 ], [ -67.500000, -72.550381 ], [ -67.370911, -72.480238 ], [ -67.134705, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.500000, -71.327192 ], [ -67.565918, -71.245239 ], [ -67.719727, -71.074056 ], [ -67.719727, -70.539543 ], [ -62.059021, -70.539543 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 24 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -62.806091, -66.425537 ], [ -63.748169, -66.503407 ], [ -63.761902, -66.513260 ], [ -64.294739, -66.836246 ], [ -64.882507, -67.149699 ], [ -65.508728, -67.580955 ], [ -65.665283, -67.952994 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.913969 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.991475 ], [ -62.278748, -70.383387 ], [ -61.954651, -70.612614 ], [ -61.853027, -70.685421 ], [ -67.719727, -70.685421 ], [ -67.719727, -68.684527 ], [ -67.585144, -68.541301 ], [ -67.500000, -68.330320 ], [ -67.428589, -68.149077 ], [ -67.500000, -67.991108 ], [ -67.626343, -67.717778 ], [ -67.719727, -67.397989 ], [ -67.719727, -67.307035 ], [ -67.500000, -67.104861 ], [ -67.252808, -66.875109 ], [ -66.703491, -66.582126 ], [ -66.585388, -66.513260 ], [ -66.431580, -66.425537 ], [ -62.806091, -66.425537 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 23 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -57.812805, -63.269476 ], [ -57.225037, -63.525297 ], [ -57.595825, -63.857616 ], [ -58.614807, -64.151347 ], [ -59.046021, -64.367249 ], [ -59.790344, -64.211157 ], [ -60.614319, -64.308967 ], [ -61.298218, -64.543718 ], [ -62.023315, -64.798696 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.484486 ], [ -62.591858, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.806091, -66.424439 ], [ -63.748169, -66.503407 ], [ -63.761902, -66.513260 ], [ -63.904724, -66.600676 ], [ -66.739197, -66.600676 ], [ -66.585388, -66.513260 ], [ -66.058044, -66.209308 ], [ -65.371399, -65.896046 ], [ -64.569397, -65.601609 ], [ -64.176636, -65.170346 ], [ -63.630066, -64.896755 ], [ -63.003845, -64.641528 ], [ -62.042542, -64.582648 ], [ -61.416321, -64.269646 ], [ -60.710449, -64.073400 ], [ -59.889221, -63.955467 ], [ -59.164124, -63.701072 ], [ -58.595581, -63.387831 ], [ -57.812805, -63.269476 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 21 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.563171, -54.868705 ], [ -67.500000, -54.871866 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.301011 ], [ -67.500000, -55.375989 ], [ -67.719727, -55.455499 ], [ -67.719727, -54.868705 ], [ -67.563171, -54.868705 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.719727, -53.863866 ], [ -67.500000, -53.965781 ], [ -66.450806, -54.449283 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.199251 ], [ -66.450806, -55.249381 ], [ -66.961670, -54.895565 ], [ -67.500000, -54.871866 ], [ -67.563171, -54.868705 ], [ -67.719727, -54.868705 ], [ -67.719727, -53.863866 ] ] ], [ [ [ -67.211609, -48.777913 ], [ -67.291260, -48.922499 ], [ -67.500000, -49.301845 ], [ -67.719727, -49.696062 ], [ -67.719727, -48.777913 ], [ -67.211609, -48.777913 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "Falkland Islands", "adm0_a3": "FLK", "geou_dif": 0, "geounit": "Falkland Islands", "gu_a3": "FLK", "su_dif": 0, "subunit": "Falkland Islands", "su_a3": "FLK", "brk_diff": 1, "name": "Falkland Is.", "name_long": "Falkland Islands", "brk_a3": "B12", "brk_name": "Falkland Is.", "abbrev": "Flk. Is.", "postal": "FK", "formal_en": "Falkland Islands", "note_adm0": "U.K.", "note_brk": "Admin. by U.K.; Claimed by Argentina", "name_sort": "Falkland Islands", "name_alt": "Islas Malvinas", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 3140, "gdp_md_est": 105.1, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FK", "iso_a3": "FLK", "iso_n3": "238", "un_a3": "238", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "FLK", "adm0_a3_us": "FLK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 12, "long_len": 16, "abbrev_len": 8, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.551636, -51.098348 ], [ -57.752380, -51.549751 ], [ -58.051758, -51.898529 ], [ -59.400330, -52.199190 ], [ -59.850769, -51.849353 ], [ -60.702209, -52.298402 ], [ -61.202087, -51.849353 ], [ -60.001831, -51.249882 ], [ -59.150391, -51.498485 ], [ -58.551636, -51.098348 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 20 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.750671, -40.813809 ], [ -64.995117, -40.979898 ], [ -65.118713, -41.062786 ], [ -64.978638, -42.057450 ], [ -64.305725, -42.358544 ], [ -63.756409, -42.043174 ], [ -63.459778, -42.561173 ], [ -64.379883, -42.871938 ], [ -65.181885, -43.494775 ], [ -65.330200, -44.500423 ], [ -65.566406, -45.036656 ], [ -66.511230, -45.038597 ], [ -67.294006, -45.550602 ], [ -67.500000, -46.090377 ], [ -67.582397, -46.301406 ], [ -67.500000, -46.362093 ], [ -66.599121, -47.032695 ], [ -65.643311, -47.234490 ], [ -65.986633, -48.133101 ], [ -67.167664, -48.696399 ], [ -67.291260, -48.922499 ], [ -67.370911, -49.066668 ], [ -67.719727, -49.066668 ], [ -67.719727, -40.813809 ], [ -64.750671, -40.813809 ] ] ], [ [ [ -62.380371, -40.813809 ], [ -62.663269, -40.979898 ], [ -62.748413, -41.027571 ], [ -63.772888, -41.166249 ], [ -64.267273, -40.979898 ], [ -64.703979, -40.813809 ], [ -62.380371, -40.813809 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 19 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.070984, -31.765537 ], [ -58.120422, -31.952162 ], [ -58.145142, -32.043005 ], [ -58.134155, -33.038601 ], [ -58.351135, -33.261657 ], [ -58.428040, -33.909175 ], [ -58.496704, -34.429567 ], [ -57.227783, -35.285985 ], [ -57.362366, -35.975783 ], [ -56.738892, -36.412442 ], [ -56.788330, -36.899391 ], [ -57.749634, -38.182069 ], [ -59.232788, -38.719805 ], [ -61.237793, -38.927366 ], [ -62.336426, -38.826871 ], [ -62.127686, -39.423464 ], [ -62.330933, -40.172578 ], [ -62.146912, -40.676472 ], [ -62.663269, -40.979898 ], [ -62.748413, -41.027571 ], [ -63.613586, -41.145570 ], [ -63.827820, -41.145570 ], [ -64.267273, -40.979898 ], [ -64.734192, -40.801336 ], [ -64.995117, -40.979898 ], [ -65.118713, -41.062786 ], [ -65.107727, -41.145570 ], [ -67.719727, -41.145570 ], [ -67.719727, -31.765537 ], [ -58.070984, -31.765537 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Uruguay", "sov_a3": "URY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uruguay", "adm0_a3": "URY", "geou_dif": 0, "geounit": "Uruguay", "gu_a3": "URY", "su_dif": 0, "subunit": "Uruguay", "su_a3": "URY", "brk_diff": 0, "name": "Uruguay", "name_long": "Uruguay", "brk_a3": "URY", "brk_name": "Uruguay", "abbrev": "Ury.", "postal": "UY", "formal_en": "Oriental Republic of Uruguay", "name_sort": "Uruguay", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 3494382, "gdp_md_est": 43160, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "UY", "iso_a3": "URY", "iso_n3": "858", "un_a3": "858", "wb_a2": "UY", "wb_a3": "URY", "woe_id": -99, "adm0_a3_is": "URY", "adm0_a3_us": "URY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.030273, -31.765537 ], [ -56.030273, -34.822823 ], [ -56.217041, -34.858890 ], [ -56.250000, -34.843113 ], [ -57.139893, -34.429567 ], [ -57.818298, -34.461277 ], [ -58.428040, -33.909175 ], [ -58.351135, -33.261657 ], [ -58.134155, -33.038601 ], [ -58.145142, -32.043005 ], [ -58.120422, -31.952162 ], [ -58.070984, -31.765537 ], [ -56.030273, -31.765537 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 18 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.107239, -22.735657 ], [ -66.986389, -22.986210 ], [ -67.329712, -24.023888 ], [ -67.719727, -24.201879 ], [ -67.719727, -22.852133 ], [ -67.500000, -22.809099 ], [ -67.107239, -22.735657 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.517700, -21.739091 ], [ -62.586365, -21.943046 ], [ -62.685242, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.987122, -21.991442 ], [ -64.377136, -22.796439 ], [ -64.964905, -22.075459 ], [ -65.679016, -21.943046 ], [ -66.275024, -21.830907 ], [ -66.376648, -21.943046 ], [ -67.107239, -22.735657 ], [ -67.500000, -22.809099 ], [ -67.719727, -22.852133 ], [ -67.719727, -21.739091 ], [ -62.517700, -21.739091 ] ] ] } } +, +{ "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": [ [ [ [ -56.030273, -28.627925 ], [ -56.030273, -30.838573 ], [ -56.250000, -30.668628 ], [ -56.977844, -30.109494 ], [ -57.626038, -30.213982 ], [ -56.291199, -28.851891 ], [ -56.250000, -28.815800 ], [ -56.030273, -28.627925 ] ] ], [ [ [ -56.030273, -22.263680 ], [ -56.250000, -22.174688 ], [ -56.475220, -22.085640 ], [ -56.881714, -22.281472 ], [ -57.939148, -22.088185 ], [ -57.930908, -21.943046 ], [ -57.919922, -21.739091 ], [ -56.030273, -21.739091 ], [ -56.030273, -22.263680 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Paraguay", "sov_a3": "PRY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Paraguay", "adm0_a3": "PRY", "geou_dif": 0, "geounit": "Paraguay", "gu_a3": "PRY", "su_dif": 0, "subunit": "Paraguay", "su_a3": "PRY", "brk_diff": 0, "name": "Paraguay", "name_long": "Paraguay", "brk_a3": "PRY", "brk_name": "Paraguay", "abbrev": "Para.", "postal": "PY", "formal_en": "Republic of Paraguay", "name_sort": "Paraguay", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 2, "pop_est": 6995655, "gdp_md_est": 28890, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PY", "iso_a3": "PRY", "iso_n3": "600", "un_a3": "600", "wb_a2": "PY", "wb_a3": "PRY", "woe_id": -99, "adm0_a3_is": "PRY", "adm0_a3_us": "PRY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.919922, -21.739091 ], [ -57.930908, -21.943046 ], [ -57.939148, -22.088185 ], [ -56.881714, -22.281472 ], [ -56.475220, -22.085640 ], [ -56.250000, -22.174688 ], [ -56.030273, -22.263680 ], [ -56.030273, -27.454665 ], [ -56.250000, -27.498527 ], [ -56.488953, -27.547242 ], [ -57.612305, -27.393717 ], [ -58.620300, -27.122702 ], [ -57.634277, -25.601902 ], [ -57.779846, -25.160201 ], [ -58.809814, -24.769278 ], [ -60.029297, -24.031414 ], [ -60.847778, -23.878303 ], [ -62.685242, -22.248429 ], [ -62.586365, -21.943046 ], [ -62.517700, -21.739091 ], [ -57.919922, -21.739091 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.275024, -21.830907 ], [ -65.679016, -21.943046 ], [ -64.964905, -22.075459 ], [ -64.377136, -22.796439 ], [ -63.987122, -21.991442 ], [ -62.847290, -22.034730 ], [ -62.685242, -22.248429 ], [ -60.847778, -23.878303 ], [ -60.029297, -24.031414 ], [ -58.809814, -24.769278 ], [ -57.779846, -25.160201 ], [ -57.634277, -25.601902 ], [ -58.620300, -27.122702 ], [ -57.612305, -27.393717 ], [ -56.488953, -27.547242 ], [ -56.250000, -27.498527 ], [ -56.030273, -27.454665 ], [ -56.030273, -28.627925 ], [ -56.250000, -28.815800 ], [ -56.291199, -28.851891 ], [ -57.626038, -30.213982 ], [ -57.875977, -31.015279 ], [ -58.120422, -31.952162 ], [ -58.145142, -32.043005 ], [ -58.142395, -32.138409 ], [ -67.719727, -32.138409 ], [ -67.719727, -24.201879 ], [ -67.329712, -24.023888 ], [ -66.986389, -22.986210 ], [ -67.107239, -22.735657 ], [ -66.376648, -21.943046 ], [ -66.275024, -21.830907 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Uruguay", "sov_a3": "URY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uruguay", "adm0_a3": "URY", "geou_dif": 0, "geounit": "Uruguay", "gu_a3": "URY", "su_dif": 0, "subunit": "Uruguay", "su_a3": "URY", "brk_diff": 0, "name": "Uruguay", "name_long": "Uruguay", "brk_a3": "URY", "brk_name": "Uruguay", "abbrev": "Ury.", "postal": "UY", "formal_en": "Oriental Republic of Uruguay", "name_sort": "Uruguay", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 3494382, "gdp_md_est": 43160, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "UY", "iso_a3": "URY", "iso_n3": "858", "un_a3": "858", "wb_a2": "UY", "wb_a3": "URY", "woe_id": -99, "adm0_a3_is": "URY", "adm0_a3_us": "URY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.977844, -30.109494 ], [ -56.250000, -30.668628 ], [ -56.030273, -30.838573 ], [ -56.030273, -32.138409 ], [ -58.142395, -32.138409 ], [ -58.145142, -32.043005 ], [ -58.120422, -31.952162 ], [ -57.875977, -31.015279 ], [ -57.626038, -30.213982 ], [ -56.977844, -30.109494 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 17 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.330200, -10.962764 ], [ -65.357666, -11.178402 ], [ -65.404358, -11.566144 ], [ -64.316711, -12.460715 ], [ -63.198853, -12.626938 ], [ -62.803345, -12.999205 ], [ -62.127686, -13.197165 ], [ -61.715698, -13.488460 ], [ -61.086731, -13.477777 ], [ -60.504456, -13.774066 ], [ -60.460510, -14.352209 ], [ -60.265503, -14.644711 ], [ -60.251770, -15.074776 ], [ -60.545654, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.241272, -16.299051 ], [ -58.389587, -16.875519 ], [ -58.282471, -17.269351 ], [ -57.735901, -17.552391 ], [ -57.499695, -18.171950 ], [ -57.678223, -18.960844 ], [ -57.950134, -19.399249 ], [ -57.854004, -19.968186 ], [ -58.167114, -20.174567 ], [ -58.183594, -19.867477 ], [ -59.117432, -19.355202 ], [ -60.045776, -19.342245 ], [ -61.787109, -19.632240 ], [ -62.267761, -20.511927 ], [ -62.292480, -21.051181 ], [ -62.586365, -21.943046 ], [ -62.652283, -22.146708 ], [ -62.764893, -22.146708 ], [ -62.847290, -22.034730 ], [ -63.987122, -21.991442 ], [ -64.061279, -22.146708 ], [ -64.909973, -22.146708 ], [ -64.964905, -22.075459 ], [ -65.679016, -21.943046 ], [ -66.275024, -21.830907 ], [ -66.376648, -21.943046 ], [ -66.563416, -22.146708 ], [ -67.719727, -22.146708 ], [ -67.719727, -10.962764 ], [ -65.330200, -10.962764 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ -56.030273, -10.962764 ], [ -56.030273, -22.146708 ], [ -56.324158, -22.146708 ], [ -56.475220, -22.085640 ], [ -56.601562, -22.146708 ], [ -57.628784, -22.146708 ], [ -57.939148, -22.088185 ], [ -57.930908, -21.943046 ], [ -57.873230, -20.730428 ], [ -58.167114, -20.174567 ], [ -57.854004, -19.968186 ], [ -57.950134, -19.399249 ], [ -57.678223, -18.960844 ], [ -57.499695, -18.171950 ], [ -57.735901, -17.552391 ], [ -58.282471, -17.269351 ], [ -58.389587, -16.875519 ], [ -58.241272, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.251770, -15.074776 ], [ -60.265503, -14.644711 ], [ -60.460510, -14.352209 ], [ -60.504456, -13.774066 ], [ -61.086731, -13.477777 ], [ -61.715698, -13.488460 ], [ -62.127686, -13.197165 ], [ -62.803345, -12.999205 ], [ -63.198853, -12.626938 ], [ -64.316711, -12.460715 ], [ -65.404358, -11.566144 ], [ -65.357666, -11.178402 ], [ -65.330200, -10.962764 ], [ -56.030273, -10.962764 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Paraguay", "sov_a3": "PRY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Paraguay", "adm0_a3": "PRY", "geou_dif": 0, "geounit": "Paraguay", "gu_a3": "PRY", "su_dif": 0, "subunit": "Paraguay", "su_a3": "PRY", "brk_diff": 0, "name": "Paraguay", "name_long": "Paraguay", "brk_a3": "PRY", "brk_name": "Paraguay", "abbrev": "Para.", "postal": "PY", "formal_en": "Republic of Paraguay", "name_sort": "Paraguay", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 2, "pop_est": 6995655, "gdp_md_est": 28890, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PY", "iso_a3": "PRY", "iso_n3": "600", "un_a3": "600", "wb_a2": "PY", "wb_a3": "PRY", "woe_id": -99, "adm0_a3_is": "PRY", "adm0_a3_us": "PRY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -60.045776, -19.342245 ], [ -59.117432, -19.355202 ], [ -58.183594, -19.867477 ], [ -58.167114, -20.174567 ], [ -57.873230, -20.730428 ], [ -57.930908, -21.943046 ], [ -57.939148, -22.088185 ], [ -57.628784, -22.146708 ], [ -62.652283, -22.146708 ], [ -62.586365, -21.943046 ], [ -62.292480, -21.051181 ], [ -62.267761, -20.511927 ], [ -61.787109, -19.632240 ], [ -60.045776, -19.342245 ] ] ], [ [ [ -56.324158, -22.146708 ], [ -56.601562, -22.146708 ], [ -56.475220, -22.085640 ], [ -56.324158, -22.146708 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -66.275024, -21.830907 ], [ -65.679016, -21.943046 ], [ -64.964905, -22.075459 ], [ -64.909973, -22.146708 ], [ -66.563416, -22.146708 ], [ -66.376648, -21.943046 ], [ -66.275024, -21.830907 ] ] ], [ [ [ -62.847290, -22.034730 ], [ -62.764893, -22.146708 ], [ -64.061279, -22.146708 ], [ -63.987122, -21.991442 ], [ -62.847290, -22.034730 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 16 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.338440, -9.760491 ], [ -65.445557, -10.509417 ], [ -65.321960, -10.895345 ], [ -65.357666, -11.178402 ], [ -65.382385, -11.393879 ], [ -67.719727, -11.393879 ], [ -67.719727, -10.558022 ], [ -67.500000, -10.455402 ], [ -67.175903, -10.304110 ], [ -66.648560, -9.930977 ], [ -65.338440, -9.760491 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ -56.030273, 0.219726 ], [ -56.030273, -11.393879 ], [ -65.382385, -11.393879 ], [ -65.357666, -11.178402 ], [ -65.321960, -10.895345 ], [ -65.445557, -10.509417 ], [ -65.338440, -9.760491 ], [ -66.648560, -9.930977 ], [ -67.175903, -10.304110 ], [ -67.500000, -10.455402 ], [ -67.719727, -10.558022 ], [ -67.719727, 0.219726 ], [ -56.030273, 0.219726 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.719727, 2.767478 ], [ -67.500000, 2.633045 ], [ -67.447815, 2.602864 ], [ -67.181396, 2.251617 ], [ -66.876526, 1.255088 ], [ -67.066040, 1.131518 ], [ -67.261047, 1.721848 ], [ -67.500000, 1.996361 ], [ -67.538452, 2.037534 ], [ -67.719727, 1.848129 ], [ -67.719727, 2.767478 ] ] ], [ [ [ -67.719727, 4.162897 ], [ -67.623596, 3.839591 ], [ -67.500000, 3.713523 ], [ -67.337952, 3.543576 ], [ -67.304993, 3.318760 ], [ -67.500000, 3.126804 ], [ -67.719727, 2.910125 ], [ -67.719727, 4.162897 ] ] ], [ [ [ -67.719727, 5.260538 ], [ -67.719727, 6.263428 ], [ -67.697754, 6.268888 ], [ -67.500000, 6.173324 ], [ -67.343445, 6.096860 ], [ -67.500000, 5.621453 ], [ -67.521973, 5.558582 ], [ -67.719727, 5.260538 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Venezuela", "sov_a3": "VEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Venezuela", "adm0_a3": "VEN", "geou_dif": 0, "geounit": "Venezuela", "gu_a3": "VEN", "su_dif": 0, "subunit": "Venezuela", "su_a3": "VEN", "brk_diff": 0, "name": "Venezuela", "name_long": "Venezuela", "brk_a3": "VEN", "brk_name": "Venezuela", "abbrev": "Ven.", "postal": "VE", "formal_en": "Bolivarian Republic of Venezuela", "formal_fr": "República Bolivariana de Venezuela", "name_sort": "Venezuela, RB", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 26814843, "gdp_md_est": 357400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "VE", "iso_a3": "VEN", "iso_n3": "862", "un_a3": "862", "wb_a2": "VE", "wb_a3": "VEN", "woe_id": -99, "adm0_a3_is": "VEN", "adm0_a3_us": "VEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.883240, 10.717285 ], [ -62.731934, 10.420287 ], [ -62.388611, 9.949914 ], [ -61.589355, 9.874158 ], [ -60.831299, 9.384032 ], [ -60.671997, 8.581021 ], [ -60.150146, 8.605463 ], [ -59.760132, 8.369127 ], [ -60.551147, 7.781751 ], [ -60.639038, 7.416942 ], [ -60.295715, 7.046379 ], [ -60.545654, 6.858259 ], [ -61.160889, 6.697343 ], [ -61.141663, 6.236125 ], [ -61.410828, 5.960290 ], [ -60.735168, 5.200365 ], [ -60.603333, 4.918569 ], [ -60.968628, 4.538094 ], [ -62.086487, 4.162897 ], [ -62.806091, 4.009480 ], [ -63.094482, 3.771078 ], [ -63.890991, 4.023179 ], [ -64.629822, 4.149201 ], [ -64.816589, 4.058796 ], [ -64.368896, 3.798484 ], [ -64.410095, 3.126804 ], [ -64.270020, 2.498597 ], [ -63.424072, 2.413532 ], [ -63.369141, 2.202216 ], [ -64.083252, 1.916757 ], [ -64.201355, 1.493971 ], [ -64.613342, 1.329226 ], [ -65.354919, 1.095819 ], [ -65.549927, 0.790990 ], [ -66.327209, 0.725078 ], [ -66.876526, 1.255088 ], [ -67.181396, 2.251617 ], [ -67.447815, 2.602864 ], [ -67.500000, 2.633045 ], [ -67.719727, 2.767478 ], [ -67.719727, 2.910125 ], [ -67.500000, 3.126804 ], [ -67.304993, 3.318760 ], [ -67.337952, 3.543576 ], [ -67.500000, 3.713523 ], [ -67.623596, 3.839591 ], [ -67.719727, 4.162897 ], [ -67.719727, 5.260538 ], [ -67.521973, 5.558582 ], [ -67.500000, 5.621453 ], [ -67.343445, 6.096860 ], [ -67.500000, 6.173324 ], [ -67.697754, 6.268888 ], [ -67.719727, 6.263428 ], [ -67.719727, 10.552622 ], [ -67.500000, 10.549922 ], [ -67.296753, 10.547221 ], [ -66.228333, 10.649811 ], [ -65.657043, 10.201407 ], [ -64.890747, 10.079741 ], [ -64.330444, 10.390572 ], [ -64.319458, 10.641713 ], [ -63.080750, 10.703792 ], [ -61.883240, 10.717285 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Trinidad and Tobago", "sov_a3": "TTO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Trinidad and Tobago", "adm0_a3": "TTO", "geou_dif": 0, "geounit": "Trinidad and Tobago", "gu_a3": "TTO", "su_dif": 0, "subunit": "Trinidad and Tobago", "su_a3": "TTO", "brk_diff": 0, "name": "Trinidad and Tobago", "name_long": "Trinidad and Tobago", "brk_a3": "TTO", "brk_name": "Trinidad and Tobago", "abbrev": "Tr.T.", "postal": "TT", "formal_en": "Republic of Trinidad and Tobago", "name_sort": "Trinidad and Tobago", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 1310000, "gdp_md_est": 29010, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TT", "iso_a3": "TTO", "iso_n3": "780", "un_a3": "780", "wb_a2": "TT", "wb_a3": "TTO", "woe_id": -99, "adm0_a3_is": "TTO", "adm0_a3_us": "TTO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 19, "long_len": 19, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.105957, 10.892648 ], [ -60.897217, 10.857584 ], [ -60.935669, 10.112190 ], [ -61.770630, 10.001310 ], [ -61.951904, 10.090558 ], [ -61.660767, 10.366257 ], [ -61.682739, 10.760461 ], [ -61.105957, 10.892648 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Guyana", "sov_a3": "GUY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guyana", "adm0_a3": "GUY", "geou_dif": 0, "geounit": "Guyana", "gu_a3": "GUY", "su_dif": 0, "subunit": "Guyana", "su_a3": "GUY", "brk_diff": 0, "name": "Guyana", "name_long": "Guyana", "brk_a3": "GUY", "brk_name": "Guyana", "abbrev": "Guy.", "postal": "GY", "formal_en": "Co-operative Republic of Guyana", "name_sort": "Guyana", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 772298, "gdp_md_est": 2966, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GY", "iso_a3": "GUY", "iso_n3": "328", "un_a3": "328", "wb_a2": "GY", "wb_a3": "GUY", "woe_id": -99, "adm0_a3_is": "GUY", "adm0_a3_us": "GUY", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.760132, 8.369127 ], [ -59.103699, 7.999397 ], [ -58.482971, 7.348847 ], [ -58.455505, 6.833716 ], [ -58.079224, 6.809171 ], [ -57.543640, 6.323488 ], [ -57.148132, 5.973949 ], [ -57.307434, 5.074529 ], [ -57.914429, 4.814575 ], [ -57.862244, 4.579163 ], [ -58.046265, 4.061536 ], [ -57.604065, 3.335212 ], [ -57.282715, 3.335212 ], [ -57.150879, 2.770221 ], [ -56.541138, 1.900286 ], [ -56.782837, 1.864600 ], [ -57.337646, 1.949697 ], [ -57.661743, 1.683413 ], [ -58.114929, 1.507700 ], [ -58.430786, 1.466515 ], [ -58.540649, 1.268817 ], [ -59.032288, 1.318243 ], [ -59.647522, 1.787735 ], [ -59.718933, 2.251617 ], [ -59.977112, 2.756504 ], [ -59.817810, 3.606625 ], [ -59.540405, 3.960161 ], [ -59.768372, 4.425829 ], [ -60.111694, 4.576425 ], [ -59.982605, 5.014339 ], [ -60.216064, 5.246863 ], [ -60.735168, 5.200365 ], [ -61.410828, 5.960290 ], [ -61.141663, 6.236125 ], [ -61.160889, 6.697343 ], [ -60.545654, 6.858259 ], [ -60.295715, 7.046379 ], [ -60.639038, 7.416942 ], [ -60.551147, 7.781751 ], [ -59.760132, 8.369127 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Suriname", "sov_a3": "SUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Suriname", "adm0_a3": "SUR", "geou_dif": 0, "geounit": "Suriname", "gu_a3": "SUR", "su_dif": 0, "subunit": "Suriname", "su_a3": "SUR", "brk_diff": 0, "name": "Suriname", "name_long": "Suriname", "brk_a3": "SUR", "brk_name": "Suriname", "abbrev": "Sur.", "postal": "SR", "formal_en": "Republic of Suriname", "name_sort": "Suriname", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 481267, "gdp_md_est": 4254, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "SR", "iso_a3": "SUR", "iso_n3": "740", "un_a3": "740", "wb_a2": "SR", "wb_a3": "SUR", "woe_id": -99, "adm0_a3_is": "SUR", "adm0_a3_us": "SUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.148132, 5.973949 ], [ -56.250000, 5.823687 ], [ -56.030273, 5.788164 ], [ -56.030273, 2.347670 ], [ -56.074219, 2.221428 ], [ -56.030273, 2.172026 ], [ -56.030273, 1.823423 ], [ -56.250000, 1.856365 ], [ -56.541138, 1.900286 ], [ -57.150879, 2.770221 ], [ -57.282715, 3.335212 ], [ -57.604065, 3.335212 ], [ -58.046265, 4.061536 ], [ -57.862244, 4.579163 ], [ -57.914429, 4.814575 ], [ -57.307434, 5.074529 ], [ -57.148132, 5.973949 ] ] ] } } +, +{ "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": [ [ [ [ -56.030273, 1.823423 ], [ -56.030273, -0.219726 ], [ -67.719727, -0.219726 ], [ -67.719727, 1.848129 ], [ -67.538452, 2.037534 ], [ -67.500000, 1.996361 ], [ -67.261047, 1.721848 ], [ -67.066040, 1.131518 ], [ -66.876526, 1.255088 ], [ -66.327209, 0.725078 ], [ -65.549927, 0.790990 ], [ -65.354919, 1.095819 ], [ -64.613342, 1.329226 ], [ -64.201355, 1.493971 ], [ -64.083252, 1.916757 ], [ -63.369141, 2.202216 ], [ -63.424072, 2.413532 ], [ -64.270020, 2.498597 ], [ -64.410095, 3.126804 ], [ -64.368896, 3.798484 ], [ -64.816589, 4.058796 ], [ -64.629822, 4.149201 ], [ -63.890991, 4.023179 ], [ -63.094482, 3.771078 ], [ -62.806091, 4.009480 ], [ -62.086487, 4.162897 ], [ -60.968628, 4.538094 ], [ -60.603333, 4.918569 ], [ -60.735168, 5.200365 ], [ -60.216064, 5.246863 ], [ -59.982605, 5.014339 ], [ -60.111694, 4.576425 ], [ -59.768372, 4.425829 ], [ -59.540405, 3.960161 ], [ -59.817810, 3.606625 ], [ -59.977112, 2.756504 ], [ -59.718933, 2.251617 ], [ -59.647522, 1.787735 ], [ -59.032288, 1.318243 ], [ -58.540649, 1.268817 ], [ -58.430786, 1.466515 ], [ -58.114929, 1.507700 ], [ -57.661743, 1.683413 ], [ -57.337646, 1.949697 ], [ -56.782837, 1.864600 ], [ -56.541138, 1.900286 ], [ -56.250000, 1.856365 ], [ -56.030273, 1.823423 ] ] ], [ [ [ -56.030273, 2.172026 ], [ -56.074219, 2.221428 ], [ -56.030273, 2.347670 ], [ -56.030273, 2.172026 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "Puerto Rico", "adm0_a3": "PRI", "geou_dif": 0, "geounit": "Puerto Rico", "gu_a3": "PRI", "su_dif": 0, "subunit": "Puerto Rico", "su_a3": "PRI", "brk_diff": 0, "name": "Puerto Rico", "name_long": "Puerto Rico", "brk_a3": "PRI", "brk_name": "Puerto Rico", "abbrev": "P.R.", "postal": "PR", "formal_en": "Commonwealth of Puerto Rico", "note_adm0": "Commonwealth of U.S.A.", "name_sort": "Puerto Rico", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 3971020, "gdp_md_est": 70230, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "PR", "iso_a3": "PRI", "iso_n3": "630", "un_a3": "630", "wb_a2": "PR", "wb_a3": "PRI", "woe_id": -99, "adm0_a3_is": "PRI", "adm0_a3_us": "PRI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.101746, 18.521283 ], [ -66.283264, 18.516075 ], [ -65.772400, 18.427502 ], [ -65.591125, 18.229351 ], [ -65.849304, 17.976121 ], [ -66.601868, 17.983958 ], [ -67.186890, 17.947381 ], [ -67.244568, 18.375379 ], [ -67.101746, 18.521283 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -64.756165, 49.066668 ], [ -64.495239, 48.922499 ], [ -64.171143, 48.743512 ], [ -65.115967, 48.072574 ], [ -64.800110, 46.993368 ], [ -64.473267, 46.238752 ], [ -63.174133, 45.740693 ], [ -61.523438, 45.884273 ], [ -60.518188, 47.008353 ], [ -60.449524, 46.284326 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.256531, 44.670606 ], [ -64.248047, 44.266838 ], [ -65.365906, 43.546557 ], [ -66.123962, 43.620171 ], [ -66.162415, 44.465151 ], [ -64.426575, 45.292279 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.500000, 45.452424 ], [ -67.719727, 45.642848 ], [ -67.719727, 48.672826 ], [ -67.088013, 48.922499 ], [ -66.722717, 49.066668 ], [ -64.756165, 49.066668 ] ] ], [ [ [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.417032 ], [ -62.012329, 46.443535 ], [ -62.503967, 46.035109 ], [ -62.874756, 45.968334 ], [ -64.143677, 46.394306 ], [ -64.393616, 46.728566 ], [ -64.017334, 47.036439 ] ] ], [ [ [ -56.030273, 49.066668 ], [ -56.030273, 47.578379 ], [ -56.250000, 47.633933 ], [ -57.326660, 47.572820 ], [ -59.268494, 47.604311 ], [ -59.419556, 47.899772 ], [ -58.798828, 48.252112 ], [ -59.232788, 48.523881 ], [ -58.677979, 48.922499 ], [ -58.474731, 49.066668 ], [ -56.030273, 49.066668 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.719727, 45.642848 ], [ -67.500000, 45.452424 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.811070 ], [ -67.500000, 44.568948 ], [ -67.719727, 44.469071 ], [ -67.719727, 45.642848 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -56.030273, 51.570241 ], [ -56.030273, 50.811142 ], [ -56.134644, 50.687758 ], [ -56.250000, 50.536126 ], [ -56.796570, 49.813176 ], [ -56.250000, 50.095917 ], [ -56.145630, 50.150506 ], [ -56.030273, 50.115295 ], [ -56.030273, 48.777913 ], [ -58.878479, 48.777913 ], [ -58.677979, 48.922499 ], [ -58.392334, 49.126017 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.287688 ], [ -56.250000, 51.483093 ], [ -56.030273, 51.570241 ] ] ], [ [ [ -64.495239, 48.922499 ], [ -64.237061, 48.777913 ], [ -67.453308, 48.777913 ], [ -67.088013, 48.922499 ], [ -66.555176, 49.133206 ], [ -65.058289, 49.233741 ], [ -64.495239, 48.922499 ] ] ], [ [ [ -64.173889, 49.958288 ], [ -62.861023, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.806335, 49.106242 ], [ -62.295227, 49.088258 ], [ -63.591614, 49.402037 ], [ -64.519958, 49.873398 ], [ -64.173889, 49.958288 ] ] ], [ [ [ -60.762634, 55.899956 ], [ -60.471497, 55.776573 ], [ -59.570618, 55.205521 ], [ -57.977600, 54.946076 ], [ -57.334900, 54.627748 ], [ -56.939392, 53.781181 ], [ -56.250000, 53.664171 ], [ -56.159363, 53.647894 ], [ -56.030273, 53.528881 ], [ -56.030273, 51.967962 ], [ -56.250000, 51.854442 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.723938, 50.081820 ], [ -63.863525, 50.291094 ], [ -65.365906, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.512727 ], [ -67.500000, 49.421694 ], [ -67.719727, 49.344809 ], [ -67.719727, 55.899956 ], [ -60.762634, 55.899956 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -64.585876, 60.336464 ], [ -63.805847, 59.443679 ], [ -62.503967, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.800842, 56.340901 ], [ -60.471497, 55.776573 ], [ -60.276489, 55.652798 ], [ -67.719727, 55.652798 ], [ -67.719727, 58.270510 ], [ -67.651062, 58.212685 ], [ -67.500000, 58.270510 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.871019 ], [ -64.585876, 60.336464 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -67.719727, 66.292269 ], [ -67.719727, 66.600676 ], [ -61.971130, 66.600676 ], [ -62.163391, 66.160511 ], [ -63.918457, 64.999100 ], [ -65.148926, 65.426299 ], [ -66.722717, 66.388161 ], [ -67.500000, 66.313242 ], [ -67.719727, 66.292269 ] ] ], [ [ [ -67.719727, 63.100972 ], [ -67.500000, 62.965212 ], [ -67.370911, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.167908, 61.931197 ], [ -67.500000, 62.128289 ], [ -67.719727, 62.160372 ], [ -67.719727, 63.100972 ] ] ], [ [ [ -67.719727, 65.459402 ], [ -67.500000, 65.337055 ], [ -67.090759, 65.109148 ], [ -65.733948, 64.648584 ], [ -65.321960, 64.383879 ], [ -64.671021, 63.393982 ], [ -65.014343, 62.675404 ], [ -66.277771, 62.945231 ], [ -67.500000, 63.339808 ], [ -67.719727, 63.409968 ], [ -67.719727, 65.459402 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -67.719727, 68.422424 ], [ -67.500000, 68.360725 ], [ -66.450806, 68.068176 ], [ -64.863281, 67.847595 ], [ -63.426819, 66.928984 ], [ -61.853027, 66.862162 ], [ -62.009583, 66.513260 ], [ -62.048035, 66.425537 ], [ -67.719727, 66.425537 ], [ -67.719727, 68.422424 ] ] ], [ [ [ -67.719727, 68.996817 ], [ -67.719727, 69.932185 ], [ -67.500000, 69.717155 ], [ -66.969910, 69.186969 ], [ -67.500000, 69.052858 ], [ -67.719727, 68.996817 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.030273, 74.079925 ], [ -56.030273, 73.573508 ], [ -56.120911, 73.650226 ], [ -56.250000, 73.768104 ], [ -56.532898, 74.019543 ], [ -56.598816, 74.079925 ], [ -56.030273, 74.079925 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.030273, 76.890745 ], [ -56.030273, 73.958939 ], [ -56.464233, 73.958939 ], [ -56.532898, 74.019543 ], [ -57.323914, 74.710796 ], [ -58.598328, 75.099165 ], [ -58.587341, 75.517778 ], [ -61.270752, 76.102775 ], [ -63.393860, 76.175811 ], [ -66.066284, 76.135063 ], [ -67.500000, 76.092216 ], [ -67.719727, 76.085613 ], [ -67.719727, 76.890745 ], [ -56.030273, 76.890745 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.030273, 79.212538 ], [ -56.030273, 76.790701 ], [ -67.719727, 76.790701 ], [ -67.719727, 77.351070 ], [ -67.500000, 77.357083 ], [ -66.766663, 77.376305 ], [ -67.500000, 77.421246 ], [ -67.719727, 77.434996 ], [ -67.719727, 79.133601 ], [ -67.500000, 79.162559 ], [ -67.431335, 79.171335 ], [ -67.118225, 79.212538 ], [ -56.030273, 79.212538 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -66.975403, 81.127169 ], [ -67.107239, 81.093214 ], [ -67.500000, 80.990143 ], [ -67.719727, 80.932322 ], [ -67.719727, 81.127169 ], [ -66.975403, 81.127169 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.030273, 81.127169 ], [ -56.030273, 79.129976 ], [ -67.719727, 79.129976 ], [ -67.719727, 79.133601 ], [ -67.431335, 79.171335 ], [ -65.711975, 79.394526 ], [ -65.324707, 79.758237 ], [ -67.500000, 80.049036 ], [ -67.719727, 80.077946 ], [ -67.719727, 80.258040 ], [ -67.500000, 80.358376 ], [ -67.153931, 80.516245 ], [ -64.308472, 81.093214 ], [ -64.135437, 81.127169 ], [ -56.030273, 81.127169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -62.355652, 82.704241 ], [ -62.168884, 82.676285 ], [ -61.850281, 82.628867 ], [ -61.894226, 82.362009 ], [ -64.335938, 81.927816 ], [ -66.755676, 81.725560 ], [ -67.500000, 81.540928 ], [ -67.659302, 81.501646 ], [ -67.500000, 81.502052 ], [ -65.481262, 81.506921 ], [ -67.107239, 81.093214 ], [ -67.239075, 81.059130 ], [ -67.719727, 81.059130 ], [ -67.719727, 82.704241 ], [ -62.355652, 82.704241 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.030273, 82.194472 ], [ -56.030273, 81.059130 ], [ -64.481506, 81.059130 ], [ -64.308472, 81.093214 ], [ -63.690491, 81.214014 ], [ -62.234802, 81.321178 ], [ -62.652283, 81.770499 ], [ -60.284729, 82.033949 ], [ -57.208557, 82.190741 ], [ -56.250000, 82.193726 ], [ -56.030273, 82.194472 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -67.719727, 83.083674 ], [ -67.500000, 83.077387 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900043 ], [ -62.168884, 82.676285 ], [ -61.982117, 82.648222 ], [ -67.719727, 82.648222 ], [ -67.719727, 83.083674 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -44.780273, -83.956169 ], [ -44.780273, -85.070048 ], [ -56.469727, -85.070048 ], [ -56.469727, -83.956169 ], [ -44.780273, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -44.780273, -82.648222 ], [ -44.780273, -84.002262 ], [ -56.469727, -84.002262 ], [ -56.469727, -82.770559 ], [ -56.250000, -82.731397 ], [ -55.942383, -82.676285 ], [ -55.785828, -82.648222 ], [ -44.780273, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -47.274170, -81.709338 ], [ -45.000000, -81.836674 ], [ -44.826965, -81.846419 ], [ -44.780273, -81.851870 ], [ -44.780273, -82.704241 ], [ -56.098938, -82.704241 ], [ -55.942383, -82.676285 ], [ -55.365601, -82.571561 ], [ -53.621521, -82.258000 ], [ -51.545105, -82.003440 ], [ -49.762573, -81.729116 ], [ -47.274170, -81.709338 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -44.780273, -79.129976 ], [ -44.780273, -80.319196 ], [ -44.881897, -80.339497 ], [ -45.000000, -80.358376 ], [ -46.507874, -80.594217 ], [ -48.386536, -80.829156 ], [ -50.482178, -81.025345 ], [ -52.852478, -80.966455 ], [ -54.165344, -80.633187 ], [ -53.989563, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.350342, -79.171335 ], [ -50.300903, -79.129976 ], [ -44.780273, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -46.664429, -77.831431 ], [ -45.156555, -78.046640 ], [ -45.000000, -78.101694 ], [ -44.780273, -78.179025 ], [ -44.780273, -79.212538 ], [ -50.408020, -79.212538 ], [ -50.350342, -79.171335 ], [ -49.916382, -78.811044 ], [ -49.309387, -78.458173 ], [ -48.661194, -78.046640 ], [ -48.153076, -78.046640 ], [ -46.664429, -77.831431 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 19 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -51.564331, -31.765537 ], [ -51.830750, -31.952162 ], [ -52.256470, -32.245329 ], [ -52.712402, -33.195029 ], [ -53.374329, -33.767732 ], [ -53.651733, -33.201924 ], [ -53.212280, -32.727220 ], [ -53.789062, -32.045333 ], [ -53.923645, -31.952162 ], [ -54.190063, -31.765537 ], [ -51.564331, -31.765537 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Uruguay", "sov_a3": "URY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uruguay", "adm0_a3": "URY", "geou_dif": 0, "geounit": "Uruguay", "gu_a3": "URY", "su_dif": 0, "subunit": "Uruguay", "su_a3": "URY", "brk_diff": 0, "name": "Uruguay", "name_long": "Uruguay", "brk_a3": "URY", "brk_name": "Uruguay", "abbrev": "Ury.", "postal": "UY", "formal_en": "Oriental Republic of Uruguay", "name_sort": "Uruguay", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 3494382, "gdp_md_est": 43160, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "UY", "iso_a3": "URY", "iso_n3": "858", "un_a3": "858", "wb_a2": "UY", "wb_a3": "URY", "woe_id": -99, "adm0_a3_is": "URY", "adm0_a3_us": "URY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.190063, -31.765537 ], [ -53.923645, -31.952162 ], [ -53.789062, -32.045333 ], [ -53.212280, -32.727220 ], [ -53.651733, -33.201924 ], [ -53.374329, -33.767732 ], [ -53.808289, -34.395579 ], [ -54.937134, -34.951242 ], [ -55.675964, -34.750640 ], [ -56.217041, -34.858890 ], [ -56.250000, -34.843113 ], [ -56.469727, -34.741612 ], [ -56.469727, -31.765537 ], [ -54.190063, -31.765537 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 18 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -44.780273, -21.739091 ], [ -44.780273, -23.435529 ], [ -45.000000, -23.574057 ], [ -45.354309, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.650452, -24.883945 ], [ -48.496399, -25.876523 ], [ -48.641968, -26.622908 ], [ -48.477173, -27.174026 ], [ -48.663940, -28.185823 ], [ -48.889160, -28.673721 ], [ -49.589539, -29.224096 ], [ -50.699158, -30.982319 ], [ -51.578064, -31.777213 ], [ -51.830750, -31.952162 ], [ -52.102661, -32.138409 ], [ -53.712158, -32.138409 ], [ -53.789062, -32.045333 ], [ -53.923645, -31.952162 ], [ -54.574585, -31.494262 ], [ -55.601807, -30.852721 ], [ -55.975342, -30.881012 ], [ -56.250000, -30.668628 ], [ -56.469727, -30.500751 ], [ -56.469727, -29.034559 ], [ -56.291199, -28.851891 ], [ -56.250000, -28.815800 ], [ -55.162354, -27.880356 ], [ -54.492188, -27.474161 ], [ -53.648987, -26.922070 ], [ -53.629761, -26.123384 ], [ -54.132385, -25.547398 ], [ -54.626770, -25.738055 ], [ -54.429016, -25.160201 ], [ -54.294434, -24.569606 ], [ -54.294434, -24.018871 ], [ -54.654236, -23.838113 ], [ -55.030518, -23.998799 ], [ -55.401306, -23.956136 ], [ -55.519409, -23.571540 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.355156 ], [ -56.250000, -22.174688 ], [ -56.469727, -22.085640 ], [ -56.469727, -21.739091 ], [ -44.780273, -21.739091 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Paraguay", "sov_a3": "PRY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Paraguay", "adm0_a3": "PRY", "geou_dif": 0, "geounit": "Paraguay", "gu_a3": "PRY", "su_dif": 0, "subunit": "Paraguay", "su_a3": "PRY", "brk_diff": 0, "name": "Paraguay", "name_long": "Paraguay", "brk_a3": "PRY", "brk_name": "Paraguay", "abbrev": "Para.", "postal": "PY", "formal_en": "Republic of Paraguay", "name_sort": "Paraguay", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 2, "pop_est": 6995655, "gdp_md_est": 28890, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PY", "iso_a3": "PRY", "iso_n3": "600", "un_a3": "600", "wb_a2": "PY", "wb_a3": "PRY", "woe_id": -99, "adm0_a3_is": "PRY", "adm0_a3_us": "PRY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.469727, -22.085640 ], [ -56.250000, -22.174688 ], [ -55.799561, -22.355156 ], [ -55.612793, -22.654572 ], [ -55.519409, -23.571540 ], [ -55.401306, -23.956136 ], [ -55.030518, -23.998799 ], [ -54.654236, -23.838113 ], [ -54.294434, -24.018871 ], [ -54.294434, -24.569606 ], [ -54.429016, -25.160201 ], [ -54.626770, -25.738055 ], [ -54.788818, -26.620452 ], [ -55.697937, -27.386401 ], [ -56.250000, -27.498527 ], [ -56.469727, -27.544806 ], [ -56.469727, -22.085640 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.132385, -25.547398 ], [ -53.629761, -26.123384 ], [ -53.648987, -26.922070 ], [ -54.492188, -27.474161 ], [ -55.162354, -27.880356 ], [ -56.250000, -28.815800 ], [ -56.291199, -28.851891 ], [ -56.469727, -29.034559 ], [ -56.469727, -27.544806 ], [ -56.250000, -27.498527 ], [ -55.697937, -27.386401 ], [ -54.788818, -26.620452 ], [ -54.626770, -25.738055 ], [ -54.132385, -25.547398 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Uruguay", "sov_a3": "URY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uruguay", "adm0_a3": "URY", "geou_dif": 0, "geounit": "Uruguay", "gu_a3": "URY", "su_dif": 0, "subunit": "Uruguay", "su_a3": "URY", "brk_diff": 0, "name": "Uruguay", "name_long": "Uruguay", "brk_a3": "URY", "brk_name": "Uruguay", "abbrev": "Ury.", "postal": "UY", "formal_en": "Oriental Republic of Uruguay", "name_sort": "Uruguay", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 3494382, "gdp_md_est": 43160, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "UY", "iso_a3": "URY", "iso_n3": "858", "un_a3": "858", "wb_a2": "UY", "wb_a3": "URY", "woe_id": -99, "adm0_a3_is": "URY", "adm0_a3_us": "URY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.469727, -30.500751 ], [ -56.250000, -30.668628 ], [ -55.975342, -30.881012 ], [ -55.601807, -30.852721 ], [ -54.574585, -31.494262 ], [ -53.923645, -31.952162 ], [ -53.789062, -32.045333 ], [ -53.712158, -32.138409 ], [ -56.469727, -32.138409 ], [ -56.469727, -30.500751 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 17 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -44.780273, -10.962764 ], [ -44.780273, -22.146708 ], [ -56.324158, -22.146708 ], [ -56.469727, -22.085640 ], [ -56.469727, -10.962764 ], [ -44.780273, -10.962764 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Paraguay", "sov_a3": "PRY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Paraguay", "adm0_a3": "PRY", "geou_dif": 0, "geounit": "Paraguay", "gu_a3": "PRY", "su_dif": 0, "subunit": "Paraguay", "su_a3": "PRY", "brk_diff": 0, "name": "Paraguay", "name_long": "Paraguay", "brk_a3": "PRY", "brk_name": "Paraguay", "abbrev": "Para.", "postal": "PY", "formal_en": "Republic of Paraguay", "name_sort": "Paraguay", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 2, "pop_est": 6995655, "gdp_md_est": 28890, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PY", "iso_a3": "PRY", "iso_n3": "600", "un_a3": "600", "wb_a2": "PY", "wb_a3": "PRY", "woe_id": -99, "adm0_a3_is": "PRY", "adm0_a3_us": "PRY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.469727, -22.085640 ], [ -56.324158, -22.146708 ], [ -56.469727, -22.146708 ], [ -56.469727, -22.085640 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 16 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -50.696411, 0.219726 ], [ -50.471191, 0.000000 ], [ -50.388794, -0.076904 ], [ -48.622742, -0.233459 ], [ -48.587036, -1.235866 ], [ -47.826233, -0.579519 ], [ -46.568298, -0.939289 ], [ -45.000000, -1.515936 ], [ -44.906616, -1.551629 ], [ -44.780273, -1.699885 ], [ -44.780273, -11.393879 ], [ -56.469727, -11.393879 ], [ -56.469727, 0.219726 ], [ -50.696411, 0.219726 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Suriname", "sov_a3": "SUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Suriname", "adm0_a3": "SUR", "geou_dif": 0, "geounit": "Suriname", "gu_a3": "SUR", "su_dif": 0, "subunit": "Suriname", "su_a3": "SUR", "brk_diff": 0, "name": "Suriname", "name_long": "Suriname", "brk_a3": "SUR", "brk_name": "Suriname", "abbrev": "Sur.", "postal": "SR", "formal_en": "Republic of Suriname", "name_sort": "Suriname", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 481267, "gdp_md_est": 4254, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "SR", "iso_a3": "SUR", "iso_n3": "740", "un_a3": "740", "wb_a2": "SR", "wb_a3": "SUR", "woe_id": -99, "adm0_a3_is": "SUR", "adm0_a3_us": "SUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.033264, 6.025848 ], [ -53.959351, 5.758105 ], [ -54.481201, 4.899414 ], [ -54.401550, 4.214943 ], [ -54.008789, 3.620330 ], [ -54.181824, 3.189879 ], [ -54.269714, 2.734557 ], [ -54.525146, 2.311994 ], [ -55.099182, 2.526037 ], [ -55.571594, 2.421764 ], [ -55.975342, 2.512317 ], [ -56.074219, 2.221428 ], [ -55.906677, 2.023810 ], [ -55.997314, 1.817932 ], [ -56.250000, 1.856365 ], [ -56.469727, 1.889306 ], [ -56.469727, 5.861939 ], [ -56.250000, 5.823687 ], [ -55.950623, 5.774501 ], [ -55.843506, 5.954827 ], [ -55.033264, 6.025848 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.959351, 5.758105 ], [ -52.882690, 5.410945 ], [ -51.825256, 4.568211 ], [ -51.660461, 4.157419 ], [ -52.250977, 3.241982 ], [ -52.558594, 2.506829 ], [ -52.940369, 2.125367 ], [ -53.421021, 2.054003 ], [ -53.555603, 2.336693 ], [ -53.780823, 2.377857 ], [ -54.088440, 2.106154 ], [ -54.525146, 2.311994 ], [ -54.272461, 2.740044 ], [ -54.184570, 3.195364 ], [ -54.011536, 3.623071 ], [ -54.401550, 4.214943 ], [ -54.481201, 4.899414 ], [ -53.959351, 5.758105 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ -51.319885, 4.203986 ], [ -51.069946, 3.650482 ], [ -50.509644, 1.903031 ], [ -49.976807, 1.738320 ], [ -49.949341, 1.046390 ], [ -50.701904, 0.225219 ], [ -50.471191, 0.000000 ], [ -50.388794, -0.076904 ], [ -48.798523, -0.219726 ], [ -56.469727, -0.219726 ], [ -56.469727, 1.889306 ], [ -56.250000, 1.856365 ], [ -55.997314, 1.817932 ], [ -55.906677, 2.023810 ], [ -56.074219, 2.221428 ], [ -55.975342, 2.512317 ], [ -55.571594, 2.421764 ], [ -55.099182, 2.526037 ], [ -54.525146, 2.311994 ], [ -54.088440, 2.106154 ], [ -53.780823, 2.377857 ], [ -53.555603, 2.336693 ], [ -53.421021, 2.054003 ], [ -52.940369, 2.125367 ], [ -52.558594, 2.506829 ], [ -52.250977, 3.241982 ], [ -51.660461, 4.157419 ], [ -51.319885, 4.203986 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -53.555603, 49.066668 ], [ -53.616028, 48.922499 ], [ -53.786316, 48.518424 ], [ -53.088684, 48.689147 ], [ -52.959595, 48.158757 ], [ -52.649231, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.522644, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.962097, 47.626529 ], [ -54.242249, 47.754098 ], [ -55.401306, 46.886477 ], [ -56.000061, 46.920255 ], [ -55.291443, 47.390912 ], [ -56.250000, 47.633933 ], [ -56.252747, 47.633933 ], [ -56.469727, 47.620975 ], [ -56.469727, 49.066668 ], [ -53.555603, 49.066668 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -56.469727, 49.983020 ], [ -56.250000, 50.095917 ], [ -56.145630, 50.150506 ], [ -55.472717, 49.937080 ], [ -55.824280, 49.587568 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.478699, 49.249879 ], [ -53.616028, 48.922499 ], [ -53.676453, 48.777913 ], [ -56.469727, 48.777913 ], [ -56.469727, 49.983020 ] ] ], [ [ [ -56.469727, 53.701585 ], [ -56.250000, 53.664171 ], [ -56.159363, 53.647894 ], [ -55.758362, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.250000, 51.854442 ], [ -56.409302, 51.771239 ], [ -56.469727, 51.742337 ], [ -56.469727, 53.701585 ] ] ], [ [ [ -56.469727, 50.245448 ], [ -56.469727, 51.395778 ], [ -56.250000, 51.483093 ], [ -55.873718, 51.633362 ], [ -55.409546, 51.589016 ], [ -55.601807, 51.318597 ], [ -56.134644, 50.687758 ], [ -56.250000, 50.536126 ], [ -56.469727, 50.245448 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.780273, 61.710706 ], [ -44.780273, 60.037417 ], [ -44.788513, 60.037417 ], [ -45.000000, 60.156543 ], [ -46.266174, 60.854276 ], [ -48.265686, 60.859626 ], [ -49.235229, 61.407236 ], [ -49.369812, 61.606396 ], [ -49.438477, 61.710706 ], [ -44.780273, 61.710706 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.780273, 66.600676 ], [ -44.780273, 61.501734 ], [ -49.298401, 61.501734 ], [ -49.369812, 61.606396 ], [ -49.902649, 62.384004 ], [ -51.635742, 63.627965 ], [ -52.141113, 64.279184 ], [ -52.278442, 65.177265 ], [ -53.662720, 66.100494 ], [ -53.462219, 66.513260 ], [ -53.418274, 66.600676 ], [ -44.780273, 66.600676 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.780273, 70.685421 ], [ -44.780273, 66.425537 ], [ -53.506165, 66.425537 ], [ -53.462219, 66.513260 ], [ -53.302917, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.357686 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.147898 ], [ -50.872192, 69.929358 ], [ -52.014771, 69.575772 ], [ -52.558594, 69.426691 ], [ -53.456726, 69.284342 ], [ -54.684448, 69.610249 ], [ -54.750366, 70.290043 ], [ -54.514160, 70.612614 ], [ -54.461975, 70.685421 ], [ -52.275696, 70.685421 ], [ -51.718140, 70.612614 ], [ -51.391296, 70.570631 ], [ -51.506653, 70.612614 ], [ -51.701660, 70.685421 ], [ -44.780273, 70.685421 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.780273, 74.079925 ], [ -44.780273, 70.539543 ], [ -54.569092, 70.539543 ], [ -54.514160, 70.612614 ], [ -54.360352, 70.822129 ], [ -53.432007, 70.836560 ], [ -51.718140, 70.612614 ], [ -51.391296, 70.570631 ], [ -51.506653, 70.612614 ], [ -53.110657, 71.205460 ], [ -54.006042, 71.547525 ], [ -55.000305, 71.407048 ], [ -55.835266, 71.655020 ], [ -54.720154, 72.586583 ], [ -55.327148, 72.959120 ], [ -56.120911, 73.650226 ], [ -56.250000, 73.768104 ], [ -56.469727, 73.965768 ], [ -56.469727, 74.079925 ], [ -44.780273, 74.079925 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.780273, 76.890745 ], [ -44.780273, 73.958939 ], [ -56.464233, 73.958939 ], [ -56.469727, 73.965768 ], [ -56.469727, 76.890745 ], [ -44.780273, 76.890745 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.780273, 79.212538 ], [ -44.780273, 76.790701 ], [ -56.469727, 76.790701 ], [ -56.469727, 79.212538 ], [ -44.780273, 79.212538 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.780273, 81.127169 ], [ -44.780273, 79.129976 ], [ -56.469727, 79.129976 ], [ -56.469727, 81.127169 ], [ -44.780273, 81.127169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -44.780273, 81.701809 ], [ -44.780273, 81.059130 ], [ -56.469727, 81.059130 ], [ -56.469727, 82.192980 ], [ -56.250000, 82.193726 ], [ -54.135132, 82.199693 ], [ -53.044739, 81.888381 ], [ -50.391541, 82.439013 ], [ -48.004761, 82.065101 ], [ -46.601257, 81.986228 ], [ -45.000000, 81.736620 ], [ -44.780273, 81.701809 ] ] ], [ [ [ -44.780273, 81.720815 ], [ -45.000000, 81.772072 ], [ -46.903381, 82.200065 ], [ -46.766052, 82.628162 ], [ -46.502380, 82.676285 ], [ -46.351318, 82.704241 ], [ -44.780273, 82.704241 ], [ -44.780273, 81.720815 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.780273, 82.987093 ], [ -44.780273, 82.648222 ], [ -46.656189, 82.648222 ], [ -46.502380, 82.676285 ], [ -45.000000, 82.948087 ], [ -44.780273, 82.987093 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -33.530273, -83.956169 ], [ -33.530273, -85.070048 ], [ -45.219727, -85.070048 ], [ -45.219727, -83.956169 ], [ -33.530273, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -33.530273, -82.648222 ], [ -33.530273, -84.002262 ], [ -45.219727, -84.002262 ], [ -45.219727, -82.648222 ], [ -33.530273, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -33.530273, -81.059130 ], [ -33.530273, -82.704241 ], [ -45.219727, -82.704241 ], [ -45.219727, -81.824576 ], [ -45.000000, -81.836674 ], [ -44.826965, -81.846419 ], [ -42.810974, -82.081766 ], [ -42.162781, -81.650517 ], [ -40.773010, -81.356748 ], [ -38.246155, -81.336913 ], [ -36.268616, -81.121660 ], [ -36.015930, -81.093214 ], [ -35.716553, -81.059130 ], [ -33.530273, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ -33.530273, -79.444453 ], [ -33.681335, -79.456019 ], [ -35.642395, -79.456019 ], [ -35.851135, -79.171335 ], [ -35.881348, -79.129976 ], [ -33.530273, -79.129976 ], [ -33.530273, -79.444453 ] ] ], [ [ [ -43.478394, -79.129976 ], [ -43.467407, -79.171335 ], [ -43.374023, -79.516161 ], [ -43.335571, -80.025752 ], [ -44.881897, -80.339497 ], [ -45.000000, -80.358376 ], [ -45.219727, -80.393274 ], [ -45.219727, -79.129976 ], [ -43.478394, -79.129976 ] ] ], [ [ [ -33.530273, -80.849707 ], [ -33.530273, -81.127169 ], [ -36.318054, -81.127169 ], [ -36.015930, -81.093214 ], [ -34.387207, -80.905879 ], [ -33.750000, -80.864109 ], [ -33.530273, -80.849707 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ -45.219727, -78.037535 ], [ -45.156555, -78.046640 ], [ -45.000000, -78.101694 ], [ -43.923340, -78.477940 ], [ -43.492126, -79.085342 ], [ -43.467407, -79.171335 ], [ -43.456421, -79.212538 ], [ -45.219727, -79.212538 ], [ -45.219727, -78.037535 ] ] ], [ [ [ -33.530273, -77.837219 ], [ -33.530273, -79.212538 ], [ -35.820923, -79.212538 ], [ -35.851135, -79.171335 ], [ -35.914307, -79.083781 ], [ -35.779724, -78.338868 ], [ -35.329285, -78.123193 ], [ -33.898315, -77.888038 ], [ -33.750000, -77.867851 ], [ -33.530273, -77.837219 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 18 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -40.913086, -21.739091 ], [ -40.946045, -21.935403 ], [ -40.957031, -21.943046 ], [ -41.756287, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.965980 ], [ -44.648438, -23.349821 ], [ -45.000000, -23.574057 ], [ -45.219727, -23.712439 ], [ -45.219727, -21.739091 ], [ -40.913086, -21.739091 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 17 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -36.968994, -10.962764 ], [ -37.048645, -11.038255 ], [ -37.125549, -11.178402 ], [ -37.685852, -12.170911 ], [ -38.424683, -13.036669 ], [ -38.674622, -13.055399 ], [ -38.954773, -13.792739 ], [ -38.883362, -15.665354 ], [ -39.163513, -17.206394 ], [ -39.267883, -17.866361 ], [ -39.583740, -18.260653 ], [ -39.762268, -19.598607 ], [ -40.775757, -20.902437 ], [ -40.946045, -21.935403 ], [ -40.957031, -21.943046 ], [ -41.336060, -22.146708 ], [ -45.219727, -22.146708 ], [ -45.219727, -10.962764 ], [ -36.968994, -10.962764 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 16 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -45.219727, -1.433566 ], [ -45.000000, -1.515936 ], [ -44.906616, -1.551629 ], [ -44.417725, -2.136346 ], [ -44.582520, -2.690661 ], [ -43.420715, -2.380601 ], [ -41.473389, -2.910125 ], [ -39.979248, -2.871722 ], [ -38.501587, -3.699819 ], [ -37.224426, -4.820049 ], [ -36.455383, -5.107358 ], [ -35.598450, -5.148392 ], [ -35.235901, -5.462896 ], [ -34.898071, -6.735531 ], [ -34.730530, -7.340675 ], [ -35.128784, -8.996313 ], [ -35.639648, -9.646785 ], [ -37.048645, -11.038255 ], [ -37.125549, -11.178402 ], [ -37.246399, -11.393879 ], [ -45.219727, -11.393879 ], [ -45.219727, -1.433566 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -42.522583, 61.710706 ], [ -42.580261, 61.606396 ], [ -43.379517, 60.099088 ], [ -44.788513, 60.037417 ], [ -45.000000, 60.156543 ], [ -45.219727, 60.279324 ], [ -45.219727, 61.710706 ], [ -42.522583, 61.710706 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -34.450378, 66.600676 ], [ -34.719543, 66.513260 ], [ -36.353760, 65.978916 ], [ -37.045898, 65.938634 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.459402 ], [ -40.671387, 64.840765 ], [ -40.685120, 64.139369 ], [ -41.190491, 63.483636 ], [ -42.821960, 62.682968 ], [ -42.418213, 61.901459 ], [ -42.580261, 61.606396 ], [ -42.635193, 61.501734 ], [ -45.219727, 61.501734 ], [ -45.219727, 66.600676 ], [ -34.450378, 66.600676 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.530273, 70.685421 ], [ -33.530273, 67.195518 ], [ -33.750000, 67.028876 ], [ -34.203186, 66.680174 ], [ -34.719543, 66.513260 ], [ -34.991455, 66.425537 ], [ -45.219727, 66.425537 ], [ -45.219727, 70.685421 ], [ -33.530273, 70.685421 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.530273, 74.079925 ], [ -33.530273, 70.539543 ], [ -45.219727, 70.539543 ], [ -45.219727, 74.079925 ], [ -33.530273, 74.079925 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.530273, 76.890745 ], [ -33.530273, 73.958939 ], [ -45.219727, 73.958939 ], [ -45.219727, 76.890745 ], [ -33.530273, 76.890745 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.530273, 79.212538 ], [ -33.530273, 76.790701 ], [ -45.219727, 76.790701 ], [ -45.219727, 79.212538 ], [ -33.530273, 79.212538 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.530273, 81.127169 ], [ -33.530273, 79.129976 ], [ -45.219727, 79.129976 ], [ -45.219727, 81.127169 ], [ -33.530273, 81.127169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.530273, 82.704241 ], [ -33.530273, 81.059130 ], [ -45.219727, 81.059130 ], [ -45.219727, 81.771285 ], [ -45.000000, 81.736620 ], [ -44.524841, 81.660880 ], [ -45.000000, 81.772072 ], [ -45.219727, 81.822622 ], [ -45.219727, 82.704241 ], [ -33.530273, 82.704241 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.090332, 83.645406 ], [ -33.750000, 83.624396 ], [ -33.530273, 83.621040 ], [ -33.530273, 82.648222 ], [ -45.219727, 82.648222 ], [ -45.219727, 82.908864 ], [ -45.000000, 82.948087 ], [ -43.406982, 83.225420 ], [ -39.899597, 83.180235 ], [ -38.622437, 83.549234 ], [ -35.090332, 83.645406 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 13, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -22.280273, -83.956169 ], [ -22.280273, -85.070048 ], [ -33.969727, -85.070048 ], [ -33.969727, -83.956169 ], [ -22.280273, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 13, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -22.280273, -82.648222 ], [ -22.280273, -84.002262 ], [ -33.969727, -84.002262 ], [ -33.969727, -82.648222 ], [ -22.280273, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 13, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -22.280273, -81.059130 ], [ -22.280273, -82.704241 ], [ -33.969727, -82.704241 ], [ -33.969727, -81.059130 ], [ -22.280273, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 13, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -22.280273, -79.129976 ], [ -22.280273, -81.127169 ], [ -33.969727, -81.127169 ], [ -33.969727, -80.878489 ], [ -33.750000, -80.864109 ], [ -32.310791, -80.768990 ], [ -30.099792, -80.592421 ], [ -28.550720, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.687805, -79.632462 ], [ -29.687805, -79.259730 ], [ -31.626892, -79.299070 ], [ -33.681335, -79.456019 ], [ -33.969727, -79.456019 ], [ -33.969727, -79.129976 ], [ -22.280273, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 13, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -22.280273, -76.790701 ], [ -22.280273, -79.212538 ], [ -33.969727, -79.212538 ], [ -33.969727, -77.900134 ], [ -33.898315, -77.888038 ], [ -33.750000, -77.867851 ], [ -32.214661, -77.652997 ], [ -31.000671, -77.359487 ], [ -29.783936, -77.065265 ], [ -29.264832, -76.840816 ], [ -29.149475, -76.790701 ], [ -22.280273, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 13, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -22.280273, -76.077024 ], [ -22.280273, -76.890745 ], [ -29.380188, -76.890745 ], [ -29.264832, -76.840816 ], [ -28.883057, -76.673455 ], [ -27.512512, -76.496952 ], [ -26.161194, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241939 ], [ -22.500000, -76.108711 ], [ -22.458801, -76.105414 ], [ -22.280273, -76.077024 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 13, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iceland", "sov_a3": "ISL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iceland", "adm0_a3": "ISL", "geou_dif": 0, "geounit": "Iceland", "gu_a3": "ISL", "su_dif": 0, "subunit": "Iceland", "su_a3": "ISL", "brk_diff": 0, "name": "Iceland", "name_long": "Iceland", "brk_a3": "ISL", "brk_name": "Iceland", "abbrev": "Iceland", "postal": "IS", "formal_en": "Republic of Iceland", "name_sort": "Iceland", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 306694, "gdp_md_est": 12710, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IS", "iso_a3": "ISL", "iso_n3": "352", "un_a3": "352", "wb_a2": "IS", "wb_a3": "ISL", "woe_id": -99, "adm0_a3_is": "ISL", "adm0_a3_us": "ISL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.280273, 65.385147 ], [ -22.500000, 65.409160 ], [ -24.326477, 65.611818 ], [ -23.650818, 66.263540 ], [ -22.500000, 66.374956 ], [ -22.280273, 66.396961 ], [ -22.280273, 65.385147 ] ] ], [ [ [ -22.280273, 64.178876 ], [ -22.280273, 63.905980 ], [ -22.500000, 63.931338 ], [ -22.763672, 63.960291 ], [ -22.500000, 64.079404 ], [ -22.280273, 64.178876 ] ] ], [ [ [ -22.280273, 65.075603 ], [ -22.280273, 64.516552 ], [ -22.500000, 64.566139 ], [ -23.955688, 64.892093 ], [ -22.500000, 65.051285 ], [ -22.280273, 65.075603 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 13, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -25.350952, 70.685421 ], [ -25.513000, 70.612614 ], [ -26.364441, 70.226957 ], [ -23.727722, 70.184172 ], [ -22.500000, 70.135698 ], [ -22.351685, 70.130098 ], [ -22.500000, 70.081498 ], [ -25.029602, 69.259067 ], [ -27.748718, 68.470856 ], [ -30.673828, 68.125553 ], [ -31.777954, 68.121459 ], [ -32.813416, 67.735476 ], [ -33.750000, 67.028876 ], [ -33.969727, 66.860003 ], [ -33.969727, 70.685421 ], [ -25.350952, 70.685421 ] ] ], [ [ [ -22.280273, 70.685421 ], [ -22.280273, 70.607143 ], [ -22.500000, 70.583418 ], [ -23.538208, 70.471717 ], [ -23.818359, 70.612614 ], [ -23.963928, 70.685421 ], [ -22.280273, 70.685421 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 13, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.280273, 74.079925 ], [ -22.280273, 73.309725 ], [ -22.500000, 73.308936 ], [ -23.568420, 73.307358 ], [ -22.500000, 72.732297 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.184325 ], [ -22.500000, 72.227132 ], [ -24.279785, 72.598087 ], [ -24.793396, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.500000, 71.642914 ], [ -22.280273, 71.538830 ], [ -22.280273, 70.607143 ], [ -22.906494, 70.539543 ], [ -23.672791, 70.539543 ], [ -23.818359, 70.612614 ], [ -24.307251, 70.857286 ], [ -25.545959, 71.431552 ], [ -25.202637, 70.752534 ], [ -25.513000, 70.612614 ], [ -25.675049, 70.539543 ], [ -33.969727, 70.539543 ], [ -33.969727, 74.079925 ], [ -22.280273, 74.079925 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 13, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.280273, 76.890745 ], [ -22.280273, 73.958939 ], [ -33.969727, 73.958939 ], [ -33.969727, 76.890745 ], [ -22.280273, 76.890745 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 13, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.280273, 79.212538 ], [ -22.280273, 76.790701 ], [ -33.969727, 76.790701 ], [ -33.969727, 79.212538 ], [ -22.280273, 79.212538 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 13, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.280273, 81.127169 ], [ -22.280273, 79.129976 ], [ -33.969727, 79.129976 ], [ -33.969727, 81.127169 ], [ -22.280273, 81.127169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 13, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.280273, 82.704241 ], [ -22.280273, 82.429248 ], [ -22.692261, 82.341904 ], [ -26.518250, 82.297857 ], [ -31.901550, 82.200065 ], [ -31.398926, 82.021759 ], [ -27.858582, 82.131931 ], [ -24.845581, 81.786995 ], [ -22.903748, 82.093487 ], [ -22.500000, 81.921257 ], [ -22.280273, 81.826138 ], [ -22.280273, 81.627353 ], [ -22.500000, 81.512599 ], [ -23.170166, 81.152974 ], [ -22.500000, 81.252109 ], [ -22.280273, 81.284631 ], [ -22.280273, 81.059130 ], [ -33.969727, 81.059130 ], [ -33.969727, 82.704241 ], [ -22.280273, 82.704241 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 13, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.969727, 83.627750 ], [ -33.750000, 83.624396 ], [ -27.100525, 83.519852 ], [ -22.500000, 82.945388 ], [ -22.280273, 82.916997 ], [ -22.280273, 82.648222 ], [ -33.969727, 82.648222 ], [ -33.969727, 83.627750 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -11.030273, -83.956169 ], [ -11.030273, -85.070048 ], [ -22.719727, -85.070048 ], [ -22.719727, -83.956169 ], [ -11.030273, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -11.030273, -82.648222 ], [ -11.030273, -84.002262 ], [ -22.719727, -84.002262 ], [ -22.719727, -82.648222 ], [ -11.030273, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -11.030273, -81.059130 ], [ -11.030273, -82.704241 ], [ -22.719727, -82.704241 ], [ -22.719727, -81.059130 ], [ -11.030273, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -11.030273, -79.129976 ], [ -11.030273, -81.127169 ], [ -22.719727, -81.127169 ], [ -22.719727, -79.129976 ], [ -11.030273, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -11.030273, -76.790701 ], [ -11.030273, -79.212538 ], [ -22.719727, -79.212538 ], [ -22.719727, -76.790701 ], [ -11.030273, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -11.030273, -73.958939 ], [ -11.030273, -76.890745 ], [ -22.719727, -76.890745 ], [ -22.719727, -76.129796 ], [ -22.500000, -76.108711 ], [ -22.458801, -76.105414 ], [ -21.225586, -75.908835 ], [ -20.011597, -75.674236 ], [ -18.915710, -75.438577 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.792423 ], [ -15.702209, -74.497881 ], [ -15.408325, -74.106272 ], [ -15.803833, -74.019543 ], [ -16.075745, -73.958939 ], [ -11.030273, -73.958939 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -11.030273, -71.549264 ], [ -11.030273, -74.079925 ], [ -15.529175, -74.079925 ], [ -15.803833, -74.019543 ], [ -16.465759, -73.871428 ], [ -16.114197, -73.459729 ], [ -15.449524, -73.146459 ], [ -14.411316, -72.950264 ], [ -13.312683, -72.715168 ], [ -12.293701, -72.401520 ], [ -11.510925, -72.009552 ], [ -11.250000, -71.761051 ], [ -11.030273, -71.549264 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Guinea Bissau", "sov_a3": "GNB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea Bissau", "adm0_a3": "GNB", "geou_dif": 0, "geounit": "Guinea Bissau", "gu_a3": "GNB", "su_dif": 0, "subunit": "Guinea Bissau", "su_a3": "GNB", "brk_diff": 0, "name": "Guinea-Bissau", "name_long": "Guinea-Bissau", "brk_a3": "GNB", "brk_name": "Guinea-Bissau", "abbrev": "GnB.", "postal": "GW", "formal_en": "Republic of Guinea-Bissau", "name_sort": "Guinea-Bissau", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 1533964, "gdp_md_est": 904.2, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GW", "iso_a3": "GNB", "iso_n3": "624", "un_a3": "624", "wb_a2": "GW", "wb_a3": "GNB", "woe_id": -99, "adm0_a3_is": "GNB", "adm0_a3_us": "GNB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 13, "long_len": 13, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.809570, 11.393879 ], [ -15.004578, 11.178402 ], [ -15.130920, 11.040951 ], [ -15.306702, 11.178402 ], [ -15.584106, 11.393879 ], [ -14.809570, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guinea", "sov_a3": "GIN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea", "adm0_a3": "GIN", "geou_dif": 0, "geounit": "Guinea", "gu_a3": "GIN", "su_dif": 0, "subunit": "Guinea", "su_a3": "GIN", "brk_diff": 0, "name": "Guinea", "name_long": "Guinea", "brk_a3": "GIN", "brk_name": "Guinea", "abbrev": "Gin.", "postal": "GN", "formal_en": "Republic of Guinea", "name_sort": "Guinea", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 10057975, "gdp_md_est": 10600, "pop_year": -99, "lastcensus": 1996, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GN", "iso_a3": "GIN", "iso_n3": "324", "un_a3": "324", "wb_a2": "GN", "wb_a3": "GIN", "woe_id": -99, "adm0_a3_is": "GIN", "adm0_a3_us": "GIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, 11.393879 ], [ -11.030273, 9.936388 ], [ -11.118164, 10.047289 ], [ -11.917419, 10.047289 ], [ -12.150879, 9.860628 ], [ -12.428284, 9.836273 ], [ -12.598572, 9.622414 ], [ -12.713928, 9.343382 ], [ -13.246765, 8.904067 ], [ -13.686218, 9.495117 ], [ -14.076233, 9.887687 ], [ -14.331665, 10.017539 ], [ -14.581604, 10.214922 ], [ -14.694214, 10.657909 ], [ -14.839783, 10.879162 ], [ -15.130920, 11.040951 ], [ -15.004578, 11.178402 ], [ -14.809570, 11.393879 ], [ -11.030273, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Sierra Leone", "sov_a3": "SLE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sierra Leone", "adm0_a3": "SLE", "geou_dif": 0, "geounit": "Sierra Leone", "gu_a3": "SLE", "su_dif": 0, "subunit": "Sierra Leone", "su_a3": "SLE", "brk_diff": 0, "name": "Sierra Leone", "name_long": "Sierra Leone", "brk_a3": "SLE", "brk_name": "Sierra Leone", "abbrev": "S.L.", "postal": "SL", "formal_en": "Republic of Sierra Leone", "name_sort": "Sierra Leone", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 6440053, "gdp_md_est": 4285, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SL", "iso_a3": "SLE", "iso_n3": "694", "un_a3": "694", "wb_a2": "SL", "wb_a3": "SLE", "woe_id": -99, "adm0_a3_is": "SLE", "adm0_a3_us": "SLE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.118164, 10.047289 ], [ -11.030273, 9.936388 ], [ -11.030273, 7.539487 ], [ -11.148376, 7.397877 ], [ -11.200562, 7.106344 ], [ -11.250000, 7.040927 ], [ -11.439514, 6.787353 ], [ -11.708679, 6.860985 ], [ -12.428284, 7.264394 ], [ -12.950134, 7.800800 ], [ -13.125916, 8.165274 ], [ -13.246765, 8.904067 ], [ -12.713928, 9.343382 ], [ -12.598572, 9.622414 ], [ -12.428284, 9.836273 ], [ -12.150879, 9.860628 ], [ -11.917419, 10.047289 ], [ -11.118164, 10.047289 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Liberia", "sov_a3": "LBR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Liberia", "adm0_a3": "LBR", "geou_dif": 0, "geounit": "Liberia", "gu_a3": "LBR", "su_dif": 0, "subunit": "Liberia", "su_a3": "LBR", "brk_diff": 0, "name": "Liberia", "name_long": "Liberia", "brk_a3": "LBR", "brk_name": "Liberia", "abbrev": "Liberia", "postal": "LR", "formal_en": "Republic of Liberia", "name_sort": "Liberia", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 3441790, "gdp_md_est": 1526, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "LR", "iso_a3": "LBR", "iso_n3": "430", "un_a3": "430", "wb_a2": "LR", "wb_a3": "LBR", "woe_id": -99, "adm0_a3_is": "LBR", "adm0_a3_us": "LBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, 7.539487 ], [ -11.030273, 6.397189 ], [ -11.250000, 6.607316 ], [ -11.439514, 6.787353 ], [ -11.250000, 7.040927 ], [ -11.200562, 7.106344 ], [ -11.148376, 7.397877 ], [ -11.030273, 7.539487 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 7, "sovereignt": "Western Sahara", "sov_a3": "SAH", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Western Sahara", "adm0_a3": "SAH", "geou_dif": 0, "geounit": "Western Sahara", "gu_a3": "SAH", "su_dif": 0, "subunit": "Western Sahara", "su_a3": "SAH", "brk_diff": 1, "name": "W. Sahara", "name_long": "Western Sahara", "brk_a3": "B28", "brk_name": "W. Sahara", "abbrev": "W. Sah.", "postal": "WS", "formal_en": "Sahrawi Arab Democratic Republic", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Morocco", "name_sort": "Western Sahara", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 4, "mapcolor13": 4, "pop_est": -99, "gdp_md_est": -99, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "EH", "iso_a3": "ESH", "iso_n3": "732", "un_a3": "732", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "SAH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 14, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.038025, 22.146708 ], [ -13.010559, 21.943046 ], [ -12.930908, 21.327757 ], [ -16.847534, 21.335432 ], [ -17.064514, 20.999907 ], [ -17.020569, 21.422390 ], [ -14.751892, 21.501630 ], [ -14.631042, 21.861499 ], [ -14.556885, 21.943046 ], [ -14.372864, 22.146708 ], [ -13.038025, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.372864, 22.146708 ], [ -14.556885, 21.943046 ], [ -14.631042, 21.861499 ], [ -14.751892, 21.501630 ], [ -17.020569, 21.422390 ], [ -16.973877, 21.886987 ], [ -16.894226, 21.943046 ], [ -16.605835, 22.146708 ], [ -14.372864, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "name_sort": "Senegal", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.578857, 16.599346 ], [ -14.100952, 16.304323 ], [ -13.436279, 16.040534 ], [ -12.832031, 15.305380 ], [ -12.172852, 14.618136 ], [ -12.126160, 13.995372 ], [ -11.928406, 13.424352 ], [ -11.554871, 13.143678 ], [ -11.469727, 12.755553 ], [ -11.516418, 12.444623 ], [ -11.659241, 12.388294 ], [ -12.205811, 12.466078 ], [ -12.279968, 12.356100 ], [ -12.499695, 12.334636 ], [ -13.219299, 12.576010 ], [ -15.551147, 12.629618 ], [ -15.817566, 12.517028 ], [ -16.149902, 12.549202 ], [ -16.679993, 12.385611 ], [ -16.842041, 13.151702 ], [ -15.932922, 13.130304 ], [ -15.691223, 13.272026 ], [ -15.512695, 13.280046 ], [ -15.141907, 13.509826 ], [ -14.713440, 13.298757 ], [ -14.279480, 13.282719 ], [ -13.845520, 13.507155 ], [ -14.048767, 13.795406 ], [ -14.378357, 13.627303 ], [ -14.688721, 13.632641 ], [ -15.084229, 13.878079 ], [ -15.400085, 13.862080 ], [ -15.625305, 13.624633 ], [ -16.715698, 13.595269 ], [ -17.127686, 14.376155 ], [ -17.627563, 14.729730 ], [ -17.185364, 14.920900 ], [ -16.701965, 15.623037 ], [ -16.465759, 16.135539 ], [ -16.122437, 16.457159 ], [ -15.625305, 16.370215 ], [ -15.136414, 16.588817 ], [ -14.578857, 16.599346 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Gambia", "sov_a3": "GMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gambia", "adm0_a3": "GMB", "geou_dif": 0, "geounit": "Gambia", "gu_a3": "GMB", "su_dif": 0, "subunit": "Gambia", "su_a3": "GMB", "brk_diff": 0, "name": "Gambia", "name_long": "The Gambia", "brk_a3": "GMB", "brk_name": "Gambia", "abbrev": "Gambia", "postal": "GM", "formal_en": "Republic of the Gambia", "name_sort": "Gambia, The", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 1782893, "gdp_md_est": 2272, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GM", "iso_a3": "GMB", "iso_n3": "270", "un_a3": "270", "wb_a2": "GM", "wb_a3": "GMB", "woe_id": -99, "adm0_a3_is": "GMB", "adm0_a3_us": "GMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.084229, 13.878079 ], [ -14.688721, 13.632641 ], [ -14.378357, 13.627303 ], [ -14.048767, 13.795406 ], [ -13.845520, 13.507155 ], [ -14.279480, 13.282719 ], [ -14.713440, 13.298757 ], [ -15.141907, 13.509826 ], [ -15.512695, 13.280046 ], [ -15.691223, 13.272026 ], [ -15.932922, 13.130304 ], [ -16.842041, 13.151702 ], [ -16.715698, 13.595269 ], [ -15.625305, 13.624633 ], [ -15.400085, 13.862080 ], [ -15.084229, 13.878079 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Guinea Bissau", "sov_a3": "GNB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea Bissau", "adm0_a3": "GNB", "geou_dif": 0, "geounit": "Guinea Bissau", "gu_a3": "GNB", "su_dif": 0, "subunit": "Guinea Bissau", "su_a3": "GNB", "brk_diff": 0, "name": "Guinea-Bissau", "name_long": "Guinea-Bissau", "brk_a3": "GNB", "brk_name": "Guinea-Bissau", "abbrev": "GnB.", "postal": "GW", "formal_en": "Republic of Guinea-Bissau", "name_sort": "Guinea-Bissau", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 1533964, "gdp_md_est": 904.2, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GW", "iso_a3": "GNB", "iso_n3": "624", "un_a3": "624", "wb_a2": "GW", "wb_a3": "GNB", "woe_id": -99, "adm0_a3_is": "GNB", "adm0_a3_us": "GNB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 13, "long_len": 13, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.551147, 12.629618 ], [ -13.702698, 12.586732 ], [ -13.719177, 12.248760 ], [ -13.829041, 12.144061 ], [ -13.743896, 11.813588 ], [ -13.903198, 11.679135 ], [ -14.122925, 11.679135 ], [ -14.383850, 11.509631 ], [ -14.685974, 11.528470 ], [ -15.004578, 11.178402 ], [ -15.130920, 11.040951 ], [ -15.306702, 11.178402 ], [ -15.666504, 11.458491 ], [ -16.086731, 11.525779 ], [ -16.317444, 11.808211 ], [ -16.309204, 11.958723 ], [ -16.614075, 12.173595 ], [ -16.679993, 12.385611 ], [ -16.149902, 12.549202 ], [ -15.817566, 12.517028 ], [ -15.551147, 12.629618 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guinea", "sov_a3": "GIN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea", "adm0_a3": "GIN", "geou_dif": 0, "geounit": "Guinea", "gu_a3": "GIN", "su_dif": 0, "subunit": "Guinea", "su_a3": "GIN", "brk_diff": 0, "name": "Guinea", "name_long": "Guinea", "brk_a3": "GIN", "brk_name": "Guinea", "abbrev": "Gin.", "postal": "GN", "formal_en": "Republic of Guinea", "name_sort": "Guinea", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 10057975, "gdp_md_est": 10600, "pop_year": -99, "lastcensus": 1996, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GN", "iso_a3": "GIN", "iso_n3": "324", "un_a3": "324", "wb_a2": "GN", "wb_a3": "GIN", "woe_id": -99, "adm0_a3_is": "GIN", "adm0_a3_us": "GIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.702698, 12.586732 ], [ -13.219299, 12.576010 ], [ -12.499695, 12.334636 ], [ -12.279968, 12.356100 ], [ -12.205811, 12.466078 ], [ -11.659241, 12.388294 ], [ -11.516418, 12.444623 ], [ -11.458740, 12.076924 ], [ -11.299438, 12.079610 ], [ -11.250000, 12.103781 ], [ -11.038513, 12.213865 ], [ -11.030273, 12.211180 ], [ -11.030273, 10.962764 ], [ -14.993591, 10.962764 ], [ -15.130920, 11.040951 ], [ -15.004578, 11.178402 ], [ -14.685974, 11.528470 ], [ -14.383850, 11.509631 ], [ -14.122925, 11.679135 ], [ -13.903198, 11.679135 ], [ -13.743896, 11.813588 ], [ -13.829041, 12.144061 ], [ -13.719177, 12.248760 ], [ -13.702698, 12.586732 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, 22.146708 ], [ -11.030273, 15.284185 ], [ -11.250000, 15.374247 ], [ -11.351624, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.835022, 14.801439 ], [ -12.172852, 14.618136 ], [ -12.832031, 15.305380 ], [ -13.436279, 16.040534 ], [ -14.100952, 16.304323 ], [ -14.578857, 16.599346 ], [ -15.136414, 16.588817 ], [ -15.625305, 16.370215 ], [ -16.122437, 16.457159 ], [ -16.465759, 16.135539 ], [ -16.550903, 16.675662 ], [ -16.270752, 17.167034 ], [ -16.147156, 18.109308 ], [ -16.257019, 19.098458 ], [ -16.377869, 19.596019 ], [ -16.278992, 20.094627 ], [ -16.537170, 20.568510 ], [ -17.064514, 20.999907 ], [ -16.847534, 21.335432 ], [ -12.930908, 21.327757 ], [ -13.010559, 21.943046 ], [ -13.038025, 22.146708 ], [ -11.030273, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.351624, 15.411319 ], [ -11.250000, 15.374247 ], [ -11.030273, 15.284185 ], [ -11.030273, 12.211180 ], [ -11.038513, 12.213865 ], [ -11.250000, 12.103781 ], [ -11.299438, 12.079610 ], [ -11.458740, 12.076924 ], [ -11.516418, 12.444623 ], [ -11.469727, 12.755553 ], [ -11.554871, 13.143678 ], [ -11.928406, 13.424352 ], [ -12.126160, 13.995372 ], [ -12.172852, 14.618136 ], [ -11.835022, 14.801439 ], [ -11.667480, 15.390136 ], [ -11.351624, 15.411319 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 7, "sovereignt": "Western Sahara", "sov_a3": "SAH", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Western Sahara", "adm0_a3": "SAH", "geou_dif": 0, "geounit": "Western Sahara", "gu_a3": "SAH", "su_dif": 0, "subunit": "Western Sahara", "su_a3": "SAH", "brk_diff": 1, "name": "W. Sahara", "name_long": "Western Sahara", "brk_a3": "B28", "brk_name": "W. Sahara", "abbrev": "W. Sah.", "postal": "WS", "formal_en": "Sahrawi Arab Democratic Republic", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Morocco", "name_sort": "Western Sahara", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 4, "mapcolor13": 4, "pop_est": -99, "gdp_md_est": -99, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "EH", "iso_a3": "ESH", "iso_n3": "732", "un_a3": "732", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "SAH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 14, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, 26.931865 ], [ -11.030273, 25.918526 ], [ -11.250000, 25.923467 ], [ -11.969604, 25.935817 ], [ -11.939392, 23.375035 ], [ -12.875977, 23.286765 ], [ -13.120422, 22.773649 ], [ -13.010559, 21.943046 ], [ -12.983093, 21.739091 ], [ -14.672241, 21.739091 ], [ -14.631042, 21.861499 ], [ -14.556885, 21.943046 ], [ -14.221802, 22.311967 ], [ -13.892212, 23.692320 ], [ -12.502441, 24.771772 ], [ -12.032776, 26.032106 ], [ -11.719666, 26.106121 ], [ -11.392822, 26.885330 ], [ -11.250000, 26.902477 ], [ -11.030273, 26.931865 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, 28.721905 ], [ -11.030273, 26.931865 ], [ -11.250000, 26.902477 ], [ -11.392822, 26.885330 ], [ -11.719666, 26.106121 ], [ -12.032776, 26.032106 ], [ -12.502441, 24.771772 ], [ -13.892212, 23.692320 ], [ -14.221802, 22.311967 ], [ -14.556885, 21.943046 ], [ -14.631042, 21.861499 ], [ -14.672241, 21.739091 ], [ -16.990356, 21.739091 ], [ -16.973877, 21.886987 ], [ -16.894226, 21.943046 ], [ -16.589355, 22.159427 ], [ -16.262512, 22.679916 ], [ -16.328430, 23.019076 ], [ -15.985107, 23.725012 ], [ -15.427551, 24.359608 ], [ -15.089722, 24.522137 ], [ -14.826050, 25.105497 ], [ -14.801331, 25.636574 ], [ -14.441528, 26.256473 ], [ -13.774109, 26.620452 ], [ -13.142395, 27.642173 ], [ -12.620544, 28.040471 ], [ -11.689453, 28.149503 ], [ -11.030273, 28.721905 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.969604, 25.935817 ], [ -11.250000, 25.923467 ], [ -11.030273, 25.918526 ], [ -11.030273, 21.739091 ], [ -12.983093, 21.739091 ], [ -13.010559, 21.943046 ], [ -13.120422, 22.773649 ], [ -12.875977, 23.286765 ], [ -11.939392, 23.375035 ], [ -11.969604, 25.935817 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iceland", "sov_a3": "ISL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iceland", "adm0_a3": "ISL", "geou_dif": 0, "geounit": "Iceland", "gu_a3": "ISL", "su_dif": 0, "subunit": "Iceland", "su_a3": "ISL", "brk_diff": 0, "name": "Iceland", "name_long": "Iceland", "brk_a3": "ISL", "brk_name": "Iceland", "abbrev": "Iceland", "postal": "IS", "formal_en": "Republic of Iceland", "name_sort": "Iceland", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 306694, "gdp_md_est": 12710, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IS", "iso_a3": "ISL", "iso_n3": "352", "un_a3": "352", "wb_a2": "IS", "wb_a3": "ISL", "woe_id": -99, "adm0_a3_is": "ISL", "adm0_a3_us": "ISL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.169128, 66.527486 ], [ -15.853271, 66.513260 ], [ -14.510193, 66.456275 ], [ -14.740906, 65.809530 ], [ -13.612061, 65.127638 ], [ -14.911194, 64.364873 ], [ -17.795105, 63.679160 ], [ -18.657532, 63.497122 ], [ -19.973145, 63.643821 ], [ -22.500000, 63.931338 ], [ -22.719727, 63.955467 ], [ -22.719727, 63.980781 ], [ -22.500000, 64.079404 ], [ -21.780396, 64.402872 ], [ -22.500000, 64.566139 ], [ -22.719727, 64.615636 ], [ -22.719727, 65.026945 ], [ -22.500000, 65.051285 ], [ -22.186890, 65.086018 ], [ -22.228088, 65.379427 ], [ -22.500000, 65.409160 ], [ -22.719727, 65.434293 ], [ -22.719727, 66.354035 ], [ -22.500000, 66.374956 ], [ -22.137451, 66.411253 ], [ -20.577393, 65.732884 ], [ -19.058533, 66.276803 ], [ -17.800598, 65.994564 ], [ -16.210327, 66.513260 ], [ -16.169128, 66.527486 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.719727, 70.559664 ], [ -22.719727, 70.685421 ], [ -21.763916, 70.685421 ], [ -21.755676, 70.664516 ], [ -22.228088, 70.612614 ], [ -22.500000, 70.583418 ], [ -22.719727, 70.559664 ] ] ], [ [ [ -22.719727, 70.145029 ], [ -22.500000, 70.135698 ], [ -22.351685, 70.130098 ], [ -22.500000, 70.081498 ], [ -22.719727, 70.011201 ], [ -22.719727, 70.145029 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iceland", "sov_a3": "ISL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iceland", "adm0_a3": "ISL", "geou_dif": 0, "geounit": "Iceland", "gu_a3": "ISL", "su_dif": 0, "subunit": "Iceland", "su_a3": "ISL", "brk_diff": 0, "name": "Iceland", "name_long": "Iceland", "brk_a3": "ISL", "brk_name": "Iceland", "abbrev": "Iceland", "postal": "IS", "formal_en": "Republic of Iceland", "name_sort": "Iceland", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 306694, "gdp_md_est": 12710, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IS", "iso_a3": "ISL", "iso_n3": "352", "un_a3": "352", "wb_a2": "IS", "wb_a3": "ISL", "woe_id": -99, "adm0_a3_is": "ISL", "adm0_a3_us": "ISL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.169128, 66.527486 ], [ -15.853271, 66.513260 ], [ -14.510193, 66.456275 ], [ -14.521179, 66.425537 ], [ -16.482239, 66.425537 ], [ -16.210327, 66.513260 ], [ -16.169128, 66.527486 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.719727, 73.308936 ], [ -22.719727, 74.079925 ], [ -21.181641, 74.079925 ], [ -21.008606, 74.019543 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.173157, 73.309725 ], [ -22.500000, 73.308936 ], [ -22.719727, 73.308936 ] ] ], [ [ [ -22.719727, 71.745571 ], [ -22.500000, 71.642914 ], [ -22.134705, 71.469124 ], [ -21.755676, 70.664516 ], [ -22.228088, 70.612614 ], [ -22.719727, 70.559664 ], [ -22.719727, 71.745571 ] ] ], [ [ [ -22.719727, 72.852551 ], [ -22.500000, 72.732297 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.184325 ], [ -22.500000, 72.227132 ], [ -22.719727, 72.273185 ], [ -22.719727, 72.852551 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -20.316467, 76.890745 ], [ -20.577393, 76.840816 ], [ -21.681519, 76.628432 ], [ -19.835815, 76.098157 ], [ -19.599609, 75.248861 ], [ -20.670776, 75.156266 ], [ -19.374390, 74.296206 ], [ -21.596375, 74.223935 ], [ -21.008606, 74.019543 ], [ -20.838318, 73.958939 ], [ -22.719727, 73.958939 ], [ -22.719727, 76.890745 ], [ -20.316467, 76.890745 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -19.138184, 79.212538 ], [ -19.190369, 79.171335 ], [ -19.706726, 78.751731 ], [ -19.673767, 77.638894 ], [ -18.473511, 76.985717 ], [ -20.036316, 76.944832 ], [ -20.577393, 76.840816 ], [ -20.841064, 76.790701 ], [ -22.719727, 76.790701 ], [ -22.719727, 79.212538 ], [ -19.138184, 79.212538 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.180847, 81.127169 ], [ -13.378601, 81.093214 ], [ -16.287231, 80.580292 ], [ -16.850281, 80.350092 ], [ -20.047302, 80.177308 ], [ -17.731934, 80.129399 ], [ -18.901978, 79.400085 ], [ -19.190369, 79.171335 ], [ -19.242554, 79.129976 ], [ -22.719727, 79.129976 ], [ -22.719727, 81.127169 ], [ -13.180847, 81.127169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.719727, 81.219886 ], [ -22.500000, 81.252109 ], [ -20.624084, 81.524751 ], [ -15.770874, 81.912760 ], [ -12.771606, 81.719233 ], [ -12.208557, 81.291703 ], [ -13.378601, 81.093214 ], [ -13.576355, 81.059130 ], [ -22.719727, 81.059130 ], [ -22.719727, 81.219886 ] ] ], [ [ [ -22.719727, 82.341538 ], [ -22.719727, 82.704241 ], [ -20.956421, 82.704241 ], [ -21.093750, 82.676285 ], [ -22.500000, 82.382789 ], [ -22.692261, 82.341904 ], [ -22.719727, 82.341538 ] ] ], [ [ [ -22.719727, 82.015657 ], [ -22.500000, 81.921257 ], [ -22.074280, 81.734646 ], [ -22.500000, 81.512599 ], [ -22.719727, 81.395872 ], [ -22.719727, 82.015657 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.719727, 82.974003 ], [ -22.500000, 82.945388 ], [ -20.846558, 82.726878 ], [ -21.093750, 82.676285 ], [ -21.231079, 82.648222 ], [ -22.719727, 82.648222 ], [ -22.719727, 82.974003 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 0.219727, -83.956169 ], [ 0.219727, -85.070048 ], [ -11.469727, -85.070048 ], [ -11.469727, -83.956169 ], [ 0.219727, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 0.219727, -82.648222 ], [ 0.219727, -84.002262 ], [ -11.469727, -84.002262 ], [ -11.469727, -82.648222 ], [ 0.219727, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 0.219727, -81.059130 ], [ 0.219727, -82.704241 ], [ -11.469727, -82.704241 ], [ -11.469727, -81.059130 ], [ 0.219727, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 0.219727, -79.129976 ], [ 0.219727, -81.127169 ], [ -11.469727, -81.127169 ], [ -11.469727, -79.129976 ], [ 0.219727, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 0.219727, -76.790701 ], [ 0.219727, -79.212538 ], [ -11.469727, -79.212538 ], [ -11.469727, -76.790701 ], [ 0.219727, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 0.219727, -73.958939 ], [ 0.219727, -76.890745 ], [ -11.469727, -76.890745 ], [ -11.469727, -73.958939 ], [ 0.219727, -73.958939 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -6.869202, -70.931901 ], [ -5.792542, -71.029464 ], [ -5.537109, -71.401793 ], [ -4.342346, -71.461266 ], [ -3.051453, -71.284936 ], [ -1.796265, -71.167373 ], [ -0.661926, -71.225801 ], [ -0.230713, -71.637723 ], [ 0.000000, -71.568378 ], [ 0.219727, -71.502266 ], [ 0.219727, -74.079925 ], [ -11.469727, -74.079925 ], [ -11.469727, -71.971339 ], [ -11.250000, -71.761051 ], [ -11.022034, -71.539700 ], [ -10.296936, -71.264657 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.418518, -71.696469 ], [ -7.380066, -71.323674 ], [ -6.869202, -70.931901 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guinea", "sov_a3": "GIN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea", "adm0_a3": "GIN", "geou_dif": 0, "geounit": "Guinea", "gu_a3": "GIN", "su_dif": 0, "subunit": "Guinea", "su_a3": "GIN", "brk_diff": 0, "name": "Guinea", "name_long": "Guinea", "brk_a3": "GIN", "brk_name": "Guinea", "abbrev": "Gin.", "postal": "GN", "formal_en": "Republic of Guinea", "name_sort": "Guinea", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 10057975, "gdp_md_est": 10600, "pop_year": -99, "lastcensus": 1996, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GN", "iso_a3": "GIN", "iso_n3": "324", "un_a3": "324", "wb_a2": "GN", "wb_a3": "GIN", "woe_id": -99, "adm0_a3_is": "GIN", "adm0_a3_us": "GIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.377075, 11.393879 ], [ -8.550110, 11.178402 ], [ -8.583069, 11.137982 ], [ -8.621521, 10.811724 ], [ -8.410034, 10.911527 ], [ -8.283691, 10.792839 ], [ -8.335876, 10.495914 ], [ -8.031006, 10.206813 ], [ -8.231506, 10.131117 ], [ -8.311157, 9.790264 ], [ -8.080444, 9.378612 ], [ -7.833252, 8.578305 ], [ -8.204041, 8.456072 ], [ -8.300171, 8.317495 ], [ -8.223267, 8.124491 ], [ -8.280945, 7.689217 ], [ -8.440247, 7.686495 ], [ -8.723145, 7.713713 ], [ -8.926392, 7.310709 ], [ -9.209290, 7.316158 ], [ -9.404297, 7.528596 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.542998 ], [ -10.016785, 8.428904 ], [ -10.231018, 8.407168 ], [ -10.505676, 8.350106 ], [ -10.494690, 8.716789 ], [ -10.656738, 8.977323 ], [ -10.623779, 9.270201 ], [ -10.840759, 9.690106 ], [ -11.118164, 10.047289 ], [ -11.469727, 10.047289 ], [ -11.469727, 11.393879 ], [ -8.377075, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Sierra Leone", "sov_a3": "SLE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sierra Leone", "adm0_a3": "SLE", "geou_dif": 0, "geounit": "Sierra Leone", "gu_a3": "SLE", "su_dif": 0, "subunit": "Sierra Leone", "su_a3": "SLE", "brk_diff": 0, "name": "Sierra Leone", "name_long": "Sierra Leone", "brk_a3": "SLE", "brk_name": "Sierra Leone", "abbrev": "S.L.", "postal": "SL", "formal_en": "Republic of Sierra Leone", "name_sort": "Sierra Leone", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 6440053, "gdp_md_est": 4285, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SL", "iso_a3": "SLE", "iso_n3": "694", "un_a3": "694", "wb_a2": "SL", "wb_a3": "SLE", "woe_id": -99, "adm0_a3_is": "SLE", "adm0_a3_us": "SLE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.118164, 10.047289 ], [ -10.840759, 9.690106 ], [ -10.623779, 9.270201 ], [ -10.656738, 8.977323 ], [ -10.494690, 8.716789 ], [ -10.505676, 8.350106 ], [ -10.231018, 8.407168 ], [ -10.697937, 7.939556 ], [ -11.148376, 7.397877 ], [ -11.200562, 7.106344 ], [ -11.250000, 7.040927 ], [ -11.439514, 6.787353 ], [ -11.469727, 6.795535 ], [ -11.469727, 10.047289 ], [ -11.118164, 10.047289 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.199280, 11.393879 ], [ -5.199280, 11.377724 ], [ -5.325623, 11.178402 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.371660 ], [ -5.817261, 10.223031 ], [ -6.050720, 10.098670 ], [ -6.207275, 10.525619 ], [ -6.495667, 10.412183 ], [ -6.668701, 10.431092 ], [ -6.852722, 10.139228 ], [ -7.624512, 10.147339 ], [ -7.901917, 10.298706 ], [ -8.031006, 10.206813 ], [ -8.335876, 10.495914 ], [ -8.283691, 10.792839 ], [ -8.410034, 10.911527 ], [ -8.621521, 10.811724 ], [ -8.583069, 11.137982 ], [ -8.550110, 11.178402 ], [ -8.377075, 11.393879 ], [ -5.199280, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, 11.393879 ], [ 0.219727, 11.013993 ], [ 0.021973, 11.019384 ], [ 0.000000, 11.024776 ], [ -0.439453, 11.100252 ], [ -0.763550, 10.938495 ], [ -1.205750, 11.011297 ], [ -2.941589, 10.962764 ], [ -2.966309, 10.395975 ], [ -2.828979, 9.644077 ], [ -3.512878, 9.901216 ], [ -3.982544, 9.863334 ], [ -4.331360, 9.611582 ], [ -4.781799, 9.822742 ], [ -4.954834, 10.152746 ], [ -5.405273, 10.371660 ], [ -5.471191, 10.951978 ], [ -5.325623, 11.178402 ], [ -5.199280, 11.377724 ], [ -5.199280, 11.393879 ], [ 0.219727, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Liberia", "sov_a3": "LBR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Liberia", "adm0_a3": "LBR", "geou_dif": 0, "geounit": "Liberia", "gu_a3": "LBR", "su_dif": 0, "subunit": "Liberia", "su_a3": "LBR", "brk_diff": 0, "name": "Liberia", "name_long": "Liberia", "brk_a3": "LBR", "brk_name": "Liberia", "abbrev": "Liberia", "postal": "LR", "formal_en": "Republic of Liberia", "name_sort": "Liberia", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 3441790, "gdp_md_est": 1526, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "LR", "iso_a3": "LBR", "iso_n3": "430", "un_a3": "430", "wb_a2": "LR", "wb_a3": "LBR", "woe_id": -99, "adm0_a3_is": "LBR", "adm0_a3_us": "LBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.755859, 8.542998 ], [ -9.338379, 7.928675 ], [ -9.404297, 7.528596 ], [ -9.209290, 7.316158 ], [ -8.926392, 7.310709 ], [ -8.723145, 7.713713 ], [ -8.440247, 7.686495 ], [ -8.486938, 7.397877 ], [ -8.388062, 6.912794 ], [ -8.605042, 6.468151 ], [ -8.313904, 6.195168 ], [ -7.995300, 6.126900 ], [ -7.572327, 5.708914 ], [ -7.542114, 5.315236 ], [ -7.635498, 5.189423 ], [ -7.712402, 4.365582 ], [ -7.976074, 4.357366 ], [ -9.006042, 4.833733 ], [ -9.915161, 5.594118 ], [ -10.766602, 6.143286 ], [ -11.250000, 6.607316 ], [ -11.439514, 6.787353 ], [ -11.250000, 7.040927 ], [ -11.200562, 7.106344 ], [ -11.148376, 7.397877 ], [ -10.697937, 7.939556 ], [ -10.231018, 8.407168 ], [ -10.016785, 8.428904 ], [ -9.755859, 8.542998 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ivory Coast", "sov_a3": "CIV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ivory Coast", "adm0_a3": "CIV", "geou_dif": 0, "geounit": "Ivory Coast", "gu_a3": "CIV", "su_dif": 0, "subunit": "Ivory Coast", "su_a3": "CIV", "brk_diff": 0, "name": "Côte d'Ivoire", "name_long": "Côte d'Ivoire", "brk_a3": "CIV", "brk_name": "Côte d'Ivoire", "abbrev": "I.C.", "postal": "CI", "formal_en": "Republic of Ivory Coast", "formal_fr": "Republic of Cote D'Ivoire", "name_sort": "Côte d'Ivoire", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 20617068, "gdp_md_est": 33850, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CI", "iso_a3": "CIV", "iso_n3": "384", "un_a3": "384", "wb_a2": "CI", "wb_a3": "CIV", "woe_id": -99, "adm0_a3_is": "CIV", "adm0_a3_us": "CIV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 13, "long_len": 13, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.207275, 10.525619 ], [ -6.050720, 10.098670 ], [ -5.817261, 10.223031 ], [ -5.405273, 10.371660 ], [ -4.954834, 10.152746 ], [ -4.781799, 9.822742 ], [ -4.331360, 9.611582 ], [ -3.982544, 9.863334 ], [ -3.512878, 9.901216 ], [ -2.828979, 9.644077 ], [ -2.562561, 8.219646 ], [ -2.985535, 7.381534 ], [ -3.246460, 6.252507 ], [ -2.812500, 5.389070 ], [ -2.856445, 4.995186 ], [ -3.312378, 4.986977 ], [ -4.010010, 5.181217 ], [ -4.649963, 5.170276 ], [ -5.836487, 4.995186 ], [ -6.531372, 4.705091 ], [ -7.520142, 4.340934 ], [ -7.712402, 4.365582 ], [ -7.635498, 5.189423 ], [ -7.542114, 5.315236 ], [ -7.572327, 5.708914 ], [ -7.995300, 6.126900 ], [ -8.313904, 6.195168 ], [ -8.605042, 6.468151 ], [ -8.388062, 6.912794 ], [ -8.486938, 7.397877 ], [ -8.440247, 7.686495 ], [ -8.280945, 7.689217 ], [ -8.223267, 8.124491 ], [ -8.300171, 8.317495 ], [ -8.204041, 8.456072 ], [ -7.833252, 8.578305 ], [ -8.080444, 9.378612 ], [ -8.311157, 9.790264 ], [ -8.231506, 10.131117 ], [ -8.031006, 10.206813 ], [ -7.901917, 10.298706 ], [ -7.624512, 10.147339 ], [ -6.852722, 10.139228 ], [ -6.668701, 10.431092 ], [ -6.495667, 10.412183 ], [ -6.207275, 10.525619 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.100252 ], [ 0.000000, 11.024776 ], [ 0.021973, 11.019384 ], [ 0.000000, 10.919618 ], [ -0.052185, 10.709189 ], [ 0.000000, 10.647112 ], [ 0.219727, 10.374362 ], [ 0.219727, 5.615986 ], [ 0.000000, 5.533978 ], [ -0.508118, 5.345317 ], [ -1.065674, 5.000658 ], [ -1.966553, 4.710566 ], [ -2.856445, 4.995186 ], [ -2.812500, 5.389070 ], [ -3.246460, 6.252507 ], [ -2.985535, 7.381534 ], [ -2.562561, 8.219646 ], [ -2.828979, 9.644077 ], [ -2.966309, 10.395975 ], [ -2.941589, 10.962764 ], [ -1.205750, 11.011297 ], [ -0.763550, 10.938495 ], [ -0.439453, 11.100252 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.019384 ], [ 0.219727, 11.013993 ], [ 0.219727, 10.374362 ], [ 0.000000, 10.647112 ], [ -0.052185, 10.709189 ], [ 0.000000, 10.919618 ], [ 0.021973, 11.019384 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guinea", "sov_a3": "GIN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea", "adm0_a3": "GIN", "geou_dif": 0, "geounit": "Guinea", "gu_a3": "GIN", "su_dif": 0, "subunit": "Guinea", "su_a3": "GIN", "brk_diff": 0, "name": "Guinea", "name_long": "Guinea", "brk_a3": "GIN", "brk_name": "Guinea", "abbrev": "Gin.", "postal": "GN", "formal_en": "Republic of Guinea", "name_sort": "Guinea", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 10057975, "gdp_md_est": 10600, "pop_year": -99, "lastcensus": 1996, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GN", "iso_a3": "GIN", "iso_n3": "324", "un_a3": "324", "wb_a2": "GN", "wb_a3": "GIN", "woe_id": -99, "adm0_a3_is": "GIN", "adm0_a3_us": "GIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.330139, 12.334636 ], [ -9.129639, 12.310486 ], [ -8.907166, 12.090353 ], [ -8.786316, 11.813588 ], [ -8.377075, 11.393879 ], [ -8.550110, 11.178402 ], [ -8.583069, 11.137982 ], [ -8.602295, 10.962764 ], [ -11.469727, 10.962764 ], [ -11.469727, 12.162856 ], [ -11.458740, 12.076924 ], [ -11.299438, 12.079610 ], [ -11.250000, 12.103781 ], [ -11.038513, 12.213865 ], [ -10.870972, 12.178965 ], [ -10.593567, 11.926478 ], [ -10.167847, 11.845847 ], [ -9.893188, 12.060809 ], [ -9.569092, 12.195073 ], [ -9.330139, 12.334636 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.138611, 22.146708 ], [ -6.116638, 21.943046 ], [ -5.973816, 20.643066 ], [ -5.490417, 16.325411 ], [ -5.317383, 16.204125 ], [ -5.539856, 15.503972 ], [ -9.552612, 15.488092 ], [ -9.700928, 15.265638 ], [ -10.088196, 15.331870 ], [ -10.651245, 15.133113 ], [ -11.250000, 15.374247 ], [ -11.351624, 15.411319 ], [ -11.469727, 15.403376 ], [ -11.469727, 22.146708 ], [ -6.138611, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.546570, 22.146708 ], [ -0.230713, 21.943046 ], [ 0.000000, 21.795208 ], [ 0.219727, 21.652323 ], [ 0.219727, 14.928862 ], [ 0.000000, 14.928862 ], [ -0.266418, 14.926208 ], [ -0.516357, 15.117204 ], [ -1.068420, 14.973973 ], [ -2.002258, 14.559659 ], [ -2.194519, 14.248411 ], [ -2.969055, 13.800741 ], [ -3.106384, 13.541871 ], [ -3.523865, 13.338848 ], [ -4.007263, 13.475106 ], [ -4.281921, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.221252, 11.714099 ], [ -5.199280, 11.377724 ], [ -5.325623, 11.178402 ], [ -5.465698, 10.962764 ], [ -8.602295, 10.962764 ], [ -8.583069, 11.137982 ], [ -8.550110, 11.178402 ], [ -8.377075, 11.393879 ], [ -8.786316, 11.813588 ], [ -8.907166, 12.090353 ], [ -9.129639, 12.310486 ], [ -9.330139, 12.334636 ], [ -9.569092, 12.195073 ], [ -9.893188, 12.060809 ], [ -10.167847, 11.845847 ], [ -10.593567, 11.926478 ], [ -10.870972, 12.178965 ], [ -11.038513, 12.213865 ], [ -11.250000, 12.103781 ], [ -11.299438, 12.079610 ], [ -11.458740, 12.076924 ], [ -11.469727, 12.162856 ], [ -11.469727, 15.403376 ], [ -11.351624, 15.411319 ], [ -11.250000, 15.374247 ], [ -10.651245, 15.133113 ], [ -10.088196, 15.331870 ], [ -9.700928, 15.265638 ], [ -9.552612, 15.488092 ], [ -5.539856, 15.503972 ], [ -5.317383, 16.204125 ], [ -5.490417, 16.325411 ], [ -5.973816, 20.643066 ], [ -6.116638, 21.943046 ], [ -6.138611, 22.146708 ], [ -0.546570, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.516357, 15.117204 ], [ -0.266418, 14.926208 ], [ 0.000000, 14.928862 ], [ 0.219727, 14.928862 ], [ 0.219727, 11.013993 ], [ 0.021973, 11.019384 ], [ -0.439453, 11.100252 ], [ -0.711365, 10.962764 ], [ -0.920105, 10.962764 ], [ -1.205750, 11.011297 ], [ -2.938843, 10.962764 ], [ -5.465698, 10.962764 ], [ -5.325623, 11.178402 ], [ -5.199280, 11.377724 ], [ -5.221252, 11.714099 ], [ -4.427490, 12.543840 ], [ -4.281921, 13.229251 ], [ -4.007263, 13.475106 ], [ -3.523865, 13.338848 ], [ -3.106384, 13.541871 ], [ -2.969055, 13.800741 ], [ -2.194519, 14.248411 ], [ -2.002258, 14.559659 ], [ -1.068420, 14.973973 ], [ -0.516357, 15.117204 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -1.205750, 11.011297 ], [ -0.920105, 10.962764 ], [ -2.938843, 10.962764 ], [ -1.205750, 11.011297 ] ] ], [ [ [ 0.021973, 11.019384 ], [ 0.008240, 10.962764 ], [ -0.711365, 10.962764 ], [ -0.439453, 11.100252 ], [ 0.021973, 11.019384 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, 22.146708 ], [ 0.219727, 21.652323 ], [ 0.000000, 21.795208 ], [ -0.230713, 21.943046 ], [ -0.546570, 22.146708 ], [ 0.219727, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.019384 ], [ 0.219727, 11.013993 ], [ 0.219727, 10.962764 ], [ 0.008240, 10.962764 ], [ 0.021973, 11.019384 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 7, "sovereignt": "Western Sahara", "sov_a3": "SAH", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Western Sahara", "adm0_a3": "SAH", "geou_dif": 0, "geounit": "Western Sahara", "gu_a3": "SAH", "su_dif": 0, "subunit": "Western Sahara", "su_a3": "SAH", "brk_diff": 1, "name": "W. Sahara", "name_long": "Western Sahara", "brk_a3": "B28", "brk_name": "W. Sahara", "abbrev": "W. Sah.", "postal": "WS", "formal_en": "Sahrawi Arab Democratic Republic", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Morocco", "name_sort": "Western Sahara", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 4, "mapcolor13": 4, "pop_est": -99, "gdp_md_est": -99, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "EH", "iso_a3": "ESH", "iso_n3": "732", "un_a3": "732", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "SAH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 14, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.668213, 27.656771 ], [ -8.665466, 27.591066 ], [ -8.684692, 27.396155 ], [ -8.687439, 25.881466 ], [ -11.250000, 25.923467 ], [ -11.469727, 25.925937 ], [ -11.469727, 26.701453 ], [ -11.392822, 26.885330 ], [ -11.250000, 26.902477 ], [ -10.552368, 26.993066 ], [ -10.189819, 26.863281 ], [ -9.736633, 26.863281 ], [ -9.415283, 27.090918 ], [ -8.797302, 27.122702 ], [ -8.819275, 27.656771 ], [ -8.668213, 27.656771 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.276917, 32.138409 ], [ -2.617493, 32.096536 ], [ -2.793274, 31.952162 ], [ -3.070679, 31.725831 ], [ -3.650208, 31.639352 ], [ -3.691406, 30.897511 ], [ -4.861450, 30.503117 ], [ -5.243225, 30.002517 ], [ -6.061707, 29.733377 ], [ -7.061462, 29.580623 ], [ -8.676453, 28.842268 ], [ -8.668213, 27.656771 ], [ -8.819275, 27.656771 ], [ -8.797302, 27.122702 ], [ -9.415283, 27.090918 ], [ -9.736633, 26.863281 ], [ -10.189819, 26.863281 ], [ -10.552368, 26.993066 ], [ -11.250000, 26.902477 ], [ -11.392822, 26.885330 ], [ -11.469727, 26.701453 ], [ -11.469727, 28.340648 ], [ -11.250000, 28.531449 ], [ -10.901184, 28.832644 ], [ -10.401306, 29.099377 ], [ -9.566345, 29.935895 ], [ -9.816284, 31.179910 ], [ -9.472961, 31.952162 ], [ -9.437256, 32.038348 ], [ -9.409790, 32.138409 ], [ -2.276917, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.684692, 27.396155 ], [ -4.924622, 24.976099 ], [ -6.454468, 24.958670 ], [ -6.116638, 21.943046 ], [ -6.094666, 21.739091 ], [ -11.469727, 21.739091 ], [ -11.469727, 25.925937 ], [ -11.250000, 25.923467 ], [ -8.687439, 25.881466 ], [ -8.684692, 27.396155 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.924622, 24.976099 ], [ -1.551819, 22.793907 ], [ -0.230713, 21.943046 ], [ 0.085144, 21.739091 ], [ -6.094666, 21.739091 ], [ -6.116638, 21.943046 ], [ -6.454468, 24.958670 ], [ -4.924622, 24.976099 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, 32.138409 ], [ 0.219727, 21.739091 ], [ 0.085144, 21.739091 ], [ -0.230713, 21.943046 ], [ -1.551819, 22.793907 ], [ -4.924622, 24.976099 ], [ -8.684692, 27.396155 ], [ -8.665466, 27.591066 ], [ -8.676453, 28.842268 ], [ -7.061462, 29.580623 ], [ -6.061707, 29.733377 ], [ -5.243225, 30.002517 ], [ -4.861450, 30.503117 ], [ -3.691406, 30.897511 ], [ -3.650208, 31.639352 ], [ -3.070679, 31.725831 ], [ -2.793274, 31.952162 ], [ -2.617493, 32.096536 ], [ -2.276917, 32.138409 ], [ 0.219727, 32.138409 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Portugal", "sov_a3": "PRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Portugal", "adm0_a3": "PRT", "geou_dif": 0, "geounit": "Portugal", "gu_a3": "PRT", "su_dif": 1, "subunit": "Portugal", "su_a3": "PR1", "brk_diff": 0, "name": "Portugal", "name_long": "Portugal", "brk_a3": "PR1", "brk_name": "Portugal", "abbrev": "Port.", "postal": "P", "formal_en": "Portuguese Republic", "name_sort": "Portugal", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 10707924, "gdp_md_est": 208627, "pop_year": -99, "lastcensus": 2011, "gdp_year": 0, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PT", "iso_a3": "PRT", "iso_n3": "620", "un_a3": "620", "wb_a2": "PT", "wb_a3": "PRT", "woe_id": -99, "adm0_a3_is": "PRT", "adm0_a3_us": "PRT", "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": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.795044, 41.145570 ], [ -6.852722, 41.112469 ], [ -6.855469, 40.979898 ], [ -6.866455, 40.331890 ], [ -7.028503, 40.185168 ], [ -7.066956, 39.713525 ], [ -7.500916, 39.631077 ], [ -7.099915, 39.031986 ], [ -7.374573, 38.373962 ], [ -7.031250, 38.076204 ], [ -7.168579, 37.805444 ], [ -7.539368, 37.429069 ], [ -7.454224, 37.099003 ], [ -7.857971, 36.840065 ], [ -8.385315, 36.980615 ], [ -8.898926, 36.870832 ], [ -8.747864, 37.653383 ], [ -8.841248, 38.268376 ], [ -9.288940, 38.358888 ], [ -9.527893, 38.739088 ], [ -9.448242, 39.393755 ], [ -9.049988, 39.755769 ], [ -8.978577, 40.159984 ], [ -8.769836, 40.761821 ], [ -8.780823, 40.979898 ], [ -8.789062, 41.145570 ], [ -6.795044, 41.145570 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, 41.145570 ], [ 0.219727, 40.227121 ], [ 0.104370, 40.124291 ], [ 0.000000, 39.901309 ], [ -0.280151, 39.310925 ], [ 0.000000, 38.903858 ], [ 0.109863, 38.739088 ], [ 0.000000, 38.653343 ], [ -0.469666, 38.294248 ], [ -0.683899, 37.642510 ], [ -1.439209, 37.444335 ], [ -2.147827, 36.675028 ], [ -3.416748, 36.659606 ], [ -4.369812, 36.679433 ], [ -4.996033, 36.326190 ], [ -5.377808, 35.946883 ], [ -5.866699, 36.031332 ], [ -6.237488, 36.368222 ], [ -6.520386, 36.943307 ], [ -7.454224, 37.099003 ], [ -7.539368, 37.429069 ], [ -7.168579, 37.805444 ], [ -7.031250, 38.076204 ], [ -7.374573, 38.373962 ], [ -7.099915, 39.031986 ], [ -7.500916, 39.631077 ], [ -7.066956, 39.713525 ], [ -7.028503, 40.185168 ], [ -6.866455, 40.331890 ], [ -6.855469, 40.979898 ], [ -6.852722, 41.112469 ], [ -6.795044, 41.145570 ], [ 0.219727, 41.145570 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.932617, 35.762115 ], [ -5.196533, 35.755428 ], [ -4.592285, 35.330812 ], [ -3.641968, 35.400245 ], [ -2.606506, 35.180543 ], [ -2.172546, 35.169318 ], [ -1.793518, 34.529187 ], [ -1.735840, 33.920572 ], [ -1.389771, 32.865746 ], [ -1.126099, 32.653251 ], [ -1.310120, 32.263911 ], [ -2.617493, 32.096536 ], [ -2.793274, 31.952162 ], [ -3.021240, 31.765537 ], [ -9.558105, 31.765537 ], [ -9.472961, 31.952162 ], [ -9.437256, 32.038348 ], [ -9.302673, 32.565333 ], [ -8.659973, 33.240985 ], [ -7.654724, 33.699208 ], [ -6.913147, 34.111805 ], [ -6.245728, 35.146863 ], [ -5.932617, 35.762115 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, 36.117909 ], [ 0.219727, 31.765537 ], [ -3.021240, 31.765537 ], [ -2.793274, 31.952162 ], [ -2.617493, 32.096536 ], [ -1.310120, 32.263911 ], [ -1.126099, 32.653251 ], [ -1.389771, 32.865746 ], [ -1.735840, 33.920572 ], [ -1.793518, 34.529187 ], [ -2.172546, 35.169318 ], [ -1.211243, 35.715298 ], [ -0.129089, 35.889050 ], [ 0.000000, 35.973561 ], [ 0.219727, 36.117909 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, 49.066668 ], [ 0.219727, 42.609706 ], [ 0.000000, 42.664261 ], [ -1.505127, 43.034768 ], [ -1.903381, 43.423004 ], [ -1.384277, 44.024422 ], [ -1.194763, 46.016039 ], [ -2.227478, 47.064509 ], [ -2.963562, 47.570967 ], [ -4.493408, 47.954984 ], [ -4.595032, 48.685521 ], [ -3.295898, 48.902643 ], [ -1.617737, 48.645613 ], [ -1.694641, 48.922499 ], [ -1.735840, 49.066668 ], [ 0.219727, 49.066668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Portugal", "sov_a3": "PRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Portugal", "adm0_a3": "PRT", "geou_dif": 0, "geounit": "Portugal", "gu_a3": "PRT", "su_dif": 1, "subunit": "Portugal", "su_a3": "PR1", "brk_diff": 0, "name": "Portugal", "name_long": "Portugal", "brk_a3": "PR1", "brk_name": "Portugal", "abbrev": "Port.", "postal": "P", "formal_en": "Portuguese Republic", "name_sort": "Portugal", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 10707924, "gdp_md_est": 208627, "pop_year": -99, "lastcensus": 2011, "gdp_year": 0, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PT", "iso_a3": "PRT", "iso_n3": "620", "un_a3": "620", "wb_a2": "PT", "wb_a3": "PRT", "woe_id": -99, "adm0_a3_is": "PRT", "adm0_a3_us": "PRT", "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": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.264465, 42.281373 ], [ -8.014526, 41.791793 ], [ -7.424011, 41.793840 ], [ -7.253723, 41.918629 ], [ -6.668701, 41.883876 ], [ -6.391296, 41.382991 ], [ -6.852722, 41.112469 ], [ -6.855469, 40.979898 ], [ -6.858215, 40.813809 ], [ -8.772583, 40.813809 ], [ -8.780823, 40.979898 ], [ -8.791809, 41.184855 ], [ -8.992310, 41.543533 ], [ -9.036255, 41.881831 ], [ -8.673706, 42.134895 ], [ -8.264465, 42.281373 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.978821, 43.749273 ], [ -6.756592, 43.568452 ], [ -5.413513, 43.574422 ], [ -4.350586, 43.405047 ], [ -3.518372, 43.456906 ], [ -1.903381, 43.423004 ], [ -1.505127, 43.034768 ], [ 0.000000, 42.664261 ], [ 0.219727, 42.609706 ], [ 0.219727, 40.813809 ], [ -6.858215, 40.813809 ], [ -6.855469, 40.979898 ], [ -6.852722, 41.112469 ], [ -6.391296, 41.382991 ], [ -6.668701, 41.883876 ], [ -7.253723, 41.918629 ], [ -7.424011, 41.793840 ], [ -8.014526, 41.791793 ], [ -8.264465, 42.281373 ], [ -8.673706, 42.134895 ], [ -9.036255, 41.881831 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.026737 ], [ -7.978821, 43.749273 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ireland", "sov_a3": "IRL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ireland", "adm0_a3": "IRL", "geou_dif": 0, "geounit": "Ireland", "gu_a3": "IRL", "su_dif": 0, "subunit": "Ireland", "su_a3": "IRL", "brk_diff": 0, "name": "Ireland", "name_long": "Ireland", "brk_a3": "IRL", "brk_name": "Ireland", "abbrev": "Ire.", "postal": "IRL", "formal_en": "Ireland", "name_sort": "Ireland", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 4203200, "gdp_md_est": 188400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IE", "iso_a3": "IRL", "iso_n3": "372", "un_a3": "372", "wb_a2": "IE", "wb_a3": "IRL", "woe_id": -99, "adm0_a3_is": "IRL", "adm0_a3_us": "IRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.572327, 55.131790 ], [ -7.366333, 54.595937 ], [ -7.572327, 54.061000 ], [ -6.954346, 54.073894 ], [ -6.199036, 53.868725 ], [ -6.034241, 53.153359 ], [ -6.789551, 52.261434 ], [ -8.563843, 51.670852 ], [ -9.978333, 51.820500 ], [ -9.168091, 52.865814 ], [ -9.689941, 53.881679 ], [ -8.330383, 54.665889 ], [ -7.572327, 55.131790 ] ] ] } } +, +{ "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.079163, 55.899956 ], [ -1.985779, 55.776573 ], [ -1.115112, 54.626158 ], [ -0.431213, 54.465249 ], [ 0.000000, 53.672307 ], [ 0.184021, 53.325952 ], [ 0.219727, 53.278353 ], [ 0.219727, 50.769471 ], [ 0.000000, 50.771208 ], [ -0.788269, 50.776419 ], [ -2.491150, 50.501199 ], [ -2.958069, 50.698197 ], [ -3.619995, 50.229638 ], [ -4.542847, 50.341955 ], [ -5.245972, 49.960055 ], [ -5.778809, 50.161065 ], [ -4.312134, 51.210325 ], [ -3.416748, 51.426614 ], [ -4.985046, 51.594135 ], [ -5.267944, 51.991646 ], [ -4.224243, 52.301761 ], [ -4.770813, 52.840936 ], [ -4.581299, 53.496216 ], [ -3.092651, 53.404620 ], [ -2.947083, 53.985165 ], [ -3.630981, 54.615027 ], [ -4.844971, 54.791185 ], [ -5.083923, 55.062641 ], [ -4.721375, 55.509971 ], [ -5.039978, 55.776573 ], [ -5.048218, 55.784296 ], [ -5.059204, 55.776573 ], [ -5.586548, 55.311954 ], [ -5.616760, 55.776573 ], [ -5.622253, 55.899956 ], [ -2.079163, 55.899956 ] ] ], [ [ [ -6.734619, 55.174162 ], [ -5.663452, 54.556137 ], [ -6.199036, 53.868725 ], [ -6.954346, 54.073894 ], [ -7.572327, 54.061000 ], [ -7.366333, 54.595937 ], [ -7.572327, 55.131790 ], [ -6.734619, 55.174162 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.295898, 48.902643 ], [ -2.488403, 48.777913 ], [ -4.034729, 48.777913 ], [ -3.295898, 48.902643 ] ] ], [ [ [ -0.991516, 49.348388 ], [ 0.000000, 49.681847 ], [ 0.219727, 49.754654 ], [ 0.219727, 48.777913 ], [ -1.656189, 48.777913 ], [ -1.694641, 48.922499 ], [ -1.933594, 49.777717 ], [ -0.991516, 49.348388 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -3.007507, 58.635506 ], [ -4.075928, 57.554155 ], [ -3.056946, 57.690938 ], [ -1.961060, 57.685065 ], [ -2.221985, 56.871495 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.910734 ], [ -1.985779, 55.776573 ], [ -1.889648, 55.652798 ], [ -4.891663, 55.652798 ], [ -5.039978, 55.776573 ], [ -5.048218, 55.784296 ], [ -5.059204, 55.776573 ], [ -5.199280, 55.652798 ], [ -5.608521, 55.652798 ], [ -5.616760, 55.776573 ], [ -5.646973, 56.275386 ], [ -6.152344, 56.785836 ], [ -5.787048, 57.819892 ], [ -5.012512, 58.631217 ], [ -4.213257, 58.551061 ], [ -3.007507, 58.635506 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 11.469727, -83.956169 ], [ 11.469727, -85.070048 ], [ -0.219727, -85.070048 ], [ -0.219727, -83.956169 ], [ 11.469727, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 11.469727, -82.648222 ], [ 11.469727, -84.002262 ], [ -0.219727, -84.002262 ], [ -0.219727, -82.648222 ], [ 11.469727, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 11.469727, -81.059130 ], [ 11.469727, -82.704241 ], [ -0.219727, -82.704241 ], [ -0.219727, -81.059130 ], [ 11.469727, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 11.469727, -79.129976 ], [ 11.469727, -81.127169 ], [ -0.219727, -81.127169 ], [ -0.219727, -79.129976 ], [ 11.469727, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 11.469727, -76.790701 ], [ 11.469727, -79.212538 ], [ -0.219727, -79.212538 ], [ -0.219727, -76.790701 ], [ 11.469727, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 11.469727, -73.958939 ], [ 11.469727, -76.890745 ], [ -0.219727, -76.890745 ], [ -0.219727, -73.958939 ], [ 11.469727, -73.958939 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 10.340881, -70.539543 ], [ 10.458984, -70.612614 ], [ 10.816040, -70.833855 ], [ 11.250000, -70.759776 ], [ 11.469727, -70.721726 ], [ 11.469727, -74.079925 ], [ -0.219727, -74.079925 ], [ -0.219727, -71.634262 ], [ 0.000000, -71.568378 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.155334, -70.618084 ], [ 5.199280, -70.612614 ], [ 5.721130, -70.539543 ], [ 10.340881, -70.539543 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 24 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 7.742615, -69.893509 ], [ 8.486938, -70.147827 ], [ 9.522400, -70.011201 ], [ 10.247498, -70.480896 ], [ 10.458984, -70.612614 ], [ 10.574341, -70.685421 ], [ 4.869690, -70.685421 ], [ 5.155334, -70.618084 ], [ 5.199280, -70.612614 ], [ 6.273193, -70.461615 ], [ 7.135620, -70.246460 ], [ 7.742615, -69.893509 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 16 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Gabon", "sov_a3": "GAB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gabon", "adm0_a3": "GAB", "geou_dif": 0, "geounit": "Gabon", "gu_a3": "GAB", "su_dif": 0, "subunit": "Gabon", "su_a3": "GAB", "brk_diff": 0, "name": "Gabon", "name_long": "Gabon", "brk_a3": "GAB", "brk_name": "Gabon", "abbrev": "Gabon", "postal": "GA", "formal_en": "Gabonese Republic", "name_sort": "Gabon", "mapcolor7": 6, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 1514993, "gdp_md_est": 21110, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "GA", "iso_a3": "GAB", "iso_n3": "266", "un_a3": "266", "wb_a2": "GA", "wb_a3": "GAB", "woe_id": -99, "adm0_a3_is": "GAB", "adm0_a3_us": "GAB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": 3, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 0.219726 ], [ 11.469727, -3.705300 ], [ 11.250000, -3.864255 ], [ 11.093445, -3.976601 ], [ 10.063477, -2.967727 ], [ 9.404297, -2.141835 ], [ 8.797302, -1.109550 ], [ 8.827515, -0.777259 ], [ 9.047241, -0.458674 ], [ 9.201050, 0.000000 ], [ 9.272461, 0.219726 ], [ 11.469727, 0.219726 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, -3.705300 ], [ 11.469727, -4.461427 ], [ 11.250000, -4.179333 ], [ 11.093445, -3.976601 ], [ 11.250000, -3.864255 ], [ 11.469727, -3.705300 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.373291, 11.393879 ], [ 1.274414, 11.178402 ], [ 1.241455, 11.111032 ], [ 0.898132, 10.997816 ], [ 0.021973, 11.019384 ], [ 0.000000, 11.024776 ], [ -0.219727, 11.062516 ], [ -0.219727, 11.393879 ], [ 1.373291, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.219727, 11.062516 ], [ 0.000000, 11.024776 ], [ 0.021973, 11.019384 ], [ 0.000000, 10.919618 ], [ -0.052185, 10.709189 ], [ 0.000000, 10.647112 ], [ 0.365295, 10.193297 ], [ 0.365295, 9.465317 ], [ 0.458679, 8.678779 ], [ 0.711365, 8.314777 ], [ 0.488892, 7.414219 ], [ 0.568542, 6.915521 ], [ 0.834961, 6.282539 ], [ 1.057434, 5.930240 ], [ 0.000000, 5.533978 ], [ -0.219727, 5.451959 ], [ -0.219727, 11.062516 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.019384 ], [ 0.898132, 10.997816 ], [ 0.771790, 10.471607 ], [ 1.076660, 10.177077 ], [ 1.422729, 9.825448 ], [ 1.461182, 9.335252 ], [ 1.664429, 9.129216 ], [ 1.617737, 6.833716 ], [ 1.864929, 6.143286 ], [ 1.057434, 5.930240 ], [ 0.834961, 6.282539 ], [ 0.568542, 6.915521 ], [ 0.488892, 7.414219 ], [ 0.711365, 8.314777 ], [ 0.458679, 8.678779 ], [ 0.365295, 9.465317 ], [ 0.365295, 10.193297 ], [ 0.000000, 10.647112 ], [ -0.052185, 10.709189 ], [ 0.000000, 10.919618 ], [ 0.021973, 11.019384 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Benin", "sov_a3": "BEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Benin", "adm0_a3": "BEN", "geou_dif": 0, "geounit": "Benin", "gu_a3": "BEN", "su_dif": 0, "subunit": "Benin", "su_a3": "BEN", "brk_diff": 0, "name": "Benin", "name_long": "Benin", "brk_a3": "BEN", "brk_name": "Benin", "abbrev": "Benin", "postal": "BJ", "formal_en": "Republic of Benin", "name_sort": "Benin", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 8791832, "gdp_md_est": 12830, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BJ", "iso_a3": "BEN", "iso_n3": "204", "un_a3": "204", "wb_a2": "BJ", "wb_a3": "BEN", "woe_id": -99, "adm0_a3_is": "BEN", "adm0_a3_us": "BEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.578796, 11.393879 ], [ 3.570557, 11.329253 ], [ 3.628235, 11.178402 ], [ 3.795776, 10.736175 ], [ 3.598022, 10.333834 ], [ 3.705139, 10.063516 ], [ 3.218994, 9.446352 ], [ 2.911377, 9.140063 ], [ 2.721863, 8.507687 ], [ 2.746582, 7.871544 ], [ 2.691650, 6.260697 ], [ 1.864929, 6.143286 ], [ 1.617737, 6.833716 ], [ 1.664429, 9.129216 ], [ 1.461182, 9.335252 ], [ 1.422729, 9.825448 ], [ 1.076660, 10.177077 ], [ 0.771790, 10.471607 ], [ 0.898132, 10.997816 ], [ 1.241455, 11.111032 ], [ 1.274414, 11.178402 ], [ 1.373291, 11.393879 ], [ 3.578796, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 11.393879 ], [ 11.469727, 6.847351 ], [ 11.250000, 6.738259 ], [ 11.057739, 6.645511 ], [ 10.494690, 7.057282 ], [ 10.115662, 7.040927 ], [ 9.522400, 6.454505 ], [ 9.231262, 6.446318 ], [ 8.756104, 5.482034 ], [ 8.497925, 4.773521 ], [ 7.459717, 4.412137 ], [ 7.080688, 4.466904 ], [ 6.696167, 4.242334 ], [ 5.896912, 4.264246 ], [ 5.361328, 4.888467 ], [ 5.031738, 5.613252 ], [ 4.323120, 6.271618 ], [ 3.573303, 6.260697 ], [ 2.691650, 6.260697 ], [ 2.746582, 7.871544 ], [ 2.721863, 8.507687 ], [ 2.911377, 9.140063 ], [ 3.218994, 9.446352 ], [ 3.705139, 10.063516 ], [ 3.598022, 10.333834 ], [ 3.795776, 10.736175 ], [ 3.628235, 11.178402 ], [ 3.570557, 11.329253 ], [ 3.578796, 11.393879 ], [ 11.469727, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Equatorial Guinea", "sov_a3": "GNQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Equatorial Guinea", "adm0_a3": "GNQ", "geou_dif": 0, "geounit": "Equatorial Guinea", "gu_a3": "GNQ", "su_dif": 0, "subunit": "Equatorial Guinea", "su_a3": "GNQ", "brk_diff": 0, "name": "Eq. Guinea", "name_long": "Equatorial Guinea", "brk_a3": "GNQ", "brk_name": "Eq. Guinea", "abbrev": "Eq. G.", "postal": "GQ", "formal_en": "Republic of Equatorial Guinea", "name_sort": "Equatorial Guinea", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 650702, "gdp_md_est": 14060, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "7. Least developed region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GQ", "iso_a3": "GNQ", "iso_n3": "226", "un_a3": "226", "wb_a2": "GQ", "wb_a3": "GNQ", "woe_id": -99, "adm0_a3_is": "GNQ", "adm0_a3_us": "GNQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 17, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.648743, 2.284551 ], [ 11.250000, 2.262595 ], [ 11.274719, 2.262595 ], [ 11.282959, 1.060120 ], [ 11.250000, 1.060120 ], [ 9.830017, 1.068358 ], [ 9.492188, 1.010690 ], [ 9.305420, 1.161725 ], [ 9.648743, 2.284551 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.494690, 7.057282 ], [ 11.057739, 6.645511 ], [ 11.250000, 6.738259 ], [ 11.469727, 6.847351 ], [ 11.469727, 2.290039 ], [ 11.274719, 2.262595 ], [ 11.250000, 2.262595 ], [ 9.648743, 2.284551 ], [ 9.794312, 3.074695 ], [ 9.404297, 3.735449 ], [ 8.945618, 3.905359 ], [ 8.742371, 4.354627 ], [ 8.486938, 4.497024 ], [ 8.497925, 4.773521 ], [ 8.756104, 5.482034 ], [ 9.231262, 6.446318 ], [ 9.522400, 6.454505 ], [ 10.115662, 7.040927 ], [ 10.494690, 7.057282 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Gabon", "sov_a3": "GAB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gabon", "adm0_a3": "GAB", "geou_dif": 0, "geounit": "Gabon", "gu_a3": "GAB", "su_dif": 0, "subunit": "Gabon", "su_a3": "GAB", "brk_diff": 0, "name": "Gabon", "name_long": "Gabon", "brk_a3": "GAB", "brk_name": "Gabon", "abbrev": "Gabon", "postal": "GA", "formal_en": "Gabonese Republic", "name_sort": "Gabon", "mapcolor7": 6, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 1514993, "gdp_md_est": 21110, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "GA", "iso_a3": "GAB", "iso_n3": "266", "un_a3": "266", "wb_a2": "GA", "wb_a3": "GAB", "woe_id": -99, "adm0_a3_is": "GAB", "adm0_a3_us": "GAB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": 3, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 2.290039 ], [ 11.469727, -0.219726 ], [ 9.126892, -0.219726 ], [ 9.201050, 0.000000 ], [ 9.288940, 0.269164 ], [ 9.492188, 1.010690 ], [ 9.830017, 1.068358 ], [ 11.250000, 1.060120 ], [ 11.282959, 1.060120 ], [ 11.274719, 2.262595 ], [ 11.469727, 2.290039 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.219727, 21.937950 ], [ 0.000000, 21.795208 ], [ 1.820984, 20.612220 ], [ 2.059937, 20.143628 ], [ 2.683411, 19.857144 ], [ 3.144836, 19.694314 ], [ 3.155823, 19.059522 ], [ 4.265442, 19.155547 ], [ 4.268188, 16.854491 ], [ 3.721619, 16.185662 ], [ 3.636475, 15.570128 ], [ 2.749329, 15.411319 ], [ 1.384277, 15.323923 ], [ 1.013489, 14.968667 ], [ 0.373535, 14.931516 ], [ 0.000000, 14.928862 ], [ -0.219727, 14.926208 ], [ -0.219727, 21.937950 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.373535, 14.931516 ], [ 0.293884, 14.445319 ], [ 0.428467, 13.990041 ], [ 0.991516, 13.336175 ], [ 1.021729, 12.851971 ], [ 2.175293, 12.626938 ], [ 2.153320, 11.942601 ], [ 1.933594, 11.641476 ], [ 1.444702, 11.549998 ], [ 1.274414, 11.178402 ], [ 1.241455, 11.111032 ], [ 0.898132, 10.997816 ], [ 0.021973, 11.019384 ], [ -0.219727, 11.062516 ], [ -0.219727, 14.926208 ], [ 0.000000, 14.928862 ], [ 0.373535, 14.931516 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.219727, 11.062516 ], [ 0.021973, 11.019384 ], [ 0.008240, 10.962764 ], [ -0.219727, 10.962764 ], [ -0.219727, 11.062516 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.610291, 22.146708 ], [ 9.244995, 21.943046 ], [ 8.572083, 21.568056 ], [ 5.677185, 19.603782 ], [ 4.265442, 19.155547 ], [ 3.155823, 19.059522 ], [ 3.144836, 19.694314 ], [ 2.683411, 19.857144 ], [ 2.059937, 20.143628 ], [ 1.820984, 20.612220 ], [ 0.000000, 21.795208 ], [ -0.219727, 21.937950 ], [ -0.219727, 22.146708 ], [ 9.610291, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 22.146708 ], [ 11.469727, 13.336175 ], [ 11.250000, 13.360227 ], [ 10.989075, 13.389620 ], [ 10.700684, 13.247966 ], [ 10.112915, 13.277373 ], [ 9.522400, 12.851971 ], [ 9.014282, 12.827870 ], [ 7.803040, 13.344193 ], [ 7.330627, 13.098205 ], [ 6.819763, 13.116930 ], [ 6.443481, 13.493802 ], [ 5.440979, 13.867414 ], [ 4.367065, 13.750057 ], [ 4.106140, 13.533860 ], [ 3.966064, 12.956383 ], [ 3.680420, 12.554564 ], [ 3.609009, 11.660306 ], [ 2.848206, 12.238023 ], [ 2.488403, 12.235339 ], [ 2.153320, 11.942601 ], [ 2.175293, 12.626938 ], [ 1.021729, 12.851971 ], [ 0.991516, 13.336175 ], [ 0.428467, 13.990041 ], [ 0.293884, 14.445319 ], [ 0.373535, 14.931516 ], [ 1.013489, 14.968667 ], [ 1.384277, 15.323923 ], [ 2.749329, 15.411319 ], [ 3.636475, 15.570128 ], [ 3.721619, 16.185662 ], [ 4.268188, 16.854491 ], [ 4.265442, 19.155547 ], [ 5.677185, 19.603782 ], [ 8.572083, 21.568056 ], [ 9.244995, 21.943046 ], [ 9.610291, 22.146708 ], [ 11.469727, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.019384 ], [ 0.898132, 10.997816 ], [ 0.889893, 10.962764 ], [ 0.008240, 10.962764 ], [ 0.021973, 11.019384 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Benin", "sov_a3": "BEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Benin", "adm0_a3": "BEN", "geou_dif": 0, "geounit": "Benin", "gu_a3": "BEN", "su_dif": 0, "subunit": "Benin", "su_a3": "BEN", "brk_diff": 0, "name": "Benin", "name_long": "Benin", "brk_a3": "BEN", "brk_name": "Benin", "abbrev": "Benin", "postal": "BJ", "formal_en": "Republic of Benin", "name_sort": "Benin", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 8791832, "gdp_md_est": 12830, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BJ", "iso_a3": "BEN", "iso_n3": "204", "un_a3": "204", "wb_a2": "BJ", "wb_a3": "BEN", "woe_id": -99, "adm0_a3_is": "BEN", "adm0_a3_us": "BEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.848206, 12.238023 ], [ 3.609009, 11.660306 ], [ 3.570557, 11.329253 ], [ 3.710632, 10.962764 ], [ 0.889893, 10.962764 ], [ 0.898132, 10.997816 ], [ 1.241455, 11.111032 ], [ 1.274414, 11.178402 ], [ 1.444702, 11.549998 ], [ 1.933594, 11.641476 ], [ 2.153320, 11.942601 ], [ 2.488403, 12.235339 ], [ 2.848206, 12.238023 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.440979, 13.867414 ], [ 6.443481, 13.493802 ], [ 6.819763, 13.116930 ], [ 7.330627, 13.098205 ], [ 7.803040, 13.344193 ], [ 9.014282, 12.827870 ], [ 9.522400, 12.851971 ], [ 10.112915, 13.277373 ], [ 10.700684, 13.247966 ], [ 10.989075, 13.389620 ], [ 11.250000, 13.360227 ], [ 11.469727, 13.336175 ], [ 11.469727, 10.962764 ], [ 3.710632, 10.962764 ], [ 3.570557, 11.329253 ], [ 3.609009, 11.660306 ], [ 3.680420, 12.554564 ], [ 3.966064, 12.956383 ], [ 4.106140, 13.533860 ], [ 4.367065, 13.750057 ], [ 5.440979, 13.867414 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.219727, 21.937950 ], [ 0.085144, 21.739091 ], [ -0.219727, 21.739091 ], [ -0.219727, 21.937950 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Tunisia", "sov_a3": "TUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tunisia", "adm0_a3": "TUN", "geou_dif": 0, "geounit": "Tunisia", "gu_a3": "TUN", "su_dif": 0, "subunit": "Tunisia", "su_a3": "TUN", "brk_diff": 0, "name": "Tunisia", "name_long": "Tunisia", "brk_a3": "TUN", "brk_name": "Tunisia", "abbrev": "Tun.", "postal": "TN", "formal_en": "Republic of Tunisia", "name_sort": "Tunisia", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 10486339, "gdp_md_est": 81710, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TN", "iso_a3": "TUN", "iso_n3": "788", "un_a3": "788", "wb_a2": "TN", "wb_a3": "TUN", "woe_id": -99, "adm0_a3_is": "TUN", "adm0_a3_us": "TUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.038513, 32.138409 ], [ 10.942383, 32.082575 ], [ 10.818787, 31.952162 ], [ 10.634766, 31.763202 ], [ 9.948120, 31.377089 ], [ 10.055237, 30.963479 ], [ 9.967346, 30.540973 ], [ 9.481201, 30.308874 ], [ 9.091187, 31.952162 ], [ 9.055481, 32.103516 ], [ 9.000549, 32.138409 ], [ 11.038513, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.000549, 32.138409 ], [ 9.055481, 32.103516 ], [ 9.091187, 31.952162 ], [ 9.481201, 30.308874 ], [ 9.805298, 29.425245 ], [ 9.857483, 28.960089 ], [ 9.681702, 28.144660 ], [ 9.755859, 27.688392 ], [ 9.626770, 27.142257 ], [ 9.714661, 26.512362 ], [ 9.319153, 26.096255 ], [ 9.909668, 25.366364 ], [ 9.948120, 24.938748 ], [ 10.302429, 24.379623 ], [ 10.769348, 24.564610 ], [ 11.250000, 24.282020 ], [ 11.469727, 24.151766 ], [ 11.469727, 23.180764 ], [ 11.250000, 23.059516 ], [ 9.244995, 21.943046 ], [ 8.882446, 21.739091 ], [ 0.085144, 21.739091 ], [ -0.219727, 21.937950 ], [ -0.219727, 32.138409 ], [ 9.000549, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 32.138409 ], [ 11.469727, 24.151766 ], [ 11.250000, 24.282020 ], [ 10.769348, 24.564610 ], [ 10.302429, 24.379623 ], [ 9.948120, 24.938748 ], [ 9.909668, 25.366364 ], [ 9.319153, 26.096255 ], [ 9.714661, 26.512362 ], [ 9.626770, 27.142257 ], [ 9.755859, 27.688392 ], [ 9.681702, 28.144660 ], [ 9.857483, 28.960089 ], [ 9.805298, 29.425245 ], [ 9.481201, 30.308874 ], [ 9.967346, 30.540973 ], [ 10.055237, 30.963479 ], [ 9.948120, 31.377089 ], [ 10.634766, 31.763202 ], [ 10.818787, 31.952162 ], [ 10.942383, 32.082575 ], [ 11.038513, 32.138409 ], [ 11.469727, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 23.180764 ], [ 11.469727, 21.739091 ], [ 8.882446, 21.739091 ], [ 9.244995, 21.943046 ], [ 11.250000, 23.059516 ], [ 11.469727, 23.180764 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.219727, 39.436193 ], [ -0.219727, 41.145570 ], [ 1.601257, 41.145570 ], [ 0.810242, 41.015138 ], [ 0.799255, 40.979898 ], [ 0.719604, 40.678555 ], [ 0.104370, 40.124291 ], [ 0.000000, 39.901309 ], [ -0.219727, 39.436193 ] ] ], [ [ [ -0.219727, 39.225870 ], [ 0.000000, 38.903858 ], [ 0.109863, 38.739088 ], [ 0.000000, 38.653343 ], [ -0.219727, 38.483695 ], [ -0.219727, 39.225870 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.264221, 41.145570 ], [ 9.404297, 40.979898 ], [ 9.808044, 40.501269 ], [ 9.667969, 39.179046 ], [ 9.214783, 39.240763 ], [ 8.805542, 38.908133 ], [ 8.426514, 39.172659 ], [ 8.388062, 40.380028 ], [ 8.157349, 40.950863 ], [ 8.709412, 40.901058 ], [ 8.838501, 40.979898 ], [ 9.104919, 41.145570 ], [ 9.264221, 41.145570 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Tunisia", "sov_a3": "TUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tunisia", "adm0_a3": "TUN", "geou_dif": 0, "geounit": "Tunisia", "gu_a3": "TUN", "su_dif": 0, "subunit": "Tunisia", "su_a3": "TUN", "brk_diff": 0, "name": "Tunisia", "name_long": "Tunisia", "brk_a3": "TUN", "brk_name": "Tunisia", "abbrev": "Tun.", "postal": "TN", "formal_en": "Republic of Tunisia", "name_sort": "Tunisia", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 10486339, "gdp_md_est": 81710, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TN", "iso_a3": "TUN", "iso_n3": "788", "un_a3": "788", "wb_a2": "TN", "wb_a3": "TUN", "woe_id": -99, "adm0_a3_is": "TUN", "adm0_a3_us": "TUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.508667, 37.350509 ], [ 10.209045, 37.230328 ], [ 10.178833, 36.725677 ], [ 11.027527, 37.092431 ], [ 11.098938, 36.901587 ], [ 10.599060, 36.410231 ], [ 10.590820, 35.949106 ], [ 10.936890, 35.699686 ], [ 10.807800, 34.834096 ], [ 10.148621, 34.332096 ], [ 10.338135, 33.785996 ], [ 10.854492, 33.770015 ], [ 11.107178, 33.293804 ], [ 11.250000, 33.236390 ], [ 11.469727, 33.146750 ], [ 11.469727, 32.879587 ], [ 11.431274, 32.370683 ], [ 11.250000, 32.263911 ], [ 10.942383, 32.082575 ], [ 10.818787, 31.952162 ], [ 10.640259, 31.765537 ], [ 9.135132, 31.765537 ], [ 9.055481, 32.103516 ], [ 8.437500, 32.507446 ], [ 8.429260, 32.750323 ], [ 7.610779, 33.344296 ], [ 7.522888, 34.098159 ], [ 8.140869, 34.655804 ], [ 8.374329, 35.480802 ], [ 8.217773, 36.434542 ], [ 8.418274, 36.947697 ], [ 9.508667, 37.350509 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.327881, 37.118716 ], [ 7.734375, 36.886211 ], [ 8.418274, 36.947697 ], [ 8.217773, 36.434542 ], [ 8.374329, 35.480802 ], [ 8.140869, 34.655804 ], [ 7.522888, 34.098159 ], [ 7.610779, 33.344296 ], [ 8.429260, 32.750323 ], [ 8.437500, 32.507446 ], [ 9.055481, 32.103516 ], [ 9.135132, 31.765537 ], [ -0.219727, 31.765537 ], [ -0.219727, 35.875698 ], [ -0.129089, 35.889050 ], [ 0.000000, 35.973561 ], [ 0.502625, 36.301845 ], [ 1.466675, 36.606709 ], [ 3.161316, 36.785092 ], [ 4.814758, 36.866438 ], [ 5.317383, 36.716871 ], [ 6.259460, 37.112146 ], [ 7.327881, 37.118716 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 32.879587 ], [ 11.469727, 31.765537 ], [ 10.640259, 31.765537 ], [ 10.818787, 31.952162 ], [ 10.942383, 32.082575 ], [ 11.250000, 32.263911 ], [ 11.431274, 32.370683 ], [ 11.469727, 32.879587 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.387817, 43.010673 ], [ 9.558105, 42.153223 ], [ 9.228516, 41.380930 ], [ 8.775330, 41.584634 ], [ 8.541870, 42.256984 ], [ 8.745117, 42.629917 ], [ 9.387817, 43.010673 ] ] ], [ [ [ 7.715149, 49.066668 ], [ 8.096924, 49.018058 ], [ 8.028259, 48.922499 ], [ 7.591553, 48.334343 ], [ 7.465210, 47.620975 ], [ 7.190552, 47.450380 ], [ 6.734619, 47.543164 ], [ 6.767578, 47.288545 ], [ 6.036987, 46.726683 ], [ 6.020508, 46.274834 ], [ 6.498413, 46.430285 ], [ 6.841736, 45.991237 ], [ 6.800537, 45.710015 ], [ 7.094421, 45.334771 ], [ 6.748352, 45.028892 ], [ 7.006531, 44.255036 ], [ 7.547607, 44.128999 ], [ 7.434998, 43.695680 ], [ 6.528625, 43.129052 ], [ 4.556580, 43.401056 ], [ 3.098145, 43.076913 ], [ 2.985535, 42.474123 ], [ 1.826477, 42.344335 ], [ 0.700378, 42.797416 ], [ 0.337830, 42.581400 ], [ 0.000000, 42.664261 ], [ -0.219727, 42.718768 ], [ -0.219727, 49.066668 ], [ 7.715149, 49.066668 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.700378, 42.797416 ], [ 1.826477, 42.344335 ], [ 2.985535, 42.474123 ], [ 3.037720, 41.894100 ], [ 2.090149, 41.226183 ], [ 0.810242, 41.015138 ], [ 0.799255, 40.979898 ], [ 0.755310, 40.813809 ], [ -0.219727, 40.813809 ], [ -0.219727, 42.718768 ], [ 0.000000, 42.664261 ], [ 0.337830, 42.581400 ], [ 0.700378, 42.797416 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 49.066668 ], [ 11.469727, 47.535747 ], [ 11.425781, 47.524620 ], [ 11.250000, 47.533893 ], [ 10.544128, 47.567261 ], [ 10.401306, 47.303447 ], [ 9.895935, 47.580231 ], [ 9.593811, 47.526475 ], [ 8.519897, 47.831596 ], [ 8.316650, 47.615421 ], [ 7.465210, 47.620975 ], [ 7.591553, 48.334343 ], [ 8.028259, 48.922499 ], [ 8.096924, 49.018058 ], [ 7.715149, 49.066668 ], [ 11.469727, 49.066668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Switzerland", "sov_a3": "CHE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Switzerland", "adm0_a3": "CHE", "geou_dif": 0, "geounit": "Switzerland", "gu_a3": "CHE", "su_dif": 0, "subunit": "Switzerland", "su_a3": "CHE", "brk_diff": 0, "name": "Switzerland", "name_long": "Switzerland", "brk_a3": "CHE", "brk_name": "Switzerland", "abbrev": "Switz.", "postal": "CH", "formal_en": "Swiss Confederation", "name_sort": "Switzerland", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 7604467, "gdp_md_est": 316700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CH", "iso_a3": "CHE", "iso_n3": "756", "un_a3": "756", "wb_a2": "CH", "wb_a3": "CHE", "woe_id": -99, "adm0_a3_is": "CHE", "adm0_a3_us": "CHE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 11, "long_len": 11, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.519897, 47.831596 ], [ 9.593811, 47.526475 ], [ 9.632263, 47.348128 ], [ 9.478455, 47.103784 ], [ 9.931641, 46.922131 ], [ 10.442505, 46.893985 ], [ 10.362854, 46.485156 ], [ 9.920654, 46.316584 ], [ 9.181824, 46.441642 ], [ 8.964844, 46.037016 ], [ 8.489685, 46.006501 ], [ 8.313904, 46.164614 ], [ 7.753601, 45.824971 ], [ 7.272949, 45.777102 ], [ 6.841736, 45.991237 ], [ 6.498413, 46.430285 ], [ 6.020508, 46.274834 ], [ 6.036987, 46.726683 ], [ 6.767578, 47.288545 ], [ 6.734619, 47.543164 ], [ 7.190552, 47.450380 ], [ 7.465210, 47.620975 ], [ 8.316650, 47.615421 ], [ 8.519897, 47.831596 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Austria", "sov_a3": "AUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Austria", "adm0_a3": "AUT", "geou_dif": 0, "geounit": "Austria", "gu_a3": "AUT", "su_dif": 0, "subunit": "Austria", "su_a3": "AUT", "brk_diff": 0, "name": "Austria", "name_long": "Austria", "brk_a3": "AUT", "brk_name": "Austria", "abbrev": "Aust.", "postal": "A", "formal_en": "Republic of Austria", "name_sort": "Austria", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 8210281, "gdp_md_est": 329500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AT", "iso_a3": "AUT", "iso_n3": "040", "un_a3": "040", "wb_a2": "AT", "wb_a3": "AUT", "woe_id": -99, "adm0_a3_is": "AUT", "adm0_a3_us": "AUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.895935, 47.580231 ], [ 10.401306, 47.303447 ], [ 10.544128, 47.567261 ], [ 11.250000, 47.533893 ], [ 11.425781, 47.524620 ], [ 11.469727, 47.535747 ], [ 11.469727, 46.997114 ], [ 11.250000, 46.957761 ], [ 11.162109, 46.942762 ], [ 11.046753, 46.753035 ], [ 10.442505, 46.893985 ], [ 9.931641, 46.922131 ], [ 9.478455, 47.103784 ], [ 9.632263, 47.348128 ], [ 9.593811, 47.526475 ], [ 9.895935, 47.580231 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209290, 41.211722 ], [ 9.404297, 40.979898 ], [ 9.544373, 40.813809 ], [ 8.212280, 40.813809 ], [ 8.157349, 40.950863 ], [ 8.709412, 40.901058 ], [ 8.838501, 40.979898 ], [ 9.209290, 41.211722 ] ] ], [ [ [ 11.469727, 46.997114 ], [ 11.469727, 42.159332 ], [ 11.250000, 42.315909 ], [ 11.189575, 42.356514 ], [ 10.511169, 42.932296 ], [ 10.198059, 43.921637 ], [ 9.700928, 44.038244 ], [ 8.887939, 44.367060 ], [ 8.426514, 44.231425 ], [ 7.849731, 43.769110 ], [ 7.434998, 43.695680 ], [ 7.547607, 44.128999 ], [ 7.006531, 44.255036 ], [ 6.748352, 45.028892 ], [ 7.094421, 45.334771 ], [ 6.800537, 45.710015 ], [ 6.841736, 45.991237 ], [ 7.272949, 45.777102 ], [ 7.753601, 45.824971 ], [ 8.313904, 46.164614 ], [ 8.489685, 46.006501 ], [ 8.964844, 46.037016 ], [ 9.181824, 46.441642 ], [ 9.920654, 46.316584 ], [ 10.362854, 46.485156 ], [ 10.442505, 46.893985 ], [ 11.046753, 46.753035 ], [ 11.162109, 46.942762 ], [ 11.250000, 46.957761 ], [ 11.469727, 46.997114 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -0.219727, 54.078729 ], [ 0.000000, 53.672307 ], [ 0.184021, 53.325952 ], [ 0.469666, 52.930430 ], [ 1.680908, 52.739618 ], [ 1.557312, 52.101444 ], [ 1.049194, 51.806917 ], [ 1.447449, 51.291124 ], [ 0.549316, 50.765997 ], [ 0.000000, 50.771208 ], [ -0.219727, 50.771208 ], [ -0.219727, 54.078729 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.513123, 51.150063 ], [ 2.655945, 50.797255 ], [ 3.122864, 50.781629 ], [ 3.587036, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.798279, 49.986552 ], [ 5.671692, 49.530557 ], [ 5.896912, 49.443129 ], [ 6.185303, 49.464554 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.018058 ], [ 8.028259, 48.922499 ], [ 7.921143, 48.777913 ], [ -0.219727, 48.777913 ], [ -0.219727, 49.607150 ], [ 0.000000, 49.681847 ], [ 1.337585, 50.127622 ], [ 1.636963, 50.948045 ], [ 2.513123, 51.150063 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 10.077209, 55.899956 ], [ 9.953613, 55.776573 ], [ 9.648743, 55.471070 ], [ 9.920654, 54.983918 ], [ 9.280701, 54.832336 ], [ 8.525391, 54.963425 ], [ 8.118896, 55.517747 ], [ 8.110657, 55.776573 ], [ 8.107910, 55.899956 ], [ 10.077209, 55.899956 ] ] ], [ [ [ 11.469727, 55.899956 ], [ 11.469727, 55.136500 ], [ 11.250000, 55.254077 ], [ 11.041260, 55.365064 ], [ 10.903931, 55.776573 ], [ 10.901184, 55.781207 ], [ 11.431274, 55.899956 ], [ 11.469727, 55.899956 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Netherlands", "sov_a3": "NL1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Netherlands", "adm0_a3": "NLD", "geou_dif": 0, "geounit": "Netherlands", "gu_a3": "NLD", "su_dif": 0, "subunit": "Netherlands", "su_a3": "NLD", "brk_diff": 0, "name": "Netherlands", "name_long": "Netherlands", "brk_a3": "NLD", "brk_name": "Netherlands", "abbrev": "Neth.", "postal": "NL", "formal_en": "Kingdom of the Netherlands", "name_sort": "Netherlands", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 16715999, "gdp_md_est": 672000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NL", "iso_a3": "NLD", "iso_n3": "528", "un_a3": "528", "wb_a2": "NL", "wb_a3": "NLD", "woe_id": -99, "adm0_a3_is": "NLD", "adm0_a3_us": "NLD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.072693, 53.510918 ], [ 6.904907, 53.483143 ], [ 7.091675, 53.145123 ], [ 6.841736, 52.229482 ], [ 6.589050, 51.852746 ], [ 5.987549, 51.852746 ], [ 6.155090, 50.804199 ], [ 5.605774, 51.037940 ], [ 4.971313, 51.476251 ], [ 4.045715, 51.268789 ], [ 3.312378, 51.346054 ], [ 3.828735, 51.621427 ], [ 4.704895, 53.092375 ], [ 6.072693, 53.510918 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Belgium", "sov_a3": "BEL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belgium", "adm0_a3": "BEL", "geou_dif": 0, "geounit": "Belgium", "gu_a3": "BEL", "su_dif": 0, "subunit": "Belgium", "su_a3": "BEL", "brk_diff": 0, "name": "Belgium", "name_long": "Belgium", "brk_a3": "BEL", "brk_name": "Belgium", "abbrev": "Belg.", "postal": "B", "formal_en": "Kingdom of Belgium", "name_sort": "Belgium", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 10414336, "gdp_md_est": 389300, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "BE", "iso_a3": "BEL", "iso_n3": "056", "un_a3": "056", "wb_a2": "BE", "wb_a3": "BEL", "woe_id": -99, "adm0_a3_is": "BEL", "adm0_a3_us": "BEL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.971313, 51.476251 ], [ 5.605774, 51.037940 ], [ 6.155090, 50.804199 ], [ 6.042480, 50.129382 ], [ 5.781555, 50.090631 ], [ 5.671692, 49.530557 ], [ 4.798279, 49.986552 ], [ 4.284668, 49.908787 ], [ 3.587036, 50.380502 ], [ 3.122864, 50.781629 ], [ 2.655945, 50.797255 ], [ 2.513123, 51.150063 ], [ 3.312378, 51.346054 ], [ 4.045715, 51.268789 ], [ 4.971313, 51.476251 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Luxembourg", "sov_a3": "LUX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Luxembourg", "adm0_a3": "LUX", "geou_dif": 0, "geounit": "Luxembourg", "gu_a3": "LUX", "su_dif": 0, "subunit": "Luxembourg", "su_a3": "LUX", "brk_diff": 0, "name": "Luxembourg", "name_long": "Luxembourg", "brk_a3": "LUX", "brk_name": "Luxembourg", "abbrev": "Lux.", "postal": "L", "formal_en": "Grand Duchy of Luxembourg", "name_sort": "Luxembourg", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 491775, "gdp_md_est": 39370, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "LU", "iso_a3": "LUX", "iso_n3": "442", "un_a3": "442", "wb_a2": "LU", "wb_a3": "LUX", "woe_id": -99, "adm0_a3_is": "LUX", "adm0_a3_us": "LUX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.042480, 50.129382 ], [ 6.240234, 49.903480 ], [ 6.185303, 49.464554 ], [ 5.896912, 49.443129 ], [ 5.671692, 49.530557 ], [ 5.781555, 50.090631 ], [ 6.042480, 50.129382 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.920654, 54.983918 ], [ 9.937134, 54.597528 ], [ 10.947876, 54.364558 ], [ 10.936890, 54.009383 ], [ 11.250000, 54.067448 ], [ 11.469727, 54.107723 ], [ 11.469727, 48.777913 ], [ 7.921143, 48.777913 ], [ 8.028259, 48.922499 ], [ 8.096924, 49.018058 ], [ 6.657715, 49.203243 ], [ 6.185303, 49.464554 ], [ 6.240234, 49.903480 ], [ 6.042480, 50.129382 ], [ 6.155090, 50.804199 ], [ 5.987549, 51.852746 ], [ 6.589050, 51.852746 ], [ 6.841736, 52.229482 ], [ 7.091675, 53.145123 ], [ 6.904907, 53.483143 ], [ 7.099915, 53.695080 ], [ 7.934875, 53.748711 ], [ 8.121643, 53.528881 ], [ 8.800049, 54.022293 ], [ 8.572083, 54.396550 ], [ 8.525391, 54.963425 ], [ 9.280701, 54.832336 ], [ 9.920654, 54.983918 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 11.469727, 61.710706 ], [ 11.469727, 59.433903 ], [ 11.250000, 59.149178 ], [ 11.024780, 58.856383 ], [ 10.354614, 59.470199 ], [ 8.379822, 58.313817 ], [ 7.047729, 58.079329 ], [ 5.663452, 58.588299 ], [ 5.306396, 59.663579 ], [ 5.042725, 61.606396 ], [ 5.026245, 61.710706 ], [ 11.469727, 61.710706 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.469727, 55.909194 ], [ 11.469727, 55.652798 ], [ 10.945129, 55.652798 ], [ 10.903931, 55.776573 ], [ 10.901184, 55.781207 ], [ 11.250000, 55.859900 ], [ 11.469727, 55.909194 ] ] ], [ [ [ 10.579834, 57.730552 ], [ 10.544128, 57.216634 ], [ 10.247498, 56.891003 ], [ 10.368347, 56.610909 ], [ 10.912170, 56.459455 ], [ 10.667725, 56.082765 ], [ 10.368347, 56.191424 ], [ 9.953613, 55.776573 ], [ 9.830017, 55.652798 ], [ 8.116150, 55.652798 ], [ 8.110657, 55.776573 ], [ 8.088684, 56.541315 ], [ 8.256226, 56.811404 ], [ 8.541870, 57.110894 ], [ 9.423523, 57.173481 ], [ 9.775085, 57.449383 ], [ 10.579834, 57.730552 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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": "Polygon", "coordinates": [ [ [ 11.469727, 59.433903 ], [ 11.469727, 58.041550 ], [ 11.250000, 58.449170 ], [ 11.024780, 58.856383 ], [ 11.250000, 59.149178 ], [ 11.466980, 59.432506 ], [ 11.469727, 59.433903 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 11.469727, 65.212986 ], [ 11.469727, 61.501734 ], [ 5.056458, 61.501734 ], [ 5.042725, 61.606396 ], [ 4.990540, 61.971234 ], [ 5.910645, 62.614825 ], [ 8.552856, 63.454192 ], [ 10.527649, 64.486993 ], [ 11.250000, 65.045491 ], [ 11.469727, 65.212986 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 11.469727, 79.212538 ], [ 11.469727, 78.765652 ], [ 11.250000, 78.857848 ], [ 11.219788, 78.869518 ], [ 10.928650, 79.171335 ], [ 10.887451, 79.212538 ], [ 11.469727, 79.212538 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 11.469727, 79.788958 ], [ 11.469727, 79.129976 ], [ 10.967102, 79.129976 ], [ 10.928650, 79.171335 ], [ 10.442505, 79.652708 ], [ 11.250000, 79.759702 ], [ 11.469727, 79.788958 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 22.719727, -83.956169 ], [ 22.719727, -85.070048 ], [ 11.030273, -85.070048 ], [ 11.030273, -83.956169 ], [ 22.719727, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 22.719727, -82.648222 ], [ 22.719727, -84.002262 ], [ 11.030273, -84.002262 ], [ 11.030273, -82.648222 ], [ 22.719727, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 22.719727, -81.059130 ], [ 22.719727, -82.704241 ], [ 11.030273, -82.704241 ], [ 11.030273, -81.059130 ], [ 22.719727, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 22.719727, -79.129976 ], [ 22.719727, -81.127169 ], [ 11.030273, -81.127169 ], [ 11.030273, -79.129976 ], [ 22.719727, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 22.719727, -76.790701 ], [ 22.719727, -79.212538 ], [ 11.030273, -79.212538 ], [ 11.030273, -76.790701 ], [ 22.719727, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 22.719727, -73.958939 ], [ 22.719727, -76.890745 ], [ 11.030273, -76.890745 ], [ 11.030273, -73.958939 ], [ 22.719727, -73.958939 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 22.219849, -70.539543 ], [ 22.381897, -70.612614 ], [ 22.500000, -70.665426 ], [ 22.568665, -70.696320 ], [ 22.719727, -70.672699 ], [ 22.719727, -74.079925 ], [ 11.030273, -74.079925 ], [ 11.030273, -70.797753 ], [ 11.250000, -70.759776 ], [ 11.953125, -70.638127 ], [ 11.983337, -70.612614 ], [ 12.065735, -70.539543 ], [ 22.219849, -70.539543 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 24 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 18.201599, -69.873672 ], [ 19.259033, -69.893509 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.920471, -70.402742 ], [ 22.381897, -70.612614 ], [ 22.541199, -70.685421 ], [ 11.681213, -70.685421 ], [ 11.953125, -70.638127 ], [ 11.983337, -70.612614 ], [ 12.403564, -70.246460 ], [ 13.422546, -69.971730 ], [ 14.732666, -70.030908 ], [ 15.125427, -70.402742 ], [ 15.946655, -70.030908 ], [ 17.026062, -69.913328 ], [ 18.201599, -69.873672 ] ] ], [ [ [ 22.719727, -70.685421 ], [ 22.642822, -70.685421 ], [ 22.719727, -70.672699 ], [ 22.719727, -70.685421 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 19 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Africa", "sov_a3": "ZAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Africa", "adm0_a3": "ZAF", "geou_dif": 0, "geounit": "South Africa", "gu_a3": "ZAF", "su_dif": 0, "subunit": "South Africa", "su_a3": "ZAF", "brk_diff": 0, "name": "South Africa", "name_long": "South Africa", "brk_a3": "ZAF", "brk_name": "South Africa", "abbrev": "S.Af.", "postal": "ZA", "formal_en": "Republic of South Africa", "name_sort": "South Africa", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 49052489, "gdp_md_est": 491000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ZA", "iso_a3": "ZAF", "iso_n3": "710", "un_a3": "710", "wb_a2": "ZA", "wb_a3": "ZAF", "woe_id": -99, "adm0_a3_is": "ZAF", "adm0_a3_us": "ZAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, -31.765537 ], [ 22.719727, -33.881817 ], [ 22.571411, -33.863574 ], [ 22.500000, -33.890937 ], [ 21.541443, -34.257216 ], [ 20.687256, -34.415973 ], [ 20.069275, -34.793506 ], [ 19.616089, -34.818313 ], [ 19.193115, -34.461277 ], [ 18.855286, -34.443159 ], [ 18.424072, -33.995750 ], [ 18.377380, -34.134542 ], [ 18.242798, -33.865854 ], [ 18.248291, -33.280028 ], [ 17.924194, -32.609303 ], [ 18.245544, -32.428658 ], [ 18.229065, -31.952162 ], [ 18.223572, -31.765537 ], [ 22.719727, -31.765537 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 18 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Namibia", "sov_a3": "NAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Namibia", "adm0_a3": "NAM", "geou_dif": 0, "geounit": "Namibia", "gu_a3": "NAM", "su_dif": 0, "subunit": "Namibia", "su_a3": "NAM", "brk_diff": 0, "name": "Namibia", "name_long": "Namibia", "brk_a3": "NAM", "brk_name": "Namibia", "abbrev": "Nam.", "postal": "NA", "formal_en": "Republic of Namibia", "name_sort": "Namibia", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 2108665, "gdp_md_est": 13250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "NA", "iso_a3": "NAM", "iso_n3": "516", "un_a3": "516", "wb_a2": "NA", "wb_a3": "NAM", "woe_id": -99, "adm0_a3_is": "NAM", "adm0_a3_us": "NAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.879517, -21.739091 ], [ 20.879517, -21.813058 ], [ 19.893494, -21.848753 ], [ 19.893494, -28.459033 ], [ 19.000854, -28.972104 ], [ 18.462524, -29.044164 ], [ 17.833557, -28.854296 ], [ 17.385864, -28.782104 ], [ 17.218323, -28.355151 ], [ 16.822815, -28.081674 ], [ 16.344910, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.207825, -27.090918 ], [ 14.988098, -26.115986 ], [ 14.740906, -25.391179 ], [ 14.405823, -23.850674 ], [ 14.383850, -22.654572 ], [ 14.257507, -22.111088 ], [ 14.098206, -21.943046 ], [ 13.905945, -21.739091 ], [ 20.879517, -21.739091 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 22.719727, -21.739091 ], [ 22.719727, -25.703413 ], [ 22.576904, -25.977799 ], [ 22.500000, -26.029638 ], [ 22.104492, -26.278640 ], [ 21.604614, -26.725987 ], [ 20.887756, -26.826522 ], [ 20.665283, -26.475490 ], [ 20.755920, -25.866638 ], [ 20.165405, -24.916331 ], [ 19.893494, -24.766785 ], [ 19.893494, -21.848753 ], [ 20.879517, -21.813058 ], [ 20.879517, -21.739091 ], [ 22.719727, -21.739091 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Africa", "sov_a3": "ZAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Africa", "adm0_a3": "ZAF", "geou_dif": 0, "geounit": "South Africa", "gu_a3": "ZAF", "su_dif": 0, "subunit": "South Africa", "su_a3": "ZAF", "brk_diff": 0, "name": "South Africa", "name_long": "South Africa", "brk_a3": "ZAF", "brk_name": "South Africa", "abbrev": "S.Af.", "postal": "ZA", "formal_en": "Republic of South Africa", "name_sort": "South Africa", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 49052489, "gdp_md_est": 491000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ZA", "iso_a3": "ZAF", "iso_n3": "710", "un_a3": "710", "wb_a2": "ZA", "wb_a3": "ZAF", "woe_id": -99, "adm0_a3_is": "ZAF", "adm0_a3_us": "ZAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.893494, -24.766785 ], [ 20.165405, -24.916331 ], [ 20.755920, -25.866638 ], [ 20.665283, -26.475490 ], [ 20.887756, -26.826522 ], [ 21.604614, -26.725987 ], [ 22.104492, -26.278640 ], [ 22.500000, -26.029638 ], [ 22.576904, -25.977799 ], [ 22.719727, -25.703413 ], [ 22.719727, -32.138409 ], [ 18.237305, -32.138409 ], [ 18.229065, -31.952162 ], [ 18.220825, -31.660395 ], [ 17.564392, -30.725310 ], [ 17.061768, -29.876374 ], [ 16.344910, -28.574874 ], [ 16.822815, -28.081674 ], [ 17.218323, -28.355151 ], [ 17.385864, -28.782104 ], [ 17.833557, -28.854296 ], [ 18.462524, -29.044164 ], [ 19.000854, -28.972104 ], [ 19.893494, -28.459033 ], [ 19.893494, -24.766785 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 17 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, -10.962764 ], [ 22.719727, -11.008601 ], [ 22.401123, -10.992424 ], [ 22.153931, -11.084080 ], [ 22.159424, -10.962764 ], [ 22.719727, -10.962764 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.159424, -10.962764 ], [ 22.153931, -11.084080 ], [ 22.401123, -10.992424 ], [ 22.719727, -11.008601 ], [ 22.719727, -12.902844 ], [ 22.500000, -12.900166 ], [ 21.931458, -12.897489 ], [ 21.887512, -16.080125 ], [ 22.500000, -16.820316 ], [ 22.560425, -16.896544 ], [ 22.719727, -17.048907 ], [ 22.719727, -17.630935 ], [ 22.500000, -17.680662 ], [ 21.376648, -17.929089 ], [ 18.954163, -17.787920 ], [ 18.262024, -17.308688 ], [ 14.208069, -17.350638 ], [ 14.057007, -17.421408 ], [ 13.460999, -16.970114 ], [ 12.812805, -16.941215 ], [ 12.214050, -17.109293 ], [ 11.733398, -17.300821 ], [ 11.640015, -16.673031 ], [ 11.777344, -15.792254 ], [ 12.123413, -14.875778 ], [ 12.175598, -14.447979 ], [ 12.499695, -13.547211 ], [ 12.735901, -13.135654 ], [ 13.312683, -12.482169 ], [ 13.631287, -12.036634 ], [ 13.738403, -11.296934 ], [ 13.727417, -11.178402 ], [ 13.705444, -10.962764 ], [ 22.159424, -10.962764 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Namibia", "sov_a3": "NAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Namibia", "adm0_a3": "NAM", "geou_dif": 0, "geounit": "Namibia", "gu_a3": "NAM", "su_dif": 0, "subunit": "Namibia", "su_a3": "NAM", "brk_diff": 0, "name": "Namibia", "name_long": "Namibia", "brk_a3": "NAM", "brk_name": "Namibia", "abbrev": "Nam.", "postal": "NA", "formal_en": "Republic of Namibia", "name_sort": "Namibia", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 2108665, "gdp_md_est": 13250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "NA", "iso_a3": "NAM", "iso_n3": "516", "un_a3": "516", "wb_a2": "NA", "wb_a3": "NAM", "woe_id": -99, "adm0_a3_is": "NAM", "adm0_a3_us": "NAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.812805, -16.941215 ], [ 13.460999, -16.970114 ], [ 14.057007, -17.421408 ], [ 14.208069, -17.350638 ], [ 18.262024, -17.308688 ], [ 18.954163, -17.787920 ], [ 21.376648, -17.929089 ], [ 22.500000, -17.680662 ], [ 22.719727, -17.630935 ], [ 22.719727, -17.976121 ], [ 22.500000, -18.025751 ], [ 21.654053, -18.218916 ], [ 20.909729, -18.250220 ], [ 20.879517, -21.813058 ], [ 19.893494, -21.848753 ], [ 19.893494, -22.146708 ], [ 14.265747, -22.146708 ], [ 14.257507, -22.111088 ], [ 14.098206, -21.943046 ], [ 13.867493, -21.698265 ], [ 13.351135, -20.871644 ], [ 12.826538, -19.671039 ], [ 12.606812, -19.043945 ], [ 11.793823, -18.067535 ], [ 11.733398, -17.300821 ], [ 12.214050, -17.109293 ], [ 12.812805, -16.941215 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.931458, -12.897489 ], [ 22.500000, -12.900166 ], [ 22.719727, -12.902844 ], [ 22.719727, -17.048907 ], [ 22.560425, -16.896544 ], [ 22.500000, -16.820316 ], [ 21.887512, -16.080125 ], [ 21.931458, -12.897489 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 22.719727, -17.976121 ], [ 22.719727, -22.146708 ], [ 19.893494, -22.146708 ], [ 19.893494, -21.848753 ], [ 20.879517, -21.813058 ], [ 20.909729, -18.250220 ], [ 21.654053, -18.218916 ], [ 22.500000, -18.025751 ], [ 22.719727, -17.976121 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 16 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Gabon", "sov_a3": "GAB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gabon", "adm0_a3": "GAB", "geou_dif": 0, "geounit": "Gabon", "gu_a3": "GAB", "su_dif": 0, "subunit": "Gabon", "su_a3": "GAB", "brk_diff": 0, "name": "Gabon", "name_long": "Gabon", "brk_a3": "GAB", "brk_name": "Gabon", "abbrev": "Gabon", "postal": "GA", "formal_en": "Gabonese Republic", "name_sort": "Gabon", "mapcolor7": 6, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 1514993, "gdp_md_est": 21110, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "GA", "iso_a3": "GAB", "iso_n3": "266", "un_a3": "266", "wb_a2": "GA", "wb_a3": "GAB", "woe_id": -99, "adm0_a3_is": "GAB", "adm0_a3_us": "GAB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": 3, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.908691, 0.219726 ], [ 13.842773, 0.041199 ], [ 13.872986, 0.000000 ], [ 14.315186, -0.552054 ], [ 14.425049, -1.331972 ], [ 14.298706, -1.996361 ], [ 13.991089, -2.468413 ], [ 13.109436, -2.427252 ], [ 12.573853, -1.946952 ], [ 12.494202, -2.391578 ], [ 11.818542, -2.512317 ], [ 11.477966, -2.764735 ], [ 11.854248, -3.425692 ], [ 11.250000, -3.864255 ], [ 11.093445, -3.976601 ], [ 11.030273, -3.916319 ], [ 11.030273, 0.219726 ], [ 13.908691, 0.219726 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.792358, 0.219726 ], [ 17.690735, 0.000000 ], [ 17.663269, -0.057678 ], [ 17.638550, -0.422970 ], [ 17.523193, -0.741556 ], [ 16.864014, -1.224882 ], [ 16.405334, -1.738320 ], [ 15.971375, -2.709866 ], [ 16.004333, -3.532611 ], [ 15.751648, -3.853293 ], [ 15.169373, -4.340934 ], [ 14.581604, -4.967824 ], [ 14.208069, -4.792680 ], [ 14.144897, -4.507976 ], [ 13.598328, -4.499762 ], [ 13.257751, -4.880258 ], [ 12.994080, -4.778995 ], [ 12.620544, -4.436782 ], [ 12.318420, -4.603803 ], [ 11.914673, -5.036227 ], [ 11.250000, -4.179333 ], [ 11.093445, -3.976601 ], [ 11.250000, -3.864255 ], [ 11.854248, -3.425692 ], [ 11.477966, -2.764735 ], [ 11.818542, -2.512317 ], [ 12.494202, -2.391578 ], [ 12.573853, -1.946952 ], [ 13.109436, -2.427252 ], [ 13.991089, -2.468413 ], [ 14.298706, -1.996361 ], [ 14.425049, -1.331972 ], [ 14.315186, -0.552054 ], [ 13.872986, 0.000000 ], [ 13.842773, 0.041199 ], [ 13.908691, 0.219726 ], [ 17.792358, 0.219726 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 0.219726 ], [ 22.719727, -11.008601 ], [ 22.500000, -10.997816 ], [ 22.401123, -10.992424 ], [ 22.153931, -11.084080 ], [ 22.206116, -9.893099 ], [ 21.873779, -9.522206 ], [ 21.799622, -8.906780 ], [ 21.947937, -8.303906 ], [ 21.744690, -7.917793 ], [ 21.725464, -7.288914 ], [ 20.514221, -7.297088 ], [ 20.599365, -6.937333 ], [ 20.091248, -6.942786 ], [ 20.036316, -7.114520 ], [ 19.415588, -7.155400 ], [ 19.165649, -7.735487 ], [ 19.014587, -7.985798 ], [ 18.462524, -7.844336 ], [ 18.132935, -7.985798 ], [ 17.471008, -8.067388 ], [ 17.089233, -7.544933 ], [ 16.858521, -7.220800 ], [ 16.572876, -6.620957 ], [ 16.325684, -5.875600 ], [ 13.373108, -5.861939 ], [ 13.024292, -5.982144 ], [ 12.733154, -5.963022 ], [ 12.321167, -6.099591 ], [ 12.181091, -5.788164 ], [ 12.436523, -5.681584 ], [ 12.466736, -5.246863 ], [ 12.631531, -4.989714 ], [ 12.994080, -4.778995 ], [ 13.257751, -4.880258 ], [ 13.598328, -4.499762 ], [ 14.144897, -4.507976 ], [ 14.208069, -4.792680 ], [ 14.581604, -4.967824 ], [ 15.169373, -4.340934 ], [ 15.751648, -3.853293 ], [ 16.004333, -3.532611 ], [ 15.971375, -2.709866 ], [ 16.405334, -1.738320 ], [ 16.864014, -1.224882 ], [ 17.523193, -0.741556 ], [ 17.638550, -0.422970 ], [ 17.663269, -0.057678 ], [ 17.690735, 0.000000 ], [ 17.792358, 0.219726 ], [ 22.719727, 0.219726 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.373108, -5.861939 ], [ 16.325684, -5.875600 ], [ 16.572876, -6.620957 ], [ 16.858521, -7.220800 ], [ 17.089233, -7.544933 ], [ 17.471008, -8.067388 ], [ 18.132935, -7.985798 ], [ 18.462524, -7.844336 ], [ 19.014587, -7.985798 ], [ 19.165649, -7.735487 ], [ 19.415588, -7.155400 ], [ 20.036316, -7.114520 ], [ 20.091248, -6.942786 ], [ 20.599365, -6.937333 ], [ 20.514221, -7.297088 ], [ 21.725464, -7.288914 ], [ 21.744690, -7.917793 ], [ 21.947937, -8.303906 ], [ 21.799622, -8.906780 ], [ 21.873779, -9.522206 ], [ 22.206116, -9.893099 ], [ 22.153931, -11.084080 ], [ 22.401123, -10.992424 ], [ 22.500000, -10.997816 ], [ 22.719727, -11.008601 ], [ 22.719727, -11.393879 ], [ 13.724670, -11.393879 ], [ 13.738403, -11.296934 ], [ 13.727417, -11.178402 ], [ 13.686218, -10.730778 ], [ 13.386841, -10.371660 ], [ 13.120422, -9.765904 ], [ 12.873230, -9.164467 ], [ 12.928162, -8.958332 ], [ 13.235779, -8.562010 ], [ 12.930908, -7.593940 ], [ 12.727661, -6.926427 ], [ 12.225037, -6.293459 ], [ 12.321167, -6.099591 ], [ 12.733154, -5.963022 ], [ 13.024292, -5.982144 ], [ 13.373108, -5.861939 ] ] ], [ [ [ 12.620544, -4.436782 ], [ 12.994080, -4.778995 ], [ 12.631531, -4.989714 ], [ 12.466736, -5.246863 ], [ 12.436523, -5.681584 ], [ 12.181091, -5.788164 ], [ 11.914673, -5.036227 ], [ 12.318420, -4.603803 ], [ 12.620544, -4.436782 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.219055, 11.393879 ], [ 13.985596, 11.178402 ], [ 13.570862, 10.800933 ], [ 13.307190, 10.160857 ], [ 13.167114, 9.641369 ], [ 12.952881, 9.419258 ], [ 12.752380, 8.719503 ], [ 12.216797, 8.306624 ], [ 12.062988, 7.800800 ], [ 11.837769, 7.397877 ], [ 11.744385, 6.983681 ], [ 11.250000, 6.738259 ], [ 11.057739, 6.645511 ], [ 11.030273, 6.667336 ], [ 11.030273, 11.393879 ], [ 14.219055, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Equatorial Guinea", "sov_a3": "GNQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Equatorial Guinea", "adm0_a3": "GNQ", "geou_dif": 0, "geounit": "Equatorial Guinea", "gu_a3": "GNQ", "su_dif": 0, "subunit": "Equatorial Guinea", "su_a3": "GNQ", "brk_diff": 0, "name": "Eq. Guinea", "name_long": "Equatorial Guinea", "brk_a3": "GNQ", "brk_name": "Eq. Guinea", "abbrev": "Eq. G.", "postal": "GQ", "formal_en": "Republic of Equatorial Guinea", "name_sort": "Equatorial Guinea", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 650702, "gdp_md_est": 14060, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "7. Least developed region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GQ", "iso_a3": "GNQ", "iso_n3": "226", "un_a3": "226", "wb_a2": "GQ", "wb_a3": "GNQ", "woe_id": -99, "adm0_a3_is": "GNQ", "adm0_a3_us": "GNQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 17, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.030273, 2.265340 ], [ 11.250000, 2.262595 ], [ 11.274719, 2.262595 ], [ 11.282959, 1.060120 ], [ 11.030273, 1.060120 ], [ 11.030273, 2.265340 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 11.393879 ], [ 22.719727, 11.105642 ], [ 22.500000, 11.046343 ], [ 22.230835, 10.973550 ], [ 21.722717, 10.568822 ], [ 21.000366, 9.476154 ], [ 20.058289, 9.015302 ], [ 19.091492, 9.074976 ], [ 18.811340, 8.985462 ], [ 18.910217, 8.632619 ], [ 18.388367, 8.282163 ], [ 17.962646, 7.893309 ], [ 16.704712, 7.509535 ], [ 16.454773, 7.735487 ], [ 16.289978, 7.754537 ], [ 16.105957, 7.498643 ], [ 15.279236, 7.422389 ], [ 15.435791, 7.694661 ], [ 15.119934, 8.382714 ], [ 14.979858, 8.798225 ], [ 14.543152, 8.966471 ], [ 13.952637, 9.552000 ], [ 14.169617, 10.022948 ], [ 14.625549, 9.922860 ], [ 14.908447, 9.993196 ], [ 15.466003, 9.982376 ], [ 14.922180, 10.892648 ], [ 14.938660, 11.178402 ], [ 14.949646, 11.393879 ], [ 22.719727, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.949646, 11.393879 ], [ 14.938660, 11.178402 ], [ 14.922180, 10.892648 ], [ 15.466003, 9.982376 ], [ 14.908447, 9.993196 ], [ 14.625549, 9.922860 ], [ 14.169617, 10.022948 ], [ 13.952637, 9.552000 ], [ 14.543152, 8.966471 ], [ 14.979858, 8.798225 ], [ 15.119934, 8.382714 ], [ 15.435791, 7.694661 ], [ 15.279236, 7.422389 ], [ 14.773865, 6.410837 ], [ 14.534912, 6.227934 ], [ 14.458008, 5.451959 ], [ 14.556885, 5.030755 ], [ 14.477234, 4.735201 ], [ 14.949646, 4.212204 ], [ 15.034790, 3.853293 ], [ 15.402832, 3.337954 ], [ 15.861511, 3.014356 ], [ 15.905457, 2.558963 ], [ 16.012573, 2.268084 ], [ 15.938416, 1.730084 ], [ 15.144653, 1.966167 ], [ 14.337158, 2.229662 ], [ 13.073730, 2.268084 ], [ 12.950134, 2.322972 ], [ 12.356873, 2.193983 ], [ 11.749878, 2.328460 ], [ 11.274719, 2.262595 ], [ 11.250000, 2.262595 ], [ 11.030273, 2.265340 ], [ 11.030273, 6.667336 ], [ 11.057739, 6.645511 ], [ 11.250000, 6.738259 ], [ 11.744385, 6.983681 ], [ 11.837769, 7.397877 ], [ 12.062988, 7.800800 ], [ 12.216797, 8.306624 ], [ 12.752380, 8.719503 ], [ 12.952881, 9.419258 ], [ 13.167114, 9.641369 ], [ 13.307190, 10.160857 ], [ 13.570862, 10.800933 ], [ 13.985596, 11.178402 ], [ 14.219055, 11.393879 ], [ 14.949646, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 11.105642 ], [ 22.719727, 4.642130 ], [ 22.703247, 4.633917 ], [ 22.500000, 4.223161 ], [ 22.403870, 4.031399 ], [ 21.656799, 4.225900 ], [ 20.926208, 4.324501 ], [ 20.289001, 4.694142 ], [ 19.467773, 5.033491 ], [ 18.932190, 4.710566 ], [ 18.542175, 4.203986 ], [ 18.451538, 3.505197 ], [ 17.808838, 3.562765 ], [ 17.130432, 3.729968 ], [ 16.534424, 3.200848 ], [ 16.012573, 2.268084 ], [ 15.905457, 2.558963 ], [ 15.861511, 3.014356 ], [ 15.402832, 3.337954 ], [ 15.034790, 3.853293 ], [ 14.949646, 4.212204 ], [ 14.477234, 4.735201 ], [ 14.556885, 5.030755 ], [ 14.458008, 5.451959 ], [ 14.534912, 6.227934 ], [ 14.773865, 6.410837 ], [ 15.279236, 7.422389 ], [ 16.105957, 7.498643 ], [ 16.289978, 7.754537 ], [ 16.454773, 7.735487 ], [ 16.704712, 7.509535 ], [ 17.962646, 7.893309 ], [ 18.388367, 8.282163 ], [ 18.910217, 8.632619 ], [ 18.811340, 8.985462 ], [ 19.091492, 9.074976 ], [ 20.058289, 9.015302 ], [ 21.000366, 9.476154 ], [ 21.722717, 10.568822 ], [ 22.230835, 10.973550 ], [ 22.500000, 11.046343 ], [ 22.719727, 11.105642 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Gabon", "sov_a3": "GAB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gabon", "adm0_a3": "GAB", "geou_dif": 0, "geounit": "Gabon", "gu_a3": "GAB", "su_dif": 0, "subunit": "Gabon", "su_a3": "GAB", "brk_diff": 0, "name": "Gabon", "name_long": "Gabon", "brk_a3": "GAB", "brk_name": "Gabon", "abbrev": "Gabon", "postal": "GA", "formal_en": "Gabonese Republic", "name_sort": "Gabon", "mapcolor7": 6, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 1514993, "gdp_md_est": 21110, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "GA", "iso_a3": "GAB", "iso_n3": "266", "un_a3": "266", "wb_a2": "GA", "wb_a3": "GAB", "woe_id": -99, "adm0_a3_is": "GAB", "adm0_a3_us": "GAB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": 3, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.749878, 2.328460 ], [ 12.356873, 2.193983 ], [ 12.950134, 2.322972 ], [ 13.073730, 2.268084 ], [ 13.002319, 1.831658 ], [ 13.282471, 1.315497 ], [ 14.024048, 1.397872 ], [ 14.273987, 1.197423 ], [ 13.842773, 0.041199 ], [ 13.872986, 0.000000 ], [ 14.048767, -0.219726 ], [ 11.030273, -0.219726 ], [ 11.030273, 1.060120 ], [ 11.282959, 1.060120 ], [ 11.274719, 2.262595 ], [ 11.749878, 2.328460 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.130432, 3.729968 ], [ 17.808838, 3.562765 ], [ 18.451538, 3.505197 ], [ 18.391113, 2.901896 ], [ 18.091736, 2.366880 ], [ 17.896729, 1.743810 ], [ 17.773132, 0.856902 ], [ 17.825317, 0.291136 ], [ 17.690735, 0.000000 ], [ 17.663269, -0.057678 ], [ 17.652283, -0.219726 ], [ 14.048767, -0.219726 ], [ 13.872986, 0.000000 ], [ 13.842773, 0.041199 ], [ 14.273987, 1.197423 ], [ 14.024048, 1.397872 ], [ 13.282471, 1.315497 ], [ 13.002319, 1.831658 ], [ 13.073730, 2.268084 ], [ 14.337158, 2.229662 ], [ 15.144653, 1.966167 ], [ 15.938416, 1.730084 ], [ 16.012573, 2.268084 ], [ 16.534424, 3.200848 ], [ 17.130432, 3.729968 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.467773, 5.033491 ], [ 20.289001, 4.694142 ], [ 20.926208, 4.324501 ], [ 21.656799, 4.225900 ], [ 22.403870, 4.031399 ], [ 22.500000, 4.223161 ], [ 22.703247, 4.633917 ], [ 22.719727, 4.642130 ], [ 22.719727, -0.219726 ], [ 17.652283, -0.219726 ], [ 17.663269, -0.057678 ], [ 17.690735, 0.000000 ], [ 17.825317, 0.291136 ], [ 17.773132, 0.856902 ], [ 17.896729, 1.743810 ], [ 18.091736, 2.366880 ], [ 18.391113, 2.901896 ], [ 18.451538, 3.505197 ], [ 18.542175, 4.203986 ], [ 18.932190, 4.710566 ], [ 19.467773, 5.033491 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 22.146708 ], [ 22.719727, 20.120419 ], [ 22.500000, 20.226120 ], [ 19.846802, 21.496519 ], [ 18.918457, 21.943046 ], [ 18.495483, 22.146708 ], [ 22.719727, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.963379, 22.146708 ], [ 14.996338, 21.943046 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.048618 ], [ 15.485229, 20.730428 ], [ 15.902710, 20.388400 ], [ 15.685730, 19.957860 ], [ 15.298462, 17.929089 ], [ 15.246277, 16.628297 ], [ 13.971863, 15.686510 ], [ 13.537903, 14.368173 ], [ 13.955383, 13.998037 ], [ 13.952637, 13.354882 ], [ 14.595337, 13.330830 ], [ 14.493713, 12.860004 ], [ 14.210815, 12.803767 ], [ 14.180603, 12.484850 ], [ 13.993835, 12.463396 ], [ 13.318176, 13.557892 ], [ 13.081970, 13.597939 ], [ 12.301941, 13.039345 ], [ 11.527405, 13.330830 ], [ 11.250000, 13.360227 ], [ 11.030273, 13.384276 ], [ 11.030273, 22.146708 ], [ 14.963379, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.081970, 13.597939 ], [ 13.318176, 13.557892 ], [ 13.993835, 12.463396 ], [ 14.180603, 12.484850 ], [ 14.576111, 12.087667 ], [ 14.466248, 11.904979 ], [ 14.414062, 11.574216 ], [ 13.985596, 11.178402 ], [ 13.749390, 10.962764 ], [ 11.030273, 10.962764 ], [ 11.030273, 13.384276 ], [ 11.250000, 13.360227 ], [ 11.527405, 13.330830 ], [ 12.301941, 13.039345 ], [ 13.081970, 13.597939 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.495483, 22.146708 ], [ 18.918457, 21.943046 ], [ 19.846802, 21.496519 ], [ 22.500000, 20.226120 ], [ 22.719727, 20.120419 ], [ 22.719727, 15.191434 ], [ 22.565918, 14.944785 ], [ 22.500000, 14.788161 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.107276 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.083301 ], [ 22.181396, 13.787404 ], [ 22.294006, 13.373588 ], [ 22.035828, 12.956383 ], [ 21.934204, 12.589413 ], [ 22.285767, 12.648378 ], [ 22.497253, 12.262180 ], [ 22.500000, 12.136005 ], [ 22.508240, 11.681825 ], [ 22.719727, 11.512322 ], [ 22.719727, 11.105642 ], [ 22.230835, 10.973550 ], [ 22.217102, 10.962764 ], [ 14.924927, 10.962764 ], [ 14.938660, 11.178402 ], [ 14.957886, 11.558071 ], [ 14.891968, 12.219233 ], [ 14.493713, 12.860004 ], [ 14.595337, 13.330830 ], [ 13.952637, 13.354882 ], [ 13.955383, 13.998037 ], [ 13.537903, 14.368173 ], [ 13.971863, 15.686510 ], [ 15.246277, 16.628297 ], [ 15.298462, 17.929089 ], [ 15.685730, 19.957860 ], [ 15.902710, 20.388400 ], [ 15.485229, 20.730428 ], [ 15.468750, 21.048618 ], [ 15.095215, 21.309846 ], [ 14.996338, 21.943046 ], [ 14.963379, 22.146708 ], [ 18.495483, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.493713, 12.860004 ], [ 14.891968, 12.219233 ], [ 14.957886, 11.558071 ], [ 14.938660, 11.178402 ], [ 14.924927, 10.962764 ], [ 13.749390, 10.962764 ], [ 13.985596, 11.178402 ], [ 14.414062, 11.574216 ], [ 14.466248, 11.904979 ], [ 14.576111, 12.087667 ], [ 14.180603, 12.484850 ], [ 14.210815, 12.803767 ], [ 14.493713, 12.860004 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 11.105642 ], [ 22.719727, 10.962764 ], [ 22.217102, 10.962764 ], [ 22.230835, 10.973550 ], [ 22.719727, 11.105642 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 22.719727, 15.191434 ], [ 22.719727, 11.512322 ], [ 22.508240, 11.681825 ], [ 22.500000, 12.136005 ], [ 22.497253, 12.262180 ], [ 22.285767, 12.648378 ], [ 21.934204, 12.589413 ], [ 22.035828, 12.956383 ], [ 22.294006, 13.373588 ], [ 22.181396, 13.787404 ], [ 22.500000, 14.083301 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.107276 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.788161 ], [ 22.565918, 14.944785 ], [ 22.719727, 15.191434 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Tunisia", "sov_a3": "TUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tunisia", "adm0_a3": "TUN", "geou_dif": 0, "geounit": "Tunisia", "gu_a3": "TUN", "su_dif": 0, "subunit": "Tunisia", "su_a3": "TUN", "brk_diff": 0, "name": "Tunisia", "name_long": "Tunisia", "brk_a3": "TUN", "brk_name": "Tunisia", "abbrev": "Tun.", "postal": "TN", "formal_en": "Republic of Tunisia", "name_sort": "Tunisia", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 10486339, "gdp_md_est": 81710, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TN", "iso_a3": "TUN", "iso_n3": "788", "un_a3": "788", "wb_a2": "TN", "wb_a3": "TUN", "woe_id": -99, "adm0_a3_is": "TUN", "adm0_a3_us": "TUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.038513, 32.138409 ], [ 11.030273, 32.133757 ], [ 11.030273, 32.138409 ], [ 11.038513, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.030273, 24.412140 ], [ 11.250000, 24.282020 ], [ 11.560364, 24.099126 ], [ 11.997070, 23.473324 ], [ 11.250000, 23.059516 ], [ 11.030273, 22.935630 ], [ 11.030273, 24.412140 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 32.138409 ], [ 22.719727, 21.739091 ], [ 19.341431, 21.739091 ], [ 18.918457, 21.943046 ], [ 15.858765, 23.410327 ], [ 14.850769, 22.864787 ], [ 14.142151, 22.492257 ], [ 13.579102, 23.041825 ], [ 11.997070, 23.473324 ], [ 11.560364, 24.099126 ], [ 11.250000, 24.282020 ], [ 11.030273, 24.412140 ], [ 11.030273, 32.133757 ], [ 11.038513, 32.138409 ], [ 15.312195, 32.138409 ], [ 15.408325, 31.952162 ], [ 15.713196, 31.377089 ], [ 16.611328, 31.182259 ], [ 18.020325, 30.765439 ], [ 19.085999, 30.268556 ], [ 19.572144, 30.526779 ], [ 20.052795, 30.987028 ], [ 19.819336, 31.753861 ], [ 19.948425, 31.952162 ], [ 20.069275, 32.138409 ], [ 22.719727, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.997070, 23.473324 ], [ 13.579102, 23.041825 ], [ 14.142151, 22.492257 ], [ 14.850769, 22.864787 ], [ 14.996338, 21.943046 ], [ 15.026550, 21.739091 ], [ 11.030273, 21.739091 ], [ 11.030273, 22.935630 ], [ 11.250000, 23.059516 ], [ 11.997070, 23.473324 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.858765, 23.410327 ], [ 18.918457, 21.943046 ], [ 19.341431, 21.739091 ], [ 15.026550, 21.739091 ], [ 14.996338, 21.943046 ], [ 14.850769, 22.864787 ], [ 15.858765, 23.410327 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.518188, 38.231708 ], [ 15.158386, 37.444335 ], [ 15.309448, 37.136235 ], [ 15.097961, 36.622141 ], [ 14.334412, 36.998166 ], [ 13.826294, 37.105575 ], [ 12.428284, 37.614231 ], [ 12.568359, 38.128075 ], [ 13.741150, 38.035112 ], [ 14.760132, 38.145358 ], [ 15.518188, 38.231708 ] ] ], [ [ [ 16.866760, 41.145570 ], [ 17.267761, 40.979898 ], [ 17.517700, 40.878218 ], [ 18.374634, 40.357010 ], [ 18.479004, 40.170479 ], [ 18.292236, 39.812756 ], [ 17.737427, 40.279526 ], [ 16.869507, 40.442767 ], [ 16.446533, 39.795876 ], [ 17.168884, 39.425586 ], [ 17.050781, 38.903858 ], [ 16.633301, 38.843986 ], [ 16.100464, 37.987504 ], [ 15.682983, 37.909534 ], [ 15.685730, 38.216604 ], [ 15.891724, 38.751941 ], [ 16.108704, 38.965816 ], [ 15.718689, 39.544294 ], [ 15.411072, 40.048643 ], [ 14.996338, 40.174676 ], [ 14.702454, 40.605612 ], [ 14.059753, 40.786780 ], [ 13.851013, 40.979898 ], [ 13.672485, 41.145570 ], [ 16.866760, 41.145570 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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.582886, 41.145570 ], [ 20.604858, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.019592, 40.842905 ], [ 20.997620, 40.580585 ], [ 20.673523, 40.436495 ], [ 20.613098, 40.111689 ], [ 20.148926, 39.626846 ], [ 19.978638, 39.696621 ], [ 19.959412, 39.916056 ], [ 19.404602, 40.252280 ], [ 19.316711, 40.728527 ], [ 19.349670, 40.979898 ], [ 19.368896, 41.145570 ], [ 20.582886, 41.145570 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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": "MultiPolygon", "coordinates": [ [ [ [ 22.046814, 41.145570 ], [ 21.758423, 40.979898 ], [ 21.673279, 40.932190 ], [ 21.019592, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.087632 ], [ 20.582886, 41.145570 ], [ 22.046814, 41.145570 ] ] ], [ [ [ 22.609863, 41.145570 ], [ 22.596130, 41.131090 ], [ 22.173157, 41.145570 ], [ 22.609863, 41.145570 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Tunisia", "sov_a3": "TUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tunisia", "adm0_a3": "TUN", "geou_dif": 0, "geounit": "Tunisia", "gu_a3": "TUN", "su_dif": 0, "subunit": "Tunisia", "su_a3": "TUN", "brk_diff": 0, "name": "Tunisia", "name_long": "Tunisia", "brk_a3": "TUN", "brk_name": "Tunisia", "abbrev": "Tun.", "postal": "TN", "formal_en": "Republic of Tunisia", "name_sort": "Tunisia", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 10486339, "gdp_md_est": 81710, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TN", "iso_a3": "TUN", "iso_n3": "788", "un_a3": "788", "wb_a2": "TN", "wb_a3": "TUN", "woe_id": -99, "adm0_a3_is": "TUN", "adm0_a3_us": "TUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.030273, 33.442901 ], [ 11.107178, 33.293804 ], [ 11.250000, 33.236390 ], [ 11.486206, 33.137551 ], [ 11.431274, 32.370683 ], [ 11.250000, 32.263911 ], [ 11.030273, 32.133757 ], [ 11.030273, 33.442901 ] ] ], [ [ [ 11.030273, 36.833470 ], [ 11.030273, 37.090240 ], [ 11.098938, 36.901587 ], [ 11.030273, 36.833470 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.486206, 33.137551 ], [ 12.661743, 32.794201 ], [ 13.081970, 32.879587 ], [ 13.916931, 32.713355 ], [ 15.243530, 32.266233 ], [ 15.408325, 31.952162 ], [ 15.507202, 31.765537 ], [ 11.030273, 31.765537 ], [ 11.030273, 32.133757 ], [ 11.250000, 32.263911 ], [ 11.431274, 32.370683 ], [ 11.486206, 33.137551 ] ] ], [ [ [ 22.500000, 32.699489 ], [ 22.719727, 32.667125 ], [ 22.719727, 31.765537 ], [ 19.827576, 31.765537 ], [ 19.948425, 31.952162 ], [ 20.132446, 32.238359 ], [ 20.852051, 32.708733 ], [ 21.541443, 32.844981 ], [ 22.500000, 32.699489 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "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": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 41.145570 ], [ 22.719727, 40.367474 ], [ 22.623596, 40.258569 ], [ 22.719727, 40.008683 ], [ 22.719727, 36.414652 ], [ 22.500000, 36.410231 ], [ 22.489014, 36.410231 ], [ 21.667786, 36.846659 ], [ 21.294250, 37.646859 ], [ 21.118469, 38.311491 ], [ 20.728455, 38.771216 ], [ 20.217590, 39.340670 ], [ 20.148926, 39.626846 ], [ 20.613098, 40.111689 ], [ 20.673523, 40.436495 ], [ 20.997620, 40.580585 ], [ 21.019592, 40.842905 ], [ 21.673279, 40.932190 ], [ 21.758423, 40.979898 ], [ 22.046814, 41.145570 ], [ 22.173157, 41.145570 ], [ 22.596130, 41.131090 ], [ 22.609863, 41.145570 ], [ 22.719727, 41.145570 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.345642, 49.066668 ], [ 13.535156, 48.922499 ], [ 13.595581, 48.877361 ], [ 13.241272, 48.416442 ], [ 12.881470, 48.290503 ], [ 13.024292, 47.637634 ], [ 12.930908, 47.468950 ], [ 12.620544, 47.672786 ], [ 12.139893, 47.704217 ], [ 11.425781, 47.524620 ], [ 11.250000, 47.533893 ], [ 11.030273, 47.543164 ], [ 11.030273, 49.066668 ], [ 13.345642, 49.066668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Czech Republic", "sov_a3": "CZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Czech Republic", "adm0_a3": "CZE", "geou_dif": 0, "geounit": "Czech Republic", "gu_a3": "CZE", "su_dif": 0, "subunit": "Czech Republic", "su_a3": "CZE", "brk_diff": 0, "name": "Czech Rep.", "name_long": "Czech Republic", "brk_a3": "CZE", "brk_name": "Czech Rep.", "abbrev": "Cz. Rep.", "postal": "CZ", "formal_en": "Czech Republic", "name_sort": "Czech Republic", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 10211904, "gdp_md_est": 265200, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CZ", "iso_a3": "CZE", "iso_n3": "203", "un_a3": "203", "wb_a2": "CZ", "wb_a3": "CZE", "woe_id": -99, "adm0_a3_is": "CZE", "adm0_a3_us": "CZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 14, "abbrev_len": 8, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.110962, 49.066668 ], [ 18.102722, 49.045070 ], [ 17.913208, 48.998240 ], [ 17.891235, 48.922499 ], [ 17.885742, 48.904449 ], [ 17.542419, 48.801436 ], [ 17.100220, 48.817716 ], [ 16.960144, 48.598409 ], [ 16.498718, 48.786962 ], [ 16.029053, 48.734455 ], [ 15.548401, 48.922499 ], [ 15.251770, 49.039668 ], [ 14.900208, 48.965794 ], [ 14.842529, 48.922499 ], [ 14.337158, 48.556614 ], [ 13.595581, 48.877361 ], [ 13.535156, 48.922499 ], [ 13.345642, 49.066668 ], [ 18.110962, 49.066668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Poland", "sov_a3": "POL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Poland", "adm0_a3": "POL", "geou_dif": 0, "geounit": "Poland", "gu_a3": "POL", "su_dif": 0, "subunit": "Poland", "su_a3": "POL", "brk_diff": 0, "name": "Poland", "name_long": "Poland", "brk_a3": "POL", "brk_name": "Poland", "abbrev": "Pol.", "postal": "PL", "formal_en": "Republic of Poland", "name_sort": "Poland", "mapcolor7": 3, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 38482919, "gdp_md_est": 667900, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PL", "iso_a3": "POL", "iso_n3": "616", "un_a3": "616", "wb_a2": "PL", "wb_a3": "POL", "woe_id": -99, "adm0_a3_is": "POL", "adm0_a3_us": "POL", "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": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 49.066668 ], [ 22.719727, 49.043269 ], [ 22.629089, 49.066668 ], [ 22.719727, 49.066668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Austria", "sov_a3": "AUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Austria", "adm0_a3": "AUT", "geou_dif": 0, "geounit": "Austria", "gu_a3": "AUT", "su_dif": 0, "subunit": "Austria", "su_a3": "AUT", "brk_diff": 0, "name": "Austria", "name_long": "Austria", "brk_a3": "AUT", "brk_name": "Austria", "abbrev": "Aust.", "postal": "A", "formal_en": "Republic of Austria", "name_sort": "Austria", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 8210281, "gdp_md_est": 329500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AT", "iso_a3": "AUT", "iso_n3": "040", "un_a3": "040", "wb_a2": "AT", "wb_a3": "AUT", "woe_id": -99, "adm0_a3_is": "AUT", "adm0_a3_us": "AUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.251770, 49.039668 ], [ 15.548401, 48.922499 ], [ 16.029053, 48.734455 ], [ 16.498718, 48.786962 ], [ 16.960144, 48.598409 ], [ 16.877747, 48.471100 ], [ 16.979370, 48.123934 ], [ 16.902466, 47.715306 ], [ 16.339417, 47.713458 ], [ 16.531677, 47.496792 ], [ 16.202087, 46.852678 ], [ 16.009827, 46.685247 ], [ 15.136414, 46.658862 ], [ 14.631042, 46.432178 ], [ 13.804321, 46.509735 ], [ 12.376099, 46.768087 ], [ 12.150879, 47.116869 ], [ 11.250000, 46.957761 ], [ 11.162109, 46.942762 ], [ 11.046753, 46.753035 ], [ 11.030273, 46.756798 ], [ 11.030273, 47.543164 ], [ 11.250000, 47.533893 ], [ 11.425781, 47.524620 ], [ 12.139893, 47.704217 ], [ 12.620544, 47.672786 ], [ 12.930908, 47.468950 ], [ 13.024292, 47.637634 ], [ 12.881470, 48.290503 ], [ 13.241272, 48.416442 ], [ 13.595581, 48.877361 ], [ 14.337158, 48.556614 ], [ 14.842529, 48.922499 ], [ 14.900208, 48.965794 ], [ 15.251770, 49.039668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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.202087, 46.852678 ], [ 16.369629, 46.841407 ], [ 16.564636, 46.504064 ], [ 15.768127, 46.238752 ], [ 15.669250, 45.834540 ], [ 15.323181, 45.733025 ], [ 15.325928, 45.452424 ], [ 14.933167, 45.473614 ], [ 14.592590, 45.635167 ], [ 14.411316, 45.467836 ], [ 13.713684, 45.500572 ], [ 13.936157, 45.592900 ], [ 13.697205, 46.017946 ], [ 13.804321, 46.509735 ], [ 14.631042, 46.432178 ], [ 15.136414, 46.658862 ], [ 16.009827, 46.685247 ], [ 16.202087, 46.852678 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.150879, 47.116869 ], [ 12.376099, 46.768087 ], [ 13.804321, 46.509735 ], [ 13.697205, 46.017946 ], [ 13.936157, 45.592900 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.381592, 44.887012 ], [ 12.260742, 44.602202 ], [ 12.587585, 44.091531 ], [ 13.524170, 43.588349 ], [ 14.029541, 42.761129 ], [ 15.141907, 41.955405 ], [ 15.924683, 41.961532 ], [ 16.169128, 41.740578 ], [ 15.888977, 41.541478 ], [ 17.267761, 40.979898 ], [ 17.517700, 40.878218 ], [ 17.622070, 40.813809 ], [ 14.029541, 40.813809 ], [ 13.851013, 40.979898 ], [ 13.625793, 41.188989 ], [ 12.886963, 41.255097 ], [ 12.104187, 41.705729 ], [ 11.250000, 42.315909 ], [ 11.189575, 42.356514 ], [ 11.030273, 42.494378 ], [ 11.030273, 46.756798 ], [ 11.046753, 46.753035 ], [ 11.162109, 46.942762 ], [ 11.250000, 46.957761 ], [ 12.150879, 47.116869 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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": "Polygon", "coordinates": [ [ [ 16.564636, 46.504064 ], [ 16.880493, 46.381044 ], [ 17.627563, 45.953059 ], [ 18.454285, 45.759859 ], [ 18.827820, 45.909122 ], [ 19.072266, 45.521744 ], [ 19.388123, 45.238152 ], [ 19.003601, 44.861710 ], [ 18.553162, 45.083218 ], [ 17.861023, 45.069641 ], [ 17.001343, 45.234283 ], [ 16.534424, 45.213004 ], [ 16.317444, 45.005593 ], [ 15.957642, 45.234283 ], [ 15.748901, 44.818864 ], [ 16.237793, 44.351350 ], [ 16.454773, 44.042193 ], [ 16.913452, 43.667872 ], [ 17.295227, 43.446937 ], [ 17.674255, 43.028745 ], [ 18.558655, 42.650122 ], [ 18.448792, 42.480200 ], [ 17.509460, 42.851806 ], [ 16.929932, 43.211182 ], [ 16.015320, 43.508721 ], [ 15.172119, 44.243231 ], [ 15.375366, 44.317953 ], [ 14.919434, 44.738930 ], [ 14.900208, 45.077400 ], [ 14.257507, 45.234283 ], [ 13.949890, 44.803276 ], [ 13.656006, 45.137493 ], [ 13.677979, 45.485169 ], [ 13.713684, 45.500572 ], [ 14.411316, 45.467836 ], [ 14.592590, 45.635167 ], [ 14.933167, 45.473614 ], [ 15.325928, 45.452424 ], [ 15.323181, 45.733025 ], [ 15.669250, 45.834540 ], [ 15.768127, 46.238752 ], [ 16.564636, 46.504064 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Hungary", "sov_a3": "HUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Hungary", "adm0_a3": "HUN", "geou_dif": 0, "geounit": "Hungary", "gu_a3": "HUN", "su_dif": 0, "subunit": "Hungary", "su_a3": "HUN", "brk_diff": 0, "name": "Hungary", "name_long": "Hungary", "brk_a3": "HUN", "brk_name": "Hungary", "abbrev": "Hun.", "postal": "HU", "formal_en": "Republic of Hungary", "name_sort": "Hungary", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 9905596, "gdp_md_est": 196600, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "HU", "iso_a3": "HUN", "iso_n3": "348", "un_a3": "348", "wb_a2": "HU", "wb_a3": "HUN", "woe_id": -99, "adm0_a3_is": "HUN", "adm0_a3_us": "HUN", "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": "Polygon", "coordinates": [ [ [ 20.799866, 48.625647 ], [ 21.871033, 48.321560 ], [ 22.085266, 48.423733 ], [ 22.500000, 48.221013 ], [ 22.640076, 48.151428 ], [ 22.708740, 47.883197 ], [ 22.500000, 47.811310 ], [ 22.098999, 47.672786 ], [ 21.623840, 46.995241 ], [ 21.019592, 46.316584 ], [ 20.217590, 46.128460 ], [ 19.594116, 46.172223 ], [ 18.827820, 45.909122 ], [ 18.454285, 45.759859 ], [ 17.627563, 45.953059 ], [ 16.880493, 46.381044 ], [ 16.564636, 46.504064 ], [ 16.369629, 46.841407 ], [ 16.202087, 46.852678 ], [ 16.531677, 47.496792 ], [ 16.339417, 47.713458 ], [ 16.902466, 47.715306 ], [ 16.979370, 48.123934 ], [ 17.487488, 47.868459 ], [ 17.855530, 47.759637 ], [ 18.695984, 47.881355 ], [ 18.775635, 48.083584 ], [ 19.173889, 48.112933 ], [ 19.660034, 48.266741 ], [ 19.767151, 48.202710 ], [ 20.236816, 48.328865 ], [ 20.473022, 48.563885 ], [ 20.799866, 48.625647 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.535706, 49.066668 ], [ 22.381897, 48.922499 ], [ 22.280273, 48.826757 ], [ 22.085266, 48.423733 ], [ 21.871033, 48.321560 ], [ 20.799866, 48.625647 ], [ 20.473022, 48.563885 ], [ 20.236816, 48.328865 ], [ 19.767151, 48.202710 ], [ 19.660034, 48.266741 ], [ 19.173889, 48.112933 ], [ 18.775635, 48.083584 ], [ 18.695984, 47.881355 ], [ 17.855530, 47.759637 ], [ 17.487488, 47.868459 ], [ 16.979370, 48.123934 ], [ 16.877747, 48.471100 ], [ 17.100220, 48.817716 ], [ 17.542419, 48.801436 ], [ 17.885742, 48.904449 ], [ 17.891235, 48.922499 ], [ 17.913208, 48.998240 ], [ 18.102722, 49.045070 ], [ 18.110962, 49.066668 ], [ 22.535706, 49.066668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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.001343, 45.234283 ], [ 17.861023, 45.069641 ], [ 18.553162, 45.083218 ], [ 19.003601, 44.861710 ], [ 19.366150, 44.863656 ], [ 19.116211, 44.423973 ], [ 19.599609, 44.040219 ], [ 19.451294, 43.568452 ], [ 19.217834, 43.524655 ], [ 19.031067, 43.432977 ], [ 18.704224, 43.201172 ], [ 18.558655, 42.650122 ], [ 17.674255, 43.028745 ], [ 17.295227, 43.446937 ], [ 16.913452, 43.667872 ], [ 16.454773, 44.042193 ], [ 16.237793, 44.351350 ], [ 15.748901, 44.818864 ], [ 15.957642, 45.234283 ], [ 16.317444, 45.005593 ], [ 16.534424, 45.213004 ], [ 17.001343, 45.234283 ] ] ] } } +, +{ "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.217834, 43.524655 ], [ 19.481506, 43.353144 ], [ 19.629822, 43.215185 ], [ 19.956665, 43.106999 ], [ 20.338440, 42.900113 ], [ 20.256042, 42.813537 ], [ 20.069275, 42.589489 ], [ 19.800110, 42.500453 ], [ 19.736938, 42.688492 ], [ 19.302979, 42.195969 ], [ 19.371643, 41.877741 ], [ 19.160156, 41.955405 ], [ 18.880005, 42.283405 ], [ 18.448792, 42.480200 ], [ 18.558655, 42.650122 ], [ 18.704224, 43.201172 ], [ 19.031067, 43.432977 ], [ 19.217834, 43.524655 ] ] ] } } +, +{ "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.594116, 46.172223 ], [ 20.217590, 46.128460 ], [ 20.761414, 45.734943 ], [ 20.874023, 45.417732 ], [ 21.481018, 45.182037 ], [ 21.560669, 44.770137 ], [ 22.142944, 44.478871 ], [ 22.458801, 44.703802 ], [ 22.500000, 44.682325 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.429857 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.384729 ], [ 22.656555, 44.235360 ], [ 22.500000, 44.091531 ], [ 22.409363, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.719727, 43.448931 ], [ 22.719727, 42.994603 ], [ 22.604370, 42.900113 ], [ 22.500000, 42.700604 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.512602 ], [ 22.543945, 42.461967 ], [ 22.500000, 42.423457 ], [ 22.379150, 42.322001 ], [ 21.914978, 42.303722 ], [ 21.574402, 42.246819 ], [ 21.541443, 42.322001 ], [ 21.662292, 42.439674 ], [ 21.774902, 42.684454 ], [ 21.632080, 42.678397 ], [ 21.437073, 42.863886 ], [ 21.272278, 42.910172 ], [ 21.143188, 43.068888 ], [ 20.956421, 43.131057 ], [ 20.813599, 43.273206 ], [ 20.635071, 43.217187 ], [ 20.494995, 42.886027 ], [ 20.256042, 42.813537 ], [ 20.338440, 42.900113 ], [ 19.956665, 43.106999 ], [ 19.629822, 43.215185 ], [ 19.481506, 43.353144 ], [ 19.217834, 43.524655 ], [ 19.451294, 43.568452 ], [ 19.599609, 44.040219 ], [ 19.116211, 44.423973 ], [ 19.366150, 44.863656 ], [ 19.003601, 44.861710 ], [ 19.388123, 45.238152 ], [ 19.072266, 45.521744 ], [ 18.827820, 45.909122 ], [ 19.594116, 46.172223 ] ] ] } } +, +{ "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.813599, 43.273206 ], [ 20.956421, 43.131057 ], [ 21.143188, 43.068888 ], [ 21.272278, 42.910172 ], [ 21.437073, 42.863886 ], [ 21.632080, 42.678397 ], [ 21.774902, 42.684454 ], [ 21.662292, 42.439674 ], [ 21.541443, 42.322001 ], [ 21.574402, 42.246819 ], [ 21.351929, 42.208176 ], [ 20.761414, 42.053372 ], [ 20.714722, 41.849105 ], [ 20.588379, 41.857288 ], [ 20.522461, 42.218348 ], [ 20.283508, 42.322001 ], [ 20.069275, 42.589489 ], [ 20.256042, 42.813537 ], [ 20.494995, 42.886027 ], [ 20.635071, 43.217187 ], [ 20.813599, 43.273206 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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.736938, 42.688492 ], [ 19.800110, 42.500453 ], [ 20.069275, 42.589489 ], [ 20.283508, 42.322001 ], [ 20.522461, 42.218348 ], [ 20.588379, 41.857288 ], [ 20.462036, 41.516804 ], [ 20.604858, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.019592, 40.842905 ], [ 21.016846, 40.813809 ], [ 19.327698, 40.813809 ], [ 19.349670, 40.979898 ], [ 19.401855, 41.409776 ], [ 19.539185, 41.720081 ], [ 19.371643, 41.877741 ], [ 19.302979, 42.195969 ], [ 19.736938, 42.688492 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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.379150, 42.322001 ], [ 22.500000, 42.244785 ], [ 22.719727, 42.104336 ], [ 22.719727, 41.261291 ], [ 22.596130, 41.131090 ], [ 22.500000, 41.135227 ], [ 22.055054, 41.151774 ], [ 21.758423, 40.979898 ], [ 21.673279, 40.932190 ], [ 21.019592, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.087632 ], [ 20.462036, 41.516804 ], [ 20.588379, 41.857288 ], [ 20.714722, 41.849105 ], [ 20.761414, 42.053372 ], [ 21.351929, 42.208176 ], [ 21.914978, 42.303722 ], [ 22.379150, 42.322001 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "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": "Polygon", "coordinates": [ [ [ 22.719727, 47.886881 ], [ 22.719727, 44.146740 ], [ 22.656555, 44.235360 ], [ 22.500000, 44.384729 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.429857 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.682325 ], [ 22.458801, 44.703802 ], [ 22.142944, 44.478871 ], [ 21.560669, 44.770137 ], [ 21.481018, 45.182037 ], [ 20.874023, 45.417732 ], [ 20.761414, 45.734943 ], [ 20.217590, 46.128460 ], [ 21.019592, 46.316584 ], [ 21.623840, 46.995241 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.811310 ], [ 22.708740, 47.883197 ], [ 22.719727, 47.886881 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.719727, 42.994603 ], [ 22.719727, 42.104336 ], [ 22.500000, 42.244785 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.423457 ], [ 22.543945, 42.461967 ], [ 22.500000, 42.512602 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.700604 ], [ 22.604370, 42.900113 ], [ 22.719727, 42.994603 ] ] ], [ [ [ 22.719727, 43.448931 ], [ 22.500000, 43.644026 ], [ 22.409363, 44.008620 ], [ 22.500000, 44.091531 ], [ 22.656555, 44.235360 ], [ 22.719727, 44.146740 ], [ 22.719727, 43.448931 ] ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 22.629089, 49.066668 ], [ 22.719727, 49.043269 ], [ 22.719727, 47.886881 ], [ 22.708740, 47.883197 ], [ 22.640076, 48.151428 ], [ 22.500000, 48.221013 ], [ 22.085266, 48.423733 ], [ 22.280273, 48.826757 ], [ 22.381897, 48.922499 ], [ 22.535706, 49.066668 ], [ 22.629089, 49.066668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "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": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 41.261291 ], [ 22.719727, 40.813809 ], [ 21.016846, 40.813809 ], [ 21.019592, 40.842905 ], [ 21.673279, 40.932190 ], [ 21.758423, 40.979898 ], [ 22.055054, 41.151774 ], [ 22.500000, 41.135227 ], [ 22.596130, 41.131090 ], [ 22.719727, 41.261291 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 21.266785, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.500000, 54.949231 ], [ 22.719727, 54.870285 ], [ 22.719727, 54.759501 ], [ 22.648315, 54.583205 ], [ 22.719727, 54.364558 ], [ 22.719727, 54.327736 ], [ 22.500000, 54.326135 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.426920 ], [ 19.888000, 54.867124 ], [ 21.266785, 55.191412 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.505188, 55.899956 ], [ 12.582092, 55.776573 ], [ 12.689209, 55.610935 ], [ 12.087708, 54.800685 ], [ 11.250000, 55.254077 ], [ 11.041260, 55.365064 ], [ 11.030273, 55.405629 ], [ 11.030273, 55.808999 ], [ 11.431274, 55.899956 ], [ 12.505188, 55.899956 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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": "Polygon", "coordinates": [ [ [ 14.449768, 55.899956 ], [ 14.361877, 55.776573 ], [ 14.098206, 55.408748 ], [ 12.941895, 55.361942 ], [ 12.801819, 55.776573 ], [ 12.760620, 55.899956 ], [ 14.449768, 55.899956 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.516174, 54.471634 ], [ 13.645020, 54.077117 ], [ 14.117432, 53.758454 ], [ 14.350891, 53.248782 ], [ 14.073486, 52.981723 ], [ 14.436035, 52.626395 ], [ 14.683228, 52.091320 ], [ 14.606323, 51.745738 ], [ 15.015564, 51.106971 ], [ 14.570618, 51.003386 ], [ 14.306946, 51.117317 ], [ 14.054260, 50.927276 ], [ 13.337402, 50.734717 ], [ 12.966614, 50.485474 ], [ 12.238770, 50.266521 ], [ 12.414551, 49.970656 ], [ 12.518921, 49.548380 ], [ 13.029785, 49.307217 ], [ 13.535156, 48.922499 ], [ 13.595581, 48.877361 ], [ 13.518677, 48.777913 ], [ 11.030273, 48.777913 ], [ 11.030273, 54.025520 ], [ 11.250000, 54.067448 ], [ 11.955872, 54.197797 ], [ 12.516174, 54.471634 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Czech Republic", "sov_a3": "CZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Czech Republic", "adm0_a3": "CZE", "geou_dif": 0, "geounit": "Czech Republic", "gu_a3": "CZE", "su_dif": 0, "subunit": "Czech Republic", "su_a3": "CZE", "brk_diff": 0, "name": "Czech Rep.", "name_long": "Czech Republic", "brk_a3": "CZE", "brk_name": "Czech Rep.", "abbrev": "Cz. Rep.", "postal": "CZ", "formal_en": "Czech Republic", "name_sort": "Czech Republic", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 10211904, "gdp_md_est": 265200, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CZ", "iso_a3": "CZE", "iso_n3": "203", "un_a3": "203", "wb_a2": "CZ", "wb_a3": "CZE", "woe_id": -99, "adm0_a3_is": "CZE", "adm0_a3_us": "CZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 14, "abbrev_len": 8, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.306946, 51.117317 ], [ 14.570618, 51.003386 ], [ 15.015564, 51.106971 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.698197 ], [ 16.174622, 50.424269 ], [ 16.718445, 50.217337 ], [ 16.866760, 50.474987 ], [ 17.553406, 50.362985 ], [ 17.646790, 50.050085 ], [ 18.391113, 49.990084 ], [ 18.852539, 49.496675 ], [ 18.553162, 49.496675 ], [ 18.399353, 49.316171 ], [ 18.168640, 49.273181 ], [ 18.102722, 49.045070 ], [ 17.913208, 48.998240 ], [ 17.891235, 48.922499 ], [ 17.885742, 48.904449 ], [ 17.542419, 48.801436 ], [ 17.100220, 48.817716 ], [ 17.075500, 48.777913 ], [ 16.517944, 48.777913 ], [ 16.498718, 48.786962 ], [ 16.427307, 48.777913 ], [ 15.916443, 48.777913 ], [ 15.548401, 48.922499 ], [ 15.251770, 49.039668 ], [ 14.900208, 48.965794 ], [ 14.842529, 48.922499 ], [ 14.642029, 48.777913 ], [ 13.823547, 48.777913 ], [ 13.595581, 48.877361 ], [ 13.535156, 48.922499 ], [ 13.029785, 49.307217 ], [ 12.518921, 49.548380 ], [ 12.414551, 49.970656 ], [ 12.238770, 50.266521 ], [ 12.966614, 50.485474 ], [ 13.337402, 50.734717 ], [ 14.054260, 50.927276 ], [ 14.306946, 51.117317 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Poland", "sov_a3": "POL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Poland", "adm0_a3": "POL", "geou_dif": 0, "geounit": "Poland", "gu_a3": "POL", "su_dif": 0, "subunit": "Poland", "su_a3": "POL", "brk_diff": 0, "name": "Poland", "name_long": "Poland", "brk_a3": "POL", "brk_name": "Poland", "abbrev": "Pol.", "postal": "PL", "formal_en": "Republic of Poland", "name_sort": "Poland", "mapcolor7": 3, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 38482919, "gdp_md_est": 667900, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PL", "iso_a3": "POL", "iso_n3": "616", "un_a3": "616", "wb_a2": "PL", "wb_a3": "POL", "woe_id": -99, "adm0_a3_is": "POL", "adm0_a3_us": "POL", "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": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.622070, 54.852896 ], [ 18.619080, 54.683359 ], [ 18.695984, 54.439700 ], [ 19.660034, 54.426920 ], [ 20.890503, 54.313319 ], [ 22.500000, 54.326135 ], [ 22.719727, 54.327736 ], [ 22.719727, 49.664072 ], [ 22.516479, 49.477048 ], [ 22.719727, 49.127814 ], [ 22.719727, 49.043269 ], [ 22.557678, 49.086459 ], [ 22.500000, 49.109838 ], [ 21.607361, 49.471694 ], [ 20.887756, 49.330492 ], [ 20.415344, 49.432413 ], [ 19.824829, 49.217597 ], [ 19.319458, 49.573321 ], [ 18.907471, 49.435985 ], [ 18.391113, 49.990084 ], [ 17.646790, 50.050085 ], [ 17.553406, 50.362985 ], [ 16.866760, 50.474987 ], [ 16.718445, 50.217337 ], [ 16.174622, 50.424269 ], [ 16.237793, 50.698197 ], [ 15.490723, 50.785102 ], [ 15.015564, 51.106971 ], [ 14.606323, 51.745738 ], [ 14.683228, 52.091320 ], [ 14.436035, 52.626395 ], [ 14.073486, 52.981723 ], [ 14.350891, 53.248782 ], [ 14.117432, 53.758454 ], [ 14.801331, 54.051327 ], [ 16.361389, 54.514704 ], [ 17.622070, 54.852896 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Austria", "sov_a3": "AUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Austria", "adm0_a3": "AUT", "geou_dif": 0, "geounit": "Austria", "gu_a3": "AUT", "su_dif": 0, "subunit": "Austria", "su_a3": "AUT", "brk_diff": 0, "name": "Austria", "name_long": "Austria", "brk_a3": "AUT", "brk_name": "Austria", "abbrev": "Aust.", "postal": "A", "formal_en": "Republic of Austria", "name_sort": "Austria", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 8210281, "gdp_md_est": 329500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AT", "iso_a3": "AUT", "iso_n3": "040", "un_a3": "040", "wb_a2": "AT", "wb_a3": "AUT", "woe_id": -99, "adm0_a3_is": "AUT", "adm0_a3_us": "AUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.595581, 48.877361 ], [ 13.823547, 48.777913 ], [ 13.518677, 48.777913 ], [ 13.595581, 48.877361 ] ] ], [ [ [ 15.548401, 48.922499 ], [ 15.916443, 48.777913 ], [ 14.642029, 48.777913 ], [ 14.842529, 48.922499 ], [ 14.900208, 48.965794 ], [ 15.251770, 49.039668 ], [ 15.548401, 48.922499 ] ] ], [ [ [ 16.517944, 48.777913 ], [ 16.427307, 48.777913 ], [ 16.498718, 48.786962 ], [ 16.517944, 48.777913 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.319458, 49.573321 ], [ 19.824829, 49.217597 ], [ 20.415344, 49.432413 ], [ 20.887756, 49.330492 ], [ 21.607361, 49.471694 ], [ 22.500000, 49.109838 ], [ 22.557678, 49.086459 ], [ 22.500000, 49.032466 ], [ 22.381897, 48.922499 ], [ 22.280273, 48.826757 ], [ 22.255554, 48.777913 ], [ 17.075500, 48.777913 ], [ 17.100220, 48.817716 ], [ 17.542419, 48.801436 ], [ 17.885742, 48.904449 ], [ 17.891235, 48.922499 ], [ 17.913208, 48.998240 ], [ 18.102722, 49.045070 ], [ 18.168640, 49.273181 ], [ 18.399353, 49.316171 ], [ 18.553162, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.907471, 49.435985 ], [ 19.319458, 49.573321 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.719727, 54.870285 ], [ 22.500000, 54.949231 ], [ 22.313232, 55.015426 ], [ 21.266785, 55.191412 ], [ 21.118469, 55.776573 ], [ 21.088257, 55.899956 ], [ 22.719727, 55.899956 ], [ 22.719727, 54.870285 ] ] ], [ [ [ 22.719727, 54.759501 ], [ 22.719727, 54.364558 ], [ 22.648315, 54.583205 ], [ 22.719727, 54.759501 ] ] ] ] } } +, +{ "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": [ [ [ [ 22.719727, 49.043269 ], [ 22.719727, 48.777913 ], [ 22.255554, 48.777913 ], [ 22.280273, 48.826757 ], [ 22.381897, 48.922499 ], [ 22.500000, 49.032466 ], [ 22.557678, 49.086459 ], [ 22.719727, 49.043269 ] ] ], [ [ [ 22.719727, 49.127814 ], [ 22.516479, 49.477048 ], [ 22.719727, 49.664072 ], [ 22.719727, 49.127814 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 12.104187, 61.710706 ], [ 12.236023, 61.606396 ], [ 12.628784, 61.293988 ], [ 12.299194, 60.118251 ], [ 11.466980, 59.432506 ], [ 11.250000, 59.149178 ], [ 11.030273, 58.860644 ], [ 11.030273, 61.710706 ], [ 12.104187, 61.710706 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.370605, 56.111873 ], [ 12.582092, 55.776573 ], [ 12.661743, 55.652798 ], [ 11.030273, 55.652798 ], [ 11.030273, 55.808999 ], [ 11.250000, 55.859900 ], [ 12.370605, 56.111873 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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": "Polygon", "coordinates": [ [ [ 17.306213, 61.710706 ], [ 17.254028, 61.606396 ], [ 17.119446, 61.341444 ], [ 17.830811, 60.636836 ], [ 18.786621, 60.082653 ], [ 17.866516, 58.954258 ], [ 16.828308, 58.721173 ], [ 16.446533, 57.042224 ], [ 15.877991, 56.105747 ], [ 14.664001, 56.202121 ], [ 14.361877, 55.776573 ], [ 14.273987, 55.652798 ], [ 12.845764, 55.652798 ], [ 12.801819, 55.776573 ], [ 12.623291, 56.307396 ], [ 11.785583, 57.441993 ], [ 11.250000, 58.449170 ], [ 11.030273, 58.852121 ], [ 11.030273, 58.860644 ], [ 11.250000, 59.149178 ], [ 11.466980, 59.432506 ], [ 12.299194, 60.118251 ], [ 12.628784, 61.293988 ], [ 12.236023, 61.606396 ], [ 12.104187, 61.710706 ], [ 17.306213, 61.710706 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 61.710706 ], [ 22.719727, 59.989371 ], [ 22.500000, 60.196156 ], [ 22.288513, 60.392148 ], [ 21.321716, 60.720228 ], [ 21.519470, 61.606396 ], [ 21.544189, 61.705499 ], [ 21.541443, 61.710706 ], [ 22.719727, 61.710706 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "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": "Polygon", "coordinates": [ [ [ 22.521973, 57.754007 ], [ 22.719727, 57.571834 ], [ 22.719727, 56.318060 ], [ 22.500000, 56.327198 ], [ 22.200623, 56.337856 ], [ 21.055298, 56.032157 ], [ 21.088257, 56.784332 ], [ 21.579895, 57.412420 ], [ 22.500000, 57.745213 ], [ 22.521973, 57.754007 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.200623, 56.337856 ], [ 22.500000, 56.327198 ], [ 22.719727, 56.318060 ], [ 22.719727, 55.652798 ], [ 21.151428, 55.652798 ], [ 21.118469, 55.776573 ], [ 21.055298, 56.032157 ], [ 22.200623, 56.337856 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 15.468750, 66.600676 ], [ 15.391846, 66.513260 ], [ 15.106201, 66.194900 ], [ 13.554382, 64.788168 ], [ 13.919678, 64.445557 ], [ 13.570862, 64.049373 ], [ 12.579346, 64.067396 ], [ 11.928406, 63.129538 ], [ 11.991577, 61.800390 ], [ 12.236023, 61.606396 ], [ 12.367859, 61.501734 ], [ 11.030273, 61.501734 ], [ 11.030273, 64.876938 ], [ 11.250000, 65.045491 ], [ 12.356873, 65.880337 ], [ 13.125916, 66.513260 ], [ 13.233032, 66.600676 ], [ 15.468750, 66.600676 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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": "Polygon", "coordinates": [ [ [ 22.719727, 66.600676 ], [ 22.719727, 65.812906 ], [ 22.500000, 65.776871 ], [ 22.181396, 65.723852 ], [ 21.211853, 65.026945 ], [ 21.368408, 64.414735 ], [ 19.778137, 63.609658 ], [ 17.847290, 62.749696 ], [ 17.254028, 61.606396 ], [ 17.199097, 61.501734 ], [ 12.367859, 61.501734 ], [ 12.236023, 61.606396 ], [ 11.991577, 61.800390 ], [ 11.928406, 63.129538 ], [ 12.579346, 64.067396 ], [ 13.570862, 64.049373 ], [ 13.919678, 64.445557 ], [ 13.554382, 64.788168 ], [ 15.106201, 66.194900 ], [ 15.391846, 66.513260 ], [ 15.468750, 66.600676 ], [ 22.719727, 66.600676 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 63.951849 ], [ 22.719727, 61.501734 ], [ 21.497498, 61.501734 ], [ 21.519470, 61.606396 ], [ 21.544189, 61.705499 ], [ 21.058044, 62.608508 ], [ 21.535950, 63.190302 ], [ 22.442322, 63.818864 ], [ 22.500000, 63.845512 ], [ 22.719727, 63.951849 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 21.376648, 70.255741 ], [ 22.500000, 70.219523 ], [ 22.719727, 70.212085 ], [ 22.719727, 68.855592 ], [ 22.500000, 68.847665 ], [ 22.354431, 68.842709 ], [ 21.244812, 69.370638 ], [ 20.643311, 69.106797 ], [ 20.022583, 69.065619 ], [ 19.877014, 68.407268 ], [ 17.992859, 68.567410 ], [ 17.726440, 68.010656 ], [ 16.767883, 68.014770 ], [ 16.108704, 67.302797 ], [ 15.391846, 66.513260 ], [ 15.312195, 66.425537 ], [ 13.016052, 66.425537 ], [ 13.125916, 66.513260 ], [ 14.760132, 67.811319 ], [ 16.435547, 68.563395 ], [ 19.182129, 69.817839 ], [ 21.376648, 70.255741 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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": "Polygon", "coordinates": [ [ [ 20.643311, 69.106797 ], [ 21.978149, 68.617535 ], [ 22.500000, 68.392101 ], [ 22.719727, 68.296827 ], [ 22.719727, 66.425537 ], [ 15.312195, 66.425537 ], [ 15.391846, 66.513260 ], [ 16.108704, 67.302797 ], [ 16.767883, 68.014770 ], [ 17.726440, 68.010656 ], [ 17.992859, 68.567410 ], [ 19.877014, 68.407268 ], [ 20.022583, 69.065619 ], [ 20.643311, 69.106797 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.244812, 69.370638 ], [ 22.354431, 68.842709 ], [ 22.500000, 68.847665 ], [ 22.719727, 68.855592 ], [ 22.719727, 68.296827 ], [ 22.500000, 68.392101 ], [ 21.978149, 68.617535 ], [ 20.643311, 69.106797 ], [ 21.244812, 69.370638 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 17.163391, 76.890745 ], [ 17.133179, 76.840816 ], [ 17.116699, 76.809516 ], [ 15.910950, 76.770602 ], [ 15.669250, 76.840816 ], [ 15.496216, 76.890745 ], [ 17.163391, 76.890745 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 20.434570, 79.212538 ], [ 20.615845, 79.171335 ], [ 21.541443, 78.956138 ], [ 19.025574, 78.562667 ], [ 18.470764, 77.826799 ], [ 17.591858, 77.638306 ], [ 17.133179, 76.840816 ], [ 17.116699, 76.809516 ], [ 16.537170, 76.790701 ], [ 15.842285, 76.790701 ], [ 15.669250, 76.840816 ], [ 13.760376, 77.380506 ], [ 14.669495, 77.736118 ], [ 13.169861, 78.025004 ], [ 11.250000, 78.857848 ], [ 11.219788, 78.869518 ], [ 11.030273, 79.068167 ], [ 11.030273, 79.212538 ], [ 20.434570, 79.212538 ] ] ], [ [ [ 22.719727, 78.439474 ], [ 22.719727, 77.488064 ], [ 22.500000, 77.446940 ], [ 22.489014, 77.445149 ], [ 20.725708, 77.677053 ], [ 21.415100, 77.935203 ], [ 20.810852, 78.254743 ], [ 22.500000, 78.418539 ], [ 22.719727, 78.439474 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 16.990356, 80.050934 ], [ 18.251038, 79.701925 ], [ 20.615845, 79.171335 ], [ 20.794373, 79.129976 ], [ 11.030273, 79.129976 ], [ 11.030273, 79.730854 ], [ 11.250000, 79.759702 ], [ 13.169861, 80.010518 ], [ 13.716431, 79.660599 ], [ 15.141907, 79.674392 ], [ 15.520935, 80.016233 ], [ 16.990356, 80.050934 ] ] ], [ [ [ 22.719727, 80.599153 ], [ 22.719727, 79.417753 ], [ 22.500000, 79.430356 ], [ 20.074768, 79.567014 ], [ 19.896240, 79.842378 ], [ 18.459778, 79.860284 ], [ 17.366638, 80.319196 ], [ 20.453796, 80.598255 ], [ 21.906738, 80.357916 ], [ 22.500000, 80.534330 ], [ 22.719727, 80.599153 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 33.969727, -83.956169 ], [ 33.969727, -85.070048 ], [ 22.280273, -85.070048 ], [ 22.280273, -83.956169 ], [ 33.969727, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 33.969727, -82.648222 ], [ 33.969727, -84.002262 ], [ 22.280273, -84.002262 ], [ 22.280273, -82.648222 ], [ 33.969727, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 33.969727, -81.059130 ], [ 33.969727, -82.704241 ], [ 22.280273, -82.704241 ], [ 22.280273, -81.059130 ], [ 33.969727, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 33.969727, -79.129976 ], [ 33.969727, -81.127169 ], [ 22.280273, -81.127169 ], [ 22.280273, -79.129976 ], [ 33.969727, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 33.969727, -76.790701 ], [ 33.969727, -79.212538 ], [ 22.280273, -79.212538 ], [ 22.280273, -76.790701 ], [ 33.969727, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 33.969727, -73.958939 ], [ 33.969727, -76.890745 ], [ 22.280273, -76.890745 ], [ 22.280273, -73.958939 ], [ 33.969727, -73.958939 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 33.969727, -70.539543 ], [ 33.969727, -74.079925 ], [ 22.280273, -74.079925 ], [ 22.280273, -70.566062 ], [ 22.500000, -70.665426 ], [ 22.568665, -70.696320 ], [ 23.096008, -70.612614 ], [ 23.549194, -70.539543 ], [ 33.969727, -70.539543 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 24 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 22.280273, -70.566062 ], [ 22.541199, -70.685421 ], [ 22.280273, -70.685421 ], [ 22.280273, -70.566062 ] ] ], [ [ [ 33.969727, -68.517173 ], [ 33.969727, -70.685421 ], [ 22.642822, -70.685421 ], [ 23.096008, -70.612614 ], [ 23.664551, -70.520318 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.461615 ], [ 28.092041, -70.324288 ], [ 29.149475, -70.206506 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.989441, -69.658041 ], [ 32.752991, -69.384181 ], [ 33.302307, -68.834777 ], [ 33.750000, -68.573431 ], [ 33.868103, -68.502080 ], [ 33.969727, -68.517173 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 19 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Africa", "sov_a3": "ZAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Africa", "adm0_a3": "ZAF", "geou_dif": 0, "geounit": "South Africa", "gu_a3": "ZAF", "su_dif": 0, "subunit": "South Africa", "su_a3": "ZAF", "brk_diff": 0, "name": "South Africa", "name_long": "South Africa", "brk_a3": "ZAF", "brk_name": "South Africa", "abbrev": "S.Af.", "postal": "ZA", "formal_en": "Republic of South Africa", "name_sort": "South Africa", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 49052489, "gdp_md_est": 491000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ZA", "iso_a3": "ZAF", "iso_n3": "710", "un_a3": "710", "wb_a2": "ZA", "wb_a3": "ZAF", "woe_id": -99, "adm0_a3_is": "ZAF", "adm0_a3_us": "ZAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.371948, -31.765537 ], [ 29.165955, -31.952162 ], [ 28.924255, -32.170963 ], [ 28.218384, -32.771110 ], [ 27.463074, -33.224903 ], [ 26.419373, -33.614619 ], [ 25.908508, -33.664925 ], [ 25.779419, -33.943360 ], [ 25.172424, -33.795126 ], [ 24.675293, -33.986641 ], [ 23.593140, -33.792844 ], [ 22.986145, -33.916013 ], [ 22.571411, -33.863574 ], [ 22.500000, -33.890937 ], [ 22.280273, -33.975253 ], [ 22.280273, -31.765537 ], [ 29.371948, -31.765537 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 18 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zimbabwe", "sov_a3": "ZWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zimbabwe", "adm0_a3": "ZWE", "geou_dif": 0, "geounit": "Zimbabwe", "gu_a3": "ZWE", "su_dif": 0, "subunit": "Zimbabwe", "su_a3": "ZWE", "brk_diff": 0, "name": "Zimbabwe", "name_long": "Zimbabwe", "brk_a3": "ZWE", "brk_name": "Zimbabwe", "abbrev": "Zimb.", "postal": "ZW", "formal_en": "Republic of Zimbabwe", "name_sort": "Zimbabwe", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 12619600, "gdp_md_est": 9323, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ZW", "iso_a3": "ZWE", "iso_n3": "716", "un_a3": "716", "wb_a2": "ZW", "wb_a3": "ZWE", "woe_id": -99, "adm0_a3_is": "ZWE", "adm0_a3_us": "ZWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.665344, -21.739091 ], [ 31.475830, -21.943046 ], [ 31.190186, -22.250971 ], [ 30.657349, -22.149252 ], [ 30.322266, -22.271306 ], [ 29.838867, -22.100909 ], [ 29.429626, -22.090730 ], [ 29.220886, -21.943046 ], [ 28.932495, -21.739091 ], [ 31.665344, -21.739091 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mozambique", "sov_a3": "MOZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mozambique", "adm0_a3": "MOZ", "geou_dif": 0, "geounit": "Mozambique", "gu_a3": "MOZ", "su_dif": 0, "subunit": "Mozambique", "su_a3": "MOZ", "brk_diff": 0, "name": "Mozambique", "name_long": "Mozambique", "brk_a3": "MOZ", "brk_name": "Mozambique", "abbrev": "Moz.", "postal": "MZ", "formal_en": "Republic of Mozambique", "name_sort": "Mozambique", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 21669278, "gdp_md_est": 18940, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MZ", "iso_a3": "MOZ", "iso_n3": "508", "un_a3": "508", "wb_a2": "MZ", "wb_a3": "MOZ", "woe_id": -99, "adm0_a3_is": "MOZ", "adm0_a3_us": "MOZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, -21.739091 ], [ 33.969727, -24.926295 ], [ 33.750000, -25.025884 ], [ 33.011169, -25.356437 ], [ 32.574463, -25.725684 ], [ 32.659607, -26.148042 ], [ 32.915039, -26.214591 ], [ 32.829895, -26.740705 ], [ 32.069092, -26.733346 ], [ 31.983948, -26.290953 ], [ 31.835632, -25.841921 ], [ 31.750488, -25.482951 ], [ 31.929016, -24.367114 ], [ 31.668091, -23.657104 ], [ 31.190186, -22.250971 ], [ 31.475830, -21.943046 ], [ 31.665344, -21.739091 ], [ 33.969727, -21.739091 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 28.932495, -21.739091 ], [ 29.220886, -21.943046 ], [ 29.429626, -22.090730 ], [ 28.015137, -22.826820 ], [ 27.117004, -23.574057 ], [ 26.784668, -24.239451 ], [ 26.485291, -24.614560 ], [ 25.941467, -24.694439 ], [ 25.765686, -25.172631 ], [ 25.664062, -25.485431 ], [ 25.024109, -25.718261 ], [ 24.211121, -25.668760 ], [ 23.733215, -25.388698 ], [ 23.310242, -25.267052 ], [ 22.824097, -25.500306 ], [ 22.576904, -25.977799 ], [ 22.500000, -26.029638 ], [ 22.280273, -26.167764 ], [ 22.280273, -21.739091 ], [ 28.932495, -21.739091 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Africa", "sov_a3": "ZAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Africa", "adm0_a3": "ZAF", "geou_dif": 0, "geounit": "South Africa", "gu_a3": "ZAF", "su_dif": 0, "subunit": "South Africa", "su_a3": "ZAF", "brk_diff": 0, "name": "South Africa", "name_long": "South Africa", "brk_a3": "ZAF", "brk_name": "South Africa", "abbrev": "S.Af.", "postal": "ZA", "formal_en": "Republic of South Africa", "name_sort": "South Africa", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 49052489, "gdp_md_est": 491000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ZA", "iso_a3": "ZAF", "iso_n3": "710", "un_a3": "710", "wb_a2": "ZA", "wb_a3": "ZAF", "woe_id": -99, "adm0_a3_is": "ZAF", "adm0_a3_us": "ZAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.429626, -22.090730 ], [ 29.838867, -22.100909 ], [ 30.322266, -22.271306 ], [ 30.657349, -22.149252 ], [ 31.190186, -22.250971 ], [ 31.668091, -23.657104 ], [ 31.929016, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.835632, -25.841921 ], [ 31.333008, -25.658858 ], [ 31.041870, -25.730633 ], [ 30.948486, -26.022234 ], [ 30.676575, -26.396790 ], [ 30.684814, -26.743158 ], [ 31.280823, -27.283926 ], [ 31.865845, -27.176469 ], [ 32.069092, -26.733346 ], [ 32.829895, -26.740705 ], [ 32.579956, -27.469287 ], [ 32.461853, -28.299544 ], [ 32.200928, -28.750805 ], [ 31.519775, -29.255252 ], [ 31.324768, -29.401320 ], [ 30.899048, -29.909710 ], [ 30.621643, -30.422625 ], [ 30.053101, -31.139954 ], [ 29.165955, -31.952162 ], [ 28.959961, -32.138409 ], [ 22.280273, -32.138409 ], [ 22.280273, -26.167764 ], [ 22.500000, -26.029638 ], [ 22.576904, -25.977799 ], [ 22.824097, -25.500306 ], [ 23.310242, -25.267052 ], [ 23.733215, -25.388698 ], [ 24.211121, -25.668760 ], [ 25.024109, -25.718261 ], [ 25.664062, -25.485431 ], [ 25.765686, -25.172631 ], [ 25.941467, -24.694439 ], [ 26.485291, -24.614560 ], [ 26.784668, -24.239451 ], [ 27.117004, -23.574057 ], [ 28.015137, -22.826820 ], [ 29.429626, -22.090730 ] ], [ [ 28.539734, -28.647210 ], [ 28.072815, -28.849485 ], [ 27.531738, -29.240874 ], [ 26.998901, -29.873992 ], [ 27.748718, -30.645001 ], [ 28.105774, -30.545704 ], [ 28.289795, -30.225848 ], [ 28.847351, -30.069094 ], [ 29.017639, -29.742917 ], [ 29.322510, -29.255252 ], [ 28.976440, -28.955282 ], [ 28.539734, -28.647210 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Swaziland", "sov_a3": "SWZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Swaziland", "adm0_a3": "SWZ", "geou_dif": 0, "geounit": "Swaziland", "gu_a3": "SWZ", "su_dif": 0, "subunit": "Swaziland", "su_a3": "SWZ", "brk_diff": 0, "name": "Swaziland", "name_long": "Swaziland", "brk_a3": "SWZ", "brk_name": "Swaziland", "abbrev": "Swz.", "postal": "SW", "formal_en": "Kingdom of Swaziland", "name_sort": "Swaziland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 1123913, "gdp_md_est": 5702, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SZ", "iso_a3": "SWZ", "iso_n3": "748", "un_a3": "748", "wb_a2": "SZ", "wb_a3": "SWZ", "woe_id": -99, "adm0_a3_is": "SWZ", "adm0_a3_us": "SWZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.333008, -25.658858 ], [ 31.835632, -25.841921 ], [ 31.983948, -26.290953 ], [ 32.069092, -26.733346 ], [ 31.865845, -27.176469 ], [ 31.280823, -27.283926 ], [ 30.684814, -26.743158 ], [ 30.676575, -26.396790 ], [ 30.948486, -26.022234 ], [ 31.041870, -25.730633 ], [ 31.333008, -25.658858 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Lesotho", "sov_a3": "LSO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lesotho", "adm0_a3": "LSO", "geou_dif": 0, "geounit": "Lesotho", "gu_a3": "LSO", "su_dif": 0, "subunit": "Lesotho", "su_a3": "LSO", "brk_diff": 0, "name": "Lesotho", "name_long": "Lesotho", "brk_a3": "LSO", "brk_name": "Lesotho", "abbrev": "Les.", "postal": "LS", "formal_en": "Kingdom of Lesotho", "name_sort": "Lesotho", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 2130819, "gdp_md_est": 3293, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LS", "iso_a3": "LSO", "iso_n3": "426", "un_a3": "426", "wb_a2": "LS", "wb_a3": "LSO", "woe_id": -99, "adm0_a3_is": "LSO", "adm0_a3_us": "LSO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.539734, -28.647210 ], [ 28.976440, -28.955282 ], [ 29.322510, -29.255252 ], [ 29.017639, -29.742917 ], [ 28.847351, -30.069094 ], [ 28.289795, -30.225848 ], [ 28.105774, -30.545704 ], [ 27.748718, -30.645001 ], [ 26.998901, -29.873992 ], [ 27.531738, -29.240874 ], [ 28.072815, -28.849485 ], [ 28.539734, -28.647210 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 17 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.473816, -10.962764 ], [ 28.446350, -11.178402 ], [ 28.372192, -11.792080 ], [ 28.641357, -11.969471 ], [ 29.338989, -12.358783 ], [ 29.613647, -12.176280 ], [ 29.698792, -13.255986 ], [ 28.932495, -13.247966 ], [ 28.523254, -12.696612 ], [ 28.152466, -12.270231 ], [ 27.386169, -12.130635 ], [ 27.163696, -11.606503 ], [ 26.551208, -11.923790 ], [ 25.751953, -11.784014 ], [ 25.416870, -11.329253 ], [ 24.782410, -11.237674 ], [ 24.312744, -11.261919 ], [ 24.296265, -11.178402 ], [ 24.257812, -10.962764 ], [ 28.473816, -10.962764 ] ] ], [ [ [ 23.063049, -10.962764 ], [ 22.835083, -11.016689 ], [ 22.401123, -10.992424 ], [ 22.280273, -11.038255 ], [ 22.280273, -10.962764 ], [ 23.063049, -10.962764 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.280273, -12.900166 ], [ 22.280273, -11.038255 ], [ 22.401123, -10.992424 ], [ 22.835083, -11.016689 ], [ 23.063049, -10.962764 ], [ 23.922729, -10.962764 ], [ 23.996887, -11.178402 ], [ 24.016113, -11.234980 ], [ 23.903503, -11.722167 ], [ 24.079285, -12.189704 ], [ 23.928223, -12.565287 ], [ 24.016113, -12.910875 ], [ 22.500000, -12.900166 ], [ 22.280273, -12.900166 ] ] ], [ [ [ 22.280273, -16.554594 ], [ 22.500000, -16.820316 ], [ 22.560425, -16.896544 ], [ 23.214111, -17.520963 ], [ 22.500000, -17.680662 ], [ 22.280273, -17.730375 ], [ 22.280273, -16.554594 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Namibia", "sov_a3": "NAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Namibia", "adm0_a3": "NAM", "geou_dif": 0, "geounit": "Namibia", "gu_a3": "NAM", "su_dif": 0, "subunit": "Namibia", "su_a3": "NAM", "brk_diff": 0, "name": "Namibia", "name_long": "Namibia", "brk_a3": "NAM", "brk_name": "Namibia", "abbrev": "Nam.", "postal": "NA", "formal_en": "Republic of Namibia", "name_sort": "Namibia", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 2108665, "gdp_md_est": 13250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "NA", "iso_a3": "NAM", "iso_n3": "516", "un_a3": "516", "wb_a2": "NA", "wb_a3": "NAM", "woe_id": -99, "adm0_a3_is": "NAM", "adm0_a3_us": "NAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.032593, -17.295576 ], [ 24.680786, -17.353260 ], [ 25.076294, -17.578576 ], [ 25.081787, -17.659726 ], [ 24.518738, -17.884659 ], [ 24.216614, -17.887273 ], [ 23.576660, -18.278910 ], [ 23.194885, -17.868975 ], [ 22.500000, -18.025751 ], [ 22.280273, -18.075368 ], [ 22.280273, -17.730375 ], [ 22.500000, -17.680662 ], [ 23.214111, -17.520963 ], [ 24.032593, -17.295576 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.272095, -10.962764 ], [ 33.219910, -11.178402 ], [ 33.112793, -11.606503 ], [ 33.305054, -12.433894 ], [ 32.989197, -12.782339 ], [ 32.687073, -13.712704 ], [ 33.211670, -13.971385 ], [ 30.179443, -14.793472 ], [ 30.272827, -15.506619 ], [ 29.514771, -15.644197 ], [ 28.946228, -16.040534 ], [ 28.825378, -16.388661 ], [ 28.465576, -16.467695 ], [ 27.597656, -17.290332 ], [ 27.042847, -17.936929 ], [ 26.705017, -17.960445 ], [ 26.380920, -17.845447 ], [ 25.263062, -17.735607 ], [ 25.081787, -17.659726 ], [ 25.076294, -17.578576 ], [ 24.680786, -17.353260 ], [ 24.032593, -17.295576 ], [ 23.214111, -17.520963 ], [ 22.560425, -16.896544 ], [ 22.500000, -16.820316 ], [ 22.280273, -16.554594 ], [ 22.280273, -12.900166 ], [ 22.500000, -12.900166 ], [ 24.016113, -12.910875 ], [ 23.928223, -12.565287 ], [ 24.079285, -12.189704 ], [ 23.903503, -11.722167 ], [ 24.016113, -11.234980 ], [ 23.996887, -11.178402 ], [ 23.922729, -10.962764 ], [ 24.257812, -10.962764 ], [ 24.296265, -11.178402 ], [ 24.312744, -11.261919 ], [ 24.782410, -11.237674 ], [ 25.416870, -11.329253 ], [ 25.751953, -11.784014 ], [ 26.551208, -11.923790 ], [ 27.163696, -11.606503 ], [ 27.386169, -12.130635 ], [ 28.152466, -12.270231 ], [ 28.523254, -12.696612 ], [ 28.932495, -13.247966 ], [ 29.698792, -13.255986 ], [ 29.613647, -12.176280 ], [ 29.338989, -12.358783 ], [ 28.641357, -11.969471 ], [ 28.372192, -11.792080 ], [ 28.446350, -11.178402 ], [ 28.473816, -10.962764 ], [ 33.272095, -10.962764 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zimbabwe", "sov_a3": "ZWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zimbabwe", "adm0_a3": "ZWE", "geou_dif": 0, "geounit": "Zimbabwe", "gu_a3": "ZWE", "su_dif": 0, "subunit": "Zimbabwe", "su_a3": "ZWE", "brk_diff": 0, "name": "Zimbabwe", "name_long": "Zimbabwe", "brk_a3": "ZWE", "brk_name": "Zimbabwe", "abbrev": "Zimb.", "postal": "ZW", "formal_en": "Republic of Zimbabwe", "name_sort": "Zimbabwe", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 12619600, "gdp_md_est": 9323, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ZW", "iso_a3": "ZWE", "iso_n3": "716", "un_a3": "716", "wb_a2": "ZW", "wb_a3": "ZWE", "woe_id": -99, "adm0_a3_is": "ZWE", "adm0_a3_us": "ZWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.272827, -15.506619 ], [ 30.338745, -15.879451 ], [ 31.170959, -15.858316 ], [ 31.635132, -16.069568 ], [ 31.849365, -16.317504 ], [ 32.327271, -16.391296 ], [ 32.846375, -16.712494 ], [ 32.849121, -17.978733 ], [ 32.654114, -18.669665 ], [ 32.610168, -19.417383 ], [ 32.772217, -19.715000 ], [ 32.659607, -20.303418 ], [ 32.508545, -20.393549 ], [ 32.244873, -21.115249 ], [ 31.475830, -21.943046 ], [ 31.286316, -22.146708 ], [ 29.965210, -22.146708 ], [ 29.838867, -22.100909 ], [ 29.429626, -22.090730 ], [ 29.220886, -21.943046 ], [ 28.792419, -21.637005 ], [ 28.020630, -21.483741 ], [ 27.726746, -20.851112 ], [ 27.723999, -20.496492 ], [ 27.295532, -20.390974 ], [ 26.163940, -19.292998 ], [ 25.848083, -18.713894 ], [ 25.647583, -18.534304 ], [ 25.263062, -17.735607 ], [ 26.380920, -17.845447 ], [ 26.705017, -17.960445 ], [ 27.042847, -17.936929 ], [ 27.597656, -17.290332 ], [ 28.465576, -16.467695 ], [ 28.825378, -16.388661 ], [ 28.946228, -16.040534 ], [ 29.514771, -15.644197 ], [ 30.272827, -15.506619 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, -10.962764 ], [ 33.969727, -14.389458 ], [ 33.788452, -14.450639 ], [ 33.211670, -13.971385 ], [ 32.687073, -13.712704 ], [ 32.989197, -12.782339 ], [ 33.305054, -12.433894 ], [ 33.112793, -11.606503 ], [ 33.219910, -11.178402 ], [ 33.272095, -10.962764 ], [ 33.969727, -10.962764 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mozambique", "sov_a3": "MOZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mozambique", "adm0_a3": "MOZ", "geou_dif": 0, "geounit": "Mozambique", "gu_a3": "MOZ", "su_dif": 0, "subunit": "Mozambique", "su_a3": "MOZ", "brk_diff": 0, "name": "Mozambique", "name_long": "Mozambique", "brk_a3": "MOZ", "brk_name": "Mozambique", "abbrev": "Moz.", "postal": "MZ", "formal_en": "Republic of Mozambique", "name_sort": "Mozambique", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 21669278, "gdp_md_est": 18940, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MZ", "iso_a3": "MOZ", "iso_n3": "508", "un_a3": "508", "wb_a2": "MZ", "wb_a3": "MOZ", "woe_id": -99, "adm0_a3_is": "MOZ", "adm0_a3_us": "MOZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.211670, -13.971385 ], [ 33.788452, -14.450639 ], [ 33.969727, -14.389458 ], [ 33.969727, -22.146708 ], [ 31.286316, -22.146708 ], [ 31.475830, -21.943046 ], [ 32.244873, -21.115249 ], [ 32.508545, -20.393549 ], [ 32.659607, -20.303418 ], [ 32.772217, -19.715000 ], [ 32.610168, -19.417383 ], [ 32.654114, -18.669665 ], [ 32.849121, -17.978733 ], [ 32.846375, -16.712494 ], [ 32.327271, -16.391296 ], [ 31.849365, -16.317504 ], [ 31.635132, -16.069568 ], [ 31.170959, -15.858316 ], [ 30.338745, -15.879451 ], [ 30.272827, -15.506619 ], [ 30.179443, -14.793472 ], [ 33.211670, -13.971385 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 25.081787, -17.659726 ], [ 25.263062, -17.735607 ], [ 25.647583, -18.534304 ], [ 25.848083, -18.713894 ], [ 26.163940, -19.292998 ], [ 27.295532, -20.390974 ], [ 27.723999, -20.496492 ], [ 27.726746, -20.851112 ], [ 28.020630, -21.483741 ], [ 28.792419, -21.637005 ], [ 29.220886, -21.943046 ], [ 29.429626, -22.090730 ], [ 29.325256, -22.146708 ], [ 22.280273, -22.146708 ], [ 22.280273, -18.075368 ], [ 22.500000, -18.025751 ], [ 23.194885, -17.868975 ], [ 23.576660, -18.278910 ], [ 24.216614, -17.887273 ], [ 24.518738, -17.884659 ], [ 25.081787, -17.659726 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Africa", "sov_a3": "ZAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Africa", "adm0_a3": "ZAF", "geou_dif": 0, "geounit": "South Africa", "gu_a3": "ZAF", "su_dif": 0, "subunit": "South Africa", "su_a3": "ZAF", "brk_diff": 0, "name": "South Africa", "name_long": "South Africa", "brk_a3": "ZAF", "brk_name": "South Africa", "abbrev": "S.Af.", "postal": "ZA", "formal_en": "Republic of South Africa", "name_sort": "South Africa", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 49052489, "gdp_md_est": 491000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ZA", "iso_a3": "ZAF", "iso_n3": "710", "un_a3": "710", "wb_a2": "ZA", "wb_a3": "ZAF", "woe_id": -99, "adm0_a3_is": "ZAF", "adm0_a3_us": "ZAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.429626, -22.090730 ], [ 29.838867, -22.100909 ], [ 29.965210, -22.146708 ], [ 29.325256, -22.146708 ], [ 29.429626, -22.090730 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 16 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 0.219726 ], [ 33.892822, 0.109863 ], [ 33.901062, -0.947528 ], [ 33.750000, -0.955766 ], [ 31.865845, -1.027167 ], [ 30.767212, -1.013436 ], [ 30.418396, -1.134264 ], [ 29.819641, -1.441803 ], [ 29.577942, -1.340210 ], [ 29.586182, -0.585012 ], [ 29.816895, -0.203247 ], [ 29.833374, 0.000000 ], [ 29.847107, 0.219726 ], [ 33.969727, 0.219726 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 0.219726 ], [ 33.969727, -0.991467 ], [ 33.901062, -0.947528 ], [ 33.892822, 0.109863 ], [ 33.969727, 0.219726 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.847107, 0.219726 ], [ 29.833374, 0.000000 ], [ 29.816895, -0.203247 ], [ 29.586182, -0.585012 ], [ 29.577942, -1.340210 ], [ 29.289551, -1.617522 ], [ 29.253845, -2.213195 ], [ 29.116516, -2.290039 ], [ 29.023132, -2.838804 ], [ 29.275818, -3.291340 ], [ 29.338989, -4.499762 ], [ 29.517517, -5.419148 ], [ 29.418640, -5.938436 ], [ 29.619141, -6.520001 ], [ 30.198669, -7.079088 ], [ 30.739746, -8.339236 ], [ 30.344238, -8.235955 ], [ 29.001160, -8.404451 ], [ 28.734741, -8.523984 ], [ 28.449097, -9.164467 ], [ 28.671570, -9.603458 ], [ 28.495789, -10.787443 ], [ 28.446350, -11.178402 ], [ 28.418884, -11.393879 ], [ 25.463562, -11.393879 ], [ 25.416870, -11.329253 ], [ 24.782410, -11.237674 ], [ 24.312744, -11.261919 ], [ 24.296265, -11.178402 ], [ 24.255066, -10.951978 ], [ 23.911743, -10.925011 ], [ 23.455811, -10.865676 ], [ 22.835083, -11.016689 ], [ 22.500000, -10.997816 ], [ 22.401123, -10.992424 ], [ 22.280273, -11.038255 ], [ 22.280273, 0.219726 ], [ 29.847107, 0.219726 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.455811, -10.865676 ], [ 23.911743, -10.925011 ], [ 23.996887, -11.178402 ], [ 24.016113, -11.234980 ], [ 23.980408, -11.393879 ], [ 22.280273, -11.393879 ], [ 22.280273, -11.038255 ], [ 22.401123, -10.992424 ], [ 22.500000, -10.997816 ], [ 22.835083, -11.016689 ], [ 23.455811, -10.865676 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Rwanda", "sov_a3": "RWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Rwanda", "adm0_a3": "RWA", "geou_dif": 0, "geounit": "Rwanda", "gu_a3": "RWA", "su_dif": 0, "subunit": "Rwanda", "su_a3": "RWA", "brk_diff": 0, "name": "Rwanda", "name_long": "Rwanda", "brk_a3": "RWA", "brk_name": "Rwanda", "abbrev": "Rwa.", "postal": "RW", "formal_en": "Republic of Rwanda", "name_sort": "Rwanda", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 10473282, "gdp_md_est": 9706, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "RW", "iso_a3": "RWA", "iso_n3": "646", "un_a3": "646", "wb_a2": "RW", "wb_a3": "RWA", "woe_id": -99, "adm0_a3_is": "RWA", "adm0_a3_us": "RWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.418396, -1.134264 ], [ 30.813904, -1.697139 ], [ 30.756226, -2.284551 ], [ 30.467834, -2.413532 ], [ 29.937744, -2.347670 ], [ 29.630127, -2.915611 ], [ 29.023132, -2.838804 ], [ 29.116516, -2.290039 ], [ 29.253845, -2.213195 ], [ 29.289551, -1.617522 ], [ 29.577942, -1.340210 ], [ 29.819641, -1.441803 ], [ 30.418396, -1.134264 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Burundi", "sov_a3": "BDI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burundi", "adm0_a3": "BDI", "geou_dif": 0, "geounit": "Burundi", "gu_a3": "BDI", "su_dif": 0, "subunit": "Burundi", "su_a3": "BDI", "brk_diff": 0, "name": "Burundi", "name_long": "Burundi", "brk_a3": "BDI", "brk_name": "Burundi", "abbrev": "Bur.", "postal": "BI", "formal_en": "Republic of Burundi", "name_sort": "Burundi", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8988091, "gdp_md_est": 3102, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BI", "iso_a3": "BDI", "iso_n3": "108", "un_a3": "108", "wb_a2": "BI", "wb_a3": "BDI", "woe_id": -99, "adm0_a3_is": "BDI", "adm0_a3_us": "BDI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.937744, -2.347670 ], [ 30.467834, -2.413532 ], [ 30.525513, -2.805885 ], [ 30.742493, -3.033555 ], [ 30.750732, -3.357147 ], [ 30.503540, -3.568248 ], [ 30.116272, -4.088932 ], [ 29.750977, -4.450474 ], [ 29.338989, -4.499762 ], [ 29.275818, -3.291340 ], [ 29.023132, -2.838804 ], [ 29.630127, -2.915611 ], [ 29.937744, -2.347670 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.911743, -10.925011 ], [ 24.255066, -10.951978 ], [ 24.296265, -11.178402 ], [ 24.312744, -11.261919 ], [ 24.782410, -11.237674 ], [ 25.416870, -11.329253 ], [ 25.463562, -11.393879 ], [ 23.980408, -11.393879 ], [ 24.016113, -11.234980 ], [ 23.996887, -11.178402 ], [ 23.911743, -10.925011 ] ] ], [ [ [ 30.739746, -8.339236 ], [ 31.157227, -8.591884 ], [ 31.555481, -8.760224 ], [ 32.189941, -8.928487 ], [ 32.758484, -9.229538 ], [ 33.230896, -9.676569 ], [ 33.483582, -10.522919 ], [ 33.313293, -10.795537 ], [ 33.219910, -11.178402 ], [ 33.164978, -11.393879 ], [ 28.418884, -11.393879 ], [ 28.446350, -11.178402 ], [ 28.495789, -10.787443 ], [ 28.671570, -9.603458 ], [ 28.449097, -9.164467 ], [ 28.734741, -8.523984 ], [ 29.001160, -8.404451 ], [ 30.344238, -8.235955 ], [ 30.739746, -8.339236 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "United Republic of Tanzania", "sov_a3": "TZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Republic of Tanzania", "adm0_a3": "TZA", "geou_dif": 0, "geounit": "Tanzania", "gu_a3": "TZA", "su_dif": 0, "subunit": "Tanzania", "su_a3": "TZA", "brk_diff": 0, "name": "Tanzania", "name_long": "Tanzania", "brk_a3": "TZA", "brk_name": "Tanzania", "abbrev": "Tanz.", "postal": "TZ", "formal_en": "United Republic of Tanzania", "name_sort": "Tanzania", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 41048532, "gdp_md_est": 54250, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TZ", "iso_a3": "TZA", "iso_n3": "834", "un_a3": "834", "wb_a2": "TZ", "wb_a3": "TZA", "woe_id": -99, "adm0_a3_is": "TZA", "adm0_a3_us": "TZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.901062, -0.947528 ], [ 33.969727, -0.991467 ], [ 33.969727, -9.730714 ], [ 33.750000, -9.430096 ], [ 33.739014, -9.416548 ], [ 32.758484, -9.229538 ], [ 32.189941, -8.928487 ], [ 31.555481, -8.760224 ], [ 31.157227, -8.591884 ], [ 30.739746, -8.339236 ], [ 30.198669, -7.079088 ], [ 29.619141, -6.517272 ], [ 29.418640, -5.938436 ], [ 29.517517, -5.419148 ], [ 29.338989, -4.499762 ], [ 29.750977, -4.450474 ], [ 30.116272, -4.088932 ], [ 30.503540, -3.568248 ], [ 30.750732, -3.357147 ], [ 30.742493, -3.033555 ], [ 30.525513, -2.805885 ], [ 30.467834, -2.413532 ], [ 30.756226, -2.284551 ], [ 30.813904, -1.697139 ], [ 30.418396, -1.134264 ], [ 30.767212, -1.013436 ], [ 31.865845, -1.027167 ], [ 33.750000, -0.955766 ], [ 33.901062, -0.947528 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.758484, -9.229538 ], [ 33.739014, -9.416548 ], [ 33.750000, -9.430096 ], [ 33.939514, -9.692813 ], [ 33.969727, -9.730714 ], [ 33.969727, -11.393879 ], [ 33.164978, -11.393879 ], [ 33.219910, -11.178402 ], [ 33.313293, -10.795537 ], [ 33.483582, -10.522919 ], [ 33.230896, -9.676569 ], [ 32.758484, -9.229538 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.862549, 11.393879 ], [ 22.873535, 11.385802 ], [ 22.865295, 11.178402 ], [ 22.862549, 11.143372 ], [ 22.500000, 11.046343 ], [ 22.280273, 10.987031 ], [ 22.280273, 11.393879 ], [ 22.862549, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.862549, 11.143372 ], [ 22.975159, 10.714587 ], [ 23.551941, 10.090558 ], [ 23.554688, 9.681984 ], [ 23.392639, 9.267490 ], [ 23.458557, 8.955619 ], [ 23.804626, 8.667918 ], [ 24.565430, 8.230519 ], [ 25.114746, 7.825289 ], [ 25.122986, 7.501366 ], [ 25.795898, 6.980954 ], [ 26.213379, 6.547289 ], [ 26.463318, 5.949363 ], [ 27.213135, 5.553114 ], [ 27.372437, 5.235922 ], [ 27.042847, 5.129243 ], [ 26.400146, 5.151128 ], [ 25.650330, 5.257803 ], [ 25.276794, 5.173011 ], [ 25.128479, 4.929515 ], [ 24.804382, 4.899414 ], [ 24.408875, 5.110094 ], [ 23.296509, 4.612016 ], [ 22.840576, 4.710566 ], [ 22.703247, 4.633917 ], [ 22.500000, 4.223161 ], [ 22.403870, 4.031399 ], [ 22.280273, 4.064275 ], [ 22.280273, 10.987031 ], [ 22.500000, 11.046343 ], [ 22.862549, 11.143372 ] ] ] } } +, +{ "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": [ [ [ [ 32.354736, 11.393879 ], [ 32.384949, 11.178402 ], [ 32.398682, 11.081385 ], [ 31.849365, 10.533720 ], [ 31.352234, 9.811916 ], [ 30.835876, 9.709057 ], [ 29.995422, 10.293301 ], [ 29.616394, 10.085150 ], [ 29.514771, 9.795678 ], [ 28.998413, 9.606166 ], [ 28.965454, 9.400291 ], [ 27.968445, 9.400291 ], [ 27.831116, 9.606166 ], [ 27.111511, 9.638661 ], [ 26.751709, 9.468027 ], [ 26.477051, 9.554709 ], [ 25.960693, 10.136524 ], [ 25.790405, 10.412183 ], [ 25.068054, 10.274384 ], [ 24.793396, 9.811916 ], [ 24.535217, 8.917634 ], [ 24.191895, 8.730363 ], [ 23.884277, 8.621757 ], [ 23.804626, 8.667918 ], [ 23.458557, 8.955619 ], [ 23.392639, 9.267490 ], [ 23.554688, 9.681984 ], [ 23.551941, 10.090558 ], [ 22.975159, 10.714587 ], [ 22.862549, 11.143372 ], [ 22.865295, 11.178402 ], [ 22.873535, 11.385802 ], [ 22.862549, 11.393879 ], [ 32.354736, 11.393879 ] ] ], [ [ [ 33.969727, 11.393879 ], [ 33.969727, 9.614290 ], [ 33.961487, 9.584501 ], [ 33.961487, 9.465317 ], [ 33.824158, 9.484281 ], [ 33.840637, 9.982376 ], [ 33.750000, 10.247357 ], [ 33.719788, 10.325728 ], [ 33.206177, 10.722683 ], [ 33.129272, 11.178402 ], [ 33.093567, 11.393879 ], [ 33.969727, 11.393879 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.093567, 11.393879 ], [ 33.129272, 11.178402 ], [ 33.206177, 10.722683 ], [ 33.719788, 10.325728 ], [ 33.750000, 10.247357 ], [ 33.840637, 9.982376 ], [ 33.824158, 9.484281 ], [ 33.961487, 9.465317 ], [ 33.969727, 9.039715 ], [ 33.969727, 8.676064 ], [ 33.824158, 8.379997 ], [ 33.750000, 8.377279 ], [ 33.294067, 8.355540 ], [ 32.953491, 7.787194 ], [ 33.565979, 7.713713 ], [ 33.750000, 7.539487 ], [ 33.969727, 7.329778 ], [ 33.969727, 4.225900 ], [ 33.387451, 3.790262 ], [ 32.684326, 3.793003 ], [ 31.879578, 3.560024 ], [ 31.245117, 3.782041 ], [ 30.833130, 3.510680 ], [ 29.951477, 4.173855 ], [ 29.715271, 4.601065 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.427124, 4.288897 ], [ 27.979431, 4.409398 ], [ 27.372437, 5.235922 ], [ 27.213135, 5.553114 ], [ 26.463318, 5.949363 ], [ 26.213379, 6.547289 ], [ 25.795898, 6.980954 ], [ 25.122986, 7.501366 ], [ 25.114746, 7.825289 ], [ 24.565430, 8.230519 ], [ 23.884277, 8.621757 ], [ 24.191895, 8.730363 ], [ 24.535217, 8.917634 ], [ 24.793396, 9.811916 ], [ 25.068054, 10.274384 ], [ 25.790405, 10.412183 ], [ 25.960693, 10.136524 ], [ 26.477051, 9.554709 ], [ 26.751709, 9.468027 ], [ 27.111511, 9.638661 ], [ 27.831116, 9.606166 ], [ 27.968445, 9.400291 ], [ 28.965454, 9.400291 ], [ 28.998413, 9.606166 ], [ 29.514771, 9.795678 ], [ 29.616394, 10.085150 ], [ 29.995422, 10.293301 ], [ 30.835876, 9.709057 ], [ 31.352234, 9.811916 ], [ 31.849365, 10.533720 ], [ 32.398682, 11.081385 ], [ 32.384949, 11.178402 ], [ 32.354736, 11.393879 ], [ 33.093567, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 4.225900 ], [ 33.969727, 0.219726 ], [ 33.892822, 0.109863 ], [ 33.895569, -0.219726 ], [ 29.808655, -0.219726 ], [ 29.816895, -0.203247 ], [ 29.833374, 0.000000 ], [ 29.874573, 0.598744 ], [ 30.086060, 1.062866 ], [ 30.467834, 1.584576 ], [ 30.852356, 1.850874 ], [ 31.173706, 2.204961 ], [ 30.772705, 2.342182 ], [ 30.833130, 3.510680 ], [ 31.245117, 3.782041 ], [ 31.879578, 3.560024 ], [ 32.684326, 3.793003 ], [ 33.387451, 3.790262 ], [ 33.969727, 4.225900 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 0.219726 ], [ 33.969727, -0.219726 ], [ 33.895569, -0.219726 ], [ 33.892822, 0.109863 ], [ 33.969727, 0.219726 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.969727, 8.676064 ], [ 33.969727, 7.329778 ], [ 33.750000, 7.539487 ], [ 33.565979, 7.713713 ], [ 32.953491, 7.787194 ], [ 33.294067, 8.355540 ], [ 33.750000, 8.377279 ], [ 33.824158, 8.379997 ], [ 33.969727, 8.676064 ] ] ], [ [ [ 33.969727, 9.039715 ], [ 33.961487, 9.584501 ], [ 33.969727, 9.614290 ], [ 33.969727, 9.039715 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.650330, 5.257803 ], [ 26.400146, 5.151128 ], [ 27.042847, 5.129243 ], [ 27.372437, 5.235922 ], [ 27.979431, 4.409398 ], [ 28.427124, 4.288897 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.715271, 4.601065 ], [ 29.951477, 4.173855 ], [ 30.833130, 3.510680 ], [ 30.772705, 2.342182 ], [ 31.173706, 2.204961 ], [ 30.852356, 1.850874 ], [ 30.467834, 1.584576 ], [ 30.086060, 1.062866 ], [ 29.874573, 0.598744 ], [ 29.833374, 0.000000 ], [ 29.816895, -0.203247 ], [ 29.808655, -0.219726 ], [ 22.280273, -0.219726 ], [ 22.280273, 4.064275 ], [ 22.403870, 4.031399 ], [ 22.500000, 4.223161 ], [ 22.703247, 4.633917 ], [ 22.840576, 4.710566 ], [ 23.296509, 4.612016 ], [ 24.408875, 5.110094 ], [ 24.804382, 4.899414 ], [ 25.128479, 4.929515 ], [ 25.276794, 5.173011 ], [ 25.650330, 5.257803 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.999390, 22.146708 ], [ 24.999390, 20.004322 ], [ 23.848572, 20.001741 ], [ 23.837585, 19.580493 ], [ 22.500000, 20.226120 ], [ 22.280273, 20.331750 ], [ 22.280273, 22.146708 ], [ 24.999390, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.280273, 13.878079 ], [ 22.280273, 20.331750 ], [ 22.500000, 20.226120 ], [ 23.837585, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.021851, 15.681221 ], [ 22.565918, 14.944785 ], [ 22.500000, 14.788161 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.107276 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.083301 ], [ 22.280273, 13.878079 ] ] ], [ [ [ 22.280273, 12.645698 ], [ 22.285767, 12.648378 ], [ 22.497253, 12.262180 ], [ 22.500000, 12.136005 ], [ 22.508240, 11.681825 ], [ 22.873535, 11.385802 ], [ 22.865295, 11.178402 ], [ 22.862549, 11.143372 ], [ 22.280273, 10.987031 ], [ 22.280273, 12.645698 ] ] ], [ [ [ 22.280273, 13.432367 ], [ 22.294006, 13.373588 ], [ 22.280273, 13.346865 ], [ 22.280273, 13.432367 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.862549, 11.143372 ], [ 22.909241, 10.962764 ], [ 22.280273, 10.962764 ], [ 22.280273, 10.987031 ], [ 22.862549, 11.143372 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 22.146708 ], [ 33.969727, 22.001628 ], [ 24.999390, 22.001628 ], [ 24.999390, 22.146708 ], [ 33.969727, 22.146708 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 33.969727, 22.001628 ], [ 33.969727, 10.962764 ], [ 33.164978, 10.962764 ], [ 33.129272, 11.178402 ], [ 33.085327, 11.442339 ], [ 33.206177, 12.181650 ], [ 32.742004, 12.248760 ], [ 32.673340, 12.025889 ], [ 32.071838, 11.974845 ], [ 32.313538, 11.681825 ], [ 32.384949, 11.178402 ], [ 32.398682, 11.081385 ], [ 32.280579, 10.962764 ], [ 22.909241, 10.962764 ], [ 22.862549, 11.143372 ], [ 22.865295, 11.178402 ], [ 22.873535, 11.385802 ], [ 22.508240, 11.681825 ], [ 22.500000, 12.136005 ], [ 22.497253, 12.262180 ], [ 22.285767, 12.648378 ], [ 22.280273, 12.645698 ], [ 22.280273, 13.346865 ], [ 22.294006, 13.373588 ], [ 22.280273, 13.432367 ], [ 22.280273, 13.878079 ], [ 22.500000, 14.083301 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.107276 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.788161 ], [ 22.565918, 14.944785 ], [ 23.021851, 15.681221 ], [ 23.884277, 15.612456 ], [ 23.837585, 19.580493 ], [ 23.848572, 20.001741 ], [ 24.999390, 20.004322 ], [ 24.999390, 22.001628 ], [ 33.969727, 22.001628 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.742004, 12.248760 ], [ 33.206177, 12.181650 ], [ 33.085327, 11.442339 ], [ 33.129272, 11.178402 ], [ 33.164978, 10.962764 ], [ 32.280579, 10.962764 ], [ 32.398682, 11.081385 ], [ 32.384949, 11.178402 ], [ 32.313538, 11.681825 ], [ 32.071838, 11.974845 ], [ 32.673340, 12.025889 ], [ 32.742004, 12.248760 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.700256, 32.138409 ], [ 23.925476, 32.017392 ], [ 24.472046, 31.952162 ], [ 24.919739, 31.900878 ], [ 25.164185, 31.569175 ], [ 24.801636, 31.090574 ], [ 24.955444, 30.663903 ], [ 24.700012, 30.045322 ], [ 24.999390, 29.240874 ], [ 24.999390, 21.739091 ], [ 22.280273, 21.739091 ], [ 22.280273, 32.138409 ], [ 23.700256, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.493530, 31.587894 ], [ 27.457581, 31.323140 ], [ 28.449097, 31.027048 ], [ 28.913269, 30.871583 ], [ 29.682312, 31.186959 ], [ 30.094299, 31.475524 ], [ 30.975952, 31.557474 ], [ 31.687317, 31.431007 ], [ 31.959229, 30.935213 ], [ 32.189941, 31.262118 ], [ 32.991943, 31.024694 ], [ 33.750000, 30.970544 ], [ 33.771973, 30.968189 ], [ 33.969727, 31.069403 ], [ 33.969727, 27.685960 ], [ 33.920288, 27.649472 ], [ 33.750000, 27.814786 ], [ 33.134766, 28.417975 ], [ 32.420654, 29.852555 ], [ 32.319031, 29.761993 ], [ 32.733765, 28.707452 ], [ 33.346252, 27.700552 ], [ 33.750000, 26.877981 ], [ 33.969727, 26.423849 ], [ 33.969727, 22.001628 ], [ 24.999390, 22.001628 ], [ 24.999390, 29.240874 ], [ 24.700012, 30.045322 ], [ 24.955444, 30.663903 ], [ 24.801636, 31.090574 ], [ 25.164185, 31.569175 ], [ 26.493530, 31.587894 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 33.969727, 22.001628 ], [ 33.969727, 21.739091 ], [ 24.999390, 21.739091 ], [ 24.999390, 22.001628 ], [ 33.969727, 22.001628 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "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.609863, 41.145570 ], [ 22.596130, 41.131090 ], [ 22.280273, 41.143501 ], [ 22.280273, 41.145570 ], [ 22.609863, 41.145570 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.280273, 32.731841 ], [ 22.500000, 32.699489 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.191884 ], [ 23.606873, 32.189560 ], [ 23.925476, 32.017392 ], [ 24.472046, 31.952162 ], [ 24.919739, 31.900878 ], [ 25.018616, 31.765537 ], [ 22.280273, 31.765537 ], [ 22.280273, 32.731841 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "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": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.697510, 35.706377 ], [ 24.244080, 35.368895 ], [ 25.024109, 35.427106 ], [ 25.768433, 35.355456 ], [ 25.743713, 35.180543 ], [ 26.287537, 35.301677 ], [ 26.163940, 35.005253 ], [ 24.724731, 34.921971 ], [ 24.732971, 35.086203 ], [ 23.513489, 35.281501 ], [ 23.697510, 35.706377 ] ] ], [ [ [ 26.397400, 41.145570 ], [ 26.315002, 40.979898 ], [ 26.293030, 40.936340 ], [ 26.056824, 40.824202 ], [ 25.447083, 40.853293 ], [ 24.925232, 40.948788 ], [ 23.713989, 40.688969 ], [ 24.406128, 40.126391 ], [ 23.898010, 39.962386 ], [ 23.340454, 39.962386 ], [ 22.813110, 40.476203 ], [ 22.623596, 40.258569 ], [ 22.848816, 39.660685 ], [ 23.348694, 39.191820 ], [ 22.972412, 38.972222 ], [ 23.529968, 38.511639 ], [ 24.024353, 38.220920 ], [ 24.038086, 37.655558 ], [ 23.112488, 37.920368 ], [ 23.409119, 37.411619 ], [ 22.774658, 37.306829 ], [ 23.153687, 36.423493 ], [ 22.500000, 36.410231 ], [ 22.489014, 36.410231 ], [ 22.280273, 36.522881 ], [ 22.280273, 41.143501 ], [ 22.596130, 41.131090 ], [ 22.609863, 41.145570 ], [ 26.397400, 41.145570 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Northern Cyprus", "sov_a3": "CYN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Northern Cyprus", "adm0_a3": "CYN", "geou_dif": 0, "geounit": "Northern Cyprus", "gu_a3": "CYN", "su_dif": 0, "subunit": "Northern Cyprus", "su_a3": "CYN", "brk_diff": 1, "name": "N. Cyprus", "name_long": "Northern Cyprus", "brk_a3": "B20", "brk_name": "N. Cyprus", "abbrev": "N. Cy.", "postal": "CN", "formal_en": "Turkish Republic of Northern Cyprus", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Cyprus", "name_sort": "Cyprus, Northern", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 265100, "gdp_md_est": 3600, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "CYP", "adm0_a3_us": "CYP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 15, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 35.474092 ], [ 33.969727, 35.290469 ], [ 33.898315, 35.247862 ], [ 33.969727, 35.070469 ], [ 33.969727, 35.061477 ], [ 33.865356, 35.095193 ], [ 33.750000, 35.047987 ], [ 33.673096, 35.018750 ], [ 33.524780, 35.038992 ], [ 33.475342, 35.000754 ], [ 33.453369, 35.101934 ], [ 33.381958, 35.164828 ], [ 33.189697, 35.173808 ], [ 32.917786, 35.088451 ], [ 32.731018, 35.140125 ], [ 32.802429, 35.146863 ], [ 32.945251, 35.386811 ], [ 33.664856, 35.373375 ], [ 33.750000, 35.402484 ], [ 33.969727, 35.474092 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Cyprus", "sov_a3": "CYP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cyprus", "adm0_a3": "CYP", "geou_dif": 0, "geounit": "Cyprus", "gu_a3": "CYP", "su_dif": 0, "subunit": "Cyprus", "su_a3": "CYP", "brk_diff": 0, "name": "Cyprus", "name_long": "Cyprus", "brk_a3": "CYP", "brk_name": "Cyprus", "abbrev": "Cyp.", "postal": "CY", "formal_en": "Republic of Cyprus", "name_sort": "Cyprus", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 531640, "gdp_md_est": 22700, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "CY", "iso_a3": "CYP", "iso_n3": "196", "un_a3": "196", "wb_a2": "CY", "wb_a3": "CYP", "woe_id": -99, "adm0_a3_is": "CYP", "adm0_a3_us": "CYP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.189697, 35.173808 ], [ 33.381958, 35.164828 ], [ 33.453369, 35.101934 ], [ 33.475342, 35.000754 ], [ 33.524780, 35.038992 ], [ 33.673096, 35.018750 ], [ 33.750000, 35.047987 ], [ 33.865356, 35.095193 ], [ 33.969727, 35.061477 ], [ 33.969727, 34.964748 ], [ 33.750000, 34.879172 ], [ 32.978210, 34.572168 ], [ 32.489319, 34.703235 ], [ 32.255859, 35.104181 ], [ 32.731018, 35.140125 ], [ 32.917786, 35.088451 ], [ 33.189697, 35.173808 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.969727, 41.145570 ], [ 33.969727, 36.217687 ], [ 33.750000, 36.199958 ], [ 32.508545, 36.109034 ], [ 31.698303, 36.646385 ], [ 30.618896, 36.679433 ], [ 30.390930, 36.264207 ], [ 29.698792, 36.144529 ], [ 28.731995, 36.677231 ], [ 27.638855, 36.659606 ], [ 27.048340, 37.653383 ], [ 26.317749, 38.210130 ], [ 26.803894, 38.987168 ], [ 26.169434, 39.463764 ], [ 27.279053, 40.421860 ], [ 28.819885, 40.461577 ], [ 29.105530, 40.979898 ], [ 29.196167, 41.145570 ], [ 30.311279, 41.145570 ], [ 31.143494, 41.087632 ], [ 31.250610, 41.145570 ], [ 33.969727, 41.145570 ] ] ], [ [ [ 28.872070, 41.145570 ], [ 28.806152, 41.056573 ], [ 27.616882, 41.000630 ], [ 27.589417, 40.979898 ], [ 27.191162, 40.691052 ], [ 26.356201, 40.153687 ], [ 26.043091, 40.618122 ], [ 26.056824, 40.824202 ], [ 26.293030, 40.936340 ], [ 26.315002, 40.979898 ], [ 26.397400, 41.145570 ], [ 28.872070, 41.145570 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Poland", "sov_a3": "POL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Poland", "adm0_a3": "POL", "geou_dif": 0, "geounit": "Poland", "gu_a3": "POL", "su_dif": 0, "subunit": "Poland", "su_a3": "POL", "brk_diff": 0, "name": "Poland", "name_long": "Poland", "brk_a3": "POL", "brk_name": "Poland", "abbrev": "Pol.", "postal": "PL", "formal_en": "Republic of Poland", "name_sort": "Poland", "mapcolor7": 3, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 38482919, "gdp_md_est": 667900, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PL", "iso_a3": "POL", "iso_n3": "616", "un_a3": "616", "wb_a2": "PL", "wb_a3": "POL", "woe_id": -99, "adm0_a3_is": "POL", "adm0_a3_us": "POL", "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": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.752686, 49.066668 ], [ 22.774658, 49.028864 ], [ 22.629089, 49.066668 ], [ 22.752686, 49.066668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Hungary", "sov_a3": "HUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Hungary", "adm0_a3": "HUN", "geou_dif": 0, "geounit": "Hungary", "gu_a3": "HUN", "su_dif": 0, "subunit": "Hungary", "su_a3": "HUN", "brk_diff": 0, "name": "Hungary", "name_long": "Hungary", "brk_a3": "HUN", "brk_name": "Hungary", "abbrev": "Hun.", "postal": "HU", "formal_en": "Republic of Hungary", "name_sort": "Hungary", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 9905596, "gdp_md_est": 196600, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "HU", "iso_a3": "HUN", "iso_n3": "348", "un_a3": "348", "wb_a2": "HU", "wb_a3": "HUN", "woe_id": -99, "adm0_a3_is": "HUN", "adm0_a3_us": "HUN", "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": "Polygon", "coordinates": [ [ [ 22.280273, 48.328865 ], [ 22.500000, 48.221013 ], [ 22.640076, 48.151428 ], [ 22.708740, 47.883197 ], [ 22.500000, 47.811310 ], [ 22.280273, 47.735629 ], [ 22.280273, 48.328865 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.535706, 49.066668 ], [ 22.280273, 48.824949 ], [ 22.280273, 49.066668 ], [ 22.535706, 49.066668 ] ] ] } } +, +{ "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": [ [ [ 22.458801, 44.703802 ], [ 22.500000, 44.682325 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.429857 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.384729 ], [ 22.656555, 44.235360 ], [ 22.500000, 44.091531 ], [ 22.409363, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.211182 ], [ 22.604370, 42.900113 ], [ 22.500000, 42.700604 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.512602 ], [ 22.543945, 42.461967 ], [ 22.500000, 42.423457 ], [ 22.379150, 42.322001 ], [ 22.280273, 42.317939 ], [ 22.280273, 44.576774 ], [ 22.458801, 44.703802 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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.379150, 42.322001 ], [ 22.500000, 42.244785 ], [ 22.879028, 42.000325 ], [ 22.950439, 41.339700 ], [ 22.760925, 41.306698 ], [ 22.596130, 41.131090 ], [ 22.500000, 41.135227 ], [ 22.280273, 41.143501 ], [ 22.280273, 42.317939 ], [ 22.379150, 42.322001 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "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": "Polygon", "coordinates": [ [ [ 26.617126, 48.221013 ], [ 26.921997, 48.123934 ], [ 27.232361, 47.827908 ], [ 27.550964, 47.405785 ], [ 28.127747, 46.811339 ], [ 28.157959, 46.371569 ], [ 28.053589, 45.945421 ], [ 28.232117, 45.489020 ], [ 28.677063, 45.305803 ], [ 29.149475, 45.465910 ], [ 29.602661, 45.294211 ], [ 29.624634, 45.036656 ], [ 29.141235, 44.820812 ], [ 28.836365, 44.914249 ], [ 28.556213, 43.707594 ], [ 27.968445, 43.812729 ], [ 27.240601, 44.176295 ], [ 26.065063, 43.945372 ], [ 25.567932, 43.689722 ], [ 24.098511, 43.741336 ], [ 23.332214, 43.897892 ], [ 22.942200, 43.824620 ], [ 22.656555, 44.235360 ], [ 22.500000, 44.384729 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.429857 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.682325 ], [ 22.458801, 44.703802 ], [ 22.280273, 44.576774 ], [ 22.280273, 47.735629 ], [ 22.500000, 47.811310 ], [ 22.708740, 47.883197 ], [ 23.139954, 48.096426 ], [ 23.760681, 47.986245 ], [ 24.400635, 47.982568 ], [ 24.864807, 47.739323 ], [ 25.205383, 47.892406 ], [ 25.944214, 47.988083 ], [ 26.196899, 48.221013 ], [ 26.617126, 48.221013 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.656555, 44.235360 ], [ 22.942200, 43.824620 ], [ 23.332214, 43.897892 ], [ 24.098511, 43.741336 ], [ 25.567932, 43.689722 ], [ 26.065063, 43.945372 ], [ 27.240601, 44.176295 ], [ 27.968445, 43.812729 ], [ 28.556213, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.671814, 42.579377 ], [ 27.995911, 42.008489 ], [ 27.133484, 42.143042 ], [ 26.114502, 41.828642 ], [ 26.103516, 41.329389 ], [ 25.197144, 41.236511 ], [ 24.491272, 41.584634 ], [ 23.692017, 41.310824 ], [ 22.950439, 41.339700 ], [ 22.879028, 42.000325 ], [ 22.500000, 42.244785 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.423457 ], [ 22.543945, 42.461967 ], [ 22.500000, 42.512602 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.700604 ], [ 22.604370, 42.900113 ], [ 22.983398, 43.211182 ], [ 22.500000, 43.644026 ], [ 22.409363, 44.008620 ], [ 22.500000, 44.091531 ], [ 22.656555, 44.235360 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Moldova", "sov_a3": "MDA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Moldova", "adm0_a3": "MDA", "geou_dif": 0, "geounit": "Moldova", "gu_a3": "MDA", "su_dif": 0, "subunit": "Moldova", "su_a3": "MDA", "brk_diff": 0, "name": "Moldova", "name_long": "Moldova", "brk_a3": "MDA", "brk_name": "Moldova", "abbrev": "Mda.", "postal": "MD", "formal_en": "Republic of Moldova", "name_sort": "Moldova", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 4, "mapcolor13": 12, "pop_est": 4320748, "gdp_md_est": 10670, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MD", "iso_a3": "MDA", "iso_n3": "498", "un_a3": "498", "wb_a2": "MD", "wb_a3": "MDA", "woe_id": -99, "adm0_a3_is": "MDA", "adm0_a3_us": "MDA", "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": "Polygon", "coordinates": [ [ [ 27.520752, 48.467458 ], [ 28.256836, 48.156925 ], [ 28.668823, 48.118434 ], [ 29.122009, 47.850031 ], [ 29.050598, 47.511636 ], [ 29.413147, 47.348128 ], [ 29.558716, 46.929634 ], [ 29.907532, 46.675826 ], [ 29.836121, 46.526745 ], [ 30.022888, 46.424606 ], [ 29.759216, 46.350719 ], [ 29.168701, 46.381044 ], [ 29.069824, 46.519186 ], [ 28.861084, 46.439750 ], [ 28.932495, 46.259645 ], [ 28.657837, 45.941601 ], [ 28.484802, 45.598666 ], [ 28.232117, 45.489020 ], [ 28.053589, 45.945421 ], [ 28.157959, 46.371569 ], [ 28.127747, 46.811339 ], [ 27.550964, 47.405785 ], [ 27.232361, 47.827908 ], [ 26.921997, 48.123934 ], [ 26.617126, 48.221013 ], [ 26.856079, 48.369023 ], [ 27.520752, 48.467458 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 33.969727, 49.066668 ], [ 33.969727, 44.400430 ], [ 33.881836, 44.363133 ], [ 33.750000, 44.410240 ], [ 33.324280, 44.565034 ], [ 33.546753, 45.036656 ], [ 32.453613, 45.328979 ], [ 32.629395, 45.519820 ], [ 33.587952, 45.851760 ], [ 33.296814, 46.080852 ], [ 31.742249, 46.333654 ], [ 31.673584, 46.707853 ], [ 30.747986, 46.583406 ], [ 30.377197, 46.033203 ], [ 29.602661, 45.294211 ], [ 29.149475, 45.465910 ], [ 28.677063, 45.305803 ], [ 28.232117, 45.489020 ], [ 28.484802, 45.598666 ], [ 28.657837, 45.941601 ], [ 28.932495, 46.259645 ], [ 28.861084, 46.439750 ], [ 29.069824, 46.519186 ], [ 29.168701, 46.381044 ], [ 29.759216, 46.350719 ], [ 30.022888, 46.424606 ], [ 29.836121, 46.526745 ], [ 29.907532, 46.675826 ], [ 29.558716, 46.929634 ], [ 29.413147, 47.348128 ], [ 29.050598, 47.511636 ], [ 29.122009, 47.850031 ], [ 28.668823, 48.118434 ], [ 28.256836, 48.156925 ], [ 27.520752, 48.467458 ], [ 26.856079, 48.369023 ], [ 26.617126, 48.221013 ], [ 26.196899, 48.221013 ], [ 25.944214, 47.988083 ], [ 25.205383, 47.892406 ], [ 24.864807, 47.739323 ], [ 24.400635, 47.982568 ], [ 23.760681, 47.986245 ], [ 23.139954, 48.096426 ], [ 22.708740, 47.883197 ], [ 22.640076, 48.151428 ], [ 22.500000, 48.221013 ], [ 22.280273, 48.328865 ], [ 22.280273, 48.824949 ], [ 22.535706, 49.066668 ], [ 22.629089, 49.066668 ], [ 22.774658, 49.028864 ], [ 22.752686, 49.066668 ], [ 33.969727, 49.066668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "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": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.114502, 41.828642 ], [ 26.603394, 41.564087 ], [ 26.315002, 40.979898 ], [ 26.293030, 40.936340 ], [ 26.056824, 40.824202 ], [ 25.447083, 40.853293 ], [ 24.925232, 40.948788 ], [ 24.301758, 40.813809 ], [ 22.280273, 40.813809 ], [ 22.280273, 41.143501 ], [ 22.500000, 41.135227 ], [ 22.596130, 41.131090 ], [ 22.760925, 41.306698 ], [ 22.950439, 41.339700 ], [ 23.692017, 41.310824 ], [ 24.491272, 41.584634 ], [ 25.197144, 41.236511 ], [ 26.103516, 41.329389 ], [ 26.114502, 41.828642 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.969727, 42.026854 ], [ 33.969727, 40.813809 ], [ 29.014893, 40.813809 ], [ 29.105530, 40.979898 ], [ 29.237366, 41.222052 ], [ 31.143494, 41.087632 ], [ 32.346497, 41.736479 ], [ 33.511047, 42.020733 ], [ 33.750000, 42.022773 ], [ 33.969727, 42.026854 ] ] ], [ [ [ 27.133484, 42.143042 ], [ 27.995911, 42.008489 ], [ 28.114014, 41.623655 ], [ 28.987427, 41.300508 ], [ 28.806152, 41.056573 ], [ 27.616882, 41.000630 ], [ 27.589417, 40.979898 ], [ 27.361450, 40.813809 ], [ 26.054077, 40.813809 ], [ 26.056824, 40.824202 ], [ 26.293030, 40.936340 ], [ 26.315002, 40.979898 ], [ 26.603394, 41.564087 ], [ 26.114502, 41.828642 ], [ 27.133484, 42.143042 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 33.969727, 55.899956 ], [ 33.969727, 52.143602 ], [ 33.750000, 52.335339 ], [ 32.714539, 52.239574 ], [ 32.409668, 52.290003 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.539001, 52.742943 ], [ 31.302795, 53.074228 ], [ 31.495056, 53.168180 ], [ 32.302551, 53.133590 ], [ 32.692566, 53.352191 ], [ 32.404175, 53.618579 ], [ 31.731262, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.157609 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.083084 ], [ 30.871582, 55.551942 ], [ 29.948730, 55.776573 ], [ 29.893799, 55.790473 ], [ 29.838867, 55.776573 ], [ 29.369202, 55.671389 ], [ 29.308777, 55.776573 ], [ 29.237366, 55.899956 ], [ 33.969727, 55.899956 ] ] ], [ [ [ 22.280273, 55.021725 ], [ 22.313232, 55.015426 ], [ 22.500000, 54.949231 ], [ 22.755432, 54.857640 ], [ 22.648315, 54.583205 ], [ 22.730713, 54.327736 ], [ 22.500000, 54.326135 ], [ 22.280273, 54.324533 ], [ 22.280273, 55.021725 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Poland", "sov_a3": "POL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Poland", "adm0_a3": "POL", "geou_dif": 0, "geounit": "Poland", "gu_a3": "POL", "su_dif": 0, "subunit": "Poland", "su_a3": "POL", "brk_diff": 0, "name": "Poland", "name_long": "Poland", "brk_a3": "POL", "brk_name": "Poland", "abbrev": "Pol.", "postal": "PL", "formal_en": "Republic of Poland", "name_sort": "Poland", "mapcolor7": 3, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 38482919, "gdp_md_est": 667900, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PL", "iso_a3": "POL", "iso_n3": "616", "un_a3": "616", "wb_a2": "PL", "wb_a3": "POL", "woe_id": -99, "adm0_a3_is": "POL", "adm0_a3_us": "POL", "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": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.730713, 54.327736 ], [ 23.241577, 54.221891 ], [ 23.483276, 53.914046 ], [ 23.527222, 53.471700 ], [ 23.804626, 53.090725 ], [ 23.799133, 52.691367 ], [ 23.197632, 52.487798 ], [ 23.507996, 52.023769 ], [ 23.524475, 51.578776 ], [ 24.029846, 50.706895 ], [ 23.922729, 50.426019 ], [ 23.425598, 50.308638 ], [ 22.516479, 49.477048 ], [ 22.774658, 49.028864 ], [ 22.557678, 49.086459 ], [ 22.500000, 49.109838 ], [ 22.280273, 49.199654 ], [ 22.280273, 54.324533 ], [ 22.500000, 54.326135 ], [ 22.730713, 54.327736 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.280273, 49.199654 ], [ 22.500000, 49.109838 ], [ 22.557678, 49.086459 ], [ 22.500000, 49.032466 ], [ 22.280273, 48.826757 ], [ 22.280273, 49.199654 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "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": "Polygon", "coordinates": [ [ [ 27.424622, 55.899956 ], [ 27.100525, 55.784296 ], [ 27.075806, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.174927, 55.776573 ], [ 25.930481, 55.899956 ], [ 27.424622, 55.899956 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.930481, 55.899956 ], [ 26.174927, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.586914, 55.167888 ], [ 25.768433, 54.848153 ], [ 25.534973, 54.282865 ], [ 24.450073, 53.905956 ], [ 23.483276, 53.914046 ], [ 23.241577, 54.221891 ], [ 22.730713, 54.327736 ], [ 22.648315, 54.583205 ], [ 22.755432, 54.857640 ], [ 22.500000, 54.949231 ], [ 22.313232, 55.015426 ], [ 22.280273, 55.021725 ], [ 22.280273, 55.899956 ], [ 25.930481, 55.899956 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Belarus", "sov_a3": "BLR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belarus", "adm0_a3": "BLR", "geou_dif": 0, "geounit": "Belarus", "gu_a3": "BLR", "su_dif": 0, "subunit": "Belarus", "su_a3": "BLR", "brk_diff": 0, "name": "Belarus", "name_long": "Belarus", "brk_a3": "BLR", "brk_name": "Belarus", "abbrev": "Bela.", "postal": "BY", "formal_en": "Republic of Belarus", "name_sort": "Belarus", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 9648533, "gdp_md_est": 114100, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BY", "iso_a3": "BLR", "iso_n3": "112", "un_a3": "112", "wb_a2": "BY", "wb_a3": "BLR", "woe_id": -99, "adm0_a3_is": "BLR", "adm0_a3_us": "BLR", "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": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.237366, 55.899956 ], [ 29.308777, 55.776573 ], [ 29.369202, 55.671389 ], [ 29.838867, 55.776573 ], [ 29.893799, 55.790473 ], [ 29.948730, 55.776573 ], [ 30.871582, 55.551942 ], [ 30.970459, 55.083084 ], [ 30.756226, 54.813348 ], [ 31.382446, 54.157609 ], [ 31.788940, 53.975474 ], [ 31.731262, 53.794162 ], [ 32.404175, 53.618579 ], [ 32.692566, 53.352191 ], [ 32.302551, 53.133590 ], [ 31.495056, 53.168180 ], [ 31.302795, 53.074228 ], [ 31.539001, 52.742943 ], [ 31.783447, 52.103131 ], [ 30.926514, 52.042355 ], [ 30.618896, 51.823896 ], [ 30.552979, 51.320314 ], [ 30.154724, 51.416338 ], [ 29.253845, 51.368351 ], [ 28.990173, 51.602666 ], [ 28.616638, 51.428327 ], [ 28.240356, 51.573656 ], [ 27.452087, 51.592429 ], [ 26.336975, 51.832383 ], [ 25.326233, 51.912085 ], [ 24.551697, 51.890054 ], [ 24.002380, 51.618017 ], [ 23.524475, 51.578776 ], [ 23.507996, 52.023769 ], [ 23.197632, 52.487798 ], [ 23.799133, 52.691367 ], [ 23.804626, 53.090725 ], [ 23.527222, 53.471700 ], [ 23.483276, 53.914046 ], [ 24.450073, 53.905956 ], [ 25.534973, 54.282865 ], [ 25.768433, 54.848153 ], [ 26.586914, 55.167888 ], [ 26.493530, 55.615589 ], [ 27.075806, 55.776573 ], [ 27.100525, 55.784296 ], [ 27.424622, 55.899956 ], [ 29.237366, 55.899956 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 33.750000, 52.335339 ], [ 33.969727, 52.143602 ], [ 33.969727, 48.777913 ], [ 22.280273, 48.777913 ], [ 22.280273, 48.826757 ], [ 22.500000, 49.032466 ], [ 22.557678, 49.086459 ], [ 22.774658, 49.028864 ], [ 22.516479, 49.477048 ], [ 23.425598, 50.308638 ], [ 23.922729, 50.426019 ], [ 24.029846, 50.706895 ], [ 23.524475, 51.578776 ], [ 24.002380, 51.618017 ], [ 24.551697, 51.890054 ], [ 25.326233, 51.912085 ], [ 26.336975, 51.832383 ], [ 27.452087, 51.592429 ], [ 28.240356, 51.573656 ], [ 28.616638, 51.428327 ], [ 28.990173, 51.602666 ], [ 29.253845, 51.368351 ], [ 30.154724, 51.416338 ], [ 30.552979, 51.320314 ], [ 30.618896, 51.823896 ], [ 30.926514, 52.042355 ], [ 31.783447, 52.103131 ], [ 32.156982, 52.062623 ], [ 32.409668, 52.290003 ], [ 32.714539, 52.239574 ], [ 33.750000, 52.335339 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 33.969727, 61.710706 ], [ 33.969727, 55.652798 ], [ 30.456848, 55.652798 ], [ 29.948730, 55.776573 ], [ 29.893799, 55.790473 ], [ 29.838867, 55.776573 ], [ 29.369202, 55.671389 ], [ 29.308777, 55.776573 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.853088, 56.760251 ], [ 27.767944, 57.244880 ], [ 27.287292, 57.475973 ], [ 27.715759, 57.792089 ], [ 27.419128, 58.725451 ], [ 28.130493, 59.300954 ], [ 27.979431, 59.475779 ], [ 29.116516, 60.029186 ], [ 28.067322, 60.504583 ], [ 29.913025, 61.606396 ], [ 30.091553, 61.710706 ], [ 33.969727, 61.710706 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.091553, 61.710706 ], [ 29.913025, 61.606396 ], [ 28.067322, 60.504583 ], [ 26.254578, 60.424699 ], [ 24.494019, 60.057987 ], [ 22.868042, 59.847574 ], [ 22.500000, 60.196156 ], [ 22.288513, 60.392148 ], [ 22.280273, 60.396219 ], [ 22.280273, 61.710706 ], [ 30.091553, 61.710706 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "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": "Polygon", "coordinates": [ [ [ 25.164185, 57.970244 ], [ 25.600891, 57.847674 ], [ 26.463318, 57.477450 ], [ 27.287292, 57.475973 ], [ 27.767944, 57.244880 ], [ 27.853088, 56.760251 ], [ 28.174438, 56.170023 ], [ 27.100525, 55.784296 ], [ 27.075806, 55.776573 ], [ 26.628113, 55.652798 ], [ 26.419373, 55.652798 ], [ 26.174927, 55.776573 ], [ 25.532227, 56.101152 ], [ 24.999390, 56.165435 ], [ 24.859314, 56.372856 ], [ 23.876038, 56.273861 ], [ 22.500000, 56.327198 ], [ 22.280273, 56.334812 ], [ 22.280273, 57.665973 ], [ 22.500000, 57.745213 ], [ 22.521973, 57.754007 ], [ 23.315735, 57.006346 ], [ 24.120483, 57.025784 ], [ 24.312744, 57.793553 ], [ 25.164185, 57.970244 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Estonia", "sov_a3": "EST", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Estonia", "adm0_a3": "EST", "geou_dif": 0, "geounit": "Estonia", "gu_a3": "EST", "su_dif": 0, "subunit": "Estonia", "su_a3": "EST", "brk_diff": 0, "name": "Estonia", "name_long": "Estonia", "brk_a3": "EST", "brk_name": "Estonia", "abbrev": "Est.", "postal": "EST", "formal_en": "Republic of Estonia", "name_sort": "Estonia", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 10, "pop_est": 1299371, "gdp_md_est": 27410, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "EE", "iso_a3": "EST", "iso_n3": "233", "un_a3": "233", "wb_a2": "EE", "wb_a3": "EST", "woe_id": -99, "adm0_a3_is": "EST", "adm0_a3_us": "EST", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.861816, 59.612212 ], [ 26.946716, 59.446471 ], [ 27.979431, 59.475779 ], [ 28.130493, 59.300954 ], [ 27.419128, 58.725451 ], [ 27.715759, 57.792089 ], [ 27.287292, 57.475973 ], [ 26.463318, 57.477450 ], [ 25.600891, 57.847674 ], [ 25.164185, 57.970244 ], [ 24.312744, 57.793553 ], [ 24.428101, 58.384438 ], [ 24.060059, 58.257508 ], [ 23.425598, 58.614056 ], [ 23.337708, 59.188592 ], [ 24.603882, 59.466013 ], [ 25.861816, 59.612212 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.859314, 56.372856 ], [ 24.999390, 56.165435 ], [ 25.532227, 56.101152 ], [ 26.174927, 55.776573 ], [ 26.419373, 55.652798 ], [ 22.280273, 55.652798 ], [ 22.280273, 56.334812 ], [ 22.500000, 56.327198 ], [ 23.876038, 56.273861 ], [ 24.859314, 56.372856 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Belarus", "sov_a3": "BLR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belarus", "adm0_a3": "BLR", "geou_dif": 0, "geounit": "Belarus", "gu_a3": "BLR", "su_dif": 0, "subunit": "Belarus", "su_a3": "BLR", "brk_diff": 0, "name": "Belarus", "name_long": "Belarus", "brk_a3": "BLR", "brk_name": "Belarus", "abbrev": "Bela.", "postal": "BY", "formal_en": "Republic of Belarus", "name_sort": "Belarus", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 9648533, "gdp_md_est": 114100, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BY", "iso_a3": "BLR", "iso_n3": "112", "un_a3": "112", "wb_a2": "BY", "wb_a3": "BLR", "woe_id": -99, "adm0_a3_is": "BLR", "adm0_a3_us": "BLR", "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": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.174438, 56.170023 ], [ 29.229126, 55.918430 ], [ 29.308777, 55.776573 ], [ 29.369202, 55.671389 ], [ 29.838867, 55.776573 ], [ 29.893799, 55.790473 ], [ 29.948730, 55.776573 ], [ 30.456848, 55.652798 ], [ 26.628113, 55.652798 ], [ 27.075806, 55.776573 ], [ 27.100525, 55.784296 ], [ 28.174438, 56.170023 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 33.255615, 66.600676 ], [ 33.450623, 66.513260 ], [ 33.750000, 66.381560 ], [ 33.969727, 66.283432 ], [ 33.969727, 61.501734 ], [ 29.734497, 61.501734 ], [ 29.913025, 61.606396 ], [ 30.209656, 61.780916 ], [ 31.138000, 62.358530 ], [ 31.514282, 62.868926 ], [ 30.033875, 63.553446 ], [ 30.443115, 64.205182 ], [ 29.542236, 64.949139 ], [ 30.215149, 65.806153 ], [ 29.501038, 66.513260 ], [ 29.410400, 66.600676 ], [ 33.255615, 66.600676 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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": "Polygon", "coordinates": [ [ [ 23.560181, 66.600676 ], [ 23.562927, 66.513260 ], [ 23.565674, 66.396961 ], [ 23.900757, 66.007969 ], [ 22.500000, 65.776871 ], [ 22.280273, 65.740785 ], [ 22.280273, 66.600676 ], [ 23.560181, 66.600676 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.410400, 66.600676 ], [ 29.501038, 66.513260 ], [ 30.215149, 65.806153 ], [ 29.542236, 64.949139 ], [ 30.443115, 64.205182 ], [ 30.033875, 63.553446 ], [ 31.514282, 62.868926 ], [ 31.138000, 62.358530 ], [ 30.209656, 61.780916 ], [ 29.913025, 61.606396 ], [ 29.734497, 61.501734 ], [ 22.280273, 61.501734 ], [ 22.280273, 63.707156 ], [ 22.442322, 63.818864 ], [ 22.500000, 63.845512 ], [ 24.730225, 64.902580 ], [ 25.397644, 65.111460 ], [ 25.293274, 65.534584 ], [ 23.900757, 66.007969 ], [ 23.565674, 66.396961 ], [ 23.562927, 66.513260 ], [ 23.560181, 66.600676 ], [ 29.410400, 66.600676 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 32.132263, 69.906724 ], [ 33.750000, 69.311529 ], [ 33.774719, 69.301823 ], [ 33.969727, 69.285314 ], [ 33.969727, 66.751830 ], [ 33.917542, 66.760501 ], [ 33.750000, 66.731223 ], [ 33.184204, 66.633377 ], [ 33.450623, 66.513260 ], [ 33.648376, 66.425537 ], [ 29.588928, 66.425537 ], [ 29.501038, 66.513260 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.065619 ], [ 29.399414, 69.157672 ], [ 31.099548, 69.558512 ], [ 32.132263, 69.906724 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 30.314026, 70.685421 ], [ 30.621643, 70.612614 ], [ 31.291809, 70.454265 ], [ 30.003662, 70.186965 ], [ 31.099548, 69.558512 ], [ 29.399414, 69.157672 ], [ 28.591919, 69.065619 ], [ 29.014893, 69.766607 ], [ 27.732239, 70.164610 ], [ 26.177673, 69.825418 ], [ 25.688782, 69.093080 ], [ 24.732971, 68.650556 ], [ 23.661804, 68.892220 ], [ 22.500000, 68.847665 ], [ 22.354431, 68.842709 ], [ 22.280273, 68.878368 ], [ 22.280273, 70.226957 ], [ 22.500000, 70.219523 ], [ 23.021851, 70.202785 ], [ 23.768921, 70.612614 ], [ 23.903503, 70.685421 ], [ 30.314026, 70.685421 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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": "Polygon", "coordinates": [ [ [ 22.280273, 68.486977 ], [ 22.500000, 68.392101 ], [ 23.538208, 67.936492 ], [ 23.562927, 66.513260 ], [ 23.562927, 66.425537 ], [ 22.280273, 66.425537 ], [ 22.280273, 68.486977 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.732239, 70.164610 ], [ 29.014893, 69.766607 ], [ 28.591919, 69.065619 ], [ 28.443604, 68.364776 ], [ 29.976196, 67.699025 ], [ 29.053345, 66.945123 ], [ 29.501038, 66.513260 ], [ 29.588928, 66.425537 ], [ 23.562927, 66.425537 ], [ 23.562927, 66.513260 ], [ 23.538208, 67.936492 ], [ 22.500000, 68.392101 ], [ 22.280273, 68.486977 ], [ 22.280273, 68.878368 ], [ 22.354431, 68.842709 ], [ 22.500000, 68.847665 ], [ 23.661804, 68.892220 ], [ 24.732971, 68.650556 ], [ 25.688782, 69.093080 ], [ 26.177673, 69.825418 ], [ 27.732239, 70.164610 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 28.163452, 71.185982 ], [ 30.621643, 70.612614 ], [ 30.932007, 70.539543 ], [ 23.634338, 70.539543 ], [ 23.768921, 70.612614 ], [ 24.546204, 71.031249 ], [ 26.369934, 70.986560 ], [ 28.163452, 71.185982 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 22.881775, 78.455425 ], [ 23.280029, 78.079589 ], [ 24.721985, 77.853989 ], [ 22.500000, 77.446940 ], [ 22.489014, 77.445149 ], [ 22.280273, 77.473179 ], [ 22.280273, 78.397015 ], [ 22.500000, 78.418539 ], [ 22.881775, 78.455425 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 22.917480, 80.657296 ], [ 25.447083, 80.407473 ], [ 27.405396, 80.056627 ], [ 25.922241, 79.518159 ], [ 23.021851, 79.400085 ], [ 22.500000, 79.430356 ], [ 22.280273, 79.442440 ], [ 22.280273, 80.469064 ], [ 22.500000, 80.534330 ], [ 22.917480, 80.657296 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 45.219727, -83.956169 ], [ 45.219727, -85.070048 ], [ 33.530273, -85.070048 ], [ 33.530273, -83.956169 ], [ 45.219727, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 45.219727, -82.648222 ], [ 45.219727, -84.002262 ], [ 33.530273, -84.002262 ], [ 33.530273, -82.648222 ], [ 45.219727, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 45.219727, -81.059130 ], [ 45.219727, -82.704241 ], [ 33.530273, -82.704241 ], [ 33.530273, -81.059130 ], [ 45.219727, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 45.219727, -79.129976 ], [ 45.219727, -81.127169 ], [ 33.530273, -81.127169 ], [ 33.530273, -79.129976 ], [ 45.219727, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 45.219727, -76.790701 ], [ 45.219727, -79.212538 ], [ 33.530273, -79.212538 ], [ 33.530273, -76.790701 ], [ 45.219727, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 45.219727, -73.958939 ], [ 45.219727, -76.890745 ], [ 33.530273, -76.890745 ], [ 33.530273, -73.958939 ], [ 45.219727, -73.958939 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 45.219727, -70.539543 ], [ 45.219727, -74.079925 ], [ 33.530273, -74.079925 ], [ 33.530273, -70.539543 ], [ 45.219727, -70.539543 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 24 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 45.219727, -67.959179 ], [ 45.219727, -70.685421 ], [ 33.530273, -70.685421 ], [ 33.530273, -68.702491 ], [ 33.750000, -68.573431 ], [ 33.868103, -68.502080 ], [ 34.906311, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.647156, -69.776104 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.921326, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.937317, -68.462791 ], [ 44.112854, -68.267353 ], [ 45.000000, -68.021966 ], [ 45.219727, -67.959179 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 18 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mozambique", "sov_a3": "MOZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mozambique", "adm0_a3": "MOZ", "geou_dif": 0, "geounit": "Mozambique", "gu_a3": "MOZ", "su_dif": 0, "subunit": "Mozambique", "su_a3": "MOZ", "brk_diff": 0, "name": "Mozambique", "name_long": "Mozambique", "brk_a3": "MOZ", "brk_name": "Mozambique", "abbrev": "Moz.", "postal": "MZ", "formal_en": "Republic of Mozambique", "name_sort": "Mozambique", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 21669278, "gdp_md_est": 18940, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MZ", "iso_a3": "MOZ", "iso_n3": "508", "un_a3": "508", "wb_a2": "MZ", "wb_a3": "MOZ", "woe_id": -99, "adm0_a3_is": "MOZ", "adm0_a3_us": "MOZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.337524, -21.739091 ], [ 35.373230, -21.838555 ], [ 35.375977, -21.943046 ], [ 35.384216, -22.139076 ], [ 35.559998, -22.088185 ], [ 35.532532, -23.069624 ], [ 35.370483, -23.533773 ], [ 35.606689, -23.704895 ], [ 35.458374, -24.121689 ], [ 35.038147, -24.477150 ], [ 34.214172, -24.814161 ], [ 33.750000, -25.025884 ], [ 33.530273, -25.122906 ], [ 33.530273, -21.739091 ], [ 35.337524, -21.739091 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Madagascar", "sov_a3": "MDG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Madagascar", "adm0_a3": "MDG", "geou_dif": 0, "geounit": "Madagascar", "gu_a3": "MDG", "su_dif": 0, "subunit": "Madagascar", "su_a3": "MDG", "brk_diff": 0, "name": "Madagascar", "name_long": "Madagascar", "brk_a3": "MDG", "brk_name": "Madagascar", "abbrev": "Mad.", "postal": "MG", "formal_en": "Republic of Madagascar", "name_sort": "Madagascar", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 20653556, "gdp_md_est": 20130, "pop_year": -99, "lastcensus": 1993, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MG", "iso_a3": "MDG", "iso_n3": "450", "un_a3": "450", "wb_a2": "MG", "wb_a3": "MDG", "woe_id": -99, "adm0_a3_is": "MDG", "adm0_a3_us": "MDG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, -21.739091 ], [ 45.219727, -25.515179 ], [ 45.000000, -25.418470 ], [ 44.038696, -24.986058 ], [ 43.761292, -24.459651 ], [ 43.695374, -23.574057 ], [ 43.343811, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.280640, -21.943046 ], [ 43.332825, -21.739091 ], [ 45.219727, -21.739091 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 17 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "United Republic of Tanzania", "sov_a3": "TZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Republic of Tanzania", "adm0_a3": "TZA", "geou_dif": 0, "geounit": "Tanzania", "gu_a3": "TZA", "su_dif": 0, "subunit": "Tanzania", "su_a3": "TZA", "brk_diff": 0, "name": "Tanzania", "name_long": "Tanzania", "brk_a3": "TZA", "brk_name": "Tanzania", "abbrev": "Tanz.", "postal": "TZ", "formal_en": "United Republic of Tanzania", "name_sort": "Tanzania", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 41048532, "gdp_md_est": 54250, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TZ", "iso_a3": "TZA", "iso_n3": "834", "un_a3": "834", "wb_a2": "TZ", "wb_a3": "TZA", "woe_id": -99, "adm0_a3_is": "TZA", "adm0_a3_us": "TZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.333801, -10.962764 ], [ 38.726807, -11.178402 ], [ 38.427429, -11.283467 ], [ 37.825928, -11.267306 ], [ 37.468872, -11.566144 ], [ 36.773987, -11.593051 ], [ 36.513062, -11.719478 ], [ 35.310059, -11.436955 ], [ 34.557495, -11.517705 ], [ 34.488831, -11.178402 ], [ 34.444885, -10.962764 ], [ 39.333801, -10.962764 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.444885, -10.962764 ], [ 34.488831, -11.178402 ], [ 34.557495, -11.517705 ], [ 34.277344, -12.278283 ], [ 34.557495, -13.579251 ], [ 34.906311, -13.563232 ], [ 35.266113, -13.886079 ], [ 35.686340, -14.610163 ], [ 35.771484, -15.895301 ], [ 35.337524, -16.106514 ], [ 35.032654, -16.799282 ], [ 34.378967, -16.183024 ], [ 34.304810, -15.477504 ], [ 34.516296, -15.011117 ], [ 34.458618, -14.612821 ], [ 34.063110, -14.357530 ], [ 33.788452, -14.450639 ], [ 33.750000, -14.418720 ], [ 33.530273, -14.235100 ], [ 33.530273, -10.962764 ], [ 34.444885, -10.962764 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mozambique", "sov_a3": "MOZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mozambique", "adm0_a3": "MOZ", "geou_dif": 0, "geounit": "Mozambique", "gu_a3": "MOZ", "su_dif": 0, "subunit": "Mozambique", "su_a3": "MOZ", "brk_diff": 0, "name": "Mozambique", "name_long": "Mozambique", "brk_a3": "MOZ", "brk_name": "Mozambique", "abbrev": "Moz.", "postal": "MZ", "formal_en": "Republic of Mozambique", "name_sort": "Mozambique", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 21669278, "gdp_md_est": 18940, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MZ", "iso_a3": "MOZ", "iso_n3": "508", "un_a3": "508", "wb_a2": "MZ", "wb_a3": "MOZ", "woe_id": -99, "adm0_a3_is": "MOZ", "adm0_a3_us": "MOZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.468140, -10.962764 ], [ 40.459900, -11.178402 ], [ 40.435181, -11.759815 ], [ 40.558777, -12.637658 ], [ 40.597229, -14.200488 ], [ 40.773010, -14.689881 ], [ 40.476379, -15.406024 ], [ 40.089111, -16.098598 ], [ 39.451904, -16.720385 ], [ 38.537292, -17.098792 ], [ 37.408447, -17.583812 ], [ 36.279602, -18.659257 ], [ 35.895081, -18.841314 ], [ 35.197449, -19.552026 ], [ 34.785461, -19.782211 ], [ 34.700317, -20.496492 ], [ 35.175476, -21.253542 ], [ 35.373230, -21.838555 ], [ 35.375977, -21.943046 ], [ 35.384216, -22.139076 ], [ 35.559998, -22.088185 ], [ 35.559998, -22.146708 ], [ 33.530273, -22.146708 ], [ 33.530273, -14.235100 ], [ 33.750000, -14.418720 ], [ 33.788452, -14.450639 ], [ 34.063110, -14.357530 ], [ 34.458618, -14.612821 ], [ 34.516296, -15.011117 ], [ 34.304810, -15.477504 ], [ 34.378967, -16.183024 ], [ 35.032654, -16.799282 ], [ 35.337524, -16.106514 ], [ 35.771484, -15.895301 ], [ 35.686340, -14.610163 ], [ 35.266113, -13.886079 ], [ 34.906311, -13.563232 ], [ 34.557495, -13.579251 ], [ 34.277344, -12.278283 ], [ 34.557495, -11.517705 ], [ 35.310059, -11.436955 ], [ 36.513062, -11.719478 ], [ 36.773987, -11.593051 ], [ 37.468872, -11.566144 ], [ 37.825928, -11.267306 ], [ 38.427429, -11.283467 ], [ 38.726807, -11.178402 ], [ 39.333801, -10.962764 ], [ 40.468140, -10.962764 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Madagascar", "sov_a3": "MDG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Madagascar", "adm0_a3": "MDG", "geou_dif": 0, "geounit": "Madagascar", "gu_a3": "MDG", "su_dif": 0, "subunit": "Madagascar", "su_a3": "MDG", "brk_diff": 0, "name": "Madagascar", "name_long": "Madagascar", "brk_a3": "MDG", "brk_name": "Madagascar", "abbrev": "Mad.", "postal": "MG", "formal_en": "Republic of Madagascar", "name_sort": "Madagascar", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 20653556, "gdp_md_est": 20130, "pop_year": -99, "lastcensus": 1993, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MG", "iso_a3": "MDG", "iso_n3": "450", "un_a3": "450", "wb_a2": "MG", "wb_a3": "MDG", "woe_id": -99, "adm0_a3_is": "MDG", "adm0_a3_us": "MDG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, -16.077486 ], [ 45.219727, -22.146708 ], [ 43.264160, -22.146708 ], [ 43.253174, -22.055096 ], [ 43.280640, -21.943046 ], [ 43.431702, -21.335432 ], [ 43.893127, -21.161361 ], [ 43.895874, -20.828010 ], [ 44.373779, -20.071411 ], [ 44.461670, -19.432924 ], [ 44.230957, -18.960844 ], [ 44.041443, -18.331062 ], [ 43.961792, -17.408305 ], [ 44.310608, -16.849234 ], [ 44.445190, -16.214675 ], [ 44.942322, -16.177749 ], [ 45.000000, -16.156645 ], [ 45.219727, -16.077486 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 16 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 0.219726 ], [ 33.892822, 0.109863 ], [ 33.892822, 0.000000 ], [ 33.901062, -0.947528 ], [ 33.750000, -0.955766 ], [ 33.530273, -0.964005 ], [ 33.530273, 0.219726 ], [ 33.969727, 0.219726 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.987244, 0.219726 ], [ 40.989990, 0.000000 ], [ 40.992737, -0.856902 ], [ 41.583252, -1.680667 ], [ 40.882874, -2.081451 ], [ 40.635681, -2.498597 ], [ 40.262146, -2.572682 ], [ 40.119324, -3.277630 ], [ 39.797974, -3.680632 ], [ 39.602966, -4.346411 ], [ 39.201965, -4.674980 ], [ 37.765503, -3.675151 ], [ 37.696838, -3.096636 ], [ 34.071350, -1.057374 ], [ 33.901062, -0.947528 ], [ 33.892822, 0.000000 ], [ 33.892822, 0.109863 ], [ 33.969727, 0.219726 ], [ 40.987244, 0.219726 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.069153, 0.219726 ], [ 42.871399, 0.000000 ], [ 42.039185, -0.917319 ], [ 41.808472, -1.444549 ], [ 41.583252, -1.680667 ], [ 40.992737, -0.856902 ], [ 40.989990, 0.000000 ], [ 40.987244, 0.219726 ], [ 43.069153, 0.219726 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "United Republic of Tanzania", "sov_a3": "TZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Republic of Tanzania", "adm0_a3": "TZA", "geou_dif": 0, "geounit": "Tanzania", "gu_a3": "TZA", "su_dif": 0, "subunit": "Tanzania", "su_a3": "TZA", "brk_diff": 0, "name": "Tanzania", "name_long": "Tanzania", "brk_a3": "TZA", "brk_name": "Tanzania", "abbrev": "Tanz.", "postal": "TZ", "formal_en": "United Republic of Tanzania", "name_sort": "Tanzania", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 41048532, "gdp_md_est": 54250, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TZ", "iso_a3": "TZA", "iso_n3": "834", "un_a3": "834", "wb_a2": "TZ", "wb_a3": "TZA", "woe_id": -99, "adm0_a3_is": "TZA", "adm0_a3_us": "TZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.901062, -0.947528 ], [ 34.071350, -1.057374 ], [ 37.696838, -3.096636 ], [ 37.765503, -3.675151 ], [ 39.201965, -4.674980 ], [ 38.740540, -5.908385 ], [ 38.798218, -6.473609 ], [ 39.438171, -6.839170 ], [ 39.468384, -7.098167 ], [ 39.193726, -7.702826 ], [ 39.251404, -8.007557 ], [ 39.185486, -8.483239 ], [ 39.534302, -9.110233 ], [ 39.949036, -10.095966 ], [ 40.314331, -10.314919 ], [ 39.520569, -10.895345 ], [ 38.726807, -11.178402 ], [ 38.427429, -11.283467 ], [ 37.825928, -11.267306 ], [ 37.677612, -11.393879 ], [ 34.532776, -11.393879 ], [ 34.488831, -11.178402 ], [ 34.277344, -10.158153 ], [ 33.750000, -9.430096 ], [ 33.739014, -9.416548 ], [ 33.530273, -9.375903 ], [ 33.530273, -0.964005 ], [ 33.750000, -0.955766 ], [ 33.901062, -0.947528 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.530273, -9.375903 ], [ 33.739014, -9.416548 ], [ 33.750000, -9.430096 ], [ 34.277344, -10.158153 ], [ 34.488831, -11.178402 ], [ 34.532776, -11.393879 ], [ 33.530273, -11.393879 ], [ 33.530273, -9.375903 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mozambique", "sov_a3": "MOZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mozambique", "adm0_a3": "MOZ", "geou_dif": 0, "geounit": "Mozambique", "gu_a3": "MOZ", "su_dif": 0, "subunit": "Mozambique", "su_a3": "MOZ", "brk_diff": 0, "name": "Mozambique", "name_long": "Mozambique", "brk_a3": "MOZ", "brk_name": "Mozambique", "abbrev": "Moz.", "postal": "MZ", "formal_en": "Republic of Mozambique", "name_sort": "Mozambique", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 21669278, "gdp_md_est": 18940, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MZ", "iso_a3": "MOZ", "iso_n3": "508", "un_a3": "508", "wb_a2": "MZ", "wb_a3": "MOZ", "woe_id": -99, "adm0_a3_is": "MOZ", "adm0_a3_us": "MOZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.314331, -10.314919 ], [ 40.476379, -10.763159 ], [ 40.459900, -11.178402 ], [ 40.451660, -11.393879 ], [ 37.677612, -11.393879 ], [ 37.825928, -11.267306 ], [ 38.427429, -11.283467 ], [ 38.726807, -11.178402 ], [ 39.520569, -10.895345 ], [ 40.314331, -10.314919 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 34.873352, 11.393879 ], [ 34.829407, 11.321174 ], [ 34.796448, 11.178402 ], [ 34.730530, 10.911527 ], [ 34.255371, 10.630916 ], [ 33.961487, 9.584501 ], [ 33.961487, 9.465317 ], [ 33.824158, 9.484281 ], [ 33.840637, 9.982376 ], [ 33.750000, 10.247357 ], [ 33.719788, 10.325728 ], [ 33.530273, 10.474308 ], [ 33.530273, 11.393879 ], [ 34.873352, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.530273, 7.719157 ], [ 33.565979, 7.713713 ], [ 33.750000, 7.539487 ], [ 34.074097, 7.226249 ], [ 34.249878, 6.828261 ], [ 34.705811, 6.596402 ], [ 35.296326, 5.506640 ], [ 34.002686, 4.250551 ], [ 33.530273, 3.897138 ], [ 33.530273, 7.719157 ] ] ], [ [ [ 33.530273, 8.366410 ], [ 33.530273, 10.474308 ], [ 33.719788, 10.325728 ], [ 33.750000, 10.247357 ], [ 33.840637, 9.982376 ], [ 33.824158, 9.484281 ], [ 33.961487, 9.465317 ], [ 33.972473, 8.686924 ], [ 33.824158, 8.379997 ], [ 33.750000, 8.377279 ], [ 33.530273, 8.366410 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.002686, 4.250551 ], [ 34.477844, 3.557283 ], [ 34.595947, 3.055497 ], [ 35.035400, 1.908521 ], [ 34.670105, 1.178201 ], [ 34.178467, 0.516350 ], [ 33.892822, 0.109863 ], [ 33.892822, 0.000000 ], [ 33.895569, -0.219726 ], [ 33.530273, -0.219726 ], [ 33.530273, 3.897138 ], [ 34.002686, 4.250551 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Djibouti", "sov_a3": "DJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Djibouti", "adm0_a3": "DJI", "geou_dif": 0, "geounit": "Djibouti", "gu_a3": "DJI", "su_dif": 0, "subunit": "Djibouti", "su_a3": "DJI", "brk_diff": 0, "name": "Djibouti", "name_long": "Djibouti", "brk_a3": "DJI", "brk_name": "Djibouti", "abbrev": "Dji.", "postal": "DJ", "formal_en": "Republic of Djibouti", "name_sort": "Djibouti", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 516055, "gdp_md_est": 1885, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "DJ", "iso_a3": "DJI", "iso_n3": "262", "un_a3": "262", "wb_a2": "DJ", "wb_a3": "DJI", "woe_id": -99, "adm0_a3_is": "DJI", "adm0_a3_us": "DJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Middle East & North Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.096619, 11.393879 ], [ 42.948303, 11.178402 ], [ 42.775269, 10.927708 ], [ 42.552795, 11.105642 ], [ 42.313843, 11.035560 ], [ 41.753540, 11.051734 ], [ 41.748047, 11.178402 ], [ 41.737061, 11.356182 ], [ 41.726074, 11.393879 ], [ 43.096619, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.296326, 5.506640 ], [ 35.815430, 5.339848 ], [ 35.815430, 4.778995 ], [ 36.158752, 4.450474 ], [ 36.853638, 4.450474 ], [ 38.119812, 3.601142 ], [ 38.435669, 3.590178 ], [ 38.669128, 3.617589 ], [ 38.891602, 3.502455 ], [ 39.559021, 3.422950 ], [ 39.852905, 3.839591 ], [ 40.767517, 4.258768 ], [ 41.171265, 3.921800 ], [ 41.852417, 3.919060 ], [ 40.979004, 2.786681 ], [ 40.989990, 0.000000 ], [ 40.989990, -0.219726 ], [ 33.895569, -0.219726 ], [ 33.892822, 0.000000 ], [ 33.892822, 0.109863 ], [ 34.178467, 0.516350 ], [ 34.670105, 1.178201 ], [ 35.035400, 1.908521 ], [ 34.595947, 3.055497 ], [ 34.477844, 3.557283 ], [ 34.002686, 4.250551 ], [ 35.296326, 5.506640 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.726074, 11.393879 ], [ 41.737061, 11.356182 ], [ 41.748047, 11.178402 ], [ 41.753540, 11.051734 ], [ 42.313843, 11.035560 ], [ 42.552795, 11.105642 ], [ 42.775269, 10.927708 ], [ 42.558289, 10.574222 ], [ 42.926331, 10.022948 ], [ 43.294373, 9.541166 ], [ 43.676147, 9.186159 ], [ 45.000000, 8.705929 ], [ 45.219727, 8.627188 ], [ 45.219727, 5.276948 ], [ 45.000000, 5.041699 ], [ 44.961548, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.767029, 4.253290 ], [ 42.127075, 4.236856 ], [ 41.852417, 3.919060 ], [ 41.171265, 3.921800 ], [ 40.767517, 4.258768 ], [ 39.852905, 3.839591 ], [ 39.559021, 3.422950 ], [ 38.891602, 3.502455 ], [ 38.669128, 3.617589 ], [ 38.435669, 3.590178 ], [ 38.119812, 3.601142 ], [ 36.853638, 4.450474 ], [ 36.158752, 4.450474 ], [ 35.815430, 4.778995 ], [ 35.815430, 5.339848 ], [ 35.296326, 5.506640 ], [ 34.705811, 6.596402 ], [ 34.249878, 6.828261 ], [ 34.074097, 7.226249 ], [ 33.750000, 7.539487 ], [ 33.565979, 7.713713 ], [ 33.530273, 7.719157 ], [ 33.530273, 8.366410 ], [ 33.750000, 8.377279 ], [ 33.824158, 8.379997 ], [ 33.972473, 8.686924 ], [ 33.961487, 9.584501 ], [ 34.255371, 10.630916 ], [ 34.730530, 10.911527 ], [ 34.796448, 11.178402 ], [ 34.829407, 11.321174 ], [ 34.873352, 11.393879 ], [ 41.726074, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "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": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.264160, 11.393879 ], [ 43.470154, 11.278080 ], [ 43.516846, 11.178402 ], [ 43.665161, 10.865676 ], [ 44.115601, 10.447299 ], [ 44.612732, 10.444598 ], [ 45.000000, 10.547221 ], [ 45.219727, 10.606620 ], [ 45.219727, 8.627188 ], [ 45.000000, 8.705929 ], [ 43.676147, 9.186159 ], [ 43.294373, 9.541166 ], [ 42.926331, 10.022948 ], [ 42.558289, 10.574222 ], [ 42.775269, 10.927708 ], [ 42.948303, 11.178402 ], [ 43.096619, 11.393879 ], [ 43.264160, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, 5.276948 ], [ 45.219727, 1.817932 ], [ 45.000000, 1.672431 ], [ 44.066162, 1.054628 ], [ 43.135071, 0.293883 ], [ 42.871399, 0.000000 ], [ 42.670898, -0.219726 ], [ 40.989990, -0.219726 ], [ 40.989990, 0.000000 ], [ 40.979004, 2.786681 ], [ 41.852417, 3.919060 ], [ 42.127075, 4.236856 ], [ 42.767029, 4.253290 ], [ 43.659668, 4.959615 ], [ 44.961548, 5.003394 ], [ 45.000000, 5.041699 ], [ 45.219727, 5.276948 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.738281, 22.146708 ], [ 36.864624, 22.001628 ], [ 33.530273, 22.001628 ], [ 33.530273, 22.146708 ], [ 36.738281, 22.146708 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 36.864624, 22.001628 ], [ 36.883850, 21.943046 ], [ 37.185974, 21.020419 ], [ 36.968994, 20.838278 ], [ 37.114563, 19.808054 ], [ 37.479858, 18.615013 ], [ 37.861633, 18.370166 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.429270 ], [ 37.166748, 17.264105 ], [ 36.850891, 16.956979 ], [ 36.752014, 16.293779 ], [ 36.320801, 14.822681 ], [ 36.427917, 14.424040 ], [ 36.268616, 13.565902 ], [ 35.862122, 12.578691 ], [ 35.257874, 12.084982 ], [ 34.829407, 11.321174 ], [ 34.796448, 11.178402 ], [ 34.741516, 10.962764 ], [ 33.530273, 10.962764 ], [ 33.530273, 22.001628 ], [ 36.864624, 22.001628 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Eritrea", "sov_a3": "ERI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Eritrea", "adm0_a3": "ERI", "geou_dif": 0, "geounit": "Eritrea", "gu_a3": "ERI", "su_dif": 0, "subunit": "Eritrea", "su_a3": "ERI", "brk_diff": 0, "name": "Eritrea", "name_long": "Eritrea", "brk_a3": "ERI", "brk_name": "Eritrea", "abbrev": "Erit.", "postal": "ER", "formal_en": "State of Eritrea", "name_sort": "Eritrea", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 5647168, "gdp_md_est": 3945, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ER", "iso_a3": "ERI", "iso_n3": "232", "un_a3": "232", "wb_a2": "ER", "wb_a3": "ERI", "woe_id": -99, "adm0_a3_is": "ERI", "adm0_a3_us": "ERI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.408203, 17.999632 ], [ 38.990479, 16.841348 ], [ 39.265137, 15.924356 ], [ 39.811707, 15.437796 ], [ 41.176758, 14.493190 ], [ 41.734314, 13.923404 ], [ 42.275391, 13.344193 ], [ 42.588501, 13.001882 ], [ 43.080139, 12.701971 ], [ 42.778015, 12.458033 ], [ 42.349548, 12.543840 ], [ 42.008972, 12.868037 ], [ 41.596985, 13.453737 ], [ 41.154785, 13.774066 ], [ 40.893860, 14.120595 ], [ 40.025940, 14.519780 ], [ 39.339294, 14.533074 ], [ 39.097595, 14.743011 ], [ 38.512573, 14.506485 ], [ 37.905579, 14.960706 ], [ 37.592468, 14.213801 ], [ 36.427917, 14.424040 ], [ 36.320801, 14.822681 ], [ 36.752014, 16.293779 ], [ 36.850891, 16.956979 ], [ 37.166748, 17.264105 ], [ 37.902832, 17.429270 ], [ 38.408203, 17.999632 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Djibouti", "sov_a3": "DJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Djibouti", "adm0_a3": "DJI", "geou_dif": 0, "geounit": "Djibouti", "gu_a3": "DJI", "su_dif": 0, "subunit": "Djibouti", "su_a3": "DJI", "brk_diff": 0, "name": "Djibouti", "name_long": "Djibouti", "brk_a3": "DJI", "brk_name": "Djibouti", "abbrev": "Dji.", "postal": "DJ", "formal_en": "Republic of Djibouti", "name_sort": "Djibouti", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 516055, "gdp_md_est": 1885, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "DJ", "iso_a3": "DJI", "iso_n3": "262", "un_a3": "262", "wb_a2": "DJ", "wb_a3": "DJI", "woe_id": -99, "adm0_a3_is": "DJI", "adm0_a3_us": "DJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Middle East & North Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.080139, 12.701971 ], [ 43.316345, 12.390976 ], [ 43.286133, 11.977532 ], [ 42.714844, 11.738302 ], [ 43.143311, 11.463874 ], [ 42.948303, 11.178402 ], [ 42.799988, 10.962764 ], [ 42.731323, 10.962764 ], [ 42.552795, 11.105642 ], [ 42.313843, 11.035560 ], [ 41.753540, 11.051734 ], [ 41.748047, 11.178402 ], [ 41.737061, 11.356182 ], [ 41.660156, 11.633406 ], [ 41.997986, 12.101095 ], [ 42.349548, 12.543840 ], [ 42.778015, 12.458033 ], [ 43.080139, 12.701971 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.905579, 14.960706 ], [ 38.512573, 14.506485 ], [ 39.097595, 14.743011 ], [ 39.339294, 14.533074 ], [ 40.025940, 14.519780 ], [ 40.893860, 14.120595 ], [ 41.154785, 13.774066 ], [ 41.596985, 13.453737 ], [ 42.008972, 12.868037 ], [ 42.349548, 12.543840 ], [ 41.997986, 12.101095 ], [ 41.660156, 11.633406 ], [ 41.737061, 11.356182 ], [ 41.748047, 11.178402 ], [ 41.753540, 11.051734 ], [ 42.313843, 11.035560 ], [ 42.552795, 11.105642 ], [ 42.731323, 10.962764 ], [ 34.741516, 10.962764 ], [ 34.796448, 11.178402 ], [ 34.829407, 11.321174 ], [ 35.257874, 12.084982 ], [ 35.862122, 12.578691 ], [ 36.268616, 13.565902 ], [ 36.427917, 14.424040 ], [ 37.592468, 14.213801 ], [ 37.905579, 14.960706 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 45.219727, 22.146708 ], [ 45.219727, 17.431890 ], [ 45.000000, 17.429270 ], [ 44.060669, 17.410925 ], [ 43.791504, 17.321798 ], [ 43.379517, 17.581194 ], [ 43.113098, 17.090917 ], [ 43.217468, 16.667769 ], [ 42.778015, 16.349132 ], [ 42.648926, 16.775617 ], [ 42.346802, 17.077790 ], [ 42.269897, 17.476432 ], [ 41.753540, 17.834989 ], [ 41.220703, 18.672267 ], [ 40.937805, 19.487308 ], [ 40.245667, 20.177145 ], [ 39.800720, 20.339476 ], [ 39.138794, 21.291933 ], [ 39.028931, 21.943046 ], [ 39.023438, 21.988895 ], [ 39.034424, 22.146708 ], [ 45.219727, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Yemen", "sov_a3": "YEM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Yemen", "adm0_a3": "YEM", "geou_dif": 0, "geounit": "Yemen", "gu_a3": "YEM", "su_dif": 0, "subunit": "Yemen", "su_a3": "YEM", "brk_diff": 0, "name": "Yemen", "name_long": "Yemen", "brk_a3": "YEM", "brk_name": "Yemen", "abbrev": "Yem.", "postal": "YE", "formal_en": "Republic of Yemen", "name_sort": "Yemen, Rep.", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 23822783, "gdp_md_est": 55280, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "YE", "iso_a3": "YEM", "iso_n3": "887", "un_a3": "887", "wb_a2": "RY", "wb_a3": "YEM", "woe_id": -99, "adm0_a3_is": "YEM", "adm0_a3_us": "YEM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.379517, 17.581194 ], [ 43.791504, 17.321798 ], [ 44.060669, 17.410925 ], [ 45.000000, 17.429270 ], [ 45.214233, 17.434511 ], [ 45.219727, 17.431890 ], [ 45.219727, 12.975118 ], [ 45.142822, 12.956383 ], [ 45.000000, 12.718047 ], [ 44.989014, 12.701971 ], [ 44.491882, 12.723405 ], [ 44.173279, 12.586732 ], [ 43.481140, 12.637658 ], [ 43.220215, 13.221230 ], [ 43.250427, 13.768731 ], [ 43.085632, 14.064652 ], [ 42.890625, 14.804094 ], [ 42.602234, 15.215288 ], [ 42.802734, 15.262989 ], [ 42.701111, 15.720882 ], [ 42.821960, 15.913791 ], [ 42.778015, 16.349132 ], [ 43.217468, 16.667769 ], [ 43.113098, 17.090917 ], [ 43.379517, 17.581194 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "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": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.143311, 11.463874 ], [ 43.470154, 11.278080 ], [ 43.516846, 11.178402 ], [ 43.618469, 10.962764 ], [ 42.799988, 10.962764 ], [ 42.948303, 11.178402 ], [ 43.143311, 11.463874 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.530273, 27.327855 ], [ 33.750000, 26.877981 ], [ 34.104309, 26.143111 ], [ 34.472351, 25.599425 ], [ 34.793701, 25.035839 ], [ 35.691833, 23.928524 ], [ 35.491333, 23.752668 ], [ 35.524292, 23.102471 ], [ 36.688843, 22.205206 ], [ 36.864624, 22.001628 ], [ 33.530273, 22.001628 ], [ 33.530273, 27.327855 ] ] ], [ [ [ 33.530273, 28.030773 ], [ 33.530273, 30.987028 ], [ 33.750000, 30.970544 ], [ 33.771973, 30.968189 ], [ 34.263611, 31.219848 ], [ 34.920044, 29.501769 ], [ 34.639893, 29.101777 ], [ 34.425659, 28.345482 ], [ 34.153748, 27.824503 ], [ 33.920288, 27.649472 ], [ 33.750000, 27.814786 ], [ 33.530273, 28.030773 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, 32.138409 ], [ 45.219727, 29.159357 ], [ 45.000000, 29.166552 ], [ 44.708862, 29.180941 ], [ 41.888123, 31.191658 ], [ 40.399475, 31.891551 ], [ 40.122070, 31.952162 ], [ 39.295349, 32.138409 ], [ 45.219727, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Israel", "adm0_a3": "ISR", "geou_dif": 0, "geounit": "Israel", "gu_a3": "ISR", "su_dif": 0, "subunit": "Israel", "su_a3": "ISR", "brk_diff": 0, "name": "Israel", "name_long": "Israel", "brk_a3": "ISR", "brk_name": "Israel", "abbrev": "Isr.", "postal": "IS", "formal_en": "State of Israel", "name_sort": "Israel", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 7233701, "gdp_md_est": 201400, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IL", "iso_a3": "ISR", "iso_n3": "376", "un_a3": "376", "wb_a2": "IL", "wb_a3": "ISR", "woe_id": -99, "adm0_a3_is": "ISR", "adm0_a3_us": "ISR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.057373, 32.138409 ], [ 34.999695, 31.952162 ], [ 34.972229, 31.868228 ], [ 35.224915, 31.756196 ], [ 34.969482, 31.618305 ], [ 34.925537, 31.353637 ], [ 35.395203, 31.489578 ], [ 35.419922, 31.102334 ], [ 34.920044, 29.501769 ], [ 34.263611, 31.219848 ], [ 34.554749, 31.550453 ], [ 34.486084, 31.606610 ], [ 34.683838, 31.952162 ], [ 34.752502, 32.073266 ], [ 34.768982, 32.138409 ], [ 35.057373, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 1, "level": 2, "type": "Disputed", "admin": "Palestine", "adm0_a3": "PSX", "geou_dif": 0, "geounit": "Palestine", "gu_a3": "PSX", "su_dif": 0, "subunit": "Palestine", "su_a3": "PSX", "brk_diff": 0, "name": "Palestine", "name_long": "Palestine", "brk_a3": "PSX", "brk_name": "Palestine", "abbrev": "Pal.", "postal": "PAL", "formal_en": "West Bank and Gaza", "note_adm0": "Partial self-admin.", "note_brk": "Partial self-admin.", "name_sort": "Palestine (West Bank and Gaza)", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 4119083, "gdp_md_est": 11950.8, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PS", "iso_a3": "PSE", "iso_n3": "275", "un_a3": "275", "wb_a2": "GZ", "wb_a3": "WBG", "woe_id": -99, "adm0_a3_is": "PSE", "adm0_a3_us": "PSX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.543518, 32.138409 ], [ 35.543518, 31.784217 ], [ 35.395203, 31.489578 ], [ 34.925537, 31.353637 ], [ 34.969482, 31.618305 ], [ 35.224915, 31.756196 ], [ 34.972229, 31.868228 ], [ 34.999695, 31.952162 ], [ 35.057373, 32.138409 ], [ 35.543518, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Jordan", "sov_a3": "JOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Jordan", "adm0_a3": "JOR", "geou_dif": 0, "geounit": "Jordan", "gu_a3": "JOR", "su_dif": 0, "subunit": "Jordan", "su_a3": "JOR", "brk_diff": 0, "name": "Jordan", "name_long": "Jordan", "brk_a3": "JOR", "brk_name": "Jordan", "abbrev": "Jord.", "postal": "J", "formal_en": "Hashemite Kingdom of Jordan", "name_sort": "Jordan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 6342948, "gdp_md_est": 31610, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "JO", "iso_a3": "JOR", "iso_n3": "400", "un_a3": "400", "wb_a2": "JO", "wb_a3": "JOR", "woe_id": -99, "adm0_a3_is": "JOR", "adm0_a3_us": "JOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.166260, 32.138409 ], [ 39.004211, 32.010405 ], [ 38.770752, 31.952162 ], [ 37.001953, 31.510654 ], [ 37.996216, 30.510217 ], [ 37.666626, 30.339695 ], [ 37.501831, 30.004895 ], [ 36.738281, 29.866847 ], [ 36.499329, 29.506549 ], [ 36.068115, 29.197726 ], [ 34.955750, 29.358239 ], [ 34.920044, 29.501769 ], [ 35.419922, 31.102334 ], [ 35.395203, 31.489578 ], [ 35.543518, 31.784217 ], [ 35.543518, 32.138409 ], [ 39.166260, 32.138409 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 36.864624, 22.001628 ], [ 36.883850, 21.943046 ], [ 36.949768, 21.739091 ], [ 33.530273, 21.739091 ], [ 33.530273, 22.001628 ], [ 36.864624, 22.001628 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 39.295349, 32.138409 ], [ 40.122070, 31.952162 ], [ 40.399475, 31.891551 ], [ 41.888123, 31.191658 ], [ 44.708862, 29.180941 ], [ 45.000000, 29.166552 ], [ 45.219727, 29.159357 ], [ 45.219727, 21.739091 ], [ 39.064636, 21.739091 ], [ 39.028931, 21.943046 ], [ 39.023438, 21.988895 ], [ 39.064636, 22.581047 ], [ 38.490601, 23.689805 ], [ 38.023682, 24.079067 ], [ 37.482605, 24.287027 ], [ 37.153015, 24.859026 ], [ 37.207947, 25.085599 ], [ 36.930542, 25.604379 ], [ 36.639404, 25.827089 ], [ 36.246643, 26.571333 ], [ 35.639648, 27.376645 ], [ 35.128784, 28.064710 ], [ 34.631653, 28.059862 ], [ 34.785461, 28.608637 ], [ 34.832153, 28.957686 ], [ 34.955750, 29.358239 ], [ 36.068115, 29.197726 ], [ 36.499329, 29.506549 ], [ 36.738281, 29.866847 ], [ 37.501831, 30.004895 ], [ 37.666626, 30.339695 ], [ 37.996216, 30.510217 ], [ 37.001953, 31.510654 ], [ 38.770752, 31.952162 ], [ 39.004211, 32.010405 ], [ 39.166260, 32.138409 ], [ 39.295349, 32.138409 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.057922, 41.145570 ], [ 43.580017, 41.093842 ], [ 43.475647, 41.145570 ], [ 44.057922, 41.145570 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Northern Cyprus", "sov_a3": "CYN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Northern Cyprus", "adm0_a3": "CYN", "geou_dif": 0, "geounit": "Northern Cyprus", "gu_a3": "CYN", "su_dif": 0, "subunit": "Northern Cyprus", "su_a3": "CYN", "brk_diff": 1, "name": "N. Cyprus", "name_long": "Northern Cyprus", "brk_a3": "B20", "brk_name": "N. Cyprus", "abbrev": "N. Cy.", "postal": "CN", "formal_en": "Turkish Republic of Northern Cyprus", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Cyprus", "name_sort": "Cyprus, Northern", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 265100, "gdp_md_est": 3600, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "CYP", "adm0_a3_us": "CYP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 15, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.573975, 35.672916 ], [ 33.898315, 35.247862 ], [ 33.972473, 35.059229 ], [ 33.865356, 35.095193 ], [ 33.750000, 35.047987 ], [ 33.673096, 35.018750 ], [ 33.530273, 35.038992 ], [ 33.530273, 35.377854 ], [ 33.664856, 35.373375 ], [ 33.750000, 35.402484 ], [ 34.573975, 35.672916 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Cyprus", "sov_a3": "CYP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cyprus", "adm0_a3": "CYP", "geou_dif": 0, "geounit": "Cyprus", "gu_a3": "CYP", "su_dif": 0, "subunit": "Cyprus", "su_a3": "CYP", "brk_diff": 0, "name": "Cyprus", "name_long": "Cyprus", "brk_a3": "CYP", "brk_name": "Cyprus", "abbrev": "Cyp.", "postal": "CY", "formal_en": "Republic of Cyprus", "name_sort": "Cyprus", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 531640, "gdp_md_est": 22700, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "CY", "iso_a3": "CYP", "iso_n3": "196", "un_a3": "196", "wb_a2": "CY", "wb_a3": "CYP", "woe_id": -99, "adm0_a3_is": "CYP", "adm0_a3_us": "CYP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.865356, 35.095193 ], [ 33.972473, 35.059229 ], [ 34.002686, 34.978252 ], [ 33.750000, 34.879172 ], [ 33.530273, 34.791250 ], [ 33.530273, 35.038992 ], [ 33.673096, 35.018750 ], [ 33.750000, 35.047987 ], [ 33.865356, 35.095193 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.475647, 41.145570 ], [ 43.580017, 41.093842 ], [ 43.634949, 40.979898 ], [ 43.750305, 40.741014 ], [ 43.654175, 40.254377 ], [ 44.398499, 40.006580 ], [ 44.791260, 39.713525 ], [ 44.107361, 39.429829 ], [ 44.420471, 38.281313 ], [ 44.225464, 37.972350 ], [ 44.772034, 37.171260 ], [ 44.291382, 37.002553 ], [ 43.939819, 37.256566 ], [ 42.778015, 37.385435 ], [ 42.349548, 37.230328 ], [ 41.209717, 37.074902 ], [ 40.671387, 37.092431 ], [ 39.520569, 36.716871 ], [ 38.699341, 36.714669 ], [ 38.166504, 36.901587 ], [ 37.065125, 36.624345 ], [ 36.738281, 36.818080 ], [ 36.683350, 36.259778 ], [ 36.147766, 35.822267 ], [ 35.779724, 36.275279 ], [ 36.158752, 36.650793 ], [ 35.549011, 36.567012 ], [ 34.714050, 36.796090 ], [ 34.024658, 36.222119 ], [ 33.750000, 36.199958 ], [ 33.530273, 36.184442 ], [ 33.530273, 41.145570 ], [ 37.617188, 41.145570 ], [ 38.229675, 40.979898 ], [ 38.345032, 40.948788 ], [ 38.583984, 40.979898 ], [ 39.512329, 41.104191 ], [ 40.372009, 41.015138 ], [ 40.668640, 41.145570 ], [ 43.475647, 41.145570 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lebanon", "sov_a3": "LBN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lebanon", "adm0_a3": "LBN", "geou_dif": 0, "geounit": "Lebanon", "gu_a3": "LBN", "su_dif": 0, "subunit": "Lebanon", "su_a3": "LBN", "brk_diff": 0, "name": "Lebanon", "name_long": "Lebanon", "brk_a3": "LBN", "brk_name": "Lebanon", "abbrev": "Leb.", "postal": "LB", "formal_en": "Lebanese Republic", "name_sort": "Lebanon", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 12, "pop_est": 4017095, "gdp_md_est": 44060, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LB", "iso_a3": "LBN", "iso_n3": "422", "un_a3": "422", "wb_a2": "LB", "wb_a3": "LBN", "woe_id": -99, "adm0_a3_is": "LBN", "adm0_a3_us": "LBN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.996704, 34.646766 ], [ 36.447144, 34.594781 ], [ 36.609192, 34.202716 ], [ 36.065369, 33.827075 ], [ 35.820923, 33.277732 ], [ 35.551758, 33.266250 ], [ 35.458374, 33.089240 ], [ 35.126038, 33.091542 ], [ 35.480347, 33.906896 ], [ 35.977478, 34.610606 ], [ 35.996704, 34.646766 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Syria", "sov_a3": "SYR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Syria", "adm0_a3": "SYR", "geou_dif": 0, "geounit": "Syria", "gu_a3": "SYR", "su_dif": 0, "subunit": "Syria", "su_a3": "SYR", "brk_diff": 0, "name": "Syria", "name_long": "Syria", "brk_a3": "SYR", "brk_name": "Syria", "abbrev": "Syria", "postal": "SYR", "formal_en": "Syrian Arab Republic", "name_sort": "Syrian Arab Republic", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 20178485, "gdp_md_est": 98830, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SY", "iso_a3": "SYR", "iso_n3": "760", "un_a3": "760", "wb_a2": "SY", "wb_a3": "SYR", "woe_id": -99, "adm0_a3_is": "SYR", "adm0_a3_us": "SYR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.349548, 37.230328 ], [ 41.835938, 36.606709 ], [ 41.289368, 36.359375 ], [ 41.382751, 35.630512 ], [ 41.003723, 34.420505 ], [ 38.789978, 33.378706 ], [ 36.831665, 32.314991 ], [ 35.700073, 32.717977 ], [ 35.834656, 32.870360 ], [ 35.820923, 33.277732 ], [ 36.065369, 33.827075 ], [ 36.609192, 34.202716 ], [ 36.447144, 34.594781 ], [ 35.996704, 34.646766 ], [ 35.903320, 35.411438 ], [ 36.147766, 35.822267 ], [ 36.683350, 36.259778 ], [ 36.738281, 36.818080 ], [ 37.065125, 36.624345 ], [ 38.166504, 36.901587 ], [ 38.699341, 36.714669 ], [ 39.520569, 36.716871 ], [ 40.671387, 37.092431 ], [ 41.209717, 37.074902 ], [ 42.349548, 37.230328 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.778015, 37.385435 ], [ 43.939819, 37.256566 ], [ 44.291382, 37.002553 ], [ 44.772034, 37.171260 ], [ 45.000000, 36.754290 ], [ 45.219727, 36.350527 ], [ 45.219727, 31.765537 ], [ 40.663147, 31.765537 ], [ 40.399475, 31.891551 ], [ 40.122070, 31.952162 ], [ 39.193726, 32.161663 ], [ 38.789978, 33.378706 ], [ 41.003723, 34.420505 ], [ 41.382751, 35.630512 ], [ 41.289368, 36.359375 ], [ 41.835938, 36.606709 ], [ 42.349548, 37.230328 ], [ 42.778015, 37.385435 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Israel", "adm0_a3": "ISR", "geou_dif": 0, "geounit": "Israel", "gu_a3": "ISR", "su_dif": 0, "subunit": "Israel", "su_a3": "ISR", "brk_diff": 0, "name": "Israel", "name_long": "Israel", "brk_a3": "ISR", "brk_name": "Israel", "abbrev": "Isr.", "postal": "IS", "formal_en": "State of Israel", "name_sort": "Israel", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 7233701, "gdp_md_est": 201400, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IL", "iso_a3": "ISR", "iso_n3": "376", "un_a3": "376", "wb_a2": "IL", "wb_a3": "ISR", "woe_id": -99, "adm0_a3_is": "ISR", "adm0_a3_us": "ISR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.820923, 33.277732 ], [ 35.834656, 32.870360 ], [ 35.700073, 32.717977 ], [ 35.719299, 32.711044 ], [ 35.543518, 32.396197 ], [ 35.183716, 32.532921 ], [ 34.999695, 31.952162 ], [ 34.972229, 31.868228 ], [ 35.200195, 31.765537 ], [ 34.576721, 31.765537 ], [ 34.683838, 31.952162 ], [ 34.752502, 32.073266 ], [ 34.953003, 32.828827 ], [ 35.095825, 33.082337 ], [ 35.126038, 33.091542 ], [ 35.458374, 33.089240 ], [ 35.551758, 33.266250 ], [ 35.820923, 33.277732 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 1, "level": 2, "type": "Disputed", "admin": "Palestine", "adm0_a3": "PSX", "geou_dif": 0, "geounit": "Palestine", "gu_a3": "PSX", "su_dif": 0, "subunit": "Palestine", "su_a3": "PSX", "brk_diff": 0, "name": "Palestine", "name_long": "Palestine", "brk_a3": "PSX", "brk_name": "Palestine", "abbrev": "Pal.", "postal": "PAL", "formal_en": "West Bank and Gaza", "note_adm0": "Partial self-admin.", "note_brk": "Partial self-admin.", "name_sort": "Palestine (West Bank and Gaza)", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 4119083, "gdp_md_est": 11950.8, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PS", "iso_a3": "PSE", "iso_n3": "275", "un_a3": "275", "wb_a2": "GZ", "wb_a3": "WBG", "woe_id": -99, "adm0_a3_is": "PSE", "adm0_a3_us": "PSX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.183716, 32.532921 ], [ 35.543518, 32.396197 ], [ 35.543518, 31.784217 ], [ 35.535278, 31.765537 ], [ 35.200195, 31.765537 ], [ 34.972229, 31.868228 ], [ 34.999695, 31.952162 ], [ 35.183716, 32.532921 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Jordan", "sov_a3": "JOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Jordan", "adm0_a3": "JOR", "geou_dif": 0, "geounit": "Jordan", "gu_a3": "JOR", "su_dif": 0, "subunit": "Jordan", "su_a3": "JOR", "brk_diff": 0, "name": "Jordan", "name_long": "Jordan", "brk_a3": "JOR", "brk_name": "Jordan", "abbrev": "Jord.", "postal": "J", "formal_en": "Hashemite Kingdom of Jordan", "name_sort": "Jordan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 6342948, "gdp_md_est": 31610, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "JO", "iso_a3": "JOR", "iso_n3": "400", "un_a3": "400", "wb_a2": "JO", "wb_a3": "JOR", "woe_id": -99, "adm0_a3_is": "JOR", "adm0_a3_us": "JOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.789978, 33.378706 ], [ 39.193726, 32.161663 ], [ 39.004211, 32.010405 ], [ 38.770752, 31.952162 ], [ 38.026428, 31.765537 ], [ 35.535278, 31.765537 ], [ 35.543518, 31.784217 ], [ 35.543518, 32.396197 ], [ 35.719299, 32.711044 ], [ 36.831665, 32.314991 ], [ 38.789978, 33.378706 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.052185, 41.145570 ], [ 45.178528, 40.986118 ], [ 45.219727, 40.967456 ], [ 45.219727, 39.544294 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.713525 ], [ 44.398499, 40.006580 ], [ 43.654175, 40.254377 ], [ 43.750305, 40.741014 ], [ 43.634949, 40.979898 ], [ 43.580017, 41.093842 ], [ 44.057922, 41.145570 ], [ 45.052185, 41.145570 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 39.740986 ], [ 45.219727, 39.544294 ], [ 45.219727, 39.093831 ], [ 45.000000, 39.293923 ], [ 44.950562, 39.336422 ], [ 44.791260, 39.713525 ], [ 45.000000, 39.740986 ] ] ], [ [ [ 45.219727, 41.145570 ], [ 45.219727, 40.967456 ], [ 45.178528, 40.986118 ], [ 45.052185, 41.145570 ], [ 45.219727, 41.145570 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.791260, 39.713525 ], [ 44.950562, 39.336422 ], [ 45.000000, 39.293923 ], [ 45.219727, 39.093831 ], [ 45.219727, 36.350527 ], [ 45.000000, 36.754290 ], [ 44.772034, 37.171260 ], [ 44.225464, 37.972350 ], [ 44.420471, 38.281313 ], [ 44.107361, 39.429829 ], [ 44.791260, 39.713525 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 39.193726, 32.161663 ], [ 40.122070, 31.952162 ], [ 40.399475, 31.891551 ], [ 40.663147, 31.765537 ], [ 38.026428, 31.765537 ], [ 38.770752, 31.952162 ], [ 39.004211, 32.010405 ], [ 39.193726, 32.161663 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 45.219727, 49.066668 ], [ 45.219727, 42.559150 ], [ 45.000000, 42.609706 ], [ 44.535828, 42.712714 ], [ 43.928833, 42.555104 ], [ 43.755798, 42.740961 ], [ 42.393494, 43.221190 ], [ 40.921326, 43.383094 ], [ 40.075378, 43.554520 ], [ 39.954529, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.537537, 44.658885 ], [ 36.675110, 45.245887 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.242552 ], [ 37.672119, 46.638122 ], [ 39.147034, 47.045797 ], [ 39.119568, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.768005, 47.826064 ], [ 39.737549, 47.899772 ], [ 39.894104, 48.233821 ], [ 39.674377, 48.785152 ], [ 39.781494, 48.922499 ], [ 39.891357, 49.066668 ], [ 45.219727, 49.066668 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 39.891357, 49.066668 ], [ 39.781494, 48.922499 ], [ 39.674377, 48.785152 ], [ 39.894104, 48.233821 ], [ 39.737549, 47.899772 ], [ 38.768005, 47.826064 ], [ 38.254395, 47.546872 ], [ 38.221436, 47.103784 ], [ 37.424927, 47.023334 ], [ 36.757507, 46.700319 ], [ 35.823669, 46.647551 ], [ 34.961243, 46.274834 ], [ 35.018921, 45.652448 ], [ 35.507812, 45.410020 ], [ 36.529541, 45.471688 ], [ 36.334534, 45.114238 ], [ 35.238647, 44.941473 ], [ 33.881836, 44.363133 ], [ 33.750000, 44.410240 ], [ 33.530273, 44.490628 ], [ 33.530273, 44.999767 ], [ 33.546753, 45.036656 ], [ 33.530273, 45.040537 ], [ 33.530273, 45.832627 ], [ 33.587952, 45.851760 ], [ 33.530273, 45.897655 ], [ 33.530273, 49.066668 ], [ 39.891357, 49.066668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.075378, 43.554520 ], [ 40.921326, 43.383094 ], [ 42.393494, 43.221190 ], [ 43.755798, 42.740961 ], [ 43.928833, 42.555104 ], [ 44.535828, 42.712714 ], [ 45.000000, 42.609706 ], [ 45.219727, 42.559150 ], [ 45.219727, 41.411836 ], [ 45.000000, 41.267485 ], [ 44.969788, 41.248903 ], [ 43.580017, 41.093842 ], [ 42.618713, 41.584634 ], [ 41.553040, 41.537366 ], [ 41.701355, 41.963575 ], [ 41.451416, 42.646081 ], [ 40.874634, 43.014689 ], [ 40.319824, 43.129052 ], [ 39.954529, 43.436966 ], [ 40.075378, 43.554520 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.167236, 42.041134 ], [ 36.911316, 41.335576 ], [ 38.229675, 40.979898 ], [ 38.345032, 40.948788 ], [ 38.583984, 40.979898 ], [ 39.512329, 41.104191 ], [ 40.372009, 41.015138 ], [ 41.553040, 41.537366 ], [ 42.618713, 41.584634 ], [ 43.580017, 41.093842 ], [ 43.634949, 40.979898 ], [ 43.714600, 40.813809 ], [ 33.530273, 40.813809 ], [ 33.530273, 42.020733 ], [ 33.750000, 42.022773 ], [ 35.167236, 42.041134 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.969788, 41.248903 ], [ 45.000000, 41.213788 ], [ 45.178528, 40.986118 ], [ 45.219727, 40.967456 ], [ 45.219727, 40.813809 ], [ 43.714600, 40.813809 ], [ 43.634949, 40.979898 ], [ 43.580017, 41.093842 ], [ 44.969788, 41.248903 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, 41.411836 ], [ 45.219727, 40.967456 ], [ 45.178528, 40.986118 ], [ 45.000000, 41.213788 ], [ 44.969788, 41.248903 ], [ 45.000000, 41.267485 ], [ 45.216980, 41.411836 ], [ 45.219727, 41.411836 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 45.219727, 55.899956 ], [ 45.219727, 48.777913 ], [ 39.674377, 48.777913 ], [ 39.674377, 48.785152 ], [ 39.781494, 48.922499 ], [ 40.078125, 49.309008 ], [ 40.067139, 49.601811 ], [ 38.594971, 49.926472 ], [ 38.009949, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.625671, 50.226124 ], [ 35.354004, 50.578004 ], [ 35.375977, 50.774682 ], [ 35.021667, 51.208604 ], [ 34.222412, 51.256758 ], [ 34.140015, 51.566827 ], [ 34.389954, 51.769540 ], [ 33.750000, 52.335339 ], [ 33.530273, 52.315195 ], [ 33.530273, 55.899956 ], [ 45.219727, 55.899956 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 33.750000, 52.335339 ], [ 34.389954, 51.769540 ], [ 34.140015, 51.566827 ], [ 34.222412, 51.256758 ], [ 35.021667, 51.208604 ], [ 35.375977, 50.774682 ], [ 35.354004, 50.578004 ], [ 36.625671, 50.226124 ], [ 37.391968, 50.384005 ], [ 38.009949, 49.915862 ], [ 38.594971, 49.926472 ], [ 40.067139, 49.601811 ], [ 40.078125, 49.309008 ], [ 39.781494, 48.922499 ], [ 39.674377, 48.785152 ], [ 39.674377, 48.777913 ], [ 33.530273, 48.777913 ], [ 33.530273, 52.315195 ], [ 33.750000, 52.335339 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 45.219727, 61.710706 ], [ 45.219727, 55.652798 ], [ 33.530273, 55.652798 ], [ 33.530273, 61.710706 ], [ 45.219727, 61.710706 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 45.219727, 66.600676 ], [ 45.219727, 61.501734 ], [ 33.530273, 61.501734 ], [ 33.530273, 66.479304 ], [ 33.750000, 66.381560 ], [ 34.812927, 65.900532 ], [ 34.876099, 65.436577 ], [ 34.942017, 64.414735 ], [ 36.230164, 64.110602 ], [ 37.010193, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.537781, 64.764759 ], [ 37.174988, 65.143806 ], [ 39.591980, 64.521279 ], [ 40.435181, 64.764759 ], [ 39.762268, 65.497020 ], [ 42.091370, 66.477112 ], [ 43.014221, 66.418945 ], [ 43.948059, 66.069318 ], [ 44.324341, 66.513260 ], [ 44.398499, 66.600676 ], [ 45.219727, 66.600676 ] ] ], [ [ [ 40.718079, 66.600676 ], [ 40.534058, 66.513260 ], [ 40.014954, 66.266856 ], [ 38.380737, 66.000150 ], [ 35.378723, 66.513260 ], [ 34.862366, 66.600676 ], [ 40.718079, 66.600676 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 33.530273, 66.693218 ], [ 33.530273, 69.392883 ], [ 33.750000, 69.311529 ], [ 33.774719, 69.301823 ], [ 36.513062, 69.063657 ], [ 40.289612, 67.933397 ], [ 41.058655, 67.458082 ], [ 41.124573, 66.791909 ], [ 40.534058, 66.513260 ], [ 40.350037, 66.425537 ], [ 35.895081, 66.425537 ], [ 35.378723, 66.513260 ], [ 33.917542, 66.760501 ], [ 33.750000, 66.731223 ], [ 33.530273, 66.693218 ] ] ], [ [ [ 45.000000, 68.394124 ], [ 45.219727, 68.368826 ], [ 45.219727, 66.425537 ], [ 44.247437, 66.425537 ], [ 44.324341, 66.513260 ], [ 44.530334, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.950932 ], [ 43.450928, 68.571424 ], [ 45.000000, 68.394124 ] ] ], [ [ [ 41.967773, 66.425537 ], [ 42.091370, 66.477112 ], [ 42.904358, 66.425537 ], [ 41.967773, 66.425537 ] ] ], [ [ [ 33.530273, 66.479304 ], [ 33.648376, 66.425537 ], [ 33.530273, 66.425537 ], [ 33.530273, 66.479304 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 45.219727, 80.625138 ], [ 45.219727, 80.584786 ], [ 45.000000, 80.587930 ], [ 44.846191, 80.590176 ], [ 45.000000, 80.604535 ], [ 45.219727, 80.625138 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 56.469727, -83.956169 ], [ 56.469727, -85.070048 ], [ 44.780273, -85.070048 ], [ 44.780273, -83.956169 ], [ 56.469727, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 56.469727, -82.648222 ], [ 56.469727, -84.002262 ], [ 44.780273, -84.002262 ], [ 44.780273, -82.648222 ], [ 56.469727, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 56.469727, -81.059130 ], [ 56.469727, -82.704241 ], [ 44.780273, -82.704241 ], [ 44.780273, -81.059130 ], [ 56.469727, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 56.469727, -79.129976 ], [ 56.469727, -81.127169 ], [ 44.780273, -81.127169 ], [ 44.780273, -79.129976 ], [ 56.469727, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 56.469727, -76.790701 ], [ 56.469727, -79.212538 ], [ 44.780273, -79.212538 ], [ 44.780273, -76.790701 ], [ 56.469727, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 56.469727, -73.958939 ], [ 56.469727, -76.890745 ], [ 44.780273, -76.890745 ], [ 44.780273, -73.958939 ], [ 56.469727, -73.958939 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 56.469727, -70.539543 ], [ 56.469727, -74.079925 ], [ 44.780273, -74.079925 ], [ 44.780273, -70.539543 ], [ 56.469727, -70.539543 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 24 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 56.469727, -66.425537 ], [ 56.469727, -70.685421 ], [ 44.780273, -70.685421 ], [ 44.780273, -68.083559 ], [ 45.000000, -68.021966 ], [ 45.719604, -67.816505 ], [ 46.502380, -67.600849 ], [ 47.441711, -67.717778 ], [ 48.342590, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.930115, -67.111272 ], [ 50.751343, -66.875109 ], [ 50.949097, -66.523110 ], [ 50.979309, -66.513260 ], [ 51.248474, -66.425537 ], [ 56.469727, -66.425537 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 23 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 54.533386, -65.817407 ], [ 55.412292, -65.875847 ], [ 56.250000, -65.963258 ], [ 56.354370, -65.974443 ], [ 56.469727, -66.013552 ], [ 56.469727, -66.600676 ], [ 50.905151, -66.600676 ], [ 50.949097, -66.523110 ], [ 50.979309, -66.513260 ], [ 51.789551, -66.248057 ], [ 52.613525, -66.052601 ], [ 53.610535, -65.896046 ], [ 54.533386, -65.817407 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 18 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Madagascar", "sov_a3": "MDG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Madagascar", "adm0_a3": "MDG", "geou_dif": 0, "geounit": "Madagascar", "gu_a3": "MDG", "su_dif": 0, "subunit": "Madagascar", "su_a3": "MDG", "brk_diff": 0, "name": "Madagascar", "name_long": "Madagascar", "brk_a3": "MDG", "brk_name": "Madagascar", "abbrev": "Mad.", "postal": "MG", "formal_en": "Republic of Madagascar", "name_sort": "Madagascar", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 20653556, "gdp_md_est": 20130, "pop_year": -99, "lastcensus": 1993, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MG", "iso_a3": "MDG", "iso_n3": "450", "un_a3": "450", "wb_a2": "MG", "wb_a3": "MDG", "woe_id": -99, "adm0_a3_is": "MDG", "adm0_a3_us": "MDG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.142090, -21.739091 ], [ 48.076172, -21.943046 ], [ 47.930603, -22.390714 ], [ 47.546082, -23.780318 ], [ 47.095642, -24.941238 ], [ 46.279907, -25.177602 ], [ 45.409241, -25.599425 ], [ 45.000000, -25.418470 ], [ 44.832458, -25.344026 ], [ 44.780273, -25.321684 ], [ 44.780273, -21.739091 ], [ 48.142090, -21.739091 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 17 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Madagascar", "sov_a3": "MDG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Madagascar", "adm0_a3": "MDG", "geou_dif": 0, "geounit": "Madagascar", "gu_a3": "MDG", "su_dif": 0, "subunit": "Madagascar", "su_a3": "MDG", "brk_diff": 0, "name": "Madagascar", "name_long": "Madagascar", "brk_a3": "MDG", "brk_name": "Madagascar", "abbrev": "Mad.", "postal": "MG", "formal_en": "Republic of Madagascar", "name_sort": "Madagascar", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 20653556, "gdp_md_est": 20130, "pop_year": -99, "lastcensus": 1993, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MG", "iso_a3": "MDG", "iso_n3": "450", "un_a3": "450", "wb_a2": "MG", "wb_a3": "MDG", "woe_id": -99, "adm0_a3_is": "MDG", "adm0_a3_us": "MDG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.194031, -12.039321 ], [ 49.542847, -12.468760 ], [ 49.806519, -12.894812 ], [ 50.056458, -13.555222 ], [ 50.215759, -14.756291 ], [ 50.473938, -15.225889 ], [ 50.375061, -15.705019 ], [ 50.199280, -15.998295 ], [ 49.858704, -15.413967 ], [ 49.671936, -15.707663 ], [ 49.861450, -16.449256 ], [ 49.773560, -16.872890 ], [ 49.496155, -17.104043 ], [ 49.432983, -17.952606 ], [ 49.040222, -19.116624 ], [ 48.545837, -20.496492 ], [ 48.076172, -21.943046 ], [ 48.010254, -22.146708 ], [ 44.780273, -22.146708 ], [ 44.780273, -16.190937 ], [ 44.942322, -16.177749 ], [ 45.000000, -16.156645 ], [ 45.502625, -15.971892 ], [ 45.870667, -15.792254 ], [ 46.310120, -15.779039 ], [ 46.881409, -15.209988 ], [ 47.702637, -14.594216 ], [ 48.004761, -14.088629 ], [ 47.867432, -13.662001 ], [ 48.293152, -13.782069 ], [ 48.842468, -13.087504 ], [ 48.861694, -12.487532 ], [ 49.194031, -12.039321 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.780273, 8.784654 ], [ 45.000000, 8.705929 ], [ 46.947327, 7.999397 ], [ 47.787781, 8.004837 ], [ 45.000000, 5.041699 ], [ 44.961548, 5.003394 ], [ 44.780273, 4.997922 ], [ 44.780273, 8.784654 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "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": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.941345, 11.393879 ], [ 48.938599, 11.178402 ], [ 48.935852, 10.984335 ], [ 48.935852, 9.451771 ], [ 48.485413, 8.838937 ], [ 47.787781, 8.004837 ], [ 46.947327, 7.999397 ], [ 45.000000, 8.705929 ], [ 44.780273, 8.784654 ], [ 44.780273, 10.487812 ], [ 45.000000, 10.547221 ], [ 45.554810, 10.698394 ], [ 46.645203, 10.817120 ], [ 47.524109, 11.129897 ], [ 47.908630, 11.178402 ], [ 48.021240, 11.194568 ], [ 48.378296, 11.377724 ], [ 48.674927, 11.393879 ], [ 48.941345, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.075439, 11.393879 ], [ 51.042480, 11.178402 ], [ 51.045227, 10.641713 ], [ 50.833740, 10.279789 ], [ 50.550842, 9.199715 ], [ 50.070190, 8.083704 ], [ 49.452209, 6.806444 ], [ 48.592529, 5.339848 ], [ 47.738342, 4.220421 ], [ 46.562805, 2.858006 ], [ 45.563049, 2.045769 ], [ 45.000000, 1.672431 ], [ 44.780273, 1.526919 ], [ 44.780273, 4.997922 ], [ 44.961548, 5.003394 ], [ 45.000000, 5.041699 ], [ 47.787781, 8.004837 ], [ 48.485413, 8.838937 ], [ 48.935852, 9.451771 ], [ 48.938599, 11.178402 ], [ 48.941345, 11.393879 ], [ 51.075439, 11.393879 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 55.571594, 22.146708 ], [ 55.664978, 22.001628 ], [ 55.645752, 21.943046 ], [ 54.997559, 20.001741 ], [ 51.998291, 19.002400 ], [ 49.114380, 18.617616 ], [ 48.183289, 18.166730 ], [ 47.466431, 17.117168 ], [ 46.999512, 16.951724 ], [ 46.749573, 17.285087 ], [ 46.365051, 17.235252 ], [ 45.398254, 17.334908 ], [ 45.214233, 17.434511 ], [ 45.000000, 17.429270 ], [ 44.780273, 17.426649 ], [ 44.780273, 22.146708 ], [ 55.571594, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Yemen", "sov_a3": "YEM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Yemen", "adm0_a3": "YEM", "geou_dif": 0, "geounit": "Yemen", "gu_a3": "YEM", "su_dif": 0, "subunit": "Yemen", "su_a3": "YEM", "brk_diff": 0, "name": "Yemen", "name_long": "Yemen", "brk_a3": "YEM", "brk_name": "Yemen", "abbrev": "Yem.", "postal": "YE", "formal_en": "Republic of Yemen", "name_sort": "Yemen, Rep.", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 23822783, "gdp_md_est": 55280, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "YE", "iso_a3": "YEM", "iso_n3": "887", "un_a3": "887", "wb_a2": "RY", "wb_a3": "YEM", "woe_id": -99, "adm0_a3_is": "YEM", "adm0_a3_us": "YEM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.998291, 19.002400 ], [ 52.781067, 17.350638 ], [ 53.107910, 16.651981 ], [ 52.382812, 16.383391 ], [ 52.190552, 15.940202 ], [ 52.165833, 15.599229 ], [ 51.171570, 15.175530 ], [ 49.573059, 14.711135 ], [ 48.677673, 14.003367 ], [ 48.238220, 13.950061 ], [ 47.938843, 14.008696 ], [ 47.353821, 13.592600 ], [ 46.716614, 13.400307 ], [ 45.876160, 13.349537 ], [ 45.623474, 13.293411 ], [ 45.403748, 13.028642 ], [ 45.142822, 12.956383 ], [ 45.000000, 12.718047 ], [ 44.989014, 12.701971 ], [ 44.780273, 12.710009 ], [ 44.780273, 17.426649 ], [ 45.000000, 17.429270 ], [ 45.214233, 17.434511 ], [ 45.398254, 17.334908 ], [ 46.365051, 17.235252 ], [ 46.749573, 17.285087 ], [ 46.999512, 16.951724 ], [ 47.466431, 17.117168 ], [ 48.183289, 18.166730 ], [ 49.114380, 18.617616 ], [ 51.998291, 19.002400 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Oman", "sov_a3": "OMN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Oman", "adm0_a3": "OMN", "geou_dif": 0, "geounit": "Oman", "gu_a3": "OMN", "su_dif": 0, "subunit": "Oman", "su_a3": "OMN", "brk_diff": 0, "name": "Oman", "name_long": "Oman", "brk_a3": "OMN", "brk_name": "Oman", "abbrev": "Oman", "postal": "OM", "formal_en": "Sultanate of Oman", "name_sort": "Oman", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3418085, "gdp_md_est": 66980, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "OM", "iso_a3": "OMN", "iso_n3": "512", "un_a3": "512", "wb_a2": "OM", "wb_a3": "OMN", "woe_id": -99, "adm0_a3_is": "OMN", "adm0_a3_us": "OMN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, 22.146708 ], [ 56.469727, 18.049256 ], [ 56.282959, 17.876817 ], [ 56.250000, 17.876817 ], [ 55.659485, 17.884659 ], [ 55.269470, 17.633552 ], [ 55.272217, 17.230005 ], [ 54.788818, 16.951724 ], [ 54.236755, 17.046281 ], [ 53.569336, 16.709863 ], [ 53.107910, 16.651981 ], [ 51.998291, 19.002400 ], [ 54.997559, 20.001741 ], [ 55.645752, 21.943046 ], [ 55.664978, 22.001628 ], [ 55.571594, 22.146708 ], [ 56.469727, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "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": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.946838, 11.412726 ], [ 48.941345, 11.396572 ], [ 48.938599, 11.178402 ], [ 48.935852, 10.984335 ], [ 48.935852, 10.962764 ], [ 47.057190, 10.962764 ], [ 47.524109, 11.129897 ], [ 47.908630, 11.178402 ], [ 48.021240, 11.194568 ], [ 48.378296, 11.377724 ], [ 48.946838, 11.412726 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.111145, 12.025889 ], [ 51.133118, 11.749059 ], [ 51.042480, 11.178402 ], [ 51.042480, 10.962764 ], [ 48.935852, 10.962764 ], [ 48.938599, 11.178402 ], [ 48.941345, 11.396572 ], [ 48.946838, 11.412726 ], [ 49.265442, 11.431571 ], [ 49.726868, 11.579597 ], [ 50.256958, 11.681825 ], [ 50.729370, 12.023203 ], [ 51.111145, 12.025889 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.557068, 32.138409 ], [ 47.683411, 31.952162 ], [ 47.848206, 31.709476 ], [ 47.683411, 30.987028 ], [ 48.002014, 30.987028 ], [ 48.013000, 30.453409 ], [ 48.567810, 29.928755 ], [ 47.971802, 29.976349 ], [ 47.301636, 30.059586 ], [ 46.568298, 29.099377 ], [ 45.000000, 29.166552 ], [ 44.780273, 29.176145 ], [ 44.780273, 32.138409 ], [ 47.557068, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, 32.138409 ], [ 56.469727, 27.139813 ], [ 56.250000, 27.088473 ], [ 55.722656, 26.966142 ], [ 54.714661, 26.482866 ], [ 53.492432, 26.814266 ], [ 52.481689, 27.581329 ], [ 51.520386, 27.865789 ], [ 50.850220, 28.815800 ], [ 50.114136, 30.149877 ], [ 49.575806, 29.985866 ], [ 48.938599, 30.318359 ], [ 48.567810, 29.928755 ], [ 48.013000, 30.453409 ], [ 48.002014, 30.987028 ], [ 47.683411, 30.987028 ], [ 47.848206, 31.709476 ], [ 47.683411, 31.952162 ], [ 47.557068, 32.138409 ], [ 56.469727, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Kuwait", "sov_a3": "KWT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kuwait", "adm0_a3": "KWT", "geou_dif": 0, "geounit": "Kuwait", "gu_a3": "KWT", "su_dif": 0, "subunit": "Kuwait", "su_a3": "KWT", "brk_diff": 0, "name": "Kuwait", "name_long": "Kuwait", "brk_a3": "KWT", "brk_name": "Kuwait", "abbrev": "Kwt.", "postal": "KW", "formal_en": "State of Kuwait", "name_sort": "Kuwait", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 2691158, "gdp_md_est": 149100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "KW", "iso_a3": "KWT", "iso_n3": "414", "un_a3": "414", "wb_a2": "KW", "wb_a3": "KWT", "woe_id": -99, "adm0_a3_is": "KWT", "adm0_a3_us": "KWT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.301636, 30.059586 ], [ 47.971802, 29.976349 ], [ 48.180542, 29.535230 ], [ 48.092651, 29.307956 ], [ 48.414001, 28.553164 ], [ 47.708130, 28.526622 ], [ 47.458191, 29.003336 ], [ 46.568298, 29.099377 ], [ 47.301636, 30.059586 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 44.780273, 29.176145 ], [ 45.000000, 29.166552 ], [ 46.568298, 29.099377 ], [ 47.458191, 29.003336 ], [ 47.708130, 28.526622 ], [ 48.414001, 28.553164 ], [ 48.806763, 27.690824 ], [ 49.298401, 27.461976 ], [ 49.468689, 27.110479 ], [ 50.149841, 26.691637 ], [ 50.210266, 26.278640 ], [ 50.111389, 25.945697 ], [ 50.237732, 25.609333 ], [ 50.526123, 25.329132 ], [ 50.657959, 25.000994 ], [ 50.809021, 24.756808 ], [ 51.111145, 24.557116 ], [ 51.388550, 24.629541 ], [ 51.578064, 24.246965 ], [ 51.616516, 24.016362 ], [ 51.998291, 23.001380 ], [ 55.005798, 22.497332 ], [ 55.206299, 22.710323 ], [ 55.664978, 22.001628 ], [ 55.645752, 21.943046 ], [ 55.577087, 21.739091 ], [ 44.780273, 21.739091 ], [ 44.780273, 29.176145 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Qatar", "sov_a3": "QAT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Qatar", "adm0_a3": "QAT", "geou_dif": 0, "geounit": "Qatar", "gu_a3": "QAT", "su_dif": 0, "subunit": "Qatar", "su_a3": "QAT", "brk_diff": 0, "name": "Qatar", "name_long": "Qatar", "brk_a3": "QAT", "brk_name": "Qatar", "abbrev": "Qatar", "postal": "QA", "formal_en": "State of Qatar", "name_sort": "Qatar", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 833285, "gdp_md_est": 91330, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "QA", "iso_a3": "QAT", "iso_n3": "634", "un_a3": "634", "wb_a2": "QA", "wb_a3": "QAT", "woe_id": -99, "adm0_a3_is": "QAT", "adm0_a3_us": "QAT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.284180, 26.115986 ], [ 51.589050, 25.802364 ], [ 51.605530, 25.217366 ], [ 51.388550, 24.629541 ], [ 51.111145, 24.557116 ], [ 50.809021, 24.756808 ], [ 50.743103, 25.482951 ], [ 51.012268, 26.007424 ], [ 51.284180, 26.115986 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "United Arab Emirates", "sov_a3": "ARE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Arab Emirates", "adm0_a3": "ARE", "geou_dif": 0, "geounit": "United Arab Emirates", "gu_a3": "ARE", "su_dif": 0, "subunit": "United Arab Emirates", "su_a3": "ARE", "brk_diff": 0, "name": "United Arab Emirates", "name_long": "United Arab Emirates", "brk_a3": "ARE", "brk_name": "United Arab Emirates", "abbrev": "U.A.E.", "postal": "AE", "formal_en": "United Arab Emirates", "name_sort": "United Arab Emirates", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 4798491, "gdp_md_est": 184300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AE", "iso_a3": "ARE", "iso_n3": "784", "un_a3": "784", "wb_a2": "AE", "wb_a3": "ARE", "woe_id": -99, "adm0_a3_is": "ARE", "adm0_a3_us": "ARE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 20, "long_len": 20, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.068726, 26.056783 ], [ 56.250000, 25.735581 ], [ 56.260986, 25.715786 ], [ 56.395569, 24.926295 ], [ 56.250000, 24.923804 ], [ 55.884705, 24.921313 ], [ 55.802307, 24.272005 ], [ 55.980835, 24.131715 ], [ 55.527649, 23.936055 ], [ 55.524902, 23.526218 ], [ 55.233765, 23.112575 ], [ 55.206299, 22.710323 ], [ 55.005798, 22.497332 ], [ 51.998291, 23.001380 ], [ 51.616516, 24.016362 ], [ 51.578064, 24.246965 ], [ 51.756592, 24.294537 ], [ 51.792297, 24.021379 ], [ 52.575073, 24.179331 ], [ 53.401794, 24.151766 ], [ 54.006042, 24.124195 ], [ 54.692688, 24.799202 ], [ 55.437012, 25.440794 ], [ 56.068726, 26.056783 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Oman", "sov_a3": "OMN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Oman", "adm0_a3": "OMN", "geou_dif": 0, "geounit": "Oman", "gu_a3": "OMN", "su_dif": 0, "subunit": "Oman", "su_a3": "OMN", "brk_diff": 0, "name": "Oman", "name_long": "Oman", "brk_a3": "OMN", "brk_name": "Oman", "abbrev": "Oman", "postal": "OM", "formal_en": "Sultanate of Oman", "name_sort": "Oman", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3418085, "gdp_md_est": 66980, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "OM", "iso_a3": "OMN", "iso_n3": "512", "un_a3": "512", "wb_a2": "OM", "wb_a3": "OMN", "woe_id": -99, "adm0_a3_is": "OMN", "adm0_a3_us": "OMN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.395569, 24.926295 ], [ 56.469727, 24.814161 ], [ 56.469727, 21.739091 ], [ 55.577087, 21.739091 ], [ 55.645752, 21.943046 ], [ 55.664978, 22.001628 ], [ 55.206299, 22.710323 ], [ 55.233765, 23.112575 ], [ 55.524902, 23.526218 ], [ 55.527649, 23.936055 ], [ 55.980835, 24.131715 ], [ 55.802307, 24.272005 ], [ 55.884705, 24.921313 ], [ 56.250000, 24.923804 ], [ 56.395569, 24.926295 ] ] ], [ [ [ 56.359863, 26.396790 ], [ 56.469727, 26.320498 ], [ 56.469727, 26.241693 ], [ 56.390076, 25.896291 ], [ 56.260986, 25.715786 ], [ 56.250000, 25.735581 ], [ 56.068726, 26.056783 ], [ 56.250000, 26.266325 ], [ 56.359863, 26.396790 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.595764, 41.145570 ], [ 46.499634, 41.064857 ], [ 45.961304, 41.124884 ], [ 45.906372, 41.145570 ], [ 46.595764, 41.145570 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.780273, 39.724089 ], [ 44.791260, 39.713525 ], [ 44.780273, 39.709300 ], [ 44.780273, 39.724089 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.780273, 37.158128 ], [ 45.000000, 36.754290 ], [ 45.420227, 35.978006 ], [ 46.073914, 35.679610 ], [ 46.150818, 35.095193 ], [ 45.648193, 34.748383 ], [ 45.414734, 33.968420 ], [ 46.106873, 33.017876 ], [ 47.334595, 32.470378 ], [ 47.683411, 31.952162 ], [ 47.809753, 31.765537 ], [ 44.780273, 31.765537 ], [ 44.780273, 37.158128 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.052185, 41.145570 ], [ 45.178528, 40.986118 ], [ 45.189514, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.357056, 40.561808 ], [ 45.889893, 40.218733 ], [ 45.609741, 39.901309 ], [ 46.032715, 39.628961 ], [ 46.483154, 39.465885 ], [ 46.505127, 38.771216 ], [ 46.142578, 38.741231 ], [ 45.733337, 39.321550 ], [ 45.738831, 39.474365 ], [ 45.296631, 39.472245 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.713525 ], [ 44.780273, 39.724089 ], [ 44.780273, 41.145570 ], [ 45.052185, 41.145570 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 49.207764, 41.145570 ], [ 49.325867, 40.979898 ], [ 49.617004, 40.574326 ], [ 50.083923, 40.526327 ], [ 50.391541, 40.258569 ], [ 49.567566, 40.176775 ], [ 49.394531, 39.400122 ], [ 49.221497, 39.051185 ], [ 48.856201, 38.816171 ], [ 48.880920, 38.322266 ], [ 48.633728, 38.270532 ], [ 48.010254, 38.794768 ], [ 48.353577, 39.289671 ], [ 48.059692, 39.582407 ], [ 47.683411, 39.510398 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.465885 ], [ 46.032715, 39.628961 ], [ 45.609741, 39.901309 ], [ 45.889893, 40.218733 ], [ 45.357056, 40.561808 ], [ 45.560303, 40.813809 ], [ 45.189514, 40.979898 ], [ 45.178528, 40.986118 ], [ 45.052185, 41.145570 ], [ 45.906372, 41.145570 ], [ 45.961304, 41.124884 ], [ 46.499634, 41.064857 ], [ 46.595764, 41.145570 ], [ 49.207764, 41.145570 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.472245 ], [ 45.738831, 39.474365 ], [ 45.733337, 39.321550 ], [ 46.142578, 38.741231 ], [ 45.455933, 38.876067 ], [ 45.000000, 39.293923 ], [ 44.950562, 39.336422 ], [ 44.791260, 39.713525 ], [ 45.000000, 39.740986 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.791260, 39.713525 ], [ 44.950562, 39.336422 ], [ 45.000000, 39.293923 ], [ 45.455933, 38.876067 ], [ 46.142578, 38.741231 ], [ 46.505127, 38.771216 ], [ 47.683411, 39.510398 ], [ 48.059692, 39.582407 ], [ 48.353577, 39.289671 ], [ 48.010254, 38.794768 ], [ 48.633728, 38.270532 ], [ 48.880920, 38.322266 ], [ 49.199524, 37.583766 ], [ 50.147095, 37.376705 ], [ 50.841980, 36.873029 ], [ 52.261963, 36.701458 ], [ 53.824768, 36.965255 ], [ 53.920898, 37.199706 ], [ 54.799805, 37.394164 ], [ 55.511169, 37.965854 ], [ 56.178589, 37.935533 ], [ 56.250000, 37.965854 ], [ 56.469727, 38.058905 ], [ 56.469727, 31.765537 ], [ 47.809753, 31.765537 ], [ 47.683411, 31.952162 ], [ 47.334595, 32.470378 ], [ 46.106873, 33.017876 ], [ 45.414734, 33.968420 ], [ 45.648193, 34.748383 ], [ 46.150818, 35.095193 ], [ 46.073914, 35.679610 ], [ 45.420227, 35.978006 ], [ 45.000000, 36.754290 ], [ 44.780273, 37.158128 ], [ 44.780273, 39.709300 ], [ 44.791260, 39.713525 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.469727, 41.145570 ], [ 56.469727, 38.058905 ], [ 56.250000, 37.965854 ], [ 56.178589, 37.935533 ], [ 55.511169, 37.965854 ], [ 54.799805, 37.394164 ], [ 53.920898, 37.199706 ], [ 53.734131, 37.907367 ], [ 53.879700, 38.953001 ], [ 53.099670, 39.291797 ], [ 53.355103, 39.977120 ], [ 52.693176, 40.033924 ], [ 52.912903, 40.878218 ], [ 53.857727, 40.632714 ], [ 54.736633, 40.952937 ], [ 54.700928, 40.979898 ], [ 54.500427, 41.145570 ], [ 56.469727, 41.145570 ] ] ], [ [ [ 52.814026, 41.145570 ], [ 52.814026, 41.137296 ], [ 52.808533, 41.145570 ], [ 52.814026, 41.145570 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 46.977539, 49.066668 ], [ 46.867676, 48.922499 ], [ 46.463928, 48.394562 ], [ 47.312622, 47.717154 ], [ 48.056946, 47.744864 ], [ 48.694153, 47.075734 ], [ 48.592529, 46.562637 ], [ 49.100647, 46.399988 ], [ 48.644714, 45.807743 ], [ 47.675171, 45.642848 ], [ 46.680908, 44.610023 ], [ 47.590027, 43.661911 ], [ 47.491150, 42.988576 ], [ 48.584290, 41.810220 ], [ 47.985535, 41.407716 ], [ 47.815247, 41.151774 ], [ 47.373047, 41.219986 ], [ 46.683655, 41.828642 ], [ 46.403503, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.469666, 42.504503 ], [ 45.000000, 42.609706 ], [ 44.780273, 42.658202 ], [ 44.780273, 49.066668 ], [ 46.977539, 49.066668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.780273, 42.658202 ], [ 45.000000, 42.609706 ], [ 45.469666, 42.504503 ], [ 45.774536, 42.094146 ], [ 46.403503, 41.861379 ], [ 46.145325, 41.724181 ], [ 46.636963, 41.182788 ], [ 46.499634, 41.064857 ], [ 45.961304, 41.124884 ], [ 45.216980, 41.411836 ], [ 45.000000, 41.267485 ], [ 44.969788, 41.248903 ], [ 44.780273, 41.228249 ], [ 44.780273, 42.658202 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, 49.066668 ], [ 56.469727, 45.121991 ], [ 56.250000, 45.071581 ], [ 55.928650, 44.995883 ], [ 55.967102, 41.308761 ], [ 55.453491, 41.261291 ], [ 54.753113, 42.045213 ], [ 54.077454, 42.326062 ], [ 52.943115, 42.116561 ], [ 52.500916, 41.783601 ], [ 52.445984, 42.028894 ], [ 52.690430, 42.445755 ], [ 52.500916, 42.793385 ], [ 51.341858, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.336609, 44.284537 ], [ 50.303650, 44.610023 ], [ 51.275940, 44.516093 ], [ 51.314392, 45.247821 ], [ 52.165833, 45.410020 ], [ 53.039246, 45.259422 ], [ 53.220520, 46.234953 ], [ 53.041992, 46.854557 ], [ 52.039490, 46.805700 ], [ 51.190796, 47.049540 ], [ 50.031738, 46.609828 ], [ 49.100647, 46.399988 ], [ 48.592529, 46.562637 ], [ 48.694153, 47.075734 ], [ 48.056946, 47.744864 ], [ 47.312622, 47.717154 ], [ 46.463928, 48.394562 ], [ 46.867676, 48.922499 ], [ 46.977539, 49.066668 ], [ 56.469727, 49.066668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, 45.121991 ], [ 56.469727, 41.314950 ], [ 56.250000, 41.312887 ], [ 55.967102, 41.308761 ], [ 55.928650, 44.995883 ], [ 56.250000, 45.071581 ], [ 56.469727, 45.121991 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.969788, 41.248903 ], [ 45.000000, 41.213788 ], [ 45.178528, 40.986118 ], [ 45.189514, 40.979898 ], [ 45.554810, 40.813809 ], [ 44.780273, 40.813809 ], [ 44.780273, 41.228249 ], [ 44.969788, 41.248903 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.403503, 41.861379 ], [ 46.683655, 41.828642 ], [ 47.373047, 41.219986 ], [ 47.815247, 41.151774 ], [ 47.985535, 41.407716 ], [ 48.584290, 41.810220 ], [ 49.108887, 41.283999 ], [ 49.325867, 40.979898 ], [ 49.446716, 40.813809 ], [ 45.554810, 40.813809 ], [ 45.189514, 40.979898 ], [ 45.178528, 40.986118 ], [ 45.000000, 41.213788 ], [ 44.969788, 41.248903 ], [ 45.000000, 41.267485 ], [ 45.216980, 41.411836 ], [ 45.961304, 41.124884 ], [ 46.499634, 41.064857 ], [ 46.636963, 41.182788 ], [ 46.145325, 41.724181 ], [ 46.403503, 41.861379 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 52.912903, 40.878218 ], [ 53.154602, 40.813809 ], [ 52.896423, 40.813809 ], [ 52.912903, 40.878218 ] ] ], [ [ [ 54.753113, 42.045213 ], [ 55.453491, 41.261291 ], [ 55.967102, 41.308761 ], [ 56.250000, 41.312887 ], [ 56.469727, 41.314950 ], [ 56.469727, 40.813809 ], [ 54.357605, 40.813809 ], [ 54.736633, 40.952937 ], [ 54.700928, 40.979898 ], [ 54.006042, 41.551756 ], [ 53.720398, 42.124710 ], [ 52.915649, 41.869561 ], [ 52.814026, 41.137296 ], [ 52.500916, 41.783601 ], [ 52.943115, 42.116561 ], [ 54.077454, 42.326062 ], [ 54.753113, 42.045213 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 56.469727, 55.899956 ], [ 56.469727, 50.922082 ], [ 56.250000, 50.835432 ], [ 55.714417, 50.623331 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.765076, 51.692990 ], [ 48.699646, 50.605903 ], [ 48.576050, 49.875168 ], [ 47.548828, 50.455755 ], [ 46.749573, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.867676, 48.922499 ], [ 46.755066, 48.777913 ], [ 44.780273, 48.777913 ], [ 44.780273, 55.899956 ], [ 56.469727, 55.899956 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 52.327881, 51.720223 ], [ 54.530640, 51.027576 ], [ 55.714417, 50.623331 ], [ 56.250000, 50.835432 ], [ 56.469727, 50.922082 ], [ 56.469727, 48.777913 ], [ 46.755066, 48.777913 ], [ 46.867676, 48.922499 ], [ 47.043457, 49.152970 ], [ 46.749573, 49.357334 ], [ 47.548828, 50.455755 ], [ 48.576050, 49.875168 ], [ 48.699646, 50.605903 ], [ 50.765076, 51.692990 ], [ 52.327881, 51.720223 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 56.469727, 61.710706 ], [ 56.469727, 55.652798 ], [ 44.780273, 55.652798 ], [ 44.780273, 61.710706 ], [ 56.469727, 61.710706 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 56.469727, 66.600676 ], [ 56.469727, 61.501734 ], [ 44.780273, 61.501734 ], [ 44.780273, 66.600676 ], [ 56.469727, 66.600676 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 53.714905, 68.857574 ], [ 54.470215, 68.808978 ], [ 53.484192, 68.202172 ], [ 54.725647, 68.097907 ], [ 55.442505, 68.439589 ], [ 56.250000, 68.450689 ], [ 56.469727, 68.454724 ], [ 56.469727, 66.425537 ], [ 44.780273, 66.425537 ], [ 44.780273, 68.419393 ], [ 45.000000, 68.394124 ], [ 46.249695, 68.250057 ], [ 46.820984, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.010646 ], [ 46.348572, 66.668211 ], [ 47.892151, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.226746, 67.999341 ], [ 53.714905, 68.857574 ] ] ], [ [ [ 56.469727, 70.685421 ], [ 56.469727, 70.651781 ], [ 55.621033, 70.685421 ], [ 56.469727, 70.685421 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 56.469727, 74.079925 ], [ 56.469727, 73.021790 ], [ 56.250000, 72.888146 ], [ 55.417786, 72.371600 ], [ 55.621033, 71.541439 ], [ 56.250000, 71.276122 ], [ 56.469727, 71.182439 ], [ 56.469727, 70.651781 ], [ 56.250000, 70.660878 ], [ 53.676453, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.600037, 71.475234 ], [ 51.454468, 72.015489 ], [ 52.476196, 72.229647 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.506165, 73.750437 ], [ 54.228516, 74.019543 ], [ 54.393311, 74.079925 ], [ 56.469727, 74.079925 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 56.469727, 75.281694 ], [ 56.469727, 73.958939 ], [ 54.066467, 73.958939 ], [ 54.228516, 74.019543 ], [ 55.901184, 74.628014 ], [ 55.629272, 75.081497 ], [ 56.250000, 75.229267 ], [ 56.469727, 75.281694 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 50.037231, 80.918894 ], [ 51.520386, 80.700003 ], [ 51.135864, 80.547420 ], [ 49.792786, 80.415707 ], [ 48.891907, 80.339958 ], [ 48.754578, 80.175902 ], [ 47.584534, 80.010518 ], [ 46.502380, 80.247344 ], [ 47.070923, 80.559591 ], [ 45.000000, 80.587930 ], [ 44.846191, 80.590176 ], [ 45.000000, 80.604535 ], [ 46.799011, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.095154, 80.753998 ], [ 50.037231, 80.918894 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 67.719727, -83.956169 ], [ 67.719727, -85.070048 ], [ 56.030273, -85.070048 ], [ 56.030273, -83.956169 ], [ 67.719727, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 67.719727, -82.648222 ], [ 67.719727, -84.002262 ], [ 56.030273, -84.002262 ], [ 56.030273, -82.648222 ], [ 67.719727, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 67.719727, -81.059130 ], [ 67.719727, -82.704241 ], [ 56.030273, -82.704241 ], [ 56.030273, -81.059130 ], [ 67.719727, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 67.719727, -79.129976 ], [ 67.719727, -81.127169 ], [ 56.030273, -81.127169 ], [ 56.030273, -79.129976 ], [ 67.719727, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 67.719727, -76.790701 ], [ 67.719727, -79.212538 ], [ 56.030273, -79.212538 ], [ 56.030273, -76.790701 ], [ 67.719727, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 67.719727, -73.958939 ], [ 67.719727, -76.890745 ], [ 56.030273, -76.890745 ], [ 56.030273, -73.958939 ], [ 67.719727, -73.958939 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 67.719727, -70.539543 ], [ 67.719727, -74.079925 ], [ 56.030273, -74.079925 ], [ 56.030273, -70.539543 ], [ 67.719727, -70.539543 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 24 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 57.197571, -66.425537 ], [ 57.216797, -66.513260 ], [ 57.255249, -66.680174 ], [ 58.136902, -67.012792 ], [ 58.743896, -67.286894 ], [ 59.938660, -67.404322 ], [ 60.603333, -67.679214 ], [ 61.427307, -67.952994 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.816505 ], [ 64.050293, -67.404322 ], [ 64.992371, -67.620726 ], [ 65.970154, -67.737557 ], [ 66.909485, -67.855879 ], [ 67.500000, -67.902421 ], [ 67.719727, -67.919979 ], [ 67.719727, -70.685421 ], [ 56.030273, -70.685421 ], [ 56.030273, -66.425537 ], [ 57.197571, -66.425537 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 23 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 56.030273, -65.940874 ], [ 56.250000, -65.963258 ], [ 56.354370, -65.974443 ], [ 57.156372, -66.248057 ], [ 57.216797, -66.513260 ], [ 57.236023, -66.600676 ], [ 56.030273, -66.600676 ], [ 56.030273, -65.940874 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Oman", "sov_a3": "OMN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Oman", "adm0_a3": "OMN", "geou_dif": 0, "geounit": "Oman", "gu_a3": "OMN", "su_dif": 0, "subunit": "Oman", "su_a3": "OMN", "brk_diff": 0, "name": "Oman", "name_long": "Oman", "brk_a3": "OMN", "brk_name": "Oman", "abbrev": "Oman", "postal": "OM", "formal_en": "Sultanate of Oman", "name_sort": "Oman", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3418085, "gdp_md_est": 66980, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "OM", "iso_a3": "OMN", "iso_n3": "512", "un_a3": "512", "wb_a2": "OM", "wb_a3": "OMN", "woe_id": -99, "adm0_a3_is": "OMN", "adm0_a3_us": "OMN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.705200, 22.146708 ], [ 59.578857, 21.943046 ], [ 59.441528, 21.716128 ], [ 59.282227, 21.435173 ], [ 58.859253, 21.115249 ], [ 58.485718, 20.429587 ], [ 58.032532, 20.483628 ], [ 57.823792, 20.244160 ], [ 57.664490, 19.738269 ], [ 57.788086, 19.069906 ], [ 57.691956, 18.945258 ], [ 57.233276, 18.950454 ], [ 56.607056, 18.575965 ], [ 56.510925, 18.088423 ], [ 56.282959, 17.876817 ], [ 56.250000, 17.876817 ], [ 56.030273, 17.879431 ], [ 56.030273, 22.146708 ], [ 59.705200, 22.146708 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 60.867004, 32.138409 ], [ 60.891724, 31.952162 ], [ 60.941162, 31.548112 ], [ 61.699219, 31.381779 ], [ 61.778870, 30.737114 ], [ 60.872498, 29.831114 ], [ 61.366882, 29.305561 ], [ 61.770630, 28.700225 ], [ 62.726440, 28.260844 ], [ 62.753906, 27.379084 ], [ 63.231812, 27.217999 ], [ 63.314209, 26.757873 ], [ 61.872253, 26.241693 ], [ 61.495972, 25.080624 ], [ 59.614563, 25.381254 ], [ 58.524170, 25.611810 ], [ 57.395325, 25.740529 ], [ 56.969604, 26.966142 ], [ 56.491699, 27.144701 ], [ 56.250000, 27.088473 ], [ 56.030273, 27.037110 ], [ 56.030273, 32.138409 ], [ 60.867004, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "United Arab Emirates", "sov_a3": "ARE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Arab Emirates", "adm0_a3": "ARE", "geou_dif": 0, "geounit": "United Arab Emirates", "gu_a3": "ARE", "su_dif": 0, "subunit": "United Arab Emirates", "su_a3": "ARE", "brk_diff": 0, "name": "United Arab Emirates", "name_long": "United Arab Emirates", "brk_a3": "ARE", "brk_name": "United Arab Emirates", "abbrev": "U.A.E.", "postal": "AE", "formal_en": "United Arab Emirates", "name_sort": "United Arab Emirates", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 4798491, "gdp_md_est": 184300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AE", "iso_a3": "ARE", "iso_n3": "784", "un_a3": "784", "wb_a2": "AE", "wb_a3": "ARE", "woe_id": -99, "adm0_a3_is": "ARE", "adm0_a3_us": "ARE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 20, "long_len": 20, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.068726, 26.056783 ], [ 56.250000, 25.735581 ], [ 56.260986, 25.715786 ], [ 56.395569, 24.926295 ], [ 56.250000, 24.923804 ], [ 56.030273, 24.923804 ], [ 56.030273, 26.017298 ], [ 56.068726, 26.056783 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Oman", "sov_a3": "OMN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Oman", "adm0_a3": "OMN", "geou_dif": 0, "geounit": "Oman", "gu_a3": "OMN", "su_dif": 0, "subunit": "Oman", "su_a3": "OMN", "brk_diff": 0, "name": "Oman", "name_long": "Oman", "brk_a3": "OMN", "brk_name": "Oman", "abbrev": "Oman", "postal": "OM", "formal_en": "Sultanate of Oman", "name_sort": "Oman", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3418085, "gdp_md_est": 66980, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "OM", "iso_a3": "OMN", "iso_n3": "512", "un_a3": "512", "wb_a2": "OM", "wb_a3": "OMN", "woe_id": -99, "adm0_a3_is": "OMN", "adm0_a3_us": "OMN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.395569, 24.926295 ], [ 56.843262, 24.241956 ], [ 57.400818, 23.880815 ], [ 58.136902, 23.750154 ], [ 58.727417, 23.566505 ], [ 59.177856, 22.993795 ], [ 59.449768, 22.662175 ], [ 59.806824, 22.535391 ], [ 59.804077, 22.311967 ], [ 59.578857, 21.943046 ], [ 59.455261, 21.739091 ], [ 56.030273, 21.739091 ], [ 56.030273, 24.923804 ], [ 56.250000, 24.923804 ], [ 56.395569, 24.926295 ] ] ], [ [ [ 56.359863, 26.396790 ], [ 56.483459, 26.310651 ], [ 56.390076, 25.896291 ], [ 56.260986, 25.715786 ], [ 56.250000, 25.735581 ], [ 56.068726, 26.056783 ], [ 56.250000, 26.266325 ], [ 56.359863, 26.396790 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 32.138409 ], [ 67.719727, 31.398191 ], [ 67.681274, 31.304368 ], [ 67.500000, 31.304368 ], [ 66.936951, 31.306715 ], [ 66.379395, 30.739475 ], [ 66.346436, 29.888281 ], [ 65.044556, 29.473079 ], [ 64.349670, 29.561513 ], [ 64.146423, 29.341481 ], [ 63.547668, 29.470688 ], [ 62.547913, 29.319931 ], [ 60.872498, 29.831114 ], [ 61.778870, 30.737114 ], [ 61.699219, 31.381779 ], [ 60.941162, 31.548112 ], [ 60.891724, 31.952162 ], [ 60.867004, 32.138409 ], [ 67.719727, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 31.398191 ], [ 67.719727, 23.850674 ], [ 67.500000, 23.926013 ], [ 67.442322, 23.946096 ], [ 67.142944, 24.664490 ], [ 66.371155, 25.425912 ], [ 64.528198, 25.237243 ], [ 62.904968, 25.219851 ], [ 61.495972, 25.080624 ], [ 61.872253, 26.241693 ], [ 63.314209, 26.757873 ], [ 63.231812, 27.217999 ], [ 62.753906, 27.379084 ], [ 62.726440, 28.260844 ], [ 61.770630, 28.700225 ], [ 61.366882, 29.305561 ], [ 60.872498, 29.831114 ], [ 62.547913, 29.319931 ], [ 63.547668, 29.470688 ], [ 64.146423, 29.341481 ], [ 64.349670, 29.561513 ], [ 65.044556, 29.473079 ], [ 66.346436, 29.888281 ], [ 66.379395, 30.739475 ], [ 66.936951, 31.306715 ], [ 67.500000, 31.304368 ], [ 67.681274, 31.304368 ], [ 67.719727, 31.398191 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 41.145570 ], [ 67.719727, 41.143501 ], [ 67.609863, 41.145570 ], [ 67.719727, 41.145570 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.609863, 41.145570 ], [ 67.719727, 41.143501 ], [ 67.719727, 39.580290 ], [ 67.700500, 39.582407 ], [ 67.500000, 39.238635 ], [ 67.439575, 39.140712 ], [ 67.500000, 39.121537 ], [ 67.719727, 39.051185 ], [ 67.719727, 37.177826 ], [ 67.500000, 37.239075 ], [ 67.074280, 37.357059 ], [ 66.516724, 37.363609 ], [ 66.544189, 37.976680 ], [ 65.214844, 38.404101 ], [ 64.168396, 38.893171 ], [ 63.517456, 39.364032 ], [ 62.372131, 40.054950 ], [ 61.932678, 40.979898 ], [ 61.880493, 41.085562 ], [ 61.767883, 41.145570 ], [ 67.609863, 41.145570 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.618042, 38.121593 ], [ 57.329407, 38.030786 ], [ 58.433533, 37.522797 ], [ 59.232788, 37.413800 ], [ 60.375366, 36.529502 ], [ 61.122437, 36.491973 ], [ 61.210327, 35.650601 ], [ 60.801086, 34.404644 ], [ 60.526428, 33.678640 ], [ 60.963135, 33.529948 ], [ 60.534668, 32.983324 ], [ 60.861511, 32.184911 ], [ 60.891724, 31.952162 ], [ 60.913696, 31.765537 ], [ 56.030273, 31.765537 ], [ 56.030273, 37.942031 ], [ 56.178589, 37.935533 ], [ 56.250000, 37.965854 ], [ 56.618042, 38.121593 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.767883, 41.145570 ], [ 61.880493, 41.085562 ], [ 61.932678, 40.979898 ], [ 62.372131, 40.054950 ], [ 63.517456, 39.364032 ], [ 64.168396, 38.893171 ], [ 65.214844, 38.404101 ], [ 66.544189, 37.976680 ], [ 66.516724, 37.363609 ], [ 66.217346, 37.394164 ], [ 65.744934, 37.662081 ], [ 65.588379, 37.306829 ], [ 64.745178, 37.112146 ], [ 64.544678, 36.312912 ], [ 63.981628, 36.009117 ], [ 63.193359, 35.857892 ], [ 62.984619, 35.404722 ], [ 62.229309, 35.272532 ], [ 61.210327, 35.650601 ], [ 61.122437, 36.491973 ], [ 60.375366, 36.529502 ], [ 59.232788, 37.413800 ], [ 58.433533, 37.522797 ], [ 57.329407, 38.030786 ], [ 56.618042, 38.121593 ], [ 56.250000, 37.965854 ], [ 56.178589, 37.935533 ], [ 56.030273, 37.942031 ], [ 56.030273, 41.145570 ], [ 61.767883, 41.145570 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.700500, 39.582407 ], [ 67.719727, 39.580290 ], [ 67.719727, 39.051185 ], [ 67.500000, 39.121537 ], [ 67.439575, 39.140712 ], [ 67.500000, 39.238635 ], [ 67.700500, 39.582407 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 65.744934, 37.662081 ], [ 66.217346, 37.394164 ], [ 66.516724, 37.363609 ], [ 67.074280, 37.357059 ], [ 67.500000, 37.239075 ], [ 67.719727, 37.177826 ], [ 67.719727, 31.765537 ], [ 60.913696, 31.765537 ], [ 60.891724, 31.952162 ], [ 60.861511, 32.184911 ], [ 60.534668, 32.983324 ], [ 60.963135, 33.529948 ], [ 60.526428, 33.678640 ], [ 60.801086, 34.404644 ], [ 61.210327, 35.650601 ], [ 62.229309, 35.272532 ], [ 62.984619, 35.404722 ], [ 63.193359, 35.857892 ], [ 63.981628, 36.009117 ], [ 64.544678, 36.312912 ], [ 64.745178, 37.112146 ], [ 65.588379, 37.306829 ], [ 65.744934, 37.662081 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 49.066668 ], [ 67.719727, 41.143501 ], [ 67.500000, 41.149706 ], [ 66.711731, 41.170384 ], [ 66.508484, 41.988077 ], [ 66.022339, 41.996243 ], [ 66.096497, 42.998621 ], [ 64.898987, 43.729429 ], [ 63.185120, 43.651975 ], [ 62.012329, 43.504737 ], [ 61.056519, 44.406316 ], [ 60.238037, 44.785734 ], [ 58.502197, 45.587134 ], [ 56.250000, 45.071581 ], [ 56.030273, 45.021127 ], [ 56.030273, 49.066668 ], [ 67.719727, 49.066668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.502197, 45.587134 ], [ 60.238037, 44.785734 ], [ 61.056519, 44.406316 ], [ 62.012329, 43.504737 ], [ 63.185120, 43.651975 ], [ 64.898987, 43.729429 ], [ 66.096497, 42.998621 ], [ 66.022339, 41.996243 ], [ 66.508484, 41.988077 ], [ 66.711731, 41.170384 ], [ 67.500000, 41.149706 ], [ 67.719727, 41.143501 ], [ 67.719727, 40.813809 ], [ 62.012329, 40.813809 ], [ 61.932678, 40.979898 ], [ 61.880493, 41.085562 ], [ 61.545410, 41.267485 ], [ 60.463257, 41.222052 ], [ 60.081482, 41.426253 ], [ 59.974365, 42.224450 ], [ 58.628540, 42.753063 ], [ 57.785339, 42.171546 ], [ 56.931152, 41.826595 ], [ 57.095947, 41.323201 ], [ 56.250000, 41.312887 ], [ 56.030273, 41.310824 ], [ 56.030273, 45.021127 ], [ 56.250000, 45.071581 ], [ 58.502197, 45.587134 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.628540, 42.753063 ], [ 59.974365, 42.224450 ], [ 60.081482, 41.426253 ], [ 60.463257, 41.222052 ], [ 61.545410, 41.267485 ], [ 61.880493, 41.085562 ], [ 61.932678, 40.979898 ], [ 62.012329, 40.813809 ], [ 56.030273, 40.813809 ], [ 56.030273, 41.310824 ], [ 56.250000, 41.312887 ], [ 57.095947, 41.323201 ], [ 56.931152, 41.826595 ], [ 57.785339, 42.171546 ], [ 58.628540, 42.753063 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 67.719727, 55.899956 ], [ 67.719727, 54.905041 ], [ 67.500000, 54.873446 ], [ 65.665283, 54.602301 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.976868, 53.665798 ], [ 61.699219, 52.980070 ], [ 60.737915, 52.721322 ], [ 60.924683, 52.447640 ], [ 59.966125, 51.961192 ], [ 61.586609, 51.273944 ], [ 61.336670, 50.800727 ], [ 59.930420, 50.842370 ], [ 59.642029, 50.546599 ], [ 58.362122, 51.063839 ], [ 56.777344, 51.044848 ], [ 56.250000, 50.835432 ], [ 56.030273, 50.746884 ], [ 56.030273, 55.899956 ], [ 67.719727, 55.899956 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 54.905041 ], [ 67.719727, 48.777913 ], [ 56.030273, 48.777913 ], [ 56.030273, 50.746884 ], [ 56.250000, 50.835432 ], [ 56.777344, 51.044848 ], [ 58.362122, 51.063839 ], [ 59.642029, 50.546599 ], [ 59.930420, 50.842370 ], [ 61.336670, 50.800727 ], [ 61.586609, 51.273944 ], [ 59.966125, 51.961192 ], [ 60.924683, 52.447640 ], [ 60.737915, 52.721322 ], [ 61.699219, 52.980070 ], [ 60.976868, 53.665798 ], [ 61.435547, 54.007769 ], [ 65.176392, 54.354956 ], [ 65.665283, 54.602301 ], [ 67.500000, 54.873446 ], [ 67.719727, 54.905041 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 67.719727, 61.710706 ], [ 67.719727, 55.652798 ], [ 56.030273, 55.652798 ], [ 56.030273, 61.710706 ], [ 67.719727, 61.710706 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 67.719727, 66.600676 ], [ 67.719727, 61.501734 ], [ 56.030273, 61.501734 ], [ 56.030273, 66.600676 ], [ 67.719727, 66.600676 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 67.719727, 68.347554 ], [ 67.719727, 66.425537 ], [ 56.030273, 66.425537 ], [ 56.030273, 68.447662 ], [ 56.250000, 68.450689 ], [ 57.315674, 68.466824 ], [ 58.801575, 68.881337 ], [ 59.941406, 68.278537 ], [ 61.075745, 68.941620 ], [ 60.029297, 69.520108 ], [ 60.548401, 69.850032 ], [ 63.503723, 69.547958 ], [ 64.888000, 69.235711 ], [ 67.500000, 68.417373 ], [ 67.719727, 68.347554 ] ] ], [ [ [ 57.299194, 70.685421 ], [ 56.944885, 70.633573 ], [ 56.030273, 70.669972 ], [ 56.030273, 70.685421 ], [ 57.299194, 70.685421 ] ] ], [ [ [ 67.719727, 69.390950 ], [ 67.500000, 69.408345 ], [ 66.928711, 69.454662 ], [ 67.258301, 69.929358 ], [ 66.791382, 70.612614 ], [ 66.739197, 70.685421 ], [ 67.719727, 70.685421 ], [ 67.719727, 69.390950 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 67.719727, 71.537960 ], [ 67.719727, 70.539543 ], [ 66.840820, 70.539543 ], [ 66.791382, 70.612614 ], [ 66.722717, 70.709027 ], [ 66.692505, 71.029464 ], [ 67.500000, 71.429803 ], [ 67.719727, 71.537960 ] ] ], [ [ [ 56.030273, 72.752667 ], [ 56.030273, 74.079925 ], [ 58.117676, 74.079925 ], [ 58.024292, 74.019543 ], [ 56.986084, 73.333373 ], [ 56.250000, 72.888146 ], [ 56.030273, 72.752667 ] ] ], [ [ [ 56.030273, 71.369355 ], [ 56.250000, 71.276122 ], [ 57.535400, 70.720820 ], [ 56.944885, 70.633573 ], [ 56.250000, 70.660878 ], [ 56.030273, 70.669972 ], [ 56.030273, 71.369355 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 67.719727, 76.890745 ], [ 67.719727, 76.170559 ], [ 67.500000, 76.140327 ], [ 64.635315, 75.737979 ], [ 61.581116, 75.261444 ], [ 58.474731, 74.309582 ], [ 58.024292, 74.019543 ], [ 57.930908, 73.958939 ], [ 56.030273, 73.958939 ], [ 56.030273, 75.177360 ], [ 56.250000, 75.229267 ], [ 57.867737, 75.609532 ], [ 61.169128, 76.252386 ], [ 64.497986, 76.439112 ], [ 66.209106, 76.810143 ], [ 66.673279, 76.840816 ], [ 67.420349, 76.890745 ], [ 67.719727, 76.890745 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 67.719727, 76.910665 ], [ 67.719727, 76.790701 ], [ 66.121216, 76.790701 ], [ 66.209106, 76.810143 ], [ 66.673279, 76.840816 ], [ 67.500000, 76.896351 ], [ 67.719727, 76.910665 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 78.969727, -83.956169 ], [ 78.969727, -85.070048 ], [ 67.280273, -85.070048 ], [ 67.280273, -83.956169 ], [ 78.969727, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 78.969727, -82.648222 ], [ 78.969727, -84.002262 ], [ 67.280273, -84.002262 ], [ 67.280273, -82.648222 ], [ 78.969727, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 78.969727, -81.059130 ], [ 78.969727, -82.704241 ], [ 67.280273, -82.704241 ], [ 67.280273, -81.059130 ], [ 78.969727, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 78.969727, -79.129976 ], [ 78.969727, -81.127169 ], [ 67.280273, -81.127169 ], [ 67.280273, -79.129976 ], [ 78.969727, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 78.969727, -76.790701 ], [ 78.969727, -79.212538 ], [ 67.280273, -79.212538 ], [ 67.280273, -76.790701 ], [ 78.969727, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 78.969727, -73.958939 ], [ 78.969727, -76.890745 ], [ 67.280273, -76.890745 ], [ 67.280273, -73.958939 ], [ 78.969727, -73.958939 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 78.969727, -70.539543 ], [ 78.969727, -74.079925 ], [ 67.280273, -74.079925 ], [ 67.280273, -70.539543 ], [ 67.892761, -70.539543 ], [ 67.917480, -70.612614 ], [ 67.947693, -70.696320 ], [ 69.065552, -70.677244 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.947693, -71.852807 ], [ 68.711243, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.023865, -72.088277 ], [ 71.573181, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.452087, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.155212, -70.612614 ], [ 73.207397, -70.539543 ], [ 78.969727, -70.539543 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 24 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 67.280273, -67.884849 ], [ 67.500000, -67.902421 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.710999, -68.972193 ], [ 69.672546, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.595886, -69.932185 ], [ 67.810364, -70.304859 ], [ 67.917480, -70.612614 ], [ 67.944946, -70.685421 ], [ 67.280273, -70.685421 ], [ 67.280273, -67.884849 ] ] ], [ [ [ 69.062805, -70.685421 ], [ 68.617859, -70.685421 ], [ 69.065552, -70.677244 ], [ 69.062805, -70.685421 ] ] ], [ [ [ 78.969727, -70.685421 ], [ 73.103027, -70.685421 ], [ 73.155212, -70.612614 ], [ 73.333740, -70.364014 ], [ 73.863831, -69.873672 ], [ 74.490051, -69.776104 ], [ 75.627136, -69.736188 ], [ 76.624146, -69.618859 ], [ 77.643127, -69.462372 ], [ 78.132019, -69.070526 ], [ 78.425903, -68.697503 ], [ 78.750000, -68.524213 ], [ 78.969727, -68.404235 ], [ 78.969727, -70.685421 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 21 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 3, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "French Southern and Antarctic Lands", "adm0_a3": "ATF", "geou_dif": 0, "geounit": "French Southern and Antarctic Lands", "gu_a3": "ATF", "su_dif": 0, "subunit": "French Southern and Antarctic Lands", "su_a3": "ATF", "brk_diff": 0, "name": "Fr. S. Antarctic Lands", "name_long": "French Southern and Antarctic Lands", "brk_a3": "ATF", "brk_name": "Fr. S. and Antarctic Lands", "abbrev": "Fr. S.A.L.", "postal": "TF", "formal_en": "Territory of the French Southern and Antarctic Lands", "note_adm0": "Fr.", "name_sort": "French Southern and Antarctic Lands", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 140, "gdp_md_est": 16, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TF", "iso_a3": "ATF", "iso_n3": "260", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATF", "adm0_a3_us": "ATF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Seven seas (open ocean)", "region_un": "Seven seas (open ocean)", "subregion": "Seven seas (open ocean)", "region_wb": "Sub-Saharan Africa", "name_len": 22, "long_len": 35, "abbrev_len": 10, "tiny": 2, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.246826, -48.777913 ], [ 69.543457, -48.922499 ], [ 69.579163, -48.938739 ], [ 70.523987, -49.064869 ], [ 70.559692, -49.253465 ], [ 70.279541, -49.708496 ], [ 68.744202, -49.774170 ], [ 68.719482, -49.240914 ], [ 68.832092, -48.922499 ], [ 68.865051, -48.828566 ], [ 68.884277, -48.777913 ], [ 69.246826, -48.777913 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 20 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 3, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "French Southern and Antarctic Lands", "adm0_a3": "ATF", "geou_dif": 0, "geounit": "French Southern and Antarctic Lands", "gu_a3": "ATF", "su_dif": 0, "subunit": "French Southern and Antarctic Lands", "su_a3": "ATF", "brk_diff": 0, "name": "Fr. S. Antarctic Lands", "name_long": "French Southern and Antarctic Lands", "brk_a3": "ATF", "brk_name": "Fr. S. and Antarctic Lands", "abbrev": "Fr. S.A.L.", "postal": "TF", "formal_en": "Territory of the French Southern and Antarctic Lands", "note_adm0": "Fr.", "name_sort": "French Southern and Antarctic Lands", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 140, "gdp_md_est": 16, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TF", "iso_a3": "ATF", "iso_n3": "260", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATF", "adm0_a3_us": "ATF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Seven seas (open ocean)", "region_un": "Seven seas (open ocean)", "subregion": "Seven seas (open ocean)", "region_wb": "Sub-Saharan Africa", "name_len": 22, "long_len": 35, "abbrev_len": 10, "tiny": 2, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.933716, -48.623832 ], [ 69.543457, -48.922499 ], [ 69.579163, -48.938739 ], [ 70.523987, -49.066668 ], [ 68.782654, -49.066668 ], [ 68.832092, -48.922499 ], [ 68.865051, -48.828566 ], [ 68.933716, -48.623832 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.969727, 11.393879 ], [ 78.969727, 9.690106 ], [ 78.884583, 9.546583 ], [ 78.969727, 9.457190 ], [ 78.969727, 9.148198 ], [ 78.750000, 9.080400 ], [ 78.277588, 8.933914 ], [ 77.939758, 8.254983 ], [ 77.538757, 7.966758 ], [ 76.591187, 8.901353 ], [ 76.129761, 10.301408 ], [ 75.794678, 11.178402 ], [ 75.745239, 11.310401 ], [ 75.682068, 11.393879 ], [ 78.969727, 11.393879 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.969727, 22.146708 ], [ 78.969727, 10.962764 ], [ 75.877075, 10.962764 ], [ 75.794678, 11.178402 ], [ 75.745239, 11.310401 ], [ 75.393677, 11.781325 ], [ 74.863586, 12.742158 ], [ 74.616394, 13.992706 ], [ 74.443359, 14.618136 ], [ 73.531494, 15.993015 ], [ 73.119507, 17.929089 ], [ 72.820129, 19.210022 ], [ 72.822876, 20.421865 ], [ 72.627869, 21.358455 ], [ 71.174927, 20.758682 ], [ 70.469055, 20.879343 ], [ 69.320984, 21.943046 ], [ 69.161682, 22.090730 ], [ 69.238586, 22.146708 ], [ 78.969727, 22.146708 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.293518, 32.138409 ], [ 69.312744, 31.952162 ], [ 69.315491, 31.903210 ], [ 68.925476, 31.620644 ], [ 68.554688, 31.714149 ], [ 67.791138, 31.583215 ], [ 67.681274, 31.304368 ], [ 67.280273, 31.304368 ], [ 67.280273, 32.138409 ], [ 69.293518, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.061340, 32.138409 ], [ 74.786682, 31.952162 ], [ 74.404907, 31.693119 ], [ 74.418640, 30.979964 ], [ 73.449097, 29.978729 ], [ 72.822876, 28.962492 ], [ 71.776428, 27.914340 ], [ 70.614624, 27.989551 ], [ 69.513245, 26.941660 ], [ 70.166931, 26.492699 ], [ 70.282288, 25.723210 ], [ 70.842590, 25.217366 ], [ 71.043091, 24.357105 ], [ 68.840332, 24.359608 ], [ 68.175659, 23.692320 ], [ 67.500000, 23.926013 ], [ 67.442322, 23.946096 ], [ 67.280273, 24.339589 ], [ 67.280273, 31.304368 ], [ 67.681274, 31.304368 ], [ 67.791138, 31.583215 ], [ 68.554688, 31.714149 ], [ 68.925476, 31.620644 ], [ 69.315491, 31.903210 ], [ 69.312744, 31.952162 ], [ 69.293518, 32.138409 ], [ 75.061340, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.579712, 32.138409 ], [ 78.626404, 31.952162 ], [ 78.736267, 31.517679 ], [ 78.750000, 31.510654 ], [ 78.969727, 31.367709 ], [ 78.969727, 21.739091 ], [ 69.540710, 21.739091 ], [ 69.161682, 22.090730 ], [ 69.642334, 22.451649 ], [ 69.348450, 22.844540 ], [ 68.175659, 23.692320 ], [ 68.840332, 24.359608 ], [ 71.043091, 24.357105 ], [ 70.842590, 25.217366 ], [ 70.282288, 25.723210 ], [ 70.166931, 26.492699 ], [ 69.513245, 26.941660 ], [ 70.614624, 27.989551 ], [ 71.776428, 27.914340 ], [ 72.822876, 28.962492 ], [ 73.449097, 29.978729 ], [ 74.418640, 30.979964 ], [ 74.404907, 31.693119 ], [ 74.786682, 31.952162 ], [ 75.061340, 32.138409 ], [ 78.579712, 32.138409 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 78.969727, 32.138409 ], [ 78.969727, 31.367709 ], [ 78.750000, 31.510654 ], [ 78.736267, 31.517679 ], [ 78.626404, 31.952162 ], [ 78.579712, 32.138409 ], [ 78.969727, 32.138409 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.922729, 41.145570 ], [ 68.821106, 40.979898 ], [ 68.631592, 40.670223 ], [ 68.258057, 40.663973 ], [ 68.074036, 40.979898 ], [ 67.983398, 41.137296 ], [ 67.609863, 41.145570 ], [ 68.922729, 41.145570 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 72.427368, 41.145570 ], [ 72.798157, 40.979898 ], [ 73.053589, 40.867834 ], [ 71.773682, 40.147389 ], [ 71.012878, 40.245992 ], [ 70.600891, 40.218733 ], [ 70.458069, 40.497092 ], [ 70.664062, 40.961234 ], [ 69.329224, 40.728527 ], [ 69.010620, 40.086477 ], [ 68.535461, 39.533703 ], [ 67.700500, 39.582407 ], [ 67.500000, 39.238635 ], [ 67.439575, 39.140712 ], [ 67.500000, 39.121537 ], [ 68.175659, 38.901721 ], [ 68.389893, 38.158317 ], [ 67.829590, 37.147182 ], [ 67.280273, 37.300275 ], [ 67.280273, 41.145570 ], [ 67.609863, 41.145570 ], [ 67.983398, 41.137296 ], [ 68.074036, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.670223 ], [ 68.821106, 40.979898 ], [ 68.922729, 41.145570 ], [ 72.427368, 41.145570 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.755737, 41.145570 ], [ 76.904297, 41.066928 ], [ 76.852112, 40.979898 ], [ 76.525269, 40.428133 ], [ 75.465088, 40.563895 ], [ 74.775696, 40.367474 ], [ 73.819885, 39.894987 ], [ 73.959961, 39.660685 ], [ 73.674316, 39.431950 ], [ 71.784668, 39.281168 ], [ 70.548706, 39.605688 ], [ 69.463806, 39.527348 ], [ 69.557190, 40.103286 ], [ 70.647583, 39.937119 ], [ 71.012878, 40.245992 ], [ 71.773682, 40.147389 ], [ 73.053589, 40.867834 ], [ 72.798157, 40.979898 ], [ 72.427368, 41.145570 ], [ 77.755737, 41.145570 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.961234 ], [ 70.458069, 40.497092 ], [ 70.600891, 40.218733 ], [ 71.012878, 40.245992 ], [ 70.647583, 39.937119 ], [ 69.557190, 40.103286 ], [ 69.463806, 39.527348 ], [ 70.548706, 39.605688 ], [ 71.784668, 39.281168 ], [ 73.674316, 39.431950 ], [ 73.927002, 38.507341 ], [ 74.256592, 38.608286 ], [ 74.863586, 38.380422 ], [ 74.827881, 37.991834 ], [ 74.978943, 37.420345 ], [ 73.946228, 37.422526 ], [ 73.259583, 37.496652 ], [ 72.636108, 37.048601 ], [ 72.191162, 36.949892 ], [ 71.842346, 36.738884 ], [ 71.446838, 37.066136 ], [ 71.540222, 37.907367 ], [ 71.238098, 37.955027 ], [ 71.347961, 38.259750 ], [ 70.804138, 38.487995 ], [ 70.375671, 38.138877 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.590295 ], [ 69.518738, 37.609880 ], [ 69.194641, 37.151561 ], [ 68.856812, 37.346143 ], [ 68.134460, 37.024484 ], [ 67.829590, 37.147182 ], [ 68.389893, 38.158317 ], [ 68.175659, 38.901721 ], [ 67.500000, 39.121537 ], [ 67.439575, 39.140712 ], [ 67.500000, 39.238635 ], [ 67.700500, 39.582407 ], [ 68.535461, 39.533703 ], [ 69.010620, 40.086477 ], [ 69.329224, 40.728527 ], [ 70.664062, 40.961234 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.804138, 38.487995 ], [ 71.347961, 38.259750 ], [ 71.238098, 37.955027 ], [ 71.540222, 37.907367 ], [ 71.446838, 37.066136 ], [ 71.842346, 36.738884 ], [ 72.191162, 36.949892 ], [ 72.636108, 37.048601 ], [ 73.259583, 37.496652 ], [ 73.946228, 37.422526 ], [ 74.978943, 37.420345 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.022291 ], [ 74.067078, 36.837866 ], [ 72.919006, 36.721274 ], [ 71.845093, 36.511844 ], [ 71.260071, 36.075742 ], [ 71.496277, 35.650601 ], [ 71.611633, 35.153600 ], [ 71.114502, 34.734841 ], [ 71.155701, 34.350239 ], [ 70.881042, 33.988918 ], [ 69.927979, 34.020795 ], [ 70.323486, 33.360356 ], [ 69.686279, 33.107648 ], [ 69.260559, 32.502813 ], [ 69.312744, 31.952162 ], [ 69.315491, 31.903210 ], [ 69.125977, 31.765537 ], [ 67.280273, 31.765537 ], [ 67.280273, 37.300275 ], [ 67.829590, 37.147182 ], [ 68.134460, 37.024484 ], [ 68.856812, 37.346143 ], [ 69.194641, 37.151561 ], [ 69.518738, 37.609880 ], [ 70.114746, 37.590295 ], [ 70.268555, 37.735969 ], [ 70.375671, 38.138877 ], [ 70.804138, 38.487995 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.157471, 37.134045 ], [ 75.896301, 36.668419 ], [ 76.190186, 35.900175 ], [ 77.835388, 35.494220 ], [ 76.871338, 34.653545 ], [ 75.756226, 34.506557 ], [ 74.240112, 34.750640 ], [ 73.748474, 34.318487 ], [ 74.102783, 33.442901 ], [ 74.448853, 32.766491 ], [ 75.256348, 32.273200 ], [ 74.786682, 31.952162 ], [ 74.512024, 31.765537 ], [ 69.125977, 31.765537 ], [ 69.315491, 31.903210 ], [ 69.312744, 31.952162 ], [ 69.260559, 32.502813 ], [ 69.686279, 33.107648 ], [ 70.323486, 33.360356 ], [ 69.927979, 34.020795 ], [ 70.881042, 33.988918 ], [ 71.155701, 34.350239 ], [ 71.114502, 34.734841 ], [ 71.611633, 35.153600 ], [ 71.496277, 35.650601 ], [ 71.260071, 36.075742 ], [ 71.845093, 36.511844 ], [ 72.919006, 36.721274 ], [ 74.067078, 36.837866 ], [ 74.575195, 37.022291 ], [ 75.157471, 37.134045 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.835388, 35.494220 ], [ 78.750000, 34.502030 ], [ 78.912048, 34.323024 ], [ 78.810425, 33.507049 ], [ 78.969727, 33.302986 ], [ 78.969727, 32.523658 ], [ 78.750000, 32.565333 ], [ 78.456116, 32.618557 ], [ 78.626404, 31.952162 ], [ 78.673096, 31.765537 ], [ 74.512024, 31.765537 ], [ 74.786682, 31.952162 ], [ 75.256348, 32.273200 ], [ 74.448853, 32.766491 ], [ 74.102783, 33.442901 ], [ 73.748474, 34.318487 ], [ 74.240112, 34.750640 ], [ 75.756226, 34.506557 ], [ 76.871338, 34.653545 ], [ 77.835388, 35.494220 ] ] ] } } +, +{ "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": [ [ [ [ 78.969727, 33.302986 ], [ 78.810425, 33.507049 ], [ 78.912048, 34.323024 ], [ 78.750000, 34.502030 ], [ 77.835388, 35.494220 ], [ 76.190186, 35.900175 ], [ 75.896301, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.978943, 37.420345 ], [ 74.827881, 37.991834 ], [ 74.863586, 38.380422 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.507341 ], [ 73.674316, 39.431950 ], [ 73.959961, 39.660685 ], [ 73.819885, 39.894987 ], [ 74.775696, 40.367474 ], [ 75.465088, 40.563895 ], [ 76.525269, 40.428133 ], [ 76.852112, 40.979898 ], [ 76.904297, 41.066928 ], [ 77.755737, 41.145570 ], [ 78.969727, 41.145570 ], [ 78.969727, 33.302986 ] ] ], [ [ [ 78.969727, 32.523658 ], [ 78.969727, 31.765537 ], [ 78.673096, 31.765537 ], [ 78.626404, 31.952162 ], [ 78.456116, 32.618557 ], [ 78.750000, 32.565333 ], [ 78.969727, 32.523658 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.969727, 49.066668 ], [ 78.969727, 42.869925 ], [ 78.750000, 42.884015 ], [ 77.656860, 42.962453 ], [ 75.997925, 42.988576 ], [ 75.635376, 42.877977 ], [ 74.212646, 43.299197 ], [ 73.644104, 43.092961 ], [ 73.487549, 42.502478 ], [ 71.842346, 42.845765 ], [ 71.185913, 42.704641 ], [ 70.960693, 42.267147 ], [ 70.386658, 42.081917 ], [ 69.068298, 41.385052 ], [ 68.821106, 40.979898 ], [ 68.719482, 40.813809 ], [ 68.170166, 40.813809 ], [ 68.074036, 40.979898 ], [ 67.983398, 41.137296 ], [ 67.500000, 41.149706 ], [ 67.280273, 41.155910 ], [ 67.280273, 49.066668 ], [ 78.969727, 49.066668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.280273, 41.155910 ], [ 67.500000, 41.149706 ], [ 67.983398, 41.137296 ], [ 68.074036, 40.979898 ], [ 68.170166, 40.813809 ], [ 67.280273, 40.813809 ], [ 67.280273, 41.155910 ] ] ], [ [ [ 71.257324, 42.169511 ], [ 70.419617, 41.520917 ], [ 71.155701, 41.145570 ], [ 71.869812, 41.393294 ], [ 72.798157, 40.979898 ], [ 73.053589, 40.867834 ], [ 72.960205, 40.813809 ], [ 70.598145, 40.813809 ], [ 70.664062, 40.961234 ], [ 69.823608, 40.813809 ], [ 68.719482, 40.813809 ], [ 68.821106, 40.979898 ], [ 69.068298, 41.385052 ], [ 70.386658, 42.081917 ], [ 70.960693, 42.267147 ], [ 71.257324, 42.169511 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.212646, 43.299197 ], [ 75.635376, 42.877977 ], [ 75.997925, 42.988576 ], [ 77.656860, 42.962453 ], [ 78.750000, 42.884015 ], [ 78.969727, 42.869925 ], [ 78.969727, 41.730330 ], [ 78.750000, 41.654445 ], [ 78.541260, 41.582580 ], [ 78.186951, 41.186922 ], [ 76.904297, 41.066928 ], [ 76.852112, 40.979898 ], [ 76.753235, 40.813809 ], [ 72.960205, 40.813809 ], [ 73.053589, 40.867834 ], [ 72.798157, 40.979898 ], [ 71.869812, 41.393294 ], [ 71.155701, 41.145570 ], [ 70.419617, 41.520917 ], [ 71.257324, 42.169511 ], [ 70.960693, 42.267147 ], [ 71.185913, 42.704641 ], [ 71.842346, 42.845765 ], [ 73.487549, 42.502478 ], [ 73.644104, 43.092961 ], [ 74.212646, 43.299197 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.961234 ], [ 70.598145, 40.813809 ], [ 69.823608, 40.813809 ], [ 70.664062, 40.961234 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 78.969727, 41.730330 ], [ 78.969727, 40.813809 ], [ 76.753235, 40.813809 ], [ 76.852112, 40.979898 ], [ 76.904297, 41.066928 ], [ 78.186951, 41.186922 ], [ 78.541260, 41.582580 ], [ 78.750000, 41.654445 ], [ 78.969727, 41.730330 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 78.969727, 55.899956 ], [ 78.969727, 52.094695 ], [ 78.750000, 52.343730 ], [ 77.799683, 53.404620 ], [ 76.522522, 54.178512 ], [ 76.890564, 54.490782 ], [ 74.382935, 53.548467 ], [ 73.424377, 53.491314 ], [ 73.506775, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.177673, 54.133478 ], [ 70.864563, 55.171025 ], [ 69.065552, 55.385352 ], [ 68.167419, 54.971308 ], [ 67.500000, 54.873446 ], [ 67.280273, 54.840245 ], [ 67.280273, 55.899956 ], [ 78.969727, 55.899956 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.065552, 55.385352 ], [ 70.864563, 55.171025 ], [ 71.177673, 54.133478 ], [ 72.224121, 54.377358 ], [ 73.506775, 54.036812 ], [ 73.424377, 53.491314 ], [ 74.382935, 53.548467 ], [ 76.890564, 54.490782 ], [ 76.522522, 54.178512 ], [ 77.799683, 53.404620 ], [ 78.750000, 52.343730 ], [ 78.969727, 52.094695 ], [ 78.969727, 48.777913 ], [ 67.280273, 48.777913 ], [ 67.280273, 54.840245 ], [ 67.500000, 54.873446 ], [ 68.167419, 54.971308 ], [ 69.065552, 55.385352 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 78.969727, 61.710706 ], [ 78.969727, 55.652798 ], [ 67.280273, 55.652798 ], [ 67.280273, 61.710706 ], [ 78.969727, 61.710706 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 78.969727, 66.600676 ], [ 78.969727, 61.501734 ], [ 67.280273, 61.501734 ], [ 67.280273, 66.600676 ], [ 71.655579, 66.600676 ], [ 71.537476, 66.513260 ], [ 71.279297, 66.320965 ], [ 72.421875, 66.172719 ], [ 72.798157, 66.513260 ], [ 72.820129, 66.532956 ], [ 73.108521, 66.600676 ], [ 78.969727, 66.600676 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 72.655334, 70.685421 ], [ 72.691040, 70.612614 ], [ 72.789917, 70.391684 ], [ 72.564697, 69.021414 ], [ 73.666077, 68.408278 ], [ 73.237610, 67.740678 ], [ 71.537476, 66.513260 ], [ 71.419373, 66.425537 ], [ 67.280273, 66.425537 ], [ 67.280273, 68.487984 ], [ 67.500000, 68.417373 ], [ 68.510742, 68.092783 ], [ 69.178162, 68.616534 ], [ 68.161926, 69.144965 ], [ 68.134460, 69.357086 ], [ 67.500000, 69.408345 ], [ 67.280273, 69.426691 ], [ 67.280273, 70.685421 ], [ 72.655334, 70.685421 ] ] ], [ [ [ 78.969727, 66.425537 ], [ 72.699280, 66.425537 ], [ 72.798157, 66.513260 ], [ 72.820129, 66.532956 ], [ 73.918762, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.050354, 67.761477 ], [ 74.468079, 68.329305 ], [ 74.934998, 68.989925 ], [ 73.841858, 69.071507 ], [ 73.600159, 69.628422 ], [ 74.382935, 70.612614 ], [ 74.399414, 70.631752 ], [ 74.314270, 70.685421 ], [ 78.969727, 70.685421 ], [ 78.969727, 66.425537 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.847839, 71.409675 ], [ 72.468567, 71.090975 ], [ 72.691040, 70.612614 ], [ 72.723999, 70.539543 ], [ 67.280273, 70.539543 ], [ 67.280273, 71.321035 ], [ 67.500000, 71.429803 ], [ 68.538208, 71.934751 ], [ 69.194641, 72.843642 ], [ 69.938965, 73.040226 ] ] ], [ [ [ 75.682068, 72.300761 ], [ 75.286560, 71.335983 ], [ 76.357727, 71.153182 ], [ 75.901794, 71.874181 ], [ 77.574463, 72.267330 ], [ 78.750000, 72.297421 ], [ 78.969727, 72.303266 ], [ 78.969727, 70.539543 ], [ 74.322510, 70.539543 ], [ 74.382935, 70.612614 ], [ 74.399414, 70.631752 ], [ 73.100281, 71.447289 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.682068, 72.300761 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 68.244324, 76.890745 ], [ 68.332214, 76.840816 ], [ 68.851318, 76.544967 ], [ 68.178406, 76.234098 ], [ 67.500000, 76.140327 ], [ 67.280273, 76.109370 ], [ 67.280273, 76.881398 ], [ 67.420349, 76.890745 ], [ 68.244324, 76.890745 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 68.156433, 76.939868 ], [ 68.332214, 76.840816 ], [ 68.420105, 76.790701 ], [ 67.280273, 76.790701 ], [ 67.280273, 76.881398 ], [ 67.500000, 76.896351 ], [ 68.156433, 76.939868 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 90.219727, -83.956169 ], [ 90.219727, -85.070048 ], [ 78.530273, -85.070048 ], [ 78.530273, -83.956169 ], [ 90.219727, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 90.219727, -82.648222 ], [ 90.219727, -84.002262 ], [ 78.530273, -84.002262 ], [ 78.530273, -82.648222 ], [ 90.219727, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 90.219727, -81.059130 ], [ 90.219727, -82.704241 ], [ 78.530273, -82.704241 ], [ 78.530273, -81.059130 ], [ 90.219727, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 90.219727, -79.129976 ], [ 90.219727, -81.127169 ], [ 78.530273, -81.127169 ], [ 78.530273, -79.129976 ], [ 90.219727, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 90.219727, -76.790701 ], [ 90.219727, -79.212538 ], [ 78.530273, -79.212538 ], [ 78.530273, -76.790701 ], [ 90.219727, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 90.219727, -73.958939 ], [ 90.219727, -76.890745 ], [ 78.530273, -76.890745 ], [ 78.530273, -73.958939 ], [ 90.219727, -73.958939 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 90.219727, -70.539543 ], [ 90.219727, -74.079925 ], [ 78.530273, -74.079925 ], [ 78.530273, -70.539543 ], [ 90.219727, -70.539543 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 24 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 88.277893, -66.425537 ], [ 88.357544, -66.483688 ], [ 88.385010, -66.513260 ], [ 88.827209, -66.953727 ], [ 89.670410, -67.149699 ], [ 90.000000, -67.176348 ], [ 90.219727, -67.194453 ], [ 90.219727, -70.685421 ], [ 78.530273, -70.685421 ], [ 78.530273, -68.642556 ], [ 78.750000, -68.524213 ], [ 79.112549, -68.325248 ], [ 80.093079, -68.071253 ], [ 80.933533, -67.875541 ], [ 81.482849, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.773743, -67.208289 ], [ 83.773499, -67.307035 ], [ 84.674377, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.750793, -67.149699 ], [ 87.475891, -66.875109 ], [ 87.756042, -66.513260 ], [ 87.821960, -66.425537 ], [ 88.277893, -66.425537 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 23 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 87.984009, -66.209308 ], [ 88.357544, -66.483688 ], [ 88.385010, -66.513260 ], [ 88.472900, -66.600676 ], [ 87.687378, -66.600676 ], [ 87.756042, -66.513260 ], [ 87.984009, -66.209308 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 79.859619, 11.393879 ], [ 79.859619, 11.178402 ], [ 79.856873, 10.358151 ], [ 79.337769, 10.309515 ], [ 78.884583, 9.546583 ], [ 79.189453, 9.218694 ], [ 78.750000, 9.080400 ], [ 78.530273, 9.012590 ], [ 78.530273, 11.393879 ], [ 79.859619, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sri Lanka", "sov_a3": "LKA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sri Lanka", "adm0_a3": "LKA", "geou_dif": 0, "geounit": "Sri Lanka", "gu_a3": "LKA", "su_dif": 0, "subunit": "Sri Lanka", "su_a3": "LKA", "brk_diff": 0, "name": "Sri Lanka", "name_long": "Sri Lanka", "brk_a3": "LKA", "brk_name": "Sri Lanka", "abbrev": "Sri L.", "postal": "LK", "formal_en": "Democratic Socialist Republic of Sri Lanka", "name_sort": "Sri Lanka", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 21324791, "gdp_md_est": 91870, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LK", "iso_a3": "LKA", "iso_n3": "144", "un_a3": "144", "wb_a2": "LK", "wb_a3": "LKA", "woe_id": -99, "adm0_a3_is": "LKA", "adm0_a3_us": "LKA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.145264, 9.825448 ], [ 80.837402, 9.270201 ], [ 81.301575, 8.564726 ], [ 81.787720, 7.523150 ], [ 81.636658, 6.481796 ], [ 81.216431, 6.197899 ], [ 80.345764, 5.968485 ], [ 79.870605, 6.765534 ], [ 79.694824, 8.203335 ], [ 80.145264, 9.825448 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.013977, 22.146708 ], [ 89.030457, 22.057642 ], [ 88.986511, 21.943046 ], [ 88.887634, 21.690609 ], [ 88.206482, 21.703369 ], [ 86.973267, 21.496519 ], [ 87.030945, 20.745840 ], [ 86.498108, 20.153942 ], [ 85.058899, 19.479540 ], [ 83.938293, 18.302381 ], [ 83.188477, 17.672811 ], [ 82.191467, 17.017394 ], [ 82.188721, 16.557227 ], [ 81.691589, 16.312232 ], [ 80.790710, 15.953407 ], [ 80.323792, 15.900584 ], [ 80.024414, 15.138416 ], [ 80.233154, 13.838080 ], [ 80.285339, 13.007234 ], [ 79.862366, 12.058123 ], [ 79.859619, 11.178402 ], [ 79.856873, 10.962764 ], [ 78.530273, 10.962764 ], [ 78.530273, 22.146708 ], [ 89.013977, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bangladesh", "sov_a3": "BGD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bangladesh", "adm0_a3": "BGD", "geou_dif": 0, "geounit": "Bangladesh", "gu_a3": "BGD", "su_dif": 0, "subunit": "Bangladesh", "su_a3": "BGD", "brk_diff": 0, "name": "Bangladesh", "name_long": "Bangladesh", "brk_a3": "BGD", "brk_name": "Bangladesh", "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "name_sort": "Bangladesh", "mapcolor7": 3, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 156050883, "gdp_md_est": 224000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BD", "iso_a3": "BGD", "iso_n3": "050", "un_a3": "050", "wb_a2": "BD", "wb_a3": "BGD", "woe_id": -99, "adm0_a3_is": "BGD", "adm0_a3_us": "BGD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.219727, 22.146708 ], [ 90.219727, 21.864048 ], [ 89.846191, 22.039822 ], [ 89.769287, 21.943046 ], [ 89.700623, 21.858950 ], [ 89.478149, 21.943046 ], [ 89.417725, 21.968519 ], [ 89.030457, 22.057642 ], [ 89.013977, 22.146708 ], [ 90.219727, 22.146708 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Nepal", "sov_a3": "NPL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nepal", "adm0_a3": "NPL", "geou_dif": 0, "geounit": "Nepal", "gu_a3": "NPL", "su_dif": 0, "subunit": "Nepal", "su_a3": "NPL", "brk_diff": 0, "name": "Nepal", "name_long": "Nepal", "brk_a3": "NPL", "brk_name": "Nepal", "abbrev": "Nepal", "postal": "NP", "formal_en": "Nepal", "name_sort": "Nepal", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 28563377, "gdp_md_est": 31080, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NP", "iso_a3": "NPL", "iso_n3": "524", "un_a3": "524", "wb_a2": "NP", "wb_a3": "NPL", "woe_id": -99, "adm0_a3_is": "NPL", "adm0_a3_us": "NPL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.524048, 30.424993 ], [ 82.326050, 30.116622 ], [ 83.336792, 29.465905 ], [ 83.897095, 29.322326 ], [ 84.232178, 28.842268 ], [ 85.009460, 28.644800 ], [ 85.822449, 28.205188 ], [ 86.954041, 27.974998 ], [ 88.118591, 27.877928 ], [ 88.041687, 27.447353 ], [ 88.173523, 26.811815 ], [ 88.058167, 26.416470 ], [ 87.225952, 26.399250 ], [ 86.022949, 26.632729 ], [ 85.251160, 26.728440 ], [ 84.674377, 27.235095 ], [ 83.303833, 27.366889 ], [ 81.999207, 27.926474 ], [ 81.057129, 28.417975 ], [ 80.087585, 28.796546 ], [ 80.474854, 29.730992 ], [ 81.109314, 30.185496 ], [ 81.524048, 30.424993 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.579712, 32.138409 ], [ 78.736267, 31.517679 ], [ 78.750000, 31.510654 ], [ 79.719543, 30.883369 ], [ 81.109314, 30.185496 ], [ 80.474854, 29.730992 ], [ 80.087585, 28.796546 ], [ 81.057129, 28.417975 ], [ 81.999207, 27.926474 ], [ 83.303833, 27.366889 ], [ 84.674377, 27.235095 ], [ 85.251160, 26.728440 ], [ 86.022949, 26.632729 ], [ 87.225952, 26.399250 ], [ 88.058167, 26.416470 ], [ 88.173523, 26.811815 ], [ 88.041687, 27.447353 ], [ 88.118591, 27.877928 ], [ 88.728333, 28.088943 ], [ 88.835449, 27.100699 ], [ 89.741821, 26.721080 ], [ 90.000000, 26.784847 ], [ 90.219727, 26.838776 ], [ 90.219727, 25.227305 ], [ 90.000000, 25.259601 ], [ 89.920349, 25.272020 ], [ 89.832458, 25.965453 ], [ 89.354553, 26.014829 ], [ 88.560791, 26.448443 ], [ 88.209229, 25.770214 ], [ 88.928833, 25.239727 ], [ 88.305359, 24.866503 ], [ 88.082886, 24.502145 ], [ 88.698120, 24.234442 ], [ 88.527832, 23.631944 ], [ 88.873901, 22.879971 ], [ 89.030457, 22.057642 ], [ 88.986511, 21.943046 ], [ 88.906860, 21.739091 ], [ 78.530273, 21.739091 ], [ 78.530273, 32.138409 ], [ 78.579712, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bhutan", "sov_a3": "BTN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bhutan", "adm0_a3": "BTN", "geou_dif": 0, "geounit": "Bhutan", "gu_a3": "BTN", "su_dif": 0, "subunit": "Bhutan", "su_a3": "BTN", "brk_diff": 0, "name": "Bhutan", "name_long": "Bhutan", "brk_a3": "BTN", "brk_name": "Bhutan", "abbrev": "Bhutan", "postal": "BT", "formal_en": "Kingdom of Bhutan", "name_sort": "Bhutan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 691141, "gdp_md_est": 3524, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BT", "iso_a3": "BTN", "iso_n3": "064", "un_a3": "064", "wb_a2": "BT", "wb_a3": "BTN", "woe_id": -99, "adm0_a3_is": "BTN", "adm0_a3_us": "BTN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.013733, 28.297126 ], [ 90.219727, 28.231810 ], [ 90.219727, 26.838776 ], [ 90.000000, 26.784847 ], [ 89.741821, 26.721080 ], [ 88.835449, 27.100699 ], [ 88.813477, 27.301011 ], [ 89.475403, 28.042895 ], [ 90.000000, 28.289870 ], [ 90.013733, 28.297126 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bangladesh", "sov_a3": "BGD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bangladesh", "adm0_a3": "BGD", "geou_dif": 0, "geounit": "Bangladesh", "gu_a3": "BGD", "su_dif": 0, "subunit": "Bangladesh", "su_a3": "BGD", "brk_diff": 0, "name": "Bangladesh", "name_long": "Bangladesh", "brk_a3": "BGD", "brk_name": "Bangladesh", "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "name_sort": "Bangladesh", "mapcolor7": 3, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 156050883, "gdp_md_est": 224000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BD", "iso_a3": "BGD", "iso_n3": "050", "un_a3": "050", "wb_a2": "BD", "wb_a3": "BGD", "woe_id": -99, "adm0_a3_is": "BGD", "adm0_a3_us": "BGD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.560791, 26.448443 ], [ 89.354553, 26.014829 ], [ 89.832458, 25.965453 ], [ 89.920349, 25.272020 ], [ 90.000000, 25.259601 ], [ 90.219727, 25.227305 ], [ 90.219727, 21.864048 ], [ 90.000000, 21.968519 ], [ 89.846191, 22.039822 ], [ 89.769287, 21.943046 ], [ 89.700623, 21.858950 ], [ 89.478149, 21.943046 ], [ 89.417725, 21.968519 ], [ 89.030457, 22.057642 ], [ 88.873901, 22.879971 ], [ 88.527832, 23.631944 ], [ 88.698120, 24.234442 ], [ 88.082886, 24.502145 ], [ 88.305359, 24.866503 ], [ 88.928833, 25.239727 ], [ 88.209229, 25.770214 ], [ 88.560791, 26.448443 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 90.219727, 32.138409 ], [ 90.219727, 28.231810 ], [ 90.013733, 28.297126 ], [ 90.000000, 28.289870 ], [ 89.475403, 28.042895 ], [ 88.813477, 27.301011 ], [ 88.728333, 28.088943 ], [ 88.118591, 27.877928 ], [ 86.954041, 27.974998 ], [ 85.822449, 28.205188 ], [ 85.009460, 28.644800 ], [ 84.232178, 28.842268 ], [ 83.897095, 29.322326 ], [ 83.336792, 29.465905 ], [ 82.326050, 30.116622 ], [ 81.524048, 30.424993 ], [ 81.109314, 30.185496 ], [ 79.719543, 30.883369 ], [ 78.750000, 31.510654 ], [ 78.736267, 31.517679 ], [ 78.579712, 32.138409 ], [ 90.219727, 32.138409 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 78.530273, 32.606989 ], [ 78.530273, 34.741612 ], [ 78.750000, 34.502030 ], [ 78.912048, 34.323024 ], [ 78.810425, 33.507049 ], [ 79.208679, 32.994843 ], [ 79.175720, 32.484280 ], [ 78.750000, 32.565333 ], [ 78.530273, 32.606989 ] ] ], [ [ [ 78.530273, 32.338200 ], [ 78.673096, 31.765537 ], [ 78.530273, 31.765537 ], [ 78.530273, 32.338200 ] ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 90.219727, 41.145570 ], [ 90.219727, 31.765537 ], [ 78.673096, 31.765537 ], [ 78.530273, 32.338200 ], [ 78.530273, 32.606989 ], [ 78.750000, 32.565333 ], [ 79.175720, 32.484280 ], [ 79.208679, 32.994843 ], [ 78.810425, 33.507049 ], [ 78.912048, 34.323024 ], [ 78.750000, 34.502030 ], [ 78.530273, 34.741612 ], [ 78.530273, 41.145570 ], [ 90.219727, 41.145570 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.187500, 49.066668 ], [ 87.022705, 48.922499 ], [ 86.596985, 48.549342 ], [ 85.767517, 48.456530 ], [ 85.718079, 47.454094 ], [ 85.163269, 47.002734 ], [ 83.180237, 47.331377 ], [ 82.457886, 45.540984 ], [ 81.947021, 45.317392 ], [ 79.963989, 44.918139 ], [ 80.864868, 43.181147 ], [ 80.178223, 42.920229 ], [ 80.257874, 42.350425 ], [ 79.642639, 42.498428 ], [ 79.140015, 42.857846 ], [ 78.750000, 42.884015 ], [ 78.530273, 42.900113 ], [ 78.530273, 49.066668 ], [ 87.187500, 49.066668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.530273, 42.900113 ], [ 78.750000, 42.884015 ], [ 79.140015, 42.857846 ], [ 79.642639, 42.498428 ], [ 80.257874, 42.350425 ], [ 80.117798, 42.124710 ], [ 78.750000, 41.654445 ], [ 78.541260, 41.582580 ], [ 78.530273, 41.568197 ], [ 78.530273, 42.900113 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.219727, 49.066668 ], [ 90.219727, 47.709762 ], [ 90.000000, 47.768868 ], [ 88.851929, 48.070738 ], [ 88.011475, 48.600225 ], [ 87.890625, 48.922499 ], [ 87.835693, 49.066668 ], [ 90.219727, 49.066668 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 87.835693, 49.066668 ], [ 87.890625, 48.922499 ], [ 88.011475, 48.600225 ], [ 88.851929, 48.070738 ], [ 90.000000, 47.768868 ], [ 90.219727, 47.709762 ], [ 90.219727, 40.813809 ], [ 78.530273, 40.813809 ], [ 78.530273, 41.568197 ], [ 78.541260, 41.582580 ], [ 78.750000, 41.654445 ], [ 80.117798, 42.124710 ], [ 80.257874, 42.350425 ], [ 80.178223, 42.920229 ], [ 80.864868, 43.181147 ], [ 79.963989, 44.918139 ], [ 81.947021, 45.317392 ], [ 82.457886, 45.540984 ], [ 83.180237, 47.331377 ], [ 85.163269, 47.002734 ], [ 85.718079, 47.454094 ], [ 85.767517, 48.456530 ], [ 86.596985, 48.549342 ], [ 87.022705, 48.922499 ], [ 87.187500, 49.066668 ], [ 87.835693, 49.066668 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 90.219727, 55.899956 ], [ 90.219727, 50.111772 ], [ 90.000000, 50.013034 ], [ 88.805237, 49.471694 ], [ 87.750549, 49.298263 ], [ 87.357788, 49.215803 ], [ 86.827698, 49.827353 ], [ 85.539551, 49.694285 ], [ 85.113831, 50.118817 ], [ 84.416199, 50.312146 ], [ 83.932800, 50.890907 ], [ 83.380737, 51.070743 ], [ 81.944275, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 78.750000, 52.343730 ], [ 78.530273, 52.593038 ], [ 78.530273, 55.899956 ], [ 90.219727, 55.899956 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.530273, 52.593038 ], [ 78.750000, 52.343730 ], [ 80.035400, 50.864911 ], [ 80.568237, 51.388923 ], [ 81.944275, 50.812877 ], [ 83.380737, 51.070743 ], [ 83.932800, 50.890907 ], [ 84.416199, 50.312146 ], [ 85.113831, 50.118817 ], [ 85.539551, 49.694285 ], [ 86.827698, 49.827353 ], [ 87.357788, 49.215803 ], [ 87.022705, 48.922499 ], [ 86.857910, 48.777913 ], [ 78.530273, 48.777913 ], [ 78.530273, 52.593038 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.219727, 50.111772 ], [ 90.219727, 48.777913 ], [ 87.945557, 48.777913 ], [ 87.890625, 48.922499 ], [ 87.750549, 49.298263 ], [ 88.805237, 49.471694 ], [ 90.000000, 50.013034 ], [ 90.219727, 50.111772 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 87.750549, 49.298263 ], [ 87.890625, 48.922499 ], [ 87.945557, 48.777913 ], [ 86.857910, 48.777913 ], [ 87.022705, 48.922499 ], [ 87.357788, 49.215803 ], [ 87.750549, 49.298263 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 90.219727, 61.710706 ], [ 90.219727, 55.652798 ], [ 78.530273, 55.652798 ], [ 78.530273, 61.710706 ], [ 90.219727, 61.710706 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 90.219727, 66.600676 ], [ 90.219727, 61.501734 ], [ 78.530273, 61.501734 ], [ 78.530273, 66.600676 ], [ 90.219727, 66.600676 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 90.219727, 70.685421 ], [ 90.219727, 66.425537 ], [ 78.530273, 66.425537 ], [ 78.530273, 70.685421 ], [ 90.219727, 70.685421 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 90.219727, 74.079925 ], [ 90.219727, 70.539543 ], [ 78.530273, 70.539543 ], [ 78.530273, 72.291574 ], [ 78.750000, 72.297421 ], [ 79.650879, 72.320791 ], [ 81.499329, 71.750733 ], [ 80.609436, 72.583295 ], [ 80.510559, 73.648679 ], [ 82.249146, 73.850050 ], [ 84.655151, 73.806447 ], [ 86.822205, 73.936915 ], [ 86.693115, 74.019543 ], [ 86.602478, 74.079925 ], [ 90.219727, 74.079925 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 90.219727, 75.629996 ], [ 90.219727, 73.958939 ], [ 86.786499, 73.958939 ], [ 86.693115, 74.019543 ], [ 86.009216, 74.460399 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.144299 ], [ 90.000000, 75.574678 ], [ 90.219727, 75.629996 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 101.469727, -83.956169 ], [ 101.469727, -85.070048 ], [ 89.780273, -85.070048 ], [ 89.780273, -83.956169 ], [ 101.469727, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 101.469727, -82.648222 ], [ 101.469727, -84.002262 ], [ 89.780273, -84.002262 ], [ 89.780273, -82.648222 ], [ 101.469727, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 101.469727, -81.059130 ], [ 101.469727, -82.704241 ], [ 89.780273, -82.704241 ], [ 89.780273, -81.059130 ], [ 101.469727, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 101.469727, -79.129976 ], [ 101.469727, -81.127169 ], [ 89.780273, -81.127169 ], [ 89.780273, -79.129976 ], [ 101.469727, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 101.469727, -76.790701 ], [ 101.469727, -79.212538 ], [ 89.780273, -79.212538 ], [ 89.780273, -76.790701 ], [ 101.469727, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 101.469727, -73.958939 ], [ 101.469727, -76.890745 ], [ 89.780273, -76.890745 ], [ 89.780273, -73.958939 ], [ 101.469727, -73.958939 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 101.469727, -70.539543 ], [ 101.469727, -74.079925 ], [ 89.780273, -74.079925 ], [ 89.780273, -70.539543 ], [ 101.469727, -70.539543 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 24 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 101.469727, -66.425537 ], [ 101.469727, -70.685421 ], [ 89.780273, -70.685421 ], [ 89.780273, -67.159296 ], [ 90.000000, -67.176348 ], [ 90.628967, -67.228496 ], [ 91.587524, -67.111272 ], [ 92.606506, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.111272 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.385318 ], [ 96.679688, -67.247624 ], [ 97.759094, -67.247624 ], [ 98.679199, -67.111272 ], [ 99.717407, -67.247624 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.582126 ], [ 101.285706, -66.425537 ], [ 101.469727, -66.425537 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 23 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 101.469727, -66.350730 ], [ 101.469727, -66.600676 ], [ 100.862732, -66.600676 ], [ 100.892944, -66.582126 ], [ 101.250000, -66.439813 ], [ 101.469727, -66.350730 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 16 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.469727, 0.219726 ], [ 101.469727, -2.874465 ], [ 101.398315, -2.797655 ], [ 101.250000, -2.572682 ], [ 100.901184, -2.048514 ], [ 100.140381, -0.648180 ], [ 99.456482, 0.000000 ], [ 99.261475, 0.184021 ], [ 99.250488, 0.219726 ], [ 101.469727, 0.219726 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.291687, 11.393879 ], [ 99.165344, 11.178402 ], [ 99.036255, 10.962764 ], [ 98.552856, 9.933682 ], [ 98.456726, 10.676803 ], [ 98.657227, 11.178402 ], [ 98.745117, 11.393879 ], [ 99.291687, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.678955, 11.393879 ], [ 99.599304, 11.178402 ], [ 99.151611, 9.963440 ], [ 99.220276, 9.240382 ], [ 99.871216, 9.210560 ], [ 100.277710, 8.295752 ], [ 100.458984, 7.430560 ], [ 101.016541, 6.858259 ], [ 101.250000, 6.814626 ], [ 101.469727, 6.770989 ], [ 101.469727, 5.749907 ], [ 101.250000, 5.708914 ], [ 101.153870, 5.692516 ], [ 101.074219, 6.206090 ], [ 100.258484, 6.645511 ], [ 100.085449, 6.465422 ], [ 99.689941, 6.850078 ], [ 99.516907, 7.346123 ], [ 98.986816, 7.909632 ], [ 98.503418, 8.382714 ], [ 98.338623, 7.795357 ], [ 98.149109, 8.350106 ], [ 98.258972, 8.974610 ], [ 98.552856, 9.933682 ], [ 99.036255, 10.962764 ], [ 99.165344, 11.178402 ], [ 99.291687, 11.393879 ], [ 99.678955, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.258484, 6.645511 ], [ 101.074219, 6.206090 ], [ 101.153870, 5.692516 ], [ 101.250000, 5.708914 ], [ 101.469727, 5.749907 ], [ 101.469727, 2.709866 ], [ 101.390076, 2.761991 ], [ 101.271973, 3.272146 ], [ 101.250000, 3.299566 ], [ 100.695190, 3.940981 ], [ 100.555115, 4.768047 ], [ 100.195312, 5.312501 ], [ 100.305176, 6.042236 ], [ 100.085449, 6.465422 ], [ 100.258484, 6.645511 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 95.292664, 5.482034 ], [ 95.935364, 5.441022 ], [ 97.484436, 5.246863 ], [ 98.368835, 4.269724 ], [ 99.140625, 3.592919 ], [ 99.692688, 3.176167 ], [ 100.640259, 2.100664 ], [ 101.250000, 2.092430 ], [ 101.469727, 2.086941 ], [ 101.469727, -0.219726 ], [ 99.687195, -0.219726 ], [ 99.456482, 0.000000 ], [ 99.261475, 0.184021 ], [ 98.967590, 1.043643 ], [ 98.599548, 1.826168 ], [ 97.698669, 2.454693 ], [ 97.176819, 3.310534 ], [ 96.421509, 3.869735 ], [ 95.380554, 4.973296 ], [ 95.292664, 5.482034 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 92.889404, 22.146708 ], [ 92.672424, 22.042367 ], [ 92.636719, 22.146708 ], [ 92.889404, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bangladesh", "sov_a3": "BGD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bangladesh", "adm0_a3": "BGD", "geou_dif": 0, "geounit": "Bangladesh", "gu_a3": "BGD", "su_dif": 0, "subunit": "Bangladesh", "su_a3": "BGD", "brk_diff": 0, "name": "Bangladesh", "name_long": "Bangladesh", "brk_a3": "BGD", "brk_name": "Bangladesh", "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "name_sort": "Bangladesh", "mapcolor7": 3, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 156050883, "gdp_md_est": 224000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BD", "iso_a3": "BGD", "iso_n3": "050", "un_a3": "050", "wb_a2": "BD", "wb_a3": "BGD", "woe_id": -99, "adm0_a3_is": "BGD", "adm0_a3_us": "BGD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 92.636719, 22.146708 ], [ 92.672424, 22.042367 ], [ 92.669678, 21.943046 ], [ 92.650452, 21.325198 ], [ 92.301636, 21.476073 ], [ 92.367554, 20.671336 ], [ 92.081909, 21.194655 ], [ 92.024231, 21.703369 ], [ 91.928101, 21.943046 ], [ 91.848450, 22.146708 ], [ 92.636719, 22.146708 ] ] ], [ [ [ 90.447693, 22.146708 ], [ 90.332336, 21.943046 ], [ 90.271912, 21.838555 ], [ 90.046692, 21.943046 ], [ 89.846191, 22.039822 ], [ 89.780273, 21.955783 ], [ 89.780273, 22.146708 ], [ 90.447693, 22.146708 ] ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 101.469727, 22.146708 ], [ 101.469727, 21.192094 ], [ 101.269226, 21.202337 ], [ 101.250000, 21.256102 ], [ 101.178589, 21.437730 ], [ 101.148376, 21.851302 ], [ 100.415039, 21.560393 ], [ 99.981079, 21.744194 ], [ 99.585571, 21.943046 ], [ 99.239502, 22.118722 ], [ 99.250488, 22.146708 ], [ 101.469727, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.250488, 22.146708 ], [ 99.239502, 22.118722 ], [ 99.585571, 21.943046 ], [ 99.981079, 21.744194 ], [ 100.415039, 21.560393 ], [ 101.148376, 21.851302 ], [ 101.178589, 21.437730 ], [ 100.327148, 20.786931 ], [ 100.115662, 20.419291 ], [ 99.541626, 20.187457 ], [ 98.959351, 19.753779 ], [ 98.253479, 19.709829 ], [ 97.797546, 18.628027 ], [ 97.374573, 18.445741 ], [ 97.857971, 17.568102 ], [ 98.492432, 16.838719 ], [ 98.901672, 16.180386 ], [ 98.536377, 15.310678 ], [ 98.190308, 15.125159 ], [ 98.429260, 14.623451 ], [ 99.096680, 13.830079 ], [ 99.209290, 13.269353 ], [ 99.195557, 12.806445 ], [ 99.585571, 11.894228 ], [ 99.165344, 11.178402 ], [ 99.039001, 10.962764 ], [ 98.572083, 10.962764 ], [ 98.657227, 11.178402 ], [ 98.764343, 11.442339 ], [ 98.426514, 12.033948 ], [ 98.508911, 13.124955 ], [ 98.102417, 13.640649 ], [ 97.775574, 14.838612 ], [ 97.597046, 16.101237 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.428182 ], [ 95.366821, 15.715595 ], [ 94.806519, 15.805468 ], [ 94.188538, 16.040534 ], [ 94.531860, 17.279841 ], [ 94.323120, 18.213698 ], [ 93.540344, 19.368159 ], [ 93.661194, 19.727928 ], [ 93.076172, 19.857144 ], [ 92.367554, 20.671336 ], [ 92.301636, 21.476073 ], [ 92.650452, 21.325198 ], [ 92.669678, 21.943046 ], [ 92.672424, 22.042367 ], [ 92.889404, 22.146708 ], [ 99.250488, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Laos", "sov_a3": "LAO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Laos", "adm0_a3": "LAO", "geou_dif": 0, "geounit": "Laos", "gu_a3": "LAO", "su_dif": 0, "subunit": "Laos", "su_a3": "LAO", "brk_diff": 0, "name": "Lao PDR", "name_long": "Lao PDR", "brk_a3": "LAO", "brk_name": "Laos", "abbrev": "Laos", "postal": "LA", "formal_en": "Lao People's Democratic Republic", "name_sort": "Lao PDR", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 6834942, "gdp_md_est": 13980, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LA", "iso_a3": "LAO", "iso_n3": "418", "un_a3": "418", "wb_a2": "LA", "wb_a3": "LAO", "woe_id": -99, "adm0_a3_is": "LAO", "adm0_a3_us": "LAO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.178589, 21.437730 ], [ 101.250000, 21.256102 ], [ 101.269226, 21.202337 ], [ 101.469727, 21.192094 ], [ 101.469727, 17.746071 ], [ 101.250000, 17.620464 ], [ 101.057739, 17.513106 ], [ 101.035767, 18.409261 ], [ 101.250000, 19.326695 ], [ 101.280212, 19.464003 ], [ 101.250000, 19.466592 ], [ 100.604553, 19.510609 ], [ 100.546875, 20.110102 ], [ 100.115662, 20.419291 ], [ 100.327148, 20.786931 ], [ 101.178589, 21.437730 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.115662, 20.419291 ], [ 100.546875, 20.110102 ], [ 100.604553, 19.510609 ], [ 101.250000, 19.466592 ], [ 101.280212, 19.464003 ], [ 101.250000, 19.326695 ], [ 101.035767, 18.409261 ], [ 101.057739, 17.513106 ], [ 101.250000, 17.620464 ], [ 101.469727, 17.746071 ], [ 101.469727, 12.643018 ], [ 101.250000, 12.637658 ], [ 100.829773, 12.629618 ], [ 100.978088, 13.413666 ], [ 100.096436, 13.408322 ], [ 100.016785, 12.307802 ], [ 99.599304, 11.178402 ], [ 99.519653, 10.962764 ], [ 99.039001, 10.962764 ], [ 99.165344, 11.178402 ], [ 99.585571, 11.894228 ], [ 99.195557, 12.806445 ], [ 99.209290, 13.269353 ], [ 99.096680, 13.830079 ], [ 98.429260, 14.623451 ], [ 98.190308, 15.125159 ], [ 98.536377, 15.310678 ], [ 98.901672, 16.180386 ], [ 98.492432, 16.838719 ], [ 97.857971, 17.568102 ], [ 97.374573, 18.445741 ], [ 97.797546, 18.628027 ], [ 98.253479, 19.709829 ], [ 98.959351, 19.753779 ], [ 99.541626, 20.187457 ], [ 100.115662, 20.419291 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.116638, 29.453948 ], [ 96.586304, 28.832644 ], [ 96.248474, 28.413144 ], [ 97.325134, 28.263263 ], [ 97.402039, 27.882784 ], [ 97.050476, 27.700552 ], [ 97.132874, 27.086028 ], [ 96.418762, 27.266837 ], [ 95.122375, 26.573790 ], [ 95.152588, 26.002487 ], [ 94.600525, 25.162687 ], [ 94.551086, 24.676970 ], [ 94.106140, 23.853186 ], [ 93.323364, 24.079067 ], [ 93.284912, 23.044353 ], [ 93.059692, 22.705255 ], [ 93.164062, 22.278931 ], [ 92.672424, 22.042367 ], [ 92.145081, 23.629427 ], [ 91.867676, 23.624395 ], [ 91.705627, 22.986210 ], [ 91.156311, 23.503552 ], [ 91.466675, 24.074051 ], [ 91.914368, 24.131715 ], [ 92.375793, 24.978589 ], [ 91.799011, 25.147771 ], [ 90.870667, 25.132852 ], [ 90.000000, 25.259601 ], [ 89.920349, 25.272020 ], [ 89.832458, 25.965453 ], [ 89.780273, 25.972861 ], [ 89.780273, 26.728440 ], [ 90.000000, 26.784847 ], [ 90.370789, 26.877981 ], [ 91.216736, 26.809364 ], [ 92.032471, 26.838776 ], [ 92.101135, 27.454665 ], [ 91.694641, 27.773481 ], [ 92.502136, 27.897349 ], [ 93.411255, 28.642389 ], [ 94.564819, 29.279212 ], [ 95.402527, 29.032158 ], [ 96.116638, 29.453948 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bhutan", "sov_a3": "BTN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bhutan", "adm0_a3": "BTN", "geou_dif": 0, "geounit": "Bhutan", "gu_a3": "BTN", "su_dif": 0, "subunit": "Bhutan", "su_a3": "BTN", "brk_diff": 0, "name": "Bhutan", "name_long": "Bhutan", "brk_a3": "BTN", "brk_name": "Bhutan", "abbrev": "Bhutan", "postal": "BT", "formal_en": "Kingdom of Bhutan", "name_sort": "Bhutan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 691141, "gdp_md_est": 3524, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BT", "iso_a3": "BTN", "iso_n3": "064", "un_a3": "064", "wb_a2": "BT", "wb_a3": "BTN", "woe_id": -99, "adm0_a3_is": "BTN", "adm0_a3_us": "BTN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.013733, 28.297126 ], [ 90.727844, 28.067133 ], [ 91.257935, 28.042895 ], [ 91.694641, 27.773481 ], [ 92.101135, 27.454665 ], [ 92.032471, 26.838776 ], [ 91.216736, 26.809364 ], [ 90.370789, 26.877981 ], [ 90.000000, 26.784847 ], [ 89.780273, 26.728440 ], [ 89.780273, 28.188244 ], [ 90.000000, 28.289870 ], [ 90.013733, 28.297126 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bangladesh", "sov_a3": "BGD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bangladesh", "adm0_a3": "BGD", "geou_dif": 0, "geounit": "Bangladesh", "gu_a3": "BGD", "su_dif": 0, "subunit": "Bangladesh", "su_a3": "BGD", "brk_diff": 0, "name": "Bangladesh", "name_long": "Bangladesh", "brk_a3": "BGD", "brk_name": "Bangladesh", "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "name_sort": "Bangladesh", "mapcolor7": 3, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 156050883, "gdp_md_est": 224000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BD", "iso_a3": "BGD", "iso_n3": "050", "un_a3": "050", "wb_a2": "BD", "wb_a3": "BGD", "woe_id": -99, "adm0_a3_is": "BGD", "adm0_a3_us": "BGD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.780273, 25.972861 ], [ 89.832458, 25.965453 ], [ 89.920349, 25.272020 ], [ 90.000000, 25.259601 ], [ 90.870667, 25.132852 ], [ 91.799011, 25.147771 ], [ 92.375793, 24.978589 ], [ 91.914368, 24.131715 ], [ 91.466675, 24.074051 ], [ 91.156311, 23.503552 ], [ 91.705627, 22.986210 ], [ 91.867676, 23.624395 ], [ 92.145081, 23.629427 ], [ 92.672424, 22.042367 ], [ 92.669678, 21.943046 ], [ 92.661438, 21.739091 ], [ 92.007751, 21.739091 ], [ 91.928101, 21.943046 ], [ 91.834717, 22.184862 ], [ 91.414490, 22.766051 ], [ 90.494385, 22.806567 ], [ 90.585022, 22.393253 ], [ 90.332336, 21.943046 ], [ 90.271912, 21.838555 ], [ 90.046692, 21.943046 ], [ 90.000000, 21.968519 ], [ 89.846191, 22.039822 ], [ 89.780273, 21.955783 ], [ 89.780273, 25.972861 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 101.469727, 32.138409 ], [ 101.469727, 21.739091 ], [ 101.156616, 21.739091 ], [ 101.148376, 21.851302 ], [ 100.868225, 21.739091 ], [ 99.992065, 21.739091 ], [ 99.585571, 21.943046 ], [ 99.239502, 22.118722 ], [ 99.530640, 22.950806 ], [ 98.896179, 23.142886 ], [ 98.659973, 24.064020 ], [ 97.602539, 23.898394 ], [ 97.723389, 25.085599 ], [ 98.670959, 25.920996 ], [ 98.709412, 26.745610 ], [ 98.681946, 27.510707 ], [ 98.245239, 27.749177 ], [ 97.910156, 28.338230 ], [ 97.325134, 28.263263 ], [ 96.248474, 28.413144 ], [ 96.586304, 28.832644 ], [ 96.116638, 29.453948 ], [ 95.402527, 29.032158 ], [ 94.564819, 29.279212 ], [ 93.411255, 28.642389 ], [ 92.502136, 27.897349 ], [ 91.694641, 27.773481 ], [ 91.257935, 28.042895 ], [ 90.727844, 28.067133 ], [ 90.013733, 28.297126 ], [ 90.000000, 28.289870 ], [ 89.780273, 28.188244 ], [ 89.780273, 32.138409 ], [ 101.469727, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 97.910156, 28.338230 ], [ 98.245239, 27.749177 ], [ 98.681946, 27.510707 ], [ 98.709412, 26.745610 ], [ 98.670959, 25.920996 ], [ 97.723389, 25.085599 ], [ 97.602539, 23.898394 ], [ 98.659973, 24.064020 ], [ 98.896179, 23.142886 ], [ 99.530640, 22.950806 ], [ 99.239502, 22.118722 ], [ 99.585571, 21.943046 ], [ 99.992065, 21.739091 ], [ 92.661438, 21.739091 ], [ 92.669678, 21.943046 ], [ 92.672424, 22.042367 ], [ 93.164062, 22.278931 ], [ 93.059692, 22.705255 ], [ 93.284912, 23.044353 ], [ 93.323364, 24.079067 ], [ 94.106140, 23.853186 ], [ 94.551086, 24.676970 ], [ 94.600525, 25.162687 ], [ 95.152588, 26.002487 ], [ 95.122375, 26.573790 ], [ 96.418762, 27.266837 ], [ 97.132874, 27.086028 ], [ 97.050476, 27.700552 ], [ 97.402039, 27.882784 ], [ 97.325134, 28.263263 ], [ 97.910156, 28.338230 ] ] ], [ [ [ 101.156616, 21.739091 ], [ 100.868225, 21.739091 ], [ 101.148376, 21.851302 ], [ 101.156616, 21.739091 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 101.469727, 41.145570 ], [ 101.469727, 31.765537 ], [ 89.780273, 31.765537 ], [ 89.780273, 41.145570 ], [ 101.469727, 41.145570 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.469727, 49.066668 ], [ 101.469727, 42.571287 ], [ 101.250000, 42.603642 ], [ 100.843506, 42.664261 ], [ 99.514160, 42.524748 ], [ 97.451477, 42.749029 ], [ 96.347351, 42.726839 ], [ 95.762329, 43.321181 ], [ 95.306396, 44.243231 ], [ 94.688416, 44.353314 ], [ 93.479919, 44.976457 ], [ 92.131348, 45.116177 ], [ 90.944824, 45.286482 ], [ 90.585022, 45.721522 ], [ 90.969543, 46.888355 ], [ 90.280151, 47.694974 ], [ 90.000000, 47.768868 ], [ 89.780273, 47.826064 ], [ 89.780273, 49.066668 ], [ 101.469727, 49.066668 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 89.780273, 47.826064 ], [ 90.000000, 47.768868 ], [ 90.280151, 47.694974 ], [ 90.969543, 46.888355 ], [ 90.585022, 45.721522 ], [ 90.944824, 45.286482 ], [ 92.131348, 45.116177 ], [ 93.479919, 44.976457 ], [ 94.688416, 44.353314 ], [ 95.306396, 44.243231 ], [ 95.762329, 43.321181 ], [ 96.347351, 42.726839 ], [ 97.451477, 42.749029 ], [ 99.514160, 42.524748 ], [ 100.843506, 42.664261 ], [ 101.250000, 42.603642 ], [ 101.469727, 42.571287 ], [ 101.469727, 40.813809 ], [ 89.780273, 40.813809 ], [ 89.780273, 47.826064 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 101.469727, 55.899956 ], [ 101.469727, 51.390637 ], [ 101.250000, 51.438601 ], [ 100.887451, 51.517289 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.047423 ], [ 97.825012, 51.012027 ], [ 98.231506, 50.422519 ], [ 97.259216, 49.726255 ], [ 95.811768, 49.977722 ], [ 94.814758, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.232971, 50.802463 ], [ 90.711365, 50.333190 ], [ 90.000000, 50.013034 ], [ 89.780273, 49.914093 ], [ 89.780273, 55.899956 ], [ 101.469727, 55.899956 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.860474, 52.047423 ], [ 99.981079, 51.635067 ], [ 100.887451, 51.517289 ], [ 101.250000, 51.438601 ], [ 101.469727, 51.390637 ], [ 101.469727, 48.777913 ], [ 89.780273, 48.777913 ], [ 89.780273, 49.914093 ], [ 90.000000, 50.013034 ], [ 90.711365, 50.333190 ], [ 92.232971, 50.802463 ], [ 93.103638, 50.495958 ], [ 94.147339, 50.481978 ], [ 94.814758, 50.014799 ], [ 95.811768, 49.977722 ], [ 97.259216, 49.726255 ], [ 98.231506, 50.422519 ], [ 97.825012, 51.012027 ], [ 98.860474, 52.047423 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 101.469727, 61.710706 ], [ 101.469727, 55.652798 ], [ 89.780273, 55.652798 ], [ 89.780273, 61.710706 ], [ 101.469727, 61.710706 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 101.469727, 66.600676 ], [ 101.469727, 61.501734 ], [ 89.780273, 61.501734 ], [ 89.780273, 66.600676 ], [ 101.469727, 66.600676 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 101.469727, 70.685421 ], [ 101.469727, 66.425537 ], [ 89.780273, 66.425537 ], [ 89.780273, 70.685421 ], [ 101.469727, 70.685421 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 101.469727, 74.079925 ], [ 101.469727, 70.539543 ], [ 89.780273, 70.539543 ], [ 89.780273, 74.079925 ], [ 101.469727, 74.079925 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 101.469727, 76.890745 ], [ 101.469727, 73.958939 ], [ 89.780273, 73.958939 ], [ 89.780273, 75.519151 ], [ 90.000000, 75.574678 ], [ 90.258179, 75.640217 ], [ 92.900391, 75.773797 ], [ 93.232727, 76.047254 ], [ 95.858459, 76.140327 ], [ 96.676941, 75.915521 ], [ 98.920898, 76.447482 ], [ 100.758362, 76.430738 ], [ 101.033020, 76.862059 ], [ 101.098938, 76.890745 ], [ 101.469727, 76.890745 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 101.469727, 77.057270 ], [ 101.469727, 76.790701 ], [ 100.989075, 76.790701 ], [ 101.019287, 76.840816 ], [ 101.033020, 76.862059 ], [ 101.250000, 76.959094 ], [ 101.469727, 77.057270 ] ] ], [ [ [ 101.469727, 79.212538 ], [ 101.469727, 78.061989 ], [ 101.250000, 78.046640 ], [ 99.437256, 77.921418 ], [ 101.170349, 79.171335 ], [ 101.230774, 79.212538 ], [ 101.469727, 79.212538 ] ] ], [ [ [ 100.027771, 79.212538 ], [ 100.016785, 79.171335 ], [ 99.937134, 78.881177 ], [ 97.756348, 78.756551 ], [ 94.971313, 79.045225 ], [ 94.427490, 79.171335 ], [ 94.248962, 79.212538 ], [ 100.027771, 79.212538 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 101.469727, 79.262288 ], [ 101.469727, 79.129976 ], [ 101.109924, 79.129976 ], [ 101.170349, 79.171335 ], [ 101.250000, 79.224355 ], [ 101.263733, 79.234107 ], [ 101.469727, 79.262288 ] ] ], [ [ [ 96.424255, 81.127169 ], [ 96.558838, 81.093214 ], [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 100.016785, 79.171335 ], [ 100.005798, 79.129976 ], [ 94.606018, 79.129976 ], [ 94.427490, 79.171335 ], [ 93.312378, 79.426828 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.341801 ], [ 93.776550, 81.024916 ], [ 94.427490, 81.093214 ], [ 94.751587, 81.127169 ], [ 96.424255, 81.127169 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 95.940857, 81.250438 ], [ 96.558838, 81.093214 ], [ 96.690674, 81.059130 ], [ 94.103394, 81.059130 ], [ 94.427490, 81.093214 ], [ 95.940857, 81.250438 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 112.719727, -83.956169 ], [ 112.719727, -85.070048 ], [ 101.030273, -85.070048 ], [ 101.030273, -83.956169 ], [ 112.719727, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 112.719727, -82.648222 ], [ 112.719727, -84.002262 ], [ 101.030273, -84.002262 ], [ 101.030273, -82.648222 ], [ 112.719727, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 112.719727, -81.059130 ], [ 112.719727, -82.704241 ], [ 101.030273, -82.704241 ], [ 101.030273, -81.059130 ], [ 112.719727, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 112.719727, -79.129976 ], [ 112.719727, -81.127169 ], [ 101.030273, -81.127169 ], [ 101.030273, -79.129976 ], [ 112.719727, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 112.719727, -76.790701 ], [ 112.719727, -79.212538 ], [ 101.030273, -79.212538 ], [ 101.030273, -76.790701 ], [ 112.719727, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 112.719727, -73.958939 ], [ 112.719727, -76.890745 ], [ 101.030273, -76.890745 ], [ 101.030273, -73.958939 ], [ 112.719727, -73.958939 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 112.719727, -70.539543 ], [ 112.719727, -74.079925 ], [ 101.030273, -74.079925 ], [ 101.030273, -70.539543 ], [ 112.719727, -70.539543 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 24 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 112.719727, -66.425537 ], [ 112.719727, -70.685421 ], [ 101.030273, -70.685421 ], [ 101.030273, -66.527486 ], [ 101.285706, -66.425537 ], [ 105.111694, -66.425537 ], [ 105.292969, -66.513260 ], [ 106.180115, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.080750, -66.953727 ], [ 109.157410, -66.836246 ], [ 110.234070, -66.699737 ], [ 110.794373, -66.513260 ], [ 111.058044, -66.425537 ], [ 112.719727, -66.425537 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 23 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 102.832031, -65.563005 ], [ 103.477478, -65.700128 ], [ 104.241028, -65.974443 ], [ 104.908447, -66.326479 ], [ 105.292969, -66.513260 ], [ 105.476990, -66.600676 ], [ 101.030273, -66.600676 ], [ 101.030273, -66.527486 ], [ 101.250000, -66.439813 ], [ 101.576843, -66.307724 ], [ 102.832031, -65.563005 ] ] ], [ [ [ 112.719727, -66.600676 ], [ 110.533447, -66.600676 ], [ 110.794373, -66.513260 ], [ 111.058044, -66.424439 ], [ 111.741943, -66.130520 ], [ 112.500000, -66.104945 ], [ 112.719727, -66.097156 ], [ 112.719727, -66.600676 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 16 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.051025, -5.894725 ], [ 107.262268, -5.954827 ], [ 108.069763, -6.345327 ], [ 108.484497, -6.421754 ], [ 108.621826, -6.776444 ], [ 110.538940, -6.877347 ], [ 110.758667, -6.462693 ], [ 112.500000, -6.915521 ], [ 112.612610, -6.945512 ], [ 112.719727, -7.130872 ], [ 112.719727, -8.369127 ], [ 112.557678, -8.374562 ], [ 112.500000, -8.371845 ], [ 111.519470, -8.301188 ], [ 110.585632, -8.121772 ], [ 109.426575, -7.738208 ], [ 108.693237, -7.640220 ], [ 108.275757, -7.765423 ], [ 106.452026, -7.354295 ], [ 106.278992, -6.923700 ], [ 105.364380, -6.850078 ], [ 106.051025, -5.894725 ] ] ], [ [ [ 103.645020, 0.219726 ], [ 103.837280, 0.107117 ], [ 103.785095, 0.000000 ], [ 103.436279, -0.711346 ], [ 104.010315, -1.057374 ], [ 104.367371, -1.084835 ], [ 104.537659, -1.782244 ], [ 104.886475, -2.339438 ], [ 105.619812, -2.427252 ], [ 106.105957, -3.060982 ], [ 105.856018, -4.305330 ], [ 105.817566, -5.851010 ], [ 104.707947, -5.872868 ], [ 103.867493, -5.036227 ], [ 102.582092, -4.217682 ], [ 102.153625, -3.612107 ], [ 101.398315, -2.797655 ], [ 101.250000, -2.572682 ], [ 101.030273, -2.240640 ], [ 101.030273, 0.219726 ], [ 103.645020, 0.219726 ] ] ], [ [ [ 112.719727, 0.219726 ], [ 112.719727, -3.280372 ], [ 112.500000, -3.346180 ], [ 112.066040, -3.477782 ], [ 111.700745, -2.992413 ], [ 111.047058, -3.047268 ], [ 110.223083, -2.932069 ], [ 110.069275, -1.592812 ], [ 109.569397, -1.312751 ], [ 109.091492, -0.458674 ], [ 109.017334, 0.000000 ], [ 108.981628, 0.219726 ], [ 112.719727, 0.219726 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.030273, 6.855532 ], [ 101.250000, 6.814626 ], [ 101.620789, 6.740986 ], [ 102.139893, 6.222473 ], [ 101.813049, 5.812757 ], [ 101.250000, 5.708914 ], [ 101.153870, 5.692516 ], [ 101.074219, 6.206090 ], [ 101.030273, 6.230664 ], [ 101.030273, 6.855532 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Vietnam", "sov_a3": "VNM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vietnam", "adm0_a3": "VNM", "geou_dif": 0, "geounit": "Vietnam", "gu_a3": "VNM", "su_dif": 0, "subunit": "Vietnam", "su_a3": "VNM", "brk_diff": 0, "name": "Vietnam", "name_long": "Vietnam", "brk_a3": "VNM", "brk_name": "Vietnam", "abbrev": "Viet.", "postal": "VN", "formal_en": "Socialist Republic of Vietnam", "name_sort": "Vietnam", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 86967524, "gdp_md_est": 241700, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VN", "iso_a3": "VNM", "iso_n3": "704", "un_a3": "704", "wb_a2": "VN", "wb_a3": "VNM", "woe_id": -99, "adm0_a3_is": "VNM", "adm0_a3_us": "VNM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 108.852539, 11.393879 ], [ 108.580627, 11.178402 ], [ 108.363647, 11.008601 ], [ 107.218323, 10.366257 ], [ 106.402588, 9.533040 ], [ 105.155640, 8.600032 ], [ 104.793091, 9.243093 ], [ 105.075989, 9.920155 ], [ 104.331665, 10.487812 ], [ 105.199585, 10.889951 ], [ 106.248779, 10.962764 ], [ 105.935669, 11.393879 ], [ 108.852539, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cambodia", "sov_a3": "KHM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cambodia", "adm0_a3": "KHM", "geou_dif": 0, "geounit": "Cambodia", "gu_a3": "KHM", "su_dif": 0, "subunit": "Cambodia", "su_a3": "KHM", "brk_diff": 0, "name": "Cambodia", "name_long": "Cambodia", "brk_a3": "KHM", "brk_name": "Cambodia", "abbrev": "Camb.", "postal": "KH", "formal_en": "Kingdom of Cambodia", "name_sort": "Cambodia", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 5, "pop_est": 14494293, "gdp_md_est": 27940, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KH", "iso_a3": "KHM", "iso_n3": "116", "un_a3": "116", "wb_a2": "KH", "wb_a3": "KHM", "woe_id": -99, "adm0_a3_is": "KHM", "adm0_a3_us": "KHM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.935669, 11.393879 ], [ 106.248779, 10.962764 ], [ 105.199585, 10.889951 ], [ 104.331665, 10.487812 ], [ 103.496704, 10.633615 ], [ 103.090210, 11.154151 ], [ 103.076477, 11.178402 ], [ 102.972107, 11.393879 ], [ 105.935669, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.719727, 3.052754 ], [ 112.719727, 1.474752 ], [ 112.500000, 1.433566 ], [ 112.379150, 1.411600 ], [ 111.796875, 0.906334 ], [ 111.156921, 0.977736 ], [ 110.511475, 0.774513 ], [ 109.827576, 1.340210 ], [ 109.662781, 2.007341 ], [ 110.396118, 1.664195 ], [ 111.167908, 1.850874 ], [ 111.368408, 2.698892 ], [ 111.796875, 2.888180 ], [ 112.500000, 3.014356 ], [ 112.719727, 3.052754 ] ] ], [ [ [ 101.030273, 6.230664 ], [ 101.074219, 6.206090 ], [ 101.153870, 5.692516 ], [ 101.250000, 5.708914 ], [ 101.813049, 5.812757 ], [ 102.139893, 6.222473 ], [ 102.370605, 6.129631 ], [ 102.961121, 5.525777 ], [ 103.378601, 4.855628 ], [ 103.436279, 4.182073 ], [ 103.331909, 3.727227 ], [ 103.428040, 3.384566 ], [ 103.502197, 2.792168 ], [ 103.853760, 2.517805 ], [ 104.246521, 1.631249 ], [ 104.227295, 1.293530 ], [ 103.518677, 1.227628 ], [ 102.571106, 1.968912 ], [ 101.390076, 2.761991 ], [ 101.271973, 3.272146 ], [ 101.250000, 3.299566 ], [ 101.030273, 3.554541 ], [ 101.030273, 6.230664 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 109.662781, 2.007341 ], [ 109.827576, 1.340210 ], [ 110.511475, 0.774513 ], [ 111.156921, 0.977736 ], [ 111.796875, 0.906334 ], [ 112.379150, 1.411600 ], [ 112.500000, 1.433566 ], [ 112.719727, 1.474752 ], [ 112.719727, -0.219726 ], [ 109.053040, -0.219726 ], [ 109.017334, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.066772, 1.342956 ], [ 109.662781, 2.007341 ] ] ], [ [ [ 101.030273, 2.095175 ], [ 101.250000, 2.092430 ], [ 101.656494, 2.084196 ], [ 102.496948, 1.400617 ], [ 103.076477, 0.563040 ], [ 103.837280, 0.107117 ], [ 103.785095, 0.000000 ], [ 103.677979, -0.219726 ], [ 101.030273, -0.219726 ], [ 101.030273, 2.095175 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 110.209351, 20.102365 ], [ 110.786133, 20.079150 ], [ 111.008606, 19.696900 ], [ 110.569153, 19.256701 ], [ 110.338440, 18.680073 ], [ 109.473267, 18.198044 ], [ 108.654785, 18.508261 ], [ 108.624573, 19.368159 ], [ 109.118958, 19.823558 ], [ 110.209351, 20.102365 ] ] ], [ [ [ 112.719727, 22.146708 ], [ 112.719727, 21.866597 ], [ 112.500000, 21.787557 ], [ 111.843567, 21.552730 ], [ 110.783386, 21.399377 ], [ 110.442810, 20.342052 ], [ 109.888000, 20.282809 ], [ 109.627075, 21.010163 ], [ 109.863281, 21.396819 ], [ 108.520203, 21.716128 ], [ 108.047791, 21.552730 ], [ 107.042542, 21.813058 ], [ 106.888733, 21.943046 ], [ 106.649780, 22.146708 ], [ 112.719727, 22.146708 ] ] ], [ [ [ 101.672974, 22.146708 ], [ 101.700439, 21.943046 ], [ 101.802063, 21.176729 ], [ 101.269226, 21.202337 ], [ 101.250000, 21.256102 ], [ 101.178589, 21.437730 ], [ 101.148376, 21.851302 ], [ 101.030273, 21.802858 ], [ 101.030273, 22.146708 ], [ 101.672974, 22.146708 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.148376, 21.851302 ], [ 101.178589, 21.437730 ], [ 101.030273, 21.322640 ], [ 101.030273, 21.802858 ], [ 101.148376, 21.851302 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Laos", "sov_a3": "LAO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Laos", "adm0_a3": "LAO", "geou_dif": 0, "geounit": "Laos", "gu_a3": "LAO", "su_dif": 0, "subunit": "Laos", "su_a3": "LAO", "brk_diff": 0, "name": "Lao PDR", "name_long": "Lao PDR", "brk_a3": "LAO", "brk_name": "Laos", "abbrev": "Laos", "postal": "LA", "formal_en": "Lao People's Democratic Republic", "name_sort": "Lao PDR", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 6834942, "gdp_md_est": 13980, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LA", "iso_a3": "LAO", "iso_n3": "418", "un_a3": "418", "wb_a2": "LA", "wb_a3": "LAO", "woe_id": -99, "adm0_a3_is": "LAO", "adm0_a3_us": "LAO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.403564, 22.146708 ], [ 102.554626, 21.943046 ], [ 102.752380, 21.675296 ], [ 103.202820, 20.768955 ], [ 104.433289, 20.761250 ], [ 104.820557, 19.888140 ], [ 104.183350, 19.627066 ], [ 103.894958, 19.267073 ], [ 105.092468, 18.667063 ], [ 105.924683, 17.486911 ], [ 106.553650, 16.604610 ], [ 107.311707, 15.911150 ], [ 107.564392, 15.204687 ], [ 107.380371, 14.203151 ], [ 106.495972, 14.572951 ], [ 106.042786, 13.883412 ], [ 105.216064, 14.275030 ], [ 105.542908, 14.724417 ], [ 105.586853, 15.572774 ], [ 104.776611, 16.443988 ], [ 104.716187, 17.429270 ], [ 103.955383, 18.242395 ], [ 103.200073, 18.310203 ], [ 102.996826, 17.963058 ], [ 102.411804, 17.934316 ], [ 102.112427, 18.109308 ], [ 101.250000, 17.620464 ], [ 101.057739, 17.513106 ], [ 101.035767, 18.409261 ], [ 101.250000, 19.326695 ], [ 101.280212, 19.464003 ], [ 101.250000, 19.466592 ], [ 101.030273, 19.482129 ], [ 101.030273, 21.322640 ], [ 101.178589, 21.437730 ], [ 101.250000, 21.256102 ], [ 101.269226, 21.202337 ], [ 101.802063, 21.176729 ], [ 101.700439, 21.943046 ], [ 101.672974, 22.146708 ], [ 102.403564, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.030273, 19.482129 ], [ 101.250000, 19.466592 ], [ 101.280212, 19.464003 ], [ 101.250000, 19.326695 ], [ 101.035767, 18.409261 ], [ 101.057739, 17.513106 ], [ 101.250000, 17.620464 ], [ 102.112427, 18.109308 ], [ 102.411804, 17.934316 ], [ 102.996826, 17.963058 ], [ 103.200073, 18.310203 ], [ 103.955383, 18.242395 ], [ 104.716187, 17.429270 ], [ 104.776611, 16.443988 ], [ 105.586853, 15.572774 ], [ 105.542908, 14.724417 ], [ 105.216064, 14.275030 ], [ 104.279480, 14.418720 ], [ 102.985840, 14.227113 ], [ 102.345886, 13.394963 ], [ 102.584839, 12.187019 ], [ 101.686707, 12.648378 ], [ 101.250000, 12.637658 ], [ 101.030273, 12.632298 ], [ 101.030273, 19.482129 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Vietnam", "sov_a3": "VNM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vietnam", "adm0_a3": "VNM", "geou_dif": 0, "geounit": "Vietnam", "gu_a3": "VNM", "su_dif": 0, "subunit": "Vietnam", "su_a3": "VNM", "brk_diff": 0, "name": "Vietnam", "name_long": "Vietnam", "brk_a3": "VNM", "brk_name": "Vietnam", "abbrev": "Viet.", "postal": "VN", "formal_en": "Socialist Republic of Vietnam", "name_sort": "Vietnam", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 86967524, "gdp_md_est": 241700, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VN", "iso_a3": "VNM", "iso_n3": "704", "un_a3": "704", "wb_a2": "VN", "wb_a3": "VNM", "woe_id": -99, "adm0_a3_is": "VNM", "adm0_a3_us": "VNM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.649780, 22.146708 ], [ 106.888733, 21.943046 ], [ 107.042542, 21.813058 ], [ 108.047791, 21.552730 ], [ 106.712952, 20.697031 ], [ 105.880737, 19.753779 ], [ 105.661011, 19.059522 ], [ 107.361145, 16.699340 ], [ 108.267517, 16.080125 ], [ 108.874512, 15.278886 ], [ 109.333191, 13.427024 ], [ 109.198608, 11.668376 ], [ 108.580627, 11.178402 ], [ 108.363647, 11.008601 ], [ 108.283997, 10.962764 ], [ 106.248779, 10.962764 ], [ 106.092224, 11.178402 ], [ 105.809326, 11.568835 ], [ 107.490234, 12.337319 ], [ 107.613831, 13.536530 ], [ 107.380371, 14.203151 ], [ 107.564392, 15.204687 ], [ 107.311707, 15.911150 ], [ 106.553650, 16.604610 ], [ 105.924683, 17.486911 ], [ 105.092468, 18.667063 ], [ 103.894958, 19.267073 ], [ 104.183350, 19.627066 ], [ 104.820557, 19.888140 ], [ 104.433289, 20.761250 ], [ 103.202820, 20.768955 ], [ 102.752380, 21.675296 ], [ 102.554626, 21.943046 ], [ 102.403564, 22.146708 ], [ 106.649780, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cambodia", "sov_a3": "KHM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cambodia", "adm0_a3": "KHM", "geou_dif": 0, "geounit": "Cambodia", "gu_a3": "KHM", "su_dif": 0, "subunit": "Cambodia", "su_a3": "KHM", "brk_diff": 0, "name": "Cambodia", "name_long": "Cambodia", "brk_a3": "KHM", "brk_name": "Cambodia", "abbrev": "Camb.", "postal": "KH", "formal_en": "Kingdom of Cambodia", "name_sort": "Cambodia", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 5, "pop_est": 14494293, "gdp_md_est": 27940, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KH", "iso_a3": "KHM", "iso_n3": "116", "un_a3": "116", "wb_a2": "KH", "wb_a3": "KHM", "woe_id": -99, "adm0_a3_is": "KHM", "adm0_a3_us": "KHM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.495972, 14.572951 ], [ 107.380371, 14.203151 ], [ 107.613831, 13.536530 ], [ 107.490234, 12.337319 ], [ 105.809326, 11.568835 ], [ 106.092224, 11.178402 ], [ 106.248779, 10.962764 ], [ 103.238525, 10.962764 ], [ 103.090210, 11.154151 ], [ 103.076477, 11.178402 ], [ 102.584839, 12.187019 ], [ 102.345886, 13.394963 ], [ 102.985840, 14.227113 ], [ 104.279480, 14.418720 ], [ 105.216064, 14.275030 ], [ 106.042786, 13.883412 ], [ 106.495972, 14.572951 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 112.719727, 32.138409 ], [ 112.719727, 21.866597 ], [ 112.368164, 21.739091 ], [ 107.325439, 21.739091 ], [ 107.042542, 21.813058 ], [ 106.888733, 21.943046 ], [ 106.564636, 22.220463 ], [ 106.723938, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.328674, 23.352343 ], [ 104.474487, 22.819226 ], [ 103.502197, 22.705255 ], [ 102.705688, 22.710323 ], [ 102.170105, 22.466878 ], [ 101.651001, 22.319589 ], [ 101.700439, 21.943046 ], [ 101.727905, 21.739091 ], [ 101.156616, 21.739091 ], [ 101.148376, 21.851302 ], [ 101.030273, 21.802858 ], [ 101.030273, 32.138409 ], [ 112.719727, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.148376, 21.851302 ], [ 101.156616, 21.739091 ], [ 101.030273, 21.739091 ], [ 101.030273, 21.802858 ], [ 101.148376, 21.851302 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Laos", "sov_a3": "LAO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Laos", "adm0_a3": "LAO", "geou_dif": 0, "geounit": "Laos", "gu_a3": "LAO", "su_dif": 0, "subunit": "Laos", "su_a3": "LAO", "brk_diff": 0, "name": "Lao PDR", "name_long": "Lao PDR", "brk_a3": "LAO", "brk_name": "Laos", "abbrev": "Laos", "postal": "LA", "formal_en": "Lao People's Democratic Republic", "name_sort": "Lao PDR", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 6834942, "gdp_md_est": 13980, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LA", "iso_a3": "LAO", "iso_n3": "418", "un_a3": "418", "wb_a2": "LA", "wb_a3": "LAO", "woe_id": -99, "adm0_a3_is": "LAO", "adm0_a3_us": "LAO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.170105, 22.466878 ], [ 102.554626, 21.943046 ], [ 102.705688, 21.739091 ], [ 101.727905, 21.739091 ], [ 101.700439, 21.943046 ], [ 101.651001, 22.319589 ], [ 102.170105, 22.466878 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Vietnam", "sov_a3": "VNM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vietnam", "adm0_a3": "VNM", "geou_dif": 0, "geounit": "Vietnam", "gu_a3": "VNM", "su_dif": 0, "subunit": "Vietnam", "su_a3": "VNM", "brk_diff": 0, "name": "Vietnam", "name_long": "Vietnam", "brk_a3": "VNM", "brk_name": "Vietnam", "abbrev": "Viet.", "postal": "VN", "formal_en": "Socialist Republic of Vietnam", "name_sort": "Vietnam", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 86967524, "gdp_md_est": 241700, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VN", "iso_a3": "VNM", "iso_n3": "704", "un_a3": "704", "wb_a2": "VN", "wb_a3": "VNM", "woe_id": -99, "adm0_a3_is": "VNM", "adm0_a3_us": "VNM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.328674, 23.352343 ], [ 105.809326, 22.978624 ], [ 106.723938, 22.796439 ], [ 106.564636, 22.220463 ], [ 106.888733, 21.943046 ], [ 107.042542, 21.813058 ], [ 107.325439, 21.739091 ], [ 102.705688, 21.739091 ], [ 102.554626, 21.943046 ], [ 102.170105, 22.466878 ], [ 102.705688, 22.710323 ], [ 103.502197, 22.705255 ], [ 104.474487, 22.819226 ], [ 105.328674, 23.352343 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 112.719727, 41.145570 ], [ 112.719727, 31.765537 ], [ 101.030273, 31.765537 ], [ 101.030273, 41.145570 ], [ 112.719727, 41.145570 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.719727, 49.066668 ], [ 112.719727, 44.957024 ], [ 112.500000, 44.999767 ], [ 112.434082, 45.013360 ], [ 111.871033, 45.102608 ], [ 111.346436, 44.459270 ], [ 111.665039, 44.073774 ], [ 111.827087, 43.743321 ], [ 111.129456, 43.407043 ], [ 110.409851, 42.871938 ], [ 109.242554, 42.520700 ], [ 107.742920, 42.482226 ], [ 106.127930, 42.134895 ], [ 104.963379, 41.599013 ], [ 104.521179, 41.908409 ], [ 103.309937, 41.908409 ], [ 101.832275, 42.516651 ], [ 101.250000, 42.603642 ], [ 101.030273, 42.638000 ], [ 101.030273, 49.066668 ], [ 112.719727, 49.066668 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 111.871033, 45.102608 ], [ 112.434082, 45.013360 ], [ 112.500000, 44.999767 ], [ 112.719727, 44.957024 ], [ 112.719727, 40.813809 ], [ 101.030273, 40.813809 ], [ 101.030273, 42.638000 ], [ 101.250000, 42.603642 ], [ 101.832275, 42.516651 ], [ 103.309937, 41.908409 ], [ 104.521179, 41.908409 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.134895 ], [ 107.742920, 42.482226 ], [ 109.242554, 42.520700 ], [ 110.409851, 42.871938 ], [ 111.129456, 43.407043 ], [ 111.827087, 43.743321 ], [ 111.665039, 44.073774 ], [ 111.346436, 44.459270 ], [ 111.871033, 45.102608 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 112.719727, 55.899956 ], [ 112.719727, 49.521643 ], [ 112.500000, 49.494891 ], [ 111.579895, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.294680 ], [ 108.473511, 49.283932 ], [ 107.866516, 49.795450 ], [ 106.888733, 50.275299 ], [ 105.886230, 50.406767 ], [ 104.620056, 50.277054 ], [ 103.675232, 50.090631 ], [ 102.255249, 50.511680 ], [ 102.062988, 51.260196 ], [ 101.250000, 51.438601 ], [ 101.030273, 51.486514 ], [ 101.030273, 55.899956 ], [ 112.719727, 55.899956 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.030273, 51.486514 ], [ 101.250000, 51.438601 ], [ 102.062988, 51.260196 ], [ 102.255249, 50.511680 ], [ 103.675232, 50.090631 ], [ 104.620056, 50.277054 ], [ 105.886230, 50.406767 ], [ 106.888733, 50.275299 ], [ 107.866516, 49.795450 ], [ 108.473511, 49.283932 ], [ 109.401855, 49.294680 ], [ 110.659790, 49.131408 ], [ 111.579895, 49.378797 ], [ 112.500000, 49.494891 ], [ 112.719727, 49.521643 ], [ 112.719727, 48.777913 ], [ 101.030273, 48.777913 ], [ 101.030273, 51.486514 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 112.719727, 61.710706 ], [ 112.719727, 55.652798 ], [ 101.030273, 55.652798 ], [ 101.030273, 61.710706 ], [ 112.719727, 61.710706 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 112.719727, 66.600676 ], [ 112.719727, 61.501734 ], [ 101.030273, 61.501734 ], [ 101.030273, 66.600676 ], [ 112.719727, 66.600676 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 112.719727, 70.685421 ], [ 112.719727, 66.425537 ], [ 101.030273, 66.425537 ], [ 101.030273, 70.685421 ], [ 112.719727, 70.685421 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 110.286255, 74.079925 ], [ 110.637817, 74.040702 ], [ 110.758667, 74.019543 ], [ 112.118225, 73.788054 ], [ 112.500000, 73.868376 ], [ 112.719727, 73.914861 ], [ 112.719727, 70.539543 ], [ 101.030273, 70.539543 ], [ 101.030273, 74.079925 ], [ 110.286255, 74.079925 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 107.015076, 76.890745 ], [ 107.042542, 76.840816 ], [ 107.237549, 76.480268 ], [ 108.152161, 76.723377 ], [ 111.074524, 76.710125 ], [ 112.500000, 76.404292 ], [ 112.719727, 76.356432 ], [ 112.719727, 75.019856 ], [ 112.500000, 74.974352 ], [ 110.148926, 74.477314 ], [ 109.399109, 74.180566 ], [ 110.637817, 74.040702 ], [ 110.758667, 74.019543 ], [ 111.115723, 73.958939 ], [ 101.030273, 73.958939 ], [ 101.030273, 76.854565 ], [ 101.033020, 76.862059 ], [ 101.098938, 76.890745 ], [ 107.015076, 76.890745 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 104.350891, 77.698138 ], [ 106.064758, 77.373904 ], [ 104.702454, 77.127825 ], [ 106.968384, 76.974579 ], [ 107.042542, 76.840816 ], [ 107.070007, 76.790701 ], [ 101.030273, 76.790701 ], [ 101.030273, 76.854565 ], [ 101.033020, 76.862059 ], [ 101.250000, 76.959094 ], [ 101.988831, 77.287763 ], [ 104.350891, 77.698138 ] ] ], [ [ [ 103.150635, 79.212538 ], [ 103.337402, 79.171335 ], [ 105.369873, 78.713629 ], [ 105.073242, 78.307182 ], [ 101.250000, 78.046640 ], [ 101.030273, 78.031271 ], [ 101.030273, 79.073895 ], [ 101.230774, 79.212538 ], [ 103.150635, 79.212538 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 102.084961, 79.346904 ], [ 102.837524, 79.281717 ], [ 103.337402, 79.171335 ], [ 103.524170, 79.129976 ], [ 101.109924, 79.129976 ], [ 101.250000, 79.224355 ], [ 101.263733, 79.234107 ], [ 102.084961, 79.346904 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 123.969727, -83.956169 ], [ 123.969727, -85.070048 ], [ 112.280273, -85.070048 ], [ 112.280273, -83.956169 ], [ 123.969727, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 123.969727, -82.648222 ], [ 123.969727, -84.002262 ], [ 112.280273, -84.002262 ], [ 112.280273, -82.648222 ], [ 123.969727, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 123.969727, -81.059130 ], [ 123.969727, -82.704241 ], [ 112.280273, -82.704241 ], [ 112.280273, -81.059130 ], [ 123.969727, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 123.969727, -79.129976 ], [ 123.969727, -81.127169 ], [ 112.280273, -81.127169 ], [ 112.280273, -79.129976 ], [ 123.969727, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 123.969727, -76.790701 ], [ 123.969727, -79.212538 ], [ 112.280273, -79.212538 ], [ 112.280273, -76.790701 ], [ 123.969727, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 123.969727, -73.958939 ], [ 123.969727, -76.890745 ], [ 112.280273, -76.890745 ], [ 112.280273, -73.958939 ], [ 123.969727, -73.958939 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 123.969727, -70.539543 ], [ 123.969727, -74.079925 ], [ 112.280273, -74.079925 ], [ 112.280273, -70.539543 ], [ 123.969727, -70.539543 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 24 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 114.982910, -66.425537 ], [ 115.180664, -66.513260 ], [ 115.600891, -66.699737 ], [ 116.696777, -66.660596 ], [ 117.383423, -66.914988 ], [ 118.578186, -67.169955 ], [ 119.830627, -67.267798 ], [ 120.868835, -67.189129 ], [ 121.654358, -66.875109 ], [ 122.319031, -66.562469 ], [ 122.887573, -66.513260 ], [ 123.219910, -66.483688 ], [ 123.409424, -66.513260 ], [ 123.750000, -66.564654 ], [ 123.969727, -66.597403 ], [ 123.969727, -70.685421 ], [ 112.280273, -70.685421 ], [ 112.280273, -66.425537 ], [ 114.982910, -66.425537 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 23 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 113.604126, -65.875847 ], [ 114.386902, -66.072660 ], [ 114.895020, -66.385961 ], [ 115.180664, -66.513260 ], [ 115.378418, -66.600676 ], [ 112.280273, -66.600676 ], [ 112.280273, -66.112731 ], [ 112.500000, -66.104945 ], [ 112.859802, -66.091591 ], [ 113.604126, -65.875847 ] ] ], [ [ [ 123.409424, -66.513260 ], [ 123.969727, -66.597403 ], [ 123.969727, -66.600676 ], [ 122.239380, -66.600676 ], [ 122.319031, -66.562469 ], [ 122.887573, -66.513260 ], [ 123.219910, -66.483688 ], [ 123.409424, -66.513260 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 19 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.969727, -31.765537 ], [ 123.969727, -33.548262 ], [ 123.750000, -33.790561 ], [ 123.659363, -33.888658 ], [ 122.810669, -33.913734 ], [ 122.181702, -34.002581 ], [ 121.297302, -33.820230 ], [ 120.577698, -33.929688 ], [ 119.891052, -33.975253 ], [ 119.297791, -34.508820 ], [ 119.006653, -34.463542 ], [ 118.504028, -34.746126 ], [ 118.023376, -35.063725 ], [ 117.292786, -35.023249 ], [ 116.622620, -35.023249 ], [ 115.562439, -34.384246 ], [ 115.024109, -34.195901 ], [ 115.046082, -33.621481 ], [ 115.543213, -33.486435 ], [ 115.713501, -33.259360 ], [ 115.677795, -32.900344 ], [ 115.801392, -32.203505 ], [ 115.751953, -31.952162 ], [ 115.716248, -31.765537 ], [ 123.969727, -31.765537 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 18 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.969727, -21.739091 ], [ 123.969727, -32.138409 ], [ 115.787659, -32.138409 ], [ 115.751953, -31.952162 ], [ 115.688782, -31.611288 ], [ 115.158691, -30.600094 ], [ 114.996643, -30.028678 ], [ 115.037842, -29.458731 ], [ 114.639587, -28.808580 ], [ 114.614868, -28.514556 ], [ 114.172668, -28.118016 ], [ 114.046326, -27.332735 ], [ 113.475037, -26.541851 ], [ 113.337708, -26.115986 ], [ 113.777161, -26.546766 ], [ 113.439331, -25.619239 ], [ 113.936462, -25.911115 ], [ 114.230347, -26.298340 ], [ 114.213867, -25.785053 ], [ 113.719482, -24.998505 ], [ 113.623352, -24.681961 ], [ 113.392639, -24.384626 ], [ 113.499756, -23.805450 ], [ 113.705750, -23.558952 ], [ 113.843079, -23.059516 ], [ 113.735962, -22.474493 ], [ 114.040833, -21.943046 ], [ 114.147949, -21.754398 ], [ 114.167175, -21.943046 ], [ 114.224854, -22.515094 ], [ 114.576416, -21.943046 ], [ 114.645081, -21.828357 ], [ 114.867554, -21.739091 ], [ 123.969727, -21.739091 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 17 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.147949, -21.754398 ], [ 114.167175, -21.943046 ], [ 114.186401, -22.146708 ], [ 113.925476, -22.146708 ], [ 114.040833, -21.943046 ], [ 114.147949, -21.754398 ] ] ], [ [ [ 123.969727, -16.185662 ], [ 123.969727, -22.146708 ], [ 114.452820, -22.146708 ], [ 114.576416, -21.943046 ], [ 114.645081, -21.828357 ], [ 115.458069, -21.493964 ], [ 115.946960, -21.066560 ], [ 116.710510, -20.699600 ], [ 117.163696, -20.622502 ], [ 117.441101, -20.745840 ], [ 118.229370, -20.372952 ], [ 118.833618, -20.262197 ], [ 118.987427, -20.043031 ], [ 119.251099, -19.952696 ], [ 119.803162, -19.975930 ], [ 120.855103, -19.681384 ], [ 121.398926, -19.238550 ], [ 121.654358, -18.703489 ], [ 122.239380, -18.195434 ], [ 122.286072, -17.798381 ], [ 122.310791, -17.253613 ], [ 123.011169, -16.404470 ], [ 123.431396, -17.266728 ], [ 123.750000, -17.119793 ], [ 123.857117, -17.067287 ], [ 123.750000, -16.922822 ], [ 123.502808, -16.594081 ], [ 123.750000, -16.214675 ], [ 123.815918, -16.109153 ], [ 123.969727, -16.185662 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 16 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 123.969727, -9.302728 ], [ 123.969727, -10.258168 ], [ 123.750000, -10.314919 ], [ 123.579712, -10.358151 ], [ 123.458862, -10.239249 ], [ 123.549500, -9.898510 ], [ 123.750000, -9.614290 ], [ 123.969727, -9.302728 ] ] ], [ [ [ 119.899292, -9.359643 ], [ 120.423889, -9.665738 ], [ 120.775452, -9.968851 ], [ 120.715027, -10.239249 ], [ 120.294800, -10.258168 ], [ 118.965454, -9.557417 ], [ 119.899292, -9.359643 ] ] ], [ [ [ 117.899780, -8.094581 ], [ 118.259583, -8.360975 ], [ 118.877563, -8.279445 ], [ 119.124756, -8.703214 ], [ 117.968445, -8.904067 ], [ 117.276306, -9.039715 ], [ 116.737976, -9.031578 ], [ 117.081299, -8.456072 ], [ 117.630615, -8.447922 ], [ 117.899780, -8.094581 ] ] ], [ [ [ 122.901306, -8.091862 ], [ 122.755737, -8.648911 ], [ 121.253357, -8.931200 ], [ 119.924011, -8.809082 ], [ 119.918518, -8.442488 ], [ 120.715027, -8.235955 ], [ 121.341248, -8.534849 ], [ 122.005920, -8.458789 ], [ 122.901306, -8.091862 ] ] ], [ [ [ 112.280273, -6.858259 ], [ 112.500000, -6.915521 ], [ 112.612610, -6.945512 ], [ 112.977905, -7.593940 ], [ 114.477539, -7.776309 ], [ 115.705261, -8.369127 ], [ 114.562683, -8.749366 ], [ 113.464050, -8.347388 ], [ 112.557678, -8.374562 ], [ 112.500000, -8.371845 ], [ 112.280273, -8.355540 ], [ 112.280273, -6.858259 ] ] ], [ [ [ 120.179443, 0.219726 ], [ 120.138245, 0.000000 ], [ 120.039368, -0.519097 ], [ 120.934753, -1.408855 ], [ 121.473083, -0.955766 ], [ 123.338013, -0.615223 ], [ 123.258362, -1.073851 ], [ 122.821655, -0.928304 ], [ 122.387695, -1.515936 ], [ 121.506042, -1.903031 ], [ 122.453613, -3.184394 ], [ 122.269592, -3.527128 ], [ 123.170471, -4.683192 ], [ 123.162231, -5.339848 ], [ 122.626648, -5.632386 ], [ 122.233887, -5.282418 ], [ 122.717285, -4.464165 ], [ 121.736755, -4.850154 ], [ 121.486816, -4.573687 ], [ 121.618652, -4.187551 ], [ 120.896301, -3.601142 ], [ 120.970459, -2.627558 ], [ 120.303040, -2.929326 ], [ 120.388184, -4.097151 ], [ 120.429382, -5.525777 ], [ 119.794922, -5.673384 ], [ 119.366455, -5.378132 ], [ 119.652100, -4.458689 ], [ 119.498291, -3.494231 ], [ 119.078064, -3.486006 ], [ 118.767700, -2.800398 ], [ 119.179688, -2.144580 ], [ 119.322510, -1.351193 ], [ 119.825134, 0.156555 ], [ 119.858093, 0.219726 ], [ 120.179443, 0.219726 ] ] ], [ [ [ 117.534485, 0.219726 ], [ 117.476807, 0.104370 ], [ 117.482300, 0.000000 ], [ 117.520752, -0.801976 ], [ 116.559448, -1.485734 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.012220 ], [ 115.999146, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.494231 ], [ 113.755188, -3.436658 ], [ 113.255310, -3.118576 ], [ 112.500000, -3.346180 ], [ 112.280273, -3.411983 ], [ 112.280273, 0.219726 ], [ 117.534485, 0.219726 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.127991, 6.929153 ], [ 117.641602, 6.424484 ], [ 117.688293, 5.987607 ], [ 118.347473, 5.708914 ], [ 119.179688, 5.408211 ], [ 119.108276, 5.017075 ], [ 118.438110, 4.967824 ], [ 118.616638, 4.480595 ], [ 117.880554, 4.138243 ], [ 117.012634, 4.308069 ], [ 115.864563, 4.308069 ], [ 115.518494, 3.170683 ], [ 115.133972, 2.822344 ], [ 114.620361, 1.430820 ], [ 113.804626, 1.219390 ], [ 112.859802, 1.499463 ], [ 112.500000, 1.433566 ], [ 112.379150, 1.411600 ], [ 112.280273, 1.323735 ], [ 112.280273, 2.973213 ], [ 112.500000, 3.014356 ], [ 112.994385, 3.104864 ], [ 113.711243, 3.894398 ], [ 114.202881, 4.527142 ], [ 114.658813, 4.009480 ], [ 114.867554, 4.349150 ], [ 115.345459, 4.319024 ], [ 115.449829, 5.449225 ], [ 116.218872, 6.143286 ], [ 116.724243, 6.926427 ], [ 117.127991, 6.929153 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Philippines", "sov_a3": "PHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Philippines", "adm0_a3": "PHL", "geou_dif": 0, "geounit": "Philippines", "gu_a3": "PHL", "su_dif": 0, "subunit": "Philippines", "su_a3": "PHL", "brk_diff": 0, "name": "Philippines", "name_long": "Philippines", "brk_a3": "PHL", "brk_name": "Philippines", "abbrev": "Phil.", "postal": "PH", "formal_en": "Republic of the Philippines", "name_sort": "Philippines", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 97976603, "gdp_md_est": 317500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PH", "iso_a3": "PHL", "iso_n3": "608", "un_a3": "608", "wb_a2": "PH", "wb_a3": "PHL", "woe_id": -99, "adm0_a3_is": "PHL", "adm0_a3_us": "PHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 123.969727, 7.566715 ], [ 123.750000, 7.730043 ], [ 123.609924, 7.836173 ], [ 123.294067, 7.419666 ], [ 122.824402, 7.457794 ], [ 122.082825, 6.901887 ], [ 121.918030, 7.193551 ], [ 122.310791, 8.037473 ], [ 122.939758, 8.317495 ], [ 123.486328, 8.695069 ], [ 123.750000, 8.358258 ], [ 123.840637, 8.241392 ], [ 123.969727, 8.287599 ], [ 123.969727, 7.566715 ] ] ], [ [ [ 119.509277, 11.372339 ], [ 119.553223, 11.178402 ], [ 119.687805, 10.555322 ], [ 119.028625, 10.004015 ], [ 118.504028, 9.318990 ], [ 117.171936, 8.369127 ], [ 117.663574, 9.069551 ], [ 118.385925, 9.684691 ], [ 118.984680, 10.377064 ], [ 119.410400, 11.178402 ], [ 119.509277, 11.372339 ] ] ], [ [ [ 123.969727, 11.092166 ], [ 123.969727, 10.268979 ], [ 123.750000, 10.066220 ], [ 123.620911, 9.952620 ], [ 123.307800, 9.318990 ], [ 122.994690, 9.023440 ], [ 122.379456, 9.714472 ], [ 122.585449, 9.982376 ], [ 122.835388, 10.263573 ], [ 122.945251, 10.884557 ], [ 123.497314, 10.941192 ], [ 123.335266, 10.268979 ], [ 123.750000, 10.806328 ], [ 123.969727, 11.092166 ] ] ], [ [ [ 123.110046, 11.393879 ], [ 123.099060, 11.178402 ], [ 123.099060, 11.167624 ], [ 122.637634, 10.741572 ], [ 122.000427, 10.441897 ], [ 121.964722, 10.906133 ], [ 122.003174, 11.178402 ], [ 122.033386, 11.393879 ], [ 123.110046, 11.393879 ] ] ], [ [ [ 123.969727, 6.934606 ], [ 123.969727, 6.806444 ], [ 123.936768, 6.885527 ], [ 123.969727, 6.934606 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Brunei", "sov_a3": "BRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brunei", "adm0_a3": "BRN", "geou_dif": 0, "geounit": "Brunei", "gu_a3": "BRN", "su_dif": 0, "subunit": "Brunei", "su_a3": "BRN", "brk_diff": 0, "name": "Brunei", "name_long": "Brunei Darussalam", "brk_a3": "BRN", "brk_name": "Brunei", "abbrev": "Brunei", "postal": "BN", "formal_en": "Negara Brunei Darussalam", "name_sort": "Brunei", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 12, "pop_est": 388190, "gdp_md_est": 20250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BN", "iso_a3": "BRN", "iso_n3": "096", "un_a3": "096", "wb_a2": "BN", "wb_a3": "BRN", "woe_id": -99, "adm0_a3_is": "BRN", "adm0_a3_us": "BRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 17, "abbrev_len": 6, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.449829, 5.449225 ], [ 115.345459, 4.319024 ], [ 114.867554, 4.349150 ], [ 114.658813, 4.009480 ], [ 114.202881, 4.527142 ], [ 114.598389, 4.902150 ], [ 115.449829, 5.449225 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 120.885315, 1.310005 ], [ 121.665344, 1.016182 ], [ 122.926025, 0.876126 ], [ 123.750000, 0.906334 ], [ 123.969727, 0.914573 ], [ 123.969727, 0.310362 ], [ 123.750000, 0.252685 ], [ 123.684082, 0.236205 ], [ 122.722778, 0.431209 ], [ 121.055603, 0.381772 ], [ 120.182190, 0.238952 ], [ 120.138245, 0.000000 ], [ 120.097046, -0.219726 ], [ 119.698792, -0.219726 ], [ 119.772949, 0.000000 ], [ 119.825134, 0.156555 ], [ 120.033875, 0.568533 ], [ 120.885315, 1.310005 ] ] ], [ [ [ 117.012634, 4.308069 ], [ 117.880554, 4.138243 ], [ 117.312012, 3.236498 ], [ 118.048096, 2.290039 ], [ 117.875061, 1.828913 ], [ 118.995667, 0.903588 ], [ 117.809143, 0.785498 ], [ 117.476807, 0.104370 ], [ 117.482300, 0.000000 ], [ 117.493286, -0.219726 ], [ 112.280273, -0.219726 ], [ 112.280273, 1.323735 ], [ 112.379150, 1.411600 ], [ 112.500000, 1.433566 ], [ 112.859802, 1.499463 ], [ 113.804626, 1.219390 ], [ 114.620361, 1.430820 ], [ 115.133972, 2.822344 ], [ 115.518494, 3.170683 ], [ 115.864563, 4.308069 ], [ 117.012634, 4.308069 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 113.348694, 22.146708 ], [ 113.238831, 22.052550 ], [ 112.936707, 21.943046 ], [ 112.500000, 21.787557 ], [ 112.280273, 21.708473 ], [ 112.280273, 22.146708 ], [ 113.348694, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Taiwan", "sov_a3": "TWN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Taiwan", "adm0_a3": "TWN", "geou_dif": 0, "geounit": "Taiwan", "gu_a3": "TWN", "su_dif": 0, "subunit": "Taiwan", "su_a3": "TWN", "brk_diff": 1, "name": "Taiwan", "name_long": "Taiwan", "brk_a3": "B77", "brk_name": "Taiwan", "abbrev": "Taiwan", "postal": "TW", "note_brk": "Self admin.; Claimed by China", "name_sort": "Taiwan", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 22974347, "gdp_md_est": 712000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TW", "iso_a3": "TWN", "iso_n3": "158", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "TWN", "adm0_a3_us": "TWN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 120.838623, 22.146708 ], [ 120.745239, 21.971066 ], [ 120.635376, 22.146708 ], [ 120.838623, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Philippines", "sov_a3": "PHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Philippines", "adm0_a3": "PHL", "geou_dif": 0, "geounit": "Philippines", "gu_a3": "PHL", "su_dif": 0, "subunit": "Philippines", "su_a3": "PHL", "brk_diff": 0, "name": "Philippines", "name_long": "Philippines", "brk_a3": "PHL", "brk_name": "Philippines", "abbrev": "Phil.", "postal": "PH", "formal_en": "Republic of the Philippines", "name_sort": "Philippines", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 97976603, "gdp_md_est": 317500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PH", "iso_a3": "PHL", "iso_n3": "608", "un_a3": "608", "wb_a2": "PH", "wb_a3": "PHL", "woe_id": -99, "adm0_a3_is": "PHL", "adm0_a3_us": "PHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 123.969727, 11.092166 ], [ 123.969727, 10.962764 ], [ 123.868103, 10.962764 ], [ 123.969727, 11.092166 ] ] ], [ [ [ 119.509277, 11.372339 ], [ 119.553223, 11.178402 ], [ 119.599915, 10.962764 ], [ 119.295044, 10.962764 ], [ 119.410400, 11.178402 ], [ 119.509277, 11.372339 ] ] ], [ [ [ 121.882324, 11.894228 ], [ 122.481079, 11.582288 ], [ 123.118286, 11.584979 ], [ 123.099060, 11.178402 ], [ 123.099060, 11.167624 ], [ 122.876587, 10.962764 ], [ 121.972961, 10.962764 ], [ 122.003174, 11.178402 ], [ 122.036133, 11.418110 ], [ 121.882324, 11.894228 ] ] ], [ [ [ 120.322266, 13.467093 ], [ 121.179199, 13.432367 ], [ 121.525269, 13.071452 ], [ 121.261597, 12.205811 ], [ 120.833130, 12.704651 ], [ 120.322266, 13.467093 ] ] ], [ [ [ 121.319275, 18.505657 ], [ 121.937256, 18.218916 ], [ 122.244873, 18.479609 ], [ 122.335510, 18.226743 ], [ 122.173462, 17.811456 ], [ 122.514038, 17.093542 ], [ 122.250366, 16.264777 ], [ 121.662598, 15.932279 ], [ 121.503296, 15.125159 ], [ 121.728516, 14.330921 ], [ 122.258606, 14.219126 ], [ 122.700806, 14.338904 ], [ 123.750000, 13.872747 ], [ 123.947754, 13.784737 ], [ 123.854370, 13.239945 ], [ 123.969727, 13.154376 ], [ 123.969727, 12.605496 ], [ 123.750000, 12.744837 ], [ 123.296814, 13.028642 ], [ 122.926025, 13.555222 ], [ 122.670593, 13.186468 ], [ 122.033386, 13.784737 ], [ 121.124268, 13.637980 ], [ 120.627136, 13.859414 ], [ 120.679321, 14.272369 ], [ 120.989685, 14.527756 ], [ 120.693054, 14.758947 ], [ 120.563965, 14.397439 ], [ 120.069580, 14.971320 ], [ 119.918518, 15.408672 ], [ 119.882812, 16.364945 ], [ 120.283813, 16.035255 ], [ 120.388184, 17.599521 ], [ 120.715027, 18.505657 ], [ 121.319275, 18.505657 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 121.514282, 32.138409 ], [ 121.676331, 31.952162 ], [ 121.907043, 31.693119 ], [ 121.890564, 30.951702 ], [ 121.261597, 30.678078 ], [ 121.503296, 30.145127 ], [ 122.091064, 29.833496 ], [ 121.937256, 29.020150 ], [ 121.681824, 28.226970 ], [ 121.124268, 28.137394 ], [ 120.393677, 27.054234 ], [ 119.583435, 25.743003 ], [ 118.655090, 24.549622 ], [ 117.279053, 23.626911 ], [ 115.889282, 22.783779 ], [ 114.763184, 22.669779 ], [ 114.150696, 22.225548 ], [ 113.804626, 22.550611 ], [ 113.238831, 22.052550 ], [ 112.936707, 21.943046 ], [ 112.368164, 21.739091 ], [ 112.280273, 21.739091 ], [ 112.280273, 32.138409 ], [ 121.514282, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Taiwan", "sov_a3": "TWN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Taiwan", "adm0_a3": "TWN", "geou_dif": 0, "geounit": "Taiwan", "gu_a3": "TWN", "su_dif": 0, "subunit": "Taiwan", "su_a3": "TWN", "brk_diff": 1, "name": "Taiwan", "name_long": "Taiwan", "brk_a3": "B77", "brk_name": "Taiwan", "abbrev": "Taiwan", "postal": "TW", "note_brk": "Self admin.; Claimed by China", "name_sort": "Taiwan", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 22974347, "gdp_md_est": 712000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TW", "iso_a3": "TWN", "iso_n3": "158", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "TWN", "adm0_a3_us": "TWN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.492310, 25.296854 ], [ 121.950989, 24.998505 ], [ 121.775208, 24.394632 ], [ 121.173706, 22.791375 ], [ 120.745239, 21.971066 ], [ 120.217896, 22.816694 ], [ 120.105286, 23.556434 ], [ 120.693054, 24.539628 ], [ 121.492310, 25.296854 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 123.969727, 41.145570 ], [ 123.969727, 39.867588 ], [ 123.750000, 39.823304 ], [ 122.865601, 39.639538 ], [ 122.129517, 39.170529 ], [ 121.052856, 38.899583 ], [ 121.585693, 39.361909 ], [ 121.374207, 39.751545 ], [ 122.167969, 40.423951 ], [ 121.637878, 40.946714 ], [ 120.767212, 40.595185 ], [ 119.638367, 39.899202 ], [ 119.023132, 39.253525 ], [ 118.042603, 39.204591 ], [ 117.531738, 38.739088 ], [ 118.059082, 38.063230 ], [ 118.877563, 37.898698 ], [ 118.910522, 37.448697 ], [ 119.701538, 37.158128 ], [ 120.822144, 37.870517 ], [ 121.709290, 37.481397 ], [ 122.357483, 37.455238 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.652996 ], [ 120.635376, 36.113471 ], [ 119.663086, 35.610418 ], [ 119.149475, 34.910710 ], [ 120.226135, 34.361576 ], [ 120.618896, 33.378706 ], [ 121.228638, 32.461109 ], [ 121.676331, 31.952162 ], [ 121.841125, 31.765537 ], [ 112.280273, 31.765537 ], [ 112.280273, 41.145570 ], [ 123.969727, 41.145570 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.141968, 49.066668 ], [ 116.040344, 48.922499 ], [ 115.482788, 48.136767 ], [ 115.740967, 47.728240 ], [ 116.306763, 47.853717 ], [ 117.292786, 47.698672 ], [ 118.061829, 48.067068 ], [ 118.863831, 47.748558 ], [ 119.770203, 47.049540 ], [ 119.663086, 46.692783 ], [ 118.872070, 46.805700 ], [ 117.419128, 46.673941 ], [ 116.716003, 46.388622 ], [ 115.982666, 45.727274 ], [ 114.458313, 45.340563 ], [ 113.461304, 44.809122 ], [ 112.500000, 44.999767 ], [ 112.434082, 45.013360 ], [ 112.280273, 45.038597 ], [ 112.280273, 49.066668 ], [ 116.141968, 49.066668 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 123.969727, 49.066668 ], [ 123.969727, 40.813809 ], [ 121.772461, 40.813809 ], [ 121.637878, 40.946714 ], [ 121.311035, 40.813809 ], [ 112.280273, 40.813809 ], [ 112.280273, 45.038597 ], [ 112.500000, 44.999767 ], [ 113.461304, 44.809122 ], [ 114.458313, 45.340563 ], [ 115.982666, 45.727274 ], [ 116.716003, 46.388622 ], [ 117.419128, 46.673941 ], [ 118.872070, 46.805700 ], [ 119.663086, 46.692783 ], [ 119.770203, 47.049540 ], [ 118.863831, 47.748558 ], [ 118.061829, 48.067068 ], [ 117.292786, 47.698672 ], [ 116.306763, 47.853717 ], [ 115.740967, 47.728240 ], [ 115.482788, 48.136767 ], [ 116.040344, 48.922499 ], [ 116.141968, 49.066668 ], [ 123.969727, 49.066668 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 123.969727, 55.899956 ], [ 123.969727, 53.380052 ], [ 123.750000, 53.424264 ], [ 123.568726, 53.460255 ], [ 122.244873, 53.432447 ], [ 121.000671, 53.252069 ], [ 120.176697, 52.754581 ], [ 120.723267, 52.517892 ], [ 120.737000, 51.964577 ], [ 120.179443, 51.643590 ], [ 119.278564, 50.583237 ], [ 119.286804, 50.143466 ], [ 117.877808, 49.512727 ], [ 116.677551, 49.889326 ], [ 115.485535, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.248961 ], [ 112.895508, 49.544816 ], [ 112.500000, 49.494891 ], [ 112.280273, 49.466339 ], [ 112.280273, 55.899956 ], [ 123.969727, 55.899956 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 114.362183, 50.248961 ], [ 114.960938, 50.141706 ], [ 115.485535, 49.806087 ], [ 116.677551, 49.889326 ], [ 116.191406, 49.135003 ], [ 116.040344, 48.922499 ], [ 115.935974, 48.777913 ], [ 112.280273, 48.777913 ], [ 112.280273, 49.466339 ], [ 112.500000, 49.494891 ], [ 112.895508, 49.544816 ], [ 114.362183, 50.248961 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 123.571472, 53.460255 ], [ 123.750000, 53.424264 ], [ 123.969727, 53.380052 ], [ 123.969727, 48.777913 ], [ 115.935974, 48.777913 ], [ 116.040344, 48.922499 ], [ 116.191406, 49.135003 ], [ 116.677551, 49.889326 ], [ 117.877808, 49.512727 ], [ 119.286804, 50.143466 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.643590 ], [ 120.737000, 51.964577 ], [ 120.723267, 52.517892 ], [ 120.176697, 52.754581 ], [ 121.000671, 53.252069 ], [ 122.244873, 53.432447 ], [ 123.571472, 53.460255 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 123.969727, 61.710706 ], [ 123.969727, 55.652798 ], [ 112.280273, 55.652798 ], [ 112.280273, 61.710706 ], [ 123.969727, 61.710706 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 123.969727, 66.600676 ], [ 123.969727, 61.501734 ], [ 112.280273, 61.501734 ], [ 112.280273, 66.600676 ], [ 123.969727, 66.600676 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 123.969727, 70.685421 ], [ 123.969727, 66.425537 ], [ 112.280273, 66.425537 ], [ 112.280273, 70.685421 ], [ 123.969727, 70.685421 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 113.019104, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.753511 ], [ 118.775940, 73.588258 ], [ 119.017639, 73.120161 ], [ 123.197937, 72.971993 ], [ 123.255615, 73.735059 ], [ 123.750000, 73.695009 ], [ 123.969727, 73.677264 ], [ 123.969727, 70.539543 ], [ 112.280273, 70.539543 ], [ 112.280273, 73.821760 ], [ 112.500000, 73.868376 ], [ 113.019104, 73.977144 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 113.032837, 73.958939 ], [ 112.931213, 73.958939 ], [ 113.019104, 73.977144 ], [ 113.032837, 73.958939 ] ] ], [ [ [ 112.280273, 76.451987 ], [ 112.500000, 76.404292 ], [ 113.329468, 76.222329 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.777405, 75.031921 ], [ 112.500000, 74.974352 ], [ 112.280273, 74.927999 ], [ 112.280273, 76.451987 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 135.219727, -83.956169 ], [ 135.219727, -85.070048 ], [ 123.530273, -85.070048 ], [ 123.530273, -83.956169 ], [ 135.219727, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 135.219727, -82.648222 ], [ 135.219727, -84.002262 ], [ 123.530273, -84.002262 ], [ 123.530273, -82.648222 ], [ 135.219727, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 135.219727, -81.059130 ], [ 135.219727, -82.704241 ], [ 123.530273, -82.704241 ], [ 123.530273, -81.059130 ], [ 135.219727, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 135.219727, -79.129976 ], [ 135.219727, -81.127169 ], [ 123.530273, -81.127169 ], [ 123.530273, -79.129976 ], [ 135.219727, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 135.219727, -76.790701 ], [ 135.219727, -79.212538 ], [ 123.530273, -79.212538 ], [ 123.530273, -76.790701 ], [ 135.219727, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 135.219727, -73.958939 ], [ 135.219727, -76.890745 ], [ 123.530273, -76.890745 ], [ 123.530273, -73.958939 ], [ 135.219727, -73.958939 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 135.219727, -70.539543 ], [ 135.219727, -74.079925 ], [ 123.530273, -74.079925 ], [ 123.530273, -70.539543 ], [ 135.219727, -70.539543 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 24 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 135.219727, -66.425537 ], [ 135.219727, -70.685421 ], [ 123.530273, -70.685421 ], [ 123.530273, -66.530768 ], [ 123.750000, -66.564654 ], [ 124.120789, -66.621392 ], [ 125.158997, -66.719285 ], [ 126.098328, -66.562469 ], [ 126.999207, -66.562469 ], [ 127.880859, -66.660596 ], [ 128.800964, -66.758334 ], [ 129.701843, -66.582126 ], [ 130.177002, -66.513260 ], [ 130.778503, -66.425537 ], [ 135.219727, -66.425537 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 23 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 123.530273, -66.530768 ], [ 123.983459, -66.600676 ], [ 123.530273, -66.600676 ], [ 123.530273, -66.530768 ] ] ], [ [ [ 127.342529, -66.600676 ], [ 125.870361, -66.600676 ], [ 126.098328, -66.562469 ], [ 126.999207, -66.562469 ], [ 127.342529, -66.600676 ] ] ], [ [ [ 135.219727, -65.373705 ], [ 135.219727, -66.600676 ], [ 129.608459, -66.600676 ], [ 129.701843, -66.582126 ], [ 130.177002, -66.513260 ], [ 130.781250, -66.424439 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.854675, -66.287851 ], [ 134.755554, -66.209308 ], [ 135.000000, -65.776871 ], [ 135.030212, -65.719335 ], [ 135.068665, -65.308387 ], [ 135.219727, -65.373705 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 19 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.219727, -33.925130 ], [ 135.000000, -33.669497 ], [ 134.612732, -33.222605 ], [ 134.085388, -32.847289 ], [ 134.272156, -32.616243 ], [ 132.989502, -32.010405 ], [ 132.286377, -31.982453 ], [ 132.225952, -31.952162 ], [ 131.857910, -31.765537 ], [ 135.219727, -31.765537 ], [ 135.219727, -33.925130 ] ] ], [ [ [ 128.902588, -31.765537 ], [ 128.226929, -31.952162 ], [ 127.100830, -32.280167 ], [ 126.147766, -32.215125 ], [ 125.087585, -32.727220 ], [ 124.219666, -32.957977 ], [ 124.027405, -33.481854 ], [ 123.750000, -33.790561 ], [ 123.659363, -33.888658 ], [ 123.530273, -33.893217 ], [ 123.530273, -31.765537 ], [ 128.902588, -31.765537 ] ] ], [ [ [ 135.219727, -34.279914 ], [ 135.219727, -34.483920 ], [ 135.205994, -34.477128 ], [ 135.219727, -34.279914 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 18 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.219727, -21.739091 ], [ 135.219727, -32.138409 ], [ 133.258667, -32.138409 ], [ 132.989502, -32.010405 ], [ 132.286377, -31.982453 ], [ 132.225952, -31.952162 ], [ 131.325073, -31.494262 ], [ 129.534302, -31.590234 ], [ 128.226929, -31.952162 ], [ 127.592468, -32.138409 ], [ 123.530273, -32.138409 ], [ 123.530273, -21.739091 ], [ 135.219727, -21.739091 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 17 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 132.355042, -11.127202 ], [ 132.489624, -11.178402 ], [ 133.016968, -11.375031 ], [ 133.549805, -11.784014 ], [ 134.393005, -12.042007 ], [ 134.675903, -11.939914 ], [ 135.000000, -12.098410 ], [ 135.219727, -12.208496 ], [ 135.219727, -22.146708 ], [ 123.530273, -22.146708 ], [ 123.530273, -17.222135 ], [ 123.750000, -17.119793 ], [ 123.857117, -17.067287 ], [ 123.750000, -16.922822 ], [ 123.530273, -16.630929 ], [ 123.530273, -16.554594 ], [ 123.750000, -16.214675 ], [ 123.815918, -16.109153 ], [ 124.258118, -16.325411 ], [ 124.378967, -15.564836 ], [ 124.925537, -15.074776 ], [ 125.167236, -14.679254 ], [ 125.669861, -14.509144 ], [ 125.683594, -14.229776 ], [ 126.123047, -14.346887 ], [ 126.142273, -14.093957 ], [ 126.581726, -13.952727 ], [ 127.065125, -13.816744 ], [ 127.803955, -14.275030 ], [ 128.358765, -14.867814 ], [ 128.984985, -14.875778 ], [ 129.619446, -14.968667 ], [ 129.407959, -14.418720 ], [ 129.888611, -13.616625 ], [ 130.339050, -13.354882 ], [ 130.182495, -13.106230 ], [ 130.616455, -12.535796 ], [ 131.223450, -12.181650 ], [ 131.734314, -12.302435 ], [ 132.574768, -12.111837 ], [ 132.555542, -11.601122 ], [ 131.822205, -11.272693 ], [ 132.173767, -11.178402 ], [ 132.355042, -11.127202 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 16 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.966736, -8.890499 ], [ 125.068359, -9.088536 ], [ 125.087585, -9.392161 ], [ 124.433899, -10.139228 ], [ 123.750000, -10.314919 ], [ 123.579712, -10.358151 ], [ 123.530273, -10.309515 ], [ 123.530273, -9.974261 ], [ 123.549500, -9.898510 ], [ 123.750000, -9.614290 ], [ 123.977966, -9.289175 ], [ 124.966736, -8.890499 ] ] ], [ [ [ 134.497375, -5.443757 ], [ 134.725342, -5.736243 ], [ 134.722595, -6.214282 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.288635, -5.782699 ], [ 134.497375, -5.443757 ] ] ], [ [ [ 132.379761, -0.368039 ], [ 133.983765, -0.780005 ], [ 134.143066, -1.150740 ], [ 134.420471, -2.767478 ], [ 135.000000, -3.102121 ], [ 135.219727, -3.228271 ], [ 135.219727, -4.466904 ], [ 135.162048, -4.461427 ], [ 135.000000, -4.360105 ], [ 133.662415, -3.538093 ], [ 133.365784, -4.023179 ], [ 132.981262, -4.110848 ], [ 132.756042, -3.743671 ], [ 132.753296, -3.310534 ], [ 131.989746, -2.819601 ], [ 133.066406, -2.460181 ], [ 133.777771, -2.479389 ], [ 133.695374, -2.213195 ], [ 132.231445, -2.210450 ], [ 131.835938, -1.614776 ], [ 130.940552, -1.430820 ], [ 130.517578, -0.936543 ], [ 131.866150, -0.694868 ], [ 132.379761, -0.368039 ] ] ], [ [ [ 129.369507, -2.800398 ], [ 130.470886, -3.091151 ], [ 130.833435, -3.856034 ], [ 129.990234, -3.444883 ], [ 129.152527, -3.362631 ], [ 128.589478, -3.428433 ], [ 127.897339, -3.392791 ], [ 128.133545, -2.841547 ], [ 129.369507, -2.800398 ] ] ], [ [ [ 126.999207, -3.126804 ], [ 127.249146, -3.458591 ], [ 126.872864, -3.790262 ], [ 126.183472, -3.606625 ], [ 125.988464, -3.176167 ], [ 126.999207, -3.126804 ] ] ], [ [ [ 128.084106, 0.219726 ], [ 128.029175, 0.000000 ], [ 127.966003, -0.249938 ], [ 128.377991, -0.777259 ], [ 128.097839, -0.898096 ], [ 127.694092, -0.266417 ], [ 127.633667, 0.000000 ], [ 127.581482, 0.219726 ], [ 128.084106, 0.219726 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "East Timor", "sov_a3": "TLS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "East Timor", "adm0_a3": "TLS", "geou_dif": 0, "geounit": "East Timor", "gu_a3": "TLS", "su_dif": 0, "subunit": "East Timor", "su_a3": "TLS", "brk_diff": 0, "name": "Timor-Leste", "name_long": "Timor-Leste", "brk_a3": "TLS", "brk_name": "Timor-Leste", "abbrev": "T.L.", "postal": "TL", "formal_en": "Democratic Republic of Timor-Leste", "name_sort": "Timor-Leste", "name_alt": "East Timor", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1131612, "gdp_md_est": 2520, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "TL", "iso_a3": "TLS", "iso_n3": "626", "un_a3": "626", "wb_a2": "TP", "wb_a3": "TMP", "woe_id": -99, "adm0_a3_is": "TLS", "adm0_a3_us": "TLS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.955261, -8.271291 ], [ 127.334290, -8.396300 ], [ 126.966248, -8.667918 ], [ 125.925293, -9.104809 ], [ 125.087585, -9.392161 ], [ 125.068359, -9.088536 ], [ 124.966736, -8.890499 ], [ 125.084839, -8.654342 ], [ 125.944519, -8.431621 ], [ 126.642151, -8.396300 ], [ 126.955261, -8.271291 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 132.355042, -11.127202 ], [ 132.489624, -11.178402 ], [ 133.016968, -11.375031 ], [ 133.041687, -11.393879 ], [ 132.091370, -11.393879 ], [ 131.822205, -11.272693 ], [ 132.173767, -11.178402 ], [ 132.355042, -11.127202 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Philippines", "sov_a3": "PHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Philippines", "adm0_a3": "PHL", "geou_dif": 0, "geounit": "Philippines", "gu_a3": "PHL", "su_dif": 0, "subunit": "Philippines", "su_a3": "PHL", "brk_diff": 0, "name": "Philippines", "name_long": "Philippines", "brk_a3": "PHL", "brk_name": "Philippines", "abbrev": "Phil.", "postal": "PH", "formal_en": "Republic of the Philippines", "name_sort": "Philippines", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 97976603, "gdp_md_est": 317500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PH", "iso_a3": "PHL", "iso_n3": "608", "un_a3": "608", "wb_a2": "PH", "wb_a3": "PHL", "woe_id": -99, "adm0_a3_is": "PHL", "adm0_a3_us": "PHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.411682, 9.760491 ], [ 126.221924, 9.286465 ], [ 126.304321, 8.784654 ], [ 126.375732, 8.415319 ], [ 126.477356, 7.751816 ], [ 126.535034, 7.190826 ], [ 126.194458, 6.274348 ], [ 125.829163, 7.294363 ], [ 125.362244, 6.787353 ], [ 125.680847, 6.050430 ], [ 125.395203, 5.583184 ], [ 124.219666, 6.162401 ], [ 123.936768, 6.885527 ], [ 124.241638, 7.362467 ], [ 123.750000, 7.730043 ], [ 123.609924, 7.836173 ], [ 123.530273, 7.730043 ], [ 123.530273, 8.640765 ], [ 123.750000, 8.358258 ], [ 123.840637, 8.241392 ], [ 124.601440, 8.515836 ], [ 124.763489, 8.961045 ], [ 125.469360, 8.988175 ], [ 125.411682, 9.760491 ] ] ], [ [ [ 124.076843, 11.234980 ], [ 124.071350, 11.178402 ], [ 123.980713, 10.279789 ], [ 123.750000, 10.066220 ], [ 123.620911, 9.952620 ], [ 123.530273, 9.763198 ], [ 123.530273, 10.520219 ], [ 123.750000, 10.806328 ], [ 124.035645, 11.178402 ], [ 124.076843, 11.234980 ] ] ], [ [ [ 125.694580, 11.393879 ], [ 125.749512, 11.178402 ], [ 125.782471, 11.046343 ], [ 125.397949, 11.178402 ], [ 125.010681, 11.313094 ], [ 125.018921, 11.178402 ], [ 125.032654, 10.976246 ], [ 125.277100, 10.360853 ], [ 124.799194, 10.136524 ], [ 124.757996, 10.838701 ], [ 124.458618, 10.889951 ], [ 124.384460, 11.178402 ], [ 124.326782, 11.393879 ], [ 125.694580, 11.393879 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 127.930298, 2.174771 ], [ 128.001709, 1.631249 ], [ 128.592224, 1.543392 ], [ 128.685608, 1.134264 ], [ 128.633423, 0.260924 ], [ 128.119812, 0.357053 ], [ 128.029175, 0.000000 ], [ 127.974243, -0.219726 ], [ 127.683105, -0.219726 ], [ 127.633667, 0.000000 ], [ 127.397461, 1.013436 ], [ 127.597961, 1.812442 ], [ 127.930298, 2.174771 ] ] ], [ [ [ 125.065613, 1.644977 ], [ 125.238647, 1.419838 ], [ 124.436646, 0.428463 ], [ 123.750000, 0.252685 ], [ 123.684082, 0.236205 ], [ 123.530273, 0.269164 ], [ 123.530273, 0.898096 ], [ 123.750000, 0.906334 ], [ 124.076843, 0.917319 ], [ 125.065613, 1.644977 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Philippines", "sov_a3": "PHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Philippines", "adm0_a3": "PHL", "geou_dif": 0, "geounit": "Philippines", "gu_a3": "PHL", "su_dif": 0, "subunit": "Philippines", "su_a3": "PHL", "brk_diff": 0, "name": "Philippines", "name_long": "Philippines", "brk_a3": "PHL", "brk_name": "Philippines", "abbrev": "Phil.", "postal": "PH", "formal_en": "Republic of the Philippines", "name_sort": "Philippines", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 97976603, "gdp_md_est": 317500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PH", "iso_a3": "PHL", "iso_n3": "608", "un_a3": "608", "wb_a2": "PH", "wb_a3": "PHL", "woe_id": -99, "adm0_a3_is": "PHL", "adm0_a3_us": "PHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.076843, 11.234980 ], [ 124.071350, 11.178402 ], [ 124.049377, 10.962764 ], [ 123.868103, 10.962764 ], [ 124.035645, 11.178402 ], [ 124.076843, 11.234980 ] ] ], [ [ [ 124.266357, 12.559925 ], [ 125.224915, 12.535796 ], [ 125.502319, 12.162856 ], [ 125.749512, 11.178402 ], [ 125.782471, 11.046343 ], [ 125.397949, 11.178402 ], [ 125.010681, 11.313094 ], [ 125.018921, 11.178402 ], [ 125.032654, 10.976246 ], [ 125.035400, 10.962764 ], [ 124.439392, 10.962764 ], [ 124.384460, 11.178402 ], [ 124.302063, 11.496174 ], [ 124.889832, 11.418110 ], [ 124.876099, 11.794769 ], [ 124.266357, 12.559925 ] ] ], [ [ [ 123.530273, 13.968719 ], [ 123.750000, 13.872747 ], [ 123.947754, 13.784737 ], [ 123.854370, 13.239945 ], [ 124.181213, 12.999205 ], [ 124.076843, 12.538478 ], [ 123.750000, 12.744837 ], [ 123.530273, 12.881425 ], [ 123.530273, 13.968719 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "name_sort": "Japan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "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": "Polygon", "coordinates": [ [ [ 131.599731, 32.138409 ], [ 131.528320, 31.952162 ], [ 131.330566, 31.452096 ], [ 130.685120, 31.031755 ], [ 130.201721, 31.419288 ], [ 130.347290, 31.952162 ], [ 130.396729, 32.138409 ], [ 131.599731, 32.138409 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 126.216431, 41.145570 ], [ 126.180725, 41.108330 ], [ 125.919800, 40.979898 ], [ 125.079346, 40.570154 ], [ 124.263611, 39.928695 ], [ 123.750000, 39.823304 ], [ 123.530273, 39.776880 ], [ 123.530273, 41.145570 ], [ 126.216431, 41.145570 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "North Korea", "sov_a3": "PRK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "North Korea", "adm0_a3": "PRK", "geou_dif": 0, "geounit": "North Korea", "gu_a3": "PRK", "su_dif": 0, "subunit": "North Korea", "su_a3": "PRK", "brk_diff": 0, "name": "Dem. Rep. Korea", "name_long": "Dem. Rep. Korea", "brk_a3": "PRK", "brk_name": "Dem. Rep. Korea", "abbrev": "N.K.", "postal": "KP", "formal_en": "Democratic People's Republic of Korea", "name_sort": "Korea, Dem. Rep.", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 22665345, "gdp_md_est": 40000, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KP", "iso_a3": "PRK", "iso_n3": "408", "un_a3": "408", "wb_a2": "KP", "wb_a3": "PRK", "woe_id": -99, "adm0_a3_is": "PRK", "adm0_a3_us": "PRK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 15, "long_len": 15, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.690857, 41.145570 ], [ 129.699097, 40.979898 ], [ 129.704590, 40.884448 ], [ 129.185486, 40.661889 ], [ 129.009705, 40.486649 ], [ 128.630676, 40.191463 ], [ 127.966003, 40.025511 ], [ 127.532043, 39.757880 ], [ 127.501831, 39.325799 ], [ 127.383728, 39.215231 ], [ 127.781982, 39.051185 ], [ 128.347778, 38.612578 ], [ 128.204956, 38.371809 ], [ 127.779236, 38.305025 ], [ 127.070618, 38.257593 ], [ 126.683350, 37.805444 ], [ 126.235657, 37.842326 ], [ 126.172485, 37.751172 ], [ 125.689087, 37.942031 ], [ 125.568237, 37.753344 ], [ 125.274353, 37.670777 ], [ 125.238647, 37.857507 ], [ 124.980469, 37.950695 ], [ 124.711304, 38.108628 ], [ 124.985962, 38.550313 ], [ 125.219421, 38.666212 ], [ 125.131531, 38.850403 ], [ 125.384216, 39.389509 ], [ 125.321045, 39.552765 ], [ 124.736023, 39.660685 ], [ 124.263611, 39.928695 ], [ 125.079346, 40.570154 ], [ 125.919800, 40.979898 ], [ 126.180725, 41.108330 ], [ 126.216431, 41.145570 ], [ 129.690857, 41.145570 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Korea", "sov_a3": "KOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Korea", "adm0_a3": "KOR", "geou_dif": 0, "geounit": "South Korea", "gu_a3": "KOR", "su_dif": 0, "subunit": "South Korea", "su_a3": "KOR", "brk_diff": 0, "name": "Korea", "name_long": "Republic of Korea", "brk_a3": "KOR", "brk_name": "Republic of Korea", "abbrev": "S.K.", "postal": "KR", "formal_en": "Republic of Korea", "name_sort": "Korea, Rep.", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 48508972, "gdp_md_est": 1335000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "KR", "iso_a3": "KOR", "iso_n3": "410", "un_a3": "410", "wb_a2": "KR", "wb_a3": "KOR", "woe_id": -99, "adm0_a3_is": "KOR", "adm0_a3_us": "KOR", "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": 17, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.347778, 38.612578 ], [ 129.210205, 37.433431 ], [ 129.460144, 36.785092 ], [ 129.465637, 35.632744 ], [ 129.089355, 35.083956 ], [ 128.185730, 34.890437 ], [ 127.386475, 34.477128 ], [ 126.485596, 34.391046 ], [ 126.372986, 34.935482 ], [ 126.557007, 35.686302 ], [ 126.114807, 36.725677 ], [ 126.859131, 36.894998 ], [ 126.172485, 37.751172 ], [ 126.235657, 37.842326 ], [ 126.683350, 37.805444 ], [ 127.070618, 38.257593 ], [ 127.779236, 38.305025 ], [ 128.204956, 38.371809 ], [ 128.347778, 38.612578 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "name_sort": "Japan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "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": [ [ [ [ 134.607239, 35.733136 ], [ 135.000000, 35.657296 ], [ 135.219727, 35.614884 ], [ 135.219727, 33.792844 ], [ 135.120850, 33.849889 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 133.338318, 34.377446 ], [ 132.154541, 33.906896 ], [ 130.984497, 33.886377 ], [ 131.997986, 33.151349 ], [ 131.528320, 31.952162 ], [ 131.454163, 31.765537 ], [ 130.295105, 31.765537 ], [ 130.347290, 31.952162 ], [ 130.446167, 32.319634 ], [ 129.814453, 32.611616 ], [ 129.407959, 33.296099 ], [ 130.352783, 33.605470 ], [ 130.877380, 34.234512 ], [ 131.882629, 34.750640 ], [ 132.615967, 35.433820 ], [ 134.607239, 35.733136 ] ] ], [ [ [ 133.901367, 34.366111 ], [ 134.637451, 34.150454 ], [ 134.763794, 33.806538 ], [ 134.200745, 33.201924 ], [ 133.791504, 33.523079 ], [ 133.277893, 33.291508 ], [ 133.014221, 32.706422 ], [ 132.360535, 32.990236 ], [ 132.368774, 33.465817 ], [ 132.923584, 34.061761 ], [ 133.492126, 33.945638 ], [ 133.901367, 34.366111 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 135.219727, 49.066668 ], [ 135.219727, 43.719505 ], [ 135.000000, 43.518680 ], [ 134.868164, 43.399061 ], [ 133.536072, 42.811522 ], [ 132.904358, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.778503, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.930285 ], [ 131.286621, 44.113226 ], [ 131.022949, 44.968684 ], [ 131.882629, 45.321254 ], [ 133.096619, 45.145242 ], [ 133.769531, 46.117038 ], [ 134.110107, 47.213971 ], [ 134.500122, 47.580231 ], [ 135.000000, 48.434668 ], [ 135.024719, 48.478384 ], [ 135.000000, 48.474742 ], [ 133.371277, 48.184401 ], [ 132.506104, 47.789171 ], [ 130.987244, 47.791016 ], [ 130.580750, 48.730832 ], [ 130.262146, 48.922499 ], [ 130.020447, 49.066668 ], [ 135.219727, 49.066668 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 130.020447, 49.066668 ], [ 130.262146, 48.922499 ], [ 130.580750, 48.730832 ], [ 130.987244, 47.791016 ], [ 132.506104, 47.789171 ], [ 133.371277, 48.184401 ], [ 135.000000, 48.474742 ], [ 135.024719, 48.478384 ], [ 135.000000, 48.434668 ], [ 134.500122, 47.580231 ], [ 134.110107, 47.213971 ], [ 133.769531, 46.117038 ], [ 133.096619, 45.145242 ], [ 131.882629, 45.321254 ], [ 131.022949, 44.968684 ], [ 131.286621, 44.113226 ], [ 131.143799, 42.930285 ], [ 130.632935, 42.904136 ], [ 130.638428, 42.395066 ], [ 129.992981, 42.986567 ], [ 129.594727, 42.425484 ], [ 128.051147, 41.996243 ], [ 128.207703, 41.467428 ], [ 127.342529, 41.504464 ], [ 126.867371, 41.818408 ], [ 126.180725, 41.108330 ], [ 125.919800, 40.979898 ], [ 125.576477, 40.813809 ], [ 123.530273, 40.813809 ], [ 123.530273, 49.066668 ], [ 130.020447, 49.066668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "North Korea", "sov_a3": "PRK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "North Korea", "adm0_a3": "PRK", "geou_dif": 0, "geounit": "North Korea", "gu_a3": "PRK", "su_dif": 0, "subunit": "North Korea", "su_a3": "PRK", "brk_diff": 0, "name": "Dem. Rep. Korea", "name_long": "Dem. Rep. Korea", "brk_a3": "PRK", "brk_name": "Dem. Rep. Korea", "abbrev": "N.K.", "postal": "KP", "formal_en": "Democratic People's Republic of Korea", "name_sort": "Korea, Dem. Rep.", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 22665345, "gdp_md_est": 40000, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KP", "iso_a3": "PRK", "iso_n3": "408", "un_a3": "408", "wb_a2": "KP", "wb_a3": "PRK", "woe_id": -99, "adm0_a3_is": "PRK", "adm0_a3_us": "PRK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 15, "long_len": 15, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.992981, 42.986567 ], [ 130.638428, 42.395066 ], [ 130.778503, 42.220382 ], [ 130.399475, 42.281373 ], [ 129.965515, 41.943149 ], [ 129.666138, 41.603121 ], [ 129.699097, 40.979898 ], [ 129.704590, 40.884448 ], [ 129.542542, 40.813809 ], [ 125.576477, 40.813809 ], [ 125.919800, 40.979898 ], [ 126.180725, 41.108330 ], [ 126.867371, 41.818408 ], [ 127.342529, 41.504464 ], [ 128.207703, 41.467428 ], [ 128.051147, 41.996243 ], [ 129.594727, 42.425484 ], [ 129.992981, 42.986567 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 135.219727, 55.899956 ], [ 135.219727, 54.789601 ], [ 135.123596, 54.730964 ], [ 135.219727, 54.723034 ], [ 135.219727, 48.777913 ], [ 130.501099, 48.777913 ], [ 130.262146, 48.922499 ], [ 129.396973, 49.441343 ], [ 127.655640, 49.761752 ], [ 127.284851, 50.739932 ], [ 126.938782, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.944519, 52.794458 ], [ 125.065613, 53.161594 ], [ 123.750000, 53.424264 ], [ 123.568726, 53.460255 ], [ 123.530273, 53.458620 ], [ 123.530273, 55.899956 ], [ 135.219727, 55.899956 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 123.571472, 53.460255 ], [ 123.750000, 53.424264 ], [ 125.065613, 53.161594 ], [ 125.944519, 52.794458 ], [ 126.562500, 51.784834 ], [ 126.938782, 51.354631 ], [ 127.284851, 50.739932 ], [ 127.655640, 49.761752 ], [ 129.396973, 49.441343 ], [ 130.262146, 48.922499 ], [ 130.501099, 48.777913 ], [ 123.530273, 48.777913 ], [ 123.530273, 53.458620 ], [ 123.571472, 53.460255 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 135.219727, 61.710706 ], [ 135.219727, 55.652798 ], [ 123.530273, 55.652798 ], [ 123.530273, 61.710706 ], [ 135.219727, 61.710706 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 135.219727, 66.600676 ], [ 135.219727, 61.501734 ], [ 123.530273, 61.501734 ], [ 123.530273, 66.600676 ], [ 135.219727, 66.600676 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 135.219727, 70.685421 ], [ 135.219727, 66.425537 ], [ 123.530273, 66.425537 ], [ 123.530273, 70.685421 ], [ 135.219727, 70.685421 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 123.530273, 73.712735 ], [ 123.750000, 73.695009 ], [ 125.378723, 73.560299 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.039425 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.787814 ], [ 132.253418, 71.836547 ], [ 133.857422, 71.386895 ], [ 135.000000, 71.567510 ], [ 135.219727, 71.602216 ], [ 135.219727, 70.539543 ], [ 123.530273, 70.539543 ], [ 123.530273, 73.712735 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 146.469727, -83.956169 ], [ 146.469727, -85.070048 ], [ 134.780273, -85.070048 ], [ 134.780273, -83.956169 ], [ 146.469727, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 146.469727, -82.648222 ], [ 146.469727, -84.002262 ], [ 134.780273, -84.002262 ], [ 134.780273, -82.648222 ], [ 146.469727, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 146.469727, -81.059130 ], [ 146.469727, -82.704241 ], [ 134.780273, -82.704241 ], [ 134.780273, -81.059130 ], [ 146.469727, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 146.469727, -79.129976 ], [ 146.469727, -81.127169 ], [ 134.780273, -81.127169 ], [ 134.780273, -79.129976 ], [ 146.469727, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 146.469727, -76.790701 ], [ 146.469727, -79.212538 ], [ 134.780273, -79.212538 ], [ 134.780273, -76.790701 ], [ 146.469727, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 146.469727, -73.958939 ], [ 146.469727, -76.890745 ], [ 134.780273, -76.890745 ], [ 134.780273, -73.958939 ], [ 146.469727, -73.958939 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 146.469727, -70.539543 ], [ 146.469727, -74.079925 ], [ 134.780273, -74.079925 ], [ 134.780273, -70.539543 ], [ 146.469727, -70.539543 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 24 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 136.189270, -66.425537 ], [ 136.205750, -66.444204 ], [ 136.288147, -66.513260 ], [ 136.617737, -66.777835 ], [ 137.458191, -66.953727 ], [ 138.595276, -66.895596 ], [ 139.908142, -66.875109 ], [ 140.809021, -66.816791 ], [ 142.119141, -66.816791 ], [ 143.061218, -66.797321 ], [ 144.371338, -66.836246 ], [ 145.489197, -66.914988 ], [ 146.195068, -67.228496 ], [ 145.997314, -67.600849 ], [ 146.250000, -67.714654 ], [ 146.469727, -67.814431 ], [ 146.469727, -70.685421 ], [ 134.780273, -70.685421 ], [ 134.780273, -66.425537 ], [ 136.189270, -66.425537 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 23 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 135.068665, -65.308387 ], [ 135.694885, -65.582314 ], [ 135.873413, -66.032527 ], [ 136.205750, -66.444204 ], [ 136.288147, -66.513260 ], [ 136.398010, -66.600676 ], [ 134.780273, -66.600676 ], [ 134.780273, -66.169390 ], [ 135.000000, -65.776871 ], [ 135.030212, -65.719335 ], [ 135.068665, -65.308387 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 20 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 145.456238, -40.813809 ], [ 145.920410, -40.979898 ], [ 146.250000, -41.095912 ], [ 146.362610, -41.137296 ], [ 146.469727, -41.110399 ], [ 146.469727, -43.570442 ], [ 146.250000, -43.558501 ], [ 146.046753, -43.548548 ], [ 145.431519, -42.692530 ], [ 145.294189, -42.032974 ], [ 144.717407, -41.162114 ], [ 144.725647, -40.979898 ], [ 144.736633, -40.813809 ], [ 145.456238, -40.813809 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 19 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.742126, -40.703546 ], [ 145.395813, -40.790939 ], [ 145.920410, -40.979898 ], [ 146.362610, -41.137296 ], [ 146.469727, -41.110399 ], [ 146.469727, -41.145570 ], [ 144.717407, -41.145570 ], [ 144.725647, -40.979898 ], [ 144.742126, -40.703546 ] ] ], [ [ [ 146.469727, -31.765537 ], [ 146.469727, -38.927366 ], [ 146.315918, -39.034120 ], [ 146.250000, -38.997841 ], [ 145.489197, -38.593261 ], [ 144.876709, -38.417014 ], [ 145.030518, -37.894363 ], [ 144.483948, -38.084851 ], [ 143.607788, -38.807611 ], [ 142.745361, -38.537424 ], [ 142.176819, -38.378269 ], [ 141.605530, -38.307181 ], [ 140.635986, -38.017804 ], [ 139.990540, -37.402892 ], [ 139.806519, -36.641978 ], [ 139.573059, -36.137875 ], [ 139.081421, -35.730907 ], [ 138.120117, -35.610418 ], [ 138.446960, -35.126648 ], [ 138.205261, -34.384246 ], [ 137.719116, -35.074965 ], [ 136.829224, -35.259077 ], [ 137.351074, -34.705493 ], [ 137.502136, -34.129995 ], [ 137.889404, -33.639776 ], [ 137.809753, -32.898038 ], [ 136.996765, -33.751748 ], [ 136.370544, -34.093610 ], [ 135.988770, -34.888184 ], [ 135.205994, -34.477128 ], [ 135.238953, -33.947917 ], [ 135.000000, -33.669497 ], [ 134.780273, -33.415395 ], [ 134.780273, -31.765537 ], [ 146.469727, -31.765537 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 18 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 146.469727, -21.739091 ], [ 146.469727, -32.138409 ], [ 134.780273, -32.138409 ], [ 134.780273, -21.739091 ], [ 146.469727, -21.739091 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 17 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 142.684937, -10.962764 ], [ 142.794800, -11.156845 ], [ 142.797546, -11.178402 ], [ 142.866211, -11.784014 ], [ 143.113403, -11.904979 ], [ 143.157349, -12.323903 ], [ 143.519897, -12.833226 ], [ 143.596802, -13.400307 ], [ 143.561096, -13.763396 ], [ 143.920898, -14.546367 ], [ 144.563599, -14.168534 ], [ 144.893188, -14.594216 ], [ 145.373840, -14.984586 ], [ 145.269470, -15.427206 ], [ 145.483704, -16.283233 ], [ 145.634766, -16.783506 ], [ 145.887451, -16.904428 ], [ 146.159363, -17.759150 ], [ 146.063232, -18.278910 ], [ 146.250000, -18.669665 ], [ 146.387329, -18.958246 ], [ 146.469727, -18.997206 ], [ 146.469727, -22.146708 ], [ 134.780273, -22.146708 ], [ 134.780273, -11.990965 ], [ 135.000000, -12.098410 ], [ 135.296631, -12.246076 ], [ 135.881653, -11.961410 ], [ 136.257935, -12.047379 ], [ 136.491394, -11.856599 ], [ 136.950073, -12.350734 ], [ 136.683655, -12.886780 ], [ 136.304626, -13.290738 ], [ 135.961304, -13.322812 ], [ 136.076660, -13.723377 ], [ 135.782776, -14.221789 ], [ 135.428467, -14.713791 ], [ 135.499878, -14.995199 ], [ 136.293640, -15.548960 ], [ 137.062683, -15.868883 ], [ 137.579041, -16.214675 ], [ 138.301392, -16.807170 ], [ 138.584290, -16.804541 ], [ 139.106140, -17.062036 ], [ 139.259949, -17.368989 ], [ 140.213013, -17.709445 ], [ 140.874939, -17.368989 ], [ 141.069946, -16.830832 ], [ 141.273193, -16.388661 ], [ 141.396790, -15.839820 ], [ 141.701660, -15.042948 ], [ 141.561584, -14.559659 ], [ 141.632996, -14.269707 ], [ 141.517639, -13.696693 ], [ 141.649475, -12.942999 ], [ 141.841736, -12.739479 ], [ 141.685181, -12.407071 ], [ 141.926880, -11.875414 ], [ 142.116394, -11.326560 ], [ 142.130127, -11.178402 ], [ 142.141113, -11.040951 ], [ 142.220764, -10.962764 ], [ 142.684937, -10.962764 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 16 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 138.328857, -1.702630 ], [ 139.183044, -2.051258 ], [ 139.924622, -2.408043 ], [ 140.998535, -2.600120 ], [ 141.031494, -9.115656 ], [ 140.141602, -8.295752 ], [ 139.125366, -8.094581 ], [ 138.880920, -8.379997 ], [ 137.612000, -8.409885 ], [ 138.037720, -7.596663 ], [ 138.666687, -7.318882 ], [ 138.405762, -6.230664 ], [ 137.925110, -5.391805 ], [ 135.988770, -4.546308 ], [ 135.162048, -4.461427 ], [ 135.000000, -4.360105 ], [ 134.780273, -4.225900 ], [ 134.780273, -2.975956 ], [ 135.000000, -3.102121 ], [ 135.455933, -3.365373 ], [ 136.290894, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 142.514648, -10.666006 ], [ 142.794800, -11.156845 ], [ 142.797546, -11.178402 ], [ 142.822266, -11.393879 ], [ 142.094421, -11.393879 ], [ 142.116394, -11.326560 ], [ 142.130127, -11.178402 ], [ 142.141113, -11.040951 ], [ 142.514648, -10.666006 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Papua New Guinea", "sov_a3": "PNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Papua New Guinea", "adm0_a3": "PNG", "geou_dif": 0, "geounit": "Papua New Guinea", "gu_a3": "PNG", "su_dif": 1, "subunit": "Papua New Guinea", "su_a3": "PN1", "brk_diff": 0, "name": "Papua New Guinea", "name_long": "Papua New Guinea", "brk_a3": "PN1", "brk_name": "Papua New Guinea", "abbrev": "P.N.G.", "postal": "PG", "formal_en": "Independent State of Papua New Guinea", "name_sort": "Papua New Guinea", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 6057263, "gdp_md_est": 13210, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PG", "iso_a3": "PNG", "iso_n3": "598", "un_a3": "598", "wb_a2": "PG", "wb_a3": "PNG", "woe_id": -99, "adm0_a3_is": "PNG", "adm0_a3_us": "PNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 16, "long_len": 16, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 140.998535, -2.600120 ], [ 142.734375, -3.288598 ], [ 144.582825, -3.858774 ], [ 145.272217, -4.371059 ], [ 145.829773, -4.874784 ], [ 145.980835, -5.462896 ], [ 146.250000, -5.564049 ], [ 146.469727, -5.646052 ], [ 146.469727, -8.776511 ], [ 146.250000, -8.407168 ], [ 146.046753, -8.067388 ], [ 144.742126, -7.629331 ], [ 143.896179, -7.915073 ], [ 143.283691, -8.244110 ], [ 143.412781, -8.982749 ], [ 142.627258, -9.324411 ], [ 142.066956, -9.159044 ], [ 141.031494, -9.115656 ], [ 140.998535, -2.600120 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "name_sort": "Japan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "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": "Polygon", "coordinates": [ [ [ 141.459961, 41.145570 ], [ 141.525879, 40.979898 ], [ 141.913147, 39.991851 ], [ 141.882935, 39.181175 ], [ 140.957336, 38.175592 ], [ 140.973816, 37.142803 ], [ 140.597534, 36.346103 ], [ 140.773315, 35.844535 ], [ 140.251465, 35.140125 ], [ 138.974304, 34.669359 ], [ 137.216492, 34.608345 ], [ 135.791016, 33.465817 ], [ 135.120850, 33.849889 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 134.780273, 34.560859 ], [ 134.780273, 35.699686 ], [ 135.000000, 35.657296 ], [ 135.675659, 35.527756 ], [ 136.722107, 37.306829 ], [ 137.389526, 36.829073 ], [ 138.856201, 37.829311 ], [ 139.424744, 38.216604 ], [ 140.053711, 39.440435 ], [ 139.880676, 40.563895 ], [ 140.160828, 40.979898 ], [ 140.270691, 41.145570 ], [ 141.459961, 41.145570 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 140.234985, 49.066668 ], [ 140.193787, 48.922499 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.000861 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.145242 ], [ 135.513611, 43.990839 ], [ 135.000000, 43.518680 ], [ 134.868164, 43.399061 ], [ 134.780273, 43.361132 ], [ 134.780273, 48.059725 ], [ 135.000000, 48.434668 ], [ 135.024719, 48.478384 ], [ 135.000000, 48.474742 ], [ 134.780273, 48.434668 ], [ 134.780273, 49.066668 ], [ 140.234985, 49.066668 ] ] ], [ [ [ 143.069458, 49.066668 ], [ 143.006287, 48.922499 ], [ 142.558594, 47.862931 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.741743 ], [ 142.091675, 45.968334 ], [ 141.904907, 46.807580 ], [ 142.017517, 47.781789 ], [ 141.902161, 48.859294 ], [ 141.965332, 49.066668 ], [ 143.069458, 49.066668 ] ] ], [ [ [ 144.602051, 49.066668 ], [ 144.651489, 48.976612 ], [ 144.247742, 49.066668 ], [ 144.602051, 49.066668 ] ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 135.024719, 48.478384 ], [ 135.000000, 48.434668 ], [ 134.780273, 48.059725 ], [ 134.780273, 48.434668 ], [ 135.000000, 48.474742 ], [ 135.024719, 48.478384 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "name_sort": "Japan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "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": [ [ [ [ 141.366577, 41.378870 ], [ 141.525879, 40.979898 ], [ 141.591797, 40.813809 ], [ 140.048218, 40.813809 ], [ 140.160828, 40.979898 ], [ 140.303650, 41.195190 ], [ 141.366577, 41.378870 ] ] ], [ [ [ 141.965332, 45.552525 ], [ 143.140869, 44.512176 ], [ 143.909912, 44.174325 ], [ 144.613037, 43.961191 ], [ 145.318909, 44.386692 ], [ 145.541382, 43.263206 ], [ 144.058228, 42.988576 ], [ 143.182068, 41.996243 ], [ 141.611023, 42.680416 ], [ 141.067200, 41.584634 ], [ 139.954834, 41.570252 ], [ 139.817505, 42.565219 ], [ 140.311890, 43.335167 ], [ 141.380310, 43.389082 ], [ 141.671448, 44.774036 ], [ 141.965332, 45.552525 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 142.654724, 54.366158 ], [ 142.912903, 53.704836 ], [ 143.258972, 52.741280 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.748622 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 143.006287, 48.922499 ], [ 142.945862, 48.777913 ], [ 141.910400, 48.777913 ], [ 141.902161, 48.859294 ], [ 141.921387, 48.922499 ], [ 142.135620, 49.616049 ], [ 142.179565, 50.953236 ], [ 141.591797, 51.935799 ], [ 141.682434, 53.302980 ], [ 142.605286, 53.763325 ], [ 142.207031, 54.226708 ], [ 142.654724, 54.366158 ] ] ], [ [ [ 136.996765, 55.899956 ], [ 136.796265, 55.776573 ], [ 135.123596, 54.730964 ], [ 136.700134, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.804016, 54.255598 ], [ 139.899902, 54.189763 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.239574 ], [ 140.594788, 51.241286 ], [ 140.512390, 50.046557 ], [ 140.193787, 48.922499 ], [ 140.152588, 48.777913 ], [ 134.780273, 48.777913 ], [ 134.780273, 55.899956 ], [ 136.996765, 55.899956 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 146.469727, 61.710706 ], [ 146.469727, 59.281317 ], [ 146.250000, 59.293942 ], [ 145.486450, 59.337392 ], [ 142.196045, 59.040555 ], [ 138.957825, 57.088515 ], [ 136.796265, 55.776573 ], [ 136.598511, 55.652798 ], [ 134.780273, 55.652798 ], [ 134.780273, 61.710706 ], [ 146.469727, 61.710706 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 146.469727, 66.600676 ], [ 146.469727, 61.501734 ], [ 134.780273, 61.501734 ], [ 134.780273, 66.600676 ], [ 146.469727, 66.600676 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 146.469727, 70.685421 ], [ 146.469727, 66.425537 ], [ 134.780273, 66.425537 ], [ 134.780273, 70.685421 ], [ 146.469727, 70.685421 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 140.465698, 72.850122 ], [ 146.250000, 72.437192 ], [ 146.469727, 72.420609 ], [ 146.469727, 70.539543 ], [ 134.780273, 70.539543 ], [ 134.780273, 71.532741 ], [ 135.560303, 71.655885 ], [ 137.496643, 71.348285 ], [ 138.232727, 71.628203 ], [ 139.869690, 71.488319 ], [ 139.147339, 72.416461 ], [ 140.465698, 72.850122 ] ] ], [ [ [ 142.061462, 73.857688 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.213220 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.317611 ], [ 139.861450, 73.370356 ], [ 140.809021, 73.765801 ], [ 142.061462, 73.857688 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 138.828735, 76.137037 ], [ 141.470947, 76.093537 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.611267, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262143 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137037 ] ] ], [ [ [ 146.357117, 75.497157 ], [ 146.469727, 75.488213 ], [ 146.469727, 75.099871 ], [ 146.118164, 75.173143 ], [ 146.250000, 75.351314 ], [ 146.357117, 75.497157 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 157.719727, -83.956169 ], [ 157.719727, -85.070048 ], [ 146.030273, -85.070048 ], [ 146.030273, -83.956169 ], [ 157.719727, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 157.719727, -82.648222 ], [ 157.719727, -84.002262 ], [ 146.030273, -84.002262 ], [ 146.030273, -82.648222 ], [ 157.719727, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 157.719727, -81.059130 ], [ 157.719727, -82.704241 ], [ 146.030273, -82.704241 ], [ 146.030273, -81.059130 ], [ 157.719727, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 157.719727, -79.129976 ], [ 157.719727, -81.127169 ], [ 146.030273, -81.127169 ], [ 146.030273, -79.129976 ], [ 157.719727, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 157.719727, -76.790701 ], [ 157.719727, -79.212538 ], [ 146.030273, -79.212538 ], [ 146.030273, -76.790701 ], [ 157.719727, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 157.719727, -73.958939 ], [ 157.719727, -76.890745 ], [ 146.030273, -76.890745 ], [ 146.030273, -73.958939 ], [ 157.719727, -73.958939 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 157.719727, -70.539543 ], [ 157.719727, -74.079925 ], [ 146.030273, -74.079925 ], [ 146.030273, -70.539543 ], [ 157.719727, -70.539543 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 24 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 146.030273, -67.614451 ], [ 146.250000, -67.714654 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.129645 ], [ 148.837280, -68.385020 ], [ 150.130920, -68.560384 ], [ 151.482239, -68.717450 ], [ 152.501221, -68.874409 ], [ 153.635559, -68.894198 ], [ 154.283752, -68.560384 ], [ 155.165405, -68.834777 ], [ 155.928955, -69.148876 ], [ 156.810608, -69.384181 ], [ 157.500000, -69.439234 ], [ 157.719727, -69.457554 ], [ 157.719727, -70.685421 ], [ 146.030273, -70.685421 ], [ 146.030273, -67.614451 ] ] ], [ [ [ 146.030273, -67.543216 ], [ 146.030273, -67.155031 ], [ 146.195068, -67.228496 ], [ 146.030273, -67.543216 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 20 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 147.738647, -40.813809 ], [ 148.287964, -40.874065 ], [ 148.293457, -40.979898 ], [ 148.359375, -42.061529 ], [ 148.016052, -42.405207 ], [ 147.911682, -43.211182 ], [ 147.562866, -42.936318 ], [ 146.867981, -43.634087 ], [ 146.661987, -43.580391 ], [ 146.250000, -43.558501 ], [ 146.046753, -43.548548 ], [ 146.030273, -43.524655 ], [ 146.030273, -41.017211 ], [ 146.250000, -41.095912 ], [ 146.362610, -41.137296 ], [ 146.991577, -40.979898 ], [ 147.664490, -40.813809 ], [ 147.738647, -40.813809 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 19 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 147.689209, -40.807573 ], [ 148.287964, -40.874065 ], [ 148.293457, -40.979898 ], [ 148.304443, -41.145570 ], [ 146.030273, -41.145570 ], [ 146.030273, -41.017211 ], [ 146.362610, -41.137296 ], [ 146.991577, -40.979898 ], [ 147.689209, -40.807573 ] ] ], [ [ [ 152.830811, -31.765537 ], [ 152.740173, -31.952162 ], [ 152.449036, -32.549128 ], [ 151.707458, -33.040903 ], [ 151.342163, -33.815666 ], [ 151.009827, -34.309413 ], [ 150.713196, -35.171563 ], [ 150.325928, -35.670685 ], [ 150.073242, -36.419072 ], [ 149.944153, -37.107765 ], [ 149.996338, -37.424707 ], [ 149.422302, -37.770715 ], [ 148.304443, -37.807614 ], [ 147.381592, -38.218762 ], [ 146.920166, -38.606140 ], [ 146.315918, -39.034120 ], [ 146.250000, -38.997841 ], [ 146.030273, -38.882481 ], [ 146.030273, -31.765537 ], [ 152.830811, -31.765537 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 18 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 149.460754, -21.739091 ], [ 149.532166, -21.943046 ], [ 149.677734, -22.342455 ], [ 150.075989, -22.121266 ], [ 150.482483, -22.555684 ], [ 150.726929, -22.400872 ], [ 150.897217, -23.460727 ], [ 151.608582, -24.074051 ], [ 152.072754, -24.457151 ], [ 152.852783, -25.267052 ], [ 153.135681, -26.069119 ], [ 153.160400, -26.640094 ], [ 153.091736, -27.259513 ], [ 153.566895, -28.108326 ], [ 153.511963, -28.993727 ], [ 153.338928, -29.456340 ], [ 153.067017, -30.349176 ], [ 153.088989, -30.923433 ], [ 152.891235, -31.639352 ], [ 152.740173, -31.952162 ], [ 152.649536, -32.138409 ], [ 146.030273, -32.138409 ], [ 146.030273, -21.739091 ], [ 149.460754, -21.739091 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 17 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 146.030273, -17.350638 ], [ 146.159363, -17.759150 ], [ 146.063232, -18.278910 ], [ 146.250000, -18.669665 ], [ 146.387329, -18.958246 ], [ 147.469482, -19.479540 ], [ 148.175354, -19.955278 ], [ 148.848267, -20.390974 ], [ 148.716431, -20.632784 ], [ 149.287720, -21.258661 ], [ 149.532166, -21.943046 ], [ 149.606323, -22.146708 ], [ 146.030273, -22.146708 ], [ 146.030273, -17.350638 ] ] ], [ [ [ 150.097961, -22.146708 ], [ 150.032043, -22.146708 ], [ 150.075989, -22.121266 ], [ 150.097961, -22.146708 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 16 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Papua New Guinea", "sov_a3": "PNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Papua New Guinea", "adm0_a3": "PNG", "geou_dif": 0, "geounit": "Papua New Guinea", "gu_a3": "PNG", "su_dif": 1, "subunit": "Papua New Guinea", "su_a3": "PN1", "brk_diff": 0, "name": "Papua New Guinea", "name_long": "Papua New Guinea", "brk_a3": "PN1", "brk_name": "Papua New Guinea", "abbrev": "P.N.G.", "postal": "PG", "formal_en": "Independent State of Papua New Guinea", "name_sort": "Papua New Guinea", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 6057263, "gdp_md_est": 13210, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PG", "iso_a3": "PNG", "iso_n3": "598", "un_a3": "598", "wb_a2": "PG", "wb_a3": "PNG", "woe_id": -99, "adm0_a3_is": "PNG", "adm0_a3_us": "PNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 16, "long_len": 16, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 146.030273, -5.482034 ], [ 146.250000, -5.564049 ], [ 147.648010, -6.083204 ], [ 147.889709, -6.612772 ], [ 146.969604, -6.719165 ], [ 147.189331, -7.386982 ], [ 148.081970, -8.042913 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.069551 ], [ 149.265747, -9.514079 ], [ 150.037537, -9.681984 ], [ 149.738159, -9.871452 ], [ 150.801086, -10.293301 ], [ 150.688477, -10.582322 ], [ 150.026550, -10.649811 ], [ 149.782104, -10.390572 ], [ 148.922424, -10.279789 ], [ 147.911682, -10.128413 ], [ 147.134399, -9.492408 ], [ 146.565857, -8.942053 ], [ 146.250000, -8.407168 ], [ 146.046753, -8.067388 ], [ 146.030273, -8.059230 ], [ 146.030273, -5.482034 ] ] ], [ [ [ 154.651794, -5.041699 ], [ 154.758911, -5.339848 ], [ 155.061035, -5.566783 ], [ 155.547180, -6.200629 ], [ 156.019592, -6.539103 ], [ 155.879517, -6.817353 ], [ 155.599365, -6.918247 ], [ 155.165405, -6.533645 ], [ 154.728699, -5.900189 ], [ 154.511719, -5.137450 ], [ 154.651794, -5.041699 ] ] ], [ [ [ 152.135925, -4.146461 ], [ 152.336426, -4.310808 ], [ 152.317200, -4.866574 ], [ 151.982117, -5.476566 ], [ 151.457520, -5.558582 ], [ 151.300964, -5.840081 ], [ 150.754395, -6.083204 ], [ 150.240784, -6.315299 ], [ 149.707947, -6.315299 ], [ 148.889465, -6.025848 ], [ 148.318176, -5.744441 ], [ 148.400574, -5.435554 ], [ 149.295959, -5.583184 ], [ 149.845276, -5.503906 ], [ 149.993591, -5.025283 ], [ 150.139160, -5.000658 ], [ 150.235291, -5.531244 ], [ 150.806580, -5.454693 ], [ 151.089478, -5.112830 ], [ 151.647034, -4.754361 ], [ 151.537170, -4.165637 ], [ 152.135925, -4.146461 ] ] ], [ [ [ 150.938416, -2.498597 ], [ 151.479492, -2.778451 ], [ 151.817322, -2.997899 ], [ 152.237549, -3.239240 ], [ 152.638550, -3.658705 ], [ 153.017578, -3.979341 ], [ 153.138428, -4.499762 ], [ 152.825317, -4.765310 ], [ 152.638550, -4.173855 ], [ 152.405090, -3.787522 ], [ 151.951904, -3.461333 ], [ 151.383362, -3.033555 ], [ 150.661011, -2.740044 ], [ 150.938416, -2.498597 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Solomon Islands", "sov_a3": "SLB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Solomon Islands", "adm0_a3": "SLB", "geou_dif": 0, "geounit": "Solomon Islands", "gu_a3": "SLB", "su_dif": 0, "subunit": "Solomon Islands", "su_a3": "SLB", "brk_diff": 0, "name": "Solomon Is.", "name_long": "Solomon Islands", "brk_a3": "SLB", "brk_name": "Solomon Is.", "abbrev": "S. Is.", "postal": "SB", "name_sort": "Solomon Islands", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 595613, "gdp_md_est": 1078, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SB", "iso_a3": "SLB", "iso_n3": "090", "un_a3": "090", "wb_a2": "SB", "wb_a3": "SLB", "woe_id": -99, "adm0_a3_is": "SLB", "adm0_a3_us": "SLB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 15, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 156.541443, -6.599131 ], [ 157.137451, -7.019120 ], [ 157.500000, -7.316158 ], [ 157.535706, -7.346123 ], [ 157.500000, -7.357019 ], [ 157.337952, -7.403324 ], [ 156.901245, -7.174476 ], [ 156.489258, -6.765534 ], [ 156.541443, -6.599131 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 157.719727, 55.899956 ], [ 157.719727, 51.614606 ], [ 157.500000, 51.472830 ], [ 156.788635, 51.012027 ], [ 156.417847, 51.701502 ], [ 155.989380, 53.159947 ], [ 155.431824, 55.382231 ], [ 155.566406, 55.776573 ], [ 155.610352, 55.899956 ], [ 157.719727, 55.899956 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 157.719727, 61.567189 ], [ 157.500000, 61.538406 ], [ 156.719971, 61.434828 ], [ 154.217834, 59.759162 ], [ 155.041809, 59.144952 ], [ 152.811584, 58.884781 ], [ 151.265259, 58.781015 ], [ 151.336670, 59.505061 ], [ 149.782104, 59.656642 ], [ 148.543396, 59.164668 ], [ 146.250000, 59.293942 ], [ 146.030273, 59.306562 ], [ 146.030273, 61.710706 ], [ 157.719727, 61.710706 ], [ 157.719727, 61.567189 ] ] ], [ [ [ 157.719727, 57.964417 ], [ 157.719727, 55.652798 ], [ 155.525208, 55.652798 ], [ 155.566406, 55.776573 ], [ 155.912476, 56.769283 ], [ 156.755676, 57.365052 ], [ 156.807861, 57.833055 ], [ 157.500000, 57.932351 ], [ 157.719727, 57.964417 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 157.719727, 66.600676 ], [ 157.719727, 61.567189 ], [ 157.228088, 61.501734 ], [ 146.030273, 61.501734 ], [ 146.030273, 66.600676 ], [ 157.719727, 66.600676 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 157.719727, 70.685421 ], [ 157.719727, 66.425537 ], [ 146.030273, 66.425537 ], [ 146.030273, 70.685421 ], [ 157.719727, 70.685421 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 146.030273, 72.452932 ], [ 146.250000, 72.437192 ], [ 149.499207, 72.200284 ], [ 150.350647, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.032142 ], [ 157.500000, 70.991033 ], [ 157.719727, 70.973133 ], [ 157.719727, 70.539543 ], [ 146.030273, 70.539543 ], [ 146.030273, 72.452932 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 146.357117, 75.497157 ], [ 148.222046, 75.346451 ], [ 150.729675, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.250000, 75.145707 ], [ 146.118164, 75.173143 ], [ 146.250000, 75.351314 ], [ 146.357117, 75.497157 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 168.969727, -83.956169 ], [ 168.969727, -85.070048 ], [ 157.280273, -85.070048 ], [ 157.280273, -83.956169 ], [ 168.969727, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 164.819641, -82.648222 ], [ 164.945984, -82.676285 ], [ 165.094299, -82.708774 ], [ 166.602173, -83.022216 ], [ 168.750000, -83.316176 ], [ 168.895569, -83.335967 ], [ 168.969727, -83.409506 ], [ 168.969727, -84.002262 ], [ 157.280273, -84.002262 ], [ 157.280273, -82.648222 ], [ 164.819641, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 160.235596, -81.059130 ], [ 160.372925, -81.093214 ], [ 161.119995, -81.278386 ], [ 161.628113, -81.689909 ], [ 162.490540, -82.062067 ], [ 163.704529, -82.395157 ], [ 164.945984, -82.676285 ], [ 165.072327, -82.704241 ], [ 157.280273, -82.704241 ], [ 157.280273, -81.059130 ], [ 160.235596, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 163.328247, -79.129976 ], [ 161.765442, -79.162043 ], [ 161.751709, -79.171335 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200709 ], [ 160.315247, -80.572647 ], [ 159.787903, -80.945299 ], [ 160.372925, -81.093214 ], [ 160.507507, -81.127169 ], [ 157.280273, -81.127169 ], [ 157.280273, -79.129976 ], [ 163.328247, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 163.473816, -76.790701 ], [ 163.476562, -76.840816 ], [ 163.487549, -77.065265 ], [ 164.056091, -77.457084 ], [ 164.273071, -77.829694 ], [ 164.742737, -78.182400 ], [ 166.602173, -78.319421 ], [ 166.994934, -78.750659 ], [ 165.193176, -78.907100 ], [ 163.666077, -79.122722 ], [ 161.765442, -79.162043 ], [ 161.751709, -79.171335 ], [ 161.691284, -79.212538 ], [ 157.280273, -79.212538 ], [ 157.280273, -76.790701 ], [ 163.473816, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 167.731018, -73.958939 ], [ 167.632141, -74.019543 ], [ 167.384949, -74.164835 ], [ 166.094055, -74.380731 ], [ 165.643616, -74.772236 ], [ 164.956970, -75.145003 ], [ 164.231873, -75.458589 ], [ 163.822632, -75.869999 ], [ 163.567200, -76.241939 ], [ 163.468323, -76.693067 ], [ 163.476562, -76.840816 ], [ 163.479309, -76.890745 ], [ 157.280273, -76.890745 ], [ 157.280273, -73.958939 ], [ 167.731018, -73.958939 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 161.482544, -70.539543 ], [ 161.570435, -70.578852 ], [ 161.803894, -70.612614 ], [ 162.685547, -70.736230 ], [ 163.841858, -70.716285 ], [ 164.918518, -70.775156 ], [ 166.113281, -70.755250 ], [ 167.308044, -70.833855 ], [ 168.423157, -70.971342 ], [ 168.750000, -71.044637 ], [ 168.969727, -71.094535 ], [ 168.969727, -73.693467 ], [ 168.750000, -73.719666 ], [ 167.972717, -73.812574 ], [ 167.632141, -74.019543 ], [ 167.530518, -74.079925 ], [ 157.280273, -74.079925 ], [ 157.280273, -70.539543 ], [ 161.482544, -70.539543 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 24 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 157.280273, -69.421864 ], [ 157.500000, -69.439234 ], [ 158.024597, -69.481635 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.991475 ], [ 160.804138, -70.226028 ], [ 161.570435, -70.578852 ], [ 161.803894, -70.612614 ], [ 162.322998, -70.685421 ], [ 157.280273, -70.685421 ], [ 157.280273, -69.421864 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 20 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "New Zealand", "sov_a3": "NZ1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "New Zealand", "adm0_a3": "NZL", "geou_dif": 0, "geounit": "New Zealand", "gu_a3": "NZL", "su_dif": 0, "subunit": "New Zealand", "su_a3": "NZL", "brk_diff": 0, "name": "New Zealand", "name_long": "New Zealand", "brk_a3": "NZL", "brk_name": "New Zealand", "abbrev": "N.Z.", "postal": "NZ", "formal_en": "New Zealand", "name_sort": "New Zealand", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 4213418, "gdp_md_est": 116700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NZ", "iso_a3": "NZL", "iso_n3": "554", "un_a3": "554", "wb_a2": "NZ", "wb_a3": "NZL", "woe_id": -99, "adm0_a3_is": "NZL", "adm0_a3_us": "NZL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 168.969727, -43.923615 ], [ 168.969727, -46.632465 ], [ 168.750000, -46.626806 ], [ 168.409424, -46.619261 ], [ 167.761230, -46.290020 ], [ 166.676331, -46.219752 ], [ 166.508789, -45.851760 ], [ 167.044373, -45.110362 ], [ 168.302307, -44.123085 ], [ 168.750000, -43.992815 ], [ 168.947754, -43.935484 ], [ 168.969727, -43.923615 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 18 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "New Caledonia", "adm0_a3": "NCL", "geou_dif": 0, "geounit": "New Caledonia", "gu_a3": "NCL", "su_dif": 0, "subunit": "New Caledonia", "su_a3": "NCL", "brk_diff": 0, "name": "New Caledonia", "name_long": "New Caledonia", "brk_a3": "NCL", "brk_name": "New Caledonia", "abbrev": "New C.", "postal": "NC", "formal_en": "New Caledonia", "formal_fr": "Nouvelle-Calédonie", "note_adm0": "Fr.", "name_sort": "New Caledonia", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 227436, "gdp_md_est": 3158, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "NC", "iso_a3": "NCL", "iso_n3": "540", "un_a3": "540", "wb_a2": "NC", "wb_a3": "NCL", "woe_id": -99, "adm0_a3_is": "NCL", "adm0_a3_us": "NCL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 166.643372, -21.739091 ], [ 166.874084, -21.943046 ], [ 167.118530, -22.159427 ], [ 166.739502, -22.398332 ], [ 166.187439, -22.128899 ], [ 165.890808, -21.943046 ], [ 165.566711, -21.739091 ], [ 166.643372, -21.739091 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 17 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Vanuatu", "sov_a3": "VUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vanuatu", "adm0_a3": "VUT", "geou_dif": 0, "geounit": "Vanuatu", "gu_a3": "VUT", "su_dif": 0, "subunit": "Vanuatu", "su_a3": "VUT", "brk_diff": 0, "name": "Vanuatu", "name_long": "Vanuatu", "brk_a3": "VUT", "brk_name": "Vanuatu", "abbrev": "Van.", "postal": "VU", "formal_en": "Republic of Vanuatu", "name_sort": "Vanuatu", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 218519, "gdp_md_est": 988.5, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VU", "iso_a3": "VUT", "iso_n3": "548", "un_a3": "548", "wb_a2": "VU", "wb_a3": "VUT", "woe_id": -99, "adm0_a3_is": "VUT", "adm0_a3_us": "VUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": 2, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.214661, -15.890018 ], [ 167.843628, -16.465061 ], [ 167.514038, -16.596714 ], [ 167.178955, -16.159283 ], [ 167.214661, -15.890018 ] ] ], [ [ [ 166.626892, -14.626109 ], [ 167.107544, -14.931516 ], [ 167.269592, -15.739388 ], [ 167.000427, -15.612456 ], [ 166.791687, -15.667999 ], [ 166.648865, -15.390136 ], [ 166.626892, -14.626109 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "New Caledonia", "adm0_a3": "NCL", "geou_dif": 0, "geounit": "New Caledonia", "gu_a3": "NCL", "su_dif": 0, "subunit": "New Caledonia", "su_a3": "NCL", "brk_diff": 0, "name": "New Caledonia", "name_long": "New Caledonia", "brk_a3": "NCL", "brk_name": "New Caledonia", "abbrev": "New C.", "postal": "NC", "formal_en": "New Caledonia", "formal_fr": "Nouvelle-Calédonie", "note_adm0": "Fr.", "name_sort": "New Caledonia", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 227436, "gdp_md_est": 3158, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "NC", "iso_a3": "NCL", "iso_n3": "540", "un_a3": "540", "wb_a2": "NC", "wb_a3": "NCL", "woe_id": -99, "adm0_a3_is": "NCL", "adm0_a3_us": "NCL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.028625, -20.104944 ], [ 164.459839, -20.117840 ], [ 165.017395, -20.457896 ], [ 165.459595, -20.799769 ], [ 165.778198, -21.079375 ], [ 166.599426, -21.698265 ], [ 166.874084, -21.943046 ], [ 167.104797, -22.146708 ], [ 166.223145, -22.146708 ], [ 166.187439, -22.128899 ], [ 165.890808, -21.943046 ], [ 165.473328, -21.677848 ], [ 164.827881, -21.148554 ], [ 164.165955, -20.442455 ], [ 164.028625, -20.104944 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 16 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Solomon Islands", "sov_a3": "SLB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Solomon Islands", "adm0_a3": "SLB", "geou_dif": 0, "geounit": "Solomon Islands", "gu_a3": "SLB", "su_dif": 0, "subunit": "Solomon Islands", "su_a3": "SLB", "brk_diff": 0, "name": "Solomon Is.", "name_long": "Solomon Islands", "brk_a3": "SLB", "brk_name": "Solomon Is.", "abbrev": "S. Is.", "postal": "SB", "name_sort": "Solomon Islands", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 595613, "gdp_md_est": 1078, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SB", "iso_a3": "SLB", "iso_n3": "090", "un_a3": "090", "wb_a2": "SB", "wb_a3": "SLB", "woe_id": -99, "adm0_a3_is": "SLB", "adm0_a3_us": "SLB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 15, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.317749, -10.204110 ], [ 161.916504, -10.444598 ], [ 162.117004, -10.482410 ], [ 162.397156, -10.825213 ], [ 161.699524, -10.819818 ], [ 161.317749, -10.204110 ] ] ], [ [ [ 159.702759, -9.240382 ], [ 160.361938, -9.400291 ], [ 160.686035, -9.608874 ], [ 160.850830, -9.871452 ], [ 160.460815, -9.893099 ], [ 159.848328, -9.792971 ], [ 159.639587, -9.638661 ], [ 159.702759, -9.240382 ] ] ], [ [ [ 160.919495, -8.317495 ], [ 161.279297, -9.118368 ], [ 161.677551, -9.598042 ], [ 161.529236, -9.782145 ], [ 160.787659, -8.914920 ], [ 160.578918, -8.317495 ], [ 160.919495, -8.317495 ] ] ], [ [ [ 158.359680, -7.318882 ], [ 158.818359, -7.558547 ], [ 159.639587, -8.018436 ], [ 159.873047, -8.336518 ], [ 159.916992, -8.537565 ], [ 159.131470, -8.113615 ], [ 158.584900, -7.754537 ], [ 158.208618, -7.419666 ], [ 158.359680, -7.318882 ] ] ], [ [ [ 157.280273, -7.136323 ], [ 157.500000, -7.316158 ], [ 157.535706, -7.346123 ], [ 157.500000, -7.357019 ], [ 157.337952, -7.403324 ], [ 157.280273, -7.373362 ], [ 157.280273, -7.136323 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 162.012634, 55.899956 ], [ 161.949463, 55.776573 ], [ 161.699524, 55.286937 ], [ 162.117004, 54.856059 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.529968, 52.960221 ], [ 158.230591, 51.944265 ], [ 157.500000, 51.472830 ], [ 157.280273, 51.330612 ], [ 157.280273, 55.899956 ], [ 162.012634, 55.899956 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 168.969727, 61.710706 ], [ 168.969727, 60.541074 ], [ 168.898315, 60.574825 ], [ 168.750000, 60.528915 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.874573, 59.732869 ], [ 163.536987, 59.869641 ], [ 163.215637, 59.211094 ], [ 162.015381, 58.244500 ], [ 162.051086, 57.840365 ], [ 163.190918, 57.615992 ], [ 163.056335, 56.159318 ], [ 162.127991, 56.122591 ], [ 161.949463, 55.776573 ], [ 161.886292, 55.652798 ], [ 157.280273, 55.652798 ], [ 157.280273, 57.900256 ], [ 157.500000, 57.932351 ], [ 158.362427, 58.056085 ], [ 160.150452, 59.314973 ], [ 161.869812, 60.343260 ], [ 163.668823, 61.141910 ], [ 163.929749, 61.606396 ], [ 163.990173, 61.710706 ], [ 168.969727, 61.710706 ] ] ], [ [ [ 162.704773, 61.710706 ], [ 162.655334, 61.642945 ], [ 162.572937, 61.606396 ], [ 160.120239, 60.545126 ], [ 159.414368, 61.606396 ], [ 159.342957, 61.710706 ], [ 162.704773, 61.710706 ] ] ], [ [ [ 158.818359, 61.710706 ], [ 158.024597, 61.606396 ], [ 157.500000, 61.538406 ], [ 157.280273, 61.509596 ], [ 157.280273, 61.710706 ], [ 158.818359, 61.710706 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 168.969727, 66.600676 ], [ 168.969727, 61.501734 ], [ 163.869324, 61.501734 ], [ 163.929749, 61.606396 ], [ 164.470825, 62.551591 ], [ 163.256836, 62.466646 ], [ 162.655334, 61.642945 ], [ 162.572937, 61.606396 ], [ 162.325745, 61.501734 ], [ 159.485779, 61.501734 ], [ 159.414368, 61.606396 ], [ 159.301758, 61.774422 ], [ 158.024597, 61.606396 ], [ 157.280273, 61.509596 ], [ 157.280273, 66.600676 ], [ 168.969727, 66.600676 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 159.364929, 70.685421 ], [ 159.510498, 70.612614 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.722867 ], [ 160.938721, 69.437305 ], [ 162.279053, 69.642759 ], [ 164.050598, 69.668541 ], [ 165.940247, 69.472005 ], [ 167.835388, 69.583438 ], [ 168.750000, 69.121485 ], [ 168.969727, 69.008627 ], [ 168.969727, 66.425537 ], [ 157.280273, 66.425537 ], [ 157.280273, 70.685421 ], [ 159.364929, 70.685421 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 157.280273, 71.008917 ], [ 157.500000, 70.991033 ], [ 158.996887, 70.867191 ], [ 159.510498, 70.612614 ], [ 159.656067, 70.539543 ], [ 157.280273, 70.539543 ], [ 157.280273, 71.008917 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 171.131287, -83.956169 ], [ 171.441650, -83.979259 ], [ 172.282104, -84.041167 ], [ 172.474365, -84.117659 ], [ 173.221436, -84.413700 ], [ 175.984497, -84.158893 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.070048 ], [ 168.530273, -85.070048 ], [ 168.530273, -83.956169 ], [ 171.131287, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 168.530273, -83.286701 ], [ 168.750000, -83.316176 ], [ 168.895569, -83.335967 ], [ 169.403687, -83.825811 ], [ 171.441650, -83.979259 ], [ 171.752014, -84.002262 ], [ 168.530273, -84.002262 ], [ 168.530273, -83.286701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 168.530273, -70.994611 ], [ 168.750000, -71.044637 ], [ 169.461365, -71.206344 ], [ 170.499573, -71.401793 ], [ 171.205444, -71.696469 ], [ 171.087341, -72.088277 ], [ 170.559998, -72.440507 ], [ 170.109558, -72.891378 ], [ 169.755249, -73.244129 ], [ 169.285583, -73.655637 ], [ 168.750000, -73.719666 ], [ 168.530273, -73.746594 ], [ 168.530273, -70.994611 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 20 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "New Zealand", "sov_a3": "NZ1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "New Zealand", "adm0_a3": "NZL", "geou_dif": 0, "geounit": "New Zealand", "gu_a3": "NZL", "su_dif": 0, "subunit": "New Zealand", "su_a3": "NZL", "brk_diff": 0, "name": "New Zealand", "name_long": "New Zealand", "brk_a3": "NZL", "brk_name": "New Zealand", "abbrev": "N.Z.", "postal": "NZ", "formal_en": "New Zealand", "name_sort": "New Zealand", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 4213418, "gdp_md_est": 116700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NZ", "iso_a3": "NZL", "iso_n3": "554", "un_a3": "554", "wb_a2": "NZ", "wb_a3": "NZL", "woe_id": -99, "adm0_a3_is": "NZL", "adm0_a3_us": "NZL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.963257, -40.813809 ], [ 173.051147, -40.979898 ], [ 173.246155, -41.331451 ], [ 173.864136, -40.979898 ], [ 173.957520, -40.925965 ], [ 173.993225, -40.979898 ], [ 174.245911, -41.347948 ], [ 174.245911, -41.769263 ], [ 173.875122, -42.232585 ], [ 173.221436, -42.968482 ], [ 172.710571, -43.371116 ], [ 173.078613, -43.852355 ], [ 172.306824, -43.864238 ], [ 171.452637, -44.241264 ], [ 171.183472, -44.896741 ], [ 170.614929, -45.907211 ], [ 169.332275, -46.640008 ], [ 168.750000, -46.626806 ], [ 168.530273, -46.621147 ], [ 168.530273, -44.057986 ], [ 168.750000, -43.992815 ], [ 168.947754, -43.935484 ], [ 169.667358, -43.554520 ], [ 170.524292, -43.030753 ], [ 171.123047, -42.512602 ], [ 171.567993, -41.767215 ], [ 171.947021, -41.512691 ], [ 172.089844, -40.979898 ], [ 172.095337, -40.955011 ], [ 172.312317, -40.813809 ], [ 172.963257, -40.813809 ] ] ], [ [ [ 176.355286, -40.813809 ], [ 176.237183, -40.979898 ], [ 176.011963, -41.288126 ], [ 175.237427, -41.687271 ], [ 175.067139, -41.424194 ], [ 174.649658, -41.279871 ], [ 174.861145, -40.979898 ], [ 174.979248, -40.813809 ], [ 176.355286, -40.813809 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 19 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "New Zealand", "sov_a3": "NZ1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "New Zealand", "adm0_a3": "NZL", "geou_dif": 0, "geounit": "New Zealand", "gu_a3": "NZL", "su_dif": 0, "subunit": "New Zealand", "su_a3": "NZL", "brk_diff": 0, "name": "New Zealand", "name_long": "New Zealand", "brk_a3": "NZL", "brk_name": "New Zealand", "abbrev": "N.Z.", "postal": "NZ", "formal_en": "New Zealand", "name_sort": "New Zealand", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 4213418, "gdp_md_est": 116700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NZ", "iso_a3": "NZL", "iso_n3": "554", "un_a3": "554", "wb_a2": "NZ", "wb_a3": "NZL", "woe_id": -99, "adm0_a3_is": "NZL", "adm0_a3_us": "NZL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.798462, -40.492915 ], [ 173.018188, -40.917664 ], [ 173.051147, -40.979898 ], [ 173.144531, -41.145570 ], [ 172.045898, -41.145570 ], [ 172.089844, -40.979898 ], [ 172.095337, -40.955011 ], [ 172.798462, -40.492915 ] ] ], [ [ [ 173.004456, -34.449954 ], [ 173.551025, -35.005253 ], [ 174.328308, -35.263562 ], [ 174.611206, -36.155618 ], [ 175.336304, -37.208457 ], [ 175.355530, -36.525088 ], [ 175.808716, -36.798289 ], [ 175.957031, -37.553288 ], [ 176.761780, -37.879189 ], [ 177.437439, -37.959358 ], [ 178.008728, -37.579413 ], [ 178.516846, -37.694688 ], [ 178.272400, -38.582526 ], [ 177.970276, -39.166271 ], [ 177.206726, -39.144973 ], [ 176.937561, -39.448919 ], [ 177.030945, -39.878127 ], [ 176.885376, -40.065461 ], [ 176.506348, -40.603527 ], [ 176.237183, -40.979898 ], [ 176.116333, -41.145570 ], [ 174.745789, -41.145570 ], [ 174.861145, -40.979898 ], [ 175.226440, -40.457397 ], [ 174.899597, -39.907629 ], [ 173.822937, -39.508279 ], [ 173.850403, -39.144973 ], [ 174.572754, -38.796908 ], [ 174.743042, -38.026459 ], [ 174.696350, -37.381070 ], [ 174.289856, -36.710265 ], [ 174.317322, -36.533916 ], [ 173.839417, -36.120128 ], [ 173.053894, -35.236646 ], [ 172.633667, -34.526924 ], [ 173.004456, -34.449954 ] ] ], [ [ [ 173.993225, -40.979898 ], [ 174.105835, -41.145570 ], [ 173.572998, -41.145570 ], [ 173.864136, -40.979898 ], [ 173.957520, -40.925965 ], [ 173.993225, -40.979898 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 17 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Fiji", "sov_a3": "FJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Fiji", "adm0_a3": "FJI", "geou_dif": 0, "geounit": "Fiji", "gu_a3": "FJI", "su_dif": 0, "subunit": "Fiji", "su_a3": "FJI", "brk_diff": 0, "name": "Fiji", "name_long": "Fiji", "brk_a3": "FJI", "brk_name": "Fiji", "abbrev": "Fiji", "postal": "FJ", "formal_en": "Republic of Fiji", "name_sort": "Fiji", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 944720, "gdp_md_est": 3579, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "FJ", "iso_a3": "FJI", "iso_n3": "242", "un_a3": "242", "wb_a2": "FJ", "wb_a3": "FJI", "woe_id": -99, "adm0_a3_is": "FJI", "adm0_a3_us": "FJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.371277, -17.337530 ], [ 178.717346, -17.628317 ], [ 178.552551, -18.148462 ], [ 177.931824, -18.286734 ], [ 177.379761, -18.164121 ], [ 177.283630, -17.722526 ], [ 177.668152, -17.379474 ], [ 178.124084, -17.502628 ], [ 178.371277, -17.337530 ] ] ], [ [ [ 180.000000, -16.066929 ], [ 180.000000, -16.554594 ], [ 179.362793, -16.799282 ], [ 178.722839, -17.009515 ], [ 178.596497, -16.638823 ], [ 179.096375, -16.433451 ], [ 179.412231, -16.378121 ], [ 180.000000, -16.066929 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 174.122314, 61.710706 ], [ 173.680115, 61.653379 ], [ 173.575745, 61.606396 ], [ 172.147522, 60.950443 ], [ 170.697327, 60.336464 ], [ 170.329285, 59.882047 ], [ 168.898315, 60.574825 ], [ 168.750000, 60.528915 ], [ 168.530273, 60.463988 ], [ 168.530273, 61.710706 ], [ 174.122314, 61.710706 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 180.000000, 66.600676 ], [ 180.000000, 64.980521 ], [ 179.991760, 64.974712 ], [ 178.706360, 64.535453 ], [ 177.409973, 64.608571 ], [ 178.310852, 64.077003 ], [ 178.906860, 63.252175 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.569310 ], [ 179.228210, 62.304964 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.769226 ], [ 173.680115, 61.653379 ], [ 173.575745, 61.606396 ], [ 173.347778, 61.501734 ], [ 168.530273, 61.501734 ], [ 168.530273, 66.600676 ], [ 180.000000, 66.600676 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 170.452881, 70.097399 ], [ 173.641663, 69.817839 ], [ 175.723572, 69.877452 ], [ 178.599243, 69.400615 ], [ 180.000000, 68.964307 ], [ 180.000000, 66.425537 ], [ 168.530273, 66.425537 ], [ 168.530273, 69.232789 ], [ 168.750000, 69.121485 ], [ 169.576721, 68.694509 ], [ 170.815430, 69.014530 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 180.000000, 71.516203 ], [ 180.000000, 70.832953 ], [ 178.901367, 70.781486 ], [ 178.722839, 71.098984 ], [ 180.000000, 71.516203 ] ] ] } } +] } +] } +] } 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 new file mode 100644 index 0000000..f15fba3 --- /dev/null +++ b/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-fraction-as-needed.json @@ -0,0 +1,5860 @@ +{ "type": "FeatureCollection", "properties": { +"bounds": "-180.000000,-85.051129,180.000000,83.645130", +"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", +"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\"} } ] }", +"maxzoom": "5", +"minzoom": "0", +"name": "tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-fraction-as-needed.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": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Nicaragua", "sov_a3": "NIC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nicaragua", "adm0_a3": "NIC", "geou_dif": 0, "geounit": "Nicaragua", "gu_a3": "NIC", "su_dif": 0, "subunit": "Nicaragua", "su_a3": "NIC", "brk_diff": 0, "name": "Nicaragua", "name_long": "Nicaragua", "brk_a3": "NIC", "brk_name": "Nicaragua", "abbrev": "Nic.", "postal": "NI", "formal_en": "Republic of Nicaragua", "name_sort": "Nicaragua", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 5891199, "gdp_md_est": 16790, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NI", "iso_a3": "NIC", "iso_n3": "558", "un_a3": "558", "wb_a2": "NI", "wb_a3": "NIC", "woe_id": -99, "adm0_a3_is": "NIC", "adm0_a3_us": "NIC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.232422, 15.029686 ], [ -83.320312, 14.689881 ], [ -83.232422, 14.349548 ], [ -83.583984, 13.581921 ], [ -83.496094, 12.468760 ], [ -83.671875, 12.382928 ], [ -83.671875, 11.695273 ], [ -83.935547, 11.436955 ], [ -83.671875, 11.005904 ], [ -83.935547, 10.746969 ], [ -84.726562, 11.092166 ], [ -84.990234, 11.005904 ], [ -85.605469, 11.264612 ], [ -85.781250, 11.092166 ], [ -87.714844, 12.983148 ], [ -87.626953, 13.068777 ], [ -87.451172, 12.983148 ], [ -87.011719, 13.068777 ], [ -86.923828, 13.325485 ], [ -86.748047, 13.325485 ], [ -86.835938, 13.838080 ], [ -86.396484, 13.838080 ], [ -86.132812, 14.093957 ], [ -85.869141, 13.838080 ], [ -85.166016, 14.434680 ], [ -84.990234, 14.859850 ], [ -84.462891, 14.689881 ], [ -83.496094, 15.029686 ], [ -83.232422, 15.029686 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Venezuela", "sov_a3": "VEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Venezuela", "adm0_a3": "VEN", "geou_dif": 0, "geounit": "Venezuela", "gu_a3": "VEN", "su_dif": 0, "subunit": "Venezuela", "su_a3": "VEN", "brk_diff": 0, "name": "Venezuela", "name_long": "Venezuela", "brk_a3": "VEN", "brk_name": "Venezuela", "abbrev": "Ven.", "postal": "VE", "formal_en": "Bolivarian Republic of Venezuela", "formal_fr": "República Bolivariana de Venezuela", "name_sort": "Venezuela, RB", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 26814843, "gdp_md_est": 357400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "VE", "iso_a3": "VEN", "iso_n3": "862", "un_a3": "862", "wb_a2": "VE", "wb_a3": "VEN", "woe_id": -99, "adm0_a3_is": "VEN", "adm0_a3_us": "VEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -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 ], [ -60.556641, 7.798079 ], [ -60.644531, 7.449624 ], [ -60.380859, 7.100893 ], [ -61.171875, 6.751896 ], [ -61.171875, 6.315299 ], [ -61.435547, 5.965754 ], [ -60.644531, 5.003394 ], [ -60.996094, 4.565474 ], [ -62.841797, 4.039618 ], [ -63.105469, 3.776559 ], [ -64.687500, 4.214943 ], [ -64.863281, 4.127285 ], [ -64.423828, 3.864255 ], [ -64.423828, 3.162456 ], [ -64.335938, 2.547988 ], [ -63.457031, 2.460181 ], [ -63.369141, 2.284551 ], [ -64.160156, 1.933227 ], [ -64.248047, 1.493971 ], [ -65.390625, 1.142502 ], [ -65.566406, 0.790990 ], [ -66.357422, 0.790990 ], [ -66.884766, 1.318243 ], [ -67.236328, 2.284551 ], [ -67.851562, 2.899153 ], [ -67.324219, 3.337954 ], [ -67.851562, 4.565474 ], [ -67.763672, 5.266008 ], [ -67.412109, 6.140555 ], [ -67.763672, 6.315299 ], [ -69.433594, 6.140555 ], [ -70.136719, 7.013668 ], [ -70.751953, 7.100893 ], [ -71.982422, 7.013668 ], [ -72.246094, 7.362467 ], [ -72.509766, 7.449624 ], [ -72.509766, 8.407168 ], [ -72.685547, 8.667918 ], [ -72.861328, 9.102097 ], [ -73.388672, 9.188870 ], [ -73.037109, 9.795678 ], [ -72.949219, 10.487812 ], [ -72.246094, 11.178402 ], [ -71.982422, 11.609193 ], [ -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 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.998047, 43.771094 ], [ -6.767578, 43.580391 ], [ -5.449219, 43.580391 ], [ -4.394531, 43.452919 ], [ -1.933594, 43.452919 ], [ -1.582031, 43.068888 ], [ 0.263672, 42.617791 ], [ 0.615234, 42.811522 ], [ 1.757812, 42.358544 ], [ 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.240234, 36.385913 ], [ -6.591797, 36.949892 ], [ -7.470703, 37.160317 ], [ -7.558594, 37.439974 ], [ -7.031250, 38.134557 ], [ -7.382812, 38.410558 ], [ -7.119141, 39.095963 ], [ -7.558594, 39.639538 ], [ -7.119141, 39.774769 ], [ -7.031250, 40.245992 ], [ -6.943359, 40.380028 ], [ -6.855469, 41.112469 ], [ -6.416016, 41.442726 ], [ -6.679688, 41.902277 ], [ -7.294922, 41.967659 ], [ -7.470703, 41.836828 ], [ -8.085938, 41.836828 ], [ -8.349609, 42.293564 ], [ -9.052734, 41.902277 ], [ -9.052734, 42.617791 ], [ -9.404297, 43.068888 ], [ -7.998047, 43.771094 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.527344, 15.199386 ], [ -0.351562, 14.944785 ], [ 0.351562, 14.944785 ], [ 0.263672, 14.519780 ], [ 0.351562, 14.008696 ], [ 0.966797, 13.410994 ], [ 0.966797, 12.897489 ], [ 2.109375, 12.640338 ], [ 2.109375, 11.953349 ], [ 1.933594, 11.695273 ], [ 1.406250, 11.609193 ], [ 1.230469, 11.178402 ], [ 0.878906, 11.005904 ], [ -0.439453, 11.178402 ], [ -0.791016, 11.005904 ], [ -2.988281, 11.005904 ], [ -2.900391, 9.709057 ], [ -3.515625, 9.968851 ], [ -4.042969, 9.882275 ], [ -4.394531, 9.622414 ], [ -4.833984, 9.882275 ], [ -5.009766, 10.228437 ], [ -5.449219, 10.401378 ], [ -5.537109, 11.005904 ], [ -5.273438, 11.436955 ], [ -5.273438, 11.781325 ], [ -4.482422, 12.554564 ], [ -4.306641, 13.239945 ], [ -4.042969, 13.496473 ], [ -3.603516, 13.410994 ], [ -3.164062, 13.581921 ], [ -2.988281, 13.838080 ], [ -2.197266, 14.264383 ], [ -2.021484, 14.604847 ], [ -1.142578, 15.029686 ], [ -0.527344, 15.199386 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Paraguay", "sov_a3": "PRY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Paraguay", "adm0_a3": "PRY", "geou_dif": 0, "geounit": "Paraguay", "gu_a3": "PRY", "su_dif": 0, "subunit": "Paraguay", "su_a3": "PRY", "brk_diff": 0, "name": "Paraguay", "name_long": "Paraguay", "brk_a3": "PRY", "brk_name": "Paraguay", "abbrev": "Para.", "postal": "PY", "formal_en": "Republic of Paraguay", "name_sort": "Paraguay", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 2, "pop_est": 6995655, "gdp_md_est": 28890, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PY", "iso_a3": "PRY", "iso_n3": "600", "un_a3": "600", "wb_a2": "PY", "wb_a3": "PRY", "woe_id": -99, "adm0_a3_is": "PRY", "adm0_a3_us": "PRY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.150391, -19.311143 ], [ -58.183594, -19.808054 ], [ -58.183594, -20.138470 ], [ -57.919922, -20.715015 ], [ -58.007812, -22.024546 ], [ -56.953125, -22.268764 ], [ -56.513672, -22.024546 ], [ -55.810547, -22.350076 ], [ -55.634766, -22.593726 ], [ -55.458984, -23.885838 ], [ -55.107422, -23.966176 ], [ -54.667969, -23.805450 ], [ -54.316406, -23.966176 ], [ -54.316406, -24.527135 ], [ -54.843750, -26.588527 ], [ -55.722656, -27.371767 ], [ -56.513672, -27.527758 ], [ -58.623047, -27.059126 ], [ -57.656250, -25.562265 ], [ -57.832031, -25.085599 ], [ -58.886719, -24.766785 ], [ -60.029297, -23.966176 ], [ -60.908203, -23.805450 ], [ -62.753906, -22.187405 ], [ -62.314453, -21.043491 ], [ -62.314453, -20.468189 ], [ -61.787109, -19.559790 ], [ -60.117188, -19.311143 ], [ -59.150391, -19.311143 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Belgium", "sov_a3": "BEL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belgium", "adm0_a3": "BEL", "geou_dif": 0, "geounit": "Belgium", "gu_a3": "BEL", "su_dif": 0, "subunit": "Belgium", "su_a3": "BEL", "brk_diff": 0, "name": "Belgium", "name_long": "Belgium", "brk_a3": "BEL", "brk_name": "Belgium", "abbrev": "Belg.", "postal": "B", "formal_en": "Kingdom of Belgium", "name_sort": "Belgium", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 10414336, "gdp_md_est": 389300, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "BE", "iso_a3": "BEL", "iso_n3": "056", "un_a3": "056", "wb_a2": "BE", "wb_a3": "BEL", "woe_id": -99, "adm0_a3_is": "BEL", "adm0_a3_us": "BEL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.921875, 51.508742 ], [ 5.537109, 51.069017 ], [ 6.152344, 50.847573 ], [ 5.976562, 50.176898 ], [ 5.712891, 50.120578 ], [ 5.625000, 49.553726 ], [ 4.746094, 50.007739 ], [ 4.218750, 49.951220 ], [ 3.076172, 50.792047 ], [ 2.636719, 50.847573 ], [ 2.460938, 51.179343 ], [ 3.251953, 51.399206 ], [ 4.042969, 51.289406 ], [ 4.921875, 51.508742 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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": "Polygon", "coordinates": [ [ [ 16.523438, 46.558860 ], [ 17.578125, 46.012224 ], [ 18.369141, 45.767523 ], [ 18.808594, 45.951150 ], [ 19.335938, 45.274886 ], [ 18.984375, 44.902578 ], [ 18.544922, 45.089036 ], [ 17.841797, 45.089036 ], [ 16.962891, 45.274886 ], [ 16.523438, 45.213004 ], [ 16.259766, 45.026950 ], [ 15.908203, 45.274886 ], [ 15.732422, 44.840291 ], [ 16.435547, 44.087585 ], [ 17.226562, 43.452919 ], [ 17.666016, 43.068888 ], [ 18.544922, 42.682435 ], [ 18.369141, 42.488302 ], [ 17.490234, 42.875964 ], [ 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 ], [ 14.326172, 45.521744 ], [ 14.589844, 45.644768 ], [ 14.853516, 45.521744 ], [ 15.292969, 45.460131 ], [ 15.292969, 45.767523 ], [ 15.644531, 45.890008 ], [ 15.732422, 46.255847 ], [ 16.523438, 46.558860 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "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": "Polygon", "coordinates": [ [ [ 25.136719, 57.984808 ], [ 26.455078, 57.515823 ], [ 27.246094, 57.515823 ], [ 27.685547, 57.279043 ], [ 27.773438, 56.800878 ], [ 28.125000, 56.170023 ], [ 26.455078, 55.627996 ], [ 25.488281, 56.121060 ], [ 24.960938, 56.170023 ], [ 24.785156, 56.413901 ], [ 23.818359, 56.316537 ], [ 22.148438, 56.365250 ], [ 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 ], [ 25.136719, 57.984808 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Tunisia", "sov_a3": "TUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tunisia", "adm0_a3": "TUN", "geou_dif": 0, "geounit": "Tunisia", "gu_a3": "TUN", "su_dif": 0, "subunit": "Tunisia", "su_a3": "TUN", "brk_diff": 0, "name": "Tunisia", "name_long": "Tunisia", "brk_a3": "TUN", "brk_name": "Tunisia", "abbrev": "Tun.", "postal": "TN", "formal_en": "Republic of Tunisia", "name_sort": "Tunisia", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 10486339, "gdp_md_est": 81710, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TN", "iso_a3": "TUN", "iso_n3": "788", "un_a3": "788", "wb_a2": "TN", "wb_a3": "TUN", "woe_id": -99, "adm0_a3_is": "TUN", "adm0_a3_us": "TUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.492188, 37.370157 ], [ 10.195312, 37.230328 ], [ 10.107422, 36.738884 ], [ 10.986328, 37.160317 ], [ 11.074219, 36.949892 ], [ 10.546875, 36.456636 ], [ 10.546875, 35.960223 ], [ 10.898438, 35.746512 ], [ 10.722656, 34.885931 ], [ 10.107422, 34.379713 ], [ 10.283203, 33.797409 ], [ 10.810547, 33.797409 ], [ 11.074219, 33.358062 ], [ 11.425781, 33.137551 ], [ 11.425781, 32.398516 ], [ 9.931641, 31.428663 ], [ 10.019531, 30.977609 ], [ 9.931641, 30.600094 ], [ 9.404297, 30.372875 ], [ 9.052734, 32.175612 ], [ 8.437500, 32.546813 ], [ 8.349609, 32.768800 ], [ 7.558594, 33.358062 ], [ 7.470703, 34.161818 ], [ 8.085938, 34.669359 ], [ 8.349609, 35.532226 ], [ 8.173828, 36.456636 ], [ 8.349609, 36.949892 ], [ 9.492188, 37.370157 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.414062, 12.897489 ], [ 14.853516, 12.297068 ], [ 14.853516, 10.919618 ], [ 15.380859, 10.055403 ], [ 14.589844, 9.968851 ], [ 14.150391, 10.055403 ], [ 13.886719, 9.622414 ], [ 14.501953, 9.015302 ], [ 14.941406, 8.841651 ], [ 15.380859, 7.710992 ], [ 14.765625, 6.489983 ], [ 14.501953, 6.227934 ], [ 14.414062, 4.740675 ], [ 14.941406, 4.214943 ], [ 15.029297, 3.864255 ], [ 15.380859, 3.337954 ], [ 15.820312, 3.074695 ], [ 15.996094, 2.284551 ], [ 15.908203, 1.757537 ], [ 14.326172, 2.284551 ], [ 9.580078, 2.284551 ], [ 9.755859, 3.074695 ], [ 9.404297, 3.776559 ], [ 8.876953, 3.951941 ], [ 8.701172, 4.390229 ], [ 8.437500, 4.565474 ], [ 8.437500, 4.828260 ], [ 9.228516, 6.489983 ], [ 9.492188, 6.489983 ], [ 10.107422, 7.100893 ], [ 10.458984, 7.100893 ], [ 10.986328, 6.664608 ], [ 11.689453, 7.013668 ], [ 12.216797, 8.320212 ], [ 12.744141, 8.754795 ], [ 13.535156, 10.833306 ], [ 14.414062, 11.609193 ], [ 14.501953, 12.125264 ], [ 14.150391, 12.554564 ], [ 14.150391, 12.811801 ], [ 14.414062, 12.897489 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Israel", "adm0_a3": "ISR", "geou_dif": 0, "geounit": "Israel", "gu_a3": "ISR", "su_dif": 0, "subunit": "Israel", "su_a3": "ISR", "brk_diff": 0, "name": "Israel", "name_long": "Israel", "brk_a3": "ISR", "brk_name": "Israel", "abbrev": "Isr.", "postal": "IS", "formal_en": "State of Israel", "name_sort": "Israel", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 7233701, "gdp_md_est": 201400, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IL", "iso_a3": "ISR", "iso_n3": "376", "un_a3": "376", "wb_a2": "IL", "wb_a3": "ISR", "woe_id": -99, "adm0_a3_is": "ISR", "adm0_a3_us": "ISR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.771484, 33.284620 ], [ 35.683594, 32.768800 ], [ 35.507812, 32.398516 ], [ 35.156250, 32.546813 ], [ 34.892578, 31.877558 ], [ 35.156250, 31.802893 ], [ 34.892578, 31.653381 ], [ 34.892578, 31.353637 ], [ 35.332031, 31.503629 ], [ 35.419922, 31.128199 ], [ 34.892578, 29.535230 ], [ 34.189453, 31.278551 ], [ 34.541016, 31.578535 ], [ 35.068359, 33.137551 ], [ 35.419922, 33.137551 ], [ 35.507812, 33.284620 ], [ 35.771484, 33.284620 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.880859, 15.029686 ], [ 38.496094, 14.519780 ], [ 39.023438, 14.774883 ], [ 39.287109, 14.604847 ], [ 39.990234, 14.519780 ], [ 40.869141, 14.179186 ], [ 41.572266, 13.496473 ], [ 42.275391, 12.554564 ], [ 41.660156, 11.695273 ], [ 41.748047, 11.092166 ], [ 42.539062, 11.178402 ], [ 42.714844, 11.005904 ], [ 42.539062, 10.574222 ], [ 43.593750, 9.188870 ], [ 46.933594, 8.059230 ], [ 47.724609, 8.059230 ], [ 44.912109, 5.003394 ], [ 43.593750, 5.003394 ], [ 42.714844, 4.302591 ], [ 42.099609, 4.302591 ], [ 41.835938, 3.951941 ], [ 41.132812, 3.951941 ], [ 40.693359, 4.302591 ], [ 39.814453, 3.864255 ], [ 39.550781, 3.425692 ], [ 38.056641, 3.601142 ], [ 36.826172, 4.477856 ], [ 36.123047, 4.477856 ], [ 35.771484, 4.828260 ], [ 35.771484, 5.353521 ], [ 35.244141, 5.528511 ], [ 34.628906, 6.664608 ], [ 34.189453, 6.839170 ], [ 34.013672, 7.275292 ], [ 33.486328, 7.798079 ], [ 32.871094, 7.798079 ], [ 33.222656, 8.407168 ], [ 33.750000, 8.407168 ], [ 33.925781, 8.754795 ], [ 33.925781, 9.622414 ], [ 34.189453, 10.660608 ], [ 34.716797, 10.919618 ], [ 35.244141, 12.125264 ], [ 35.859375, 12.640338 ], [ 36.210938, 13.581921 ], [ 36.386719, 14.434680 ], [ 37.529297, 14.264383 ], [ 37.880859, 15.029686 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "United Arab Emirates", "sov_a3": "ARE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Arab Emirates", "adm0_a3": "ARE", "geou_dif": 0, "geounit": "United Arab Emirates", "gu_a3": "ARE", "su_dif": 0, "subunit": "United Arab Emirates", "su_a3": "ARE", "brk_diff": 0, "name": "United Arab Emirates", "name_long": "United Arab Emirates", "brk_a3": "ARE", "brk_name": "United Arab Emirates", "abbrev": "U.A.E.", "postal": "AE", "formal_en": "United Arab Emirates", "name_sort": "United Arab Emirates", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 4798491, "gdp_md_est": 184300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AE", "iso_a3": "ARE", "iso_n3": "784", "un_a3": "784", "wb_a2": "AE", "wb_a3": "ARE", "woe_id": -99, "adm0_a3_is": "ARE", "adm0_a3_us": "ARE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 20, "long_len": 20, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.986328, 26.115986 ], [ 56.250000, 25.720735 ], [ 56.337891, 24.926295 ], [ 55.810547, 24.926295 ], [ 55.722656, 24.287027 ], [ 55.898438, 24.206890 ], [ 55.458984, 23.966176 ], [ 55.458984, 23.563987 ], [ 54.931641, 22.512557 ], [ 51.943359, 23.079732 ], [ 51.503906, 24.287027 ], [ 51.679688, 24.367114 ], [ 51.767578, 24.046464 ], [ 52.558594, 24.206890 ], [ 53.964844, 24.126702 ], [ 55.986328, 26.115986 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Nepal", "sov_a3": "NPL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nepal", "adm0_a3": "NPL", "geou_dif": 0, "geounit": "Nepal", "gu_a3": "NPL", "su_dif": 0, "subunit": "Nepal", "su_a3": "NPL", "brk_diff": 0, "name": "Nepal", "name_long": "Nepal", "brk_a3": "NPL", "brk_name": "Nepal", "abbrev": "Nepal", "postal": "NP", "formal_en": "Nepal", "name_sort": "Nepal", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 28563377, "gdp_md_est": 31080, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NP", "iso_a3": "NPL", "iso_n3": "524", "un_a3": "524", "wb_a2": "NP", "wb_a3": "NPL", "woe_id": -99, "adm0_a3_is": "NPL", "adm0_a3_us": "NPL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.474609, 30.448674 ], [ 82.265625, 30.145127 ], [ 83.320312, 29.535230 ], [ 83.847656, 29.382175 ], [ 84.199219, 28.844674 ], [ 84.990234, 28.690588 ], [ 85.781250, 28.226970 ], [ 88.066406, 27.916767 ], [ 87.978516, 27.449790 ], [ 88.154297, 26.824071 ], [ 87.978516, 26.431228 ], [ 87.187500, 26.431228 ], [ 85.166016, 26.745610 ], [ 84.638672, 27.293689 ], [ 83.232422, 27.371767 ], [ 80.068359, 28.844674 ], [ 80.419922, 29.764377 ], [ 81.474609, 30.448674 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.107422, 20.468189 ], [ 100.546875, 20.138470 ], [ 100.546875, 19.559790 ], [ 101.250000, 19.476950 ], [ 100.986328, 18.479609 ], [ 100.986328, 17.560247 ], [ 102.041016, 18.145852 ], [ 102.392578, 17.978733 ], [ 102.919922, 17.978733 ], [ 103.183594, 18.312811 ], [ 103.886719, 18.312811 ], [ 104.677734, 17.476432 ], [ 104.765625, 16.467695 ], [ 105.556641, 15.623037 ], [ 105.468750, 14.774883 ], [ 105.205078, 14.349548 ], [ 104.238281, 14.434680 ], [ 102.919922, 14.264383 ], [ 102.304688, 13.410994 ], [ 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.195312, 8.320212 ], [ 100.458984, 7.449624 ], [ 100.986328, 6.926427 ], [ 101.601562, 6.751896 ], [ 102.128906, 6.227934 ], [ 101.777344, 5.878332 ], [ 101.074219, 5.703448 ], [ 101.074219, 6.227934 ], [ 100.195312, 6.664608 ], [ 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 ], [ 99.580078, 11.953349 ], [ 99.140625, 12.811801 ], [ 99.052734, 13.838080 ], [ 98.349609, 14.689881 ], [ 98.173828, 15.199386 ], [ 98.525391, 15.368950 ], [ 98.876953, 16.214675 ], [ 97.822266, 17.644022 ], [ 97.294922, 18.479609 ], [ 97.734375, 18.646245 ], [ 98.173828, 19.725342 ], [ 98.876953, 19.808054 ], [ 99.492188, 20.220966 ], [ 100.107422, 20.468189 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Fiji", "sov_a3": "FJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Fiji", "adm0_a3": "FJI", "geou_dif": 0, "geounit": "Fiji", "gu_a3": "FJI", "su_dif": 0, "subunit": "Fiji", "su_a3": "FJI", "brk_diff": 0, "name": "Fiji", "name_long": "Fiji", "brk_a3": "FJI", "brk_name": "Fiji", "abbrev": "Fiji", "postal": "FJ", "formal_en": "Republic of Fiji", "name_sort": "Fiji", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 944720, "gdp_md_est": 3579, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "FJ", "iso_a3": "FJI", "iso_n3": "242", "un_a3": "242", "wb_a2": "FJ", "wb_a3": "FJI", "woe_id": -99, "adm0_a3_is": "FJI", "adm0_a3_us": "FJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 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 ] ] ], [ [ [ 180.000000, -16.045813 ], [ 180.000000, -16.551962 ], [ 179.296875, -16.720385 ], [ 178.681641, -16.972741 ], [ 178.593750, -16.636192 ], [ 180.000000, -16.045813 ] ] ], [ [ [ -179.824219, -15.961329 ], [ -180.000000, -16.467695 ], [ -180.000000, -16.045813 ], [ -179.824219, -15.961329 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zimbabwe", "sov_a3": "ZWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zimbabwe", "adm0_a3": "ZWE", "geou_dif": 0, "geounit": "Zimbabwe", "gu_a3": "ZWE", "su_dif": 0, "subunit": "Zimbabwe", "su_a3": "ZWE", "brk_diff": 0, "name": "Zimbabwe", "name_long": "Zimbabwe", "brk_a3": "ZWE", "brk_name": "Zimbabwe", "abbrev": "Zimb.", "postal": "ZW", "formal_en": "Republic of Zimbabwe", "name_sort": "Zimbabwe", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 12619600, "gdp_md_est": 9323, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ZW", "iso_a3": "ZWE", "iso_n3": "716", "un_a3": "716", "wb_a2": "ZW", "wb_a3": "ZWE", "woe_id": -99, "adm0_a3_is": "ZWE", "adm0_a3_us": "ZWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.234375, -15.453680 ], [ 30.322266, -15.876809 ], [ 31.113281, -15.792254 ], [ 31.816406, -16.299051 ], [ 32.255859, -16.383391 ], [ 32.783203, -16.636192 ], [ 32.783203, -17.978733 ], [ 32.607422, -19.394068 ], [ 32.695312, -19.642588 ], [ 32.607422, -20.303418 ], [ 32.431641, -20.385825 ], [ 32.167969, -21.043491 ], [ 31.113281, -22.187405 ], [ 30.585938, -22.105999 ], [ 30.322266, -22.268764 ], [ 29.355469, -22.024546 ], [ 28.740234, -21.616579 ], [ 27.949219, -21.453069 ], [ 27.685547, -20.797201 ], [ 27.685547, -20.468189 ], [ 27.246094, -20.385825 ], [ 26.103516, -19.228177 ], [ 25.224609, -17.727759 ], [ 26.982422, -17.895114 ], [ 28.388672, -16.467695 ], [ 28.740234, -16.383391 ], [ 28.916016, -15.961329 ], [ 29.443359, -15.623037 ], [ 30.234375, -15.453680 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "French Southern and Antarctic Lands", "adm0_a3": "ATF", "geou_dif": 0, "geounit": "French Southern and Antarctic Lands", "gu_a3": "ATF", "su_dif": 0, "subunit": "French Southern and Antarctic Lands", "su_a3": "ATF", "brk_diff": 0, "name": "Fr. S. Antarctic Lands", "name_long": "French Southern and Antarctic Lands", "brk_a3": "ATF", "brk_name": "Fr. S. and Antarctic Lands", "abbrev": "Fr. S.A.L.", "postal": "TF", "formal_en": "Territory of the French Southern and Antarctic Lands", "note_adm0": "Fr.", "name_sort": "French Southern and Antarctic Lands", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 140, "gdp_md_est": 16, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TF", "iso_a3": "ATF", "iso_n3": "260", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATF", "adm0_a3_us": "ATF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Seven seas (open ocean)", "region_un": "Seven seas (open ocean)", "subregion": "Seven seas (open ocean)", "region_wb": "Sub-Saharan Africa", "name_len": 22, "long_len": 35, "abbrev_len": 10, "tiny": 2, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.906250, -48.574790 ], [ 69.521484, -48.922499 ], [ 70.488281, -49.037868 ], [ 70.488281, -49.210420 ], [ 70.224609, -49.667628 ], [ 68.730469, -49.724479 ], [ 68.642578, -49.210420 ], [ 68.906250, -48.574790 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.881836, 1.406109 ], [ -77.871094, 0.834931 ], [ -77.695312, 0.834931 ], [ -77.431641, 0.439449 ], [ -76.596680, 0.263671 ], [ -76.333008, 0.439449 ], [ -75.673828, 0.000000 ], [ -75.410156, -0.131836 ], [ -75.234375, -0.878872 ], [ -75.585938, -1.537901 ], [ -76.640625, -2.591889 ], [ -77.871094, -2.986927 ], [ -78.486328, -3.864255 ], [ -78.662109, -4.521666 ], [ -79.233398, -4.915833 ], [ -79.628906, -4.434044 ], [ -80.068359, -4.302591 ], [ -80.463867, -4.390229 ], [ -80.507812, -4.039618 ], [ -80.200195, -3.820408 ], [ -80.332031, -3.381824 ], [ -79.804688, -2.635789 ], [ -80.024414, -2.196727 ], [ -80.375977, -2.679687 ], [ -80.991211, -2.240640 ], [ -80.771484, -1.933227 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.878872 ], [ -80.419922, -0.263671 ], [ -80.244141, 0.000000 ], [ -80.024414, 0.395505 ], [ -80.112305, 0.790990 ], [ -79.584961, 1.010690 ], [ -78.881836, 1.406109 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.642578, -52.616390 ], [ -68.291016, -53.094024 ], [ -67.763672, -53.826597 ], [ -66.489258, -54.444492 ], [ -65.083008, -54.699234 ], [ -65.522461, -55.178868 ], [ -66.489258, -55.229023 ], [ -66.972656, -54.876607 ], [ -68.642578, -54.851315 ], [ -68.642578, -52.616390 ] ] ], [ [ [ -66.313477, -21.820708 ], [ -64.995117, -22.065278 ], [ -64.379883, -22.796439 ], [ -64.028320, -21.983801 ], [ -62.885742, -22.024546 ], [ -62.709961, -22.228090 ], [ -60.864258, -23.845650 ], [ -60.029297, -24.006326 ], [ -58.842773, -24.766785 ], [ -57.788086, -25.125393 ], [ -57.656250, -25.601902 ], [ -58.623047, -27.098254 ], [ -57.612305, -27.371767 ], [ -56.513672, -27.527758 ], [ -55.722656, -27.371767 ], [ -54.799805, -26.588527 ], [ -54.667969, -25.720735 ], [ -54.140625, -25.522615 ], [ -53.657227, -26.115986 ], [ -53.657227, -26.902477 ], [ -55.195312, -27.877928 ], [ -56.293945, -28.844674 ], [ -57.656250, -30.183122 ], [ -58.183594, -32.026706 ], [ -58.139648, -33.027088 ], [ -58.359375, -33.247876 ], [ -58.535156, -34.415973 ], [ -57.260742, -35.281501 ], [ -57.392578, -35.960223 ], [ -56.777344, -36.385913 ], [ -56.821289, -36.879621 ], [ -57.788086, -38.169114 ], [ -59.238281, -38.719805 ], [ -61.259766, -38.925229 ], [ -62.358398, -38.822591 ], [ -62.138672, -39.402244 ], [ -62.358398, -40.145289 ], [ -62.182617, -40.647304 ], [ -62.753906, -41.013066 ], [ -63.808594, -41.145570 ], [ -64.775391, -40.780541 ], [ -65.126953, -41.046217 ], [ -64.995117, -42.032974 ], [ -64.335938, -42.358544 ], [ -63.764648, -42.032974 ], [ -63.500977, -42.553080 ], [ -64.379883, -42.843751 ], [ -65.214844, -43.484812 ], [ -65.346680, -44.496505 ], [ -65.566406, -45.026950 ], [ -66.533203, -45.026950 ], [ -67.324219, -45.521744 ], [ -67.587891, -46.286224 ], [ -66.621094, -47.010226 ], [ -65.654297, -47.219568 ], [ -66.005859, -48.107431 ], [ -67.192383, -48.690960 ], [ -67.851562, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.169922, -50.708634 ], [ -68.818359, -51.754240 ], [ -68.159180, -52.348763 ], [ -69.521484, -52.133488 ], [ -71.938477, -51.998410 ], [ -72.333984, -51.399206 ], [ -72.333984, -50.652943 ], [ -72.993164, -50.736455 ], [ -73.344727, -50.373496 ], [ -73.432617, -49.296472 ], [ -72.685547, -48.864715 ], [ -72.333984, -48.224673 ], [ -72.465820, -47.724545 ], [ -71.938477, -46.860191 ], [ -71.586914, -45.552525 ], [ -71.674805, -44.964798 ], [ -71.235352, -44.777936 ], [ -71.367188, -44.402392 ], [ -71.806641, -44.182204 ], [ -71.499023, -43.771094 ], [ -71.938477, -43.389082 ], [ -72.158203, -42.228517 ], [ -71.762695, -42.032974 ], [ -71.938477, -40.813809 ], [ -71.455078, -38.891033 ], [ -70.839844, -38.548165 ], [ -71.147461, -37.544577 ], [ -71.147461, -36.633162 ], [ -70.400391, -35.995785 ], [ -70.400391, -35.137879 ], [ -69.829102, -34.161818 ], [ -69.829102, -33.247876 ], [ -70.092773, -33.063924 ], [ -70.576172, -31.353637 ], [ -69.960938, -30.334954 ], [ -70.048828, -29.343875 ], [ -69.697266, -28.459033 ], [ -69.038086, -27.488781 ], [ -68.334961, -26.863281 ], [ -68.598633, -26.470573 ], [ -68.422852, -26.155438 ], [ -68.422852, -24.487149 ], [ -67.368164, -24.006326 ], [ -67.016602, -22.958393 ], [ -67.148438, -22.715390 ], [ -66.313477, -21.820708 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "The Bahamas", "sov_a3": "BHS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "The Bahamas", "adm0_a3": "BHS", "geou_dif": 0, "geounit": "The Bahamas", "gu_a3": "BHS", "su_dif": 0, "subunit": "The Bahamas", "su_a3": "BHS", "brk_diff": 0, "name": "Bahamas", "name_long": "Bahamas", "brk_a3": "BHS", "brk_name": "Bahamas", "abbrev": "Bhs.", "postal": "BS", "formal_en": "Commonwealth of the Bahamas", "name_sort": "Bahamas, The", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 309156, "gdp_md_est": 9093, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BS", "iso_a3": "BHS", "iso_n3": "044", "un_a3": "044", "wb_a2": "BS", "wb_a3": "BHS", "woe_id": -99, "adm0_a3_is": "BHS", "adm0_a3_us": "BHS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.222656, 25.244696 ], [ -77.915039, 25.204941 ], [ -77.563477, 24.367114 ], [ -77.563477, 23.765237 ], [ -77.783203, 23.725012 ], [ -78.046875, 24.287027 ], [ -78.442383, 24.607069 ], [ -78.222656, 25.244696 ] ] ], [ [ [ -77.827148, 27.059126 ], [ -77.036133, 26.627818 ], [ -77.211914, 25.918526 ], [ -77.387695, 26.037042 ], [ -77.343750, 26.549223 ], [ -77.827148, 26.941660 ], [ -77.827148, 27.059126 ] ] ], [ [ [ -78.530273, 26.902477 ], [ -77.871094, 26.863281 ], [ -77.827148, 26.588527 ], [ -78.925781, 26.431228 ], [ -79.013672, 26.824071 ], [ -78.530273, 26.902477 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Costa Rica", "sov_a3": "CRI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Costa Rica", "adm0_a3": "CRI", "geou_dif": 0, "geounit": "Costa Rica", "gu_a3": "CRI", "su_dif": 0, "subunit": "Costa Rica", "su_a3": "CRI", "brk_diff": 0, "name": "Costa Rica", "name_long": "Costa Rica", "brk_a3": "CRI", "brk_name": "Costa Rica", "abbrev": "C.R.", "postal": "CR", "formal_en": "Republic of Costa Rica", "name_sort": "Costa Rica", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 4253877, "gdp_md_est": 48320, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CR", "iso_a3": "CRI", "iso_n3": "188", "un_a3": "188", "wb_a2": "CR", "wb_a3": "CRI", "woe_id": -99, "adm0_a3_is": "CRI", "adm0_a3_us": "CRI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.605469, 11.221510 ], [ -84.946289, 10.962764 ], [ -84.682617, 11.092166 ], [ -84.375000, 11.005904 ], [ -84.199219, 10.833306 ], [ -83.935547, 10.746969 ], [ -83.671875, 10.962764 ], [ -83.408203, 10.401378 ], [ -82.573242, 9.579084 ], [ -82.968750, 9.492408 ], [ -82.968750, 9.102097 ], [ -82.749023, 8.928487 ], [ -82.880859, 8.841651 ], [ -82.836914, 8.667918 ], [ -82.968750, 8.233237 ], [ -83.540039, 8.450639 ], [ -83.715820, 8.667918 ], [ -83.627930, 8.841651 ], [ -83.671875, 9.058702 ], [ -83.935547, 9.318990 ], [ -84.682617, 9.622414 ], [ -84.726562, 9.925566 ], [ -84.990234, 10.098670 ], [ -84.946289, 9.838979 ], [ -85.122070, 9.579084 ], [ -85.341797, 9.838979 ], [ -85.693359, 9.968851 ], [ -85.825195, 10.141932 ], [ -85.825195, 10.444598 ], [ -85.693359, 10.790141 ], [ -85.957031, 10.919618 ], [ -85.605469, 11.221510 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "Puerto Rico", "adm0_a3": "PRI", "geou_dif": 0, "geounit": "Puerto Rico", "gu_a3": "PRI", "su_dif": 0, "subunit": "Puerto Rico", "su_a3": "PRI", "brk_diff": 0, "name": "Puerto Rico", "name_long": "Puerto Rico", "brk_a3": "PRI", "brk_name": "Puerto Rico", "abbrev": "P.R.", "postal": "PR", "formal_en": "Commonwealth of Puerto Rico", "note_adm0": "Commonwealth of U.S.A.", "name_sort": "Puerto Rico", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 3971020, "gdp_md_est": 70230, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "PR", "iso_a3": "PRI", "iso_n3": "630", "un_a3": "630", "wb_a2": "PR", "wb_a3": "PRI", "woe_id": -99, "adm0_a3_is": "PRI", "adm0_a3_us": "PRI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.313477, 18.521283 ], [ -65.786133, 18.437925 ], [ -65.610352, 18.229351 ], [ -65.874023, 17.978733 ], [ -67.192383, 17.978733 ], [ -67.280273, 18.396230 ], [ -67.104492, 18.521283 ], [ -66.313477, 18.521283 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iceland", "sov_a3": "ISL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iceland", "adm0_a3": "ISL", "geou_dif": 0, "geounit": "Iceland", "gu_a3": "ISL", "su_dif": 0, "subunit": "Iceland", "su_a3": "ISL", "brk_diff": 0, "name": "Iceland", "name_long": "Iceland", "brk_a3": "ISL", "brk_name": "Iceland", "abbrev": "Iceland", "postal": "IS", "formal_en": "Republic of Iceland", "name_sort": "Iceland", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 306694, "gdp_md_est": 12710, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IS", "iso_a3": "ISL", "iso_n3": "352", "un_a3": "352", "wb_a2": "IS", "wb_a3": "ISL", "woe_id": -99, "adm0_a3_is": "ISL", "adm0_a3_us": "ISL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.171875, 66.530768 ], [ -14.545898, 66.460663 ], [ -14.765625, 65.820782 ], [ -13.623047, 65.127638 ], [ -14.941406, 64.377941 ], [ -18.676758, 63.509375 ], [ -22.763672, 63.975961 ], [ -21.796875, 64.415921 ], [ -23.994141, 64.904910 ], [ -22.192383, 65.090646 ], [ -22.236328, 65.385147 ], [ -24.345703, 65.622023 ], [ -23.686523, 66.266856 ], [ -22.148438, 66.425537 ], [ -20.610352, 65.748683 ], [ -19.072266, 66.284537 ], [ -17.841797, 66.000150 ], [ -16.171875, 66.530768 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.998047, 43.771094 ], [ -6.767578, 43.580391 ], [ -5.449219, 43.580391 ], [ -4.350586, 43.421009 ], [ -3.559570, 43.484812 ], [ -1.933594, 43.452919 ], [ -1.538086, 43.036776 ], [ 0.000000, 42.682435 ], [ 0.307617, 42.585444 ], [ 0.659180, 42.811522 ], [ 1.801758, 42.358544 ], [ 2.944336, 42.488302 ], [ 3.032227, 41.902277 ], [ 2.065430, 41.244772 ], [ 0.791016, 41.046217 ], [ 0.703125, 40.680638 ], [ 0.087891, 40.145289 ], [ 0.000000, 39.909736 ], [ -0.307617, 39.334297 ], [ 0.000000, 38.925229 ], [ 0.087891, 38.754083 ], [ -0.483398, 38.307181 ], [ -0.703125, 37.649034 ], [ -1.450195, 37.474858 ], [ -2.153320, 36.703660 ], [ -4.394531, 36.703660 ], [ -5.009766, 36.350527 ], [ -5.405273, 35.960223 ], [ -5.888672, 36.031332 ], [ -6.240234, 36.385913 ], [ -6.547852, 36.949892 ], [ -7.470703, 37.125286 ], [ -7.558594, 37.439974 ], [ -7.207031, 37.822802 ], [ -7.031250, 38.099983 ], [ -7.382812, 38.376115 ], [ -7.119141, 39.061849 ], [ -7.514648, 39.639538 ], [ -7.075195, 39.740986 ], [ -7.031250, 40.212441 ], [ -6.899414, 40.346544 ], [ -6.855469, 41.112469 ], [ -6.416016, 41.409776 ], [ -6.679688, 41.902277 ], [ -7.294922, 41.934977 ], [ -7.426758, 41.804078 ], [ -8.041992, 41.804078 ], [ -8.305664, 42.293564 ], [ -8.701172, 42.163403 ], [ -9.052734, 41.902277 ], [ -9.008789, 42.617791 ], [ -9.404297, 43.036776 ], [ -7.998047, 43.771094 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Sierra Leone", "sov_a3": "SLE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sierra Leone", "adm0_a3": "SLE", "geou_dif": 0, "geounit": "Sierra Leone", "gu_a3": "SLE", "su_dif": 0, "subunit": "Sierra Leone", "su_a3": "SLE", "brk_diff": 0, "name": "Sierra Leone", "name_long": "Sierra Leone", "brk_a3": "SLE", "brk_name": "Sierra Leone", "abbrev": "S.L.", "postal": "SL", "formal_en": "Republic of Sierra Leone", "name_sort": "Sierra Leone", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 6440053, "gdp_md_est": 4285, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SL", "iso_a3": "SLE", "iso_n3": "694", "un_a3": "694", "wb_a2": "SL", "wb_a3": "SLE", "woe_id": -99, "adm0_a3_is": "SLE", "adm0_a3_us": "SLE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.118164, 10.055403 ], [ -10.634766, 9.275622 ], [ -10.678711, 9.015302 ], [ -10.502930, 8.754795 ], [ -10.546875, 8.363693 ], [ -10.239258, 8.407168 ], [ -11.162109, 7.406048 ], [ -11.206055, 7.144499 ], [ -11.469727, 6.795535 ], [ -11.733398, 6.882800 ], [ -12.436523, 7.275292 ], [ -12.963867, 7.841615 ], [ -13.139648, 8.189742 ], [ -13.271484, 8.928487 ], [ -12.744141, 9.362353 ], [ -12.436523, 9.838979 ], [ -12.172852, 9.882275 ], [ -11.953125, 10.055403 ], [ -11.118164, 10.055403 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.135287 ], [ 0.000000, 11.049038 ], [ 0.000000, 10.919618 ], [ -0.087891, 10.746969 ], [ 0.000000, 10.660608 ], [ 0.351562, 10.228437 ], [ 0.351562, 9.492408 ], [ 0.439453, 8.711359 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.449624 ], [ 0.527344, 6.926427 ], [ 0.834961, 6.315299 ], [ 1.054688, 5.965754 ], [ 0.000000, 5.572250 ], [ -0.527344, 5.353521 ], [ -1.098633, 5.003394 ], [ -1.977539, 4.740675 ], [ -2.856445, 5.003394 ], [ -2.812500, 5.397273 ], [ -3.251953, 6.271618 ], [ -2.988281, 7.406048 ], [ -2.592773, 8.233237 ], [ -2.988281, 10.401378 ], [ -2.944336, 10.962764 ], [ -1.230469, 11.049038 ], [ -0.791016, 10.962764 ], [ -0.439453, 11.135287 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Netherlands", "sov_a3": "NL1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Netherlands", "adm0_a3": "NLD", "geou_dif": 0, "geounit": "Netherlands", "gu_a3": "NLD", "su_dif": 0, "subunit": "Netherlands", "su_a3": "NLD", "brk_diff": 0, "name": "Netherlands", "name_long": "Netherlands", "brk_a3": "NLD", "brk_name": "Netherlands", "abbrev": "Neth.", "postal": "NL", "formal_en": "Kingdom of the Netherlands", "name_sort": "Netherlands", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 16715999, "gdp_md_est": 672000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NL", "iso_a3": "NLD", "iso_n3": "528", "un_a3": "528", "wb_a2": "NL", "wb_a3": "NLD", "woe_id": -99, "adm0_a3_is": "NLD", "adm0_a3_us": "NLD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 51.454007 ], [ 3.515625, 51.344339 ], [ 3.295898, 51.371780 ], [ 3.515625, 51.454007 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 9.838979 ], [ 3.515625, 6.271618 ], [ 2.680664, 6.271618 ], [ 2.680664, 8.537565 ], [ 2.900391, 9.145486 ], [ 3.515625, 9.838979 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Fiji", "sov_a3": "FJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Fiji", "adm0_a3": "FJI", "geou_dif": 0, "geounit": "Fiji", "gu_a3": "FJI", "su_dif": 0, "subunit": "Fiji", "su_a3": "FJI", "brk_diff": 0, "name": "Fiji", "name_long": "Fiji", "brk_a3": "FJI", "brk_name": "Fiji", "abbrev": "Fiji", "postal": "FJ", "formal_en": "Republic of Fiji", "name_sort": "Fiji", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 944720, "gdp_md_est": 3579, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "FJ", "iso_a3": "FJI", "iso_n3": "242", "un_a3": "242", "wb_a2": "FJ", "wb_a3": "FJI", "woe_id": -99, "adm0_a3_is": "FJI", "adm0_a3_us": "FJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.330078, -17.308688 ], [ 178.681641, -17.602139 ], [ 178.549805, -18.145852 ], [ 177.890625, -18.271086 ], [ 177.363281, -18.145852 ], [ 177.275391, -17.685895 ], [ 177.626953, -17.350638 ], [ 178.110352, -17.476432 ], [ 178.330078, -17.308688 ] ] ], [ [ [ 180.000000, -16.045813 ], [ 180.000000, -16.551962 ], [ 178.681641, -16.972741 ], [ 178.593750, -16.636192 ], [ 179.077148, -16.425548 ], [ 179.384766, -16.341226 ], [ 180.000000, -16.045813 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Rwanda", "sov_a3": "RWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Rwanda", "adm0_a3": "RWA", "geou_dif": 0, "geounit": "Rwanda", "gu_a3": "RWA", "su_dif": 0, "subunit": "Rwanda", "su_a3": "RWA", "brk_diff": 0, "name": "Rwanda", "name_long": "Rwanda", "brk_a3": "RWA", "brk_name": "Rwanda", "abbrev": "Rwa.", "postal": "RW", "formal_en": "Republic of Rwanda", "name_sort": "Rwanda", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 10473282, "gdp_md_est": 9706, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "RW", "iso_a3": "RWA", "iso_n3": "646", "un_a3": "646", "wb_a2": "RW", "wb_a3": "RWA", "woe_id": -99, "adm0_a3_is": "RWA", "adm0_a3_us": "RWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.410156, -1.098565 ], [ 30.805664, -1.669686 ], [ 30.717773, -2.284551 ], [ 30.454102, -2.372369 ], [ 29.926758, -2.328460 ], [ 29.619141, -2.899153 ], [ 29.003906, -2.811371 ], [ 29.091797, -2.284551 ], [ 29.223633, -2.196727 ], [ 29.267578, -1.581830 ], [ 29.575195, -1.318243 ], [ 29.794922, -1.406109 ], [ 30.410156, -1.098565 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.739258, -9.188870 ], [ 33.706055, -9.405710 ], [ 34.277344, -10.141932 ], [ 34.541016, -11.480025 ], [ 34.277344, -12.254128 ], [ 34.541016, -13.539201 ], [ 34.892578, -13.539201 ], [ 35.244141, -13.880746 ], [ 35.683594, -14.604847 ], [ 35.771484, -15.876809 ], [ 35.332031, -16.088042 ], [ 35.024414, -16.762468 ], [ 34.365234, -16.172473 ], [ 34.277344, -15.453680 ], [ 34.497070, -14.987240 ], [ 34.453125, -14.604847 ], [ 34.057617, -14.349548 ], [ 33.750000, -14.434680 ], [ 33.178711, -13.966054 ], [ 32.651367, -13.710035 ], [ 32.958984, -12.768946 ], [ 33.266602, -12.425848 ], [ 33.090820, -11.566144 ], [ 33.310547, -10.790141 ], [ 33.442383, -10.487812 ], [ 33.222656, -9.665738 ], [ 32.739258, -9.188870 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Madagascar", "sov_a3": "MDG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Madagascar", "adm0_a3": "MDG", "geou_dif": 0, "geounit": "Madagascar", "gu_a3": "MDG", "su_dif": 0, "subunit": "Madagascar", "su_a3": "MDG", "brk_diff": 0, "name": "Madagascar", "name_long": "Madagascar", "brk_a3": "MDG", "brk_name": "Madagascar", "abbrev": "Mad.", "postal": "MG", "formal_en": "Republic of Madagascar", "name_sort": "Madagascar", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 20653556, "gdp_md_est": 20130, "pop_year": -99, "lastcensus": 1993, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MG", "iso_a3": "MDG", "iso_n3": "450", "un_a3": "450", "wb_a2": "MG", "wb_a3": "MDG", "woe_id": -99, "adm0_a3_is": "MDG", "adm0_a3_us": "MDG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.174805, -12.039321 ], [ 49.526367, -12.468760 ], [ 49.790039, -12.854649 ], [ 50.053711, -13.539201 ], [ 50.185547, -14.732386 ], [ 50.449219, -15.199386 ], [ 50.361328, -15.665354 ], [ 50.185547, -15.961329 ], [ 49.833984, -15.411319 ], [ 49.658203, -15.707663 ], [ 49.833984, -16.425548 ], [ 49.746094, -16.846605 ], [ 49.482422, -17.098792 ], [ 49.394531, -17.936929 ], [ 47.900391, -22.390714 ], [ 47.504883, -23.765237 ], [ 47.065430, -24.926295 ], [ 46.274414, -25.165173 ], [ 45.395508, -25.562265 ], [ 44.033203, -24.966140 ], [ 43.725586, -24.447150 ], [ 43.681641, -23.563987 ], [ 43.330078, -22.755921 ], [ 43.242188, -22.024546 ], [ 43.417969, -21.330315 ], [ 43.857422, -21.125498 ], [ 43.857422, -20.797201 ], [ 44.340820, -20.055931 ], [ 44.428711, -19.394068 ], [ 44.208984, -18.937464 ], [ 44.033203, -18.312811 ], [ 43.945312, -17.392579 ], [ 44.296875, -16.846605 ], [ 44.428711, -16.214675 ], [ 44.912109, -16.172473 ], [ 45.834961, -15.792254 ], [ 46.274414, -15.749963 ], [ 46.845703, -15.199386 ], [ 47.680664, -14.562318 ], [ 47.988281, -14.051331 ], [ 47.856445, -13.624633 ], [ 48.251953, -13.752725 ], [ 48.823242, -13.068777 ], [ 48.823242, -12.468760 ], [ 49.174805, -12.039321 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Solomon Islands", "sov_a3": "SLB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Solomon Islands", "adm0_a3": "SLB", "geou_dif": 0, "geounit": "Solomon Islands", "gu_a3": "SLB", "su_dif": 0, "subunit": "Solomon Islands", "su_a3": "SLB", "brk_diff": 0, "name": "Solomon Is.", "name_long": "Solomon Islands", "brk_a3": "SLB", "brk_name": "Solomon Is.", "abbrev": "S. Is.", "postal": "SB", "name_sort": "Solomon Islands", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 595613, "gdp_md_est": 1078, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SB", "iso_a3": "SLB", "iso_n3": "090", "un_a3": "090", "wb_a2": "SB", "wb_a3": "SLB", "woe_id": -99, "adm0_a3_is": "SLB", "adm0_a3_us": "SLB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 15, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.279297, -10.185187 ], [ 161.894531, -10.444598 ], [ 162.114258, -10.444598 ], [ 162.377930, -10.790141 ], [ 161.674805, -10.790141 ], [ 161.279297, -10.185187 ] ] ], [ [ [ 159.697266, -9.232249 ], [ 160.356445, -9.362353 ], [ 160.664062, -9.579084 ], [ 160.839844, -9.838979 ], [ 160.444336, -9.882275 ], [ 159.829102, -9.752370 ], [ 159.609375, -9.622414 ], [ 159.697266, -9.232249 ] ] ], [ [ [ 160.883789, -8.276727 ], [ 161.279297, -9.102097 ], [ 161.674805, -9.579084 ], [ 161.499023, -9.752370 ], [ 160.751953, -8.885072 ], [ 160.576172, -8.276727 ], [ 160.883789, -8.276727 ] ] ], [ [ [ 158.334961, -7.318882 ], [ 158.818359, -7.536764 ], [ 159.609375, -8.015716 ], [ 159.873047, -8.320212 ], [ 159.916992, -8.537565 ], [ 159.125977, -8.102739 ], [ 158.203125, -7.406048 ], [ 158.334961, -7.318882 ] ] ], [ [ [ 156.533203, -6.577303 ], [ 157.104492, -7.013668 ], [ 157.500000, -7.318882 ], [ 157.324219, -7.362467 ], [ 156.884766, -7.144499 ], [ 156.489258, -6.751896 ], [ 156.533203, -6.577303 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.527344, 15.156974 ], [ -0.307617, 14.944785 ], [ 0.351562, 14.944785 ], [ 0.263672, 14.477234 ], [ 0.395508, 14.008696 ], [ 0.966797, 13.368243 ], [ 1.010742, 12.854649 ], [ 2.153320, 12.640338 ], [ 2.153320, 11.953349 ], [ 1.933594, 11.652236 ], [ 1.406250, 11.566144 ], [ 1.230469, 11.135287 ], [ 0.878906, 11.005904 ], [ 0.000000, 11.049038 ], [ -0.439453, 11.135287 ], [ -0.791016, 10.962764 ], [ -1.230469, 11.049038 ], [ -2.944336, 10.962764 ], [ -2.988281, 10.401378 ], [ -2.856445, 9.665738 ], [ -3.515625, 9.925566 ], [ -3.515625, 13.368243 ], [ -3.120117, 13.581921 ], [ -2.988281, 13.838080 ], [ -2.197266, 14.264383 ], [ -2.021484, 14.562318 ], [ -1.098633, 14.987240 ], [ -0.527344, 15.156974 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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": "Polygon", "coordinates": [ [ [ 20.610352, 69.115611 ], [ 21.972656, 68.624544 ], [ 23.510742, 67.941650 ], [ 23.554688, 66.407955 ], [ 23.862305, 66.018018 ], [ 22.148438, 65.730626 ], [ 21.181641, 65.035060 ], [ 21.357422, 64.415921 ], [ 19.775391, 63.626745 ], [ 17.841797, 62.754726 ], [ 17.094727, 61.354614 ], [ 17.797852, 60.651647 ], [ 18.764648, 60.086763 ], [ 17.841797, 58.972667 ], [ 16.787109, 58.722599 ], [ 16.435547, 57.064630 ], [ 15.864258, 56.121060 ], [ 14.633789, 56.218923 ], [ 14.062500, 55.429013 ], [ 12.919922, 55.379110 ], [ 12.612305, 56.316537 ], [ 11.777344, 57.444949 ], [ 10.986328, 58.859224 ], [ 11.425781, 59.445075 ], [ 12.260742, 60.130564 ], [ 12.612305, 61.312452 ], [ 11.953125, 61.814664 ], [ 11.909180, 63.134503 ], [ 12.568359, 64.072200 ], [ 13.535156, 64.052978 ], [ 13.886719, 64.453849 ], [ 13.535156, 64.792848 ], [ 15.073242, 66.196009 ], [ 16.743164, 68.024022 ], [ 17.709961, 68.024022 ], [ 17.973633, 68.576441 ], [ 19.863281, 68.415352 ], [ 19.995117, 69.068563 ], [ 20.610352, 69.115611 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Czech Republic", "sov_a3": "CZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Czech Republic", "adm0_a3": "CZE", "geou_dif": 0, "geounit": "Czech Republic", "gu_a3": "CZE", "su_dif": 0, "subunit": "Czech Republic", "su_a3": "CZE", "brk_diff": 0, "name": "Czech Rep.", "name_long": "Czech Republic", "brk_a3": "CZE", "brk_name": "Czech Rep.", "abbrev": "Cz. Rep.", "postal": "CZ", "formal_en": "Czech Republic", "name_sort": "Czech Republic", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 10211904, "gdp_md_est": 265200, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CZ", "iso_a3": "CZE", "iso_n3": "203", "un_a3": "203", "wb_a2": "CZ", "wb_a3": "CZE", "woe_id": -99, "adm0_a3_is": "CZE", "adm0_a3_us": "CZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 14, "abbrev_len": 8, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.985352, 51.124213 ], [ 15.468750, 50.792047 ], [ 16.215820, 50.708634 ], [ 16.171875, 50.429518 ], [ 16.699219, 50.233152 ], [ 16.831055, 50.485474 ], [ 17.534180, 50.373496 ], [ 17.622070, 50.064192 ], [ 18.369141, 50.007739 ], [ 18.852539, 49.496675 ], [ 18.544922, 49.496675 ], [ 18.369141, 49.325122 ], [ 18.149414, 49.296472 ], [ 18.061523, 49.066668 ], [ 17.885742, 49.009051 ], [ 17.885742, 48.922499 ], [ 17.534180, 48.806863 ], [ 17.094727, 48.835797 ], [ 16.918945, 48.603858 ], [ 16.479492, 48.806863 ], [ 15.996094, 48.748945 ], [ 15.249023, 49.066668 ], [ 14.897461, 48.980217 ], [ 14.326172, 48.574790 ], [ 13.579102, 48.893615 ], [ 13.007812, 49.325122 ], [ 12.480469, 49.553726 ], [ 12.392578, 49.979488 ], [ 12.216797, 50.289339 ], [ 12.963867, 50.485474 ], [ 13.315430, 50.736455 ], [ 14.018555, 50.930738 ], [ 14.282227, 51.124213 ], [ 14.545898, 51.013755 ], [ 14.985352, 51.124213 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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": "Polygon", "coordinates": [ [ [ 16.523438, 46.528635 ], [ 16.875000, 46.407564 ], [ 17.622070, 45.981695 ], [ 18.413086, 45.767523 ], [ 18.808594, 45.920587 ], [ 19.072266, 45.521744 ], [ 19.379883, 45.243953 ], [ 18.984375, 44.871443 ], [ 18.544922, 45.089036 ], [ 17.841797, 45.089036 ], [ 16.962891, 45.243953 ], [ 16.523438, 45.213004 ], [ 16.303711, 45.026950 ], [ 15.952148, 45.243953 ], [ 15.732422, 44.840291 ], [ 16.215820, 44.370987 ], [ 16.435547, 44.056012 ], [ 16.875000, 43.675818 ], [ 17.270508, 43.452919 ], [ 17.666016, 43.036776 ], [ 18.544922, 42.650122 ], [ 18.413086, 42.488302 ], [ 17.490234, 42.875964 ], [ 16.918945, 43.229195 ], [ 15.996094, 43.516689 ], [ 15.161133, 44.245199 ], [ 15.336914, 44.339565 ], [ 14.897461, 44.746733 ], [ 14.897461, 45.089036 ], [ 14.238281, 45.243953 ], [ 13.930664, 44.809122 ], [ 13.623047, 45.151053 ], [ 13.710938, 45.521744 ], [ 14.370117, 45.490946 ], [ 14.589844, 45.644768 ], [ 14.897461, 45.490946 ], [ 15.292969, 45.460131 ], [ 15.292969, 45.736860 ], [ 15.644531, 45.859412 ], [ 15.732422, 46.255847 ], [ 16.523438, 46.528635 ] ] ] } } +, +{ "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.786133, 43.293200 ], [ 21.621094, 42.682435 ], [ 21.752930, 42.714732 ], [ 21.533203, 42.326062 ], [ 21.533203, 42.261049 ], [ 20.742188, 42.065607 ], [ 20.698242, 41.869561 ], [ 20.566406, 41.869561 ], [ 20.522461, 42.228517 ], [ 20.258789, 42.326062 ], [ 20.039062, 42.617791 ], [ 20.214844, 42.843751 ], [ 20.478516, 42.908160 ], [ 20.610352, 43.229195 ], [ 20.786133, 43.293200 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.829102, 56.389584 ], [ 24.960938, 56.170023 ], [ 25.532227, 56.121060 ], [ 26.455078, 55.627996 ], [ 26.586914, 55.178868 ], [ 25.751953, 54.851315 ], [ 25.532227, 54.290882 ], [ 24.433594, 53.930220 ], [ 23.466797, 53.930220 ], [ 23.203125, 54.239551 ], [ 22.719727, 54.342149 ], [ 22.631836, 54.597528 ], [ 22.719727, 54.876607 ], [ 22.280273, 55.028022 ], [ 21.225586, 55.203953 ], [ 21.049805, 56.047500 ], [ 22.192383, 56.340901 ], [ 23.862305, 56.292157 ], [ 24.829102, 56.389584 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.034180, 43.580391 ], [ 40.913086, 43.389082 ], [ 42.363281, 43.229195 ], [ 43.725586, 42.747012 ], [ 43.901367, 42.585444 ], [ 44.516602, 42.714732 ], [ 45.439453, 42.520700 ], [ 45.747070, 42.098222 ], [ 46.362305, 41.869561 ], [ 46.142578, 41.738528 ], [ 46.625977, 41.211722 ], [ 46.494141, 41.079351 ], [ 45.922852, 41.145570 ], [ 45.175781, 41.442726 ], [ 44.956055, 41.277806 ], [ 43.549805, 41.112469 ], [ 42.583008, 41.607228 ], [ 41.528320, 41.541478 ], [ 41.660156, 41.967659 ], [ 41.440430, 42.650122 ], [ 40.869141, 43.036776 ], [ 40.297852, 43.133061 ], [ 39.946289, 43.452919 ], [ 40.034180, 43.580391 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.049038 ], [ 0.878906, 11.005904 ], [ 0.747070, 10.487812 ], [ 1.406250, 9.838979 ], [ 1.450195, 9.362353 ], [ 1.625977, 9.145486 ], [ 1.582031, 6.839170 ], [ 1.845703, 6.184246 ], [ 1.054688, 5.965754 ], [ 0.527344, 6.926427 ], [ 0.483398, 7.449624 ], [ 0.703125, 8.320212 ], [ 0.439453, 8.711359 ], [ 0.351562, 9.492408 ], [ 0.351562, 10.228437 ], [ 0.000000, 10.660608 ], [ -0.087891, 10.746969 ], [ 0.000000, 10.919618 ], [ 0.000000, 11.049038 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.851562, 11.178402 ], [ 22.939453, 10.746969 ], [ 23.510742, 10.098670 ], [ 23.554688, 9.709057 ], [ 23.378906, 9.275622 ], [ 23.422852, 8.971897 ], [ 25.092773, 7.841615 ], [ 25.092773, 7.536764 ], [ 25.795898, 7.013668 ], [ 26.191406, 6.577303 ], [ 26.455078, 5.965754 ], [ 27.202148, 5.572250 ], [ 27.333984, 5.266008 ], [ 27.026367, 5.134715 ], [ 25.620117, 5.266008 ], [ 25.268555, 5.178482 ], [ 25.092773, 4.959615 ], [ 24.785156, 4.915833 ], [ 24.389648, 5.134715 ], [ 23.291016, 4.653080 ], [ 22.807617, 4.740675 ], [ 22.675781, 4.653080 ], [ 22.368164, 4.039618 ], [ 21.621094, 4.258768 ], [ 20.917969, 4.346411 ], [ 20.258789, 4.696879 ], [ 19.467773, 5.047171 ], [ 18.896484, 4.740675 ], [ 18.500977, 4.214943 ], [ 18.413086, 3.513421 ], [ 17.797852, 3.601142 ], [ 17.094727, 3.732708 ], [ 16.523438, 3.206333 ], [ 15.996094, 2.284551 ], [ 15.864258, 2.591889 ], [ 15.820312, 3.030812 ], [ 15.380859, 3.337954 ], [ 15.029297, 3.864255 ], [ 14.941406, 4.214943 ], [ 14.458008, 4.740675 ], [ 14.545898, 5.047171 ], [ 14.458008, 5.484768 ], [ 14.501953, 6.227934 ], [ 14.765625, 6.446318 ], [ 15.249023, 7.449624 ], [ 16.083984, 7.536764 ], [ 16.259766, 7.754537 ], [ 16.435547, 7.754537 ], [ 16.699219, 7.536764 ], [ 17.929688, 7.928675 ], [ 18.369141, 8.320212 ], [ 18.896484, 8.667918 ], [ 18.808594, 9.015302 ], [ 19.072266, 9.102097 ], [ 20.039062, 9.015302 ], [ 20.961914, 9.492408 ], [ 21.708984, 10.574222 ], [ 22.192383, 11.005904 ], [ 22.851562, 11.178402 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lebanon", "sov_a3": "LBN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lebanon", "adm0_a3": "LBN", "geou_dif": 0, "geounit": "Lebanon", "gu_a3": "LBN", "su_dif": 0, "subunit": "Lebanon", "su_a3": "LBN", "brk_diff": 0, "name": "Lebanon", "name_long": "Lebanon", "brk_a3": "LBN", "brk_name": "Lebanon", "abbrev": "Leb.", "postal": "LB", "formal_en": "Lebanese Republic", "name_sort": "Lebanon", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 12, "pop_est": 4017095, "gdp_md_est": 44060, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LB", "iso_a3": "LBN", "iso_n3": "422", "un_a3": "422", "wb_a2": "LB", "wb_a3": "LBN", "woe_id": -99, "adm0_a3_is": "LBN", "adm0_a3_us": "LBN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.991211, 34.669359 ], [ 36.430664, 34.597042 ], [ 36.606445, 34.234512 ], [ 36.035156, 33.833920 ], [ 35.815430, 33.284620 ], [ 35.551758, 33.284620 ], [ 35.419922, 33.100745 ], [ 35.112305, 33.100745 ], [ 35.463867, 33.906896 ], [ 35.991211, 34.669359 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 36.826172, 22.024546 ], [ 37.177734, 21.043491 ], [ 36.958008, 20.838278 ], [ 37.089844, 19.808054 ], [ 37.441406, 18.646245 ], [ 38.408203, 18.020528 ], [ 37.880859, 17.434511 ], [ 37.133789, 17.266728 ], [ 36.826172, 16.972741 ], [ 36.738281, 16.299051 ], [ 36.298828, 14.859850 ], [ 36.386719, 14.434680 ], [ 36.254883, 13.581921 ], [ 35.859375, 12.597455 ], [ 35.244141, 12.125264 ], [ 34.804688, 11.350797 ], [ 34.716797, 10.919618 ], [ 34.233398, 10.660608 ], [ 33.925781, 9.492408 ], [ 33.793945, 9.492408 ], [ 33.837891, 10.012130 ], [ 33.706055, 10.358151 ], [ 33.178711, 10.746969 ], [ 33.046875, 11.480025 ], [ 33.178711, 12.211180 ], [ 32.739258, 12.254128 ], [ 32.651367, 12.039321 ], [ 32.036133, 11.996338 ], [ 32.299805, 11.695273 ], [ 32.387695, 11.092166 ], [ 31.816406, 10.574222 ], [ 31.333008, 9.838979 ], [ 30.805664, 9.709057 ], [ 29.970703, 10.314919 ], [ 29.575195, 10.098670 ], [ 29.487305, 9.795678 ], [ 28.959961, 9.622414 ], [ 28.959961, 9.405710 ], [ 27.949219, 9.405710 ], [ 27.817383, 9.622414 ], [ 27.070312, 9.665738 ], [ 26.718750, 9.492408 ], [ 26.455078, 9.579084 ], [ 25.751953, 10.444598 ], [ 25.048828, 10.314919 ], [ 24.785156, 9.838979 ], [ 24.521484, 8.928487 ], [ 23.862305, 8.624472 ], [ 23.422852, 8.971897 ], [ 23.378906, 9.275622 ], [ 23.554688, 9.709057 ], [ 23.510742, 10.098670 ], [ 22.939453, 10.746969 ], [ 22.851562, 11.178402 ], [ 22.851562, 11.393879 ], [ 22.500000, 11.695273 ], [ 22.456055, 12.297068 ], [ 22.280273, 12.683215 ], [ 21.928711, 12.597455 ], [ 22.016602, 12.983148 ], [ 22.280273, 13.410994 ], [ 22.148438, 13.795406 ], [ 22.500000, 14.093957 ], [ 22.280273, 14.349548 ], [ 22.543945, 14.944785 ], [ 22.983398, 15.707663 ], [ 23.862305, 15.623037 ], [ 23.818359, 20.014645 ], [ 24.960938, 20.014645 ], [ 24.960938, 22.024546 ], [ 36.826172, 22.024546 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.288086, 5.528511 ], [ 35.815430, 5.353521 ], [ 35.815430, 4.784469 ], [ 36.123047, 4.477856 ], [ 36.826172, 4.477856 ], [ 38.100586, 3.601142 ], [ 38.627930, 3.645000 ], [ 38.891602, 3.513421 ], [ 39.550781, 3.425692 ], [ 39.814453, 3.864255 ], [ 40.737305, 4.258768 ], [ 41.132812, 3.951941 ], [ 41.835938, 3.951941 ], [ 40.957031, 2.811371 ], [ 40.957031, -0.834931 ], [ 41.572266, -1.669686 ], [ 40.869141, -2.064982 ], [ 40.605469, -2.460181 ], [ 40.253906, -2.547988 ], [ 40.078125, -3.250209 ], [ 39.902344, -3.513421 ], [ 37.705078, -3.513421 ], [ 37.661133, -3.074695 ], [ 33.881836, -0.922812 ], [ 33.881836, 0.131836 ], [ 34.628906, 1.186439 ], [ 35.024414, 1.933227 ], [ 34.584961, 3.074695 ], [ 34.453125, 3.557283 ], [ 33.969727, 4.258768 ], [ 35.288086, 5.528511 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.362305, 41.869561 ], [ 46.669922, 41.836828 ], [ 47.373047, 41.244772 ], [ 47.812500, 41.178654 ], [ 47.944336, 41.409776 ], [ 48.559570, 41.836828 ], [ 49.086914, 41.310824 ], [ 49.614258, 40.580585 ], [ 50.053711, 40.547200 ], [ 50.361328, 40.279526 ], [ 49.526367, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.061849 ], [ 48.823242, 38.822591 ], [ 48.867188, 38.341656 ], [ 48.603516, 38.272689 ], [ 47.988281, 38.822591 ], [ 48.339844, 39.300299 ], [ 48.032227, 39.605688 ], [ 47.680664, 39.537940 ], [ 46.494141, 38.788345 ], [ 46.450195, 39.470125 ], [ 46.010742, 39.639538 ], [ 45.571289, 39.909736 ], [ 45.878906, 40.245992 ], [ 45.351562, 40.580585 ], [ 45.527344, 40.813809 ], [ 45.175781, 41.013066 ], [ 44.956055, 41.277806 ], [ 45.175781, 41.442726 ], [ 45.922852, 41.145570 ], [ 46.494141, 41.079351 ], [ 46.625977, 41.211722 ], [ 46.142578, 41.738528 ], [ 46.362305, 41.869561 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.263672, 39.504041 ], [ 45.703125, 39.504041 ], [ 45.703125, 39.334297 ], [ 46.142578, 38.754083 ], [ 45.439453, 38.891033 ], [ 44.912109, 39.368279 ], [ 44.780273, 39.740986 ], [ 45.000000, 39.740986 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.623047, 42.779275 ], [ 59.941406, 42.228517 ], [ 60.073242, 41.442726 ], [ 60.424805, 41.244772 ], [ 61.523438, 41.277806 ], [ 61.875000, 41.112469 ], [ 62.358398, 40.078071 ], [ 63.500977, 39.368279 ], [ 64.160156, 38.925229 ], [ 65.214844, 38.410558 ], [ 66.533203, 37.996163 ], [ 66.489258, 37.370157 ], [ 66.181641, 37.405074 ], [ 65.742188, 37.683820 ], [ 65.566406, 37.335224 ], [ 64.731445, 37.125286 ], [ 64.511719, 36.315125 ], [ 63.940430, 36.031332 ], [ 63.193359, 35.889050 ], [ 62.973633, 35.424868 ], [ 62.226562, 35.281501 ], [ 61.171875, 35.675147 ], [ 61.083984, 36.491973 ], [ 60.336914, 36.562600 ], [ 59.194336, 37.439974 ], [ 58.403320, 37.544577 ], [ 57.304688, 38.030786 ], [ 56.601562, 38.134557 ], [ 56.162109, 37.961523 ], [ 55.502930, 37.996163 ], [ 54.799805, 37.405074 ], [ 53.920898, 37.230328 ], [ 53.701172, 37.926868 ], [ 53.876953, 38.959409 ], [ 53.085938, 39.300299 ], [ 53.349609, 39.977120 ], [ 52.690430, 40.044438 ], [ 52.910156, 40.880295 ], [ 53.833008, 40.647304 ], [ 54.711914, 40.979898 ], [ 53.964844, 41.574361 ], [ 53.701172, 42.130821 ], [ 52.910156, 41.869561 ], [ 52.778320, 41.145570 ], [ 52.470703, 41.804078 ], [ 52.910156, 42.130821 ], [ 54.052734, 42.326062 ], [ 54.711914, 42.065607 ], [ 55.415039, 41.277806 ], [ 57.084961, 41.343825 ], [ 56.909180, 41.836828 ], [ 57.744141, 42.195969 ], [ 58.623047, 42.779275 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.979898 ], [ 70.444336, 40.513799 ], [ 70.576172, 40.245992 ], [ 70.971680, 40.245992 ], [ 70.620117, 39.943436 ], [ 69.521484, 40.111689 ], [ 69.433594, 39.537940 ], [ 70.532227, 39.605688 ], [ 71.762695, 39.300299 ], [ 73.652344, 39.436193 ], [ 73.916016, 38.513788 ], [ 74.223633, 38.616870 ], [ 74.838867, 38.410558 ], [ 74.794922, 37.996163 ], [ 74.970703, 37.439974 ], [ 73.916016, 37.439974 ], [ 73.256836, 37.509726 ], [ 72.597656, 37.055177 ], [ 72.158203, 36.949892 ], [ 71.806641, 36.738884 ], [ 71.411133, 37.090240 ], [ 71.499023, 37.926868 ], [ 71.235352, 37.961523 ], [ 71.323242, 38.272689 ], [ 70.795898, 38.513788 ], [ 70.356445, 38.169114 ], [ 70.268555, 37.753344 ], [ 70.092773, 37.614231 ], [ 69.477539, 37.614231 ], [ 69.169922, 37.160317 ], [ 68.818359, 37.370157 ], [ 68.115234, 37.055177 ], [ 67.807617, 37.160317 ], [ 68.378906, 38.169114 ], [ 68.159180, 38.925229 ], [ 67.412109, 39.164141 ], [ 67.675781, 39.605688 ], [ 68.510742, 39.537940 ], [ 68.994141, 40.111689 ], [ 69.301758, 40.747257 ], [ 70.664062, 40.979898 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.833008, 52.052490 ], [ 99.975586, 51.645294 ], [ 100.854492, 51.536086 ], [ 102.041016, 51.261915 ], [ 102.216797, 50.513427 ], [ 103.666992, 50.092393 ], [ 104.589844, 50.289339 ], [ 105.864258, 50.429518 ], [ 106.875000, 50.289339 ], [ 107.841797, 49.809632 ], [ 108.457031, 49.296472 ], [ 109.379883, 49.296472 ], [ 110.654297, 49.152970 ], [ 111.577148, 49.382373 ], [ 112.895508, 49.553726 ], [ 114.345703, 50.261254 ], [ 114.960938, 50.148746 ], [ 115.444336, 49.809632 ], [ 116.674805, 49.894634 ], [ 115.444336, 48.136767 ], [ 115.708008, 47.754098 ], [ 116.279297, 47.872144 ], [ 117.290039, 47.724545 ], [ 118.037109, 48.078079 ], [ 118.828125, 47.754098 ], [ 119.750977, 47.070122 ], [ 119.663086, 46.709736 ], [ 118.872070, 46.830134 ], [ 117.377930, 46.679594 ], [ 116.674805, 46.407564 ], [ 115.971680, 45.736860 ], [ 114.433594, 45.367584 ], [ 113.422852, 44.809122 ], [ 111.840820, 45.120053 ], [ 111.313477, 44.465151 ], [ 111.665039, 44.087585 ], [ 111.796875, 43.771094 ], [ 111.093750, 43.421009 ], [ 110.390625, 42.875964 ], [ 109.204102, 42.520700 ], [ 107.709961, 42.488302 ], [ 106.127930, 42.163403 ], [ 104.941406, 41.607228 ], [ 104.501953, 41.934977 ], [ 103.271484, 41.934977 ], [ 101.821289, 42.520700 ], [ 100.810547, 42.682435 ], [ 99.492188, 42.553080 ], [ 97.426758, 42.779275 ], [ 96.328125, 42.747012 ], [ 95.756836, 43.325178 ], [ 95.273438, 44.245199 ], [ 94.658203, 44.370987 ], [ 93.471680, 44.995883 ], [ 90.922852, 45.305803 ], [ 90.571289, 45.736860 ], [ 90.966797, 46.890232 ], [ 90.263672, 47.694974 ], [ 88.813477, 48.078079 ], [ 87.978516, 48.603858 ], [ 87.714844, 49.325122 ], [ 88.769531, 49.496675 ], [ 90.703125, 50.345460 ], [ 92.197266, 50.819818 ], [ 93.076172, 50.513427 ], [ 94.130859, 50.485474 ], [ 94.790039, 50.035974 ], [ 95.800781, 49.979488 ], [ 97.250977, 49.752880 ], [ 98.217773, 50.429518 ], [ 97.822266, 51.013755 ], [ 98.833008, 52.052490 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.107422, 20.427013 ], [ 100.546875, 20.138470 ], [ 100.590820, 19.518375 ], [ 101.250000, 19.476950 ], [ 101.030273, 18.437925 ], [ 101.030273, 17.518344 ], [ 102.084961, 18.145852 ], [ 102.392578, 17.936929 ], [ 102.963867, 17.978733 ], [ 103.183594, 18.312811 ], [ 103.930664, 18.271086 ], [ 104.677734, 17.434511 ], [ 104.765625, 16.467695 ], [ 105.556641, 15.580711 ], [ 105.512695, 14.732386 ], [ 105.205078, 14.306969 ], [ 104.238281, 14.434680 ], [ 102.963867, 14.264383 ], [ 102.304688, 13.410994 ], [ 102.568359, 12.211180 ], [ 101.645508, 12.683215 ], [ 100.810547, 12.640338 ], [ 100.942383, 13.453737 ], [ 100.063477, 13.410994 ], [ 99.975586, 12.340002 ], [ 99.140625, 9.968851 ], [ 99.184570, 9.275622 ], [ 99.843750, 9.232249 ], [ 100.239258, 8.320212 ], [ 100.458984, 7.449624 ], [ 100.986328, 6.882800 ], [ 101.601562, 6.751896 ], [ 102.128906, 6.227934 ], [ 101.777344, 5.834616 ], [ 101.118164, 5.703448 ], [ 101.074219, 6.227934 ], [ 100.239258, 6.664608 ], [ 100.063477, 6.489983 ], [ 99.667969, 6.882800 ], [ 99.492188, 7.362467 ], [ 98.481445, 8.407168 ], [ 98.305664, 7.798079 ], [ 98.129883, 8.363693 ], [ 98.217773, 9.015302 ], [ 98.525391, 9.968851 ], [ 99.008789, 10.962764 ], [ 99.580078, 11.910354 ], [ 99.184570, 12.811801 ], [ 99.184570, 13.282719 ], [ 99.096680, 13.838080 ], [ 98.393555, 14.647368 ], [ 98.173828, 15.156974 ], [ 98.525391, 15.326572 ], [ 98.876953, 16.214675 ], [ 98.481445, 16.846605 ], [ 97.822266, 17.602139 ], [ 97.338867, 18.479609 ], [ 97.778320, 18.646245 ], [ 98.217773, 19.725342 ], [ 98.920898, 19.766704 ], [ 99.536133, 20.220966 ], [ 100.107422, 20.427013 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Korea", "sov_a3": "KOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Korea", "adm0_a3": "KOR", "geou_dif": 0, "geounit": "South Korea", "gu_a3": "KOR", "su_dif": 0, "subunit": "South Korea", "su_a3": "KOR", "brk_diff": 0, "name": "Korea", "name_long": "Republic of Korea", "brk_a3": "KOR", "brk_name": "Republic of Korea", "abbrev": "S.K.", "postal": "KR", "formal_en": "Republic of Korea", "name_sort": "Korea, Rep.", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 48508972, "gdp_md_est": 1335000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "KR", "iso_a3": "KOR", "iso_n3": "410", "un_a3": "410", "wb_a2": "KR", "wb_a3": "KOR", "woe_id": -99, "adm0_a3_is": "KOR", "adm0_a3_us": "KOR", "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": 17, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.320312, 38.616870 ], [ 129.199219, 37.439974 ], [ 129.418945, 36.809285 ], [ 129.462891, 35.639441 ], [ 129.067383, 35.101934 ], [ 128.144531, 34.921971 ], [ 127.353516, 34.488448 ], [ 126.474609, 34.415973 ], [ 126.342773, 34.957995 ], [ 126.518555, 35.710838 ], [ 126.079102, 36.738884 ], [ 126.826172, 36.914764 ], [ 126.166992, 37.753344 ], [ 126.210938, 37.857507 ], [ 126.650391, 37.822802 ], [ 127.045898, 38.272689 ], [ 128.188477, 38.376115 ], [ 128.320312, 38.616870 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.094727, 3.732708 ], [ 17.797852, 3.601142 ], [ 18.413086, 3.513421 ], [ 18.369141, 2.943041 ], [ 18.061523, 2.372369 ], [ 17.885742, 1.757537 ], [ 17.753906, 0.878872 ], [ 17.797852, 0.307616 ], [ 17.666016, 0.000000 ], [ 17.490234, -0.703107 ], [ 16.831055, -1.186439 ], [ 16.391602, -1.713612 ], [ 15.952148, -2.679687 ], [ 15.996094, -3.513421 ], [ 11.733398, -3.513421 ], [ 11.821289, -3.425692 ], [ 11.469727, -2.723583 ], [ 11.777344, -2.504085 ], [ 12.480469, -2.372369 ], [ 12.568359, -1.933227 ], [ 13.095703, -2.416276 ], [ 13.974609, -2.460181 ], [ 14.282227, -1.977147 ], [ 14.414062, -1.318243 ], [ 14.282227, -0.527336 ], [ 13.842773, 0.000000 ], [ 14.238281, 1.230374 ], [ 14.018555, 1.406109 ], [ 13.271484, 1.318243 ], [ 12.963867, 1.845384 ], [ 13.051758, 2.284551 ], [ 14.326172, 2.240640 ], [ 15.908203, 1.757537 ], [ 15.996094, 2.284551 ], [ 16.523438, 3.206333 ], [ 17.094727, 3.732708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Papua New Guinea", "sov_a3": "PNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Papua New Guinea", "adm0_a3": "PNG", "geou_dif": 0, "geounit": "Papua New Guinea", "gu_a3": "PNG", "su_dif": 1, "subunit": "Papua New Guinea", "su_a3": "PN1", "brk_diff": 0, "name": "Papua New Guinea", "name_long": "Papua New Guinea", "brk_a3": "PN1", "brk_name": "Papua New Guinea", "abbrev": "P.N.G.", "postal": "PG", "formal_en": "Independent State of Papua New Guinea", "name_sort": "Papua New Guinea", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 6057263, "gdp_md_est": 13210, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PG", "iso_a3": "PNG", "iso_n3": "598", "un_a3": "598", "wb_a2": "PG", "wb_a3": "PNG", "woe_id": -99, "adm0_a3_is": "PNG", "adm0_a3_us": "PNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 16, "long_len": 16, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.976562, -2.591889 ], [ 143.437500, -3.513421 ], [ 140.976562, -3.513421 ], [ 140.976562, -2.591889 ] ] ], [ [ [ 150.908203, -2.460181 ], [ 152.226562, -3.206333 ], [ 152.490234, -3.513421 ], [ 152.006836, -3.513421 ], [ 151.347656, -3.030812 ], [ 150.644531, -2.723583 ], [ 150.908203, -2.460181 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "El Salvador", "sov_a3": "SLV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "El Salvador", "adm0_a3": "SLV", "geou_dif": 0, "geounit": "El Salvador", "gu_a3": "SLV", "su_dif": 0, "subunit": "El Salvador", "su_a3": "SLV", "brk_diff": 0, "name": "El Salvador", "name_long": "El Salvador", "brk_a3": "SLV", "brk_name": "El Salvador", "abbrev": "El. S.", "postal": "SV", "formal_en": "Republic of El Salvador", "name_sort": "El Salvador", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 8, "pop_est": 7185218, "gdp_md_est": 43630, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SV", "iso_a3": "SLV", "iso_n3": "222", "un_a3": "222", "wb_a2": "SV", "wb_a3": "SLV", "woe_id": -99, "adm0_a3_is": "SLV", "adm0_a3_us": "SLV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 11, "long_len": 11, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.362793, 14.434680 ], [ -89.077148, 14.349548 ], [ -88.857422, 14.157882 ], [ -88.549805, 13.987376 ], [ -88.505859, 13.859414 ], [ -88.242188, 13.923404 ], [ -88.242188, 13.175771 ], [ -88.483887, 13.175771 ], [ -88.857422, 13.261333 ], [ -89.274902, 13.475106 ], [ -89.824219, 13.539201 ], [ -90.000000, 13.667338 ], [ -90.109863, 13.752725 ], [ -90.065918, 13.902076 ], [ -90.000000, 13.944730 ], [ -89.538574, 14.264383 ], [ -89.604492, 14.370834 ], [ -89.362793, 14.434680 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.509535 ], [ -68.642578, -52.629729 ], [ -68.642578, -54.863963 ], [ -67.565918, -54.863963 ], [ -66.972656, -54.889246 ], [ -67.302246, -55.291628 ], [ -68.159180, -55.603178 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.491304 ], [ -69.960938, -55.191412 ], [ -71.015625, -55.053203 ], [ -72.268066, -54.482805 ], [ -73.300781, -53.956086 ], [ -74.663086, -52.829321 ], [ -73.850098, -53.041213 ], [ -72.443848, -53.709714 ], [ -71.125488, -54.072283 ], [ -70.598145, -53.605544 ], [ -70.268555, -52.922151 ], [ -69.345703, -52.509535 ] ] ], [ [ [ -69.609375, -17.560247 ], [ -69.104004, -18.250220 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.394068 ], [ -68.774414, -20.365228 ], [ -68.225098, -21.493964 ], [ -67.829590, -22.857195 ], [ -67.126465, -22.735657 ], [ -66.994629, -22.978624 ], [ -67.346191, -24.006326 ], [ -68.422852, -24.507143 ], [ -68.400879, -26.175159 ], [ -68.598633, -26.490240 ], [ -68.312988, -26.882880 ], [ -69.016113, -27.508271 ], [ -69.675293, -28.459033 ], [ -70.026855, -29.363027 ], [ -69.938965, -30.334954 ], [ -70.554199, -31.353637 ], [ -70.092773, -33.082337 ], [ -69.829102, -33.266250 ], [ -69.829102, -34.179998 ], [ -70.400391, -35.155846 ], [ -70.378418, -35.995785 ], [ -71.125488, -36.650793 ], [ -71.125488, -37.561997 ], [ -70.817871, -38.548165 ], [ -71.433105, -38.908133 ], [ -71.696777, -39.791655 ], [ -71.916504, -40.830437 ], [ -71.762695, -42.049293 ], [ -72.158203, -42.244785 ], [ -71.916504, -43.405047 ], [ -71.477051, -43.786958 ], [ -71.806641, -44.197959 ], [ -71.345215, -44.402392 ], [ -71.235352, -44.777936 ], [ -71.674805, -44.964798 ], [ -71.564941, -45.552525 ], [ -71.938477, -46.875213 ], [ -72.465820, -47.724545 ], [ -72.333984, -48.239309 ], [ -72.663574, -48.864715 ], [ -73.432617, -49.310799 ], [ -73.344727, -50.373496 ], [ -72.993164, -50.736455 ], [ -72.312012, -50.666872 ], [ -72.333984, -51.412912 ], [ -71.916504, -51.998410 ], [ -69.499512, -52.133488 ], [ -68.576660, -52.295042 ], [ -69.477539, -52.281602 ], [ -69.960938, -52.536273 ], [ -70.861816, -52.895649 ], [ -71.015625, -53.826597 ], [ -71.433105, -53.852527 ], [ -72.575684, -53.527248 ], [ -73.718262, -52.829321 ], [ -74.948730, -52.254709 ], [ -75.278320, -51.618017 ], [ -74.992676, -51.041394 ], [ -75.498047, -50.373496 ], [ -75.629883, -48.661943 ], [ -75.190430, -47.709762 ], [ -74.135742, -46.935261 ], [ -75.651855, -46.634351 ], [ -74.707031, -45.752193 ], [ -74.355469, -44.087585 ], [ -73.256836, -44.449468 ], [ -72.729492, -42.374778 ], [ -73.410645, -42.114524 ], [ -73.718262, -43.357138 ], [ -74.333496, -43.213183 ], [ -74.025879, -41.787697 ], [ -73.696289, -39.926588 ], [ -73.234863, -39.249271 ], [ -73.520508, -38.272689 ], [ -73.608398, -37.142803 ], [ -73.168945, -37.107765 ], [ -72.553711, -35.496456 ], [ -71.872559, -33.906896 ], [ -71.455078, -32.417066 ], [ -71.674805, -30.902225 ], [ -71.389160, -30.088108 ], [ -71.499023, -28.844674 ], [ -70.905762, -27.625140 ], [ -70.729980, -25.700938 ], [ -70.092773, -21.391705 ], [ -70.180664, -19.746024 ], [ -70.378418, -18.333669 ], [ -69.873047, -18.083201 ], [ -69.609375, -17.560247 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Uruguay", "sov_a3": "URY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uruguay", "adm0_a3": "URY", "geou_dif": 0, "geounit": "Uruguay", "gu_a3": "URY", "su_dif": 0, "subunit": "Uruguay", "su_a3": "URY", "brk_diff": 0, "name": "Uruguay", "name_long": "Uruguay", "brk_a3": "URY", "brk_name": "Uruguay", "abbrev": "Ury.", "postal": "UY", "formal_en": "Oriental Republic of Uruguay", "name_sort": "Uruguay", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 3494382, "gdp_md_est": 43160, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "UY", "iso_a3": "URY", "iso_n3": "858", "un_a3": "858", "wb_a2": "UY", "wb_a3": "URY", "woe_id": -99, "adm0_a3_is": "URY", "adm0_a3_us": "URY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.997070, -30.107118 ], [ -55.986328, -30.864510 ], [ -55.612793, -30.845647 ], [ -54.580078, -31.484893 ], [ -53.789062, -32.045333 ], [ -53.217773, -32.713355 ], [ -53.657227, -33.192731 ], [ -53.393555, -33.760882 ], [ -53.811035, -34.379713 ], [ -54.953613, -34.939985 ], [ -55.678711, -34.741612 ], [ -56.228027, -34.849875 ], [ -57.150879, -34.415973 ], [ -57.832031, -34.452218 ], [ -58.447266, -33.906896 ], [ -58.359375, -33.247876 ], [ -58.139648, -33.027088 ], [ -58.161621, -32.026706 ], [ -57.875977, -31.015279 ], [ -57.634277, -30.202114 ], [ -56.997070, -30.107118 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "The Bahamas", "sov_a3": "BHS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "The Bahamas", "adm0_a3": "BHS", "geou_dif": 0, "geounit": "The Bahamas", "gu_a3": "BHS", "su_dif": 0, "subunit": "The Bahamas", "su_a3": "BHS", "brk_diff": 0, "name": "Bahamas", "name_long": "Bahamas", "brk_a3": "BHS", "brk_name": "Bahamas", "abbrev": "Bhs.", "postal": "BS", "formal_en": "Commonwealth of the Bahamas", "name_sort": "Bahamas, The", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 309156, "gdp_md_est": 9093, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BS", "iso_a3": "BHS", "iso_n3": "044", "un_a3": "044", "wb_a2": "BS", "wb_a3": "BHS", "woe_id": -99, "adm0_a3_is": "BHS", "adm0_a3_us": "BHS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.200684, 25.224820 ], [ -77.893066, 25.185059 ], [ -77.541504, 24.347097 ], [ -77.541504, 23.765237 ], [ -77.783203, 23.725012 ], [ -78.046875, 24.287027 ], [ -78.420410, 24.587090 ], [ -78.200684, 25.224820 ] ] ], [ [ [ -77.805176, 27.059126 ], [ -77.014160, 26.608174 ], [ -77.189941, 25.898762 ], [ -77.365723, 26.017298 ], [ -77.343750, 26.549223 ], [ -77.805176, 26.941660 ], [ -77.805176, 27.059126 ] ] ], [ [ [ -78.530273, 26.882880 ], [ -77.871094, 26.843677 ], [ -77.827148, 26.588527 ], [ -78.925781, 26.431228 ], [ -78.991699, 26.804461 ], [ -78.530273, 26.882880 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cuba", "sov_a3": "CUB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cuba", "adm0_a3": "CUB", "geou_dif": 0, "geounit": "Cuba", "gu_a3": "CUB", "su_dif": 0, "subunit": "Cuba", "su_a3": "CUB", "brk_diff": 0, "name": "Cuba", "name_long": "Cuba", "brk_a3": "CUB", "brk_name": "Cuba", "abbrev": "Cuba", "postal": "CU", "formal_en": "Republic of Cuba", "name_sort": "Cuba", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 11451652, "gdp_md_est": 108200, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CU", "iso_a3": "CUB", "iso_n3": "192", "un_a3": "192", "wb_a2": "CU", "wb_a3": "CUB", "woe_id": -99, "adm0_a3_is": "CUB", "adm0_a3_us": "CUB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.287598, 23.200961 ], [ -81.408691, 23.120154 ], [ -80.639648, 23.120154 ], [ -79.694824, 22.776182 ], [ -79.299316, 22.411029 ], [ -78.354492, 22.512557 ], [ -76.530762, 21.207459 ], [ -76.201172, 21.227942 ], [ -75.607910, 21.022983 ], [ -75.673828, 20.735566 ], [ -74.948730, 20.694462 ], [ -74.179688, 20.303418 ], [ -74.311523, 20.055931 ], [ -74.970703, 19.932041 ], [ -75.651855, 19.890723 ], [ -76.333008, 19.973349 ], [ -77.761230, 19.870060 ], [ -77.102051, 20.427013 ], [ -77.497559, 20.673905 ], [ -78.156738, 20.756114 ], [ -78.486328, 21.043491 ], [ -78.728027, 21.616579 ], [ -79.299316, 21.575719 ], [ -80.222168, 21.841105 ], [ -80.529785, 22.044913 ], [ -81.826172, 22.207749 ], [ -82.177734, 22.390714 ], [ -81.804199, 22.654572 ], [ -82.792969, 22.695120 ], [ -83.496094, 22.187405 ], [ -83.913574, 22.167058 ], [ -84.067383, 21.922663 ], [ -84.550781, 21.820708 ], [ -84.990234, 21.902278 ], [ -84.462891, 22.207749 ], [ -84.243164, 22.573438 ], [ -83.781738, 22.796439 ], [ -83.276367, 22.998852 ], [ -82.529297, 23.079732 ], [ -82.287598, 23.200961 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Dominican Republic", "sov_a3": "DOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Dominican Republic", "adm0_a3": "DOM", "geou_dif": 0, "geounit": "Dominican Republic", "gu_a3": "DOM", "su_dif": 0, "subunit": "Dominican Republic", "su_a3": "DOM", "brk_diff": 0, "name": "Dominican Rep.", "name_long": "Dominican Republic", "brk_a3": "DOM", "brk_name": "Dominican Rep.", "abbrev": "Dom. Rep.", "postal": "DO", "formal_en": "Dominican Republic", "name_sort": "Dominican Republic", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 9650054, "gdp_md_est": 78000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DO", "iso_a3": "DOM", "iso_n3": "214", "un_a3": "214", "wb_a2": "DO", "wb_a3": "DOM", "woe_id": -99, "adm0_a3_is": "DOM", "adm0_a3_us": "DOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 14, "long_len": 18, "abbrev_len": 9, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.817871, 19.890723 ], [ -70.224609, 19.642588 ], [ -69.960938, 19.663280 ], [ -69.785156, 19.311143 ], [ -69.235840, 19.331878 ], [ -69.257812, 19.020577 ], [ -68.818359, 18.999803 ], [ -68.334961, 18.625425 ], [ -68.708496, 18.208480 ], [ -69.169922, 18.437925 ], [ -69.631348, 18.396230 ], [ -69.960938, 18.437925 ], [ -70.136719, 18.250220 ], [ -70.532227, 18.187607 ], [ -70.686035, 18.437925 ], [ -71.015625, 18.291950 ], [ -71.411133, 17.602139 ], [ -71.674805, 17.769612 ], [ -71.718750, 18.062312 ], [ -71.696777, 18.333669 ], [ -71.960449, 18.625425 ], [ -71.718750, 18.791918 ], [ -71.630859, 19.186678 ], [ -71.718750, 19.725342 ], [ -71.608887, 19.890723 ], [ -70.817871, 19.890723 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Guyana", "sov_a3": "GUY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guyana", "adm0_a3": "GUY", "geou_dif": 0, "geounit": "Guyana", "gu_a3": "GUY", "su_dif": 0, "subunit": "Guyana", "su_a3": "GUY", "brk_diff": 0, "name": "Guyana", "name_long": "Guyana", "brk_a3": "GUY", "brk_name": "Guyana", "abbrev": "Guy.", "postal": "GY", "formal_en": "Co-operative Republic of Guyana", "name_sort": "Guyana", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 772298, "gdp_md_est": 2966, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GY", "iso_a3": "GUY", "iso_n3": "328", "un_a3": "328", "wb_a2": "GY", "wb_a3": "GUY", "woe_id": -99, "adm0_a3_is": "GUY", "adm0_a3_us": "GUY", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.765625, 8.385431 ], [ -59.106445, 8.015716 ], [ -58.491211, 7.362467 ], [ -58.469238, 6.839170 ], [ -58.095703, 6.817353 ], [ -57.150879, 5.987607 ], [ -57.326660, 5.090944 ], [ -57.919922, 4.828260 ], [ -57.875977, 4.587376 ], [ -58.051758, 4.061536 ], [ -57.612305, 3.337954 ], [ -57.282715, 3.337954 ], [ -57.150879, 2.789425 ], [ -56.557617, 1.911267 ], [ -56.799316, 1.867345 ], [ -57.348633, 1.955187 ], [ -57.678223, 1.691649 ], [ -58.117676, 1.515936 ], [ -58.447266, 1.472006 ], [ -58.557129, 1.274309 ], [ -59.040527, 1.318243 ], [ -59.655762, 1.801461 ], [ -59.721680, 2.262595 ], [ -59.985352, 2.767478 ], [ -59.831543, 3.623071 ], [ -59.545898, 3.973861 ], [ -59.787598, 4.434044 ], [ -60.117188, 4.587376 ], [ -59.985352, 5.025283 ], [ -60.227051, 5.266008 ], [ -60.754395, 5.200365 ], [ -61.413574, 5.965754 ], [ -61.149902, 6.249776 ], [ -61.171875, 6.708254 ], [ -60.556641, 6.860985 ], [ -60.314941, 7.057282 ], [ -60.644531, 7.427837 ], [ -60.556641, 7.798079 ], [ -59.765625, 8.385431 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -53.964844, 5.769036 ], [ -52.888184, 5.419148 ], [ -51.833496, 4.587376 ], [ -51.679688, 4.171115 ], [ -52.250977, 3.250209 ], [ -52.558594, 2.526037 ], [ -52.954102, 2.130856 ], [ -53.437500, 2.064982 ], [ -53.569336, 2.350415 ], [ -53.789062, 2.394322 ], [ -54.096680, 2.108899 ], [ -54.536133, 2.328460 ], [ -54.272461, 2.745531 ], [ -54.184570, 3.206333 ], [ -54.030762, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.492188, 4.915833 ], [ -53.964844, 5.769036 ] ] ], [ [ [ 1.757812, 50.986099 ], [ 1.757812, 42.374778 ], [ 0.681152, 42.811522 ], [ 0.329590, 42.585444 ], [ -1.516113, 43.036776 ], [ -1.911621, 43.436966 ], [ -1.384277, 44.024422 ], [ -1.208496, 46.027482 ], [ -2.241211, 47.070122 ], [ -2.966309, 47.576526 ], [ -4.504395, 47.960502 ], [ -4.614258, 48.690960 ], [ -3.295898, 48.908059 ], [ -1.625977, 48.647428 ], [ -1.933594, 49.781264 ], [ -1.010742, 49.353756 ], [ 0.000000, 49.681847 ], [ 1.318359, 50.134664 ], [ 1.625977, 50.958427 ], [ 1.757812, 50.986099 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "name_sort": "Senegal", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.589844, 16.615138 ], [ -14.106445, 16.320139 ], [ -13.447266, 16.045813 ], [ -12.832031, 15.305380 ], [ -12.172852, 14.626109 ], [ -12.128906, 14.008696 ], [ -11.931152, 13.432367 ], [ -11.557617, 13.154376 ], [ -11.469727, 12.768946 ], [ -11.535645, 12.447305 ], [ -11.667480, 12.404389 ], [ -12.216797, 12.468760 ], [ -12.282715, 12.361466 ], [ -12.502441, 12.340002 ], [ -13.227539, 12.576010 ], [ -15.556641, 12.640338 ], [ -15.820312, 12.533115 ], [ -16.149902, 12.554564 ], [ -16.699219, 12.404389 ], [ -16.853027, 13.154376 ], [ -15.952148, 13.132979 ], [ -15.710449, 13.282719 ], [ -15.512695, 13.282719 ], [ -15.161133, 13.517838 ], [ -14.721680, 13.304103 ], [ -14.282227, 13.282719 ], [ -13.864746, 13.517838 ], [ -14.062500, 13.795406 ], [ -14.392090, 13.645987 ], [ -14.699707, 13.645987 ], [ -15.095215, 13.880746 ], [ -15.402832, 13.880746 ], [ -15.644531, 13.624633 ], [ -16.721191, 13.603278 ], [ -17.138672, 14.392118 ], [ -17.644043, 14.732386 ], [ -17.204590, 14.923554 ], [ -16.721191, 15.623037 ], [ -16.479492, 16.151369 ], [ -16.127930, 16.467695 ], [ -15.644531, 16.383391 ], [ -15.139160, 16.594081 ], [ -14.589844, 16.615138 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.701172, 27.410786 ], [ -4.943848, 24.986058 ], [ -6.459961, 24.966140 ], [ -5.493164, 16.341226 ], [ -5.317383, 16.214675 ], [ -5.559082, 15.517205 ], [ -9.558105, 15.496032 ], [ -9.711914, 15.284185 ], [ -10.107422, 15.347762 ], [ -10.656738, 15.135764 ], [ -11.359863, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.843262, 14.817371 ], [ -12.172852, 14.626109 ], [ -12.832031, 15.305380 ], [ -13.447266, 16.045813 ], [ -14.106445, 16.320139 ], [ -14.589844, 16.615138 ], [ -15.139160, 16.594081 ], [ -15.644531, 16.383391 ], [ -16.127930, 16.467695 ], [ -16.479492, 16.151369 ], [ -16.567383, 16.678293 ], [ -16.281738, 17.182779 ], [ -16.149902, 18.124971 ], [ -16.259766, 19.103648 ], [ -16.391602, 19.601194 ], [ -16.281738, 20.097206 ], [ -16.545410, 20.571082 ], [ -17.072754, 21.002471 ], [ -16.853027, 21.350781 ], [ -12.941895, 21.330315 ], [ -13.139648, 22.776182 ], [ -12.875977, 23.301901 ], [ -11.953125, 23.382598 ], [ -11.975098, 25.938287 ], [ -8.701172, 25.898762 ], [ -8.701172, 27.410786 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.113727 ], [ 0.000000, 11.027472 ], [ 0.021973, 11.027472 ], [ 0.000000, 10.919618 ], [ -0.065918, 10.725381 ], [ 0.000000, 10.660608 ], [ 0.351562, 10.206813 ], [ 0.351562, 9.470736 ], [ 0.439453, 8.689639 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.427837 ], [ 0.549316, 6.926427 ], [ 0.834961, 6.293459 ], [ 1.054688, 5.943900 ], [ -0.527344, 5.353521 ], [ -1.076660, 5.003394 ], [ -1.977539, 4.718778 ], [ -2.856445, 5.003394 ], [ -2.812500, 5.397273 ], [ -3.251953, 6.271618 ], [ -2.988281, 7.384258 ], [ -2.570801, 8.233237 ], [ -2.966309, 10.401378 ], [ -2.944336, 10.962764 ], [ -1.208496, 11.027472 ], [ -0.769043, 10.941192 ], [ -0.439453, 11.113727 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.757812, 15.347762 ], [ 1.757812, 12.726084 ], [ 1.010742, 12.854649 ], [ 0.988770, 13.346865 ], [ 0.417480, 14.008696 ], [ 0.285645, 14.455958 ], [ 0.373535, 14.944785 ], [ 1.010742, 14.987240 ], [ 1.384277, 15.326572 ], [ 1.757812, 15.347762 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.109863, 1.757537 ], [ 44.055176, 1.054628 ], [ 43.132324, 0.307616 ], [ 42.868652, 0.000000 ], [ 42.033691, -0.900842 ], [ 41.791992, -1.428075 ], [ 41.572266, -1.669686 ], [ 40.979004, -0.856902 ], [ 40.979004, 1.757537 ], [ 45.109863, 1.757537 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Namibia", "sov_a3": "NAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Namibia", "adm0_a3": "NAM", "geou_dif": 0, "geounit": "Namibia", "gu_a3": "NAM", "su_dif": 0, "subunit": "Namibia", "su_a3": "NAM", "brk_diff": 0, "name": "Namibia", "name_long": "Namibia", "brk_a3": "NAM", "brk_name": "Namibia", "abbrev": "Nam.", "postal": "NA", "formal_en": "Republic of Namibia", "name_sort": "Namibia", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 2108665, "gdp_md_est": 13250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "NA", "iso_a3": "NAM", "iso_n3": "516", "un_a3": "516", "wb_a2": "NA", "wb_a3": "NAM", "woe_id": -99, "adm0_a3_is": "NAM", "adm0_a3_us": "NAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.810059, -16.930705 ], [ 13.447266, -16.951724 ], [ 14.040527, -17.413546 ], [ 14.194336, -17.350638 ], [ 18.259277, -17.308688 ], [ 18.940430, -17.769612 ], [ 21.357422, -17.916023 ], [ 23.203125, -17.518344 ], [ 24.016113, -17.287709 ], [ 24.675293, -17.350638 ], [ 25.070801, -17.560247 ], [ 25.070801, -17.644022 ], [ 24.499512, -17.874203 ], [ 24.213867, -17.874203 ], [ 23.576660, -18.271086 ], [ 23.181152, -17.853290 ], [ 21.643066, -18.208480 ], [ 20.895996, -18.250220 ], [ 20.874023, -21.800308 ], [ 19.885254, -21.841105 ], [ 19.885254, -28.459033 ], [ 18.984375, -28.960089 ], [ 18.457031, -29.036961 ], [ 17.819824, -28.844674 ], [ 17.380371, -28.767659 ], [ 17.204590, -28.343065 ], [ 16.809082, -28.071980 ], [ 16.325684, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.205078, -27.078692 ], [ 14.985352, -26.115986 ], [ 14.721680, -25.383735 ], [ 14.392090, -23.845650 ], [ 14.370117, -22.654572 ], [ 14.238281, -22.105999 ], [ 13.864746, -21.698265 ], [ 13.337402, -20.858812 ], [ 12.810059, -19.663280 ], [ 12.590332, -19.041349 ], [ 11.777344, -18.062312 ], [ 11.733398, -17.287709 ], [ 12.194824, -17.098792 ], [ 12.810059, -16.930705 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "United Republic of Tanzania", "sov_a3": "TZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Republic of Tanzania", "adm0_a3": "TZA", "geou_dif": 0, "geounit": "Tanzania", "gu_a3": "TZA", "su_dif": 0, "subunit": "Tanzania", "su_a3": "TZA", "brk_diff": 0, "name": "Tanzania", "name_long": "Tanzania", "brk_a3": "TZA", "brk_name": "Tanzania", "abbrev": "Tanz.", "postal": "TZ", "formal_en": "United Republic of Tanzania", "name_sort": "Tanzania", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 41048532, "gdp_md_est": 54250, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TZ", "iso_a3": "TZA", "iso_n3": "834", "un_a3": "834", "wb_a2": "TZ", "wb_a3": "TZA", "woe_id": -99, "adm0_a3_is": "TZA", "adm0_a3_us": "TZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.881836, -0.944781 ], [ 37.683105, -3.096636 ], [ 37.749023, -3.666928 ], [ 39.199219, -4.674980 ], [ 38.737793, -5.900189 ], [ 38.781738, -6.468151 ], [ 39.418945, -6.839170 ], [ 39.462891, -7.079088 ], [ 39.177246, -7.689217 ], [ 39.243164, -7.993957 ], [ 39.177246, -8.472372 ], [ 39.528809, -9.102097 ], [ 39.946289, -10.077037 ], [ 40.297852, -10.314919 ], [ 39.506836, -10.876465 ], [ 38.408203, -11.264612 ], [ 37.814941, -11.264612 ], [ 37.463379, -11.566144 ], [ 36.760254, -11.587669 ], [ 36.496582, -11.716788 ], [ 35.310059, -11.436955 ], [ 34.541016, -11.501557 ], [ 34.277344, -10.141932 ], [ 33.728027, -9.405710 ], [ 32.739258, -9.210560 ], [ 32.189941, -8.928487 ], [ 31.552734, -8.754795 ], [ 31.157227, -8.581021 ], [ 30.739746, -8.320212 ], [ 30.190430, -7.079088 ], [ 29.619141, -6.511815 ], [ 29.399414, -5.922045 ], [ 29.509277, -5.419148 ], [ 29.333496, -4.499762 ], [ 29.750977, -4.434044 ], [ 30.102539, -4.083453 ], [ 30.498047, -3.557283 ], [ 30.739746, -3.337954 ], [ 30.739746, -3.030812 ], [ 30.520020, -2.789425 ], [ 30.454102, -2.394322 ], [ 30.739746, -2.284551 ], [ 30.805664, -1.691649 ], [ 30.410156, -1.120534 ], [ 30.761719, -1.010690 ], [ 31.860352, -1.010690 ], [ 33.881836, -0.944781 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Swaziland", "sov_a3": "SWZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Swaziland", "adm0_a3": "SWZ", "geou_dif": 0, "geounit": "Swaziland", "gu_a3": "SWZ", "su_dif": 0, "subunit": "Swaziland", "su_a3": "SWZ", "brk_diff": 0, "name": "Swaziland", "name_long": "Swaziland", "brk_a3": "SWZ", "brk_name": "Swaziland", "abbrev": "Swz.", "postal": "SW", "formal_en": "Kingdom of Swaziland", "name_sort": "Swaziland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 1123913, "gdp_md_est": 5702, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SZ", "iso_a3": "SWZ", "iso_n3": "748", "un_a3": "748", "wb_a2": "SZ", "wb_a3": "SWZ", "woe_id": -99, "adm0_a3_is": "SWZ", "adm0_a3_us": "SWZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.333008, -25.641526 ], [ 31.816406, -25.839449 ], [ 31.970215, -26.273714 ], [ 32.058105, -26.725987 ], [ 31.860352, -27.176469 ], [ 31.267090, -27.274161 ], [ 30.673828, -26.725987 ], [ 30.673828, -26.391870 ], [ 30.937500, -26.017298 ], [ 31.025391, -25.720735 ], [ 31.333008, -25.641526 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.527344, 15.135764 ], [ -0.285645, 14.944785 ], [ 0.373535, 14.944785 ], [ 0.285645, 14.455958 ], [ 0.417480, 14.008696 ], [ 0.988770, 13.346865 ], [ 1.010742, 12.854649 ], [ 2.175293, 12.640338 ], [ 2.153320, 11.953349 ], [ 1.933594, 11.652236 ], [ 1.428223, 11.566144 ], [ 1.230469, 11.113727 ], [ 0.878906, 11.005904 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.113727 ], [ -0.769043, 10.941192 ], [ -1.208496, 11.027472 ], [ -1.757812, 11.005904 ], [ -1.757812, 14.668626 ], [ -1.076660, 14.987240 ], [ -0.527344, 15.135764 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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": "Polygon", "coordinates": [ [ [ 23.532715, 67.204032 ], [ 23.554688, 66.513260 ], [ 23.554688, 66.399160 ], [ 23.884277, 66.009086 ], [ 22.170410, 65.730626 ], [ 21.203613, 65.035060 ], [ 21.357422, 64.415921 ], [ 19.775391, 63.616982 ], [ 17.841797, 62.754726 ], [ 17.116699, 61.344078 ], [ 17.819824, 60.640876 ], [ 18.786621, 60.086763 ], [ 17.863770, 58.961340 ], [ 16.809082, 58.722599 ], [ 16.435547, 57.052682 ], [ 15.864258, 56.108810 ], [ 14.655762, 56.206704 ], [ 14.084473, 55.416544 ], [ 12.941895, 55.366625 ], [ 12.612305, 56.316537 ], [ 11.777344, 57.444949 ], [ 11.008301, 58.859224 ], [ 11.447754, 59.433903 ], [ 12.282715, 60.119619 ], [ 12.612305, 61.301902 ], [ 11.975098, 61.804284 ], [ 11.909180, 63.134503 ], [ 12.568359, 64.072200 ], [ 13.557129, 64.052978 ], [ 13.908691, 64.453849 ], [ 13.535156, 64.792848 ], [ 15.095215, 66.196009 ], [ 15.380859, 66.513260 ], [ 15.996094, 67.204032 ], [ 23.532715, 67.204032 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Switzerland", "sov_a3": "CHE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Switzerland", "adm0_a3": "CHE", "geou_dif": 0, "geounit": "Switzerland", "gu_a3": "CHE", "su_dif": 0, "subunit": "Switzerland", "su_a3": "CHE", "brk_diff": 0, "name": "Switzerland", "name_long": "Switzerland", "brk_a3": "CHE", "brk_name": "Switzerland", "abbrev": "Switz.", "postal": "CH", "formal_en": "Swiss Confederation", "name_sort": "Switzerland", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 7604467, "gdp_md_est": 316700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CH", "iso_a3": "CHE", "iso_n3": "756", "un_a3": "756", "wb_a2": "CH", "wb_a3": "CHE", "woe_id": -99, "adm0_a3_is": "CHE", "adm0_a3_us": "CHE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 11, "long_len": 11, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.503418, 47.842658 ], [ 9.580078, 47.532038 ], [ 9.624023, 47.353711 ], [ 9.470215, 47.115000 ], [ 9.931641, 46.935261 ], [ 10.437012, 46.905246 ], [ 10.349121, 46.498392 ], [ 9.909668, 46.316584 ], [ 9.162598, 46.452997 ], [ 8.964844, 46.042736 ], [ 8.481445, 46.012224 ], [ 8.305664, 46.164614 ], [ 7.734375, 45.828799 ], [ 7.272949, 45.782848 ], [ 6.833496, 45.996962 ], [ 6.481934, 46.437857 ], [ 6.020508, 46.286224 ], [ 6.020508, 46.739861 ], [ 6.767578, 47.294134 ], [ 6.723633, 47.546872 ], [ 7.185059, 47.457809 ], [ 7.448730, 47.620975 ], [ 8.305664, 47.620975 ], [ 8.503418, 47.842658 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.512695, 38.238180 ], [ 15.139160, 37.457418 ], [ 15.292969, 37.142803 ], [ 15.095215, 36.633162 ], [ 14.326172, 37.002553 ], [ 13.820801, 37.107765 ], [ 12.414551, 37.614231 ], [ 12.568359, 38.134557 ], [ 13.732910, 38.048091 ], [ 15.512695, 38.238180 ] ] ], [ [ [ 12.150879, 47.129951 ], [ 12.370605, 46.769968 ], [ 13.798828, 46.513516 ], [ 13.688965, 46.027482 ], [ 13.930664, 45.598666 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.370605, 44.887012 ], [ 12.260742, 44.606113 ], [ 12.568359, 44.103365 ], [ 13.513184, 43.596306 ], [ 14.018555, 42.763146 ], [ 15.139160, 41.967659 ], [ 15.908203, 41.967659 ], [ 16.149902, 41.754922 ], [ 15.886230, 41.541478 ], [ 17.512207, 40.880295 ], [ 18.369141, 40.363288 ], [ 18.479004, 40.178873 ], [ 18.281250, 39.825413 ], [ 17.731934, 40.279526 ], [ 16.853027, 40.446947 ], [ 16.435547, 39.808536 ], [ 17.160645, 39.436193 ], [ 17.050781, 38.908133 ], [ 16.633301, 38.856820 ], [ 16.083984, 37.996163 ], [ 15.666504, 37.909534 ], [ 15.666504, 38.220920 ], [ 15.886230, 38.754083 ], [ 16.105957, 38.976492 ], [ 15.402832, 40.061257 ], [ 14.985352, 40.178873 ], [ 14.699707, 40.613952 ], [ 14.040527, 40.797177 ], [ 13.623047, 41.195190 ], [ 12.875977, 41.261291 ], [ 12.084961, 41.705729 ], [ 11.184082, 42.358544 ], [ 10.502930, 42.940339 ], [ 10.195312, 43.929550 ], [ 9.689941, 44.040219 ], [ 8.876953, 44.370987 ], [ 8.415527, 44.245199 ], [ 7.844238, 43.771094 ], [ 7.426758, 43.707594 ], [ 7.536621, 44.134913 ], [ 6.987305, 44.260937 ], [ 6.745605, 45.042478 ], [ 7.075195, 45.336702 ], [ 6.789551, 45.721522 ], [ 6.833496, 45.996962 ], [ 7.272949, 45.782848 ], [ 7.734375, 45.828799 ], [ 8.305664, 46.164614 ], [ 8.481445, 46.012224 ], [ 8.964844, 46.042736 ], [ 9.162598, 46.452997 ], [ 9.909668, 46.316584 ], [ 10.349121, 46.498392 ], [ 10.437012, 46.905246 ], [ 11.030273, 46.754917 ], [ 11.162109, 46.950262 ], [ 12.150879, 47.129951 ] ] ], [ [ [ 9.206543, 41.211722 ], [ 9.799805, 40.513799 ], [ 9.667969, 39.181175 ], [ 9.206543, 39.249271 ], [ 8.789062, 38.908133 ], [ 8.415527, 39.181175 ], [ 8.371582, 40.380028 ], [ 8.151855, 40.963308 ], [ 8.701172, 40.913513 ], [ 9.206543, 41.211722 ] ] ] ] } } +, +{ "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.204102, 43.532620 ], [ 19.467773, 43.357138 ], [ 19.621582, 43.229195 ], [ 19.951172, 43.117024 ], [ 20.324707, 42.908160 ], [ 20.061035, 42.601620 ], [ 19.797363, 42.504503 ], [ 19.731445, 42.698586 ], [ 19.291992, 42.195969 ], [ 19.357910, 41.885921 ], [ 19.160156, 41.967659 ], [ 18.874512, 42.293564 ], [ 18.435059, 42.488302 ], [ 18.544922, 42.650122 ], [ 18.698730, 43.213183 ], [ 19.028320, 43.436966 ], [ 19.204102, 43.532620 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.355469, 67.204032 ], [ 29.047852, 66.947274 ], [ 29.487305, 66.513260 ], [ 30.212402, 65.811781 ], [ 29.531250, 64.951465 ], [ 30.432129, 64.206377 ], [ 30.014648, 63.558338 ], [ 31.508789, 62.875188 ], [ 31.135254, 62.359805 ], [ 30.190430, 61.783513 ], [ 28.059082, 60.511343 ], [ 26.235352, 60.424699 ], [ 24.477539, 60.064840 ], [ 22.851562, 59.855851 ], [ 22.280273, 60.392148 ], [ 21.313477, 60.726944 ], [ 21.533203, 61.710706 ], [ 21.049805, 62.613562 ], [ 21.533203, 63.194018 ], [ 22.434082, 63.821288 ], [ 24.719238, 64.904910 ], [ 25.378418, 65.118395 ], [ 25.290527, 65.540270 ], [ 23.884277, 66.009086 ], [ 23.554688, 66.399160 ], [ 23.554688, 66.513260 ], [ 23.532715, 67.204032 ], [ 29.355469, 67.204032 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "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": "Polygon", "coordinates": [ [ [ 26.608887, 48.224673 ], [ 26.916504, 48.136767 ], [ 27.224121, 47.827908 ], [ 27.531738, 47.413220 ], [ 28.125000, 46.815099 ], [ 28.146973, 46.377254 ], [ 28.037109, 45.951150 ], [ 28.212891, 45.490946 ], [ 28.674316, 45.305803 ], [ 29.135742, 45.475540 ], [ 29.597168, 45.305803 ], [ 29.619141, 45.042478 ], [ 29.135742, 44.824708 ], [ 28.828125, 44.918139 ], [ 28.542480, 43.707594 ], [ 27.949219, 43.818675 ], [ 27.224121, 44.182204 ], [ 26.059570, 43.945372 ], [ 25.554199, 43.691708 ], [ 24.082031, 43.755225 ], [ 23.312988, 43.897892 ], [ 22.939453, 43.834527 ], [ 22.653809, 44.245199 ], [ 22.456055, 44.418088 ], [ 22.697754, 44.590467 ], [ 22.456055, 44.715514 ], [ 22.126465, 44.480830 ], [ 21.555176, 44.777936 ], [ 21.467285, 45.182037 ], [ 20.874023, 45.429299 ], [ 20.742188, 45.736860 ], [ 20.214844, 46.134170 ], [ 21.005859, 46.316584 ], [ 21.621094, 46.995241 ], [ 22.082520, 47.680183 ], [ 22.697754, 47.886881 ], [ 23.137207, 48.107431 ], [ 23.752441, 47.989922 ], [ 24.389648, 47.989922 ], [ 24.851074, 47.739323 ], [ 25.202637, 47.901614 ], [ 25.927734, 47.989922 ], [ 26.191406, 48.224673 ], [ 26.608887, 48.224673 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Tunisia", "sov_a3": "TUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tunisia", "adm0_a3": "TUN", "geou_dif": 0, "geounit": "Tunisia", "gu_a3": "TUN", "su_dif": 0, "subunit": "Tunisia", "su_a3": "TUN", "brk_diff": 0, "name": "Tunisia", "name_long": "Tunisia", "brk_a3": "TUN", "brk_name": "Tunisia", "abbrev": "Tun.", "postal": "TN", "formal_en": "Republic of Tunisia", "name_sort": "Tunisia", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 10486339, "gdp_md_est": 81710, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TN", "iso_a3": "TUN", "iso_n3": "788", "un_a3": "788", "wb_a2": "TN", "wb_a3": "TUN", "woe_id": -99, "adm0_a3_is": "TUN", "adm0_a3_us": "TUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.492188, 37.352693 ], [ 10.195312, 37.230328 ], [ 10.173340, 36.738884 ], [ 11.008301, 37.107765 ], [ 11.096191, 36.914764 ], [ 10.590820, 36.421282 ], [ 10.590820, 35.960223 ], [ 10.920410, 35.710838 ], [ 10.788574, 34.849875 ], [ 10.129395, 34.343436 ], [ 10.327148, 33.797409 ], [ 10.854492, 33.779147 ], [ 11.096191, 33.302986 ], [ 11.469727, 33.137551 ], [ 11.425781, 32.379961 ], [ 10.942383, 32.082575 ], [ 10.634766, 31.765537 ], [ 9.931641, 31.391158 ], [ 10.041504, 30.977609 ], [ 9.953613, 30.543339 ], [ 9.470215, 30.315988 ], [ 9.052734, 32.119801 ], [ 8.437500, 32.509762 ], [ 8.415527, 32.750323 ], [ 7.602539, 33.358062 ], [ 7.514648, 34.107256 ], [ 8.129883, 34.669359 ], [ 8.371582, 35.496456 ], [ 8.217773, 36.438961 ], [ 8.415527, 36.949892 ], [ 9.492188, 37.352693 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Benin", "sov_a3": "BEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Benin", "adm0_a3": "BEN", "geou_dif": 0, "geounit": "Benin", "gu_a3": "BEN", "su_dif": 0, "subunit": "Benin", "su_a3": "BEN", "brk_diff": 0, "name": "Benin", "name_long": "Benin", "brk_a3": "BEN", "brk_name": "Benin", "abbrev": "Benin", "postal": "BJ", "formal_en": "Republic of Benin", "name_sort": "Benin", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 8791832, "gdp_md_est": 12830, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BJ", "iso_a3": "BEN", "iso_n3": "204", "un_a3": "204", "wb_a2": "BJ", "wb_a3": "BEN", "woe_id": -99, "adm0_a3_is": "BEN", "adm0_a3_us": "BEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.834473, 12.254128 ], [ 3.603516, 11.673755 ], [ 3.559570, 11.329253 ], [ 3.779297, 10.746969 ], [ 3.581543, 10.336536 ], [ 3.691406, 10.077037 ], [ 3.208008, 9.449062 ], [ 2.900391, 9.145486 ], [ 2.702637, 8.515836 ], [ 2.746582, 7.885147 ], [ 2.680664, 6.271618 ], [ 1.845703, 6.162401 ], [ 1.604004, 6.839170 ], [ 1.647949, 9.145486 ], [ 1.450195, 9.340672 ], [ 1.406250, 9.838979 ], [ 0.769043, 10.487812 ], [ 0.878906, 11.005904 ], [ 1.230469, 11.113727 ], [ 1.428223, 11.566144 ], [ 1.933594, 11.652236 ], [ 2.153320, 11.953349 ], [ 2.482910, 12.254128 ], [ 2.834473, 12.254128 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.851562, 11.156845 ], [ 22.961426, 10.725381 ], [ 23.532715, 10.098670 ], [ 23.554688, 9.687398 ], [ 23.378906, 9.275622 ], [ 23.444824, 8.971897 ], [ 23.796387, 8.667918 ], [ 24.565430, 8.233237 ], [ 25.114746, 7.841615 ], [ 25.114746, 7.514981 ], [ 25.795898, 6.991859 ], [ 26.213379, 6.555475 ], [ 26.455078, 5.965754 ], [ 27.202148, 5.572250 ], [ 27.355957, 5.244128 ], [ 27.026367, 5.134715 ], [ 26.389160, 5.156599 ], [ 25.642090, 5.266008 ], [ 25.268555, 5.178482 ], [ 25.114746, 4.937724 ], [ 24.785156, 4.915833 ], [ 24.389648, 5.112830 ], [ 23.291016, 4.631179 ], [ 22.829590, 4.718778 ], [ 22.697754, 4.653080 ], [ 22.390137, 4.039618 ], [ 21.643066, 4.236856 ], [ 20.917969, 4.324501 ], [ 20.280762, 4.696879 ], [ 19.467773, 5.047171 ], [ 18.918457, 4.718778 ], [ 18.522949, 4.214943 ], [ 18.435059, 3.513421 ], [ 17.797852, 3.579213 ], [ 17.116699, 3.732708 ], [ 16.523438, 3.206333 ], [ 15.996094, 2.284551 ], [ 15.886230, 2.569939 ], [ 15.842285, 3.030812 ], [ 15.402832, 3.337954 ], [ 15.029297, 3.864255 ], [ 14.941406, 4.214943 ], [ 14.458008, 4.740675 ], [ 14.545898, 5.047171 ], [ 14.458008, 5.462896 ], [ 14.523926, 6.227934 ], [ 14.765625, 6.424484 ], [ 15.270996, 7.427837 ], [ 16.105957, 7.514981 ], [ 16.281738, 7.754537 ], [ 16.435547, 7.754537 ], [ 16.699219, 7.514981 ], [ 17.951660, 7.906912 ], [ 18.369141, 8.298470 ], [ 18.896484, 8.646196 ], [ 18.808594, 8.993600 ], [ 19.072266, 9.080400 ], [ 20.039062, 9.015302 ], [ 20.983887, 9.492408 ], [ 21.708984, 10.574222 ], [ 22.214355, 10.984335 ], [ 22.851562, 11.156845 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.156250, 42.049293 ], [ 36.892090, 41.343825 ], [ 38.342285, 40.963308 ], [ 39.506836, 41.112469 ], [ 40.363770, 41.029643 ], [ 41.550293, 41.541478 ], [ 42.604980, 41.590797 ], [ 43.571777, 41.095912 ], [ 43.747559, 40.747257 ], [ 43.637695, 40.262761 ], [ 44.384766, 40.010787 ], [ 44.780273, 39.724089 ], [ 44.099121, 39.436193 ], [ 44.406738, 38.289937 ], [ 44.208984, 37.978845 ], [ 44.758301, 37.177826 ], [ 44.274902, 37.002553 ], [ 43.923340, 37.265310 ], [ 42.758789, 37.387617 ], [ 42.341309, 37.230328 ], [ 41.198730, 37.090240 ], [ 40.671387, 37.107765 ], [ 39.506836, 36.721274 ], [ 38.693848, 36.721274 ], [ 38.166504, 36.914764 ], [ 37.045898, 36.633162 ], [ 36.738281, 36.826875 ], [ 36.672363, 36.261992 ], [ 36.145020, 35.835628 ], [ 35.771484, 36.279707 ], [ 36.145020, 36.650793 ], [ 35.529785, 36.580247 ], [ 34.694824, 36.809285 ], [ 34.013672, 36.226550 ], [ 32.497559, 36.120128 ], [ 31.684570, 36.650793 ], [ 30.607910, 36.686041 ], [ 30.388184, 36.279707 ], [ 29.685059, 36.155618 ], [ 28.718262, 36.686041 ], [ 27.619629, 36.668419 ], [ 27.048340, 37.666429 ], [ 26.301270, 38.220920 ], [ 26.784668, 38.993572 ], [ 26.169434, 39.470125 ], [ 27.268066, 40.430224 ], [ 28.806152, 40.463666 ], [ 29.223633, 41.228249 ], [ 31.135254, 41.095912 ], [ 32.343750, 41.738528 ], [ 33.508301, 42.032974 ], [ 35.156250, 42.049293 ] ] ], [ [ [ 27.114258, 42.147114 ], [ 27.993164, 42.016652 ], [ 28.103027, 41.623655 ], [ 28.981934, 41.310824 ], [ 28.806152, 41.062786 ], [ 27.597656, 41.013066 ], [ 27.180176, 40.697299 ], [ 26.345215, 40.162083 ], [ 26.037598, 40.630630 ], [ 26.037598, 40.830437 ], [ 26.279297, 40.946714 ], [ 26.586914, 41.574361 ], [ 26.103516, 41.836828 ], [ 27.114258, 42.147114 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Jordan", "sov_a3": "JOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Jordan", "adm0_a3": "JOR", "geou_dif": 0, "geounit": "Jordan", "gu_a3": "JOR", "su_dif": 0, "subunit": "Jordan", "su_a3": "JOR", "brk_diff": 0, "name": "Jordan", "name_long": "Jordan", "brk_a3": "JOR", "brk_name": "Jordan", "abbrev": "Jord.", "postal": "J", "formal_en": "Hashemite Kingdom of Jordan", "name_sort": "Jordan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 6342948, "gdp_md_est": 31610, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "JO", "iso_a3": "JOR", "iso_n3": "400", "un_a3": "400", "wb_a2": "JO", "wb_a3": "JOR", "woe_id": -99, "adm0_a3_is": "JOR", "adm0_a3_us": "JOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.781738, 33.394759 ], [ 39.177246, 32.175612 ], [ 39.001465, 32.026706 ], [ 37.001953, 31.522361 ], [ 37.990723, 30.524413 ], [ 37.661133, 30.353916 ], [ 37.485352, 30.012031 ], [ 36.738281, 29.878755 ], [ 36.496582, 29.516110 ], [ 36.057129, 29.209713 ], [ 34.936523, 29.363027 ], [ 34.914551, 29.516110 ], [ 35.419922, 31.109389 ], [ 35.375977, 31.503629 ], [ 35.529785, 31.784217 ], [ 35.529785, 32.398516 ], [ 35.705566, 32.713355 ], [ 36.826172, 32.324276 ], [ 38.781738, 33.394759 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Djibouti", "sov_a3": "DJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Djibouti", "adm0_a3": "DJI", "geou_dif": 0, "geounit": "Djibouti", "gu_a3": "DJI", "su_dif": 0, "subunit": "Djibouti", "su_a3": "DJI", "brk_diff": 0, "name": "Djibouti", "name_long": "Djibouti", "brk_a3": "DJI", "brk_name": "Djibouti", "abbrev": "Dji.", "postal": "DJ", "formal_en": "Republic of Djibouti", "name_sort": "Djibouti", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 516055, "gdp_md_est": 1885, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "DJ", "iso_a3": "DJI", "iso_n3": "262", "un_a3": "262", "wb_a2": "DJ", "wb_a3": "DJI", "woe_id": -99, "adm0_a3_is": "DJI", "adm0_a3_us": "DJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Middle East & North Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.066406, 12.704651 ], [ 43.308105, 12.404389 ], [ 43.286133, 11.996338 ], [ 42.714844, 11.738302 ], [ 43.132324, 11.480025 ], [ 42.758789, 10.941192 ], [ 42.539062, 11.113727 ], [ 42.297363, 11.049038 ], [ 41.748047, 11.070603 ], [ 41.726074, 11.372339 ], [ 41.660156, 11.652236 ], [ 42.341309, 12.554564 ], [ 42.758789, 12.468760 ], [ 43.066406, 12.704651 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.201660, 43.309191 ], [ 75.629883, 42.892064 ], [ 75.981445, 42.988576 ], [ 77.651367, 42.972502 ], [ 79.123535, 42.859860 ], [ 79.628906, 42.504503 ], [ 80.244141, 42.358544 ], [ 80.112305, 42.130821 ], [ 78.530273, 41.590797 ], [ 78.178711, 41.195190 ], [ 76.904297, 41.079351 ], [ 76.508789, 40.430224 ], [ 75.454102, 40.563895 ], [ 74.772949, 40.380028 ], [ 73.806152, 39.909736 ], [ 73.959961, 39.673370 ], [ 73.674316, 39.436193 ], [ 71.784668, 39.283294 ], [ 70.532227, 39.605688 ], [ 69.455566, 39.537940 ], [ 69.543457, 40.111689 ], [ 70.642090, 39.943436 ], [ 70.993652, 40.245992 ], [ 71.762695, 40.162083 ], [ 73.037109, 40.880295 ], [ 71.850586, 41.393294 ], [ 71.147461, 41.145570 ], [ 70.400391, 41.525030 ], [ 71.257324, 42.179688 ], [ 70.949707, 42.277309 ], [ 71.169434, 42.714732 ], [ 71.828613, 42.859860 ], [ 73.476562, 42.504503 ], [ 73.630371, 43.100983 ], [ 74.201660, 43.309191 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 39.177246, 32.175612 ], [ 40.385742, 31.896214 ], [ 41.879883, 31.203405 ], [ 44.692383, 29.190533 ], [ 46.560059, 29.113775 ], [ 47.438965, 29.017748 ], [ 47.702637, 28.536275 ], [ 48.405762, 28.555576 ], [ 48.801270, 27.702984 ], [ 49.284668, 27.469287 ], [ 49.460449, 27.117813 ], [ 50.141602, 26.706360 ], [ 50.207520, 26.293415 ], [ 50.097656, 25.958045 ], [ 50.229492, 25.621716 ], [ 50.515137, 25.344026 ], [ 50.646973, 25.005973 ], [ 50.800781, 24.766785 ], [ 51.108398, 24.567108 ], [ 51.372070, 24.647017 ], [ 51.569824, 24.246965 ], [ 51.613770, 24.026397 ], [ 51.987305, 23.019076 ], [ 54.997559, 22.512557 ], [ 55.195312, 22.715390 ], [ 55.656738, 22.004175 ], [ 54.997559, 20.014645 ], [ 51.987305, 19.020577 ], [ 49.108887, 18.625425 ], [ 48.164062, 18.166730 ], [ 47.460938, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.735840, 17.287709 ], [ 46.362305, 17.245744 ], [ 45.395508, 17.350638 ], [ 45.197754, 17.434511 ], [ 44.055176, 17.413546 ], [ 43.791504, 17.329664 ], [ 43.374023, 17.581194 ], [ 43.110352, 17.098792 ], [ 43.198242, 16.678293 ], [ 42.758789, 16.362310 ], [ 42.648926, 16.783506 ], [ 42.341309, 17.077790 ], [ 42.253418, 17.476432 ], [ 41.748047, 17.853290 ], [ 41.220703, 18.687879 ], [ 40.935059, 19.497664 ], [ 40.231934, 20.179724 ], [ 39.792480, 20.344627 ], [ 39.133301, 21.309846 ], [ 39.023438, 22.004175 ], [ 39.045410, 22.593726 ], [ 38.474121, 23.704895 ], [ 38.012695, 24.086589 ], [ 37.463379, 24.287027 ], [ 37.133789, 24.866503 ], [ 37.199707, 25.085599 ], [ 36.914062, 25.621716 ], [ 36.628418, 25.839449 ], [ 36.232910, 26.588527 ], [ 35.112305, 28.071980 ], [ 34.628906, 28.071980 ], [ 34.782715, 28.613459 ], [ 34.826660, 28.960089 ], [ 34.936523, 29.363027 ], [ 36.057129, 29.209713 ], [ 36.496582, 29.516110 ], [ 36.738281, 29.878755 ], [ 37.485352, 30.012031 ], [ 37.661133, 30.353916 ], [ 37.990723, 30.524413 ], [ 37.001953, 31.522361 ], [ 39.001465, 32.026706 ], [ 39.177246, 32.175612 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Oman", "sov_a3": "OMN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Oman", "adm0_a3": "OMN", "geou_dif": 0, "geounit": "Oman", "gu_a3": "OMN", "su_dif": 0, "subunit": "Oman", "su_a3": "OMN", "brk_diff": 0, "name": "Oman", "name_long": "Oman", "brk_a3": "OMN", "brk_name": "Oman", "abbrev": "Oman", "postal": "OM", "formal_en": "Sultanate of Oman", "name_sort": "Oman", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3418085, "gdp_md_est": 66980, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "OM", "iso_a3": "OMN", "iso_n3": "512", "un_a3": "512", "wb_a2": "OM", "wb_a3": "OMN", "woe_id": -99, "adm0_a3_is": "OMN", "adm0_a3_us": "OMN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.381836, 24.926295 ], [ 56.843262, 24.246965 ], [ 57.392578, 23.885838 ], [ 58.117676, 23.765237 ], [ 58.710938, 23.584126 ], [ 59.436035, 22.674847 ], [ 59.787598, 22.553147 ], [ 59.787598, 22.329752 ], [ 59.282227, 21.453069 ], [ 58.842773, 21.125498 ], [ 58.469238, 20.447602 ], [ 58.029785, 20.488773 ], [ 57.810059, 20.262197 ], [ 57.656250, 19.746024 ], [ 57.788086, 19.082884 ], [ 57.678223, 18.958246 ], [ 57.216797, 18.958246 ], [ 56.601562, 18.583776 ], [ 56.491699, 18.104087 ], [ 56.271973, 17.895114 ], [ 55.656738, 17.895114 ], [ 55.261230, 17.644022 ], [ 55.261230, 17.245744 ], [ 54.777832, 16.951724 ], [ 54.228516, 17.056785 ], [ 53.569336, 16.720385 ], [ 53.107910, 16.657244 ], [ 51.987305, 19.020577 ], [ 54.997559, 20.014645 ], [ 55.656738, 22.004175 ], [ 55.195312, 22.715390 ], [ 55.217285, 23.120154 ], [ 55.524902, 23.543845 ], [ 55.524902, 23.946096 ], [ 55.964355, 24.146754 ], [ 55.788574, 24.287027 ], [ 55.876465, 24.926295 ], [ 56.381836, 24.926295 ] ] ], [ [ [ 56.359863, 26.411551 ], [ 56.469727, 26.313113 ], [ 56.381836, 25.898762 ], [ 56.250000, 25.720735 ], [ 56.052246, 26.056783 ], [ 56.359863, 26.411551 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.146484, 37.142803 ], [ 75.893555, 36.668419 ], [ 76.179199, 35.906849 ], [ 77.827148, 35.496456 ], [ 76.860352, 34.669359 ], [ 75.739746, 34.506557 ], [ 74.223633, 34.759666 ], [ 73.740234, 34.325292 ], [ 74.091797, 33.449777 ], [ 74.443359, 32.768800 ], [ 75.256348, 32.287133 ], [ 74.399414, 31.709476 ], [ 74.399414, 30.996446 ], [ 73.432617, 29.993002 ], [ 72.817383, 28.979312 ], [ 71.762695, 27.916767 ], [ 70.598145, 27.994401 ], [ 69.499512, 26.941660 ], [ 70.158691, 26.509905 ], [ 70.268555, 25.740529 ], [ 70.839844, 25.224820 ], [ 71.037598, 24.367114 ], [ 68.840332, 24.367114 ], [ 68.159180, 23.704895 ], [ 67.434082, 23.946096 ], [ 67.126465, 24.666986 ], [ 66.357422, 25.443275 ], [ 64.511719, 25.244696 ], [ 62.885742, 25.224820 ], [ 61.479492, 25.085599 ], [ 61.853027, 26.254010 ], [ 63.303223, 26.765231 ], [ 63.215332, 27.235095 ], [ 62.753906, 27.391278 ], [ 62.709961, 28.265682 ], [ 61.765137, 28.709861 ], [ 61.347656, 29.305561 ], [ 60.864258, 29.840644 ], [ 62.534180, 29.324720 ], [ 63.544922, 29.477861 ], [ 64.138184, 29.343875 ], [ 64.335938, 29.573457 ], [ 65.039062, 29.477861 ], [ 66.335449, 29.897806 ], [ 66.379395, 30.751278 ], [ 66.928711, 31.316101 ], [ 67.675781, 31.316101 ], [ 67.785645, 31.597253 ], [ 68.554688, 31.728167 ], [ 68.906250, 31.634676 ], [ 69.301758, 31.914868 ], [ 69.257812, 32.509762 ], [ 69.675293, 33.119150 ], [ 70.312500, 33.376412 ], [ 69.916992, 34.034453 ], [ 70.861816, 33.998027 ], [ 71.147461, 34.361576 ], [ 71.103516, 34.741612 ], [ 71.608887, 35.155846 ], [ 71.477051, 35.657296 ], [ 71.257324, 36.084621 ], [ 71.828613, 36.527295 ], [ 72.905273, 36.721274 ], [ 74.047852, 36.844461 ], [ 74.575195, 37.037640 ], [ 75.146484, 37.142803 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bhutan", "sov_a3": "BTN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bhutan", "adm0_a3": "BTN", "geou_dif": 0, "geounit": "Bhutan", "gu_a3": "BTN", "su_dif": 0, "subunit": "Bhutan", "su_a3": "BTN", "brk_diff": 0, "name": "Bhutan", "name_long": "Bhutan", "brk_a3": "BTN", "brk_name": "Bhutan", "abbrev": "Bhutan", "postal": "BT", "formal_en": "Kingdom of Bhutan", "name_sort": "Bhutan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 691141, "gdp_md_est": 3524, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BT", "iso_a3": "BTN", "iso_n3": "064", "un_a3": "064", "wb_a2": "BT", "wb_a3": "BTN", "woe_id": -99, "adm0_a3_is": "BTN", "adm0_a3_us": "BTN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.000000, 28.304381 ], [ 90.725098, 28.071980 ], [ 91.252441, 28.052591 ], [ 91.691895, 27.780772 ], [ 91.757812, 27.741885 ], [ 91.757812, 26.843677 ], [ 91.208496, 26.824071 ], [ 90.351562, 26.882880 ], [ 90.000000, 26.784847 ], [ 89.736328, 26.725987 ], [ 88.835449, 27.117813 ], [ 88.813477, 27.313214 ], [ 89.472656, 28.052591 ], [ 90.000000, 28.304381 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.642090, 5.266008 ], [ 26.389160, 5.156599 ], [ 27.026367, 5.134715 ], [ 27.355957, 5.244128 ], [ 27.971191, 4.412137 ], [ 28.410645, 4.302591 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.707031, 4.609278 ], [ 29.948730, 4.193030 ], [ 30.827637, 3.513421 ], [ 30.761719, 2.350415 ], [ 31.157227, 2.218684 ], [ 30.849609, 1.867345 ], [ 30.454102, 1.603794 ], [ 30.080566, 1.076597 ], [ 29.860840, 0.615223 ], [ 29.816895, 0.000000 ], [ 29.816895, -0.197754 ], [ 29.575195, -0.571280 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.603794 ], [ 29.267578, -1.757537 ], [ 16.391602, -1.757537 ], [ 16.853027, -1.208406 ], [ 17.512207, -0.725078 ], [ 17.622070, -0.417477 ], [ 17.687988, 0.000000 ], [ 17.819824, 0.307616 ], [ 17.753906, 0.856902 ], [ 17.885742, 1.757537 ], [ 18.083496, 2.372369 ], [ 18.391113, 2.921097 ], [ 18.522949, 4.214943 ], [ 18.918457, 4.718778 ], [ 19.467773, 5.047171 ], [ 20.280762, 4.696879 ], [ 20.917969, 4.324501 ], [ 21.643066, 4.236856 ], [ 22.390137, 4.039618 ], [ 22.697754, 4.653080 ], [ 22.829590, 4.718778 ], [ 23.291016, 4.631179 ], [ 24.389648, 5.112830 ], [ 24.785156, 4.915833 ], [ 25.114746, 4.937724 ], [ 25.268555, 5.178482 ], [ 25.642090, 5.266008 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.733887, -40.697299 ], [ 145.393066, -40.780541 ], [ 146.359863, -41.129021 ], [ 147.678223, -40.797177 ], [ 148.271484, -40.863680 ], [ 148.359375, -42.049293 ], [ 148.007812, -42.391009 ], [ 147.897949, -43.197167 ], [ 147.546387, -42.924252 ], [ 146.865234, -43.628123 ], [ 146.645508, -43.580391 ], [ 146.030273, -43.548548 ], [ 145.415039, -42.682435 ], [ 145.283203, -42.032974 ], [ 144.711914, -41.162114 ], [ 144.733887, -40.697299 ] ] ], [ [ [ 142.514648, -10.660608 ], [ 142.778320, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.107910, -11.888853 ], [ 143.151855, -12.318536 ], [ 143.503418, -12.833226 ], [ 143.591309, -13.389620 ], [ 143.547363, -13.752725 ], [ 143.920898, -14.541050 ], [ 144.558105, -14.157882 ], [ 144.887695, -14.583583 ], [ 145.371094, -14.966013 ], [ 145.261230, -15.411319 ], [ 145.480957, -16.277960 ], [ 145.634766, -16.783506 ], [ 145.876465, -16.888660 ], [ 146.140137, -17.748687 ], [ 146.052246, -18.271086 ], [ 146.381836, -18.958246 ], [ 147.458496, -19.476950 ], [ 148.842773, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.282227, -21.248422 ], [ 149.677734, -22.329752 ], [ 150.073242, -22.105999 ], [ 150.468750, -22.553147 ], [ 150.710449, -22.390714 ], [ 150.886230, -23.443089 ], [ 152.072754, -24.447150 ], [ 152.841797, -25.264568 ], [ 153.127441, -26.056783 ], [ 153.149414, -26.627818 ], [ 153.083496, -27.254630 ], [ 153.566895, -28.091366 ], [ 153.500977, -28.979312 ], [ 153.061523, -30.334954 ], [ 153.083496, -30.921076 ], [ 152.885742, -31.634676 ], [ 152.446289, -32.546813 ], [ 151.699219, -33.027088 ], [ 151.325684, -33.815666 ], [ 150.996094, -34.307144 ], [ 150.710449, -35.155846 ], [ 150.314941, -35.657296 ], [ 150.073242, -36.403600 ], [ 149.941406, -37.107765 ], [ 149.985352, -37.422526 ], [ 149.414062, -37.770715 ], [ 148.293457, -37.805444 ], [ 147.370605, -38.203655 ], [ 146.909180, -38.599700 ], [ 146.315918, -39.027719 ], [ 145.480957, -38.582526 ], [ 144.865723, -38.410558 ], [ 145.019531, -37.892196 ], [ 144.470215, -38.082690 ], [ 143.591309, -38.805470 ], [ 142.163086, -38.376115 ], [ 141.591797, -38.307181 ], [ 140.625000, -38.013476 ], [ 139.987793, -37.387617 ], [ 139.790039, -36.633162 ], [ 139.570312, -36.137875 ], [ 139.064941, -35.728677 ], [ 138.120117, -35.603719 ], [ 138.427734, -35.119909 ], [ 138.186035, -34.379713 ], [ 137.702637, -35.065973 ], [ 136.823730, -35.245619 ], [ 137.351074, -34.705493 ], [ 137.482910, -34.125448 ], [ 137.878418, -33.632916 ], [ 137.790527, -32.898038 ], [ 136.977539, -33.742613 ], [ 136.362305, -34.089061 ], [ 135.988770, -34.885931 ], [ 135.197754, -34.470335 ], [ 135.219727, -33.943360 ], [ 134.604492, -33.211116 ], [ 134.077148, -32.842674 ], [ 134.252930, -32.602362 ], [ 132.978516, -32.008076 ], [ 132.275391, -31.970804 ], [ 131.308594, -31.484893 ], [ 129.528809, -31.578535 ], [ 127.089844, -32.268555 ], [ 126.145020, -32.212801 ], [ 125.068359, -32.713355 ], [ 124.211426, -32.953368 ], [ 124.013672, -33.468108 ], [ 123.640137, -33.888658 ], [ 122.805176, -33.906896 ], [ 122.167969, -33.998027 ], [ 121.289062, -33.815666 ], [ 120.563965, -33.925130 ], [ 119.882812, -33.961586 ], [ 119.289551, -34.506557 ], [ 119.003906, -34.452218 ], [ 118.498535, -34.741612 ], [ 118.015137, -35.047987 ], [ 117.290039, -35.012002 ], [ 116.608887, -35.012002 ], [ 115.554199, -34.379713 ], [ 115.004883, -34.179998 ], [ 115.026855, -33.614619 ], [ 115.532227, -33.486435 ], [ 115.708008, -33.247876 ], [ 115.664062, -32.898038 ], [ 115.795898, -32.194209 ], [ 115.686035, -31.597253 ], [ 115.158691, -30.600094 ], [ 114.982910, -30.012031 ], [ 115.026855, -29.458731 ], [ 114.631348, -28.806174 ], [ 114.609375, -28.497661 ], [ 114.169922, -28.110749 ], [ 114.038086, -27.332735 ], [ 113.466797, -26.529565 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.529565 ], [ 113.422852, -25.601902 ], [ 113.928223, -25.898762 ], [ 114.213867, -26.293415 ], [ 114.213867, -25.780107 ], [ 113.708496, -24.986058 ], [ 113.620605, -24.666986 ], [ 113.378906, -24.367114 ], [ 113.488770, -23.805450 ], [ 113.686523, -23.543845 ], [ 113.840332, -23.059516 ], [ 113.730469, -22.471955 ], [ 114.147949, -21.739091 ], [ 114.213867, -22.512557 ], [ 114.631348, -21.820708 ], [ 115.444336, -21.493964 ], [ 115.927734, -21.063997 ], [ 116.696777, -20.694462 ], [ 117.158203, -20.612220 ], [ 117.421875, -20.735566 ], [ 118.212891, -20.365228 ], [ 118.828125, -20.262197 ], [ 118.981934, -20.035290 ], [ 119.245605, -19.952696 ], [ 119.794922, -19.973349 ], [ 120.849609, -19.663280 ], [ 121.398926, -19.228177 ], [ 121.640625, -18.687879 ], [ 122.233887, -18.187607 ], [ 122.299805, -17.245744 ], [ 123.002930, -16.404470 ], [ 123.420410, -17.266728 ], [ 123.837891, -17.056785 ], [ 123.486328, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.320139 ], [ 124.365234, -15.559544 ], [ 124.914551, -15.072124 ], [ 125.156250, -14.668626 ], [ 125.661621, -14.498508 ], [ 125.683594, -14.221789 ], [ 126.123047, -14.328260 ], [ 126.123047, -14.093957 ], [ 127.045898, -13.816744 ], [ 127.792969, -14.264383 ], [ 128.342285, -14.859850 ], [ 128.979492, -14.859850 ], [ 129.616699, -14.966013 ], [ 129.396973, -14.413400 ], [ 129.880371, -13.603278 ], [ 130.319824, -13.346865 ], [ 130.166016, -13.090179 ], [ 130.605469, -12.533115 ], [ 131.220703, -12.168226 ], [ 131.726074, -12.297068 ], [ 132.561035, -12.103781 ], [ 132.539062, -11.587669 ], [ 131.813965, -11.264612 ], [ 132.341309, -11.113727 ], [ 133.000488, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.670410, -11.931852 ], [ 135.285645, -12.232655 ], [ 135.878906, -11.953349 ], [ 136.252441, -12.039321 ], [ 136.472168, -11.845847 ], [ 136.933594, -12.340002 ], [ 136.669922, -12.876070 ], [ 136.296387, -13.282719 ], [ 135.944824, -13.304103 ], [ 136.076660, -13.710035 ], [ 135.769043, -14.221789 ], [ 135.417480, -14.711135 ], [ 135.483398, -14.987240 ], [ 136.274414, -15.538376 ], [ 137.043457, -15.855674 ], [ 137.570801, -16.214675 ], [ 138.295898, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.086914, -17.056785 ], [ 139.240723, -17.350638 ], [ 140.207520, -17.706828 ], [ 140.866699, -17.350638 ], [ 141.262207, -16.383391 ], [ 141.394043, -15.834536 ], [ 141.701660, -15.029686 ], [ 141.547852, -14.541050 ], [ 141.613770, -14.264383 ], [ 141.503906, -13.688688 ], [ 141.635742, -12.940322 ], [ 141.833496, -12.726084 ], [ 141.679688, -12.404389 ], [ 141.921387, -11.867351 ], [ 142.097168, -11.307708 ], [ 142.141113, -11.027472 ], [ 142.514648, -10.660608 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "New Zealand", "sov_a3": "NZ1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "New Zealand", "adm0_a3": "NZL", "geou_dif": 0, "geounit": "New Zealand", "gu_a3": "NZL", "su_dif": 0, "subunit": "New Zealand", "su_a3": "NZL", "brk_diff": 0, "name": "New Zealand", "name_long": "New Zealand", "brk_a3": "NZL", "brk_name": "New Zealand", "abbrev": "N.Z.", "postal": "NZ", "formal_en": "New Zealand", "name_sort": "New Zealand", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 4213418, "gdp_md_est": 116700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NZ", "iso_a3": "NZL", "iso_n3": "554", "un_a3": "554", "wb_a2": "NZ", "wb_a3": "NZL", "woe_id": -99, "adm0_a3_is": "NZL", "adm0_a3_us": "NZL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.792969, -40.480381 ], [ 173.012695, -40.913513 ], [ 173.232422, -41.327326 ], [ 173.957520, -40.913513 ], [ 174.243164, -41.343825 ], [ 174.243164, -41.754922 ], [ 173.210449, -42.956423 ], [ 172.705078, -43.357138 ], [ 173.078613, -43.850374 ], [ 172.287598, -43.850374 ], [ 171.452637, -44.229457 ], [ 171.166992, -44.887012 ], [ 170.595703, -45.905300 ], [ 169.321289, -46.634351 ], [ 168.398438, -46.619261 ], [ 167.761230, -46.286224 ], [ 166.662598, -46.210250 ], [ 166.508789, -45.844108 ], [ 167.036133, -45.104546 ], [ 168.288574, -44.119142 ], [ 168.947754, -43.929550 ], [ 169.650879, -43.548548 ], [ 170.507812, -43.020714 ], [ 171.123047, -42.504503 ], [ 171.562500, -41.754922 ], [ 171.936035, -41.508577 ], [ 172.089844, -40.946714 ], [ 172.792969, -40.480381 ] ] ], [ [ [ 172.990723, -34.434098 ], [ 173.540039, -34.994004 ], [ 174.309082, -35.263562 ], [ 174.594727, -36.155618 ], [ 175.319824, -37.195331 ], [ 175.341797, -36.509636 ], [ 175.803223, -36.791691 ], [ 175.957031, -37.544577 ], [ 176.748047, -37.874853 ], [ 177.429199, -37.944198 ], [ 178.000488, -37.579413 ], [ 178.505859, -37.683820 ], [ 178.264160, -38.582526 ], [ 177.956543, -39.164141 ], [ 177.187500, -39.130060 ], [ 176.923828, -39.436193 ], [ 177.011719, -39.876019 ], [ 176.000977, -41.277806 ], [ 175.231934, -41.672912 ], [ 175.056152, -41.409776 ], [ 174.638672, -41.277806 ], [ 175.209961, -40.446947 ], [ 174.880371, -39.892880 ], [ 173.803711, -39.504041 ], [ 173.847656, -39.130060 ], [ 174.572754, -38.788345 ], [ 174.726562, -38.013476 ], [ 174.682617, -37.370157 ], [ 174.287109, -36.703660 ], [ 174.309082, -36.527295 ], [ 173.825684, -36.120128 ], [ 173.034668, -35.227672 ], [ 172.617188, -34.524661 ], [ 172.990723, -34.434098 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 110.192871, 20.117840 ], [ 110.786133, 20.097206 ], [ 111.005859, 19.704658 ], [ 110.566406, 19.269665 ], [ 110.324707, 18.687879 ], [ 109.467773, 18.208480 ], [ 108.654785, 18.521283 ], [ 108.610840, 19.373341 ], [ 109.116211, 19.828725 ], [ 110.192871, 20.117840 ] ] ], [ [ [ 123.552246, 53.461890 ], [ 125.046387, 53.173119 ], [ 125.925293, 52.802761 ], [ 126.562500, 51.795027 ], [ 126.936035, 51.358062 ], [ 127.265625, 50.750359 ], [ 127.639160, 49.767074 ], [ 129.396973, 49.453843 ], [ 130.561523, 48.734455 ], [ 130.979004, 47.798397 ], [ 132.495117, 47.798397 ], [ 133.352051, 48.195387 ], [ 135.021973, 48.487486 ], [ 134.494629, 47.591346 ], [ 134.099121, 47.219568 ], [ 133.769531, 46.118942 ], [ 133.088379, 45.151053 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.980342 ], [ 131.286621, 44.119142 ], [ 131.132812, 42.940339 ], [ 130.627441, 42.908160 ], [ 130.627441, 42.407235 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.439674 ], [ 128.034668, 42.000325 ], [ 128.188477, 41.475660 ], [ 127.331543, 41.508577 ], [ 126.848145, 41.820455 ], [ 126.166992, 41.112469 ], [ 125.068359, 40.580585 ], [ 124.255371, 39.943436 ], [ 122.849121, 39.639538 ], [ 122.124023, 39.181175 ], [ 121.047363, 38.908133 ], [ 121.574707, 39.368279 ], [ 121.354980, 39.757880 ], [ 122.167969, 40.430224 ], [ 121.618652, 40.946714 ], [ 120.761719, 40.597271 ], [ 119.619141, 39.909736 ], [ 119.003906, 39.266284 ], [ 118.037109, 39.215231 ], [ 117.531738, 38.754083 ], [ 118.059082, 38.065392 ], [ 118.872070, 37.909534 ], [ 118.894043, 37.457418 ], [ 119.685059, 37.160317 ], [ 120.805664, 37.874853 ], [ 121.706543, 37.492294 ], [ 122.343750, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.091309, 36.668419 ], [ 120.629883, 36.120128 ], [ 119.663086, 35.621582 ], [ 119.135742, 34.921971 ], [ 120.212402, 34.361576 ], [ 120.607910, 33.394759 ], [ 121.223145, 32.472695 ], [ 121.904297, 31.709476 ], [ 121.882324, 30.958769 ], [ 121.245117, 30.694612 ], [ 121.486816, 30.145127 ], [ 122.080078, 29.840644 ], [ 121.926270, 29.036961 ], [ 121.662598, 28.226970 ], [ 121.113281, 28.149503 ], [ 120.388184, 27.059126 ], [ 119.575195, 25.760320 ], [ 118.652344, 24.567108 ], [ 117.268066, 23.644524 ], [ 115.883789, 22.796439 ], [ 114.763184, 22.674847 ], [ 114.147949, 22.228090 ], [ 113.796387, 22.553147 ], [ 113.225098, 22.065278 ], [ 111.840820, 21.555284 ], [ 110.764160, 21.412162 ], [ 110.434570, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.621582, 21.022983 ], [ 109.863281, 21.412162 ], [ 108.500977, 21.718680 ], [ 108.039551, 21.555284 ], [ 107.028809, 21.820708 ], [ 106.545410, 22.228090 ], [ 106.721191, 22.796439 ], [ 105.798340, 22.978624 ], [ 105.314941, 23.362429 ], [ 104.458008, 22.836946 ], [ 103.491211, 22.715390 ], [ 102.700195, 22.715390 ], [ 102.150879, 22.471955 ], [ 101.645508, 22.329752 ], [ 101.799316, 21.186973 ], [ 101.250000, 21.207459 ], [ 101.162109, 21.453069 ], [ 101.140137, 21.861499 ], [ 100.415039, 21.575719 ], [ 99.228516, 22.126355 ], [ 99.514160, 22.958393 ], [ 98.876953, 23.160563 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.905927 ], [ 97.712402, 25.085599 ], [ 98.657227, 25.938287 ], [ 98.701172, 26.745610 ], [ 98.679199, 27.527758 ], [ 98.239746, 27.761330 ], [ 97.910156, 28.343065 ], [ 97.316895, 28.265682 ], [ 96.240234, 28.420391 ], [ 96.569824, 28.844674 ], [ 96.108398, 29.458731 ], [ 95.383301, 29.036961 ], [ 94.548340, 29.286399 ], [ 93.405762, 28.652031 ], [ 92.482910, 27.897349 ], [ 91.691895, 27.780772 ], [ 91.252441, 28.052591 ], [ 90.725098, 28.071980 ], [ 90.000000, 28.304381 ], [ 89.472656, 28.052591 ], [ 88.813477, 27.313214 ], [ 88.725586, 28.091366 ], [ 88.242188, 27.936181 ], [ 88.242188, 48.458352 ], [ 88.835449, 48.078079 ], [ 90.000000, 47.768868 ], [ 90.263672, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.571289, 45.721522 ], [ 90.944824, 45.290347 ], [ 92.131348, 45.120053 ], [ 93.471680, 44.980342 ], [ 94.680176, 44.355278 ], [ 95.295410, 44.245199 ], [ 95.756836, 43.325178 ], [ 96.328125, 42.730874 ], [ 97.448730, 42.763146 ], [ 99.514160, 42.536892 ], [ 100.832520, 42.666281 ], [ 101.821289, 42.520700 ], [ 103.293457, 41.918629 ], [ 104.501953, 41.918629 ], [ 104.963379, 41.607228 ], [ 106.127930, 42.147114 ], [ 107.731934, 42.488302 ], [ 109.226074, 42.520700 ], [ 110.390625, 42.875964 ], [ 111.115723, 43.421009 ], [ 111.818848, 43.755225 ], [ 111.665039, 44.087585 ], [ 111.335449, 44.465151 ], [ 111.862793, 45.104546 ], [ 113.444824, 44.809122 ], [ 114.455566, 45.352145 ], [ 115.971680, 45.736860 ], [ 116.696777, 46.392411 ], [ 117.399902, 46.679594 ], [ 118.872070, 46.815099 ], [ 119.663086, 46.694667 ], [ 119.750977, 47.055154 ], [ 118.850098, 47.754098 ], [ 118.059082, 48.078079 ], [ 117.290039, 47.709762 ], [ 116.301270, 47.857403 ], [ 115.729980, 47.739323 ], [ 115.466309, 48.136767 ], [ 116.191406, 49.138597 ], [ 116.674805, 49.894634 ], [ 117.861328, 49.525208 ], [ 119.267578, 50.148746 ], [ 119.267578, 50.583237 ], [ 120.168457, 51.645294 ], [ 120.717773, 51.971346 ], [ 120.717773, 52.522906 ], [ 120.168457, 52.762892 ], [ 120.981445, 53.252069 ], [ 122.233887, 53.435719 ], [ 123.552246, 53.461890 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cambodia", "sov_a3": "KHM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cambodia", "adm0_a3": "KHM", "geou_dif": 0, "geounit": "Cambodia", "gu_a3": "KHM", "su_dif": 0, "subunit": "Cambodia", "su_a3": "KHM", "brk_diff": 0, "name": "Cambodia", "name_long": "Cambodia", "brk_a3": "KHM", "brk_name": "Cambodia", "abbrev": "Camb.", "postal": "KH", "formal_en": "Kingdom of Cambodia", "name_sort": "Cambodia", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 5, "pop_est": 14494293, "gdp_md_est": 27940, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KH", "iso_a3": "KHM", "iso_n3": "116", "un_a3": "116", "wb_a2": "KH", "wb_a3": "KHM", "woe_id": -99, "adm0_a3_is": "KHM", "adm0_a3_us": "KHM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.479492, 14.583583 ], [ 107.380371, 14.221789 ], [ 107.600098, 13.539201 ], [ 107.490234, 12.340002 ], [ 105.798340, 11.587669 ], [ 106.237793, 10.962764 ], [ 105.183105, 10.898042 ], [ 104.326172, 10.487812 ], [ 103.491211, 10.639014 ], [ 103.073730, 11.156845 ], [ 102.568359, 12.189704 ], [ 102.326660, 13.410994 ], [ 102.985840, 14.243087 ], [ 104.260254, 14.434680 ], [ 105.205078, 14.285677 ], [ 106.040039, 13.902076 ], [ 106.479492, 14.583583 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Philippines", "sov_a3": "PHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Philippines", "adm0_a3": "PHL", "geou_dif": 0, "geounit": "Philippines", "gu_a3": "PHL", "su_dif": 0, "subunit": "Philippines", "su_a3": "PHL", "brk_diff": 0, "name": "Philippines", "name_long": "Philippines", "brk_a3": "PHL", "brk_name": "Philippines", "abbrev": "Phil.", "postal": "PH", "formal_en": "Republic of the Philippines", "name_sort": "Philippines", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 97976603, "gdp_md_est": 317500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PH", "iso_a3": "PHL", "iso_n3": "608", "un_a3": "608", "wb_a2": "PH", "wb_a3": "PHL", "woe_id": -99, "adm0_a3_is": "PHL", "adm0_a3_us": "PHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.397949, 9.774025 ], [ 126.210938, 9.297307 ], [ 126.364746, 8.428904 ], [ 126.518555, 7.209900 ], [ 126.188965, 6.293459 ], [ 125.815430, 7.297088 ], [ 125.354004, 6.795535 ], [ 125.661621, 6.053161 ], [ 125.375977, 5.594118 ], [ 124.211426, 6.162401 ], [ 123.925781, 6.904614 ], [ 124.233398, 7.362467 ], [ 123.596191, 7.841615 ], [ 123.288574, 7.427837 ], [ 122.805176, 7.471411 ], [ 122.080078, 6.904614 ], [ 121.904297, 7.209900 ], [ 122.299805, 8.037473 ], [ 122.937012, 8.320212 ], [ 123.486328, 8.711359 ], [ 123.837891, 8.254983 ], [ 124.584961, 8.515836 ], [ 124.760742, 8.971897 ], [ 125.463867, 8.993600 ], [ 125.397949, 9.774025 ] ] ], [ [ [ 119.509277, 11.372339 ], [ 119.685059, 10.574222 ], [ 119.025879, 10.012130 ], [ 118.498535, 9.318990 ], [ 117.158203, 8.385431 ], [ 117.663574, 9.080400 ], [ 118.366699, 9.687398 ], [ 118.981934, 10.379765 ], [ 119.509277, 11.372339 ] ] ], [ [ [ 124.057617, 11.243062 ], [ 123.969727, 10.293301 ], [ 123.618164, 9.968851 ], [ 123.288574, 9.318990 ], [ 122.980957, 9.037003 ], [ 122.365723, 9.730714 ], [ 122.827148, 10.271681 ], [ 122.937012, 10.898042 ], [ 123.486328, 10.941192 ], [ 123.332520, 10.271681 ], [ 124.057617, 11.243062 ] ] ], [ [ [ 124.255371, 12.576010 ], [ 125.222168, 12.554564 ], [ 125.485840, 12.168226 ], [ 125.771484, 11.049038 ], [ 125.002441, 11.329253 ], [ 125.024414, 10.984335 ], [ 125.266113, 10.379765 ], [ 124.782715, 10.141932 ], [ 124.738770, 10.854886 ], [ 124.453125, 10.898042 ], [ 124.299316, 11.501557 ], [ 124.870605, 11.436955 ], [ 124.870605, 11.802834 ], [ 124.255371, 12.576010 ] ] ], [ [ [ 121.882324, 11.910354 ], [ 122.475586, 11.587669 ], [ 123.112793, 11.587669 ], [ 123.090820, 11.178402 ], [ 122.629395, 10.746969 ], [ 121.992188, 10.444598 ], [ 121.948242, 10.919618 ], [ 122.036133, 11.436955 ], [ 121.882324, 11.910354 ] ] ], [ [ [ 120.322266, 13.475106 ], [ 121.179199, 13.432367 ], [ 121.508789, 13.090179 ], [ 121.245117, 12.211180 ], [ 120.827637, 12.704651 ], [ 120.322266, 13.475106 ] ] ], [ [ [ 121.311035, 18.521283 ], [ 121.926270, 18.229351 ], [ 122.233887, 18.479609 ], [ 122.321777, 18.229351 ], [ 122.167969, 17.811456 ], [ 122.497559, 17.098792 ], [ 122.233887, 16.277960 ], [ 121.662598, 15.940202 ], [ 121.486816, 15.135764 ], [ 121.728516, 14.349548 ], [ 122.255859, 14.221789 ], [ 122.695312, 14.349548 ], [ 123.947754, 13.795406 ], [ 123.837891, 13.239945 ], [ 124.167480, 13.004558 ], [ 124.057617, 12.554564 ], [ 123.288574, 13.047372 ], [ 122.915039, 13.560562 ], [ 122.651367, 13.197165 ], [ 122.014160, 13.795406 ], [ 121.113281, 13.645987 ], [ 120.607910, 13.859414 ], [ 120.673828, 14.285677 ], [ 120.981445, 14.541050 ], [ 120.673828, 14.774883 ], [ 120.563965, 14.413400 ], [ 120.058594, 14.987240 ], [ 119.904785, 15.411319 ], [ 119.882812, 16.383391 ], [ 120.278320, 16.045813 ], [ 120.388184, 17.602139 ], [ 120.695801, 18.521283 ], [ 121.311035, 18.521283 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -171.749268, 66.861082 ], [ -171.013184, 66.513260 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.544819 ], [ -172.540283, 65.440002 ], [ -172.562256, 64.463323 ], [ -172.957764, 64.254141 ], [ -173.902588, 64.282760 ], [ -174.660645, 64.633292 ], [ -175.989990, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.363037, 65.394298 ], [ -178.912354, 65.744170 ], [ -178.692627, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.439697, 65.408017 ], [ -180.000000, 64.984005 ], [ -180.000000, 66.861082 ], [ -174.979248, 66.861082 ], [ -175.023193, 66.587583 ], [ -174.825439, 66.513260 ], [ -174.342041, 66.337505 ], [ -174.396973, 66.513260 ], [ -174.517822, 66.861082 ], [ -171.749268, 66.861082 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ -180.000000, 68.966279 ], [ -177.550049, 68.200133 ], [ -174.935303, 67.208289 ], [ -175.023193, 66.587583 ], [ -174.825439, 66.513260 ], [ -174.342041, 66.337505 ], [ -174.396973, 66.513260 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.917142 ], [ -171.013184, 66.513260 ], [ -170.288086, 66.160511 ], [ -180.000000, 66.160511 ], [ -180.000000, 68.966279 ] ] ], [ [ [ -179.879150, 71.559692 ], [ -179.033203, 71.556217 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.134540 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.517945 ], [ -179.879150, 71.559692 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guatemala", "sov_a3": "GTM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guatemala", "adm0_a3": "GTM", "geou_dif": 0, "geounit": "Guatemala", "gu_a3": "GTM", "su_dif": 0, "subunit": "Guatemala", "su_a3": "GTM", "brk_diff": 0, "name": "Guatemala", "name_long": "Guatemala", "brk_a3": "GTM", "brk_name": "Guatemala", "abbrev": "Guat.", "postal": "GT", "formal_en": "Republic of Guatemala", "name_sort": "Guatemala", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 13276517, "gdp_md_est": 68580, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GT", "iso_a3": "GTM", "iso_n3": "320", "un_a3": "320", "wb_a2": "GT", "wb_a3": "GTM", "woe_id": -99, "adm0_a3_is": "GTM", "adm0_a3_us": "GTM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.821916 ], [ -89.154053, 17.811456 ], [ -89.154053, 17.025273 ], [ -89.230957, 15.887376 ], [ -89.121094, 15.887376 ], [ -89.121094, 15.093339 ], [ -89.165039, 15.072124 ], [ -89.230957, 14.881087 ], [ -89.154053, 14.679254 ], [ -89.362793, 14.434680 ], [ -89.593506, 14.370834 ], [ -89.538574, 14.253735 ], [ -89.725342, 14.136576 ], [ -90.000000, 13.934067 ], [ -90.065918, 13.891411 ], [ -90.098877, 13.742053 ], [ -90.615234, 13.912740 ], [ -91.241455, 13.934067 ], [ -91.691895, 14.136576 ], [ -92.230225, 14.541050 ], [ -92.208252, 14.838612 ], [ -92.087402, 15.072124 ], [ -92.230225, 15.252389 ], [ -91.757812, 16.066929 ], [ -90.472412, 16.077486 ], [ -90.439453, 16.415009 ], [ -90.604248, 16.478230 ], [ -90.714111, 16.688817 ], [ -91.087646, 16.920195 ], [ -91.461182, 17.256236 ], [ -91.010742, 17.256236 ], [ -91.010742, 17.821916 ], [ -90.000000, 17.821916 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "El Salvador", "sov_a3": "SLV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "El Salvador", "adm0_a3": "SLV", "geou_dif": 0, "geounit": "El Salvador", "gu_a3": "SLV", "su_dif": 0, "subunit": "El Salvador", "su_a3": "SLV", "brk_diff": 0, "name": "El Salvador", "name_long": "El Salvador", "brk_a3": "SLV", "brk_name": "El Salvador", "abbrev": "El. S.", "postal": "SV", "formal_en": "Republic of El Salvador", "name_sort": "El Salvador", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 8, "pop_est": 7185218, "gdp_md_est": 43630, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SV", "iso_a3": "SLV", "iso_n3": "222", "un_a3": "222", "wb_a2": "SV", "wb_a3": "SLV", "woe_id": -99, "adm0_a3_is": "SLV", "adm0_a3_us": "SLV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 11, "long_len": 11, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.362793, 14.434680 ], [ -89.121094, 14.360191 ], [ -89.121094, 13.400307 ], [ -89.263916, 13.464422 ], [ -89.813232, 13.528519 ], [ -90.000000, 13.667338 ], [ -90.098877, 13.742053 ], [ -90.065918, 13.891411 ], [ -90.000000, 13.934067 ], [ -89.725342, 14.136576 ], [ -89.538574, 14.253735 ], [ -89.593506, 14.370834 ], [ -89.362793, 14.434680 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "Falkland Islands", "adm0_a3": "FLK", "geou_dif": 0, "geounit": "Falkland Islands", "gu_a3": "FLK", "su_dif": 0, "subunit": "Falkland Islands", "su_a3": "FLK", "brk_diff": 1, "name": "Falkland Is.", "name_long": "Falkland Islands", "brk_a3": "B12", "brk_name": "Falkland Is.", "abbrev": "Flk. Is.", "postal": "FK", "formal_en": "Falkland Islands", "note_adm0": "U.K.", "note_brk": "Admin. by U.K.; Claimed by Argentina", "name_sort": "Falkland Islands", "name_alt": "Islas Malvinas", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 3140, "gdp_md_est": 105.1, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FK", "iso_a3": "FLK", "iso_n3": "238", "un_a3": "238", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "FLK", "adm0_a3_us": "FLK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 12, "long_len": 16, "abbrev_len": 8, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.557129, -51.096623 ], [ -57.755127, -51.549751 ], [ -58.051758, -51.896834 ], [ -59.403076, -52.194140 ], [ -59.853516, -51.849353 ], [ -60.710449, -52.295042 ], [ -61.204834, -51.849353 ], [ -60.007324, -51.248163 ], [ -59.150391, -51.495065 ], [ -58.557129, -51.096623 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.980957, 0.878872 ], [ -77.860107, 0.812961 ], [ -77.673340, 0.834931 ], [ -77.431641, 0.406491 ], [ -76.585693, 0.263671 ], [ -76.300049, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.651855, 0.000000 ], [ -75.377197, -0.142822 ], [ -75.234375, -0.900842 ], [ -75.552979, -1.559866 ], [ -76.640625, -2.602864 ], [ -77.838135, -2.997899 ], [ -78.453369, -3.864255 ], [ -78.640137, -4.543570 ], [ -79.211426, -4.948670 ], [ -79.628906, -4.444997 ], [ -80.035400, -4.335456 ], [ -80.452881, -4.423090 ], [ -80.474854, -4.050577 ], [ -80.189209, -3.820408 ], [ -80.310059, -3.403758 ], [ -79.771729, -2.646763 ], [ -79.991455, -2.218684 ], [ -80.375977, -2.679687 ], [ -80.969238, -2.240640 ], [ -80.771484, -1.955187 ], [ -80.936279, -1.054628 ], [ -80.584717, -0.900842 ], [ -80.408936, -0.274657 ], [ -80.233154, 0.000000 ], [ -80.024414, 0.362546 ], [ -80.101318, 0.769020 ], [ -79.815674, 0.878872 ], [ -77.980957, 0.878872 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.598389, -17.570721 ], [ -69.104004, -18.250220 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.404430 ], [ -68.763428, -20.365228 ], [ -68.225098, -21.493964 ], [ -67.829590, -22.867318 ], [ -67.115479, -22.735657 ], [ -66.994629, -22.978624 ], [ -67.335205, -24.016362 ], [ -68.422852, -24.517139 ], [ -68.389893, -26.175159 ], [ -68.598633, -26.500073 ], [ -68.302002, -26.892679 ], [ -69.005127, -27.518015 ], [ -69.664307, -28.459033 ], [ -70.015869, -29.363027 ], [ -69.927979, -30.334954 ], [ -70.543213, -31.363018 ], [ -70.081787, -33.082337 ], [ -69.818115, -33.266250 ], [ -69.818115, -34.189086 ], [ -70.389404, -35.164828 ], [ -70.367432, -36.004673 ], [ -71.125488, -36.650793 ], [ -71.125488, -37.570705 ], [ -70.817871, -38.548165 ], [ -71.422119, -38.908133 ], [ -71.685791, -39.800096 ], [ -71.916504, -40.830437 ], [ -71.905518, -40.979898 ], [ -71.806641, -41.640078 ], [ -73.992920, -41.640078 ], [ -73.872070, -40.979898 ], [ -73.685303, -39.935013 ], [ -73.223877, -39.257778 ], [ -73.509521, -38.281313 ], [ -73.597412, -37.151561 ], [ -73.168945, -37.116526 ], [ -72.553711, -35.505400 ], [ -71.872559, -33.906896 ], [ -71.444092, -32.417066 ], [ -71.674805, -30.911651 ], [ -71.378174, -30.088108 ], [ -71.499023, -28.854296 ], [ -70.905762, -27.634874 ], [ -70.729980, -25.700938 ], [ -70.411377, -23.624395 ], [ -70.092773, -21.391705 ], [ -70.169678, -19.756364 ], [ -70.378418, -18.344098 ], [ -69.862061, -18.083201 ], [ -69.598389, -17.570721 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Paraguay", "sov_a3": "PRY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Paraguay", "adm0_a3": "PRY", "geou_dif": 0, "geounit": "Paraguay", "gu_a3": "PRY", "su_dif": 0, "subunit": "Paraguay", "su_a3": "PRY", "brk_diff": 0, "name": "Paraguay", "name_long": "Paraguay", "brk_a3": "PRY", "brk_name": "Paraguay", "abbrev": "Para.", "postal": "PY", "formal_en": "Republic of Paraguay", "name_sort": "Paraguay", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 2, "pop_est": 6995655, "gdp_md_est": 28890, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PY", "iso_a3": "PRY", "iso_n3": "600", "un_a3": "600", "wb_a2": "PY", "wb_a3": "PRY", "woe_id": -99, "adm0_a3_is": "PRY", "adm0_a3_us": "PRY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.051270, -19.342245 ], [ -59.117432, -19.352611 ], [ -58.183594, -19.859727 ], [ -58.172607, -20.169411 ], [ -57.875977, -20.725291 ], [ -57.941895, -22.085640 ], [ -56.887207, -22.278931 ], [ -56.480713, -22.085640 ], [ -55.799561, -22.350076 ], [ -55.612793, -22.654572 ], [ -55.524902, -23.563987 ], [ -55.404053, -23.956136 ], [ -55.030518, -23.996290 ], [ -54.656982, -23.835601 ], [ -54.294434, -24.016362 ], [ -54.294434, -24.567108 ], [ -54.437256, -25.155229 ], [ -54.635010, -25.730633 ], [ -54.788818, -26.617997 ], [ -55.700684, -27.381523 ], [ -56.491699, -27.547242 ], [ -57.612305, -27.391278 ], [ -58.623047, -27.117813 ], [ -57.634277, -25.601902 ], [ -57.788086, -25.155229 ], [ -58.809814, -24.766785 ], [ -60.029297, -24.026397 ], [ -60.853271, -23.875792 ], [ -62.687988, -22.248429 ], [ -62.292480, -21.043491 ], [ -62.270508, -20.509355 ], [ -61.787109, -19.632240 ], [ -60.051270, -19.342245 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Uruguay", "sov_a3": "URY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uruguay", "adm0_a3": "URY", "geou_dif": 0, "geounit": "Uruguay", "gu_a3": "URY", "su_dif": 0, "subunit": "Uruguay", "su_a3": "URY", "brk_diff": 0, "name": "Uruguay", "name_long": "Uruguay", "brk_a3": "URY", "brk_name": "Uruguay", "abbrev": "Ury.", "postal": "UY", "formal_en": "Oriental Republic of Uruguay", "name_sort": "Uruguay", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 3494382, "gdp_md_est": 43160, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "UY", "iso_a3": "URY", "iso_n3": "858", "un_a3": "858", "wb_a2": "UY", "wb_a3": "URY", "woe_id": -99, "adm0_a3_is": "URY", "adm0_a3_us": "URY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.986084, -30.107118 ], [ -55.975342, -30.873940 ], [ -55.601807, -30.845647 ], [ -54.580078, -31.494262 ], [ -53.789062, -32.045333 ], [ -53.217773, -32.722599 ], [ -53.657227, -33.201924 ], [ -53.382568, -33.760882 ], [ -53.811035, -34.388779 ], [ -54.942627, -34.948991 ], [ -55.678711, -34.750640 ], [ -56.217041, -34.858890 ], [ -57.139893, -34.425036 ], [ -57.821045, -34.461277 ], [ -58.436279, -33.906896 ], [ -58.359375, -33.257063 ], [ -58.139648, -33.036298 ], [ -58.150635, -32.036020 ], [ -57.875977, -31.015279 ], [ -57.634277, -30.211608 ], [ -56.986084, -30.107118 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guatemala", "sov_a3": "GTM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guatemala", "adm0_a3": "GTM", "geou_dif": 0, "geounit": "Guatemala", "gu_a3": "GTM", "su_dif": 0, "subunit": "Guatemala", "su_a3": "GTM", "brk_diff": 0, "name": "Guatemala", "name_long": "Guatemala", "brk_a3": "GTM", "brk_name": "Guatemala", "abbrev": "Guat.", "postal": "GT", "formal_en": "Republic of Guatemala", "name_sort": "Guatemala", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 13276517, "gdp_md_est": 68580, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GT", "iso_a3": "GTM", "iso_n3": "320", "un_a3": "320", "wb_a2": "GT", "wb_a3": "GTM", "woe_id": -99, "adm0_a3_is": "GTM", "adm0_a3_us": "GTM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.821916 ], [ -89.154053, 17.811456 ], [ -89.154053, 17.025273 ], [ -89.230957, 15.887376 ], [ -88.934326, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.527832, 15.855674 ], [ -88.231201, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.165039, 15.072124 ], [ -89.230957, 14.881087 ], [ -89.154053, 14.679254 ], [ -89.362793, 14.434680 ], [ -89.593506, 14.370834 ], [ -89.538574, 14.253735 ], [ -89.725342, 14.136576 ], [ -90.000000, 13.934067 ], [ -90.065918, 13.891411 ], [ -90.098877, 13.742053 ], [ -90.615234, 13.912740 ], [ -90.878906, 13.923404 ], [ -90.878906, 16.077486 ], [ -90.472412, 16.077486 ], [ -90.439453, 16.415009 ], [ -90.604248, 16.478230 ], [ -90.714111, 16.688817 ], [ -90.878906, 16.794024 ], [ -90.878906, 17.821916 ], [ -90.000000, 17.821916 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Belize", "sov_a3": "BLZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belize", "adm0_a3": "BLZ", "geou_dif": 0, "geounit": "Belize", "gu_a3": "BLZ", "su_dif": 0, "subunit": "Belize", "su_a3": "BLZ", "brk_diff": 0, "name": "Belize", "name_long": "Belize", "brk_a3": "BLZ", "brk_name": "Belize", "abbrev": "Belize", "postal": "BZ", "formal_en": "Belize", "name_sort": "Belize", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 307899, "gdp_md_est": 2536, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BZ", "iso_a3": "BLZ", "iso_n3": "084", "un_a3": "084", "wb_a2": "BZ", "wb_a3": "BLZ", "woe_id": -99, "adm0_a3_is": "BLZ", "adm0_a3_us": "BLZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.308105, 18.500447 ], [ -88.297119, 18.354526 ], [ -88.110352, 18.354526 ], [ -88.132324, 18.083201 ], [ -88.286133, 17.654491 ], [ -88.198242, 17.497389 ], [ -88.308105, 17.140790 ], [ -88.242188, 17.046281 ], [ -88.363037, 16.530898 ], [ -88.560791, 16.267414 ], [ -88.736572, 16.235772 ], [ -88.934326, 15.887376 ], [ -89.230957, 15.887376 ], [ -89.154053, 17.025273 ], [ -89.154053, 17.957832 ], [ -89.033203, 18.010080 ], [ -88.857422, 17.884659 ], [ -88.494873, 18.490029 ], [ -88.308105, 18.500447 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Nicaragua", "sov_a3": "NIC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nicaragua", "adm0_a3": "NIC", "geou_dif": 0, "geounit": "Nicaragua", "gu_a3": "NIC", "su_dif": 0, "subunit": "Nicaragua", "su_a3": "NIC", "brk_diff": 0, "name": "Nicaragua", "name_long": "Nicaragua", "brk_a3": "NIC", "brk_name": "Nicaragua", "abbrev": "Nic.", "postal": "NI", "formal_en": "Republic of Nicaragua", "name_sort": "Nicaragua", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 5891199, "gdp_md_est": 16790, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NI", "iso_a3": "NIC", "iso_n3": "558", "un_a3": "558", "wb_a2": "NI", "wb_a3": "NIC", "woe_id": -99, "adm0_a3_is": "NIC", "adm0_a3_us": "NIC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.496094, 15.019075 ], [ -83.155518, 14.997852 ], [ -83.243408, 14.902322 ], [ -83.287354, 14.679254 ], [ -83.188477, 14.317615 ], [ -83.419189, 13.976715 ], [ -83.529053, 13.571242 ], [ -83.562012, 13.132979 ], [ -83.507080, 12.876070 ], [ -83.474121, 12.425848 ], [ -83.627930, 12.329269 ], [ -83.726807, 11.899604 ], [ -83.660889, 11.630716 ], [ -83.858643, 11.383109 ], [ -83.814697, 11.113727 ], [ -83.660889, 10.941192 ], [ -83.902588, 10.736175 ], [ -84.199219, 10.800933 ], [ -84.364014, 11.005904 ], [ -84.682617, 11.092166 ], [ -84.913330, 10.962764 ], [ -85.572510, 11.221510 ], [ -85.715332, 11.092166 ], [ -86.528320, 11.813588 ], [ -86.748047, 12.146746 ], [ -87.176514, 12.468760 ], [ -87.670898, 12.918907 ], [ -87.561035, 13.068777 ], [ -87.396240, 12.918907 ], [ -87.319336, 12.993853 ], [ -87.011719, 13.025966 ], [ -86.890869, 13.261333 ], [ -86.737061, 13.272026 ], [ -86.759033, 13.763396 ], [ -86.528320, 13.784737 ], [ -86.319580, 13.774066 ], [ -86.099854, 14.040673 ], [ -85.803223, 13.838080 ], [ -85.704346, 13.966054 ], [ -85.517578, 14.083301 ], [ -85.166016, 14.360191 ], [ -85.155029, 14.562318 ], [ -85.056152, 14.551684 ], [ -84.935303, 14.796128 ], [ -84.825439, 14.827991 ], [ -84.649658, 14.668626 ], [ -84.451904, 14.626109 ], [ -84.232178, 14.753635 ], [ -83.979492, 14.753635 ], [ -83.638916, 14.881087 ], [ -83.496094, 15.019075 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Costa Rica", "sov_a3": "CRI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Costa Rica", "adm0_a3": "CRI", "geou_dif": 0, "geounit": "Costa Rica", "gu_a3": "CRI", "su_dif": 0, "subunit": "Costa Rica", "su_a3": "CRI", "brk_diff": 0, "name": "Costa Rica", "name_long": "Costa Rica", "brk_a3": "CRI", "brk_name": "Costa Rica", "abbrev": "C.R.", "postal": "CR", "formal_en": "Republic of Costa Rica", "name_sort": "Costa Rica", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 4253877, "gdp_md_est": 48320, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CR", "iso_a3": "CRI", "iso_n3": "188", "un_a3": "188", "wb_a2": "CR", "wb_a3": "CRI", "woe_id": -99, "adm0_a3_is": "CRI", "adm0_a3_us": "CRI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.572510, 11.221510 ], [ -84.913330, 10.962764 ], [ -84.682617, 11.092166 ], [ -84.364014, 11.005904 ], [ -84.199219, 10.800933 ], [ -83.902588, 10.736175 ], [ -83.660889, 10.941192 ], [ -83.408203, 10.401378 ], [ -83.023682, 10.001310 ], [ -82.551270, 9.568251 ], [ -82.935791, 9.481572 ], [ -82.935791, 9.080400 ], [ -82.727051, 8.928487 ], [ -82.869873, 8.809082 ], [ -82.836914, 8.635334 ], [ -82.913818, 8.428904 ], [ -82.968750, 8.233237 ], [ -83.518066, 8.450639 ], [ -83.715820, 8.657057 ], [ -83.605957, 8.830795 ], [ -83.638916, 9.058702 ], [ -83.913574, 9.297307 ], [ -84.309082, 9.492408 ], [ -84.649658, 9.622414 ], [ -84.715576, 9.914744 ], [ -84.979248, 10.087854 ], [ -84.913330, 9.806504 ], [ -85.111084, 9.557417 ], [ -85.341797, 9.838979 ], [ -85.671387, 9.936388 ], [ -85.803223, 10.141932 ], [ -85.792236, 10.444598 ], [ -85.660400, 10.757763 ], [ -85.946045, 10.898042 ], [ -85.572510, 11.221510 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Haiti", "sov_a3": "HTI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Haiti", "adm0_a3": "HTI", "geou_dif": 0, "geounit": "Haiti", "gu_a3": "HTI", "su_dif": 0, "subunit": "Haiti", "su_a3": "HTI", "brk_diff": 0, "name": "Haiti", "name_long": "Haiti", "brk_a3": "HTI", "brk_name": "Haiti", "abbrev": "Haiti", "postal": "HT", "formal_en": "Republic of Haiti", "name_sort": "Haiti", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 9035536, "gdp_md_est": 11500, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "HT", "iso_a3": "HTI", "iso_n3": "332", "un_a3": "332", "wb_a2": "HT", "wb_a3": "HTI", "woe_id": -99, "adm0_a3_is": "HTI", "adm0_a3_us": "HTI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.190918, 19.921713 ], [ -72.586670, 19.880392 ], [ -71.718750, 19.715000 ], [ -71.630859, 19.176301 ], [ -71.707764, 18.791918 ], [ -71.949463, 18.625425 ], [ -71.696777, 18.323240 ], [ -71.718750, 18.051867 ], [ -72.377930, 18.218916 ], [ -72.850342, 18.145852 ], [ -73.454590, 18.218916 ], [ -73.927002, 18.041421 ], [ -74.465332, 18.344098 ], [ -74.377441, 18.667063 ], [ -73.454590, 18.531700 ], [ -72.696533, 18.448347 ], [ -72.344971, 18.677471 ], [ -72.795410, 19.103648 ], [ -72.784424, 19.487308 ], [ -73.421631, 19.642588 ], [ -73.190918, 19.921713 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.762695, 12.447305 ], [ -71.400146, 12.382928 ], [ -71.147461, 12.114523 ], [ -71.334229, 11.781325 ], [ -71.982422, 11.609193 ], [ -72.235107, 11.113727 ], [ -72.619629, 10.822515 ], [ -72.916260, 10.455402 ], [ -73.037109, 9.741542 ], [ -73.311768, 9.156333 ], [ -72.795410, 9.091249 ], [ -72.663574, 8.635334 ], [ -72.443848, 8.407168 ], [ -72.366943, 8.004837 ], [ -72.487793, 7.634776 ], [ -72.454834, 7.427837 ], [ -72.202148, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.675049, 7.089990 ], [ -70.103760, 6.970049 ], [ -69.389648, 6.107784 ], [ -68.994141, 6.217012 ], [ -68.269043, 6.162401 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.521973, 5.561315 ], [ -67.752686, 5.222247 ], [ -67.829590, 4.510714 ], [ -67.631836, 3.842332 ], [ -67.346191, 3.546318 ], [ -67.313232, 3.326986 ], [ -67.818604, 2.822344 ], [ -67.456055, 2.602864 ], [ -67.181396, 2.251617 ], [ -66.884766, 1.263325 ], [ -67.071533, 1.131518 ], [ -67.269287, 1.724593 ], [ -67.543945, 2.043024 ], [ -67.873535, 1.702630 ], [ -69.818115, 1.724593 ], [ -69.807129, 1.098565 ], [ -69.224854, 0.988720 ], [ -69.257812, 0.604237 ], [ -69.455566, 0.714093 ], [ -70.015869, 0.549308 ], [ -70.026855, 0.000000 ], [ -70.026855, -0.175781 ], [ -69.587402, -0.549308 ], [ -69.488525, -0.878872 ], [ -74.212646, -0.878872 ], [ -74.443359, -0.527336 ], [ -75.113525, -0.054932 ], [ -75.377197, -0.142822 ], [ -75.651855, 0.000000 ], [ -75.805664, 0.087891 ], [ -76.300049, 0.417477 ], [ -76.585693, 0.263671 ], [ -77.431641, 0.406491 ], [ -77.673340, 0.834931 ], [ -77.860107, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.768518 ], [ -78.673096, 2.273573 ], [ -78.431396, 2.635789 ], [ -77.937012, 2.701635 ], [ -77.519531, 3.326986 ], [ -77.135010, 3.853293 ], [ -77.497559, 4.094411 ], [ -77.310791, 4.674980 ], [ -77.541504, 5.583184 ], [ -77.321777, 5.845545 ], [ -77.486572, 6.697343 ], [ -77.882080, 7.231699 ], [ -77.761230, 7.710992 ], [ -77.431641, 7.645665 ], [ -77.244873, 7.939556 ], [ -77.475586, 8.526701 ], [ -77.354736, 8.678779 ], [ -76.838379, 8.646196 ], [ -76.091309, 9.340672 ], [ -75.684814, 9.449062 ], [ -75.673828, 9.774025 ], [ -75.487061, 10.628216 ], [ -74.915771, 11.092166 ], [ -74.278564, 11.102947 ], [ -74.201660, 11.318481 ], [ -73.421631, 11.232286 ], [ -72.630615, 11.738302 ], [ -72.246094, 11.964097 ], [ -71.762695, 12.447305 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Trinidad and Tobago", "sov_a3": "TTO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Trinidad and Tobago", "adm0_a3": "TTO", "geou_dif": 0, "geounit": "Trinidad and Tobago", "gu_a3": "TTO", "su_dif": 0, "subunit": "Trinidad and Tobago", "su_a3": "TTO", "brk_diff": 0, "name": "Trinidad and Tobago", "name_long": "Trinidad and Tobago", "brk_a3": "TTO", "brk_name": "Trinidad and Tobago", "abbrev": "Tr.T.", "postal": "TT", "formal_en": "Republic of Trinidad and Tobago", "name_sort": "Trinidad and Tobago", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 1310000, "gdp_md_est": 29010, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TT", "iso_a3": "TTO", "iso_n3": "780", "un_a3": "780", "wb_a2": "TT", "wb_a3": "TTO", "woe_id": -99, "adm0_a3_is": "TTO", "adm0_a3_us": "TTO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 19, "long_len": 19, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.105957, 10.898042 ], [ -60.897217, 10.865676 ], [ -60.941162, 10.120302 ], [ -61.776123, 10.001310 ], [ -61.951904, 10.098670 ], [ -61.666260, 10.368958 ], [ -61.688232, 10.768556 ], [ -61.105957, 10.898042 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Suriname", "sov_a3": "SUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Suriname", "adm0_a3": "SUR", "geou_dif": 0, "geounit": "Suriname", "gu_a3": "SUR", "su_dif": 0, "subunit": "Suriname", "su_a3": "SUR", "brk_diff": 0, "name": "Suriname", "name_long": "Suriname", "brk_a3": "SUR", "brk_name": "Suriname", "abbrev": "Sur.", "postal": "SR", "formal_en": "Republic of Suriname", "name_sort": "Suriname", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 481267, "gdp_md_est": 4254, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "SR", "iso_a3": "SUR", "iso_n3": "740", "un_a3": "740", "wb_a2": "SR", "wb_a3": "SUR", "woe_id": -99, "adm0_a3_is": "SUR", "adm0_a3_us": "SUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.041504, 6.031311 ], [ -53.964844, 5.758105 ], [ -54.481201, 4.904887 ], [ -54.404297, 4.214943 ], [ -54.008789, 3.623071 ], [ -54.184570, 3.195364 ], [ -54.272461, 2.734557 ], [ -54.525146, 2.317483 ], [ -55.107422, 2.526037 ], [ -55.579834, 2.427252 ], [ -55.975342, 2.515061 ], [ -56.074219, 2.229662 ], [ -55.909424, 2.032045 ], [ -55.997314, 1.823423 ], [ -56.546631, 1.900286 ], [ -57.150879, 2.778451 ], [ -57.282715, 3.337954 ], [ -57.612305, 3.337954 ], [ -58.051758, 4.061536 ], [ -57.864990, 4.587376 ], [ -57.919922, 4.817312 ], [ -57.315674, 5.080001 ], [ -57.150879, 5.976680 ], [ -55.953369, 5.779966 ], [ -55.843506, 5.954827 ], [ -55.041504, 6.031311 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Peru", "sov_a3": "PER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Peru", "adm0_a3": "PER", "geou_dif": 0, "geounit": "Peru", "gu_a3": "PER", "su_dif": 0, "subunit": "Peru", "su_a3": "PER", "brk_diff": 0, "name": "Peru", "name_long": "Peru", "brk_a3": "PER", "brk_name": "Peru", "abbrev": "Peru", "postal": "PE", "formal_en": "Republic of Peru", "name_sort": "Peru", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 11, "pop_est": 29546963, "gdp_md_est": 247300, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PE", "iso_a3": "PER", "iso_n3": "604", "un_a3": "604", "wb_a2": "PE", "wb_a3": "PER", "woe_id": -99, "adm0_a3_is": "PER", "adm0_a3_us": "PER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.113525, -0.054932 ], [ -74.443359, -0.527336 ], [ -74.212646, -0.878872 ], [ -75.245361, -0.878872 ], [ -75.377197, -0.142822 ], [ -75.113525, -0.054932 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.121094, 66.861082 ], [ -44.121094, 60.070322 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.157910 ], [ -46.274414, 60.855613 ], [ -48.273926, 60.860963 ], [ -49.240723, 61.407236 ], [ -49.910889, 62.385277 ], [ -51.635742, 63.631625 ], [ -52.141113, 64.282760 ], [ -52.283936, 65.178418 ], [ -53.668213, 66.102719 ], [ -53.470459, 66.513260 ], [ -53.305664, 66.839487 ], [ -53.349609, 66.861082 ], [ -44.121094, 66.861082 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Portugal", "sov_a3": "PRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Portugal", "adm0_a3": "PRT", "geou_dif": 0, "geounit": "Portugal", "gu_a3": "PRT", "su_dif": 1, "subunit": "Portugal", "su_a3": "PR1", "brk_diff": 0, "name": "Portugal", "name_long": "Portugal", "brk_a3": "PR1", "brk_name": "Portugal", "abbrev": "Port.", "postal": "P", "formal_en": "Portuguese Republic", "name_sort": "Portugal", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 10707924, "gdp_md_est": 208627, "pop_year": -99, "lastcensus": 2011, "gdp_year": 0, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PT", "iso_a3": "PRT", "iso_n3": "620", "un_a3": "620", "wb_a2": "PT", "wb_a3": "PRT", "woe_id": -99, "adm0_a3_is": "PRT", "adm0_a3_us": "PRT", "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": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.536865, 41.640078 ], [ -6.394043, 41.385052 ], [ -6.855469, 41.112469 ], [ -6.855469, 40.979898 ], [ -6.866455, 40.338170 ], [ -7.031250, 40.187267 ], [ -7.075195, 39.715638 ], [ -7.503662, 39.631077 ], [ -7.108154, 39.036253 ], [ -7.382812, 38.376115 ], [ -7.031250, 38.082690 ], [ -7.174072, 37.805444 ], [ -7.547607, 37.431251 ], [ -7.459717, 37.099003 ], [ -7.866211, 36.844461 ], [ -8.393555, 36.985003 ], [ -8.898926, 36.870832 ], [ -8.756104, 37.657732 ], [ -8.843994, 38.272689 ], [ -9.294434, 38.358888 ], [ -9.536133, 38.745515 ], [ -9.448242, 39.393755 ], [ -9.052734, 39.757880 ], [ -8.986816, 40.162083 ], [ -8.778076, 40.763901 ], [ -8.789062, 40.979898 ], [ -8.800049, 41.186922 ], [ -8.997803, 41.549700 ], [ -9.008789, 41.640078 ], [ -6.536865, 41.640078 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.932617, 35.764343 ], [ -5.196533, 35.755428 ], [ -4.592285, 35.335293 ], [ -3.647461, 35.406961 ], [ -2.614746, 35.182788 ], [ -2.175293, 35.173808 ], [ -1.801758, 34.533712 ], [ -1.735840, 33.925130 ], [ -1.395264, 32.870360 ], [ -1.131592, 32.657876 ], [ -1.318359, 32.268555 ], [ -2.625732, 32.101190 ], [ -3.076172, 31.728167 ], [ -3.658447, 31.644029 ], [ -3.691406, 30.902225 ], [ -4.866943, 30.505484 ], [ -5.251465, 30.002517 ], [ -6.064453, 29.735762 ], [ -7.064209, 29.583012 ], [ -8.679199, 28.844674 ], [ -8.668213, 27.664069 ], [ -8.822021, 27.664069 ], [ -8.800049, 27.127591 ], [ -9.415283, 27.098254 ], [ -9.744873, 26.863281 ], [ -10.195312, 26.863281 ], [ -10.557861, 27.000408 ], [ -11.392822, 26.892679 ], [ -11.722412, 26.106121 ], [ -12.041016, 26.037042 ], [ -12.502441, 24.776760 ], [ -13.897705, 23.694835 ], [ -14.227295, 22.319589 ], [ -14.633789, 21.861499 ], [ -14.754639, 21.504186 ], [ -17.028809, 21.422390 ], [ -16.973877, 21.892084 ], [ -16.589355, 22.167058 ], [ -16.270752, 22.684984 ], [ -16.336670, 23.019076 ], [ -15.985107, 23.725012 ], [ -15.435791, 24.367114 ], [ -15.095215, 24.527135 ], [ -14.831543, 25.105497 ], [ -14.809570, 25.641526 ], [ -14.447021, 26.263862 ], [ -13.776855, 26.627818 ], [ -13.150635, 27.644606 ], [ -12.623291, 28.042895 ], [ -11.689453, 28.149503 ], [ -10.909424, 28.835050 ], [ -10.404053, 29.104177 ], [ -9.569092, 29.935895 ], [ -9.821777, 31.184609 ], [ -9.437256, 32.045333 ], [ -9.305420, 32.565333 ], [ -8.668213, 33.247876 ], [ -7.657471, 33.706063 ], [ -6.921387, 34.116352 ], [ -6.251221, 35.146863 ], [ -5.932617, 35.764343 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Guinea Bissau", "sov_a3": "GNB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea Bissau", "adm0_a3": "GNB", "geou_dif": 0, "geounit": "Guinea Bissau", "gu_a3": "GNB", "su_dif": 0, "subunit": "Guinea Bissau", "su_a3": "GNB", "brk_diff": 0, "name": "Guinea-Bissau", "name_long": "Guinea-Bissau", "brk_a3": "GNB", "brk_name": "Guinea-Bissau", "abbrev": "GnB.", "postal": "GW", "formal_en": "Republic of Guinea-Bissau", "name_sort": "Guinea-Bissau", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 1533964, "gdp_md_est": 904.2, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GW", "iso_a3": "GNB", "iso_n3": "624", "un_a3": "624", "wb_a2": "GW", "wb_a3": "GNB", "woe_id": -99, "adm0_a3_is": "GNB", "adm0_a3_us": "GNB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 13, "long_len": 13, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.556641, 12.629618 ], [ -13.710938, 12.586732 ], [ -13.721924, 12.254128 ], [ -13.831787, 12.146746 ], [ -13.743896, 11.813588 ], [ -13.908691, 11.684514 ], [ -14.128418, 11.684514 ], [ -14.392090, 11.512322 ], [ -14.688721, 11.533852 ], [ -15.139160, 11.049038 ], [ -15.666504, 11.458491 ], [ -16.094971, 11.533852 ], [ -16.325684, 11.813588 ], [ -16.314697, 11.964097 ], [ -16.622314, 12.178965 ], [ -16.688232, 12.393659 ], [ -16.149902, 12.554564 ], [ -15.820312, 12.522391 ], [ -15.556641, 12.629618 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Sierra Leone", "sov_a3": "SLE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sierra Leone", "adm0_a3": "SLE", "geou_dif": 0, "geounit": "Sierra Leone", "gu_a3": "SLE", "su_dif": 0, "subunit": "Sierra Leone", "su_a3": "SLE", "brk_diff": 0, "name": "Sierra Leone", "name_long": "Sierra Leone", "brk_a3": "SLE", "brk_name": "Sierra Leone", "abbrev": "S.L.", "postal": "SL", "formal_en": "Republic of Sierra Leone", "name_sort": "Sierra Leone", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 6440053, "gdp_md_est": 4285, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SL", "iso_a3": "SLE", "iso_n3": "694", "un_a3": "694", "wb_a2": "SL", "wb_a3": "SLE", "woe_id": -99, "adm0_a3_is": "SLE", "adm0_a3_us": "SLE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.118164, 10.055403 ], [ -10.843506, 9.698228 ], [ -10.623779, 9.275622 ], [ -10.656738, 8.982749 ], [ -10.502930, 8.722218 ], [ -10.513916, 8.352823 ], [ -10.239258, 8.407168 ], [ -10.700684, 7.939556 ], [ -11.151123, 7.406048 ], [ -11.206055, 7.111795 ], [ -11.447754, 6.795535 ], [ -11.711426, 6.860985 ], [ -12.436523, 7.264394 ], [ -12.952881, 7.808963 ], [ -13.128662, 8.167993 ], [ -13.249512, 8.906780 ], [ -12.722168, 9.351513 ], [ -12.601318, 9.622414 ], [ -12.436523, 9.838979 ], [ -12.150879, 9.860628 ], [ -11.920166, 10.055403 ], [ -11.118164, 10.055403 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.516357, 15.125159 ], [ -0.274658, 14.934170 ], [ 0.373535, 14.934170 ], [ 0.285645, 14.445319 ], [ 0.428467, 13.998037 ], [ 0.878906, 13.475106 ], [ 0.878906, 11.005904 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.102947 ], [ -0.769043, 10.941192 ], [ -1.208496, 11.016689 ], [ -2.944336, 10.962764 ], [ -2.966309, 10.401378 ], [ -2.834473, 9.644077 ], [ -3.515625, 9.903921 ], [ -3.988037, 9.871452 ], [ -4.339600, 9.611582 ], [ -4.790039, 9.828154 ], [ -4.954834, 10.152746 ], [ -5.405273, 10.379765 ], [ -5.471191, 10.951978 ], [ -5.207520, 11.383109 ], [ -5.229492, 11.716788 ], [ -4.427490, 12.543840 ], [ -4.284668, 13.229251 ], [ -4.010010, 13.475106 ], [ -3.526611, 13.346865 ], [ -3.109131, 13.549881 ], [ -2.977295, 13.806075 ], [ -2.197266, 14.253735 ], [ -2.010498, 14.562318 ], [ -1.076660, 14.976627 ], [ -0.516357, 15.125159 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ivory Coast", "sov_a3": "CIV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ivory Coast", "adm0_a3": "CIV", "geou_dif": 0, "geounit": "Ivory Coast", "gu_a3": "CIV", "su_dif": 0, "subunit": "Ivory Coast", "su_a3": "CIV", "brk_diff": 0, "name": "Côte d'Ivoire", "name_long": "Côte d'Ivoire", "brk_a3": "CIV", "brk_name": "Côte d'Ivoire", "abbrev": "I.C.", "postal": "CI", "formal_en": "Republic of Ivory Coast", "formal_fr": "Republic of Cote D'Ivoire", "name_sort": "Côte d'Ivoire", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 20617068, "gdp_md_est": 33850, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CI", "iso_a3": "CIV", "iso_n3": "384", "un_a3": "384", "wb_a2": "CI", "wb_a3": "CIV", "woe_id": -99, "adm0_a3_is": "CIV", "adm0_a3_us": "CIV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 13, "long_len": 13, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.207275, 10.531020 ], [ -6.053467, 10.098670 ], [ -5.822754, 10.228437 ], [ -5.405273, 10.379765 ], [ -4.954834, 10.152746 ], [ -4.790039, 9.828154 ], [ -4.339600, 9.611582 ], [ -3.988037, 9.871452 ], [ -3.515625, 9.903921 ], [ -2.834473, 9.644077 ], [ -2.570801, 8.222364 ], [ -2.988281, 7.384258 ], [ -3.251953, 6.260697 ], [ -2.812500, 5.397273 ], [ -2.856445, 5.003394 ], [ -3.317871, 4.992450 ], [ -4.010010, 5.189423 ], [ -4.658203, 5.178482 ], [ -5.844727, 5.003394 ], [ -6.536865, 4.707828 ], [ -7.525635, 4.346411 ], [ -7.712402, 4.368320 ], [ -7.635498, 5.189423 ], [ -7.547607, 5.320705 ], [ -7.580566, 5.714380 ], [ -7.998047, 6.129631 ], [ -8.316650, 6.195168 ], [ -8.613281, 6.468151 ], [ -8.393555, 6.915521 ], [ -8.492432, 7.406048 ], [ -8.448486, 7.689217 ], [ -8.283691, 7.689217 ], [ -8.228760, 8.124491 ], [ -8.305664, 8.320212 ], [ -8.206787, 8.461506 ], [ -7.833252, 8.581021 ], [ -8.085938, 9.384032 ], [ -8.316650, 9.795678 ], [ -8.239746, 10.131117 ], [ -8.031006, 10.206813 ], [ -7.910156, 10.304110 ], [ -7.624512, 10.152746 ], [ -6.855469, 10.141932 ], [ -6.668701, 10.433793 ], [ -6.503906, 10.412183 ], [ -6.207275, 10.531020 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 36.421282 ], [ 0.878906, 21.227942 ], [ 0.000000, 21.800308 ], [ -4.932861, 24.976099 ], [ -8.690186, 27.401032 ], [ -8.668213, 27.595935 ], [ -8.679199, 28.844674 ], [ -7.064209, 29.583012 ], [ -6.064453, 29.735762 ], [ -5.251465, 30.002517 ], [ -4.866943, 30.505484 ], [ -3.691406, 30.902225 ], [ -3.658447, 31.644029 ], [ -3.076172, 31.728167 ], [ -2.625732, 32.101190 ], [ -1.318359, 32.268555 ], [ -1.131592, 32.657876 ], [ -1.395264, 32.870360 ], [ -1.735840, 33.925130 ], [ -1.801758, 34.533712 ], [ -2.175293, 35.173808 ], [ -1.219482, 35.719758 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.494385, 36.306272 ], [ 0.878906, 36.421282 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.027472 ], [ 0.878906, 11.005904 ], [ 0.878906, 10.919618 ], [ 0.769043, 10.477009 ], [ 0.878906, 10.368958 ], [ 0.878906, 6.217012 ], [ 0.834961, 6.282539 ], [ 0.560303, 6.915521 ], [ 0.483398, 7.416942 ], [ 0.703125, 8.320212 ], [ 0.450439, 8.678779 ], [ 0.362549, 9.470736 ], [ 0.362549, 10.196000 ], [ 0.000000, 10.649811 ], [ -0.054932, 10.714587 ], [ 0.000000, 10.919618 ], [ 0.021973, 11.027472 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ireland", "sov_a3": "IRL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ireland", "adm0_a3": "IRL", "geou_dif": 0, "geounit": "Ireland", "gu_a3": "IRL", "su_dif": 0, "subunit": "Ireland", "su_a3": "IRL", "brk_diff": 0, "name": "Ireland", "name_long": "Ireland", "brk_a3": "IRL", "brk_name": "Ireland", "abbrev": "Ire.", "postal": "IRL", "formal_en": "Ireland", "name_sort": "Ireland", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 4203200, "gdp_md_est": 188400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IE", "iso_a3": "IRL", "iso_n3": "372", "un_a3": "372", "wb_a2": "IE", "wb_a3": "IRL", "woe_id": -99, "adm0_a3_is": "IRL", "adm0_a3_us": "IRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.580566, 55.134930 ], [ -7.371826, 54.597528 ], [ -7.580566, 54.065836 ], [ -6.954346, 54.078729 ], [ -6.207275, 53.871963 ], [ -6.042480, 53.153359 ], [ -6.789551, 52.261434 ], [ -8.569336, 51.672555 ], [ -9.986572, 51.822198 ], [ -9.173584, 52.869130 ], [ -9.689941, 53.884916 ], [ -8.338623, 54.667478 ], [ -7.580566, 55.134930 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 49.979488 ], [ 0.878906, 42.730874 ], [ 0.692139, 42.803462 ], [ 0.329590, 42.585444 ], [ 0.000000, 42.666281 ], [ -1.505127, 43.036776 ], [ -1.911621, 43.428988 ], [ -1.384277, 44.024422 ], [ -1.197510, 46.019853 ], [ -2.230225, 47.070122 ], [ -2.966309, 47.576526 ], [ -4.493408, 47.960502 ], [ -4.603271, 48.690960 ], [ -3.295898, 48.908059 ], [ -1.625977, 48.647428 ], [ -1.933594, 49.781264 ], [ -0.999756, 49.353756 ], [ 0.000000, 49.681847 ], [ 0.878906, 49.979488 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.846436, 0.878872 ], [ 43.132324, 0.296630 ], [ 42.868652, 0.000000 ], [ 42.033691, -0.911827 ], [ 41.802979, -1.439058 ], [ 41.583252, -1.680667 ], [ 40.989990, -0.856902 ], [ 40.989990, 0.000000 ], [ 40.979004, 0.878872 ], [ 43.846436, 0.878872 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.775879, 0.878872 ], [ 17.819824, 0.296630 ], [ 17.687988, 0.000000 ], [ 17.655029, -0.054932 ], [ 17.633057, -0.417477 ], [ 17.523193, -0.736064 ], [ 16.864014, -1.219390 ], [ 16.402588, -1.735574 ], [ 15.963135, -2.701635 ], [ 15.996094, -3.524387 ], [ 15.743408, -3.853293 ], [ 15.161133, -4.335456 ], [ 14.578857, -4.959615 ], [ 14.205322, -4.784469 ], [ 14.139404, -4.499762 ], [ 13.590088, -4.499762 ], [ 13.249512, -4.872048 ], [ 12.985840, -4.773521 ], [ 12.612305, -4.434044 ], [ 12.315674, -4.598327 ], [ 11.909180, -5.036227 ], [ 11.085205, -3.973861 ], [ 11.854248, -3.425692 ], [ 11.469727, -2.756504 ], [ 11.810303, -2.504085 ], [ 12.491455, -2.383346 ], [ 12.568359, -1.944207 ], [ 13.106689, -2.427252 ], [ 13.985596, -2.460181 ], [ 14.293213, -1.988126 ], [ 14.425049, -1.329226 ], [ 14.315186, -0.549308 ], [ 13.864746, 0.000000 ], [ 13.842773, 0.043945 ], [ 14.150391, 0.878872 ], [ 17.775879, 0.878872 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Namibia", "sov_a3": "NAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Namibia", "adm0_a3": "NAM", "geou_dif": 0, "geounit": "Namibia", "gu_a3": "NAM", "su_dif": 0, "subunit": "Namibia", "su_a3": "NAM", "brk_diff": 0, "name": "Namibia", "name_long": "Namibia", "brk_a3": "NAM", "brk_name": "Namibia", "abbrev": "Nam.", "postal": "NA", "formal_en": "Republic of Namibia", "name_sort": "Namibia", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 2108665, "gdp_md_est": 13250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "NA", "iso_a3": "NAM", "iso_n3": "516", "un_a3": "516", "wb_a2": "NA", "wb_a3": "NAM", "woe_id": -99, "adm0_a3_is": "NAM", "adm0_a3_us": "NAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.810059, -16.941215 ], [ 13.458252, -16.962233 ], [ 14.051514, -17.413546 ], [ 14.205322, -17.350638 ], [ 18.259277, -17.308688 ], [ 18.951416, -17.780074 ], [ 21.368408, -17.926476 ], [ 23.214111, -17.518344 ], [ 24.027100, -17.287709 ], [ 24.675293, -17.350638 ], [ 25.070801, -17.570721 ], [ 25.081787, -17.654491 ], [ 24.510498, -17.884659 ], [ 24.213867, -17.884659 ], [ 23.576660, -18.271086 ], [ 23.192139, -17.863747 ], [ 21.654053, -18.218916 ], [ 20.906982, -18.250220 ], [ 20.874023, -21.810508 ], [ 19.885254, -21.841105 ], [ 19.885254, -28.459033 ], [ 18.995361, -28.969701 ], [ 18.457031, -29.036961 ], [ 17.830811, -28.854296 ], [ 17.380371, -28.777289 ], [ 17.215576, -28.352734 ], [ 16.820068, -28.081674 ], [ 16.336670, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.205078, -27.088473 ], [ 14.985352, -26.115986 ], [ 14.732666, -25.383735 ], [ 14.403076, -23.845650 ], [ 14.381104, -22.654572 ], [ 14.249268, -22.105999 ], [ 13.864746, -21.698265 ], [ 13.348389, -20.869078 ], [ 12.821045, -19.663280 ], [ 12.601318, -19.041349 ], [ 11.788330, -18.062312 ], [ 11.733398, -17.298199 ], [ 12.205811, -17.109293 ], [ 12.810059, -16.941215 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Burundi", "sov_a3": "BDI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burundi", "adm0_a3": "BDI", "geou_dif": 0, "geounit": "Burundi", "gu_a3": "BDI", "su_dif": 0, "subunit": "Burundi", "su_a3": "BDI", "brk_diff": 0, "name": "Burundi", "name_long": "Burundi", "brk_a3": "BDI", "brk_name": "Burundi", "abbrev": "Bur.", "postal": "BI", "formal_en": "Republic of Burundi", "name_sort": "Burundi", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8988091, "gdp_md_est": 3102, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BI", "iso_a3": "BDI", "iso_n3": "108", "un_a3": "108", "wb_a2": "BI", "wb_a3": "BDI", "woe_id": -99, "adm0_a3_is": "BDI", "adm0_a3_us": "BDI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.937744, -2.339438 ], [ 30.465088, -2.405299 ], [ 30.520020, -2.800398 ], [ 30.739746, -3.030812 ], [ 30.750732, -3.348922 ], [ 30.498047, -3.568248 ], [ 30.113525, -4.083453 ], [ 29.750977, -4.444997 ], [ 29.333496, -4.499762 ], [ 29.267578, -3.283114 ], [ 29.014893, -2.833317 ], [ 29.630127, -2.910125 ], [ 29.937744, -2.339438 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "United Republic of Tanzania", "sov_a3": "TZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Republic of Tanzania", "adm0_a3": "TZA", "geou_dif": 0, "geounit": "Tanzania", "gu_a3": "TZA", "su_dif": 0, "subunit": "Tanzania", "su_a3": "TZA", "brk_diff": 0, "name": "Tanzania", "name_long": "Tanzania", "brk_a3": "TZA", "brk_name": "Tanzania", "abbrev": "Tanz.", "postal": "TZ", "formal_en": "United Republic of Tanzania", "name_sort": "Tanzania", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 41048532, "gdp_md_est": 54250, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TZ", "iso_a3": "TZA", "iso_n3": "834", "un_a3": "834", "wb_a2": "TZ", "wb_a3": "TZA", "woe_id": -99, "adm0_a3_is": "TZA", "adm0_a3_us": "TZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.892822, -0.944781 ], [ 34.068604, -1.054628 ], [ 37.694092, -3.096636 ], [ 37.760010, -3.666928 ], [ 39.199219, -4.674980 ], [ 38.737793, -5.900189 ], [ 38.792725, -6.468151 ], [ 39.429932, -6.839170 ], [ 39.462891, -7.089990 ], [ 39.188232, -7.700105 ], [ 39.243164, -8.004837 ], [ 39.177246, -8.483239 ], [ 39.528809, -9.102097 ], [ 39.946289, -10.087854 ], [ 40.308838, -10.314919 ], [ 39.517822, -10.887254 ], [ 38.419189, -11.275387 ], [ 37.825928, -11.264612 ], [ 37.463379, -11.566144 ], [ 36.771240, -11.587669 ], [ 36.507568, -11.716788 ], [ 35.310059, -11.436955 ], [ 34.552002, -11.512322 ], [ 34.277344, -10.152746 ], [ 33.739014, -9.416548 ], [ 32.750244, -9.221405 ], [ 32.189941, -8.928487 ], [ 31.552734, -8.754795 ], [ 31.157227, -8.591884 ], [ 30.739746, -8.331083 ], [ 30.190430, -7.079088 ], [ 29.619141, -6.511815 ], [ 29.410400, -5.932972 ], [ 29.509277, -5.419148 ], [ 29.333496, -4.499762 ], [ 29.750977, -4.444997 ], [ 30.113525, -4.083453 ], [ 30.498047, -3.568248 ], [ 30.750732, -3.348922 ], [ 30.739746, -3.030812 ], [ 30.520020, -2.800398 ], [ 30.465088, -2.405299 ], [ 30.750732, -2.284551 ], [ 30.805664, -1.691649 ], [ 30.410156, -1.131518 ], [ 30.761719, -1.010690 ], [ 31.860352, -1.021674 ], [ 33.892822, -0.944781 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mozambique", "sov_a3": "MOZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mozambique", "adm0_a3": "MOZ", "geou_dif": 0, "geounit": "Mozambique", "gu_a3": "MOZ", "su_dif": 0, "subunit": "Mozambique", "su_a3": "MOZ", "brk_diff": 0, "name": "Mozambique", "name_long": "Mozambique", "brk_a3": "MOZ", "brk_name": "Mozambique", "abbrev": "Moz.", "postal": "MZ", "formal_en": "Republic of Mozambique", "name_sort": "Mozambique", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 21669278, "gdp_md_est": 18940, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MZ", "iso_a3": "MOZ", "iso_n3": "508", "un_a3": "508", "wb_a2": "MZ", "wb_a3": "MOZ", "woe_id": -99, "adm0_a3_is": "MOZ", "adm0_a3_us": "MOZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.308838, -10.314919 ], [ 40.473633, -10.757763 ], [ 40.429688, -11.759815 ], [ 40.550537, -12.629618 ], [ 40.594482, -14.200488 ], [ 40.770264, -14.689881 ], [ 40.473633, -15.400728 ], [ 40.089111, -16.098598 ], [ 39.451904, -16.720385 ], [ 37.408447, -17.581194 ], [ 36.276855, -18.656654 ], [ 35.892334, -18.833515 ], [ 35.189209, -19.549437 ], [ 34.782715, -19.777042 ], [ 34.694824, -20.488773 ], [ 35.167236, -21.248422 ], [ 35.364990, -21.830907 ], [ 35.375977, -22.136532 ], [ 35.551758, -22.085640 ], [ 35.529785, -23.069624 ], [ 35.364990, -23.533773 ], [ 35.606689, -23.704895 ], [ 35.452881, -24.116675 ], [ 35.035400, -24.477150 ], [ 34.211426, -24.806681 ], [ 33.002930, -25.353955 ], [ 32.574463, -25.720735 ], [ 32.651367, -26.145576 ], [ 32.915039, -26.214591 ], [ 32.827148, -26.735799 ], [ 32.069092, -26.725987 ], [ 31.981201, -26.283565 ], [ 31.827393, -25.839449 ], [ 31.750488, -25.482951 ], [ 31.926270, -24.367114 ], [ 31.190186, -22.248429 ], [ 32.244873, -21.115249 ], [ 32.508545, -20.385825 ], [ 32.651367, -20.303418 ], [ 32.772217, -19.715000 ], [ 32.607422, -19.414792 ], [ 32.651367, -18.667063 ], [ 32.849121, -17.978733 ], [ 32.838135, -16.709863 ], [ 32.321777, -16.383391 ], [ 31.849365, -16.309596 ], [ 31.629639, -16.066929 ], [ 31.168213, -15.855674 ], [ 30.333252, -15.876809 ], [ 30.179443, -14.785505 ], [ 33.211670, -13.966054 ], [ 33.782959, -14.445319 ], [ 34.057617, -14.349548 ], [ 34.453125, -14.604847 ], [ 34.508057, -15.008464 ], [ 34.299316, -15.474857 ], [ 34.376221, -16.183024 ], [ 35.024414, -16.794024 ], [ 35.332031, -16.098598 ], [ 35.771484, -15.887376 ], [ 35.683594, -14.604847 ], [ 35.266113, -13.880746 ], [ 34.903564, -13.560562 ], [ 34.552002, -13.571242 ], [ 34.277344, -12.275599 ], [ 34.552002, -11.512322 ], [ 35.310059, -11.436955 ], [ 36.507568, -11.716788 ], [ 36.771240, -11.587669 ], [ 37.463379, -11.566144 ], [ 37.825928, -11.264612 ], [ 38.419189, -11.275387 ], [ 39.517822, -10.887254 ], [ 40.308838, -10.314919 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Swaziland", "sov_a3": "SWZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Swaziland", "adm0_a3": "SWZ", "geou_dif": 0, "geounit": "Swaziland", "gu_a3": "SWZ", "su_dif": 0, "subunit": "Swaziland", "su_a3": "SWZ", "brk_diff": 0, "name": "Swaziland", "name_long": "Swaziland", "brk_a3": "SWZ", "brk_name": "Swaziland", "abbrev": "Swz.", "postal": "SW", "formal_en": "Kingdom of Swaziland", "name_sort": "Swaziland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 1123913, "gdp_md_est": 5702, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SZ", "iso_a3": "SWZ", "iso_n3": "748", "un_a3": "748", "wb_a2": "SZ", "wb_a3": "SWZ", "woe_id": -99, "adm0_a3_is": "SWZ", "adm0_a3_us": "SWZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.333008, -25.651430 ], [ 31.827393, -25.839449 ], [ 31.981201, -26.283565 ], [ 32.069092, -26.725987 ], [ 31.860352, -27.176469 ], [ 31.278076, -27.283926 ], [ 30.684814, -26.735799 ], [ 30.673828, -26.391870 ], [ 30.948486, -26.017298 ], [ 31.036377, -25.730633 ], [ 31.333008, -25.651430 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Madagascar", "sov_a3": "MDG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Madagascar", "adm0_a3": "MDG", "geou_dif": 0, "geounit": "Madagascar", "gu_a3": "MDG", "su_dif": 0, "subunit": "Madagascar", "su_a3": "MDG", "brk_diff": 0, "name": "Madagascar", "name_long": "Madagascar", "brk_a3": "MDG", "brk_name": "Madagascar", "abbrev": "Mad.", "postal": "MG", "formal_en": "Republic of Madagascar", "name_sort": "Madagascar", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 20653556, "gdp_md_est": 20130, "pop_year": -99, "lastcensus": 1993, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MG", "iso_a3": "MDG", "iso_n3": "450", "un_a3": "450", "wb_a2": "MG", "wb_a3": "MDG", "woe_id": -99, "adm0_a3_is": "MDG", "adm0_a3_us": "MDG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, -15.792254 ], [ 45.878906, -25.373809 ], [ 45.406494, -25.591994 ], [ 45.000000, -25.413509 ], [ 44.033203, -24.986058 ], [ 43.758545, -24.457151 ], [ 43.692627, -23.574057 ], [ 43.341064, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.428955, -21.330315 ], [ 43.890381, -21.156238 ], [ 43.890381, -20.828010 ], [ 44.373779, -20.066251 ], [ 44.461670, -19.425154 ], [ 44.230957, -18.958246 ], [ 44.033203, -18.323240 ], [ 43.956299, -17.403063 ], [ 44.307861, -16.846605 ], [ 44.439697, -16.214675 ], [ 44.934082, -16.172473 ], [ 45.000000, -16.151369 ], [ 45.494385, -15.971892 ], [ 45.878906, -15.792254 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.878906, 22.370396 ], [ 0.000000, 21.800308 ], [ 1.812744, 20.612220 ], [ 2.054443, 20.148785 ], [ 2.680664, 19.859727 ], [ 3.142090, 19.694314 ], [ 3.153076, 19.062118 ], [ 4.262695, 19.155547 ], [ 4.262695, 16.857120 ], [ 3.713379, 16.193575 ], [ 3.636475, 15.570128 ], [ 2.746582, 15.411319 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.976627 ], [ 0.373535, 14.934170 ], [ -0.274658, 14.934170 ], [ -0.516357, 15.125159 ], [ -0.878906, 15.029686 ], [ -0.878906, 22.370396 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.102947 ], [ 0.000000, 11.027472 ], [ 0.021973, 11.027472 ], [ 0.000000, 10.919618 ], [ -0.054932, 10.714587 ], [ 0.000000, 10.649811 ], [ 0.362549, 10.196000 ], [ 0.362549, 9.470736 ], [ 0.450439, 8.678779 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.416942 ], [ 0.560303, 6.915521 ], [ 0.834961, 6.282539 ], [ 1.054688, 5.932972 ], [ 0.000000, 5.539446 ], [ -0.516357, 5.353521 ], [ -0.878906, 5.123772 ], [ -0.878906, 10.962764 ], [ -0.769043, 10.941192 ], [ -0.439453, 11.102947 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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.500488, 41.640078 ], [ 20.456543, 41.516804 ], [ 20.599365, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.016846, 40.847060 ], [ 20.994873, 40.580585 ], [ 20.665283, 40.438586 ], [ 20.610352, 40.111689 ], [ 20.148926, 39.631077 ], [ 19.973145, 39.698734 ], [ 19.951172, 39.918163 ], [ 19.401855, 40.254377 ], [ 19.313965, 40.730608 ], [ 19.346924, 40.979898 ], [ 19.401855, 41.409776 ], [ 19.500732, 41.640078 ], [ 20.500488, 41.640078 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.103516, 41.640078 ], [ 26.103516, 41.335576 ], [ 25.191650, 41.236511 ], [ 24.488525, 41.590797 ], [ 23.686523, 41.310824 ], [ 22.950439, 41.343825 ], [ 22.917480, 41.640078 ], [ 26.103516, 41.640078 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.327881, 37.125286 ], [ 7.734375, 36.888408 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.438961 ], [ 8.371582, 35.487511 ], [ 8.140869, 34.660322 ], [ 7.514648, 34.098159 ], [ 7.602539, 33.348885 ], [ 8.426514, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.110496 ], [ 9.481201, 30.315988 ], [ 9.799805, 29.430029 ], [ 9.854736, 28.960089 ], [ 9.678955, 28.149503 ], [ 9.755859, 27.693256 ], [ 9.624023, 27.147145 ], [ 9.711914, 26.519735 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.373809 ], [ 9.942627, 24.946219 ], [ 10.294189, 24.387127 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.106647 ], [ 11.997070, 23.473324 ], [ 8.569336, 21.575719 ], [ 5.668945, 19.611544 ], [ 4.262695, 19.155547 ], [ 3.153076, 19.062118 ], [ 3.142090, 19.694314 ], [ 2.680664, 19.859727 ], [ 2.054443, 20.148785 ], [ 1.812744, 20.612220 ], [ 0.000000, 21.800308 ], [ -0.878906, 22.370396 ], [ -0.878906, 35.773258 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.494385, 36.306272 ], [ 1.461182, 36.606709 ], [ 3.153076, 36.791691 ], [ 4.812012, 36.870832 ], [ 5.317383, 36.721274 ], [ 6.251221, 37.116526 ], [ 7.327881, 37.125286 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.997070, 23.473324 ], [ 13.579102, 23.049407 ], [ 14.139404, 22.492257 ], [ 14.842529, 22.867318 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.053744 ], [ 15.479736, 20.735566 ], [ 15.897217, 20.396123 ], [ 15.677490, 19.963023 ], [ 15.292969, 17.936929 ], [ 15.238037, 16.636192 ], [ 13.963623, 15.686510 ], [ 13.535156, 14.370834 ], [ 13.952637, 13.998037 ], [ 13.952637, 13.357554 ], [ 14.589844, 13.336175 ], [ 14.490967, 12.865360 ], [ 14.205322, 12.811801 ], [ 14.172363, 12.490214 ], [ 13.985596, 12.468760 ], [ 13.315430, 13.560562 ], [ 13.073730, 13.603278 ], [ 12.293701, 13.047372 ], [ 11.524658, 13.336175 ], [ 10.986328, 13.389620 ], [ 10.700684, 13.250640 ], [ 10.107422, 13.282719 ], [ 9.514160, 12.854649 ], [ 9.008789, 12.833226 ], [ 7.800293, 13.346865 ], [ 7.327881, 13.100880 ], [ 6.811523, 13.122280 ], [ 6.437988, 13.496473 ], [ 5.438232, 13.870080 ], [ 4.361572, 13.752725 ], [ 4.097900, 13.539201 ], [ 3.966064, 12.961736 ], [ 3.680420, 12.554564 ], [ 3.603516, 11.662996 ], [ 2.845459, 12.243392 ], [ 2.482910, 12.243392 ], [ 2.153320, 11.942601 ], [ 2.175293, 12.629618 ], [ 1.021729, 12.854649 ], [ 0.988770, 13.336175 ], [ 0.428467, 13.998037 ], [ 0.285645, 14.445319 ], [ 0.373535, 14.934170 ], [ 1.010742, 14.976627 ], [ 1.384277, 15.326572 ], [ 2.746582, 15.411319 ], [ 3.636475, 15.570128 ], [ 3.713379, 16.193575 ], [ 4.262695, 16.857120 ], [ 4.262695, 19.155547 ], [ 5.668945, 19.611544 ], [ 8.569336, 21.575719 ], [ 11.997070, 23.473324 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.438232, 13.870080 ], [ 6.437988, 13.496473 ], [ 6.811523, 13.122280 ], [ 7.327881, 13.100880 ], [ 7.800293, 13.346865 ], [ 9.008789, 12.833226 ], [ 9.514160, 12.854649 ], [ 10.107422, 13.282719 ], [ 10.700684, 13.250640 ], [ 10.986328, 13.389620 ], [ 11.524658, 13.336175 ], [ 12.293701, 13.047372 ], [ 13.073730, 13.603278 ], [ 13.315430, 13.560562 ], [ 13.985596, 12.468760 ], [ 14.172363, 12.490214 ], [ 14.567871, 12.093039 ], [ 14.458008, 11.910354 ], [ 14.414062, 11.576907 ], [ 13.568115, 10.800933 ], [ 13.304443, 10.163560 ], [ 13.161621, 9.644077 ], [ 12.952881, 9.427387 ], [ 12.744141, 8.722218 ], [ 12.216797, 8.309341 ], [ 12.062988, 7.808963 ], [ 11.832275, 7.406048 ], [ 11.744385, 6.991859 ], [ 11.052246, 6.653695 ], [ 10.491943, 7.057282 ], [ 10.107422, 7.046379 ], [ 9.514160, 6.457234 ], [ 9.228516, 6.446318 ], [ 8.756104, 5.484768 ], [ 8.492432, 4.773521 ], [ 7.459717, 4.412137 ], [ 7.075195, 4.466904 ], [ 6.690674, 4.247812 ], [ 5.888672, 4.269724 ], [ 5.361328, 4.893941 ], [ 5.031738, 5.615986 ], [ 4.317627, 6.271618 ], [ 2.691650, 6.260697 ], [ 2.746582, 7.874265 ], [ 2.713623, 8.515836 ], [ 2.911377, 9.145486 ], [ 3.218994, 9.449062 ], [ 3.702393, 10.066220 ], [ 3.592529, 10.336536 ], [ 3.790283, 10.736175 ], [ 3.570557, 11.329253 ], [ 3.680420, 12.554564 ], [ 3.966064, 12.961736 ], [ 4.097900, 13.539201 ], [ 4.361572, 13.752725 ], [ 5.438232, 13.870080 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.853271, 23.412847 ], [ 19.841309, 21.504186 ], [ 23.829346, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.016357, 15.686510 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.510986, 14.093957 ], [ 22.181396, 13.795406 ], [ 22.291260, 13.378932 ], [ 22.027588, 12.961736 ], [ 21.928711, 12.597455 ], [ 22.280273, 12.651058 ], [ 22.489014, 12.264864 ], [ 22.500000, 11.684514 ], [ 22.873535, 11.393879 ], [ 22.862549, 11.146066 ], [ 22.225342, 10.973550 ], [ 21.719971, 10.574222 ], [ 20.994873, 9.481572 ], [ 20.050049, 9.015302 ], [ 19.083252, 9.080400 ], [ 18.808594, 8.993600 ], [ 18.907471, 8.635334 ], [ 18.380127, 8.287599 ], [ 17.962646, 7.896030 ], [ 16.699219, 7.514981 ], [ 16.446533, 7.743651 ], [ 16.281738, 7.754537 ], [ 16.105957, 7.504089 ], [ 15.270996, 7.427837 ], [ 15.435791, 7.700105 ], [ 15.117188, 8.385431 ], [ 14.974365, 8.798225 ], [ 14.534912, 8.971897 ], [ 13.952637, 9.557417 ], [ 14.161377, 10.022948 ], [ 14.622803, 9.925566 ], [ 14.908447, 10.001310 ], [ 15.457764, 9.990491 ], [ 14.919434, 10.898042 ], [ 14.952393, 11.566144 ], [ 14.886475, 12.221918 ], [ 14.490967, 12.865360 ], [ 14.589844, 13.336175 ], [ 13.952637, 13.357554 ], [ 13.952637, 13.998037 ], [ 13.535156, 14.370834 ], [ 13.963623, 15.686510 ], [ 15.238037, 16.636192 ], [ 15.292969, 17.936929 ], [ 15.677490, 19.963023 ], [ 15.897217, 20.396123 ], [ 15.479736, 20.735566 ], [ 15.468750, 21.053744 ], [ 15.095215, 21.309846 ], [ 14.842529, 22.867318 ], [ 15.853271, 23.412847 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "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": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.697510, 35.710838 ], [ 24.235840, 35.371135 ], [ 25.015869, 35.433820 ], [ 25.762939, 35.362176 ], [ 25.740967, 35.182788 ], [ 26.279297, 35.308401 ], [ 26.158447, 35.012002 ], [ 24.719238, 34.921971 ], [ 24.730225, 35.092945 ], [ 23.510742, 35.281501 ], [ 23.697510, 35.710838 ] ] ], [ [ [ 26.455078, 41.640078 ], [ 26.597900, 41.566142 ], [ 26.312256, 40.979898 ], [ 26.290283, 40.938415 ], [ 26.048584, 40.830437 ], [ 25.444336, 40.855371 ], [ 24.916992, 40.955011 ], [ 23.708496, 40.688969 ], [ 24.400635, 40.128491 ], [ 23.895264, 39.968701 ], [ 23.334961, 39.968701 ], [ 22.807617, 40.480381 ], [ 22.620850, 40.262761 ], [ 22.840576, 39.664914 ], [ 23.345947, 39.198205 ], [ 22.972412, 38.976492 ], [ 23.521729, 38.513788 ], [ 24.016113, 38.220920 ], [ 24.038086, 37.657732 ], [ 23.104248, 37.926868 ], [ 23.400879, 37.413800 ], [ 22.774658, 37.309014 ], [ 23.148193, 36.430122 ], [ 22.489014, 36.412442 ], [ 21.665039, 36.853252 ], [ 21.291504, 37.649034 ], [ 21.115723, 38.315801 ], [ 20.214844, 39.342794 ], [ 20.148926, 39.631077 ], [ 20.610352, 40.111689 ], [ 20.665283, 40.438586 ], [ 20.994873, 40.580585 ], [ 21.016846, 40.847060 ], [ 21.665039, 40.938415 ], [ 21.752930, 40.979898 ], [ 22.049561, 41.153842 ], [ 22.587891, 41.137296 ], [ 22.752686, 41.310824 ], [ 22.950439, 41.343825 ], [ 23.686523, 41.310824 ], [ 24.488525, 41.590797 ], [ 25.191650, 41.236511 ], [ 26.103516, 41.335576 ], [ 26.103516, 41.640078 ], [ 26.455078, 41.640078 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Cyprus", "sov_a3": "CYP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cyprus", "adm0_a3": "CYP", "geou_dif": 0, "geounit": "Cyprus", "gu_a3": "CYP", "su_dif": 0, "subunit": "Cyprus", "su_a3": "CYP", "brk_diff": 0, "name": "Cyprus", "name_long": "Cyprus", "brk_a3": "CYP", "brk_name": "Cyprus", "abbrev": "Cyp.", "postal": "CY", "formal_en": "Republic of Cyprus", "name_sort": "Cyprus", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 531640, "gdp_md_est": 22700, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "CY", "iso_a3": "CYP", "iso_n3": "196", "un_a3": "196", "wb_a2": "CY", "wb_a3": "CYP", "woe_id": -99, "adm0_a3_is": "CYP", "adm0_a3_us": "CYP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.189697, 35.173808 ], [ 33.376465, 35.164828 ], [ 33.453369, 35.101934 ], [ 33.475342, 35.003003 ], [ 33.519287, 35.038992 ], [ 33.673096, 35.021000 ], [ 33.859863, 35.101934 ], [ 33.969727, 35.065973 ], [ 34.002686, 34.985003 ], [ 32.969971, 34.578952 ], [ 32.486572, 34.705493 ], [ 32.255859, 35.110922 ], [ 32.728271, 35.146863 ], [ 32.915039, 35.092945 ], [ 33.189697, 35.173808 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lebanon", "sov_a3": "LBN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lebanon", "adm0_a3": "LBN", "geou_dif": 0, "geounit": "Lebanon", "gu_a3": "LBN", "su_dif": 0, "subunit": "Lebanon", "su_a3": "LBN", "brk_diff": 0, "name": "Lebanon", "name_long": "Lebanon", "brk_a3": "LBN", "brk_name": "Lebanon", "abbrev": "Leb.", "postal": "LB", "formal_en": "Lebanese Republic", "name_sort": "Lebanon", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 12, "pop_est": 4017095, "gdp_md_est": 44060, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LB", "iso_a3": "LBN", "iso_n3": "422", "un_a3": "422", "wb_a2": "LB", "wb_a3": "LBN", "woe_id": -99, "adm0_a3_is": "LBN", "adm0_a3_us": "LBN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.991211, 34.651285 ], [ 36.441650, 34.597042 ], [ 36.606445, 34.207259 ], [ 36.057129, 33.833920 ], [ 35.815430, 33.284620 ], [ 35.551758, 33.266250 ], [ 35.452881, 33.091542 ], [ 35.123291, 33.091542 ], [ 35.474854, 33.906896 ], [ 35.991211, 34.651285 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.769775, 37.387617 ], [ 43.934326, 37.256566 ], [ 44.285889, 37.002553 ], [ 44.769287, 37.177826 ], [ 45.000000, 36.756490 ], [ 45.417480, 35.978006 ], [ 45.878906, 35.773258 ], [ 45.878906, 34.912962 ], [ 45.648193, 34.750640 ], [ 45.406494, 33.970698 ], [ 45.878906, 33.339707 ], [ 45.878906, 29.132970 ], [ 45.000000, 29.171349 ], [ 44.703369, 29.180941 ], [ 41.879883, 31.194008 ], [ 40.396729, 31.896214 ], [ 39.188232, 32.166313 ], [ 38.781738, 33.385586 ], [ 41.000977, 34.425036 ], [ 41.374512, 35.630512 ], [ 41.286621, 36.359375 ], [ 41.835938, 36.606709 ], [ 42.341309, 37.230328 ], [ 42.769775, 37.387617 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Jordan", "sov_a3": "JOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Jordan", "adm0_a3": "JOR", "geou_dif": 0, "geounit": "Jordan", "gu_a3": "JOR", "su_dif": 0, "subunit": "Jordan", "su_a3": "JOR", "brk_diff": 0, "name": "Jordan", "name_long": "Jordan", "brk_a3": "JOR", "brk_name": "Jordan", "abbrev": "Jord.", "postal": "J", "formal_en": "Hashemite Kingdom of Jordan", "name_sort": "Jordan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 6342948, "gdp_md_est": 31610, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "JO", "iso_a3": "JOR", "iso_n3": "400", "un_a3": "400", "wb_a2": "JO", "wb_a3": "JOR", "woe_id": -99, "adm0_a3_is": "JOR", "adm0_a3_us": "JOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.781738, 33.385586 ], [ 39.188232, 32.166313 ], [ 39.001465, 32.017392 ], [ 37.001953, 31.512996 ], [ 37.990723, 30.514949 ], [ 37.661133, 30.344436 ], [ 37.496338, 30.012031 ], [ 36.738281, 29.869229 ], [ 36.496582, 29.506549 ], [ 36.068115, 29.200123 ], [ 34.947510, 29.363027 ], [ 34.914551, 29.506549 ], [ 35.419922, 31.109389 ], [ 35.386963, 31.494262 ], [ 35.540771, 31.784217 ], [ 35.540771, 32.398516 ], [ 35.716553, 32.713355 ], [ 36.826172, 32.314991 ], [ 38.781738, 33.385586 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.739258, 12.254128 ], [ 33.200684, 12.189704 ], [ 33.079834, 11.447723 ], [ 33.200684, 10.725381 ], [ 33.717041, 10.325728 ], [ 33.837891, 9.990491 ], [ 33.815918, 9.492408 ], [ 33.958740, 9.470736 ], [ 33.969727, 8.689639 ], [ 33.815918, 8.385431 ], [ 33.288574, 8.363693 ], [ 32.947998, 7.787194 ], [ 33.563232, 7.721878 ], [ 34.068604, 7.231699 ], [ 34.244385, 6.828261 ], [ 34.705811, 6.599131 ], [ 35.288086, 5.506640 ], [ 34.002686, 4.258768 ], [ 33.387451, 3.798484 ], [ 32.684326, 3.798484 ], [ 31.871338, 3.568248 ], [ 31.245117, 3.787522 ], [ 30.827637, 3.513421 ], [ 29.948730, 4.182073 ], [ 29.707031, 4.609278 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.421631, 4.291636 ], [ 27.971191, 4.412137 ], [ 27.366943, 5.244128 ], [ 27.213135, 5.561315 ], [ 26.455078, 5.954827 ], [ 26.213379, 6.555475 ], [ 25.795898, 6.980954 ], [ 25.114746, 7.504089 ], [ 25.114746, 7.830731 ], [ 24.565430, 8.233237 ], [ 23.884277, 8.624472 ], [ 24.191895, 8.733077 ], [ 24.532471, 8.917634 ], [ 24.785156, 9.817329 ], [ 25.059814, 10.282491 ], [ 25.784912, 10.412183 ], [ 25.960693, 10.141932 ], [ 26.477051, 9.557417 ], [ 26.751709, 9.470736 ], [ 27.103271, 9.644077 ], [ 27.828369, 9.611582 ], [ 27.960205, 9.405710 ], [ 28.959961, 9.405710 ], [ 28.992920, 9.611582 ], [ 29.509277, 9.795678 ], [ 29.608154, 10.087854 ], [ 29.992676, 10.293301 ], [ 30.827637, 9.709057 ], [ 31.343994, 9.817329 ], [ 31.849365, 10.541821 ], [ 32.398682, 11.081385 ], [ 32.310791, 11.684514 ], [ 32.069092, 11.974845 ], [ 32.673340, 12.028576 ], [ 32.739258, 12.254128 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Djibouti", "sov_a3": "DJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Djibouti", "adm0_a3": "DJI", "geou_dif": 0, "geounit": "Djibouti", "gu_a3": "DJI", "su_dif": 0, "subunit": "Djibouti", "su_a3": "DJI", "brk_diff": 0, "name": "Djibouti", "name_long": "Djibouti", "brk_a3": "DJI", "brk_name": "Djibouti", "abbrev": "Dji.", "postal": "DJ", "formal_en": "Republic of Djibouti", "name_sort": "Djibouti", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 516055, "gdp_md_est": 1885, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "DJ", "iso_a3": "DJI", "iso_n3": "262", "un_a3": "262", "wb_a2": "DJ", "wb_a3": "DJI", "woe_id": -99, "adm0_a3_is": "DJI", "adm0_a3_us": "DJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Middle East & North Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.077393, 12.704651 ], [ 43.308105, 12.393659 ], [ 43.286133, 11.985592 ], [ 42.714844, 11.738302 ], [ 43.143311, 11.469258 ], [ 42.769775, 10.930405 ], [ 42.550049, 11.113727 ], [ 42.308350, 11.038255 ], [ 41.748047, 11.059821 ], [ 41.737061, 11.361568 ], [ 41.660156, 11.641476 ], [ 41.989746, 12.103781 ], [ 42.341309, 12.543840 ], [ 42.769775, 12.458033 ], [ 43.077393, 12.704651 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.902832, 14.966013 ], [ 38.507080, 14.509144 ], [ 39.089355, 14.743011 ], [ 39.331055, 14.541050 ], [ 40.023193, 14.519780 ], [ 40.891113, 14.125922 ], [ 41.154785, 13.774066 ], [ 41.594238, 13.453737 ], [ 42.000732, 12.876070 ], [ 42.341309, 12.543840 ], [ 41.989746, 12.103781 ], [ 41.660156, 11.641476 ], [ 41.737061, 11.361568 ], [ 41.748047, 11.059821 ], [ 42.308350, 11.038255 ], [ 42.550049, 11.113727 ], [ 42.769775, 10.930405 ], [ 42.550049, 10.574222 ], [ 42.923584, 10.022948 ], [ 43.286133, 9.546583 ], [ 43.670654, 9.188870 ], [ 45.000000, 8.711359 ], [ 45.878906, 8.396300 ], [ 45.878906, 5.976680 ], [ 45.000000, 5.047171 ], [ 44.956055, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.758789, 4.258768 ], [ 42.121582, 4.236856 ], [ 41.846924, 3.919060 ], [ 41.165771, 3.930020 ], [ 40.759277, 4.258768 ], [ 39.847412, 3.842332 ], [ 39.550781, 3.425692 ], [ 38.891602, 3.502455 ], [ 38.660889, 3.623071 ], [ 38.430176, 3.590178 ], [ 38.111572, 3.601142 ], [ 36.848145, 4.455951 ], [ 36.156006, 4.455951 ], [ 35.815430, 4.784469 ], [ 35.815430, 5.342583 ], [ 35.288086, 5.506640 ], [ 34.705811, 6.599131 ], [ 34.244385, 6.828261 ], [ 34.068604, 7.231699 ], [ 33.563232, 7.721878 ], [ 32.947998, 7.787194 ], [ 33.288574, 8.363693 ], [ 33.815918, 8.385431 ], [ 33.969727, 8.689639 ], [ 33.958740, 9.589917 ], [ 34.255371, 10.639014 ], [ 34.727783, 10.919618 ], [ 34.826660, 11.329253 ], [ 35.255127, 12.093039 ], [ 35.859375, 12.586732 ], [ 36.265869, 13.571242 ], [ 36.419678, 14.424040 ], [ 37.584229, 14.221789 ], [ 37.902832, 14.966013 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.878906, 35.773258 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.756490 ], [ 44.769287, 37.177826 ], [ 44.219971, 37.978845 ], [ 44.417725, 38.281313 ], [ 44.099121, 39.436193 ], [ 44.791260, 39.715638 ], [ 44.945068, 39.342794 ], [ 45.000000, 39.300299 ], [ 45.450439, 38.882481 ], [ 45.878906, 38.796908 ], [ 45.878906, 35.773258 ] ] ], [ [ [ 45.878906, 34.912962 ], [ 45.878906, 33.339707 ], [ 45.406494, 33.970698 ], [ 45.648193, 34.750640 ], [ 45.878906, 34.912962 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Yemen", "sov_a3": "YEM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Yemen", "adm0_a3": "YEM", "geou_dif": 0, "geounit": "Yemen", "gu_a3": "YEM", "su_dif": 0, "subunit": "Yemen", "su_a3": "YEM", "brk_diff": 0, "name": "Yemen", "name_long": "Yemen", "brk_a3": "YEM", "brk_name": "Yemen", "abbrev": "Yem.", "postal": "YE", "formal_en": "Republic of Yemen", "name_sort": "Yemen, Rep.", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 23822783, "gdp_md_est": 55280, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "YE", "iso_a3": "YEM", "iso_n3": "887", "un_a3": "887", "wb_a2": "RY", "wb_a3": "YEM", "woe_id": -99, "adm0_a3_is": "YEM", "adm0_a3_us": "YEM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.374023, 17.581194 ], [ 43.791504, 17.329664 ], [ 44.055176, 17.413546 ], [ 45.000000, 17.434511 ], [ 45.208740, 17.434511 ], [ 45.395508, 17.340152 ], [ 45.878906, 17.287709 ], [ 45.878906, 13.357554 ], [ 45.615234, 13.293411 ], [ 45.395508, 13.036669 ], [ 45.142822, 12.961736 ], [ 45.000000, 12.726084 ], [ 44.989014, 12.704651 ], [ 44.483643, 12.726084 ], [ 44.165039, 12.586732 ], [ 43.472900, 12.640338 ], [ 43.220215, 13.229251 ], [ 43.242188, 13.774066 ], [ 43.077393, 14.072645 ], [ 42.890625, 14.806749 ], [ 42.593994, 15.220589 ], [ 42.802734, 15.262989 ], [ 42.692871, 15.728814 ], [ 42.813721, 15.919074 ], [ 42.769775, 16.351768 ], [ 43.209229, 16.667769 ], [ 43.110352, 17.098792 ], [ 43.374023, 17.581194 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Gabon", "sov_a3": "GAB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gabon", "adm0_a3": "GAB", "geou_dif": 0, "geounit": "Gabon", "gu_a3": "GAB", "su_dif": 0, "subunit": "Gabon", "su_a3": "GAB", "brk_diff": 0, "name": "Gabon", "name_long": "Gabon", "brk_a3": "GAB", "brk_name": "Gabon", "abbrev": "Gabon", "postal": "GA", "formal_en": "Gabonese Republic", "name_sort": "Gabon", "mapcolor7": 6, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 1514993, "gdp_md_est": 21110, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "GA", "iso_a3": "GAB", "iso_n3": "266", "un_a3": "266", "wb_a2": "GA", "wb_a3": "GAB", "woe_id": -99, "adm0_a3_is": "GAB", "adm0_a3_us": "GAB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": 3, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.941895, 2.328460 ], [ 13.073730, 2.273573 ], [ 12.996826, 1.834403 ], [ 13.282471, 1.318243 ], [ 14.018555, 1.406109 ], [ 14.271240, 1.197423 ], [ 13.842773, 0.043945 ], [ 13.864746, 0.000000 ], [ 14.315186, -0.549308 ], [ 14.359131, -0.878872 ], [ 8.811035, -0.878872 ], [ 8.822021, -0.769020 ], [ 9.041748, -0.450435 ], [ 9.195557, 0.000000 ], [ 9.283447, 0.274657 ], [ 9.492188, 1.010690 ], [ 9.821777, 1.076597 ], [ 11.282959, 1.065612 ], [ 11.271973, 2.262595 ], [ 11.744385, 2.328460 ], [ 12.348633, 2.196727 ], [ 12.941895, 2.328460 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.642090, 5.266008 ], [ 26.400146, 5.156599 ], [ 27.037354, 5.134715 ], [ 27.366943, 5.244128 ], [ 27.971191, 4.412137 ], [ 28.421631, 4.291636 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.707031, 4.609278 ], [ 29.948730, 4.182073 ], [ 30.827637, 3.513421 ], [ 30.772705, 2.350415 ], [ 31.168213, 2.207705 ], [ 30.849609, 1.856365 ], [ 30.465088, 1.592812 ], [ 30.080566, 1.065612 ], [ 29.871826, 0.604237 ], [ 29.827881, 0.000000 ], [ 29.816895, -0.197754 ], [ 29.586182, -0.582265 ], [ 29.575195, -0.878872 ], [ 17.336426, -0.878872 ], [ 17.523193, -0.736064 ], [ 17.633057, -0.417477 ], [ 17.655029, -0.054932 ], [ 17.687988, 0.000000 ], [ 17.819824, 0.296630 ], [ 17.764893, 0.856902 ], [ 17.896729, 1.746556 ], [ 18.083496, 2.372369 ], [ 18.391113, 2.910125 ], [ 18.533936, 4.203986 ], [ 18.929443, 4.718778 ], [ 19.467773, 5.036227 ], [ 20.280762, 4.696879 ], [ 20.917969, 4.324501 ], [ 21.654053, 4.225900 ], [ 22.401123, 4.039618 ], [ 22.697754, 4.642130 ], [ 22.840576, 4.718778 ], [ 23.291016, 4.620229 ], [ 24.400635, 5.112830 ], [ 24.796143, 4.904887 ], [ 25.125732, 4.937724 ], [ 25.268555, 5.178482 ], [ 25.642090, 5.266008 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.878906, 42.884015 ], [ 0.000000, 42.666281 ], [ 0.329590, 42.585444 ], [ 0.692139, 42.803462 ], [ 1.823730, 42.350425 ], [ 2.977295, 42.480200 ], [ 3.032227, 41.894100 ], [ 2.087402, 41.228249 ], [ 0.802002, 41.021355 ], [ 0.791016, 40.979898 ], [ 0.714111, 40.680638 ], [ 0.307617, 40.313043 ], [ -0.878906, 40.313043 ], [ -0.878906, 42.884015 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 15.699463, 66.861082 ], [ 15.391846, 66.513260 ], [ 15.106201, 66.196009 ], [ 13.546143, 64.788168 ], [ 13.919678, 64.449111 ], [ 13.568115, 64.052978 ], [ 12.579346, 64.067396 ], [ 11.920166, 63.129538 ], [ 11.986084, 61.804284 ], [ 12.623291, 61.296626 ], [ 12.293701, 60.119619 ], [ 11.458740, 59.433903 ], [ 11.019287, 58.859224 ], [ 10.349121, 59.472989 ], [ 8.371582, 58.315260 ], [ 7.042236, 58.083685 ], [ 5.657959, 58.591162 ], [ 5.306396, 59.667741 ], [ 4.987793, 61.975106 ], [ 5.910645, 62.618615 ], [ 8.547363, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.348633, 65.883704 ], [ 13.117676, 66.513260 ], [ 13.546143, 66.861082 ], [ 15.699463, 66.861082 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Netherlands", "sov_a3": "NL1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Netherlands", "adm0_a3": "NLD", "geou_dif": 0, "geounit": "Netherlands", "gu_a3": "NLD", "su_dif": 0, "subunit": "Netherlands", "su_a3": "NLD", "brk_diff": 0, "name": "Netherlands", "name_long": "Netherlands", "brk_a3": "NLD", "brk_name": "Netherlands", "abbrev": "Neth.", "postal": "NL", "formal_en": "Kingdom of the Netherlands", "name_sort": "Netherlands", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 16715999, "gdp_md_est": 672000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NL", "iso_a3": "NLD", "iso_n3": "528", "un_a3": "528", "wb_a2": "NL", "wb_a3": "NLD", "woe_id": -99, "adm0_a3_is": "NLD", "adm0_a3_us": "NLD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.064453, 53.514185 ], [ 6.899414, 53.488046 ], [ 7.086182, 53.146770 ], [ 6.833496, 52.234528 ], [ 6.580811, 51.856139 ], [ 5.987549, 51.856139 ], [ 6.152344, 50.805935 ], [ 5.603027, 51.041394 ], [ 4.965820, 51.481383 ], [ 4.042969, 51.268789 ], [ 3.306885, 51.351201 ], [ 3.823242, 51.624837 ], [ 4.702148, 53.094024 ], [ 6.064453, 53.514185 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Luxembourg", "sov_a3": "LUX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Luxembourg", "adm0_a3": "LUX", "geou_dif": 0, "geounit": "Luxembourg", "gu_a3": "LUX", "su_dif": 0, "subunit": "Luxembourg", "su_a3": "LUX", "brk_diff": 0, "name": "Luxembourg", "name_long": "Luxembourg", "brk_a3": "LUX", "brk_name": "Luxembourg", "abbrev": "Lux.", "postal": "L", "formal_en": "Grand Duchy of Luxembourg", "name_sort": "Luxembourg", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 491775, "gdp_md_est": 39370, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "LU", "iso_a3": "LUX", "iso_n3": "442", "un_a3": "442", "wb_a2": "LU", "wb_a3": "LUX", "woe_id": -99, "adm0_a3_is": "LUX", "adm0_a3_us": "LUX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.042480, 50.134664 ], [ 6.240234, 49.908787 ], [ 6.185303, 49.468124 ], [ 5.888672, 49.446700 ], [ 5.668945, 49.532339 ], [ 5.778809, 50.092393 ], [ 6.042480, 50.134664 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Czech Republic", "sov_a3": "CZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Czech Republic", "adm0_a3": "CZE", "geou_dif": 0, "geounit": "Czech Republic", "gu_a3": "CZE", "su_dif": 0, "subunit": "Czech Republic", "su_a3": "CZE", "brk_diff": 0, "name": "Czech Rep.", "name_long": "Czech Republic", "brk_a3": "CZE", "brk_name": "Czech Rep.", "abbrev": "Cz. Rep.", "postal": "CZ", "formal_en": "Czech Republic", "name_sort": "Czech Republic", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 10211904, "gdp_md_est": 265200, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CZ", "iso_a3": "CZE", "iso_n3": "203", "un_a3": "203", "wb_a2": "CZ", "wb_a3": "CZE", "woe_id": -99, "adm0_a3_is": "CZE", "adm0_a3_us": "CZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 14, "abbrev_len": 8, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.304199, 51.117317 ], [ 14.567871, 51.006842 ], [ 15.007324, 51.110420 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.701677 ], [ 16.171875, 50.429518 ], [ 16.710205, 50.219095 ], [ 16.864014, 50.478483 ], [ 17.545166, 50.366489 ], [ 17.644043, 50.050085 ], [ 18.391113, 49.993615 ], [ 18.852539, 49.496675 ], [ 18.544922, 49.496675 ], [ 18.391113, 49.317961 ], [ 18.160400, 49.274973 ], [ 18.094482, 49.045070 ], [ 17.907715, 49.001844 ], [ 17.885742, 48.908059 ], [ 17.534180, 48.806863 ], [ 17.094727, 48.821333 ], [ 16.951904, 48.603858 ], [ 16.490479, 48.792390 ], [ 16.029053, 48.734455 ], [ 15.249023, 49.045070 ], [ 14.897461, 48.965794 ], [ 14.337158, 48.560250 ], [ 13.590088, 48.879167 ], [ 13.029785, 49.310799 ], [ 12.513428, 49.553726 ], [ 12.414551, 49.972422 ], [ 12.238770, 50.268277 ], [ 12.963867, 50.485474 ], [ 13.337402, 50.736455 ], [ 14.051514, 50.930738 ], [ 14.304199, 51.117317 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Austria", "sov_a3": "AUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Austria", "adm0_a3": "AUT", "geou_dif": 0, "geounit": "Austria", "gu_a3": "AUT", "su_dif": 0, "subunit": "Austria", "su_a3": "AUT", "brk_diff": 0, "name": "Austria", "name_long": "Austria", "brk_a3": "AUT", "brk_name": "Austria", "abbrev": "Aust.", "postal": "A", "formal_en": "Republic of Austria", "name_sort": "Austria", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 8210281, "gdp_md_est": 329500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AT", "iso_a3": "AUT", "iso_n3": "040", "un_a3": "040", "wb_a2": "AT", "wb_a3": "AUT", "woe_id": -99, "adm0_a3_is": "AUT", "adm0_a3_us": "AUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.249023, 49.045070 ], [ 16.029053, 48.734455 ], [ 16.490479, 48.792390 ], [ 16.951904, 48.603858 ], [ 16.875000, 48.472921 ], [ 16.973877, 48.129434 ], [ 16.896973, 47.717154 ], [ 16.336670, 47.717154 ], [ 16.523438, 47.502359 ], [ 16.193848, 46.852678 ], [ 16.007080, 46.687131 ], [ 15.128174, 46.664517 ], [ 14.622803, 46.437857 ], [ 13.798828, 46.513516 ], [ 12.370605, 46.769968 ], [ 12.150879, 47.122476 ], [ 11.162109, 46.942762 ], [ 11.041260, 46.754917 ], [ 10.437012, 46.897739 ], [ 9.931641, 46.927759 ], [ 9.470215, 47.107523 ], [ 9.624023, 47.353711 ], [ 9.591064, 47.532038 ], [ 9.887695, 47.583937 ], [ 10.393066, 47.309034 ], [ 10.535889, 47.569114 ], [ 11.425781, 47.524620 ], [ 12.139893, 47.709762 ], [ 12.612305, 47.672786 ], [ 12.930908, 47.472663 ], [ 13.018799, 47.643186 ], [ 12.875977, 48.290503 ], [ 13.238525, 48.421910 ], [ 13.590088, 48.879167 ], [ 14.337158, 48.560250 ], [ 14.897461, 48.965794 ], [ 15.249023, 49.045070 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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": "Polygon", "coordinates": [ [ [ 16.556396, 46.505954 ], [ 16.875000, 46.384833 ], [ 17.622070, 45.958788 ], [ 18.446045, 45.759859 ], [ 18.819580, 45.912944 ], [ 19.072266, 45.521744 ], [ 19.379883, 45.243953 ], [ 18.995361, 44.863656 ], [ 18.544922, 45.089036 ], [ 17.852783, 45.073521 ], [ 16.995850, 45.236218 ], [ 16.534424, 45.213004 ], [ 16.314697, 45.011419 ], [ 15.952148, 45.236218 ], [ 15.743408, 44.824708 ], [ 16.237793, 44.355278 ], [ 16.446533, 44.048116 ], [ 16.907959, 43.667872 ], [ 17.292480, 43.452919 ], [ 17.666016, 43.028745 ], [ 18.555908, 42.650122 ], [ 18.446045, 42.480200 ], [ 17.501221, 42.851806 ], [ 16.929932, 43.213183 ], [ 16.007080, 43.508721 ], [ 15.172119, 44.245199 ], [ 15.369873, 44.323848 ], [ 14.919434, 44.738930 ], [ 14.897461, 45.081279 ], [ 14.249268, 45.236218 ], [ 13.941650, 44.809122 ], [ 13.656006, 45.143305 ], [ 13.677979, 45.490946 ], [ 13.710938, 45.506347 ], [ 14.403076, 45.467836 ], [ 14.589844, 45.637087 ], [ 14.930420, 45.475540 ], [ 15.325928, 45.452424 ], [ 15.314941, 45.736860 ], [ 15.666504, 45.836454 ], [ 15.765381, 46.240652 ], [ 16.556396, 46.505954 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.313965, 49.575102 ], [ 19.819336, 49.217597 ], [ 20.412598, 49.432413 ], [ 20.885010, 49.332282 ], [ 21.599121, 49.475263 ], [ 22.554932, 49.088258 ], [ 22.280273, 48.828566 ], [ 22.082520, 48.429201 ], [ 21.862793, 48.327039 ], [ 20.797119, 48.625647 ], [ 20.467529, 48.567520 ], [ 20.236816, 48.334343 ], [ 19.764404, 48.202710 ], [ 19.654541, 48.268569 ], [ 19.171143, 48.114767 ], [ 18.775635, 48.085419 ], [ 18.687744, 47.886881 ], [ 17.852783, 47.761484 ], [ 17.479248, 47.872144 ], [ 16.973877, 48.129434 ], [ 16.875000, 48.472921 ], [ 17.094727, 48.821333 ], [ 17.534180, 48.806863 ], [ 17.885742, 48.908059 ], [ 17.907715, 49.001844 ], [ 18.094482, 49.045070 ], [ 18.160400, 49.274973 ], [ 18.391113, 49.317961 ], [ 18.544922, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.907471, 49.439557 ], [ 19.313965, 49.575102 ] ] ] } } +, +{ "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.588623, 46.172223 ], [ 20.214844, 46.134170 ], [ 20.753174, 45.736860 ], [ 20.874023, 45.421588 ], [ 21.478271, 45.182037 ], [ 21.555176, 44.770137 ], [ 22.137451, 44.480830 ], [ 22.456055, 44.707706 ], [ 22.697754, 44.582643 ], [ 22.467041, 44.410240 ], [ 22.653809, 44.237328 ], [ 22.401123, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.213183 ], [ 22.598877, 42.900113 ], [ 22.434082, 42.585444 ], [ 22.543945, 42.463993 ], [ 22.379150, 42.326062 ], [ 21.906738, 42.309815 ], [ 21.566162, 42.252918 ], [ 21.533203, 42.326062 ], [ 21.654053, 42.439674 ], [ 21.774902, 42.690511 ], [ 21.632080, 42.682435 ], [ 21.434326, 42.867912 ], [ 21.269531, 42.916206 ], [ 21.137695, 43.068888 ], [ 20.950928, 43.133061 ], [ 20.808105, 43.277205 ], [ 20.632324, 43.221190 ], [ 20.489502, 42.892064 ], [ 20.247803, 42.819581 ], [ 20.335693, 42.900113 ], [ 19.951172, 43.109004 ], [ 19.621582, 43.221190 ], [ 19.478760, 43.357138 ], [ 19.215088, 43.524655 ], [ 19.445801, 43.572432 ], [ 19.599609, 44.040219 ], [ 19.116211, 44.425934 ], [ 19.357910, 44.863656 ], [ 18.995361, 44.863656 ], [ 19.379883, 45.243953 ], [ 19.072266, 45.521744 ], [ 18.819580, 45.912944 ], [ 19.588623, 46.172223 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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.731445, 42.690511 ], [ 19.797363, 42.504503 ], [ 20.061035, 42.593533 ], [ 20.280762, 42.326062 ], [ 20.522461, 42.220382 ], [ 20.588379, 41.861379 ], [ 20.456543, 41.516804 ], [ 20.599365, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.016846, 40.847060 ], [ 20.994873, 40.580585 ], [ 20.665283, 40.438586 ], [ 20.643311, 40.313043 ], [ 19.390869, 40.313043 ], [ 19.313965, 40.730608 ], [ 19.346924, 40.979898 ], [ 19.401855, 41.409776 ], [ 19.533691, 41.722131 ], [ 19.368896, 41.877741 ], [ 19.302979, 42.195969 ], [ 19.731445, 42.690511 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "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": "Polygon", "coordinates": [ [ [ 25.158691, 57.973157 ], [ 25.598145, 57.850598 ], [ 26.455078, 57.480403 ], [ 27.279053, 57.480403 ], [ 27.762451, 57.249338 ], [ 27.850342, 56.764768 ], [ 28.168945, 56.170023 ], [ 27.092285, 55.788929 ], [ 26.488037, 55.615589 ], [ 25.532227, 56.102683 ], [ 24.993896, 56.170023 ], [ 24.851074, 56.377419 ], [ 23.873291, 56.273861 ], [ 22.192383, 56.340901 ], [ 21.049805, 56.035226 ], [ 21.082764, 56.788845 ], [ 21.577148, 57.415378 ], [ 22.521973, 57.756938 ], [ 23.312988, 57.010833 ], [ 24.114990, 57.028774 ], [ 24.312744, 57.797944 ], [ 25.158691, 57.973157 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.851074, 56.377419 ], [ 24.993896, 56.170023 ], [ 25.532227, 56.102683 ], [ 26.488037, 55.615589 ], [ 26.586914, 55.172594 ], [ 25.762939, 54.851315 ], [ 25.532227, 54.284469 ], [ 24.444580, 53.910810 ], [ 23.477783, 53.917281 ], [ 23.236084, 54.226708 ], [ 22.730713, 54.329338 ], [ 22.642822, 54.584797 ], [ 22.752686, 54.857640 ], [ 22.313232, 55.015426 ], [ 21.258545, 55.191412 ], [ 21.049805, 56.035226 ], [ 22.192383, 56.340901 ], [ 23.873291, 56.273861 ], [ 24.851074, 56.377419 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.653809, 44.237328 ], [ 22.939453, 43.826601 ], [ 23.323975, 43.897892 ], [ 24.093018, 43.747289 ], [ 25.565186, 43.691708 ], [ 26.059570, 43.945372 ], [ 27.235107, 44.182204 ], [ 27.960205, 43.818675 ], [ 28.553467, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.663574, 42.585444 ], [ 27.993164, 42.008489 ], [ 27.125244, 42.147114 ], [ 26.114502, 41.828642 ], [ 26.103516, 41.335576 ], [ 25.191650, 41.236511 ], [ 24.488525, 41.590797 ], [ 23.686523, 41.310824 ], [ 22.950439, 41.343825 ], [ 22.873535, 42.000325 ], [ 22.379150, 42.326062 ], [ 22.543945, 42.463993 ], [ 22.434082, 42.585444 ], [ 22.598877, 42.900113 ], [ 22.983398, 43.213183 ], [ 22.500000, 43.644026 ], [ 22.401123, 44.008620 ], [ 22.653809, 44.237328 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 33.750000, 52.335339 ], [ 34.387207, 51.774638 ], [ 34.134521, 51.570241 ], [ 34.222412, 51.261915 ], [ 35.013428, 51.213766 ], [ 35.375977, 50.778155 ], [ 35.354004, 50.583237 ], [ 36.617432, 50.226124 ], [ 37.386475, 50.387508 ], [ 38.001709, 49.915862 ], [ 38.594971, 49.930008 ], [ 40.067139, 49.603591 ], [ 40.078125, 49.310799 ], [ 39.671631, 48.785152 ], [ 39.891357, 48.239309 ], [ 39.737549, 47.901614 ], [ 38.759766, 47.827908 ], [ 38.254395, 47.546872 ], [ 38.221436, 47.107523 ], [ 37.419434, 47.025206 ], [ 36.749268, 46.702202 ], [ 35.815430, 46.649436 ], [ 34.958496, 46.278631 ], [ 35.013428, 45.652448 ], [ 35.507812, 45.413876 ], [ 36.529541, 45.475540 ], [ 36.331787, 45.120053 ], [ 35.233154, 44.941473 ], [ 33.881836, 44.363133 ], [ 33.321533, 44.566991 ], [ 33.541260, 45.042478 ], [ 32.453613, 45.328979 ], [ 32.629395, 45.521744 ], [ 33.585205, 45.851760 ], [ 33.288574, 46.080852 ], [ 31.739502, 46.339343 ], [ 31.673584, 46.709736 ], [ 30.739746, 46.589069 ], [ 30.377197, 46.035109 ], [ 29.597168, 45.298075 ], [ 29.146729, 45.467836 ], [ 28.674316, 45.305803 ], [ 28.223877, 45.490946 ], [ 28.476562, 45.598666 ], [ 28.652344, 45.943511 ], [ 28.927002, 46.263443 ], [ 28.861084, 46.445427 ], [ 29.069824, 46.521076 ], [ 29.168701, 46.384833 ], [ 29.750977, 46.354511 ], [ 30.014648, 46.430285 ], [ 29.827881, 46.528635 ], [ 29.904785, 46.679594 ], [ 29.553223, 46.935261 ], [ 29.410400, 47.353711 ], [ 29.047852, 47.517201 ], [ 29.113770, 47.850031 ], [ 28.663330, 48.122101 ], [ 28.256836, 48.158757 ], [ 27.520752, 48.472921 ], [ 26.850586, 48.370848 ], [ 26.608887, 48.224673 ], [ 26.191406, 48.224673 ], [ 25.938721, 47.989922 ], [ 25.202637, 47.894248 ], [ 24.862061, 47.739323 ], [ 24.400635, 47.982568 ], [ 23.752441, 47.989922 ], [ 23.137207, 48.100095 ], [ 22.708740, 47.886881 ], [ 22.631836, 48.151428 ], [ 22.082520, 48.429201 ], [ 22.280273, 48.828566 ], [ 22.554932, 49.088258 ], [ 22.774658, 49.030665 ], [ 22.510986, 49.482401 ], [ 23.422852, 50.310392 ], [ 23.917236, 50.429518 ], [ 24.027100, 50.708634 ], [ 23.521729, 51.583897 ], [ 23.994141, 51.618017 ], [ 24.543457, 51.890054 ], [ 25.323486, 51.917168 ], [ 26.334229, 51.835778 ], [ 27.443848, 51.597548 ], [ 28.234863, 51.577070 ], [ 28.608398, 51.433464 ], [ 28.981934, 51.604372 ], [ 29.245605, 51.371780 ], [ 30.146484, 51.419764 ], [ 30.552979, 51.323747 ], [ 30.618896, 51.828988 ], [ 30.926514, 52.045734 ], [ 31.783447, 52.106505 ], [ 32.156982, 52.066000 ], [ 32.409668, 52.295042 ], [ 32.706299, 52.241256 ], [ 33.750000, 52.335339 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.167236, 42.041134 ], [ 36.903076, 41.335576 ], [ 38.221436, 40.979898 ], [ 38.342285, 40.955011 ], [ 38.583984, 40.979898 ], [ 39.506836, 41.104191 ], [ 40.363770, 41.021355 ], [ 41.550293, 41.541478 ], [ 42.615967, 41.590797 ], [ 43.571777, 41.095912 ], [ 43.626709, 40.979898 ], [ 43.747559, 40.747257 ], [ 43.659668, 40.313043 ], [ 27.147217, 40.313043 ], [ 27.279053, 40.421860 ], [ 28.817139, 40.463666 ], [ 29.102783, 40.979898 ], [ 29.234619, 41.228249 ], [ 31.135254, 41.087632 ], [ 32.343750, 41.738528 ], [ 33.508301, 42.024814 ], [ 35.167236, 42.041134 ] ] ], [ [ [ 27.125244, 42.147114 ], [ 27.993164, 42.008489 ], [ 28.114014, 41.623655 ], [ 28.981934, 41.302571 ], [ 28.806152, 41.062786 ], [ 27.608643, 41.004775 ], [ 27.586670, 40.979898 ], [ 27.191162, 40.697299 ], [ 26.597900, 40.313043 ], [ 26.246338, 40.313043 ], [ 26.037598, 40.622292 ], [ 26.048584, 40.830437 ], [ 26.290283, 40.938415 ], [ 26.312256, 40.979898 ], [ 26.597900, 41.566142 ], [ 26.114502, 41.828642 ], [ 27.125244, 42.147114 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.208740, 41.418015 ], [ 45.878906, 41.162114 ], [ 45.878906, 40.313043 ], [ 45.736084, 40.313043 ], [ 45.351562, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.175781, 40.988192 ], [ 45.000000, 41.219986 ], [ 44.967041, 41.253032 ], [ 45.000000, 41.269550 ], [ 45.208740, 41.418015 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "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": "Polygon", "coordinates": [ [ [ 20.643311, 69.107777 ], [ 21.972656, 68.620539 ], [ 23.532715, 67.937524 ], [ 23.554688, 66.513260 ], [ 23.565674, 66.399160 ], [ 23.763428, 66.160511 ], [ 15.062256, 66.160511 ], [ 15.391846, 66.513260 ], [ 16.765137, 68.015798 ], [ 17.720947, 68.011685 ], [ 17.984619, 68.568414 ], [ 19.874268, 68.407268 ], [ 20.017090, 69.068563 ], [ 20.643311, 69.107777 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 44.121094, 39.385264 ], [ 44.417725, 38.281313 ], [ 44.219971, 37.978845 ], [ 44.769287, 37.177826 ], [ 44.285889, 37.002553 ], [ 44.121094, 37.134045 ], [ 44.121094, 39.385264 ] ] ], [ [ [ 44.121094, 39.436193 ], [ 44.121094, 40.103286 ], [ 44.395752, 40.010787 ], [ 44.791260, 39.715638 ], [ 44.121094, 39.436193 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.121094, 9.026153 ], [ 45.000000, 8.711359 ], [ 46.944580, 8.004837 ], [ 47.779541, 8.004837 ], [ 45.000000, 5.047171 ], [ 44.956055, 5.003394 ], [ 44.121094, 4.981505 ], [ 44.121094, 9.026153 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.706055, 41.640078 ], [ 78.541260, 41.582580 ], [ 78.178711, 41.186922 ], [ 76.904297, 41.071069 ], [ 76.519775, 40.430224 ], [ 75.465088, 40.563895 ], [ 74.772949, 40.371659 ], [ 73.817139, 39.901309 ], [ 73.959961, 39.664914 ], [ 73.674316, 39.436193 ], [ 71.784668, 39.283294 ], [ 70.543213, 39.605688 ], [ 69.455566, 39.529467 ], [ 69.554443, 40.103286 ], [ 70.642090, 39.943436 ], [ 71.004639, 40.245992 ], [ 71.773682, 40.153687 ], [ 73.048096, 40.871988 ], [ 72.795410, 40.979898 ], [ 71.861572, 41.393294 ], [ 71.147461, 41.145570 ], [ 70.411377, 41.525030 ], [ 70.565186, 41.640078 ], [ 78.706055, 41.640078 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 48.746338, 41.640078 ], [ 49.108887, 41.286062 ], [ 49.317627, 40.979898 ], [ 49.614258, 40.580585 ], [ 50.075684, 40.530502 ], [ 50.383301, 40.262761 ], [ 49.559326, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.053318 ], [ 48.856201, 38.822591 ], [ 48.878174, 38.324420 ], [ 48.625488, 38.272689 ], [ 48.010254, 38.796908 ], [ 48.350830, 39.291797 ], [ 48.054199, 39.588757 ], [ 47.680664, 39.512517 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.470125 ], [ 46.032715, 39.631077 ], [ 45.604248, 39.901309 ], [ 45.889893, 40.220830 ], [ 45.351562, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.186768, 40.979898 ], [ 44.967041, 41.253032 ], [ 45.208740, 41.418015 ], [ 45.955811, 41.129021 ], [ 46.494141, 41.071069 ], [ 46.636963, 41.186922 ], [ 46.219482, 41.640078 ], [ 46.889648, 41.640078 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.977295, 41.409776 ], [ 48.328857, 41.640078 ], [ 48.746338, 41.640078 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.478606 ], [ 45.736084, 39.478606 ], [ 45.725098, 39.325799 ], [ 46.142578, 38.745515 ], [ 45.450439, 38.882481 ], [ 45.000000, 39.300299 ], [ 44.945068, 39.342794 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ] ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 44.121094, 29.602118 ], [ 44.703369, 29.180941 ], [ 45.000000, 29.171349 ], [ 46.560059, 29.104177 ], [ 47.449951, 29.008140 ], [ 47.702637, 28.526622 ], [ 48.405762, 28.555576 ], [ 48.801270, 27.693256 ], [ 49.295654, 27.469287 ], [ 49.460449, 27.117813 ], [ 50.141602, 26.696545 ], [ 50.207520, 26.283565 ], [ 50.108643, 25.948166 ], [ 50.229492, 25.611810 ], [ 50.526123, 25.334097 ], [ 50.657959, 25.005973 ], [ 50.800781, 24.756808 ], [ 51.108398, 24.557116 ], [ 51.383057, 24.637031 ], [ 51.569824, 24.246965 ], [ 51.613770, 24.016362 ], [ 51.998291, 23.008964 ], [ 54.997559, 22.502407 ], [ 55.206299, 22.715390 ], [ 55.656738, 22.004175 ], [ 54.997559, 20.004322 ], [ 51.998291, 19.010190 ], [ 49.108887, 18.625425 ], [ 48.175049, 18.166730 ], [ 47.460938, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.746826, 17.287709 ], [ 46.362305, 17.235252 ], [ 45.395508, 17.340152 ], [ 45.208740, 17.434511 ], [ 45.000000, 17.434511 ], [ 44.121094, 17.413546 ], [ 44.121094, 29.602118 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "United Arab Emirates", "sov_a3": "ARE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Arab Emirates", "adm0_a3": "ARE", "geou_dif": 0, "geounit": "United Arab Emirates", "gu_a3": "ARE", "su_dif": 0, "subunit": "United Arab Emirates", "su_a3": "ARE", "brk_diff": 0, "name": "United Arab Emirates", "name_long": "United Arab Emirates", "brk_a3": "ARE", "brk_name": "United Arab Emirates", "abbrev": "U.A.E.", "postal": "AE", "formal_en": "United Arab Emirates", "name_sort": "United Arab Emirates", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 4798491, "gdp_md_est": 184300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AE", "iso_a3": "ARE", "iso_n3": "784", "un_a3": "784", "wb_a2": "AE", "wb_a3": "ARE", "woe_id": -99, "adm0_a3_is": "ARE", "adm0_a3_us": "ARE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 20, "long_len": 20, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.063232, 26.056783 ], [ 56.260986, 25.720735 ], [ 56.392822, 24.926295 ], [ 55.876465, 24.926295 ], [ 55.799561, 24.277012 ], [ 55.975342, 24.136728 ], [ 55.524902, 23.936055 ], [ 55.524902, 23.533773 ], [ 55.228271, 23.120154 ], [ 55.206299, 22.715390 ], [ 54.997559, 22.502407 ], [ 51.998291, 23.008964 ], [ 51.613770, 24.016362 ], [ 51.569824, 24.246965 ], [ 51.756592, 24.297040 ], [ 51.789551, 24.026397 ], [ 52.569580, 24.186847 ], [ 53.997803, 24.126702 ], [ 54.689941, 24.806681 ], [ 55.437012, 25.443275 ], [ 56.063232, 26.056783 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Oman", "sov_a3": "OMN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Oman", "adm0_a3": "OMN", "geou_dif": 0, "geounit": "Oman", "gu_a3": "OMN", "su_dif": 0, "subunit": "Oman", "su_a3": "OMN", "brk_diff": 0, "name": "Oman", "name_long": "Oman", "brk_a3": "OMN", "brk_name": "Oman", "abbrev": "Oman", "postal": "OM", "formal_en": "Sultanate of Oman", "name_sort": "Oman", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3418085, "gdp_md_est": 66980, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "OM", "iso_a3": "OMN", "iso_n3": "512", "un_a3": "512", "wb_a2": "OM", "wb_a3": "OMN", "woe_id": -99, "adm0_a3_is": "OMN", "adm0_a3_us": "OMN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.392822, 24.926295 ], [ 56.843262, 24.246965 ], [ 57.392578, 23.885838 ], [ 58.128662, 23.755182 ], [ 58.721924, 23.574057 ], [ 59.447021, 22.664710 ], [ 59.798584, 22.543001 ], [ 59.798584, 22.319589 ], [ 59.282227, 21.442843 ], [ 58.853760, 21.115249 ], [ 58.480225, 20.437308 ], [ 58.029785, 20.488773 ], [ 57.821045, 20.251890 ], [ 57.656250, 19.746024 ], [ 57.788086, 19.072501 ], [ 57.689209, 18.947856 ], [ 57.227783, 18.958246 ], [ 56.601562, 18.583776 ], [ 56.502686, 18.093644 ], [ 56.282959, 17.884659 ], [ 55.656738, 17.884659 ], [ 55.261230, 17.633552 ], [ 55.272217, 17.235252 ], [ 54.788818, 16.951724 ], [ 54.228516, 17.046281 ], [ 53.569336, 16.709863 ], [ 53.107910, 16.657244 ], [ 51.998291, 19.010190 ], [ 54.997559, 20.004322 ], [ 55.656738, 22.004175 ], [ 55.206299, 22.715390 ], [ 55.228271, 23.120154 ], [ 55.524902, 23.533773 ], [ 55.524902, 23.936055 ], [ 55.975342, 24.136728 ], [ 55.799561, 24.277012 ], [ 55.876465, 24.926295 ], [ 56.392822, 24.926295 ] ] ], [ [ [ 56.359863, 26.401711 ], [ 56.480713, 26.313113 ], [ 56.381836, 25.898762 ], [ 56.260986, 25.720735 ], [ 56.063232, 26.056783 ], [ 56.359863, 26.401711 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.108398, 12.028576 ], [ 51.130371, 11.749059 ], [ 51.031494, 11.167624 ], [ 51.042480, 10.649811 ], [ 50.833740, 10.282491 ], [ 50.548096, 9.199715 ], [ 50.064697, 8.091862 ], [ 49.449463, 6.806444 ], [ 48.592529, 5.342583 ], [ 47.735596, 4.225900 ], [ 46.560059, 2.866235 ], [ 45.560303, 2.054003 ], [ 45.000000, 1.680667 ], [ 44.121094, 1.098565 ], [ 44.121094, 4.981505 ], [ 44.956055, 5.003394 ], [ 45.000000, 5.047171 ], [ 47.779541, 8.004837 ], [ 48.482666, 8.841651 ], [ 48.933105, 9.459899 ], [ 48.933105, 11.404649 ], [ 48.944092, 11.415418 ], [ 49.262695, 11.436955 ], [ 49.724121, 11.587669 ], [ 50.251465, 11.684514 ], [ 50.723877, 12.028576 ], [ 51.108398, 12.028576 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.157471, 37.134045 ], [ 75.893555, 36.668419 ], [ 76.190186, 35.906849 ], [ 77.827148, 35.496456 ], [ 76.871338, 34.660322 ], [ 75.750732, 34.506557 ], [ 74.234619, 34.750640 ], [ 73.740234, 34.325292 ], [ 74.102783, 33.449777 ], [ 74.443359, 32.768800 ], [ 75.256348, 32.277845 ], [ 74.399414, 31.700130 ], [ 74.410400, 30.987028 ], [ 73.443604, 29.983487 ], [ 72.817383, 28.969701 ], [ 71.773682, 27.916767 ], [ 70.609131, 27.994401 ], [ 69.510498, 26.941660 ], [ 70.158691, 26.500073 ], [ 70.279541, 25.730633 ], [ 70.839844, 25.224820 ], [ 71.037598, 24.357105 ], [ 68.840332, 24.367114 ], [ 68.170166, 23.694835 ], [ 67.434082, 23.946096 ], [ 67.137451, 24.666986 ], [ 66.368408, 25.433353 ], [ 64.522705, 25.244696 ], [ 62.896729, 25.224820 ], [ 61.490479, 25.085599 ], [ 61.864014, 26.244156 ], [ 63.314209, 26.765231 ], [ 63.226318, 27.225326 ], [ 62.753906, 27.381523 ], [ 62.720947, 28.265682 ], [ 61.765137, 28.700225 ], [ 61.358643, 29.305561 ], [ 60.864258, 29.831114 ], [ 62.545166, 29.324720 ], [ 63.544922, 29.477861 ], [ 64.138184, 29.343875 ], [ 64.346924, 29.563902 ], [ 65.039062, 29.477861 ], [ 66.346436, 29.888281 ], [ 66.379395, 30.741836 ], [ 66.928711, 31.306715 ], [ 67.675781, 31.306715 ], [ 67.785645, 31.587894 ], [ 68.554688, 31.718822 ], [ 68.917236, 31.625321 ], [ 69.312744, 31.905541 ], [ 69.257812, 32.509762 ], [ 69.686279, 33.109948 ], [ 70.323486, 33.367237 ], [ 69.927979, 34.025348 ], [ 70.872803, 33.988918 ], [ 71.147461, 34.352507 ], [ 71.114502, 34.741612 ], [ 71.608887, 35.155846 ], [ 71.488037, 35.657296 ], [ 71.257324, 36.075742 ], [ 71.839600, 36.518466 ], [ 72.916260, 36.721274 ], [ 74.058838, 36.844461 ], [ 74.575195, 37.028869 ], [ 75.157471, 37.134045 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.827148, 35.496456 ], [ 78.903809, 34.325292 ], [ 78.804932, 33.513919 ], [ 79.200439, 32.999450 ], [ 79.167480, 32.491230 ], [ 78.453369, 32.620870 ], [ 78.728027, 31.522361 ], [ 79.716797, 30.883369 ], [ 81.101074, 30.192618 ], [ 80.474854, 29.735762 ], [ 80.079346, 28.796546 ], [ 81.057129, 28.420391 ], [ 81.990967, 27.926474 ], [ 83.298340, 27.371767 ], [ 84.671631, 27.235095 ], [ 85.242920, 26.735799 ], [ 86.022949, 26.637639 ], [ 87.220459, 26.401711 ], [ 88.055420, 26.421390 ], [ 88.165283, 26.814266 ], [ 88.033447, 27.449790 ], [ 88.110352, 27.877928 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.108034 ], [ 89.736328, 26.725987 ], [ 90.000000, 26.784847 ], [ 90.362549, 26.882880 ], [ 90.878906, 26.843677 ], [ 90.878906, 25.135339 ], [ 90.000000, 25.264568 ], [ 89.912109, 25.274504 ], [ 89.824219, 25.967922 ], [ 89.351807, 26.017298 ], [ 88.560791, 26.450902 ], [ 88.209229, 25.770214 ], [ 88.923340, 25.244696 ], [ 88.297119, 24.866503 ], [ 88.077393, 24.507143 ], [ 88.692627, 24.236947 ], [ 88.527832, 23.634460 ], [ 88.868408, 22.887562 ], [ 89.022217, 22.065278 ], [ 88.879395, 21.698265 ], [ 88.198242, 21.708473 ], [ 86.967773, 21.504186 ], [ 87.022705, 20.745840 ], [ 86.495361, 20.159098 ], [ 85.056152, 19.487308 ], [ 83.935547, 18.302381 ], [ 83.188477, 17.675428 ], [ 82.188721, 17.025273 ], [ 82.188721, 16.562493 ], [ 81.683350, 16.320139 ], [ 80.782471, 15.961329 ], [ 80.321045, 15.908508 ], [ 80.024414, 15.146369 ], [ 80.233154, 13.838080 ], [ 80.277100, 13.015262 ], [ 79.859619, 12.060809 ], [ 79.848633, 10.358151 ], [ 79.332275, 10.314919 ], [ 78.881836, 9.546583 ], [ 79.189453, 9.221405 ], [ 78.277588, 8.939340 ], [ 77.937012, 8.254983 ], [ 77.530518, 7.972198 ], [ 76.585693, 8.906780 ], [ 76.124268, 10.304110 ], [ 75.739746, 11.318481 ], [ 75.388184, 11.781325 ], [ 74.860840, 12.747516 ], [ 74.608154, 13.998037 ], [ 74.443359, 14.626109 ], [ 73.531494, 15.993015 ], [ 73.114014, 17.936929 ], [ 72.817383, 19.217803 ], [ 72.817383, 20.427013 ], [ 72.619629, 21.361013 ], [ 71.169434, 20.766387 ], [ 70.466309, 20.879343 ], [ 69.158936, 22.095820 ], [ 69.642334, 22.451649 ], [ 69.345703, 22.847071 ], [ 68.170166, 23.694835 ], [ 68.840332, 24.367114 ], [ 71.037598, 24.357105 ], [ 70.839844, 25.224820 ], [ 70.279541, 25.730633 ], [ 70.158691, 26.500073 ], [ 69.510498, 26.941660 ], [ 70.609131, 27.994401 ], [ 71.773682, 27.916767 ], [ 72.817383, 28.969701 ], [ 73.443604, 29.983487 ], [ 74.410400, 30.987028 ], [ 74.399414, 31.700130 ], [ 75.256348, 32.277845 ], [ 74.443359, 32.768800 ], [ 74.102783, 33.449777 ], [ 73.740234, 34.325292 ], [ 74.234619, 34.750640 ], [ 75.750732, 34.506557 ], [ 76.871338, 34.660322 ], [ 77.827148, 35.496456 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bangladesh", "sov_a3": "BGD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bangladesh", "adm0_a3": "BGD", "geou_dif": 0, "geounit": "Bangladesh", "gu_a3": "BGD", "su_dif": 0, "subunit": "Bangladesh", "su_a3": "BGD", "brk_diff": 0, "name": "Bangladesh", "name_long": "Bangladesh", "brk_a3": "BGD", "brk_name": "Bangladesh", "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "name_sort": "Bangladesh", "mapcolor7": 3, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 156050883, "gdp_md_est": 224000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BD", "iso_a3": "BGD", "iso_n3": "050", "un_a3": "050", "wb_a2": "BD", "wb_a3": "BGD", "woe_id": -99, "adm0_a3_is": "BGD", "adm0_a3_us": "BGD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.560791, 26.450902 ], [ 89.351807, 26.017298 ], [ 89.824219, 25.967922 ], [ 89.912109, 25.274504 ], [ 90.000000, 25.264568 ], [ 90.867920, 25.135339 ], [ 90.878906, 25.135339 ], [ 90.878906, 22.796439 ], [ 90.494385, 22.806567 ], [ 90.582275, 22.400872 ], [ 90.263672, 21.841105 ], [ 90.000000, 21.973614 ], [ 89.846191, 22.044913 ], [ 89.692383, 21.861499 ], [ 89.417725, 21.973614 ], [ 89.022217, 22.065278 ], [ 88.868408, 22.887562 ], [ 88.527832, 23.634460 ], [ 88.692627, 24.236947 ], [ 88.077393, 24.507143 ], [ 88.297119, 24.866503 ], [ 88.923340, 25.244696 ], [ 88.209229, 25.770214 ], [ 88.560791, 26.450902 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.502197, 45.590978 ], [ 61.051025, 44.410240 ], [ 62.006836, 43.508721 ], [ 63.182373, 43.651975 ], [ 64.896240, 43.731414 ], [ 66.093750, 43.004647 ], [ 66.016846, 42.000325 ], [ 66.500244, 41.992160 ], [ 66.708984, 41.170384 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 68.818359, 40.979898 ], [ 69.060059, 41.385052 ], [ 70.378418, 42.081917 ], [ 70.960693, 42.269179 ], [ 71.257324, 42.171546 ], [ 70.411377, 41.525030 ], [ 71.147461, 41.145570 ], [ 71.861572, 41.393294 ], [ 72.795410, 40.979898 ], [ 73.048096, 40.871988 ], [ 72.070312, 40.313043 ], [ 70.543213, 40.313043 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.323730, 40.730608 ], [ 69.114990, 40.313043 ], [ 62.248535, 40.313043 ], [ 61.929932, 40.979898 ], [ 61.875000, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.457764, 41.228249 ], [ 60.073242, 41.426253 ], [ 59.974365, 42.228517 ], [ 58.623047, 42.755080 ], [ 57.777100, 42.171546 ], [ 56.931152, 41.828642 ], [ 57.095947, 41.327326 ], [ 55.964355, 41.310824 ], [ 55.920410, 44.995883 ], [ 58.502197, 45.590978 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.395264, 41.861379 ], [ 46.680908, 41.828642 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.977295, 41.409776 ], [ 48.581543, 41.812267 ], [ 49.108887, 41.286062 ], [ 49.317627, 40.979898 ], [ 49.614258, 40.580585 ], [ 50.075684, 40.530502 ], [ 50.328369, 40.313043 ], [ 45.736084, 40.313043 ], [ 45.351562, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.186768, 40.979898 ], [ 45.000000, 41.219986 ], [ 44.967041, 41.253032 ], [ 45.000000, 41.269550 ], [ 45.208740, 41.418015 ], [ 45.955811, 41.129021 ], [ 46.494141, 41.071069 ], [ 46.636963, 41.186922 ], [ 46.142578, 41.730330 ], [ 46.395264, 41.861379 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.963308 ], [ 70.455322, 40.497092 ], [ 70.543213, 40.313043 ], [ 69.114990, 40.313043 ], [ 69.323730, 40.730608 ], [ 70.664062, 40.963308 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "East Timor", "sov_a3": "TLS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "East Timor", "adm0_a3": "TLS", "geou_dif": 0, "geounit": "East Timor", "gu_a3": "TLS", "su_dif": 0, "subunit": "East Timor", "su_a3": "TLS", "brk_diff": 0, "name": "Timor-Leste", "name_long": "Timor-Leste", "brk_a3": "TLS", "brk_name": "Timor-Leste", "abbrev": "T.L.", "postal": "TL", "formal_en": "Democratic Republic of Timor-Leste", "name_sort": "Timor-Leste", "name_alt": "East Timor", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1131612, "gdp_md_est": 2520, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "TL", "iso_a3": "TLS", "iso_n3": "626", "un_a3": "626", "wb_a2": "TP", "wb_a3": "TMP", "woe_id": -99, "adm0_a3_is": "TLS", "adm0_a3_us": "TLS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.947021, -8.265855 ], [ 127.331543, -8.396300 ], [ 126.958008, -8.667918 ], [ 125.925293, -9.102097 ], [ 125.079346, -9.384032 ], [ 125.068359, -9.080400 ], [ 124.958496, -8.885072 ], [ 125.079346, -8.646196 ], [ 125.936279, -8.428904 ], [ 126.639404, -8.396300 ], [ 126.947021, -8.265855 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bhutan", "sov_a3": "BTN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bhutan", "adm0_a3": "BTN", "geou_dif": 0, "geounit": "Bhutan", "gu_a3": "BTN", "su_dif": 0, "subunit": "Bhutan", "su_a3": "BTN", "brk_diff": 0, "name": "Bhutan", "name_long": "Bhutan", "brk_a3": "BTN", "brk_name": "Bhutan", "abbrev": "Bhutan", "postal": "BT", "formal_en": "Kingdom of Bhutan", "name_sort": "Bhutan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 691141, "gdp_md_est": 3524, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BT", "iso_a3": "BTN", "iso_n3": "064", "un_a3": "064", "wb_a2": "BT", "wb_a3": "BTN", "woe_id": -99, "adm0_a3_is": "BTN", "adm0_a3_us": "BTN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.010986, 28.304381 ], [ 90.725098, 28.071980 ], [ 91.252441, 28.042895 ], [ 91.691895, 27.780772 ], [ 92.098389, 27.459539 ], [ 92.032471, 26.843677 ], [ 91.208496, 26.814266 ], [ 90.362549, 26.882880 ], [ 90.000000, 26.784847 ], [ 89.736328, 26.725987 ], [ 89.121094, 26.980829 ], [ 89.121094, 27.654338 ], [ 89.472656, 28.042895 ], [ 90.000000, 28.294707 ], [ 90.010986, 28.304381 ] ] ] } } +, +{ "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": [ [ [ [ 110.203857, 20.107523 ], [ 110.786133, 20.086889 ], [ 111.005859, 19.704658 ], [ 110.566406, 19.259294 ], [ 110.335693, 18.687879 ], [ 109.467773, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.621826, 19.373341 ], [ 109.116211, 19.828725 ], [ 110.203857, 20.107523 ] ] ], [ [ [ 126.694336, 41.640078 ], [ 126.177979, 41.112469 ], [ 125.914307, 40.979898 ], [ 125.079346, 40.572240 ], [ 124.255371, 39.935013 ], [ 122.860107, 39.639538 ], [ 122.124023, 39.172659 ], [ 121.047363, 38.899583 ], [ 121.585693, 39.368279 ], [ 121.365967, 39.757880 ], [ 122.167969, 40.430224 ], [ 121.629639, 40.946714 ], [ 120.761719, 40.597271 ], [ 119.630127, 39.901309 ], [ 119.014893, 39.257778 ], [ 118.037109, 39.206719 ], [ 117.531738, 38.745515 ], [ 118.059082, 38.065392 ], [ 118.872070, 37.900865 ], [ 118.905029, 37.448697 ], [ 119.696045, 37.160317 ], [ 120.816650, 37.874853 ], [ 121.706543, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.659606 ], [ 120.629883, 36.120128 ], [ 119.663086, 35.612651 ], [ 119.146729, 34.912962 ], [ 120.223389, 34.361576 ], [ 120.618896, 33.385586 ], [ 121.223145, 32.463426 ], [ 121.904297, 31.700130 ], [ 121.882324, 30.958769 ], [ 121.256104, 30.685164 ], [ 121.497803, 30.145127 ], [ 122.091064, 29.840644 ], [ 121.937256, 29.027355 ], [ 121.673584, 28.226970 ], [ 121.124268, 28.139816 ], [ 120.388184, 27.059126 ], [ 119.575195, 25.750425 ], [ 118.652344, 24.557116 ], [ 117.279053, 23.634460 ], [ 115.883789, 22.786311 ], [ 114.763184, 22.674847 ], [ 114.147949, 22.228090 ], [ 113.796387, 22.553147 ], [ 113.236084, 22.055096 ], [ 111.840820, 21.555284 ], [ 110.775146, 21.401934 ], [ 110.434570, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.621582, 21.012727 ], [ 109.863281, 21.401934 ], [ 108.511963, 21.718680 ], [ 108.039551, 21.555284 ], [ 107.039795, 21.820708 ], [ 106.556396, 22.228090 ], [ 106.721191, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.468994, 22.826820 ], [ 103.502197, 22.705255 ], [ 102.700195, 22.715390 ], [ 102.161865, 22.471955 ], [ 101.645508, 22.319589 ], [ 101.799316, 21.176729 ], [ 101.260986, 21.207459 ], [ 101.173096, 21.442843 ], [ 101.140137, 21.851302 ], [ 100.415039, 21.565502 ], [ 99.975586, 21.749296 ], [ 99.239502, 22.126355 ], [ 99.525146, 22.958393 ], [ 98.887939, 23.150462 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.905927 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.928407 ], [ 98.701172, 26.745610 ], [ 98.679199, 27.518015 ], [ 98.239746, 27.751608 ], [ 97.910156, 28.343065 ], [ 97.316895, 28.265682 ], [ 96.240234, 28.420391 ], [ 96.580811, 28.835050 ], [ 96.108398, 29.458731 ], [ 95.394287, 29.036961 ], [ 94.559326, 29.286399 ], [ 93.405762, 28.642389 ], [ 92.493896, 27.897349 ], [ 91.691895, 27.780772 ], [ 91.252441, 28.042895 ], [ 90.725098, 28.071980 ], [ 90.010986, 28.304381 ], [ 90.000000, 28.294707 ], [ 89.472656, 28.042895 ], [ 89.121094, 27.654338 ], [ 89.121094, 41.640078 ], [ 104.897461, 41.640078 ], [ 104.963379, 41.599013 ], [ 105.051270, 41.640078 ], [ 126.694336, 41.640078 ] ] ], [ [ [ 128.155518, 41.640078 ], [ 128.199463, 41.467428 ], [ 127.342529, 41.508577 ], [ 127.133789, 41.640078 ], [ 128.155518, 41.640078 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.107422, 20.427013 ], [ 100.546875, 20.117840 ], [ 100.601807, 19.518375 ], [ 101.271973, 19.466592 ], [ 101.030273, 18.417079 ], [ 101.052246, 17.518344 ], [ 102.106934, 18.114529 ], [ 102.403564, 17.936929 ], [ 102.996826, 17.968283 ], [ 103.194580, 18.312811 ], [ 103.952637, 18.250220 ], [ 104.710693, 17.434511 ], [ 104.776611, 16.446622 ], [ 105.578613, 15.580711 ], [ 105.534668, 14.732386 ], [ 105.216064, 14.275030 ], [ 104.271240, 14.424040 ], [ 102.985840, 14.232438 ], [ 102.337646, 13.400307 ], [ 102.579346, 12.189704 ], [ 101.678467, 12.651058 ], [ 100.821533, 12.629618 ], [ 100.975342, 13.421681 ], [ 100.096436, 13.410994 ], [ 100.008545, 12.307802 ], [ 99.151611, 9.968851 ], [ 99.217529, 9.243093 ], [ 99.865723, 9.210560 ], [ 100.272217, 8.298470 ], [ 100.458984, 7.438731 ], [ 101.008301, 6.860985 ], [ 101.612549, 6.740986 ], [ 102.139893, 6.227934 ], [ 101.810303, 5.812757 ], [ 101.151123, 5.692516 ], [ 101.074219, 6.206090 ], [ 100.250244, 6.653695 ], [ 100.085449, 6.468151 ], [ 99.689941, 6.850078 ], [ 99.514160, 7.351571 ], [ 98.986816, 7.917793 ], [ 98.503418, 8.385431 ], [ 98.338623, 7.798079 ], [ 98.140869, 8.352823 ], [ 98.250732, 8.982749 ], [ 98.547363, 9.936388 ], [ 99.030762, 10.962764 ], [ 99.580078, 11.899604 ], [ 99.195557, 12.811801 ], [ 99.206543, 13.272026 ], [ 99.096680, 13.838080 ], [ 98.426514, 14.626109 ], [ 98.184814, 15.125159 ], [ 98.536377, 15.315976 ], [ 98.898926, 16.183024 ], [ 98.492432, 16.846605 ], [ 97.855225, 17.570721 ], [ 97.371826, 18.448347 ], [ 97.789307, 18.635835 ], [ 98.250732, 19.715000 ], [ 98.953857, 19.756364 ], [ 99.536133, 20.190035 ], [ 100.107422, 20.427013 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cambodia", "sov_a3": "KHM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cambodia", "adm0_a3": "KHM", "geou_dif": 0, "geounit": "Cambodia", "gu_a3": "KHM", "su_dif": 0, "subunit": "Cambodia", "su_a3": "KHM", "brk_diff": 0, "name": "Cambodia", "name_long": "Cambodia", "brk_a3": "KHM", "brk_name": "Cambodia", "abbrev": "Camb.", "postal": "KH", "formal_en": "Kingdom of Cambodia", "name_sort": "Cambodia", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 5, "pop_est": 14494293, "gdp_md_est": 27940, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KH", "iso_a3": "KHM", "iso_n3": "116", "un_a3": "116", "wb_a2": "KH", "wb_a3": "KHM", "woe_id": -99, "adm0_a3_is": "KHM", "adm0_a3_us": "KHM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.490479, 14.572951 ], [ 107.380371, 14.211139 ], [ 107.611084, 13.539201 ], [ 107.490234, 12.340002 ], [ 105.809326, 11.576907 ], [ 106.248779, 10.962764 ], [ 105.194092, 10.898042 ], [ 104.326172, 10.487812 ], [ 103.491211, 10.639014 ], [ 103.084717, 11.156845 ], [ 102.579346, 12.189704 ], [ 102.337646, 13.400307 ], [ 102.985840, 14.232438 ], [ 104.271240, 14.424040 ], [ 105.216064, 14.275030 ], [ 106.040039, 13.891411 ], [ 106.490479, 14.572951 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "North Korea", "sov_a3": "PRK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "North Korea", "adm0_a3": "PRK", "geou_dif": 0, "geounit": "North Korea", "gu_a3": "PRK", "su_dif": 0, "subunit": "North Korea", "su_a3": "PRK", "brk_diff": 0, "name": "Dem. Rep. Korea", "name_long": "Dem. Rep. Korea", "brk_a3": "PRK", "brk_name": "Dem. Rep. Korea", "abbrev": "N.K.", "postal": "KP", "formal_en": "Democratic People's Republic of Korea", "name_sort": "Korea, Dem. Rep.", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 22665345, "gdp_md_est": 40000, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KP", "iso_a3": "PRK", "iso_n3": "408", "un_a3": "408", "wb_a2": "KP", "wb_a3": "PRK", "woe_id": -99, "adm0_a3_is": "PRK", "adm0_a3_us": "PRK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 15, "long_len": 15, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.693604, 41.640078 ], [ 129.660645, 41.607228 ], [ 129.693604, 40.979898 ], [ 129.704590, 40.888601 ], [ 129.177246, 40.663973 ], [ 129.001465, 40.488737 ], [ 128.627930, 40.195659 ], [ 127.957764, 40.027614 ], [ 127.529297, 39.757880 ], [ 127.496338, 39.325799 ], [ 127.375488, 39.215231 ], [ 127.781982, 39.053318 ], [ 128.342285, 38.616870 ], [ 128.199463, 38.376115 ], [ 127.770996, 38.307181 ], [ 127.067871, 38.264063 ], [ 126.683350, 37.805444 ], [ 126.232910, 37.848833 ], [ 126.166992, 37.753344 ], [ 125.683594, 37.944198 ], [ 125.562744, 37.753344 ], [ 125.266113, 37.675125 ], [ 125.233154, 37.857507 ], [ 124.980469, 37.952861 ], [ 124.705811, 38.108628 ], [ 124.980469, 38.556757 ], [ 125.211182, 38.668356 ], [ 125.123291, 38.856820 ], [ 125.375977, 39.393755 ], [ 125.321045, 39.554883 ], [ 124.727783, 39.664914 ], [ 124.255371, 39.935013 ], [ 125.079346, 40.572240 ], [ 125.914307, 40.979898 ], [ 126.177979, 41.112469 ], [ 126.694336, 41.640078 ], [ 127.133789, 41.640078 ], [ 127.342529, 41.508577 ], [ 128.199463, 41.467428 ], [ 128.155518, 41.640078 ], [ 129.693604, 41.640078 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Philippines", "sov_a3": "PHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Philippines", "adm0_a3": "PHL", "geou_dif": 0, "geounit": "Philippines", "gu_a3": "PHL", "su_dif": 0, "subunit": "Philippines", "su_a3": "PHL", "brk_diff": 0, "name": "Philippines", "name_long": "Philippines", "brk_a3": "PHL", "brk_name": "Philippines", "abbrev": "Phil.", "postal": "PH", "formal_en": "Republic of the Philippines", "name_sort": "Philippines", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 97976603, "gdp_md_est": 317500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PH", "iso_a3": "PHL", "iso_n3": "608", "un_a3": "608", "wb_a2": "PH", "wb_a3": "PHL", "woe_id": -99, "adm0_a3_is": "PHL", "adm0_a3_us": "PHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.408936, 9.763198 ], [ 126.221924, 9.286465 ], [ 126.375732, 8.418036 ], [ 126.474609, 7.754537 ], [ 126.529541, 7.199001 ], [ 126.188965, 6.282539 ], [ 125.826416, 7.297088 ], [ 125.354004, 6.795535 ], [ 125.672607, 6.053161 ], [ 125.386963, 5.583184 ], [ 124.211426, 6.162401 ], [ 123.936768, 6.893707 ], [ 124.233398, 7.362467 ], [ 123.607178, 7.841615 ], [ 123.288574, 7.427837 ], [ 122.816162, 7.460518 ], [ 122.080078, 6.904614 ], [ 121.915283, 7.199001 ], [ 122.310791, 8.037473 ], [ 122.937012, 8.320212 ], [ 123.486328, 8.700499 ], [ 123.837891, 8.244110 ], [ 124.595947, 8.515836 ], [ 124.760742, 8.961045 ], [ 125.463867, 8.993600 ], [ 125.408936, 9.763198 ] ] ], [ [ [ 119.509277, 11.372339 ], [ 119.685059, 10.563422 ], [ 119.025879, 10.012130 ], [ 118.498535, 9.318990 ], [ 117.169189, 8.374562 ], [ 117.663574, 9.069551 ], [ 118.377686, 9.687398 ], [ 118.981934, 10.379765 ], [ 119.509277, 11.372339 ] ] ], [ [ [ 124.068604, 11.243062 ], [ 123.980713, 10.282491 ], [ 123.618164, 9.958030 ], [ 123.299561, 9.318990 ], [ 122.991943, 9.026153 ], [ 122.376709, 9.719886 ], [ 122.585449, 9.990491 ], [ 122.827148, 10.271681 ], [ 122.937012, 10.887254 ], [ 123.497314, 10.941192 ], [ 123.332520, 10.271681 ], [ 124.068604, 11.243062 ] ] ], [ [ [ 124.266357, 12.565287 ], [ 125.222168, 12.543840 ], [ 125.496826, 12.168226 ], [ 125.782471, 11.049038 ], [ 125.002441, 11.318481 ], [ 125.024414, 10.984335 ], [ 125.277100, 10.368958 ], [ 124.793701, 10.141932 ], [ 124.749756, 10.844096 ], [ 124.453125, 10.898042 ], [ 124.299316, 11.501557 ], [ 124.881592, 11.426187 ], [ 124.870605, 11.802834 ], [ 124.266357, 12.565287 ] ] ], [ [ [ 121.882324, 11.899604 ], [ 122.475586, 11.587669 ], [ 123.112793, 11.587669 ], [ 123.090820, 11.167624 ], [ 122.629395, 10.746969 ], [ 121.992188, 10.444598 ], [ 121.959229, 10.908830 ], [ 122.036133, 11.426187 ], [ 121.882324, 11.899604 ] ] ], [ [ [ 120.322266, 13.475106 ], [ 121.179199, 13.432367 ], [ 121.519775, 13.079478 ], [ 121.256104, 12.211180 ], [ 120.827637, 12.704651 ], [ 120.322266, 13.475106 ] ] ], [ [ [ 121.311035, 18.510866 ], [ 121.937256, 18.218916 ], [ 122.244873, 18.479609 ], [ 122.332764, 18.229351 ], [ 122.167969, 17.811456 ], [ 122.508545, 17.098792 ], [ 122.244873, 16.267414 ], [ 121.662598, 15.940202 ], [ 121.497803, 15.125159 ], [ 121.728516, 14.338904 ], [ 122.255859, 14.221789 ], [ 122.695312, 14.338904 ], [ 123.947754, 13.784737 ], [ 123.848877, 13.239945 ], [ 124.178467, 13.004558 ], [ 124.068604, 12.543840 ], [ 123.288574, 13.036669 ], [ 122.926025, 13.560562 ], [ 122.662354, 13.186468 ], [ 122.025146, 13.784737 ], [ 121.124268, 13.645987 ], [ 120.618896, 13.859414 ], [ 120.673828, 14.275030 ], [ 120.981445, 14.530415 ], [ 120.684814, 14.764259 ], [ 120.563965, 14.402759 ], [ 120.069580, 14.976627 ], [ 119.915771, 15.411319 ], [ 119.882812, 16.372851 ], [ 120.278320, 16.035255 ], [ 120.388184, 17.602139 ], [ 120.706787, 18.510866 ], [ 121.311035, 18.510866 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.374268, -0.362546 ], [ 133.978271, -0.780005 ], [ 134.022217, -0.878872 ], [ 130.836182, -0.878872 ], [ 131.857910, -0.692122 ], [ 132.374268, -0.362546 ] ] ], [ [ [ 125.057373, 1.647722 ], [ 125.233154, 1.428075 ], [ 124.431152, 0.428463 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.135498, 0.000000 ], [ 120.036621, -0.516350 ], [ 120.399170, -0.878872 ], [ 119.476318, -0.878872 ], [ 119.772949, 0.000000 ], [ 119.816895, 0.164795 ], [ 120.025635, 0.571280 ], [ 120.882568, 1.318243 ], [ 121.662598, 1.021674 ], [ 122.926025, 0.878872 ], [ 124.068604, 0.922812 ], [ 125.057373, 1.647722 ] ] ], [ [ [ 127.924805, 2.174771 ], [ 128.001709, 1.636740 ], [ 128.583984, 1.548884 ], [ 128.682861, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.111572, 0.362546 ], [ 128.023682, 0.000000 ], [ 127.957764, -0.241699 ], [ 128.375244, -0.769020 ], [ 128.144531, -0.878872 ], [ 128.078613, -0.878872 ], [ 127.694092, -0.263671 ], [ 127.628174, 0.000000 ], [ 127.397461, 1.021674 ], [ 127.595215, 1.812442 ], [ 127.924805, 2.174771 ] ] ], [ [ [ 117.004395, 4.313546 ], [ 117.872314, 4.138243 ], [ 117.312012, 3.239240 ], [ 118.048096, 2.295528 ], [ 117.872314, 1.834403 ], [ 118.992920, 0.911827 ], [ 117.806396, 0.790990 ], [ 117.476807, 0.109863 ], [ 117.476807, 0.000000 ], [ 117.520752, -0.801976 ], [ 117.410889, -0.878872 ], [ 109.324951, -0.878872 ], [ 109.083252, -0.450435 ], [ 109.017334, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.061279, 1.351193 ], [ 109.654541, 2.010086 ], [ 109.819336, 1.340210 ], [ 110.511475, 0.780005 ], [ 111.148682, 0.977736 ], [ 111.796875, 0.911827 ], [ 112.379150, 1.417092 ], [ 112.851562, 1.504954 ], [ 113.796387, 1.219390 ], [ 114.620361, 1.439058 ], [ 115.125732, 2.822344 ], [ 115.510254, 3.173425 ], [ 115.861816, 4.313546 ], [ 117.004395, 4.313546 ] ] ], [ [ [ 95.284424, 5.484768 ], [ 95.932617, 5.441022 ], [ 97.481689, 5.255068 ], [ 98.360596, 4.269724 ], [ 99.140625, 3.601142 ], [ 99.689941, 3.184394 ], [ 100.634766, 2.108899 ], [ 101.656494, 2.086941 ], [ 102.491455, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.831787, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.436279, -0.703107 ], [ 103.710938, -0.878872 ], [ 100.261230, -0.878872 ], [ 100.140381, -0.648180 ], [ 99.448242, 0.000000 ], [ 99.261475, 0.186767 ], [ 98.964844, 1.043643 ], [ 98.591309, 1.834403 ], [ 97.690430, 2.460181 ], [ 97.174072, 3.316018 ], [ 96.416016, 3.875216 ], [ 95.372314, 4.981505 ], [ 95.284424, 5.484768 ] ] ], [ [ [ 123.288574, -0.878872 ], [ 121.893311, -0.878872 ], [ 123.332520, -0.615223 ], [ 123.288574, -0.878872 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 123.563232, 53.461890 ], [ 125.057373, 53.166534 ], [ 125.936279, 52.796119 ], [ 126.562500, 51.788232 ], [ 126.936035, 51.358062 ], [ 127.276611, 50.743408 ], [ 127.650146, 49.767074 ], [ 129.396973, 49.446700 ], [ 130.572510, 48.734455 ], [ 130.979004, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.363037, 48.188063 ], [ 135.000000, 48.480204 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.436490 ], [ 134.494629, 47.583937 ], [ 134.110107, 47.219568 ], [ 133.769531, 46.118942 ], [ 133.088379, 45.151053 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.972571 ], [ 131.286621, 44.119142 ], [ 131.143799, 42.932296 ], [ 130.627441, 42.908160 ], [ 130.638428, 42.399122 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.431566 ], [ 128.045654, 42.000325 ], [ 128.199463, 41.467428 ], [ 127.342529, 41.508577 ], [ 126.859131, 41.820455 ], [ 126.177979, 41.112469 ], [ 125.914307, 40.979898 ], [ 125.079346, 40.572240 ], [ 124.749756, 40.313043 ], [ 122.036133, 40.313043 ], [ 122.167969, 40.430224 ], [ 121.629639, 40.946714 ], [ 120.761719, 40.597271 ], [ 120.311279, 40.313043 ], [ 89.121094, 40.313043 ], [ 89.121094, 48.004625 ], [ 90.274658, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.290347 ], [ 92.131348, 45.120053 ], [ 93.471680, 44.980342 ], [ 94.680176, 44.355278 ], [ 95.306396, 44.245199 ], [ 95.756836, 43.325178 ], [ 96.339111, 42.730874 ], [ 97.448730, 42.755080 ], [ 99.514160, 42.528796 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.520700 ], [ 103.304443, 41.910453 ], [ 104.512939, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.138968 ], [ 107.742920, 42.488302 ], [ 109.237061, 42.520700 ], [ 110.401611, 42.875964 ], [ 111.126709, 43.413029 ], [ 111.818848, 43.747289 ], [ 111.665039, 44.079693 ], [ 111.346436, 44.465151 ], [ 111.862793, 45.104546 ], [ 112.434082, 45.019185 ], [ 113.455811, 44.809122 ], [ 114.455566, 45.344424 ], [ 115.982666, 45.729191 ], [ 116.707764, 46.392411 ], [ 117.410889, 46.679594 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.761963, 47.055154 ], [ 118.861084, 47.754098 ], [ 118.059082, 48.070738 ], [ 117.290039, 47.702368 ], [ 116.301270, 47.857403 ], [ 115.740967, 47.731934 ], [ 115.477295, 48.136767 ], [ 116.191406, 49.138597 ], [ 116.674805, 49.894634 ], [ 117.872314, 49.518076 ], [ 119.278564, 50.148746 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.728760, 51.964577 ], [ 120.717773, 52.522906 ], [ 120.168457, 52.756243 ], [ 120.992432, 53.252069 ], [ 122.244873, 53.435719 ], [ 123.563232, 53.461890 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "New Zealand", "sov_a3": "NZ1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "New Zealand", "adm0_a3": "NZL", "geou_dif": 0, "geounit": "New Zealand", "gu_a3": "NZL", "su_dif": 0, "subunit": "New Zealand", "su_a3": "NZL", "brk_diff": 0, "name": "New Zealand", "name_long": "New Zealand", "brk_a3": "NZL", "brk_name": "New Zealand", "abbrev": "N.Z.", "postal": "NZ", "formal_en": "New Zealand", "name_sort": "New Zealand", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 4213418, "gdp_md_est": 116700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NZ", "iso_a3": "NZL", "iso_n3": "554", "un_a3": "554", "wb_a2": "NZ", "wb_a3": "NZL", "woe_id": -99, "adm0_a3_is": "NZL", "adm0_a3_us": "NZL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.792969, -40.488737 ], [ 173.012695, -40.913513 ], [ 173.045654, -40.979898 ], [ 173.243408, -41.327326 ], [ 173.858643, -40.979898 ], [ 173.957520, -40.921814 ], [ 173.990479, -40.979898 ], [ 174.243164, -41.343825 ], [ 174.243164, -41.763117 ], [ 173.869629, -42.228517 ], [ 173.221436, -42.964463 ], [ 172.705078, -43.365126 ], [ 173.078613, -43.850374 ], [ 172.298584, -43.858297 ], [ 171.452637, -44.237328 ], [ 171.177979, -44.894796 ], [ 170.606689, -45.905300 ], [ 169.332275, -46.634351 ], [ 168.409424, -46.619261 ], [ 167.761230, -46.286224 ], [ 166.673584, -46.217852 ], [ 166.508789, -45.851760 ], [ 167.036133, -45.104546 ], [ 168.299561, -44.119142 ], [ 168.947754, -43.929550 ], [ 169.661865, -43.548548 ], [ 170.518799, -43.028745 ], [ 171.123047, -42.512602 ], [ 171.562500, -41.763117 ], [ 171.947021, -41.508577 ], [ 172.089844, -40.979898 ], [ 172.089844, -40.955011 ], [ 172.792969, -40.488737 ] ] ], [ [ [ 176.704102, -40.313043 ], [ 176.231689, -40.979898 ], [ 176.011963, -41.286062 ], [ 175.231934, -41.681118 ], [ 175.067139, -41.418015 ], [ 174.649658, -41.277806 ], [ 174.858398, -40.979898 ], [ 175.220947, -40.455307 ], [ 175.133057, -40.313043 ], [ 176.704102, -40.313043 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.733887, -40.697299 ], [ 145.393066, -40.788860 ], [ 145.920410, -40.979898 ], [ 146.359863, -41.137296 ], [ 146.986084, -40.979898 ], [ 147.689209, -40.805494 ], [ 148.282471, -40.871988 ], [ 148.293457, -40.979898 ], [ 148.326416, -41.640078 ], [ 145.030518, -41.640078 ], [ 144.711914, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.733887, -40.697299 ] ] ], [ [ [ 142.514648, -10.660608 ], [ 142.789307, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.107910, -11.899604 ], [ 143.151855, -12.318536 ], [ 143.514404, -12.833226 ], [ 143.591309, -13.400307 ], [ 143.558350, -13.763396 ], [ 143.920898, -14.541050 ], [ 144.558105, -14.168534 ], [ 144.887695, -14.594216 ], [ 145.371094, -14.976627 ], [ 145.261230, -15.421910 ], [ 145.480957, -16.277960 ], [ 145.634766, -16.783506 ], [ 145.887451, -16.899172 ], [ 146.151123, -17.759150 ], [ 146.063232, -18.271086 ], [ 146.381836, -18.958246 ], [ 147.469482, -19.476950 ], [ 148.842773, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.282227, -21.258661 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.116177 ], [ 150.479736, -22.553147 ], [ 150.721436, -22.400872 ], [ 150.897217, -23.453168 ], [ 152.072754, -24.457151 ], [ 152.852783, -25.264568 ], [ 153.127441, -26.066652 ], [ 153.160400, -26.637639 ], [ 153.083496, -27.254630 ], [ 153.566895, -28.101058 ], [ 153.511963, -28.988922 ], [ 153.336182, -29.449165 ], [ 153.061523, -30.344436 ], [ 153.083496, -30.921076 ], [ 152.885742, -31.634676 ], [ 152.446289, -32.546813 ], [ 151.699219, -33.036298 ], [ 151.336670, -33.815666 ], [ 151.007080, -34.307144 ], [ 150.710449, -35.164828 ], [ 150.325928, -35.666222 ], [ 150.073242, -36.412442 ], [ 149.941406, -37.107765 ], [ 149.996338, -37.422526 ], [ 149.414062, -37.770715 ], [ 148.304443, -37.805444 ], [ 147.381592, -38.212288 ], [ 146.920166, -38.599700 ], [ 146.315918, -39.027719 ], [ 145.480957, -38.591114 ], [ 144.876709, -38.410558 ], [ 145.030518, -37.892196 ], [ 144.481201, -38.082690 ], [ 143.602295, -38.805470 ], [ 142.745361, -38.530979 ], [ 142.174072, -38.376115 ], [ 141.602783, -38.307181 ], [ 140.635986, -38.013476 ], [ 139.987793, -37.396346 ], [ 139.801025, -36.641978 ], [ 139.570312, -36.137875 ], [ 139.075928, -35.728677 ], [ 138.120117, -35.603719 ], [ 138.438721, -35.119909 ], [ 138.197021, -34.379713 ], [ 137.713623, -35.074965 ], [ 136.823730, -35.254591 ], [ 137.351074, -34.705493 ], [ 137.493896, -34.125448 ], [ 137.889404, -33.632916 ], [ 137.801514, -32.898038 ], [ 136.988525, -33.751748 ], [ 136.362305, -34.089061 ], [ 135.988770, -34.885931 ], [ 135.197754, -34.470335 ], [ 135.230713, -33.943360 ], [ 135.000000, -33.669497 ], [ 134.604492, -33.220308 ], [ 134.121094, -32.870360 ], [ 134.121094, -32.796510 ], [ 134.263916, -32.611616 ], [ 134.121094, -32.537552 ], [ 134.121094, -11.953349 ], [ 134.384766, -12.039321 ], [ 134.670410, -11.931852 ], [ 135.000000, -12.093039 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.953349 ], [ 136.252441, -12.039321 ], [ 136.483154, -11.856599 ], [ 136.944580, -12.350734 ], [ 136.680908, -12.886780 ], [ 136.296387, -13.282719 ], [ 135.955811, -13.314794 ], [ 136.076660, -13.720708 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.494385, -14.987240 ], [ 136.285400, -15.548960 ], [ 137.054443, -15.866242 ], [ 137.570801, -16.214675 ], [ 138.295898, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.097900, -17.056785 ], [ 139.251709, -17.361125 ], [ 140.207520, -17.706828 ], [ 140.866699, -17.361125 ], [ 141.064453, -16.825574 ], [ 141.273193, -16.383391 ], [ 141.394043, -15.834536 ], [ 141.701660, -15.040296 ], [ 141.558838, -14.551684 ], [ 141.624756, -14.264383 ], [ 141.514893, -13.688688 ], [ 141.646729, -12.940322 ], [ 141.833496, -12.736801 ], [ 141.679688, -12.404389 ], [ 141.921387, -11.867351 ], [ 142.108154, -11.318481 ], [ 142.141113, -11.038255 ], [ 142.514648, -10.660608 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Solomon Islands", "sov_a3": "SLB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Solomon Islands", "adm0_a3": "SLB", "geou_dif": 0, "geounit": "Solomon Islands", "gu_a3": "SLB", "su_dif": 0, "subunit": "Solomon Islands", "su_a3": "SLB", "brk_diff": 0, "name": "Solomon Is.", "name_long": "Solomon Islands", "brk_a3": "SLB", "brk_name": "Solomon Is.", "abbrev": "S. Is.", "postal": "SB", "name_sort": "Solomon Islands", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 595613, "gdp_md_est": 1078, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SB", "iso_a3": "SLB", "iso_n3": "090", "un_a3": "090", "wb_a2": "SB", "wb_a3": "SLB", "woe_id": -99, "adm0_a3_is": "SLB", "adm0_a3_us": "SLB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 15, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.312256, -10.196000 ], [ 161.916504, -10.444598 ], [ 162.114258, -10.477009 ], [ 162.388916, -10.822515 ], [ 161.696777, -10.811724 ], [ 161.312256, -10.196000 ] ] ], [ [ [ 159.697266, -9.232249 ], [ 160.356445, -9.394871 ], [ 160.686035, -9.600750 ], [ 160.850830, -9.871452 ], [ 160.455322, -9.893099 ], [ 159.840088, -9.784851 ], [ 159.631348, -9.633246 ], [ 159.697266, -9.232249 ] ] ], [ [ [ 160.916748, -8.309341 ], [ 161.279297, -9.112945 ], [ 161.674805, -9.589917 ], [ 161.520996, -9.774025 ], [ 160.784912, -8.906780 ], [ 160.576172, -8.309341 ], [ 160.916748, -8.309341 ] ] ], [ [ [ 158.356934, -7.318882 ], [ 158.818359, -7.558547 ], [ 159.631348, -8.015716 ], [ 159.873047, -8.331083 ], [ 159.916992, -8.537565 ], [ 159.125977, -8.113615 ], [ 158.576660, -7.754537 ], [ 158.203125, -7.416942 ], [ 158.356934, -7.318882 ] ] ], [ [ [ 156.533203, -6.599131 ], [ 157.137451, -7.013668 ], [ 157.532959, -7.340675 ], [ 157.335205, -7.395153 ], [ 156.895752, -7.166300 ], [ 156.489258, -6.762806 ], [ 156.533203, -6.599131 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "New Zealand", "sov_a3": "NZ1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "New Zealand", "adm0_a3": "NZL", "geou_dif": 0, "geounit": "New Zealand", "gu_a3": "NZL", "su_dif": 0, "subunit": "New Zealand", "su_a3": "NZL", "brk_diff": 0, "name": "New Zealand", "name_long": "New Zealand", "brk_a3": "NZL", "brk_name": "New Zealand", "abbrev": "N.Z.", "postal": "NZ", "formal_en": "New Zealand", "name_sort": "New Zealand", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 4213418, "gdp_md_est": 116700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NZ", "iso_a3": "NZL", "iso_n3": "554", "un_a3": "554", "wb_a2": "NZ", "wb_a3": "NZL", "woe_id": -99, "adm0_a3_is": "NZL", "adm0_a3_us": "NZL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.792969, -40.488737 ], [ 173.012695, -40.913513 ], [ 173.045654, -40.979898 ], [ 173.243408, -41.327326 ], [ 173.858643, -40.979898 ], [ 173.957520, -40.921814 ], [ 173.990479, -40.979898 ], [ 174.243164, -41.343825 ], [ 174.243164, -41.640078 ], [ 171.760254, -41.640078 ], [ 171.947021, -41.508577 ], [ 172.089844, -40.979898 ], [ 172.089844, -40.955011 ], [ 172.792969, -40.488737 ] ] ], [ [ [ 173.001709, -34.443159 ], [ 173.551025, -35.003003 ], [ 174.320068, -35.263562 ], [ 174.605713, -36.155618 ], [ 175.330811, -37.204082 ], [ 175.352783, -36.518466 ], [ 175.803223, -36.791691 ], [ 175.957031, -37.553288 ], [ 176.759033, -37.874853 ], [ 177.429199, -37.952861 ], [ 178.000488, -37.579413 ], [ 178.516846, -37.692514 ], [ 178.264160, -38.582526 ], [ 177.967529, -39.164141 ], [ 177.198486, -39.138582 ], [ 176.934814, -39.444678 ], [ 177.022705, -39.876019 ], [ 176.879883, -40.061257 ], [ 176.231689, -40.979898 ], [ 176.011963, -41.286062 ], [ 175.330811, -41.640078 ], [ 175.198975, -41.640078 ], [ 175.067139, -41.418015 ], [ 174.649658, -41.277806 ], [ 174.858398, -40.979898 ], [ 175.220947, -40.455307 ], [ 174.891357, -39.901309 ], [ 173.814697, -39.504041 ], [ 173.847656, -39.138582 ], [ 174.572754, -38.796908 ], [ 174.737549, -38.022131 ], [ 174.693604, -37.378888 ], [ 174.287109, -36.703660 ], [ 174.309082, -36.527295 ], [ 173.836670, -36.120128 ], [ 173.045654, -35.236646 ], [ 172.628174, -34.524661 ], [ 173.001709, -34.443159 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "name_sort": "Japan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "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": [ [ [ [ 141.361084, 41.385052 ], [ 141.525879, 40.979898 ], [ 141.778564, 40.313043 ], [ 139.910889, 40.313043 ], [ 139.877930, 40.563895 ], [ 140.295410, 41.195190 ], [ 141.361084, 41.385052 ] ] ], [ [ [ 141.965332, 45.552525 ], [ 143.140869, 44.512176 ], [ 143.909912, 44.174325 ], [ 144.613037, 43.961191 ], [ 145.316162, 44.386692 ], [ 145.535889, 43.269206 ], [ 144.052734, 42.988576 ], [ 143.173828, 42.000325 ], [ 141.602783, 42.682435 ], [ 141.064453, 41.590797 ], [ 139.954834, 41.574361 ], [ 139.812012, 42.569264 ], [ 140.306396, 43.341160 ], [ 141.372070, 43.389082 ], [ 141.668701, 44.777936 ], [ 141.965332, 45.552525 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -171.381226, 66.687784 ], [ -171.013184, 66.513260 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 66.687784 ], [ -175.001221, 66.687784 ], [ -175.017700, 66.585400 ], [ -174.825439, 66.513260 ], [ -174.342041, 66.337505 ], [ -174.451904, 66.687784 ], [ -171.381226, 66.687784 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "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": [ [ [ [ -174.342041, 66.337505 ], [ -180.000000, 66.337505 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.825439, 66.513260 ], [ -174.342041, 66.337505 ] ] ], [ [ [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ] ] ], [ [ [ -174.342041, 66.337505 ], [ -174.396973, 66.513260 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -171.013184, 66.513260 ], [ -170.645142, 66.337505 ], [ -174.342041, 66.337505 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -140.993042, 66.687784 ], [ -140.993042, 66.513260 ], [ -140.998535, 60.307906 ], [ -140.015259, 60.277962 ], [ -139.042969, 60.001733 ], [ -138.345337, 59.562158 ], [ -137.455444, 58.907483 ], [ -136.483154, 59.464617 ], [ -135.477905, 59.789580 ], [ -135.000000, 59.324783 ], [ -134.945068, 59.271495 ], [ -134.560547, 59.037729 ], [ -134.560547, 58.156214 ], [ -135.000000, 58.185185 ], [ -136.631470, 58.214132 ], [ -137.801514, 58.502305 ], [ -139.872437, 59.539888 ], [ -140.828247, 59.728716 ], [ -142.575073, 60.086763 ], [ -143.959351, 60.001733 ], [ -145.925903, 60.459926 ], [ -147.117920, 60.885027 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.979754 ], [ -148.573608, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.369593 ], [ -151.721191, 59.156220 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.729630 ], [ -152.583618, 60.062099 ], [ -154.022827, 59.352796 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.308228, 57.730552 ], [ -156.313477, 57.424252 ], [ -156.560669, 56.980911 ], [ -157.500000, 56.671320 ], [ -157.939453, 56.523140 ], [ -157.939453, 57.468589 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.500000, 58.387318 ], [ -157.044067, 58.921664 ], [ -157.500000, 58.799516 ], [ -157.939453, 58.685504 ], [ -157.939453, 66.687784 ], [ -140.993042, 66.687784 ] ] ], [ [ [ -153.231812, 57.970244 ], [ -152.567139, 57.903174 ], [ -152.144165, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.737662 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.462681 ], [ -153.764648, 57.818429 ], [ -153.231812, 57.970244 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -156.582642, 71.358822 ], [ -155.072021, 71.148745 ], [ -154.346924, 70.698136 ], [ -153.901978, 70.891482 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.431280 ], [ -149.721680, 70.530391 ], [ -147.617798, 70.214875 ], [ -145.695190, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.993042, 66.513260 ], [ -140.993042, 66.337505 ], [ -157.939453, 66.337505 ], [ -157.939453, 70.889683 ], [ -157.500000, 71.041960 ], [ -156.582642, 71.358822 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.724731, 32.722599 ], [ -114.818115, 32.528289 ], [ -113.307495, 32.040677 ], [ -112.500000, 31.793555 ], [ -112.060547, 31.658057 ], [ -112.060547, 28.782104 ], [ -112.230835, 28.955282 ], [ -112.274780, 29.267233 ], [ -112.500000, 29.587789 ], [ -112.813110, 30.021544 ], [ -113.164673, 30.789037 ], [ -113.153687, 31.175210 ], [ -113.873291, 31.569175 ], [ -114.208374, 31.527044 ], [ -114.779663, 31.802893 ], [ -114.938965, 31.395847 ], [ -114.774170, 30.916364 ], [ -114.675293, 30.164126 ], [ -114.334717, 29.754840 ], [ -113.593140, 29.065773 ], [ -113.428345, 28.830238 ], [ -113.274536, 28.758028 ], [ -113.142700, 28.415560 ], [ -112.966919, 28.425222 ], [ -112.763672, 27.780772 ], [ -112.500000, 27.561852 ], [ -112.461548, 27.527758 ], [ -112.247314, 27.176469 ], [ -112.060547, 27.024877 ], [ -112.060547, 24.681961 ], [ -112.186890, 24.741842 ], [ -112.153931, 25.473033 ], [ -112.302246, 26.012361 ], [ -112.500000, 26.145576 ], [ -113.466797, 26.770135 ], [ -113.598633, 26.642549 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.142257 ], [ -115.059814, 27.727298 ], [ -114.982910, 27.800210 ], [ -114.570923, 27.741885 ], [ -114.202881, 28.115594 ], [ -114.164429, 28.570050 ], [ -114.933472, 29.281608 ], [ -115.521240, 29.559123 ], [ -115.889282, 30.183122 ], [ -116.724243, 31.639352 ], [ -117.130737, 32.537552 ], [ -115.993652, 32.616243 ], [ -114.724731, 32.722599 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -112.060547, 49.001844 ], [ -112.060547, 40.647304 ], [ -124.310303, 40.647304 ], [ -124.222412, 40.979898 ], [ -124.183960, 41.145570 ], [ -124.216919, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.145508, 43.711564 ], [ -123.903809, 45.525592 ], [ -124.085083, 46.867703 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.188063 ], [ -124.568481, 48.381794 ], [ -123.123779, 48.041365 ], [ -122.590942, 47.096305 ], [ -122.343750, 47.361153 ], [ -122.503052, 48.180739 ], [ -122.843628, 49.001844 ], [ -112.060547, 49.001844 ] ] ], [ [ [ -130.292358, 56.022948 ], [ -130.012207, 55.918430 ], [ -130.006714, 55.776573 ], [ -129.984741, 55.285372 ], [ -130.539551, 54.803851 ], [ -131.088867, 55.182004 ], [ -131.967773, 55.500639 ], [ -132.061157, 55.776573 ], [ -132.138062, 56.022948 ], [ -130.292358, 56.022948 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -135.439453, 59.753628 ], [ -135.000000, 59.324783 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.695341 ], [ -131.709595, 56.553428 ], [ -130.012207, 55.918430 ], [ -130.006714, 55.776573 ], [ -129.995728, 55.528631 ], [ -131.978760, 55.528631 ], [ -132.061157, 55.776573 ], [ -132.253418, 56.371335 ], [ -133.544312, 57.180925 ], [ -134.082642, 58.124320 ], [ -135.000000, 58.185185 ], [ -135.038452, 58.188080 ], [ -135.439453, 58.196766 ], [ -135.439453, 59.753628 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guatemala", "sov_a3": "GTM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guatemala", "adm0_a3": "GTM", "geou_dif": 0, "geounit": "Guatemala", "gu_a3": "GTM", "su_dif": 0, "subunit": "Guatemala", "su_a3": "GTM", "brk_diff": 0, "name": "Guatemala", "name_long": "Guatemala", "brk_a3": "GTM", "brk_name": "Guatemala", "abbrev": "Guat.", "postal": "GT", "formal_en": "Republic of Guatemala", "name_sort": "Guatemala", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 13276517, "gdp_md_est": 68580, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GT", "iso_a3": "GTM", "iso_n3": "320", "un_a3": "320", "wb_a2": "GT", "wb_a3": "GTM", "woe_id": -99, "adm0_a3_is": "GTM", "adm0_a3_us": "GTM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.821916 ], [ -89.560547, 17.816686 ], [ -89.560547, 14.370834 ], [ -89.588013, 14.365513 ], [ -89.560547, 14.306969 ], [ -89.560547, 14.232438 ], [ -89.725342, 14.136576 ], [ -90.000000, 13.934067 ], [ -90.065918, 13.886079 ], [ -90.098877, 13.736717 ], [ -90.609741, 13.912740 ], [ -91.235962, 13.928736 ], [ -91.691895, 14.131249 ], [ -92.230225, 14.541050 ], [ -92.208252, 14.833302 ], [ -92.087402, 15.066819 ], [ -92.230225, 15.252389 ], [ -91.752319, 16.066929 ], [ -90.466919, 16.072207 ], [ -90.439453, 16.415009 ], [ -90.604248, 16.472963 ], [ -90.714111, 16.688817 ], [ -91.082153, 16.920195 ], [ -91.455688, 17.256236 ], [ -91.005249, 17.256236 ], [ -91.005249, 17.821916 ], [ -90.000000, 17.821916 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "El Salvador", "sov_a3": "SLV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "El Salvador", "adm0_a3": "SLV", "geou_dif": 0, "geounit": "El Salvador", "gu_a3": "SLV", "su_dif": 0, "subunit": "El Salvador", "su_a3": "SLV", "brk_diff": 0, "name": "El Salvador", "name_long": "El Salvador", "brk_a3": "SLV", "brk_name": "El Salvador", "abbrev": "El. S.", "postal": "SV", "formal_en": "Republic of El Salvador", "name_sort": "El Salvador", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 8, "pop_est": 7185218, "gdp_md_est": 43630, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SV", "iso_a3": "SLV", "iso_n3": "222", "un_a3": "222", "wb_a2": "SV", "wb_a3": "SLV", "woe_id": -99, "adm0_a3_is": "SLV", "adm0_a3_us": "SLV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 11, "long_len": 11, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.560547, 14.232438 ], [ -89.560547, 13.496473 ], [ -89.813232, 13.523179 ], [ -90.000000, 13.667338 ], [ -90.098877, 13.736717 ], [ -90.065918, 13.886079 ], [ -90.000000, 13.934067 ], [ -89.725342, 14.136576 ], [ -89.560547, 14.232438 ] ] ], [ [ [ -89.560547, 14.306969 ], [ -89.588013, 14.365513 ], [ -89.560547, 14.370834 ], [ -89.560547, 14.306969 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -112.939453, 30.306503 ], [ -112.939453, 31.928855 ], [ -112.500000, 31.793555 ], [ -111.027832, 31.334871 ], [ -108.242798, 31.344254 ], [ -108.242798, 31.756196 ], [ -106.512451, 31.756196 ], [ -106.144409, 31.400535 ], [ -105.633545, 31.085870 ], [ -105.040283, 30.647364 ], [ -104.710693, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.272025 ], [ -103.112183, 28.974507 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.958862, 29.382175 ], [ -100.458984, 28.700225 ], [ -100.112915, 28.110749 ], [ -99.525146, 27.542371 ], [ -99.305420, 26.843677 ], [ -99.025269, 26.372185 ], [ -98.245239, 26.061718 ], [ -97.531128, 25.844393 ], [ -97.141113, 25.874052 ], [ -97.531128, 24.996016 ], [ -97.706909, 24.277012 ], [ -97.778320, 22.933101 ], [ -97.877197, 22.446572 ], [ -97.717896, 21.943046 ], [ -97.701416, 21.902278 ], [ -97.470703, 21.534847 ], [ -105.353394, 21.534847 ], [ -105.606079, 21.871695 ], [ -105.622559, 21.943046 ], [ -105.693970, 22.273847 ], [ -106.029053, 22.776182 ], [ -106.913452, 23.770264 ], [ -107.918701, 24.552120 ], [ -108.402100, 25.175117 ], [ -109.264526, 25.582085 ], [ -109.445801, 25.829561 ], [ -109.291992, 26.445984 ], [ -109.802856, 26.676913 ], [ -110.396118, 27.166695 ], [ -110.643311, 27.863360 ], [ -111.181641, 27.945886 ], [ -111.763916, 28.468691 ], [ -112.230835, 28.955282 ], [ -112.274780, 29.267233 ], [ -112.500000, 29.587789 ], [ -112.813110, 30.021544 ], [ -112.939453, 30.306503 ] ] ], [ [ [ -112.939453, 28.352734 ], [ -112.763672, 27.780772 ], [ -112.500000, 27.561852 ], [ -112.461548, 27.527758 ], [ -112.247314, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.286011, 25.735581 ], [ -110.989380, 25.299338 ], [ -110.714722, 24.826625 ], [ -110.659790, 24.302047 ], [ -110.176392, 24.266997 ], [ -109.775391, 23.815501 ], [ -109.412842, 23.367471 ], [ -109.434814, 23.185813 ], [ -109.857788, 22.821757 ], [ -110.033569, 22.826820 ], [ -110.297241, 23.433009 ], [ -110.950928, 24.001308 ], [ -111.676025, 24.487149 ], [ -112.186890, 24.741842 ], [ -112.153931, 25.473033 ], [ -112.302246, 26.012361 ], [ -112.500000, 26.145576 ], [ -112.939453, 26.431228 ], [ -112.939453, 28.352734 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.822998, 49.389524 ], [ -94.641724, 48.843028 ], [ -94.334106, 48.672826 ], [ -93.630981, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.834961, 48.272225 ], [ -90.000000, 48.096426 ], [ -89.604492, 48.011975 ], [ -89.560547, 48.011975 ], [ -89.560547, 40.647304 ], [ -112.939453, 40.647304 ], [ -112.939453, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.158081, 49.385949 ], [ -94.822998, 49.389524 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.637085, -52.633063 ], [ -68.252563, -53.097323 ], [ -67.752686, -53.849286 ], [ -67.500000, -53.965781 ], [ -67.060547, -54.168866 ], [ -67.060547, -54.889246 ], [ -67.500000, -54.870285 ], [ -68.637085, -54.867124 ], [ -68.637085, -52.633063 ] ] ], [ [ [ -67.060547, -40.647304 ], [ -67.060547, -45.398450 ], [ -67.296753, -45.548679 ], [ -67.500000, -46.088472 ], [ -67.582397, -46.301406 ], [ -67.500000, -46.362093 ], [ -67.060547, -46.687131 ], [ -67.060547, -48.643798 ], [ -67.170410, -48.694586 ], [ -67.500000, -49.300054 ], [ -67.818604, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.142456, -50.729502 ], [ -68.818359, -51.767840 ], [ -68.153687, -52.348763 ], [ -68.576660, -52.298402 ], [ -69.499512, -52.140231 ], [ -71.916504, -52.008555 ], [ -72.333984, -51.423189 ], [ -72.312012, -50.673835 ], [ -72.976685, -50.739932 ], [ -73.328247, -50.376999 ], [ -73.416138, -49.317961 ], [ -72.652588, -48.875554 ], [ -72.333984, -48.242967 ], [ -72.449341, -47.735629 ], [ -71.921997, -46.882723 ], [ -71.553955, -45.560218 ], [ -71.663818, -44.972571 ], [ -71.224365, -44.781835 ], [ -71.334229, -44.406316 ], [ -71.795654, -44.205835 ], [ -71.466064, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.152710, -42.252918 ], [ -71.751709, -42.049293 ], [ -71.900024, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.878052, -40.647304 ], [ -67.060547, -40.647304 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -21.534847 ], [ -67.060547, -22.684984 ], [ -67.109985, -22.735657 ], [ -67.500000, -22.806567 ], [ -67.829590, -22.872379 ], [ -68.093262, -21.943046 ], [ -68.208618, -21.534847 ], [ -67.060547, -21.534847 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.453613, 0.439449 ], [ -77.426147, 0.400998 ], [ -76.580200, 0.258178 ], [ -76.294556, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.651855, 0.000000 ], [ -75.377197, -0.148315 ], [ -75.234375, -0.906334 ], [ -75.547485, -1.559866 ], [ -76.640625, -2.608352 ], [ -77.838135, -2.997899 ], [ -78.453369, -3.869735 ], [ -78.640137, -4.543570 ], [ -79.205933, -4.954142 ], [ -79.628906, -4.450474 ], [ -80.029907, -4.340934 ], [ -80.447388, -4.423090 ], [ -80.469360, -4.056056 ], [ -80.189209, -3.820408 ], [ -80.304565, -3.403758 ], [ -79.771729, -2.652251 ], [ -79.991455, -2.218684 ], [ -80.370483, -2.679687 ], [ -80.969238, -2.246129 ], [ -80.765991, -1.960677 ], [ -80.936279, -1.054628 ], [ -80.584717, -0.906334 ], [ -80.403442, -0.280150 ], [ -80.233154, 0.000000 ], [ -80.024414, 0.362546 ], [ -80.035400, 0.439449 ], [ -77.453613, 0.439449 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Peru", "sov_a3": "PER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Peru", "adm0_a3": "PER", "geou_dif": 0, "geounit": "Peru", "gu_a3": "PER", "su_dif": 0, "subunit": "Peru", "su_a3": "PER", "brk_diff": 0, "name": "Peru", "name_long": "Peru", "brk_a3": "PER", "brk_name": "Peru", "abbrev": "Peru", "postal": "PE", "formal_en": "Republic of Peru", "name_sort": "Peru", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 11, "pop_est": 29546963, "gdp_md_est": 247300, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PE", "iso_a3": "PER", "iso_n3": "604", "un_a3": "604", "wb_a2": "PE", "wb_a3": "PER", "woe_id": -99, "adm0_a3_is": "PER", "adm0_a3_us": "PER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.108032, -0.054932 ], [ -74.443359, -0.527336 ], [ -74.124756, -0.999705 ], [ -73.663330, -1.257834 ], [ -73.075562, -2.306506 ], [ -72.328491, -2.432740 ], [ -71.779175, -2.169281 ], [ -71.416626, -2.339438 ], [ -70.817871, -2.251617 ], [ -70.048828, -2.723583 ], [ -70.697021, -3.738190 ], [ -70.394897, -3.765597 ], [ -69.895020, -4.297113 ], [ -70.795898, -4.247812 ], [ -70.933228, -4.401183 ], [ -71.751709, -4.592852 ], [ -72.894287, -5.271478 ], [ -72.965698, -5.736243 ], [ -73.223877, -6.085936 ], [ -73.125000, -6.626414 ], [ -73.729248, -6.915521 ], [ -73.723755, -7.340675 ], [ -73.987427, -7.520427 ], [ -73.575439, -8.423470 ], [ -73.020630, -9.031578 ], [ -73.229370, -9.459899 ], [ -72.564697, -9.519497 ], [ -72.185669, -10.049994 ], [ -71.306763, -10.077037 ], [ -70.482788, -9.486990 ], [ -70.548706, -11.005904 ], [ -70.098267, -11.119117 ], [ -69.532471, -10.946585 ], [ -68.670044, -12.559925 ], [ -68.884277, -12.897489 ], [ -68.933716, -13.597939 ], [ -68.950195, -14.450639 ], [ -69.340210, -14.950092 ], [ -69.164429, -15.321274 ], [ -69.395142, -15.660065 ], [ -68.961182, -16.499299 ], [ -69.592896, -17.575957 ], [ -69.862061, -18.088423 ], [ -70.372925, -18.344098 ], [ -71.378174, -17.769612 ], [ -71.466064, -17.361125 ], [ -73.449097, -16.357039 ], [ -75.239868, -15.262989 ], [ -76.014404, -14.647368 ], [ -76.426392, -13.822078 ], [ -76.261597, -13.533860 ], [ -77.107544, -12.221918 ], [ -78.096313, -10.374362 ], [ -79.041138, -8.385431 ], [ -79.447632, -7.928675 ], [ -79.760742, -7.193551 ], [ -80.540771, -6.539103 ], [ -81.254883, -6.135093 ], [ -80.930786, -5.687050 ], [ -81.414185, -4.735201 ], [ -81.101074, -4.034138 ], [ -80.304565, -3.403758 ], [ -80.189209, -3.820408 ], [ -80.469360, -4.056056 ], [ -80.447388, -4.423090 ], [ -80.029907, -4.340934 ], [ -79.628906, -4.450474 ], [ -79.205933, -4.954142 ], [ -78.640137, -4.543570 ], [ -78.453369, -3.869735 ], [ -77.838135, -2.997899 ], [ -76.640625, -2.608352 ], [ -75.547485, -1.559866 ], [ -75.234375, -0.906334 ], [ -75.377197, -0.148315 ], [ -75.108032, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -10.223031 ], [ -67.060547, -22.350076 ], [ -67.977905, -22.350076 ], [ -68.093262, -21.943046 ], [ -68.225098, -21.493964 ], [ -68.757935, -20.370377 ], [ -68.444824, -19.404430 ], [ -68.972168, -18.979026 ], [ -69.104004, -18.255437 ], [ -69.592896, -17.575957 ], [ -68.961182, -16.499299 ], [ -69.395142, -15.660065 ], [ -69.164429, -15.321274 ], [ -69.340210, -14.950092 ], [ -68.950195, -14.450639 ], [ -68.933716, -13.597939 ], [ -68.884277, -12.897489 ], [ -68.670044, -12.559925 ], [ -69.532471, -10.946585 ], [ -68.790894, -11.032864 ], [ -68.274536, -11.011297 ], [ -68.049316, -10.709189 ], [ -67.500000, -10.455402 ], [ -67.175903, -10.304110 ], [ -67.060547, -10.223031 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ -67.060547, 0.439449 ], [ -67.060547, -10.223031 ], [ -67.175903, -10.304110 ], [ -67.500000, -10.455402 ], [ -68.049316, -10.709189 ], [ -68.274536, -11.011297 ], [ -68.790894, -11.032864 ], [ -69.532471, -10.946585 ], [ -70.098267, -11.119117 ], [ -70.548706, -11.005904 ], [ -70.482788, -9.486990 ], [ -71.306763, -10.077037 ], [ -72.185669, -10.049994 ], [ -72.564697, -9.519497 ], [ -73.229370, -9.459899 ], [ -73.020630, -9.031578 ], [ -73.575439, -8.423470 ], [ -73.987427, -7.520427 ], [ -73.723755, -7.340675 ], [ -73.729248, -6.915521 ], [ -73.125000, -6.626414 ], [ -73.223877, -6.085936 ], [ -72.965698, -5.736243 ], [ -72.894287, -5.271478 ], [ -71.751709, -4.592852 ], [ -70.933228, -4.401183 ], [ -70.795898, -4.247812 ], [ -69.895020, -4.297113 ], [ -69.444580, -1.554375 ], [ -69.422607, -1.120534 ], [ -69.581909, -0.549308 ], [ -70.021362, -0.181274 ], [ -70.021362, 0.439449 ], [ -67.060547, 0.439449 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guatemala", "sov_a3": "GTM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guatemala", "adm0_a3": "GTM", "geou_dif": 0, "geounit": "Guatemala", "gu_a3": "GTM", "su_dif": 0, "subunit": "Guatemala", "su_a3": "GTM", "brk_diff": 0, "name": "Guatemala", "name_long": "Guatemala", "brk_a3": "GTM", "brk_name": "Guatemala", "abbrev": "Guat.", "postal": "GT", "formal_en": "Republic of Guatemala", "name_sort": "Guatemala", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 13276517, "gdp_md_est": 68580, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GT", "iso_a3": "GTM", "iso_n3": "320", "un_a3": "320", "wb_a2": "GT", "wb_a3": "GTM", "woe_id": -99, "adm0_a3_is": "GTM", "adm0_a3_us": "GTM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.821916 ], [ -89.148560, 17.811456 ], [ -89.154053, 17.020020 ], [ -89.230957, 15.887376 ], [ -88.934326, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.522339, 15.855674 ], [ -88.225708, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.159546, 15.066819 ], [ -89.225464, 14.875778 ], [ -89.148560, 14.679254 ], [ -89.357300, 14.429360 ], [ -89.588013, 14.365513 ], [ -89.538574, 14.248411 ], [ -89.725342, 14.136576 ], [ -90.000000, 13.934067 ], [ -90.065918, 13.886079 ], [ -90.098877, 13.736717 ], [ -90.439453, 13.854081 ], [ -90.439453, 17.821916 ], [ -90.000000, 17.821916 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Belize", "sov_a3": "BLZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belize", "adm0_a3": "BLZ", "geou_dif": 0, "geounit": "Belize", "gu_a3": "BLZ", "su_dif": 0, "subunit": "Belize", "su_a3": "BLZ", "brk_diff": 0, "name": "Belize", "name_long": "Belize", "brk_a3": "BLZ", "brk_name": "Belize", "abbrev": "Belize", "postal": "BZ", "formal_en": "Belize", "name_sort": "Belize", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 307899, "gdp_md_est": 2536, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BZ", "iso_a3": "BLZ", "iso_n3": "084", "un_a3": "084", "wb_a2": "BZ", "wb_a3": "BLZ", "woe_id": -99, "adm0_a3_is": "BLZ", "adm0_a3_us": "BLZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.302612, 18.500447 ], [ -88.297119, 18.354526 ], [ -88.110352, 18.349312 ], [ -88.126831, 18.077979 ], [ -88.286133, 17.649257 ], [ -88.198242, 17.492150 ], [ -88.308105, 17.135541 ], [ -88.242188, 17.041029 ], [ -88.357544, 16.530898 ], [ -88.555298, 16.267414 ], [ -88.736572, 16.235772 ], [ -88.934326, 15.887376 ], [ -89.230957, 15.887376 ], [ -89.154053, 17.020020 ], [ -89.148560, 17.811456 ], [ -89.154053, 17.957832 ], [ -89.033203, 18.004856 ], [ -88.851929, 17.884659 ], [ -88.494873, 18.490029 ], [ -88.302612, 18.500447 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Honduras", "sov_a3": "HND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Honduras", "adm0_a3": "HND", "geou_dif": 0, "geounit": "Honduras", "gu_a3": "HND", "su_dif": 0, "subunit": "Honduras", "su_a3": "HND", "brk_diff": 0, "name": "Honduras", "name_long": "Honduras", "brk_a3": "HND", "brk_name": "Honduras", "abbrev": "Hond.", "postal": "HN", "formal_en": "Republic of Honduras", "name_sort": "Honduras", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7792854, "gdp_md_est": 33720, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "HN", "iso_a3": "HND", "iso_n3": "340", "un_a3": "340", "wb_a2": "HN", "wb_a3": "HND", "woe_id": -99, "adm0_a3_is": "HND", "adm0_a3_us": "HND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.006470, 16.008856 ], [ -85.687866, 15.956048 ], [ -85.446167, 15.887376 ], [ -85.182495, 15.913791 ], [ -84.984741, 15.998295 ], [ -84.528809, 15.860958 ], [ -84.369507, 15.839820 ], [ -84.067383, 15.649486 ], [ -83.776245, 15.427206 ], [ -83.413696, 15.273587 ], [ -83.150024, 14.997852 ], [ -83.490601, 15.019075 ], [ -83.633423, 14.881087 ], [ -83.979492, 14.753635 ], [ -84.232178, 14.753635 ], [ -84.451904, 14.626109 ], [ -84.649658, 14.668626 ], [ -84.825439, 14.822681 ], [ -84.929810, 14.790817 ], [ -85.056152, 14.551684 ], [ -85.149536, 14.562318 ], [ -85.166016, 14.354870 ], [ -85.517578, 14.083301 ], [ -85.698853, 13.960723 ], [ -85.803223, 13.838080 ], [ -86.099854, 14.040673 ], [ -86.314087, 13.774066 ], [ -86.522827, 13.779402 ], [ -86.759033, 13.758060 ], [ -86.737061, 13.266680 ], [ -86.885376, 13.255986 ], [ -87.006226, 13.025966 ], [ -87.319336, 12.988500 ], [ -87.489624, 13.298757 ], [ -87.797241, 13.389620 ], [ -87.725830, 13.790071 ], [ -87.863159, 13.896744 ], [ -88.066406, 13.966054 ], [ -88.505859, 13.848747 ], [ -88.544312, 13.982046 ], [ -88.846436, 14.141902 ], [ -89.060669, 14.344226 ], [ -89.357300, 14.429360 ], [ -89.148560, 14.679254 ], [ -89.225464, 14.875778 ], [ -89.159546, 15.066819 ], [ -88.681641, 15.347762 ], [ -88.225708, 15.728814 ], [ -88.121338, 15.691798 ], [ -87.907104, 15.866242 ], [ -87.615967, 15.882093 ], [ -87.528076, 15.797539 ], [ -87.368774, 15.850389 ], [ -86.907349, 15.760536 ], [ -86.445923, 15.786968 ], [ -86.121826, 15.897942 ], [ -86.006470, 16.008856 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Nicaragua", "sov_a3": "NIC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nicaragua", "adm0_a3": "NIC", "geou_dif": 0, "geounit": "Nicaragua", "gu_a3": "NIC", "su_dif": 0, "subunit": "Nicaragua", "su_a3": "NIC", "brk_diff": 0, "name": "Nicaragua", "name_long": "Nicaragua", "brk_a3": "NIC", "brk_name": "Nicaragua", "abbrev": "Nic.", "postal": "NI", "formal_en": "Republic of Nicaragua", "name_sort": "Nicaragua", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 5891199, "gdp_md_est": 16790, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NI", "iso_a3": "NIC", "iso_n3": "558", "un_a3": "558", "wb_a2": "NI", "wb_a3": "NIC", "woe_id": -99, "adm0_a3_is": "NIC", "adm0_a3_us": "NIC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.490601, 15.019075 ], [ -83.150024, 14.997852 ], [ -83.237915, 14.902322 ], [ -83.287354, 14.679254 ], [ -83.182983, 14.312292 ], [ -83.413696, 13.971385 ], [ -83.523560, 13.571242 ], [ -83.556519, 13.127629 ], [ -83.501587, 12.870715 ], [ -83.474121, 12.420483 ], [ -83.627930, 12.323903 ], [ -83.721313, 11.894228 ], [ -83.655396, 11.630716 ], [ -83.858643, 11.377724 ], [ -83.809204, 11.108337 ], [ -83.660889, 10.941192 ], [ -83.897095, 10.730778 ], [ -84.193726, 10.795537 ], [ -84.358521, 11.000512 ], [ -84.677124, 11.086775 ], [ -84.907837, 10.957371 ], [ -85.567017, 11.221510 ], [ -85.715332, 11.092166 ], [ -86.061401, 11.404649 ], [ -86.528320, 11.808211 ], [ -86.748047, 12.146746 ], [ -87.171021, 12.463396 ], [ -87.670898, 12.913552 ], [ -87.561035, 13.068777 ], [ -87.396240, 12.918907 ], [ -87.319336, 12.988500 ], [ -87.006226, 13.025966 ], [ -86.885376, 13.255986 ], [ -86.737061, 13.266680 ], [ -86.759033, 13.758060 ], [ -86.522827, 13.779402 ], [ -86.314087, 13.774066 ], [ -86.099854, 14.040673 ], [ -85.803223, 13.838080 ], [ -85.698853, 13.960723 ], [ -85.517578, 14.083301 ], [ -85.166016, 14.354870 ], [ -85.149536, 14.562318 ], [ -85.056152, 14.551684 ], [ -84.929810, 14.790817 ], [ -84.825439, 14.822681 ], [ -84.649658, 14.668626 ], [ -84.451904, 14.626109 ], [ -84.232178, 14.753635 ], [ -83.979492, 14.753635 ], [ -83.633423, 14.881087 ], [ -83.490601, 15.019075 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Costa Rica", "sov_a3": "CRI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Costa Rica", "adm0_a3": "CRI", "geou_dif": 0, "geounit": "Costa Rica", "gu_a3": "CRI", "su_dif": 0, "subunit": "Costa Rica", "su_a3": "CRI", "brk_diff": 0, "name": "Costa Rica", "name_long": "Costa Rica", "brk_a3": "CRI", "brk_name": "Costa Rica", "abbrev": "C.R.", "postal": "CR", "formal_en": "Republic of Costa Rica", "name_sort": "Costa Rica", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 4253877, "gdp_md_est": 48320, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CR", "iso_a3": "CRI", "iso_n3": "188", "un_a3": "188", "wb_a2": "CR", "wb_a3": "CRI", "woe_id": -99, "adm0_a3_is": "CRI", "adm0_a3_us": "CRI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.567017, 11.221510 ], [ -84.907837, 10.957371 ], [ -84.677124, 11.086775 ], [ -84.358521, 11.000512 ], [ -84.193726, 10.795537 ], [ -83.897095, 10.730778 ], [ -83.660889, 10.941192 ], [ -83.402710, 10.395975 ], [ -83.018188, 9.995901 ], [ -82.551270, 9.568251 ], [ -82.935791, 9.481572 ], [ -82.930298, 9.074976 ], [ -82.721558, 8.928487 ], [ -82.869873, 8.809082 ], [ -82.831421, 8.629903 ], [ -82.913818, 8.428904 ], [ -82.968750, 8.227801 ], [ -83.512573, 8.450639 ], [ -83.715820, 8.657057 ], [ -83.600464, 8.830795 ], [ -83.633423, 9.053277 ], [ -83.913574, 9.291886 ], [ -84.303589, 9.492408 ], [ -84.649658, 9.616998 ], [ -84.715576, 9.909333 ], [ -84.979248, 10.087854 ], [ -84.913330, 9.801091 ], [ -85.111084, 9.557417 ], [ -85.341797, 9.838979 ], [ -85.665894, 9.936388 ], [ -85.797729, 10.136524 ], [ -85.792236, 10.444598 ], [ -85.660400, 10.757763 ], [ -85.946045, 10.898042 ], [ -85.567017, 11.221510 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Panama", "sov_a3": "PAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Panama", "adm0_a3": "PAN", "geou_dif": 0, "geounit": "Panama", "gu_a3": "PAN", "su_dif": 0, "subunit": "Panama", "su_a3": "PAN", "brk_diff": 0, "name": "Panama", "name_long": "Panama", "brk_a3": "PAN", "brk_name": "Panama", "abbrev": "Pan.", "postal": "PA", "formal_en": "Republic of Panama", "name_sort": "Panama", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 3360474, "gdp_md_est": 38830, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PA", "iso_a3": "PAN", "iso_n3": "591", "un_a3": "591", "wb_a2": "PA", "wb_a3": "PAN", "woe_id": -99, "adm0_a3_is": "PAN", "adm0_a3_us": "PAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.573975, 9.616998 ], [ -79.024658, 9.557417 ], [ -79.063110, 9.459899 ], [ -78.502808, 9.421968 ], [ -78.057861, 9.248514 ], [ -77.733765, 8.950193 ], [ -77.354736, 8.673348 ], [ -77.475586, 8.526701 ], [ -77.244873, 7.939556 ], [ -77.431641, 7.640220 ], [ -77.755737, 7.710992 ], [ -77.882080, 7.226249 ], [ -78.217163, 7.514981 ], [ -78.431396, 8.053791 ], [ -78.184204, 8.320212 ], [ -78.436890, 8.390865 ], [ -78.623657, 8.722218 ], [ -79.123535, 8.999026 ], [ -79.562988, 8.933914 ], [ -79.760742, 8.586453 ], [ -80.167236, 8.336518 ], [ -80.386963, 8.298470 ], [ -80.485840, 8.091862 ], [ -80.007935, 7.547656 ], [ -80.277100, 7.422389 ], [ -80.425415, 7.275292 ], [ -80.886841, 7.220800 ], [ -81.062622, 7.819847 ], [ -81.194458, 7.651109 ], [ -81.524048, 7.710992 ], [ -81.721802, 8.113615 ], [ -82.133789, 8.178868 ], [ -82.391968, 8.293035 ], [ -82.820435, 8.293035 ], [ -82.853394, 8.075546 ], [ -82.968750, 8.227801 ], [ -82.913818, 8.428904 ], [ -82.831421, 8.629903 ], [ -82.869873, 8.809082 ], [ -82.721558, 8.928487 ], [ -82.930298, 9.074976 ], [ -82.935791, 9.481572 ], [ -82.551270, 9.568251 ], [ -82.188721, 9.210560 ], [ -82.210693, 8.999026 ], [ -81.809692, 8.955619 ], [ -81.716309, 9.037003 ], [ -81.441650, 8.787368 ], [ -80.952759, 8.863362 ], [ -80.524292, 9.112945 ], [ -79.920044, 9.313569 ], [ -79.573975, 9.616998 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Jamaica", "sov_a3": "JAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Jamaica", "adm0_a3": "JAM", "geou_dif": 0, "geounit": "Jamaica", "gu_a3": "JAM", "su_dif": 0, "subunit": "Jamaica", "su_a3": "JAM", "brk_diff": 0, "name": "Jamaica", "name_long": "Jamaica", "brk_a3": "JAM", "brk_name": "Jamaica", "abbrev": "Jam.", "postal": "J", "formal_en": "Jamaica", "name_sort": "Jamaica", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 10, "pop_est": 2825928, "gdp_md_est": 20910, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "JM", "iso_a3": "JAM", "iso_n3": "388", "un_a3": "388", "wb_a2": "JM", "wb_a3": "JAM", "woe_id": -99, "adm0_a3_is": "JAM", "adm0_a3_us": "JAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.799683, 18.526492 ], [ -76.898804, 18.401443 ], [ -76.365967, 18.161511 ], [ -76.201172, 17.889887 ], [ -76.904297, 17.868975 ], [ -77.206421, 17.701595 ], [ -77.766724, 17.863747 ], [ -78.338013, 18.229351 ], [ -78.222656, 18.458768 ], [ -77.799683, 18.526492 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Dominican Republic", "sov_a3": "DOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Dominican Republic", "adm0_a3": "DOM", "geou_dif": 0, "geounit": "Dominican Republic", "gu_a3": "DOM", "su_dif": 0, "subunit": "Dominican Republic", "su_a3": "DOM", "brk_diff": 0, "name": "Dominican Rep.", "name_long": "Dominican Republic", "brk_a3": "DOM", "brk_name": "Dominican Rep.", "abbrev": "Dom. Rep.", "postal": "DO", "formal_en": "Dominican Republic", "name_sort": "Dominican Republic", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 9650054, "gdp_md_est": 78000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DO", "iso_a3": "DOM", "iso_n3": "214", "un_a3": "214", "wb_a2": "DO", "wb_a3": "DOM", "woe_id": -99, "adm0_a3_is": "DOM", "adm0_a3_us": "DOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 14, "long_len": 18, "abbrev_len": 9, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.592407, 19.885557 ], [ -70.806885, 19.880392 ], [ -70.219116, 19.627066 ], [ -69.955444, 19.652934 ], [ -69.774170, 19.295590 ], [ -69.224854, 19.316327 ], [ -69.257812, 19.015384 ], [ -68.812866, 18.984220 ], [ -68.318481, 18.615013 ], [ -68.692017, 18.208480 ], [ -69.169922, 18.427502 ], [ -69.625854, 18.385805 ], [ -69.955444, 18.432713 ], [ -70.136719, 18.250220 ], [ -70.521240, 18.187607 ], [ -70.669556, 18.427502 ], [ -71.004639, 18.286734 ], [ -71.405640, 17.602139 ], [ -71.658325, 17.759150 ], [ -71.713257, 18.046644 ], [ -71.691284, 18.318026 ], [ -71.949463, 18.620219 ], [ -71.702271, 18.786717 ], [ -71.625366, 19.171113 ], [ -71.713257, 19.715000 ], [ -71.592407, 19.885557 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.757202, 12.441941 ], [ -71.400146, 12.377563 ], [ -71.141968, 12.114523 ], [ -71.334229, 11.781325 ], [ -71.976929, 11.609193 ], [ -72.229614, 11.113727 ], [ -72.619629, 10.822515 ], [ -72.910767, 10.455402 ], [ -73.031616, 9.741542 ], [ -73.306274, 9.156333 ], [ -72.789917, 9.085824 ], [ -72.663574, 8.629903 ], [ -72.443848, 8.407168 ], [ -72.361450, 8.004837 ], [ -72.482300, 7.634776 ], [ -72.449341, 7.427837 ], [ -72.202148, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.675049, 7.089990 ], [ -70.098267, 6.964597 ], [ -69.389648, 6.102322 ], [ -68.988647, 6.211551 ], [ -68.269043, 6.156939 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.500000, 5.621453 ], [ -67.521973, 5.561315 ], [ -67.747192, 5.222247 ], [ -67.824097, 4.505238 ], [ -67.626343, 3.842332 ], [ -67.500000, 3.716264 ], [ -67.340698, 3.546318 ], [ -67.307739, 3.321502 ], [ -67.500000, 3.129546 ], [ -67.813110, 2.822344 ], [ -67.500000, 2.635789 ], [ -67.450562, 2.602864 ], [ -67.181396, 2.251617 ], [ -67.060547, 1.856365 ], [ -67.066040, 1.131518 ], [ -67.263794, 1.724593 ], [ -67.500000, 1.999106 ], [ -67.538452, 2.037534 ], [ -67.873535, 1.697139 ], [ -69.818115, 1.719102 ], [ -69.807129, 1.093073 ], [ -69.219360, 0.988720 ], [ -69.257812, 0.604237 ], [ -69.455566, 0.708600 ], [ -70.015869, 0.543815 ], [ -70.021362, 0.000000 ], [ -70.021362, -0.181274 ], [ -69.713745, -0.439449 ], [ -74.575195, -0.439449 ], [ -75.108032, -0.054932 ], [ -75.377197, -0.148315 ], [ -75.651855, 0.000000 ], [ -75.805664, 0.087891 ], [ -76.294556, 0.417477 ], [ -76.580200, 0.258178 ], [ -77.426147, 0.400998 ], [ -77.673340, 0.829439 ], [ -77.860107, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.768518 ], [ -78.667603, 2.268084 ], [ -78.431396, 2.630301 ], [ -77.937012, 2.701635 ], [ -77.514038, 3.326986 ], [ -77.129517, 3.853293 ], [ -77.497559, 4.088932 ], [ -77.310791, 4.669505 ], [ -77.536011, 5.583184 ], [ -77.321777, 5.845545 ], [ -77.481079, 6.691887 ], [ -77.882080, 7.226249 ], [ -77.755737, 7.710992 ], [ -77.431641, 7.640220 ], [ -77.244873, 7.939556 ], [ -77.475586, 8.526701 ], [ -77.354736, 8.673348 ], [ -76.838379, 8.640765 ], [ -76.091309, 9.340672 ], [ -75.679321, 9.443643 ], [ -75.668335, 9.774025 ], [ -75.481567, 10.622817 ], [ -74.910278, 11.086775 ], [ -74.278564, 11.102947 ], [ -74.201660, 11.313094 ], [ -73.416138, 11.232286 ], [ -72.630615, 11.732924 ], [ -72.240601, 11.958723 ], [ -71.757202, 12.441941 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Venezuela", "sov_a3": "VEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Venezuela", "adm0_a3": "VEN", "geou_dif": 0, "geounit": "Venezuela", "gu_a3": "VEN", "su_dif": 0, "subunit": "Venezuela", "su_a3": "VEN", "brk_diff": 0, "name": "Venezuela", "name_long": "Venezuela", "brk_a3": "VEN", "brk_name": "Venezuela", "abbrev": "Ven.", "postal": "VE", "formal_en": "Bolivarian Republic of Venezuela", "formal_fr": "República Bolivariana de Venezuela", "name_sort": "Venezuela, RB", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 26814843, "gdp_md_est": 357400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "VE", "iso_a3": "VEN", "iso_n3": "862", "un_a3": "862", "wb_a2": "VE", "wb_a3": "VEN", "woe_id": -99, "adm0_a3_is": "VEN", "adm0_a3_us": "VEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.944458, 12.162856 ], [ -69.587402, 11.463874 ], [ -68.884277, 11.447723 ], [ -68.236084, 10.887254 ], [ -68.197632, 10.558022 ], [ -67.500000, 10.552622 ], [ -67.296753, 10.547221 ], [ -67.060547, 10.568822 ], [ -67.060547, 1.856365 ], [ -67.181396, 2.251617 ], [ -67.450562, 2.602864 ], [ -67.500000, 2.635789 ], [ -67.813110, 2.822344 ], [ -67.500000, 3.129546 ], [ -67.307739, 3.321502 ], [ -67.340698, 3.546318 ], [ -67.500000, 3.716264 ], [ -67.626343, 3.842332 ], [ -67.824097, 4.505238 ], [ -67.747192, 5.222247 ], [ -67.521973, 5.561315 ], [ -67.500000, 5.621453 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -68.269043, 6.156939 ], [ -68.988647, 6.211551 ], [ -69.389648, 6.102322 ], [ -70.098267, 6.964597 ], [ -70.675049, 7.089990 ], [ -71.960449, 6.991859 ], [ -72.202148, 7.340675 ], [ -72.449341, 7.427837 ], [ -72.482300, 7.634776 ], [ -72.361450, 8.004837 ], [ -72.443848, 8.407168 ], [ -72.663574, 8.629903 ], [ -72.789917, 9.085824 ], [ -73.306274, 9.156333 ], [ -73.031616, 9.741542 ], [ -72.910767, 10.455402 ], [ -72.619629, 10.822515 ], [ -72.229614, 11.113727 ], [ -71.976929, 11.609193 ], [ -71.334229, 11.781325 ], [ -71.361694, 11.544616 ], [ -71.949463, 11.426187 ], [ -71.625366, 10.973550 ], [ -71.636353, 10.450000 ], [ -72.075806, 9.866040 ], [ -71.696777, 9.074976 ], [ -71.268311, 9.140063 ], [ -71.043091, 9.860628 ], [ -71.350708, 10.212219 ], [ -71.405640, 10.973550 ], [ -70.158691, 11.377724 ], [ -70.296021, 11.851223 ], [ -69.944458, 12.162856 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.859863, 1.384143 ], [ -77.860107, 0.812961 ], [ -77.673340, 0.829439 ], [ -77.426147, 0.400998 ], [ -76.580200, 0.258178 ], [ -76.294556, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.651855, 0.000000 ], [ -75.377197, -0.148315 ], [ -75.322266, -0.439449 ], [ -80.447388, -0.439449 ], [ -80.403442, -0.280150 ], [ -80.233154, 0.000000 ], [ -80.024414, 0.362546 ], [ -80.095825, 0.769020 ], [ -79.546509, 0.983228 ], [ -78.859863, 1.384143 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Peru", "sov_a3": "PER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Peru", "adm0_a3": "PER", "geou_dif": 0, "geounit": "Peru", "gu_a3": "PER", "su_dif": 0, "subunit": "Peru", "su_a3": "PER", "brk_diff": 0, "name": "Peru", "name_long": "Peru", "brk_a3": "PER", "brk_name": "Peru", "abbrev": "Peru", "postal": "PE", "formal_en": "Republic of Peru", "name_sort": "Peru", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 11, "pop_est": 29546963, "gdp_md_est": 247300, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PE", "iso_a3": "PER", "iso_n3": "604", "un_a3": "604", "wb_a2": "PE", "wb_a3": "PER", "woe_id": -99, "adm0_a3_is": "PER", "adm0_a3_us": "PER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.108032, -0.054932 ], [ -74.575195, -0.439449 ], [ -75.322266, -0.439449 ], [ -75.377197, -0.148315 ], [ -75.108032, -0.054932 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.055664, 21.545066 ], [ -87.044678, 21.534847 ], [ -87.116089, 21.534847 ], [ -87.055664, 21.545066 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "The Bahamas", "sov_a3": "BHS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "The Bahamas", "adm0_a3": "BHS", "geou_dif": 0, "geounit": "The Bahamas", "gu_a3": "BHS", "su_dif": 0, "subunit": "The Bahamas", "su_a3": "BHS", "brk_diff": 0, "name": "Bahamas", "name_long": "Bahamas", "brk_a3": "BHS", "brk_name": "Bahamas", "abbrev": "Bhs.", "postal": "BS", "formal_en": "Commonwealth of the Bahamas", "name_sort": "Bahamas, The", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 309156, "gdp_md_est": 9093, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BS", "iso_a3": "BHS", "iso_n3": "044", "un_a3": "044", "wb_a2": "BS", "wb_a3": "BHS", "woe_id": -99, "adm0_a3_is": "BHS", "adm0_a3_us": "BHS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.195190, 25.214881 ], [ -77.893066, 25.170145 ], [ -77.541504, 24.342092 ], [ -77.536011, 23.760209 ], [ -77.783203, 23.714954 ], [ -78.035889, 24.287027 ], [ -78.409424, 24.577100 ], [ -78.195190, 25.214881 ] ] ], [ [ [ -77.794189, 27.044449 ], [ -77.003174, 26.593439 ], [ -77.173462, 25.883937 ], [ -77.360229, 26.007424 ], [ -77.343750, 26.534480 ], [ -77.788696, 26.926968 ], [ -77.794189, 27.044449 ] ] ], [ [ [ -78.513794, 26.873081 ], [ -77.854614, 26.843677 ], [ -77.821655, 26.583615 ], [ -78.914795, 26.421390 ], [ -78.980713, 26.794654 ], [ -78.513794, 26.873081 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.379517, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.441642 ], [ -84.342041, 46.411352 ], [ -84.144287, 46.513516 ], [ -84.094849, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.282349, 42.212245 ], [ -80.249634, 42.366662 ], [ -78.942261, 42.863886 ], [ -78.920288, 42.968482 ], [ -79.013672, 43.273206 ], [ -79.172974, 43.468868 ], [ -78.722534, 43.628123 ], [ -76.821899, 43.632099 ], [ -76.503296, 44.020472 ], [ -76.376953, 44.099421 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.004883, 46.694667 ], [ -69.241333, 47.450380 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.357432 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.500000, 45.452424 ], [ -67.137451, 45.139430 ], [ -67.060547, 44.991998 ], [ -67.060547, 44.770137 ], [ -67.500000, 44.570904 ], [ -68.032837, 44.327778 ], [ -69.060059, 43.980958 ], [ -70.120239, 43.687736 ], [ -70.647583, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.338245 ], [ -70.499268, 41.808173 ], [ -70.081787, 41.783601 ], [ -70.186157, 42.147114 ], [ -69.889526, 41.926803 ], [ -69.966431, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.496235 ], [ -71.861572, 41.323201 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.569946, 40.979898 ], [ -73.712769, 40.934265 ], [ -73.333740, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.026367, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.267822, 40.647304 ], [ -73.981934, 40.647304 ], [ -73.954468, 40.751418 ], [ -74.069824, 40.647304 ], [ -90.439453, 40.647304 ], [ -90.439453, 48.188063 ], [ -90.000000, 48.096426 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.022998 ], [ -88.379517, 48.305121 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, 77.394300 ], [ -67.500000, 77.421844 ], [ -71.043091, 77.636542 ], [ -73.300781, 78.044933 ], [ -73.163452, 78.433418 ], [ -69.378662, 78.914496 ], [ -67.500000, 79.163075 ], [ -67.060547, 79.219732 ], [ -67.060547, 77.394300 ] ] ], [ [ [ -67.060547, 77.369100 ], [ -67.060547, 76.106073 ], [ -67.500000, 76.092877 ], [ -68.505249, 76.062478 ], [ -69.669800, 76.380383 ], [ -71.405640, 77.008582 ], [ -68.779907, 77.323374 ], [ -67.500000, 77.357083 ], [ -67.060547, 77.369100 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, 79.991442 ], [ -67.500000, 80.049510 ], [ -68.027344, 80.117621 ], [ -67.500000, 80.358836 ], [ -67.153931, 80.516698 ], [ -67.060547, 80.535685 ], [ -67.060547, 79.991442 ] ] ], [ [ [ -67.060547, 79.219732 ], [ -67.060547, 79.088462 ], [ -68.065796, 79.088462 ], [ -67.060547, 79.219732 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -61.298218, -64.543718 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -63.764648, -66.513260 ], [ -64.050293, -66.687784 ], [ -66.901245, -66.687784 ], [ -66.588135, -66.513260 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.939453, -53.566414 ], [ -67.752686, -53.849286 ], [ -67.500000, -53.965781 ], [ -66.450806, -54.447686 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.197683 ], [ -66.450806, -55.247815 ], [ -66.961670, -54.895565 ], [ -67.500000, -54.870285 ], [ -67.939453, -54.867124 ], [ -67.939453, -53.566414 ] ] ], [ [ [ -62.160645, -40.647304 ], [ -62.149658, -40.676472 ], [ -62.666016, -40.979898 ], [ -62.748413, -41.025499 ], [ -63.775635, -41.166249 ], [ -64.270020, -40.979898 ], [ -64.736938, -40.801336 ], [ -64.995117, -40.979898 ], [ -65.121460, -41.062786 ], [ -64.978638, -42.057450 ], [ -64.308472, -42.358544 ], [ -63.759155, -42.041134 ], [ -63.462524, -42.561173 ], [ -64.379883, -42.871938 ], [ -65.181885, -43.492783 ], [ -65.330200, -44.500423 ], [ -65.566406, -45.034715 ], [ -66.511230, -45.038597 ], [ -67.296753, -45.548679 ], [ -67.500000, -46.088472 ], [ -67.582397, -46.301406 ], [ -67.500000, -46.362093 ], [ -66.599121, -47.032695 ], [ -65.643311, -47.234490 ], [ -65.989380, -48.133101 ], [ -67.170410, -48.694586 ], [ -67.500000, -49.300054 ], [ -67.818604, -49.866317 ], [ -67.939453, -49.922935 ], [ -67.939453, -40.647304 ], [ -62.160645, -40.647304 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "Falkland Islands", "adm0_a3": "FLK", "geou_dif": 0, "geounit": "Falkland Islands", "gu_a3": "FLK", "su_dif": 0, "subunit": "Falkland Islands", "su_a3": "FLK", "brk_diff": 1, "name": "Falkland Is.", "name_long": "Falkland Islands", "brk_a3": "B12", "brk_name": "Falkland Is.", "abbrev": "Flk. Is.", "postal": "FK", "formal_en": "Falkland Islands", "note_adm0": "U.K.", "note_brk": "Admin. by U.K.; Claimed by Argentina", "name_sort": "Falkland Islands", "name_alt": "Islas Malvinas", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 3140, "gdp_md_est": 105.1, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FK", "iso_a3": "FLK", "iso_n3": "238", "un_a3": "238", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "FLK", "adm0_a3_us": "FLK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 12, "long_len": 16, "abbrev_len": 8, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.551636, -51.096623 ], [ -57.755127, -51.549751 ], [ -58.051758, -51.896834 ], [ -59.403076, -52.197507 ], [ -59.853516, -51.849353 ], [ -60.704956, -52.298402 ], [ -61.204834, -51.849353 ], [ -60.001831, -51.248163 ], [ -59.150391, -51.498485 ], [ -58.551636, -51.096623 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.451782, -21.534847 ], [ -62.589111, -21.943046 ], [ -62.687988, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.989868, -21.988895 ], [ -64.379883, -22.796439 ], [ -64.967651, -22.075459 ], [ -65.681763, -21.943046 ], [ -66.275024, -21.830907 ], [ -66.379395, -21.943046 ], [ -67.109985, -22.735657 ], [ -67.500000, -22.806567 ], [ -67.829590, -22.872379 ], [ -67.939453, -22.482106 ], [ -67.939453, -21.534847 ], [ -62.451782, -21.534847 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ -44.560547, -21.534847 ], [ -44.560547, -23.327124 ], [ -44.648438, -23.347299 ], [ -45.000000, -23.574057 ], [ -45.357056, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.653198, -24.881453 ], [ -48.499146, -25.874052 ], [ -48.641968, -26.622908 ], [ -48.477173, -27.171582 ], [ -48.663940, -28.183402 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.224096 ], [ -50.701904, -30.982319 ], [ -51.580811, -31.774878 ], [ -52.256470, -32.245329 ], [ -52.712402, -33.192731 ], [ -53.377075, -33.765449 ], [ -53.651733, -33.201924 ], [ -53.212280, -32.727220 ], [ -53.789062, -32.045333 ], [ -54.574585, -31.494262 ], [ -55.601807, -30.850363 ], [ -55.975342, -30.878655 ], [ -56.980591, -30.107118 ], [ -57.628784, -30.211608 ], [ -56.293945, -28.849485 ], [ -55.162354, -27.877928 ], [ -54.492188, -27.474161 ], [ -53.651733, -26.922070 ], [ -53.629761, -26.120918 ], [ -54.135132, -25.547398 ], [ -54.629517, -25.735581 ], [ -54.431763, -25.160201 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.016362 ], [ -54.656982, -23.835601 ], [ -55.030518, -23.996290 ], [ -55.404053, -23.956136 ], [ -55.519409, -23.569022 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.355156 ], [ -56.475220, -22.085640 ], [ -56.881714, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.930908, -21.943046 ], [ -57.914429, -21.534847 ], [ -44.560547, -21.534847 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.275024, -21.830907 ], [ -65.681763, -21.943046 ], [ -64.967651, -22.075459 ], [ -64.379883, -22.796439 ], [ -63.989868, -21.988895 ], [ -62.847290, -22.034730 ], [ -62.687988, -22.248429 ], [ -60.847778, -23.875792 ], [ -60.029297, -24.031414 ], [ -58.809814, -24.766785 ], [ -57.782593, -25.160201 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.122702 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.386401 ], [ -54.788818, -26.617997 ], [ -54.629517, -25.735581 ], [ -54.135132, -25.547398 ], [ -53.629761, -26.120918 ], [ -53.651733, -26.922070 ], [ -54.492188, -27.474161 ], [ -55.162354, -27.877928 ], [ -56.293945, -28.849485 ], [ -57.628784, -30.211608 ], [ -57.875977, -31.015279 ], [ -58.145142, -32.040677 ], [ -58.134155, -33.036298 ], [ -58.353882, -33.261657 ], [ -58.496704, -34.429567 ], [ -57.227783, -35.285985 ], [ -57.365112, -35.973561 ], [ -56.738892, -36.412442 ], [ -56.788330, -36.897194 ], [ -57.749634, -38.182069 ], [ -59.232788, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.826871 ], [ -62.127686, -39.423464 ], [ -62.330933, -40.170479 ], [ -62.149658, -40.676472 ], [ -62.666016, -40.979898 ], [ -62.748413, -41.025499 ], [ -63.775635, -41.166249 ], [ -64.270020, -40.979898 ], [ -64.736938, -40.801336 ], [ -64.995117, -40.979898 ], [ -65.121460, -41.062786 ], [ -65.088501, -41.310824 ], [ -67.939453, -41.310824 ], [ -67.939453, -24.302047 ], [ -67.500000, -24.101633 ], [ -67.329712, -24.021379 ], [ -66.989136, -22.983681 ], [ -67.109985, -22.735657 ], [ -66.379395, -21.943046 ], [ -66.275024, -21.830907 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Uruguay", "sov_a3": "URY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uruguay", "adm0_a3": "URY", "geou_dif": 0, "geounit": "Uruguay", "gu_a3": "URY", "su_dif": 0, "subunit": "Uruguay", "su_a3": "URY", "brk_diff": 0, "name": "Uruguay", "name_long": "Uruguay", "brk_a3": "URY", "brk_name": "Uruguay", "abbrev": "Ury.", "postal": "UY", "formal_en": "Oriental Republic of Uruguay", "name_sort": "Uruguay", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 3494382, "gdp_md_est": 43160, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "UY", "iso_a3": "URY", "iso_n3": "858", "un_a3": "858", "wb_a2": "UY", "wb_a3": "URY", "woe_id": -99, "adm0_a3_is": "URY", "adm0_a3_us": "URY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.980591, -30.107118 ], [ -55.975342, -30.878655 ], [ -55.601807, -30.850363 ], [ -54.574585, -31.494262 ], [ -53.789062, -32.045333 ], [ -53.212280, -32.727220 ], [ -53.651733, -33.201924 ], [ -53.377075, -33.765449 ], [ -53.811035, -34.393312 ], [ -54.937134, -34.948991 ], [ -55.678711, -34.750640 ], [ -56.217041, -34.858890 ], [ -57.139893, -34.429567 ], [ -57.821045, -34.461277 ], [ -58.430786, -33.906896 ], [ -58.353882, -33.261657 ], [ -58.134155, -33.036298 ], [ -58.145142, -32.040677 ], [ -57.875977, -31.015279 ], [ -57.628784, -30.211608 ], [ -56.980591, -30.107118 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.341187, -9.757784 ], [ -65.445557, -10.509417 ], [ -65.324707, -10.892648 ], [ -65.407104, -11.566144 ], [ -64.319458, -12.458033 ], [ -63.198853, -12.624258 ], [ -62.803345, -12.999205 ], [ -62.127686, -13.197165 ], [ -61.715698, -13.485790 ], [ -61.089478, -13.475106 ], [ -60.507202, -13.774066 ], [ -60.463257, -14.349548 ], [ -60.265503, -14.642054 ], [ -60.254517, -15.072124 ], [ -60.545654, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.244019, -16.299051 ], [ -58.392334, -16.872890 ], [ -58.282471, -17.266728 ], [ -57.738647, -17.549772 ], [ -57.502441, -18.171950 ], [ -57.678223, -18.958246 ], [ -57.952881, -19.399249 ], [ -57.854004, -19.968186 ], [ -58.167114, -20.174567 ], [ -58.183594, -19.864894 ], [ -59.117432, -19.352611 ], [ -60.045776, -19.342245 ], [ -61.787109, -19.632240 ], [ -62.270508, -20.509355 ], [ -62.292480, -21.048618 ], [ -62.589111, -21.943046 ], [ -62.687988, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.989868, -21.988895 ], [ -64.160156, -22.350076 ], [ -64.742432, -22.350076 ], [ -64.967651, -22.075459 ], [ -65.681763, -21.943046 ], [ -66.275024, -21.830907 ], [ -66.379395, -21.943046 ], [ -66.752930, -22.350076 ], [ -67.939453, -22.350076 ], [ -67.939453, -10.660608 ], [ -67.500000, -10.455402 ], [ -67.175903, -10.304110 ], [ -66.648560, -9.930977 ], [ -65.341187, -9.757784 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ -50.504150, 0.439449 ], [ -50.701904, 0.225219 ], [ -50.471191, 0.000000 ], [ -50.388794, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.587036, -1.235866 ], [ -47.828979, -0.576772 ], [ -46.571045, -0.939289 ], [ -45.000000, -1.515936 ], [ -44.906616, -1.548884 ], [ -44.560547, -1.966167 ], [ -44.560547, -2.619326 ], [ -44.582520, -2.690661 ], [ -44.560547, -2.685174 ], [ -44.560547, -22.350076 ], [ -55.816040, -22.350076 ], [ -56.475220, -22.085640 ], [ -56.881714, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.930908, -21.943046 ], [ -57.875977, -20.730428 ], [ -58.167114, -20.174567 ], [ -57.854004, -19.968186 ], [ -57.952881, -19.399249 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.171950 ], [ -57.738647, -17.549772 ], [ -58.282471, -17.266728 ], [ -58.392334, -16.872890 ], [ -58.244019, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.254517, -15.072124 ], [ -60.265503, -14.642054 ], [ -60.463257, -14.349548 ], [ -60.507202, -13.774066 ], [ -61.089478, -13.475106 ], [ -61.715698, -13.485790 ], [ -62.127686, -13.197165 ], [ -62.803345, -12.999205 ], [ -63.198853, -12.624258 ], [ -64.319458, -12.458033 ], [ -65.407104, -11.566144 ], [ -65.324707, -10.892648 ], [ -65.445557, -10.509417 ], [ -65.341187, -9.757784 ], [ -66.648560, -9.930977 ], [ -67.175903, -10.304110 ], [ -67.500000, -10.455402 ], [ -67.939453, -10.660608 ], [ -67.939453, 0.439449 ], [ -50.504150, 0.439449 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -66.275024, -21.830907 ], [ -65.681763, -21.943046 ], [ -64.967651, -22.075459 ], [ -64.742432, -22.350076 ], [ -66.752930, -22.350076 ], [ -66.379395, -21.943046 ], [ -66.275024, -21.830907 ] ] ], [ [ [ -62.847290, -22.034730 ], [ -62.687988, -22.248429 ], [ -62.572632, -22.350076 ], [ -64.160156, -22.350076 ], [ -63.989868, -21.988895 ], [ -62.847290, -22.034730 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "Puerto Rico", "adm0_a3": "PRI", "geou_dif": 0, "geounit": "Puerto Rico", "gu_a3": "PRI", "su_dif": 0, "subunit": "Puerto Rico", "su_a3": "PRI", "brk_diff": 0, "name": "Puerto Rico", "name_long": "Puerto Rico", "brk_a3": "PRI", "brk_name": "Puerto Rico", "abbrev": "P.R.", "postal": "PR", "formal_en": "Commonwealth of Puerto Rico", "note_adm0": "Commonwealth of U.S.A.", "name_sort": "Puerto Rico", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 3971020, "gdp_md_est": 70230, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "PR", "iso_a3": "PRI", "iso_n3": "630", "un_a3": "630", "wb_a2": "PR", "wb_a3": "PRI", "woe_id": -99, "adm0_a3_is": "PRI", "adm0_a3_us": "PRI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.104492, 18.521283 ], [ -66.286011, 18.516075 ], [ -65.775146, 18.427502 ], [ -65.593872, 18.229351 ], [ -65.852051, 17.978733 ], [ -66.604614, 17.983958 ], [ -67.186890, 17.947381 ], [ -67.247314, 18.375379 ], [ -67.104492, 18.521283 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Venezuela", "sov_a3": "VEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Venezuela", "adm0_a3": "VEN", "geou_dif": 0, "geounit": "Venezuela", "gu_a3": "VEN", "su_dif": 0, "subunit": "Venezuela", "su_a3": "VEN", "brk_diff": 0, "name": "Venezuela", "name_long": "Venezuela", "brk_a3": "VEN", "brk_name": "Venezuela", "abbrev": "Ven.", "postal": "VE", "formal_en": "Bolivarian Republic of Venezuela", "formal_fr": "República Bolivariana de Venezuela", "name_sort": "Venezuela, RB", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 26814843, "gdp_md_est": 357400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "VE", "iso_a3": "VEN", "iso_n3": "862", "un_a3": "862", "wb_a2": "VE", "wb_a3": "VEN", "woe_id": -99, "adm0_a3_is": "VEN", "adm0_a3_us": "VEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.885986, 10.719984 ], [ -62.731934, 10.422988 ], [ -62.391357, 9.952620 ], [ -61.589355, 9.876864 ], [ -60.831299, 9.384032 ], [ -60.671997, 8.581021 ], [ -60.150146, 8.608179 ], [ -59.760132, 8.369127 ], [ -60.551147, 7.781751 ], [ -60.639038, 7.416942 ], [ -60.298462, 7.046379 ], [ -60.545654, 6.860985 ], [ -61.160889, 6.697343 ], [ -61.144409, 6.238855 ], [ -61.413574, 5.960290 ], [ -60.737915, 5.200365 ], [ -60.606079, 4.921306 ], [ -60.968628, 4.538094 ], [ -62.089233, 4.165637 ], [ -62.808838, 4.012220 ], [ -63.094482, 3.771078 ], [ -63.890991, 4.023179 ], [ -64.632568, 4.149201 ], [ -64.819336, 4.061536 ], [ -64.368896, 3.798484 ], [ -64.412842, 3.129546 ], [ -64.270020, 2.498597 ], [ -63.424072, 2.416276 ], [ -63.369141, 2.202216 ], [ -64.083252, 1.916757 ], [ -64.204102, 1.493971 ], [ -64.616089, 1.329226 ], [ -65.357666, 1.098565 ], [ -65.549927, 0.790990 ], [ -66.329956, 0.725078 ], [ -66.879272, 1.257834 ], [ -67.181396, 2.251617 ], [ -67.450562, 2.602864 ], [ -67.500000, 2.635789 ], [ -67.813110, 2.822344 ], [ -67.500000, 3.129546 ], [ -67.307739, 3.321502 ], [ -67.340698, 3.546318 ], [ -67.500000, 3.716264 ], [ -67.626343, 3.842332 ], [ -67.824097, 4.505238 ], [ -67.747192, 5.222247 ], [ -67.521973, 5.561315 ], [ -67.500000, 5.621453 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -67.939453, 6.222473 ], [ -67.939453, 10.552622 ], [ -67.500000, 10.552622 ], [ -67.296753, 10.547221 ], [ -66.231079, 10.649811 ], [ -65.659790, 10.201407 ], [ -64.890747, 10.082446 ], [ -64.330444, 10.390572 ], [ -64.319458, 10.644412 ], [ -63.083496, 10.703792 ], [ -61.885986, 10.719984 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Guyana", "sov_a3": "GUY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guyana", "adm0_a3": "GUY", "geou_dif": 0, "geounit": "Guyana", "gu_a3": "GUY", "su_dif": 0, "subunit": "Guyana", "su_a3": "GUY", "brk_diff": 0, "name": "Guyana", "name_long": "Guyana", "brk_a3": "GUY", "brk_name": "Guyana", "abbrev": "Guy.", "postal": "GY", "formal_en": "Co-operative Republic of Guyana", "name_sort": "Guyana", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 772298, "gdp_md_est": 2966, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GY", "iso_a3": "GUY", "iso_n3": "328", "un_a3": "328", "wb_a2": "GY", "wb_a3": "GUY", "woe_id": -99, "adm0_a3_is": "GUY", "adm0_a3_us": "GUY", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.760132, 8.369127 ], [ -59.106445, 7.999397 ], [ -58.485718, 7.351571 ], [ -58.458252, 6.833716 ], [ -58.079224, 6.811898 ], [ -57.150879, 5.976680 ], [ -57.310181, 5.074529 ], [ -57.914429, 4.817312 ], [ -57.864990, 4.581901 ], [ -58.046265, 4.061536 ], [ -57.606812, 3.337954 ], [ -57.282715, 3.337954 ], [ -57.150879, 2.772965 ], [ -56.541138, 1.900286 ], [ -56.782837, 1.867345 ], [ -57.337646, 1.949697 ], [ -57.661743, 1.686158 ], [ -58.117676, 1.510445 ], [ -58.430786, 1.466515 ], [ -58.540649, 1.268817 ], [ -59.035034, 1.318243 ], [ -59.650269, 1.790480 ], [ -59.721680, 2.251617 ], [ -59.979858, 2.756504 ], [ -59.820557, 3.606625 ], [ -59.540405, 3.962901 ], [ -59.771118, 4.428567 ], [ -60.111694, 4.576425 ], [ -59.985352, 5.014339 ], [ -60.216064, 5.249598 ], [ -60.737915, 5.200365 ], [ -61.413574, 5.960290 ], [ -61.144409, 6.238855 ], [ -61.160889, 6.697343 ], [ -60.545654, 6.860985 ], [ -60.298462, 7.046379 ], [ -60.639038, 7.416942 ], [ -60.551147, 7.781751 ], [ -59.760132, 8.369127 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Suriname", "sov_a3": "SUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Suriname", "adm0_a3": "SUR", "geou_dif": 0, "geounit": "Suriname", "gu_a3": "SUR", "su_dif": 0, "subunit": "Suriname", "su_a3": "SUR", "brk_diff": 0, "name": "Suriname", "name_long": "Suriname", "brk_a3": "SUR", "brk_name": "Suriname", "abbrev": "Sur.", "postal": "SR", "formal_en": "Republic of Suriname", "name_sort": "Suriname", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 481267, "gdp_md_est": 4254, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "SR", "iso_a3": "SUR", "iso_n3": "740", "un_a3": "740", "wb_a2": "SR", "wb_a3": "SUR", "woe_id": -99, "adm0_a3_is": "SUR", "adm0_a3_us": "SUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.036011, 6.025848 ], [ -53.959351, 5.758105 ], [ -54.481201, 4.899414 ], [ -54.404297, 4.214943 ], [ -54.008789, 3.623071 ], [ -54.184570, 3.189879 ], [ -54.272461, 2.734557 ], [ -54.525146, 2.311994 ], [ -55.101929, 2.526037 ], [ -55.574341, 2.421764 ], [ -55.975342, 2.515061 ], [ -56.074219, 2.224173 ], [ -55.909424, 2.026555 ], [ -55.997314, 1.817932 ], [ -56.541138, 1.900286 ], [ -57.150879, 2.772965 ], [ -57.282715, 3.337954 ], [ -57.606812, 3.337954 ], [ -58.046265, 4.061536 ], [ -57.864990, 4.581901 ], [ -57.914429, 4.817312 ], [ -57.310181, 5.074529 ], [ -57.150879, 5.976680 ], [ -55.953369, 5.774501 ], [ -55.843506, 5.954827 ], [ -55.036011, 6.025848 ] ] ] } } +, +{ "type": "Feature", "properties": { "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": "Polygon", "coordinates": [ [ [ -60.216064, 5.249598 ], [ -59.985352, 5.014339 ], [ -60.111694, 4.576425 ], [ -59.771118, 4.428567 ], [ -59.540405, 3.962901 ], [ -59.820557, 3.606625 ], [ -59.979858, 2.756504 ], [ -59.721680, 2.251617 ], [ -59.650269, 1.790480 ], [ -59.035034, 1.318243 ], [ -58.540649, 1.268817 ], [ -58.430786, 1.466515 ], [ -58.117676, 1.510445 ], [ -57.661743, 1.686158 ], [ -57.337646, 1.949697 ], [ -56.782837, 1.867345 ], [ -56.541138, 1.900286 ], [ -55.997314, 1.817932 ], [ -55.909424, 2.026555 ], [ -56.074219, 2.224173 ], [ -55.975342, 2.515061 ], [ -55.574341, 2.421764 ], [ -55.101929, 2.526037 ], [ -54.525146, 2.311994 ], [ -54.091187, 2.108899 ], [ -53.783569, 2.377857 ], [ -53.558350, 2.339438 ], [ -53.421021, 2.054003 ], [ -52.943115, 2.125367 ], [ -52.558594, 2.509573 ], [ -52.250977, 3.244724 ], [ -51.663208, 4.160158 ], [ -51.322632, 4.203986 ], [ -51.069946, 3.650482 ], [ -50.509644, 1.905776 ], [ -49.976807, 1.741065 ], [ -49.949341, 1.049136 ], [ -50.701904, 0.225219 ], [ -50.471191, 0.000000 ], [ -50.388794, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.614502, -0.439449 ], [ -67.939453, -0.439449 ], [ -67.939453, 1.697139 ], [ -67.873535, 1.697139 ], [ -67.538452, 2.037534 ], [ -67.500000, 1.999106 ], [ -67.263794, 1.724593 ], [ -67.066040, 1.131518 ], [ -66.879272, 1.257834 ], [ -66.329956, 0.725078 ], [ -65.549927, 0.790990 ], [ -65.357666, 1.098565 ], [ -64.616089, 1.329226 ], [ -64.204102, 1.493971 ], [ -64.083252, 1.916757 ], [ -63.369141, 2.202216 ], [ -63.424072, 2.416276 ], [ -64.270020, 2.498597 ], [ -64.412842, 3.129546 ], [ -64.368896, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.632568, 4.149201 ], [ -63.890991, 4.023179 ], [ -63.094482, 3.771078 ], [ -62.808838, 4.012220 ], [ -62.089233, 4.165637 ], [ -60.968628, 4.538094 ], [ -60.606079, 4.921306 ], [ -60.737915, 5.200365 ], [ -60.216064, 5.249598 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.939453, 47.163575 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.500000, 45.452424 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.813019 ], [ -67.500000, 44.570904 ], [ -67.939453, 44.370987 ], [ -67.939453, 47.163575 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 66.687784 ], [ -44.560547, 60.048389 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.157910 ], [ -46.268921, 60.855613 ], [ -48.268433, 60.860963 ], [ -49.235229, 61.407236 ], [ -49.905396, 62.385277 ], [ -51.635742, 63.629185 ], [ -52.141113, 64.280376 ], [ -52.278442, 65.178418 ], [ -53.662720, 66.100494 ], [ -53.464966, 66.513260 ], [ -53.377075, 66.687784 ], [ -44.560547, 66.687784 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 74.140084 ], [ -44.560547, 66.337505 ], [ -53.547363, 66.337505 ], [ -53.464966, 66.513260 ], [ -53.305664, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.358699 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.148876 ], [ -50.872192, 69.930300 ], [ -52.014771, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.285314 ], [ -54.684448, 69.611206 ], [ -54.750366, 70.290969 ], [ -54.360352, 70.823031 ], [ -53.432007, 70.837461 ], [ -51.394043, 70.570631 ], [ -53.113403, 71.205460 ], [ -54.008789, 71.547525 ], [ -55.003052, 71.407923 ], [ -55.838013, 71.655020 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.959925 ], [ -56.123657, 73.650999 ], [ -56.535645, 74.019543 ], [ -56.667480, 74.140084 ], [ -44.560547, 74.140084 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 79.253586 ], [ -44.560547, 73.898111 ], [ -56.398315, 73.898111 ], [ -56.535645, 74.019543 ], [ -57.326660, 74.710796 ], [ -58.601074, 75.099871 ], [ -58.590088, 75.517778 ], [ -61.270752, 76.103435 ], [ -63.396606, 76.175811 ], [ -66.066284, 76.135063 ], [ -67.500000, 76.092877 ], [ -67.939453, 76.079668 ], [ -67.939453, 77.346257 ], [ -67.500000, 77.357083 ], [ -66.769409, 77.376305 ], [ -67.500000, 77.421844 ], [ -67.939453, 77.448134 ], [ -67.939453, 79.105086 ], [ -67.500000, 79.163075 ], [ -67.434082, 79.171335 ], [ -66.802368, 79.253586 ], [ -44.560547, 79.253586 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -44.560547, 81.666853 ], [ -44.560547, 79.088462 ], [ -67.939453, 79.088462 ], [ -67.939453, 79.105086 ], [ -67.434082, 79.171335 ], [ -65.714722, 79.395031 ], [ -65.324707, 79.758726 ], [ -67.500000, 80.049510 ], [ -67.939453, 80.106301 ], [ -67.939453, 80.156200 ], [ -67.500000, 80.358836 ], [ -67.153931, 80.516698 ], [ -63.693237, 81.214014 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.287476, 82.034330 ], [ -57.211304, 82.191114 ], [ -54.135132, 82.200065 ], [ -53.047485, 81.888381 ], [ -50.394287, 82.439374 ], [ -48.004761, 82.065480 ], [ -46.604004, 81.986228 ], [ -45.000000, 81.736620 ], [ -44.560547, 81.666853 ] ] ], [ [ [ -44.560547, 81.670037 ], [ -45.000000, 81.772072 ], [ -46.906128, 82.200065 ], [ -46.768799, 82.628514 ], [ -46.505127, 82.676285 ], [ -46.203003, 82.732092 ], [ -44.560547, 82.732092 ], [ -44.560547, 81.670037 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 83.025552 ], [ -44.560547, 82.620052 ], [ -46.768799, 82.620052 ], [ -46.768799, 82.628514 ], [ -46.505127, 82.676285 ], [ -45.000000, 82.948424 ], [ -44.560547, 83.025552 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iceland", "sov_a3": "ISL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iceland", "adm0_a3": "ISL", "geou_dif": 0, "geounit": "Iceland", "gu_a3": "ISL", "su_dif": 0, "subunit": "Iceland", "su_a3": "ISL", "brk_diff": 0, "name": "Iceland", "name_long": "Iceland", "brk_a3": "ISL", "brk_name": "Iceland", "abbrev": "Iceland", "postal": "IS", "formal_en": "Republic of Iceland", "name_sort": "Iceland", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 306694, "gdp_md_est": 12710, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IS", "iso_a3": "ISL", "iso_n3": "352", "un_a3": "352", "wb_a2": "IS", "wb_a3": "ISL", "woe_id": -99, "adm0_a3_is": "ISL", "adm0_a3_us": "ISL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.060547, 64.468059 ], [ -22.500000, 64.567319 ], [ -23.955688, 64.893259 ], [ -22.500000, 65.051285 ], [ -22.186890, 65.086018 ], [ -22.230835, 65.380571 ], [ -22.500000, 65.410303 ], [ -24.329224, 65.612952 ], [ -23.653564, 66.264645 ], [ -22.500000, 66.374956 ], [ -22.137451, 66.412352 ], [ -22.060547, 66.379359 ], [ -22.060547, 64.468059 ] ] ], [ [ [ -22.060547, 64.277992 ], [ -22.060547, 63.881808 ], [ -22.500000, 63.932545 ], [ -22.763672, 63.961496 ], [ -22.500000, 64.079404 ], [ -22.060547, 64.277992 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iceland", "sov_a3": "ISL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iceland", "adm0_a3": "ISL", "geou_dif": 0, "geounit": "Iceland", "gu_a3": "ISL", "su_dif": 0, "subunit": "Iceland", "su_a3": "ISL", "brk_diff": 0, "name": "Iceland", "name_long": "Iceland", "brk_a3": "ISL", "brk_name": "Iceland", "abbrev": "Iceland", "postal": "IS", "formal_en": "Republic of Iceland", "name_sort": "Iceland", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 306694, "gdp_md_est": 12710, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IS", "iso_a3": "ISL", "iso_n3": "352", "un_a3": "352", "wb_a2": "IS", "wb_a3": "ISL", "woe_id": -99, "adm0_a3_is": "ISL", "adm0_a3_us": "ISL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.137451, 66.412352 ], [ -22.060547, 66.379359 ], [ -22.060547, 66.337505 ], [ -22.884521, 66.337505 ], [ -22.137451, 66.412352 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.216309, 22.350076 ], [ -14.221802, 22.314508 ], [ -14.556885, 21.943046 ], [ -14.633789, 21.861499 ], [ -14.754639, 21.504186 ], [ -17.023315, 21.422390 ], [ -16.973877, 21.886987 ], [ -16.896973, 21.943046 ], [ -16.589355, 22.161971 ], [ -16.473999, 22.350076 ], [ -14.216309, 22.350076 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "name_sort": "Senegal", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.578857, 16.599346 ], [ -14.100952, 16.304323 ], [ -13.436279, 16.040534 ], [ -12.832031, 15.305380 ], [ -12.172852, 14.620794 ], [ -12.128906, 13.998037 ], [ -11.931152, 13.427024 ], [ -11.557617, 13.143678 ], [ -11.469727, 12.758232 ], [ -11.519165, 12.447305 ], [ -11.661987, 12.388294 ], [ -12.205811, 12.468760 ], [ -12.282715, 12.356100 ], [ -12.502441, 12.334636 ], [ -13.222046, 12.576010 ], [ -15.551147, 12.629618 ], [ -15.820312, 12.517028 ], [ -16.149902, 12.549202 ], [ -16.682739, 12.388294 ], [ -16.842041, 13.154376 ], [ -15.935669, 13.132979 ], [ -15.693970, 13.272026 ], [ -15.512695, 13.282719 ], [ -15.144653, 13.512497 ], [ -14.716187, 13.298757 ], [ -14.282227, 13.282719 ], [ -13.848267, 13.507155 ], [ -14.051514, 13.795406 ], [ -14.381104, 13.629972 ], [ -14.688721, 13.635310 ], [ -15.084229, 13.880746 ], [ -15.402832, 13.864747 ], [ -15.628052, 13.624633 ], [ -16.715698, 13.597939 ], [ -17.127686, 14.376155 ], [ -17.627563, 14.732386 ], [ -17.188110, 14.923554 ], [ -16.704712, 15.623037 ], [ -16.468506, 16.135539 ], [ -16.122437, 16.457159 ], [ -15.628052, 16.372851 ], [ -15.139160, 16.588817 ], [ -14.578857, 16.599346 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Guinea Bissau", "sov_a3": "GNB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea Bissau", "adm0_a3": "GNB", "geou_dif": 0, "geounit": "Guinea Bissau", "gu_a3": "GNB", "su_dif": 0, "subunit": "Guinea Bissau", "su_a3": "GNB", "brk_diff": 0, "name": "Guinea-Bissau", "name_long": "Guinea-Bissau", "brk_a3": "GNB", "brk_name": "Guinea-Bissau", "abbrev": "GnB.", "postal": "GW", "formal_en": "Republic of Guinea-Bissau", "name_sort": "Guinea-Bissau", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 1533964, "gdp_md_est": 904.2, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GW", "iso_a3": "GNB", "iso_n3": "624", "un_a3": "624", "wb_a2": "GW", "wb_a3": "GNB", "woe_id": -99, "adm0_a3_is": "GNB", "adm0_a3_us": "GNB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 13, "long_len": 13, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.551147, 12.629618 ], [ -13.705444, 12.586732 ], [ -13.721924, 12.248760 ], [ -13.831787, 12.146746 ], [ -13.743896, 11.813588 ], [ -13.903198, 11.679135 ], [ -14.122925, 11.679135 ], [ -14.386597, 11.512322 ], [ -14.688721, 11.528470 ], [ -15.133667, 11.043647 ], [ -15.666504, 11.458491 ], [ -16.089478, 11.528470 ], [ -16.320190, 11.808211 ], [ -16.309204, 11.958723 ], [ -16.616821, 12.173595 ], [ -16.682739, 12.388294 ], [ -16.149902, 12.549202 ], [ -15.820312, 12.517028 ], [ -15.551147, 12.629618 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guinea", "sov_a3": "GIN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea", "adm0_a3": "GIN", "geou_dif": 0, "geounit": "Guinea", "gu_a3": "GIN", "su_dif": 0, "subunit": "Guinea", "su_a3": "GIN", "brk_diff": 0, "name": "Guinea", "name_long": "Guinea", "brk_a3": "GIN", "brk_name": "Guinea", "abbrev": "Gin.", "postal": "GN", "formal_en": "Republic of Guinea", "name_sort": "Guinea", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 10057975, "gdp_md_est": 10600, "pop_year": -99, "lastcensus": 1996, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GN", "iso_a3": "GIN", "iso_n3": "324", "un_a3": "324", "wb_a2": "GN", "wb_a3": "GIN", "woe_id": -99, "adm0_a3_is": "GIN", "adm0_a3_us": "GIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.705444, 12.586732 ], [ -13.222046, 12.576010 ], [ -12.502441, 12.334636 ], [ -12.282715, 12.356100 ], [ -12.205811, 12.468760 ], [ -11.661987, 12.388294 ], [ -11.519165, 12.447305 ], [ -11.458740, 12.076924 ], [ -11.299438, 12.082296 ], [ -11.041260, 12.216549 ], [ -10.870972, 12.178965 ], [ -10.596313, 11.926478 ], [ -10.167847, 11.845847 ], [ -9.893188, 12.060809 ], [ -9.569092, 12.195073 ], [ -9.332886, 12.334636 ], [ -9.129639, 12.313169 ], [ -8.909912, 12.093039 ], [ -8.789062, 11.813588 ], [ -8.377075, 11.393879 ], [ -8.585815, 11.140677 ], [ -8.624268, 10.811724 ], [ -8.410034, 10.914224 ], [ -8.283691, 10.795537 ], [ -8.338623, 10.498614 ], [ -8.031006, 10.206813 ], [ -8.234253, 10.131117 ], [ -8.311157, 9.790264 ], [ -8.080444, 9.378612 ], [ -7.833252, 8.581021 ], [ -8.206787, 8.456072 ], [ -8.300171, 8.320212 ], [ -8.223267, 8.124491 ], [ -8.283691, 7.689217 ], [ -8.442993, 7.689217 ], [ -8.723145, 7.716435 ], [ -8.926392, 7.313433 ], [ -9.212036, 7.318882 ], [ -9.404297, 7.531319 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.542998 ], [ -10.019531, 8.428904 ], [ -10.233765, 8.407168 ], [ -10.508423, 8.352823 ], [ -10.497437, 8.716789 ], [ -10.656738, 8.977323 ], [ -10.623779, 9.270201 ], [ -10.843506, 9.692813 ], [ -11.118164, 10.049994 ], [ -11.920166, 10.049994 ], [ -12.150879, 9.860628 ], [ -12.431030, 9.838979 ], [ -12.601318, 9.622414 ], [ -12.716675, 9.346092 ], [ -13.249512, 8.906780 ], [ -13.688965, 9.497826 ], [ -14.078979, 9.887687 ], [ -14.331665, 10.017539 ], [ -14.584351, 10.217625 ], [ -14.694214, 10.660608 ], [ -14.842529, 10.881859 ], [ -15.133667, 11.043647 ], [ -14.688721, 11.528470 ], [ -14.386597, 11.512322 ], [ -14.122925, 11.679135 ], [ -13.903198, 11.679135 ], [ -13.743896, 11.813588 ], [ -13.831787, 12.146746 ], [ -13.721924, 12.248760 ], [ -13.705444, 12.586732 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.163330, 22.350076 ], [ -6.119385, 21.943046 ], [ -5.493164, 16.325411 ], [ -5.317383, 16.204125 ], [ -5.542603, 15.506619 ], [ -9.552612, 15.490739 ], [ -9.700928, 15.268288 ], [ -10.090942, 15.331870 ], [ -10.651245, 15.135764 ], [ -11.354370, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.837769, 14.801439 ], [ -12.172852, 14.620794 ], [ -12.832031, 15.305380 ], [ -13.436279, 16.040534 ], [ -14.100952, 16.304323 ], [ -14.578857, 16.599346 ], [ -15.139160, 16.588817 ], [ -15.628052, 16.372851 ], [ -16.122437, 16.457159 ], [ -16.468506, 16.135539 ], [ -16.550903, 16.678293 ], [ -16.270752, 17.167034 ], [ -16.149902, 18.109308 ], [ -16.259766, 19.098458 ], [ -16.380615, 19.596019 ], [ -16.281738, 20.097206 ], [ -16.539917, 20.571082 ], [ -17.067261, 21.002471 ], [ -16.847534, 21.335432 ], [ -12.930908, 21.330315 ], [ -13.068237, 22.350076 ], [ -6.163330, 22.350076 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.862427, 22.350076 ], [ -0.230713, 21.943046 ], [ 0.000000, 21.795208 ], [ 0.439453, 21.514407 ], [ 0.439453, 14.934170 ], [ 0.000000, 14.928862 ], [ -0.269165, 14.928862 ], [ -0.516357, 15.119856 ], [ -1.071167, 14.976627 ], [ -2.005005, 14.562318 ], [ -2.197266, 14.248411 ], [ -2.971802, 13.800741 ], [ -3.109131, 13.544541 ], [ -3.526611, 13.341520 ], [ -4.010010, 13.475106 ], [ -4.284668, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.223999, 11.716788 ], [ -5.202026, 11.377724 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.374362 ], [ -5.817261, 10.223031 ], [ -6.053467, 10.098670 ], [ -6.207275, 10.525619 ], [ -6.498413, 10.412183 ], [ -6.668701, 10.433793 ], [ -6.855469, 10.141932 ], [ -7.624512, 10.147339 ], [ -7.904663, 10.298706 ], [ -8.031006, 10.206813 ], [ -8.338623, 10.498614 ], [ -8.283691, 10.795537 ], [ -8.410034, 10.914224 ], [ -8.624268, 10.811724 ], [ -8.585815, 11.140677 ], [ -8.377075, 11.393879 ], [ -8.789062, 11.813588 ], [ -8.909912, 12.093039 ], [ -9.129639, 12.313169 ], [ -9.332886, 12.334636 ], [ -9.569092, 12.195073 ], [ -9.893188, 12.060809 ], [ -10.167847, 11.845847 ], [ -10.596313, 11.926478 ], [ -10.870972, 12.178965 ], [ -11.041260, 12.216549 ], [ -11.299438, 12.082296 ], [ -11.458740, 12.076924 ], [ -11.519165, 12.447305 ], [ -11.469727, 12.758232 ], [ -11.557617, 13.143678 ], [ -11.931152, 13.427024 ], [ -12.128906, 13.998037 ], [ -12.172852, 14.620794 ], [ -11.837769, 14.801439 ], [ -11.667480, 15.390136 ], [ -11.354370, 15.411319 ], [ -10.651245, 15.135764 ], [ -10.090942, 15.331870 ], [ -9.700928, 15.268288 ], [ -9.552612, 15.490739 ], [ -5.542603, 15.506619 ], [ -5.317383, 16.204125 ], [ -5.493164, 16.325411 ], [ -6.119385, 21.943046 ], [ -6.163330, 22.350076 ], [ -0.862427, 22.350076 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.516357, 15.119856 ], [ -0.269165, 14.928862 ], [ 0.000000, 14.928862 ], [ 0.373535, 14.934170 ], [ 0.291138, 14.445319 ], [ 0.428467, 13.992706 ], [ 0.439453, 13.982046 ], [ 0.439453, 11.011297 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.102947 ], [ -0.763550, 10.941192 ], [ -1.208496, 11.011297 ], [ -2.944336, 10.962764 ], [ -2.966309, 10.395975 ], [ -2.828979, 9.644077 ], [ -3.515625, 9.903921 ], [ -3.982544, 9.866040 ], [ -4.334106, 9.611582 ], [ -4.784546, 9.822742 ], [ -4.954834, 10.152746 ], [ -5.405273, 10.374362 ], [ -5.471191, 10.951978 ], [ -5.202026, 11.377724 ], [ -5.223999, 11.716788 ], [ -4.427490, 12.543840 ], [ -4.284668, 13.229251 ], [ -4.010010, 13.475106 ], [ -3.526611, 13.341520 ], [ -3.109131, 13.544541 ], [ -2.971802, 13.800741 ], [ -2.197266, 14.248411 ], [ -2.005005, 14.562318 ], [ -1.071167, 14.976627 ], [ -0.516357, 15.119856 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ivory Coast", "sov_a3": "CIV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ivory Coast", "adm0_a3": "CIV", "geou_dif": 0, "geounit": "Ivory Coast", "gu_a3": "CIV", "su_dif": 0, "subunit": "Ivory Coast", "su_a3": "CIV", "brk_diff": 0, "name": "Côte d'Ivoire", "name_long": "Côte d'Ivoire", "brk_a3": "CIV", "brk_name": "Côte d'Ivoire", "abbrev": "I.C.", "postal": "CI", "formal_en": "Republic of Ivory Coast", "formal_fr": "Republic of Cote D'Ivoire", "name_sort": "Côte d'Ivoire", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 20617068, "gdp_md_est": 33850, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CI", "iso_a3": "CIV", "iso_n3": "384", "un_a3": "384", "wb_a2": "CI", "wb_a3": "CIV", "woe_id": -99, "adm0_a3_is": "CIV", "adm0_a3_us": "CIV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 13, "long_len": 13, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.207275, 10.525619 ], [ -6.053467, 10.098670 ], [ -5.817261, 10.223031 ], [ -5.405273, 10.374362 ], [ -4.954834, 10.152746 ], [ -4.784546, 9.822742 ], [ -4.334106, 9.611582 ], [ -3.982544, 9.866040 ], [ -3.515625, 9.903921 ], [ -2.828979, 9.644077 ], [ -2.565308, 8.222364 ], [ -2.988281, 7.384258 ], [ -3.246460, 6.255237 ], [ -2.812500, 5.391805 ], [ -2.856445, 4.997922 ], [ -3.312378, 4.986977 ], [ -4.010010, 5.183953 ], [ -4.652710, 5.173011 ], [ -5.839233, 4.997922 ], [ -6.531372, 4.707828 ], [ -7.520142, 4.340934 ], [ -7.712402, 4.368320 ], [ -7.635498, 5.189423 ], [ -7.542114, 5.315236 ], [ -7.575073, 5.708914 ], [ -7.998047, 6.129631 ], [ -8.316650, 6.195168 ], [ -8.607788, 6.468151 ], [ -8.388062, 6.915521 ], [ -8.486938, 7.400600 ], [ -8.442993, 7.689217 ], [ -8.283691, 7.689217 ], [ -8.223267, 8.124491 ], [ -8.300171, 8.320212 ], [ -8.206787, 8.456072 ], [ -7.833252, 8.581021 ], [ -8.080444, 9.378612 ], [ -8.311157, 9.790264 ], [ -8.234253, 10.131117 ], [ -8.031006, 10.206813 ], [ -7.904663, 10.298706 ], [ -7.624512, 10.147339 ], [ -6.855469, 10.141932 ], [ -6.668701, 10.433793 ], [ -6.498413, 10.412183 ], [ -6.207275, 10.525619 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.102947 ], [ 0.000000, 11.027472 ], [ 0.021973, 11.022080 ], [ 0.000000, 10.919618 ], [ -0.054932, 10.709189 ], [ 0.000000, 10.649811 ], [ 0.362549, 10.196000 ], [ 0.362549, 9.465317 ], [ 0.439453, 8.857934 ], [ 0.439453, 5.697982 ], [ 0.000000, 5.533978 ], [ -0.510864, 5.348052 ], [ -1.065674, 5.003394 ], [ -1.966553, 4.713303 ], [ -2.856445, 4.997922 ], [ -2.812500, 5.391805 ], [ -3.246460, 6.255237 ], [ -2.988281, 7.384258 ], [ -2.565308, 8.222364 ], [ -2.966309, 10.395975 ], [ -2.944336, 10.962764 ], [ -1.208496, 11.011297 ], [ -0.763550, 10.941192 ], [ -0.439453, 11.102947 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 14.934170 ], [ 0.439453, 13.982046 ], [ 0.428467, 13.992706 ], [ 0.291138, 14.445319 ], [ 0.373535, 14.934170 ], [ 0.439453, 14.934170 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.022080 ], [ 0.439453, 11.011297 ], [ 0.439453, 8.857934 ], [ 0.362549, 9.465317 ], [ 0.362549, 10.196000 ], [ 0.000000, 10.649811 ], [ -0.054932, 10.709189 ], [ 0.000000, 10.919618 ], [ 0.021973, 11.022080 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Portugal", "sov_a3": "PRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Portugal", "adm0_a3": "PRT", "geou_dif": 0, "geounit": "Portugal", "gu_a3": "PRT", "su_dif": 1, "subunit": "Portugal", "su_a3": "PR1", "brk_diff": 0, "name": "Portugal", "name_long": "Portugal", "brk_a3": "PR1", "brk_name": "Portugal", "abbrev": "Port.", "postal": "P", "formal_en": "Portuguese Republic", "name_sort": "Portugal", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 10707924, "gdp_md_est": 208627, "pop_year": -99, "lastcensus": 2011, "gdp_year": 0, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PT", "iso_a3": "PRT", "iso_n3": "620", "un_a3": "620", "wb_a2": "PT", "wb_a3": "PRT", "woe_id": -99, "adm0_a3_is": "PRT", "adm0_a3_us": "PRT", "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": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.514893, 41.310824 ], [ -6.855469, 41.112469 ], [ -6.855469, 40.979898 ], [ -6.866455, 40.333983 ], [ -7.031250, 40.187267 ], [ -7.069702, 39.715638 ], [ -7.503662, 39.631077 ], [ -7.102661, 39.031986 ], [ -7.377319, 38.376115 ], [ -7.031250, 38.078366 ], [ -7.168579, 37.805444 ], [ -7.542114, 37.431251 ], [ -7.454224, 37.099003 ], [ -7.860718, 36.840065 ], [ -8.388062, 36.980615 ], [ -8.898926, 36.870832 ], [ -8.750610, 37.653383 ], [ -8.843994, 38.268376 ], [ -9.288940, 38.358888 ], [ -9.530640, 38.741231 ], [ -9.448242, 39.393755 ], [ -9.052734, 39.757880 ], [ -8.981323, 40.162083 ], [ -8.772583, 40.763901 ], [ -8.783569, 40.979898 ], [ -8.794556, 41.186922 ], [ -8.865967, 41.310824 ], [ -6.514893, 41.310824 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 41.310824 ], [ 0.439453, 40.426042 ], [ 0.104370, 40.124291 ], [ 0.000000, 39.901309 ], [ -0.280151, 39.313050 ], [ 0.000000, 38.903858 ], [ 0.109863, 38.741231 ], [ 0.000000, 38.655488 ], [ -0.472412, 38.294248 ], [ -0.686646, 37.644685 ], [ -1.439209, 37.444335 ], [ -2.147827, 36.677231 ], [ -3.416748, 36.659606 ], [ -4.372559, 36.681636 ], [ -4.998779, 36.328403 ], [ -5.377808, 35.946883 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.520386, 36.945502 ], [ -7.454224, 37.099003 ], [ -7.542114, 37.431251 ], [ -7.168579, 37.805444 ], [ -7.031250, 38.078366 ], [ -7.377319, 38.376115 ], [ -7.102661, 39.031986 ], [ -7.503662, 39.631077 ], [ -7.069702, 39.715638 ], [ -7.031250, 40.187267 ], [ -6.866455, 40.333983 ], [ -6.855469, 40.979898 ], [ -6.855469, 41.112469 ], [ -6.514893, 41.310824 ], [ 0.439453, 41.310824 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.684692, 27.396155 ], [ -4.927368, 24.976099 ], [ -6.454468, 24.961160 ], [ -6.119385, 21.943046 ], [ -6.069946, 21.534847 ], [ -12.958374, 21.534847 ], [ -13.013306, 21.943046 ], [ -13.123169, 22.776182 ], [ -12.875977, 23.286765 ], [ -11.942139, 23.377556 ], [ -11.969604, 25.938287 ], [ -8.690186, 25.883937 ], [ -8.684692, 27.396155 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.927368, 24.976099 ], [ -1.554565, 22.796439 ], [ -0.230713, 21.943046 ], [ 0.395508, 21.534847 ], [ -6.069946, 21.534847 ], [ -6.119385, 21.943046 ], [ -6.454468, 24.961160 ], [ -4.927368, 24.976099 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -3.070679, 56.022948 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.988525, 55.776573 ], [ -1.115112, 54.626158 ], [ -0.433960, 54.466845 ], [ 0.000000, 53.673934 ], [ 0.181274, 53.327592 ], [ 0.439453, 52.975108 ], [ 0.439453, 50.767734 ], [ 0.000000, 50.771208 ], [ -0.791016, 50.778155 ], [ -2.493896, 50.502946 ], [ -2.960815, 50.698197 ], [ -3.619995, 50.229638 ], [ -4.542847, 50.341955 ], [ -5.245972, 49.961822 ], [ -5.778809, 50.162824 ], [ -4.312134, 51.210325 ], [ -3.416748, 51.426614 ], [ -4.987793, 51.594135 ], [ -5.267944, 51.991646 ], [ -4.224243, 52.301761 ], [ -4.773560, 52.842595 ], [ -4.581299, 53.497850 ], [ -3.092651, 53.406257 ], [ -2.949829, 53.985165 ], [ -3.630981, 54.616617 ], [ -4.844971, 54.791185 ], [ -5.086670, 55.062641 ], [ -4.724121, 55.509971 ], [ -5.042725, 55.776573 ], [ -5.048218, 55.785840 ], [ -5.059204, 55.776573 ], [ -5.586548, 55.313517 ], [ -5.619507, 55.776573 ], [ -5.630493, 56.022948 ], [ -3.070679, 56.022948 ] ] ], [ [ [ -6.734619, 55.175731 ], [ -5.663452, 54.556137 ], [ -6.201782, 53.868725 ], [ -6.954346, 54.075506 ], [ -7.575073, 54.062612 ], [ -7.366333, 54.597528 ], [ -7.575073, 55.131790 ], [ -6.734619, 55.175731 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 49.830896 ], [ 0.439453, 42.642041 ], [ 0.335083, 42.581400 ], [ 0.000000, 42.666281 ], [ -1.505127, 43.036776 ], [ -1.906128, 43.424999 ], [ -1.384277, 44.024422 ], [ -1.197510, 46.016039 ], [ -2.230225, 47.066380 ], [ -2.966309, 47.572820 ], [ -4.493408, 47.956824 ], [ -4.597778, 48.687334 ], [ -3.295898, 48.904449 ], [ -1.620483, 48.647428 ], [ -1.933594, 49.777717 ], [ -0.994263, 49.350177 ], [ 0.000000, 49.681847 ], [ 0.439453, 49.830896 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.981567, 43.751257 ], [ -6.756592, 43.568452 ], [ -5.416260, 43.576411 ], [ -4.350586, 43.405047 ], [ -3.521118, 43.456906 ], [ -1.906128, 43.424999 ], [ -1.505127, 43.036776 ], [ 0.000000, 42.666281 ], [ 0.335083, 42.581400 ], [ 0.439453, 42.642041 ], [ 0.439453, 40.647304 ], [ -6.860962, 40.647304 ], [ -6.855469, 40.979898 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.385052 ], [ -6.668701, 41.885921 ], [ -7.256470, 41.918629 ], [ -7.426758, 41.795888 ], [ -8.014526, 41.791793 ], [ -8.267212, 42.281373 ], [ -8.673706, 42.134895 ], [ -9.036255, 41.881831 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.028745 ], [ -7.981567, 43.751257 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -3.010254, 58.636935 ], [ -4.075928, 57.554155 ], [ -3.059692, 57.692406 ], [ -1.961060, 57.686533 ], [ -2.224731, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.988525, 55.776573 ], [ -1.796265, 55.528631 ], [ -4.746094, 55.528631 ], [ -5.042725, 55.776573 ], [ -5.048218, 55.785840 ], [ -5.059204, 55.776573 ], [ -5.344849, 55.528631 ], [ -5.603027, 55.528631 ], [ -5.619507, 55.776573 ], [ -5.646973, 56.276911 ], [ -6.152344, 56.785836 ], [ -5.789795, 57.821355 ], [ -5.015259, 58.631217 ], [ -4.213257, 58.551061 ], [ -3.010254, 58.636935 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iceland", "sov_a3": "ISL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iceland", "adm0_a3": "ISL", "geou_dif": 0, "geounit": "Iceland", "gu_a3": "ISL", "su_dif": 0, "subunit": "Iceland", "su_a3": "ISL", "brk_diff": 0, "name": "Iceland", "name_long": "Iceland", "brk_a3": "ISL", "brk_name": "Iceland", "abbrev": "Iceland", "postal": "IS", "formal_en": "Republic of Iceland", "name_sort": "Iceland", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 306694, "gdp_md_est": 12710, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IS", "iso_a3": "ISL", "iso_n3": "352", "un_a3": "352", "wb_a2": "IS", "wb_a3": "ISL", "woe_id": -99, "adm0_a3_is": "ISL", "adm0_a3_us": "ISL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.137451, 66.412352 ], [ -21.967163, 66.337505 ], [ -22.884521, 66.337505 ], [ -22.137451, 66.412352 ] ] ], [ [ [ -15.853271, 66.513260 ], [ -14.512939, 66.456275 ], [ -14.551392, 66.337505 ], [ -16.754150, 66.337505 ], [ -16.210327, 66.513260 ], [ -16.171875, 66.528580 ], [ -15.853271, 66.513260 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 22.939453, -21.534847 ], [ 22.939453, -25.443275 ], [ 22.824097, -25.497827 ], [ 22.576904, -25.977799 ], [ 22.500000, -26.027170 ], [ 22.104492, -26.278640 ], [ 21.604614, -26.725987 ], [ 20.885010, -26.824071 ], [ 20.665283, -26.475490 ], [ 20.753174, -25.864167 ], [ 20.165405, -24.916331 ], [ 19.890747, -24.766785 ], [ 19.890747, -21.846204 ], [ 20.879517, -21.810508 ], [ 20.879517, -21.534847 ], [ 22.939453, -21.534847 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Africa", "sov_a3": "ZAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Africa", "adm0_a3": "ZAF", "geou_dif": 0, "geounit": "South Africa", "gu_a3": "ZAF", "su_dif": 0, "subunit": "South Africa", "su_a3": "ZAF", "brk_diff": 0, "name": "South Africa", "name_long": "South Africa", "brk_a3": "ZAF", "brk_name": "South Africa", "abbrev": "S.Af.", "postal": "ZA", "formal_en": "Republic of South Africa", "name_sort": "South Africa", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 49052489, "gdp_md_est": 491000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ZA", "iso_a3": "ZAF", "iso_n3": "710", "un_a3": "710", "wb_a2": "ZA", "wb_a3": "ZAF", "woe_id": -99, "adm0_a3_is": "ZAF", "adm0_a3_us": "ZAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.890747, -24.766785 ], [ 20.165405, -24.916331 ], [ 20.753174, -25.864167 ], [ 20.665283, -26.475490 ], [ 20.885010, -26.824071 ], [ 21.604614, -26.725987 ], [ 22.104492, -26.278640 ], [ 22.500000, -26.027170 ], [ 22.576904, -25.977799 ], [ 22.824097, -25.497827 ], [ 22.939453, -25.443275 ], [ 22.939453, -33.906896 ], [ 22.571411, -33.861293 ], [ 22.500000, -33.888658 ], [ 21.538696, -34.257216 ], [ 20.687256, -34.415973 ], [ 20.066528, -34.791250 ], [ 19.616089, -34.818313 ], [ 19.193115, -34.461277 ], [ 18.852539, -34.443159 ], [ 18.424072, -33.993473 ], [ 18.374634, -34.134542 ], [ 18.242798, -33.865854 ], [ 18.248291, -33.280028 ], [ 17.924194, -32.606989 ], [ 18.242798, -32.426340 ], [ 18.220825, -31.658057 ], [ 17.561646, -30.722949 ], [ 17.061768, -29.873992 ], [ 16.342163, -28.574874 ], [ 16.820068, -28.081674 ], [ 17.215576, -28.352734 ], [ 17.385864, -28.782104 ], [ 17.830811, -28.854296 ], [ 18.462524, -29.041763 ], [ 19.000854, -28.969701 ], [ 19.890747, -28.459033 ], [ 19.890747, -24.766785 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.808838, 0.439449 ], [ 17.825317, 0.291136 ], [ 17.687988, 0.000000 ], [ 17.660522, -0.054932 ], [ 17.638550, -0.422970 ], [ 17.523193, -0.741556 ], [ 16.864014, -1.224882 ], [ 16.402588, -1.735574 ], [ 15.968628, -2.707122 ], [ 16.001587, -3.529869 ], [ 15.748901, -3.853293 ], [ 15.166626, -4.340934 ], [ 14.578857, -4.965088 ], [ 14.205322, -4.789943 ], [ 14.144897, -4.505238 ], [ 13.595581, -4.499762 ], [ 13.255005, -4.877521 ], [ 12.991333, -4.778995 ], [ 12.617798, -4.434044 ], [ 12.315674, -4.603803 ], [ 11.914673, -5.036227 ], [ 11.090698, -3.973861 ], [ 11.854248, -3.425692 ], [ 11.475220, -2.761991 ], [ 11.815796, -2.509573 ], [ 12.491455, -2.388834 ], [ 12.573853, -1.944207 ], [ 13.106689, -2.427252 ], [ 13.991089, -2.465669 ], [ 14.298706, -1.993616 ], [ 14.425049, -1.329226 ], [ 14.315186, -0.549308 ], [ 13.870239, 0.000000 ], [ 13.842773, 0.043945 ], [ 13.991089, 0.439449 ], [ 17.808838, 0.439449 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 0.439449 ], [ 22.939453, -10.989728 ], [ 22.835083, -11.016689 ], [ 22.500000, -10.995120 ], [ 22.401123, -10.989728 ], [ 22.153931, -11.081385 ], [ 22.203369, -9.893099 ], [ 21.873779, -9.519497 ], [ 21.796875, -8.906780 ], [ 21.945190, -8.303906 ], [ 21.741943, -7.917793 ], [ 21.725464, -7.286190 ], [ 20.511475, -7.297088 ], [ 20.599365, -6.937333 ], [ 20.088501, -6.942786 ], [ 20.033569, -7.111795 ], [ 19.412842, -7.155400 ], [ 19.165649, -7.732765 ], [ 19.011841, -7.983078 ], [ 18.462524, -7.841615 ], [ 18.132935, -7.983078 ], [ 17.468262, -8.064669 ], [ 16.858521, -7.220800 ], [ 16.572876, -6.620957 ], [ 16.325684, -5.872868 ], [ 13.370361, -5.861939 ], [ 13.024292, -5.982144 ], [ 12.733154, -5.960290 ], [ 12.321167, -6.096860 ], [ 12.178345, -5.785432 ], [ 12.436523, -5.681584 ], [ 12.463989, -5.244128 ], [ 12.628784, -4.986977 ], [ 12.991333, -4.778995 ], [ 13.255005, -4.877521 ], [ 13.595581, -4.499762 ], [ 14.144897, -4.505238 ], [ 14.205322, -4.789943 ], [ 14.578857, -4.965088 ], [ 15.166626, -4.340934 ], [ 15.748901, -3.853293 ], [ 16.001587, -3.529869 ], [ 15.968628, -2.707122 ], [ 16.402588, -1.735574 ], [ 16.864014, -1.224882 ], [ 17.523193, -0.741556 ], [ 17.638550, -0.422970 ], [ 17.660522, -0.054932 ], [ 17.687988, 0.000000 ], [ 17.825317, 0.291136 ], [ 17.808838, 0.439449 ], [ 22.939453, 0.439449 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Namibia", "sov_a3": "NAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Namibia", "adm0_a3": "NAM", "geou_dif": 0, "geounit": "Namibia", "gu_a3": "NAM", "su_dif": 0, "subunit": "Namibia", "su_a3": "NAM", "brk_diff": 0, "name": "Namibia", "name_long": "Namibia", "brk_a3": "NAM", "brk_name": "Namibia", "abbrev": "Nam.", "postal": "NA", "formal_en": "Republic of Namibia", "name_sort": "Namibia", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 2108665, "gdp_md_est": 13250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "NA", "iso_a3": "NAM", "iso_n3": "516", "un_a3": "516", "wb_a2": "NA", "wb_a3": "NAM", "woe_id": -99, "adm0_a3_is": "NAM", "adm0_a3_us": "NAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.810059, -16.941215 ], [ 13.458252, -16.967487 ], [ 14.057007, -17.418787 ], [ 14.205322, -17.350638 ], [ 18.259277, -17.308688 ], [ 18.951416, -17.785305 ], [ 21.373901, -17.926476 ], [ 22.500000, -17.680662 ], [ 22.939453, -17.581194 ], [ 22.939453, -17.926476 ], [ 22.500000, -18.025751 ], [ 21.654053, -18.218916 ], [ 20.906982, -18.250220 ], [ 20.879517, -21.810508 ], [ 19.890747, -21.846204 ], [ 19.890747, -22.350076 ], [ 14.309692, -22.350076 ], [ 14.254761, -22.111088 ], [ 14.095459, -21.943046 ], [ 13.864746, -21.698265 ], [ 13.348389, -20.869078 ], [ 12.826538, -19.668453 ], [ 12.606812, -19.041349 ], [ 11.793823, -18.067535 ], [ 11.733398, -17.298199 ], [ 12.211304, -17.109293 ], [ 12.810059, -16.941215 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, -12.897489 ], [ 22.939453, -12.902844 ], [ 22.939453, -17.256236 ], [ 22.560425, -16.893916 ], [ 22.500000, -16.820316 ], [ 21.884766, -16.077486 ], [ 21.928711, -12.897489 ], [ 22.500000, -12.897489 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 15.061515 ], [ -0.269165, 14.928862 ], [ 0.000000, 14.928862 ], [ 0.373535, 14.934170 ], [ 0.291138, 14.445319 ], [ 0.428467, 13.992706 ], [ 0.988770, 13.336175 ], [ 1.021729, 12.854649 ], [ 2.175293, 12.629618 ], [ 2.153320, 11.942601 ], [ 1.933594, 11.641476 ], [ 1.444702, 11.549998 ], [ 1.241455, 11.113727 ], [ 0.895386, 11.000512 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.102947 ], [ -0.439453, 15.061515 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.102947 ], [ 0.000000, 11.027472 ], [ 0.021973, 11.022080 ], [ 0.000000, 10.919618 ], [ -0.054932, 10.709189 ], [ 0.000000, 10.649811 ], [ 0.362549, 10.196000 ], [ 0.362549, 9.465317 ], [ 0.455933, 8.678779 ], [ 0.708618, 8.314777 ], [ 0.488892, 7.416942 ], [ 0.565796, 6.915521 ], [ 0.834961, 6.282539 ], [ 1.054688, 5.932972 ], [ 0.000000, 5.533978 ], [ -0.439453, 5.369929 ], [ -0.439453, 11.102947 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 22.350076 ], [ 22.939453, 20.014645 ], [ 22.500000, 20.226120 ], [ 19.846802, 21.499075 ], [ 18.918457, 21.943046 ], [ 18.072510, 22.350076 ], [ 22.939453, 22.350076 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.930420, 22.350076 ], [ 14.996338, 21.943046 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.048618 ], [ 15.485229, 20.730428 ], [ 15.902710, 20.390974 ], [ 15.682983, 19.957860 ], [ 15.298462, 17.931702 ], [ 15.243530, 16.630929 ], [ 13.969116, 15.686510 ], [ 13.535156, 14.370834 ], [ 13.952637, 13.998037 ], [ 13.952637, 13.357554 ], [ 14.595337, 13.330830 ], [ 14.490967, 12.860004 ], [ 14.210815, 12.806445 ], [ 14.177856, 12.484850 ], [ 13.991089, 12.463396 ], [ 13.315430, 13.560562 ], [ 13.079224, 13.597939 ], [ 12.299194, 13.042021 ], [ 11.524658, 13.330830 ], [ 10.986328, 13.389620 ], [ 10.700684, 13.250640 ], [ 10.112915, 13.277373 ], [ 9.519653, 12.854649 ], [ 9.014282, 12.827870 ], [ 7.800293, 13.346865 ], [ 7.327881, 13.100880 ], [ 6.817017, 13.116930 ], [ 6.443481, 13.496473 ], [ 5.438232, 13.870080 ], [ 4.367065, 13.752725 ], [ 4.103394, 13.533860 ], [ 3.966064, 12.956383 ], [ 3.680420, 12.554564 ], [ 3.609009, 11.662996 ], [ 2.845459, 12.238023 ], [ 2.488403, 12.238023 ], [ 2.153320, 11.942601 ], [ 2.175293, 12.629618 ], [ 1.021729, 12.854649 ], [ 0.988770, 13.336175 ], [ 0.428467, 13.992706 ], [ 0.291138, 14.445319 ], [ 0.373535, 14.934170 ], [ 1.010742, 14.971320 ], [ 1.384277, 15.326572 ], [ 2.746582, 15.411319 ], [ 3.636475, 15.570128 ], [ 3.718872, 16.188300 ], [ 4.268188, 16.857120 ], [ 4.262695, 19.155547 ], [ 5.674438, 19.606369 ], [ 8.569336, 21.570611 ], [ 9.244995, 21.943046 ], [ 9.975586, 22.350076 ], [ 14.930420, 22.350076 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Benin", "sov_a3": "BEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Benin", "adm0_a3": "BEN", "geou_dif": 0, "geounit": "Benin", "gu_a3": "BEN", "su_dif": 0, "subunit": "Benin", "su_a3": "BEN", "brk_diff": 0, "name": "Benin", "name_long": "Benin", "brk_a3": "BEN", "brk_name": "Benin", "abbrev": "Benin", "postal": "BJ", "formal_en": "Republic of Benin", "name_sort": "Benin", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 8791832, "gdp_md_est": 12830, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BJ", "iso_a3": "BEN", "iso_n3": "204", "un_a3": "204", "wb_a2": "BJ", "wb_a3": "BEN", "woe_id": -99, "adm0_a3_is": "BEN", "adm0_a3_us": "BEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.845459, 12.238023 ], [ 3.609009, 11.662996 ], [ 3.570557, 11.329253 ], [ 3.795776, 10.736175 ], [ 3.598022, 10.336536 ], [ 3.702393, 10.066220 ], [ 3.218994, 9.449062 ], [ 2.911377, 9.140063 ], [ 2.719116, 8.510403 ], [ 2.746582, 7.874265 ], [ 2.691650, 6.260697 ], [ 1.862183, 6.146016 ], [ 1.614990, 6.833716 ], [ 1.664429, 9.129216 ], [ 1.461182, 9.335252 ], [ 1.422729, 9.828154 ], [ 0.769043, 10.471607 ], [ 0.895386, 11.000512 ], [ 1.241455, 11.113727 ], [ 1.444702, 11.549998 ], [ 1.933594, 11.641476 ], [ 2.153320, 11.942601 ], [ 2.488403, 12.238023 ], [ 2.845459, 12.238023 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.438232, 13.870080 ], [ 6.443481, 13.496473 ], [ 6.817017, 13.116930 ], [ 7.327881, 13.100880 ], [ 7.800293, 13.346865 ], [ 9.014282, 12.827870 ], [ 9.519653, 12.854649 ], [ 10.112915, 13.277373 ], [ 10.700684, 13.250640 ], [ 10.986328, 13.389620 ], [ 11.524658, 13.330830 ], [ 12.299194, 13.042021 ], [ 13.079224, 13.597939 ], [ 13.315430, 13.560562 ], [ 13.991089, 12.463396 ], [ 14.177856, 12.484850 ], [ 14.573364, 12.087667 ], [ 14.463501, 11.904979 ], [ 14.414062, 11.576907 ], [ 13.568115, 10.800933 ], [ 13.304443, 10.163560 ], [ 13.167114, 9.644077 ], [ 12.952881, 9.421968 ], [ 12.749634, 8.722218 ], [ 12.216797, 8.309341 ], [ 12.062988, 7.803521 ], [ 11.837769, 7.400600 ], [ 11.744385, 6.986407 ], [ 11.057739, 6.648239 ], [ 10.491943, 7.057282 ], [ 10.112915, 7.040927 ], [ 9.519653, 6.457234 ], [ 9.228516, 6.446318 ], [ 8.756104, 5.484768 ], [ 8.497925, 4.773521 ], [ 7.459717, 4.412137 ], [ 7.080688, 4.466904 ], [ 6.696167, 4.242334 ], [ 5.894165, 4.264246 ], [ 5.361328, 4.888467 ], [ 5.031738, 5.615986 ], [ 4.323120, 6.271618 ], [ 3.570557, 6.260697 ], [ 2.691650, 6.260697 ], [ 2.746582, 7.874265 ], [ 2.719116, 8.510403 ], [ 2.911377, 9.140063 ], [ 3.218994, 9.449062 ], [ 3.702393, 10.066220 ], [ 3.598022, 10.336536 ], [ 3.795776, 10.736175 ], [ 3.570557, 11.329253 ], [ 3.609009, 11.662996 ], [ 3.680420, 12.554564 ], [ 3.966064, 12.956383 ], [ 4.103394, 13.533860 ], [ 4.367065, 13.752725 ], [ 5.438232, 13.870080 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Equatorial Guinea", "sov_a3": "GNQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Equatorial Guinea", "adm0_a3": "GNQ", "geou_dif": 0, "geounit": "Equatorial Guinea", "gu_a3": "GNQ", "su_dif": 0, "subunit": "Equatorial Guinea", "su_a3": "GNQ", "brk_diff": 0, "name": "Eq. Guinea", "name_long": "Equatorial Guinea", "brk_a3": "GNQ", "brk_name": "Eq. Guinea", "abbrev": "Eq. G.", "postal": "GQ", "formal_en": "Republic of Equatorial Guinea", "name_sort": "Equatorial Guinea", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 650702, "gdp_md_est": 14060, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "7. Least developed region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GQ", "iso_a3": "GNQ", "iso_n3": "226", "un_a3": "226", "wb_a2": "GQ", "wb_a3": "GNQ", "woe_id": -99, "adm0_a3_is": "GNQ", "adm0_a3_us": "GNQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 17, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.645996, 2.284551 ], [ 11.271973, 2.262595 ], [ 11.282959, 1.060120 ], [ 9.827271, 1.071105 ], [ 9.492188, 1.010690 ], [ 9.305420, 1.164471 ], [ 9.645996, 2.284551 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.490967, 12.860004 ], [ 14.891968, 12.221918 ], [ 14.957886, 11.560762 ], [ 14.919434, 10.892648 ], [ 15.463257, 9.985081 ], [ 14.908447, 9.995901 ], [ 14.622803, 9.925566 ], [ 14.166870, 10.022948 ], [ 13.952637, 9.552000 ], [ 14.540405, 8.966471 ], [ 14.979858, 8.798225 ], [ 15.117188, 8.385431 ], [ 15.435791, 7.694661 ], [ 15.276489, 7.422389 ], [ 14.771118, 6.413566 ], [ 14.534912, 6.227934 ], [ 14.458008, 5.451959 ], [ 14.556885, 5.030755 ], [ 14.474487, 4.735201 ], [ 14.946899, 4.214943 ], [ 15.034790, 3.853293 ], [ 15.402832, 3.337954 ], [ 15.858765, 3.014356 ], [ 15.902710, 2.558963 ], [ 16.012573, 2.268084 ], [ 15.935669, 1.730084 ], [ 15.144653, 1.966167 ], [ 14.337158, 2.229662 ], [ 13.073730, 2.268084 ], [ 12.947388, 2.322972 ], [ 12.354126, 2.196727 ], [ 11.749878, 2.328460 ], [ 11.271973, 2.262595 ], [ 9.645996, 2.284551 ], [ 9.794312, 3.074695 ], [ 9.404297, 3.738190 ], [ 8.942871, 3.908099 ], [ 8.739624, 4.357366 ], [ 8.486938, 4.499762 ], [ 8.497925, 4.773521 ], [ 8.756104, 5.484768 ], [ 9.228516, 6.446318 ], [ 9.519653, 6.457234 ], [ 10.112915, 7.040927 ], [ 10.491943, 7.057282 ], [ 11.057739, 6.648239 ], [ 11.744385, 6.986407 ], [ 11.837769, 7.400600 ], [ 12.062988, 7.803521 ], [ 12.216797, 8.309341 ], [ 12.749634, 8.722218 ], [ 12.952881, 9.421968 ], [ 13.167114, 9.644077 ], [ 13.304443, 10.163560 ], [ 13.568115, 10.800933 ], [ 14.414062, 11.576907 ], [ 14.463501, 11.904979 ], [ 14.573364, 12.087667 ], [ 14.177856, 12.484850 ], [ 14.210815, 12.806445 ], [ 14.490967, 12.860004 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.862549, 11.146066 ], [ 22.939453, 10.860281 ], [ 22.939453, 4.691404 ], [ 22.840576, 4.713303 ], [ 22.703247, 4.636655 ], [ 22.500000, 4.225900 ], [ 22.401123, 4.034138 ], [ 21.654053, 4.225900 ], [ 20.923462, 4.324501 ], [ 20.286255, 4.696879 ], [ 19.467773, 5.036227 ], [ 18.929443, 4.713303 ], [ 18.539429, 4.203986 ], [ 18.451538, 3.507938 ], [ 17.808838, 3.562765 ], [ 17.127686, 3.732708 ], [ 16.534424, 3.200848 ], [ 16.012573, 2.268084 ], [ 15.902710, 2.558963 ], [ 15.858765, 3.014356 ], [ 15.402832, 3.337954 ], [ 15.034790, 3.853293 ], [ 14.946899, 4.214943 ], [ 14.474487, 4.735201 ], [ 14.556885, 5.030755 ], [ 14.458008, 5.451959 ], [ 14.534912, 6.227934 ], [ 14.771118, 6.413566 ], [ 15.276489, 7.422389 ], [ 16.105957, 7.498643 ], [ 16.287231, 7.754537 ], [ 16.452026, 7.738208 ], [ 16.704712, 7.509535 ], [ 17.962646, 7.896030 ], [ 18.385620, 8.282163 ], [ 18.907471, 8.635334 ], [ 18.808594, 8.988175 ], [ 19.088745, 9.074976 ], [ 20.055542, 9.015302 ], [ 21.000366, 9.476154 ], [ 21.719971, 10.568822 ], [ 22.230835, 10.973550 ], [ 22.500000, 11.049038 ], [ 22.862549, 11.146066 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Gabon", "sov_a3": "GAB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gabon", "adm0_a3": "GAB", "geou_dif": 0, "geounit": "Gabon", "gu_a3": "GAB", "su_dif": 0, "subunit": "Gabon", "su_a3": "GAB", "brk_diff": 0, "name": "Gabon", "name_long": "Gabon", "brk_a3": "GAB", "brk_name": "Gabon", "abbrev": "Gabon", "postal": "GA", "formal_en": "Gabonese Republic", "name_sort": "Gabon", "mapcolor7": 6, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 1514993, "gdp_md_est": 21110, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "GA", "iso_a3": "GAB", "iso_n3": "266", "un_a3": "266", "wb_a2": "GA", "wb_a3": "GAB", "woe_id": -99, "adm0_a3_is": "GAB", "adm0_a3_us": "GAB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": 3, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.749878, 2.328460 ], [ 12.354126, 2.196727 ], [ 12.947388, 2.322972 ], [ 13.073730, 2.268084 ], [ 13.002319, 1.834403 ], [ 13.282471, 1.318243 ], [ 14.024048, 1.400617 ], [ 14.271240, 1.197423 ], [ 13.842773, 0.043945 ], [ 13.870239, 0.000000 ], [ 14.221802, -0.439449 ], [ 9.052734, -0.439449 ], [ 9.201050, 0.000000 ], [ 9.288940, 0.269164 ], [ 9.492188, 1.010690 ], [ 9.827271, 1.071105 ], [ 11.282959, 1.060120 ], [ 11.271973, 2.262595 ], [ 11.749878, 2.328460 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.127686, 3.732708 ], [ 17.808838, 3.562765 ], [ 18.451538, 3.507938 ], [ 18.391113, 2.904639 ], [ 18.088989, 2.366880 ], [ 17.896729, 1.746556 ], [ 17.770386, 0.856902 ], [ 17.825317, 0.291136 ], [ 17.687988, 0.000000 ], [ 17.660522, -0.054932 ], [ 17.633057, -0.439449 ], [ 14.221802, -0.439449 ], [ 13.870239, 0.000000 ], [ 13.842773, 0.043945 ], [ 14.271240, 1.197423 ], [ 14.024048, 1.400617 ], [ 13.282471, 1.318243 ], [ 13.002319, 1.834403 ], [ 13.073730, 2.268084 ], [ 14.337158, 2.229662 ], [ 15.144653, 1.966167 ], [ 15.935669, 1.730084 ], [ 16.012573, 2.268084 ], [ 16.534424, 3.200848 ], [ 17.127686, 3.732708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.467773, 5.036227 ], [ 20.286255, 4.696879 ], [ 20.923462, 4.324501 ], [ 21.654053, 4.225900 ], [ 22.401123, 4.034138 ], [ 22.500000, 4.225900 ], [ 22.703247, 4.636655 ], [ 22.840576, 4.713303 ], [ 22.939453, 4.691404 ], [ 22.939453, -0.439449 ], [ 17.633057, -0.439449 ], [ 17.660522, -0.054932 ], [ 17.687988, 0.000000 ], [ 17.825317, 0.291136 ], [ 17.770386, 0.856902 ], [ 17.896729, 1.746556 ], [ 18.088989, 2.366880 ], [ 18.391113, 2.904639 ], [ 18.451538, 3.507938 ], [ 18.539429, 4.203986 ], [ 18.929443, 4.713303 ], [ 19.467773, 5.036227 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 22.080550 ], [ 0.395508, 21.534847 ], [ -0.439453, 21.534847 ], [ -0.439453, 22.080550 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.518188, 38.233865 ], [ 15.155640, 37.444335 ], [ 15.309448, 37.138425 ], [ 15.095215, 36.624345 ], [ 14.331665, 36.998166 ], [ 13.826294, 37.107765 ], [ 12.425537, 37.614231 ], [ 12.568359, 38.130236 ], [ 13.738403, 38.035112 ], [ 15.518188, 38.233865 ] ] ], [ [ [ 16.457520, 41.310824 ], [ 17.265015, 40.979898 ], [ 17.517700, 40.880295 ], [ 18.374634, 40.359103 ], [ 18.479004, 40.170479 ], [ 18.292236, 39.812756 ], [ 17.737427, 40.279526 ], [ 16.869507, 40.442767 ], [ 16.446533, 39.795876 ], [ 17.166138, 39.427707 ], [ 17.050781, 38.903858 ], [ 16.633301, 38.843986 ], [ 16.100464, 37.987504 ], [ 15.682983, 37.909534 ], [ 15.682983, 38.216604 ], [ 15.891724, 38.754083 ], [ 16.105957, 38.967951 ], [ 15.715942, 39.546412 ], [ 15.408325, 40.048643 ], [ 14.996338, 40.174676 ], [ 14.699707, 40.605612 ], [ 14.057007, 40.788860 ], [ 13.848267, 40.979898 ], [ 13.623047, 41.191056 ], [ 12.886963, 41.257162 ], [ 12.788086, 41.310824 ], [ 16.457520, 41.310824 ] ] ], [ [ [ 9.206543, 41.211722 ], [ 9.404297, 40.979898 ], [ 9.805298, 40.501269 ], [ 9.667969, 39.181175 ], [ 9.212036, 39.240763 ], [ 8.805542, 38.908133 ], [ 8.426514, 39.172659 ], [ 8.388062, 40.380028 ], [ 8.157349, 40.950863 ], [ 8.706665, 40.901058 ], [ 8.838501, 40.979898 ], [ 9.206543, 41.211722 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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.791138, 41.310824 ], [ 22.758179, 41.306698 ], [ 22.593384, 41.133159 ], [ 22.055054, 41.153842 ], [ 21.758423, 40.979898 ], [ 21.670532, 40.934265 ], [ 21.016846, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.087632 ], [ 20.527954, 41.310824 ], [ 22.791138, 41.310824 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.327881, 37.120906 ], [ 7.734375, 36.888408 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.434542 ], [ 8.371582, 35.483038 ], [ 8.140869, 34.655804 ], [ 7.520142, 34.098159 ], [ 7.608032, 33.344296 ], [ 8.426514, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.105843 ], [ 9.481201, 30.311246 ], [ 9.805298, 29.425245 ], [ 9.854736, 28.960089 ], [ 9.678955, 28.144660 ], [ 9.755859, 27.688392 ], [ 9.624023, 27.142257 ], [ 9.711914, 26.514820 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.368846 ], [ 9.948120, 24.941238 ], [ 10.299683, 24.382124 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.101633 ], [ 11.997070, 23.473324 ], [ 9.244995, 21.943046 ], [ 8.525391, 21.534847 ], [ 0.395508, 21.534847 ], [ -0.439453, 22.080550 ], [ -0.439453, 35.840082 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.973561 ], [ 0.499878, 36.301845 ], [ 1.466675, 36.606709 ], [ 3.158569, 36.787291 ], [ 4.812012, 36.866438 ], [ 5.317383, 36.716871 ], [ 6.256714, 37.112146 ], [ 7.327881, 37.120906 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.486206, 33.137551 ], [ 12.661743, 32.796510 ], [ 13.079224, 32.879587 ], [ 13.914185, 32.713355 ], [ 15.243530, 32.268555 ], [ 15.710449, 31.377089 ], [ 16.611328, 31.184609 ], [ 18.017578, 30.765439 ], [ 19.083252, 30.268556 ], [ 19.572144, 30.529145 ], [ 20.050049, 30.987028 ], [ 19.819336, 31.756196 ], [ 20.132446, 32.240683 ], [ 20.852051, 32.708733 ], [ 21.538696, 32.847289 ], [ 22.500000, 32.699489 ], [ 22.895508, 32.639375 ], [ 22.939453, 32.583849 ], [ 22.939453, 21.534847 ], [ 19.764404, 21.534847 ], [ 18.918457, 21.943046 ], [ 15.858765, 23.412847 ], [ 14.848022, 22.867318 ], [ 14.139404, 22.492257 ], [ 13.579102, 23.044353 ], [ 11.997070, 23.473324 ], [ 11.557617, 24.101633 ], [ 10.766602, 24.567108 ], [ 10.299683, 24.382124 ], [ 9.948120, 24.941238 ], [ 9.909668, 25.368846 ], [ 9.316406, 26.096255 ], [ 9.711914, 26.514820 ], [ 9.624023, 27.142257 ], [ 9.755859, 27.688392 ], [ 9.678955, 28.144660 ], [ 9.854736, 28.960089 ], [ 9.805298, 29.425245 ], [ 9.481201, 30.311246 ], [ 9.964600, 30.543339 ], [ 10.052490, 30.963479 ], [ 9.948120, 31.377089 ], [ 10.634766, 31.765537 ], [ 10.942383, 32.082575 ], [ 11.431274, 32.370683 ], [ 11.486206, 33.137551 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.997070, 23.473324 ], [ 13.579102, 23.044353 ], [ 14.139404, 22.492257 ], [ 14.848022, 22.867318 ], [ 14.996338, 21.943046 ], [ 15.056763, 21.534847 ], [ 8.525391, 21.534847 ], [ 9.244995, 21.943046 ], [ 11.997070, 23.473324 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "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": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 41.310824 ], [ 22.939453, 40.354917 ], [ 22.813110, 40.476203 ], [ 22.620850, 40.258569 ], [ 22.846069, 39.660685 ], [ 22.939453, 39.576056 ], [ 22.939453, 37.335224 ], [ 22.774658, 37.309014 ], [ 22.939453, 36.923548 ], [ 22.939453, 36.421282 ], [ 22.500000, 36.412442 ], [ 22.489014, 36.412442 ], [ 21.665039, 36.848857 ], [ 21.291504, 37.649034 ], [ 21.115723, 38.311491 ], [ 20.725708, 38.771216 ], [ 20.214844, 39.342794 ], [ 20.148926, 39.626846 ], [ 20.610352, 40.111689 ], [ 20.670776, 40.438586 ], [ 20.994873, 40.580585 ], [ 21.016846, 40.842905 ], [ 21.670532, 40.934265 ], [ 21.758423, 40.979898 ], [ 22.055054, 41.153842 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.791138, 41.310824 ], [ 22.939453, 41.310824 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.387817, 43.012681 ], [ 9.558105, 42.155259 ], [ 9.228516, 41.380930 ], [ 8.772583, 41.586688 ], [ 8.541870, 42.256984 ], [ 8.745117, 42.629917 ], [ 9.387817, 43.012681 ] ] ], [ [ [ 2.510376, 51.151786 ], [ 2.653198, 50.798991 ], [ 3.120117, 50.781629 ], [ 3.587036, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.795532, 49.986552 ], [ 5.668945, 49.532339 ], [ 5.894165, 49.443129 ], [ 6.185303, 49.464554 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.019859 ], [ 7.591553, 48.334343 ], [ 7.465210, 47.620975 ], [ 7.190552, 47.450380 ], [ 6.734619, 47.543164 ], [ 6.767578, 47.290408 ], [ 6.036987, 46.728566 ], [ 6.020508, 46.274834 ], [ 6.498413, 46.430285 ], [ 6.838989, 45.993145 ], [ 6.800537, 45.710015 ], [ 7.091675, 45.336702 ], [ 6.745605, 45.030833 ], [ 7.003784, 44.257003 ], [ 7.547607, 44.130971 ], [ 7.432251, 43.695680 ], [ 6.525879, 43.129052 ], [ 4.553833, 43.401056 ], [ 3.098145, 43.076913 ], [ 2.982788, 42.476149 ], [ 1.823730, 42.346365 ], [ 0.697632, 42.799431 ], [ 0.335083, 42.581400 ], [ 0.000000, 42.666281 ], [ -0.439453, 42.775243 ], [ -0.439453, 49.535904 ], [ 0.000000, 49.681847 ], [ 1.334839, 50.127622 ], [ 1.636963, 50.948045 ], [ 2.510376, 51.151786 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.697632, 42.799431 ], [ 1.823730, 42.346365 ], [ 2.982788, 42.476149 ], [ 3.037720, 41.894100 ], [ 2.087402, 41.228249 ], [ 0.807495, 41.017211 ], [ 0.796509, 40.979898 ], [ 0.719604, 40.680638 ], [ 0.686646, 40.647304 ], [ -0.439453, 40.647304 ], [ -0.439453, 42.775243 ], [ 0.000000, 42.666281 ], [ 0.335083, 42.581400 ], [ 0.697632, 42.799431 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.425537, 56.022948 ], [ 12.579346, 55.776573 ], [ 12.689209, 55.612487 ], [ 12.084961, 54.800685 ], [ 11.041260, 55.366625 ], [ 10.903931, 55.776573 ], [ 10.898438, 55.782751 ], [ 11.975098, 56.022948 ], [ 12.425537, 56.022948 ] ] ], [ [ [ 10.200806, 56.022948 ], [ 9.953613, 55.776573 ], [ 9.645996, 55.472627 ], [ 9.920654, 54.983918 ], [ 9.277954, 54.832336 ], [ 8.525391, 54.965002 ], [ 8.118896, 55.519302 ], [ 8.107910, 55.776573 ], [ 8.102417, 56.022948 ], [ 10.200806, 56.022948 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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": "Polygon", "coordinates": [ [ [ 14.534912, 56.022948 ], [ 14.359131, 55.776573 ], [ 14.095459, 55.410307 ], [ 12.941895, 55.363503 ], [ 12.799072, 55.776573 ], [ 12.716675, 56.022948 ], [ 14.534912, 56.022948 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Belgium", "sov_a3": "BEL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belgium", "adm0_a3": "BEL", "geou_dif": 0, "geounit": "Belgium", "gu_a3": "BEL", "su_dif": 0, "subunit": "Belgium", "su_a3": "BEL", "brk_diff": 0, "name": "Belgium", "name_long": "Belgium", "brk_a3": "BEL", "brk_name": "Belgium", "abbrev": "Belg.", "postal": "B", "formal_en": "Kingdom of Belgium", "name_sort": "Belgium", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 10414336, "gdp_md_est": 389300, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "BE", "iso_a3": "BEL", "iso_n3": "056", "un_a3": "056", "wb_a2": "BE", "wb_a3": "BEL", "woe_id": -99, "adm0_a3_is": "BEL", "adm0_a3_us": "BEL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.971313, 51.477962 ], [ 5.603027, 51.037940 ], [ 6.152344, 50.805935 ], [ 6.042480, 50.131143 ], [ 5.778809, 50.092393 ], [ 5.668945, 49.532339 ], [ 4.795532, 49.986552 ], [ 4.284668, 49.908787 ], [ 3.587036, 50.380502 ], [ 3.120117, 50.781629 ], [ 2.653198, 50.798991 ], [ 2.510376, 51.151786 ], [ 3.312378, 51.347770 ], [ 4.042969, 51.268789 ], [ 4.971313, 51.477962 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Luxembourg", "sov_a3": "LUX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Luxembourg", "adm0_a3": "LUX", "geou_dif": 0, "geounit": "Luxembourg", "gu_a3": "LUX", "su_dif": 0, "subunit": "Luxembourg", "su_a3": "LUX", "brk_diff": 0, "name": "Luxembourg", "name_long": "Luxembourg", "brk_a3": "LUX", "brk_name": "Luxembourg", "abbrev": "Lux.", "postal": "L", "formal_en": "Grand Duchy of Luxembourg", "name_sort": "Luxembourg", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 491775, "gdp_md_est": 39370, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "LU", "iso_a3": "LUX", "iso_n3": "442", "un_a3": "442", "wb_a2": "LU", "wb_a3": "LUX", "woe_id": -99, "adm0_a3_is": "LUX", "adm0_a3_us": "LUX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.042480, 50.131143 ], [ 6.240234, 49.905249 ], [ 6.185303, 49.464554 ], [ 5.894165, 49.443129 ], [ 5.668945, 49.532339 ], [ 5.778809, 50.092393 ], [ 6.042480, 50.131143 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.920654, 54.983918 ], [ 9.937134, 54.597528 ], [ 10.947876, 54.364558 ], [ 10.936890, 54.010997 ], [ 11.953125, 54.197797 ], [ 12.513428, 54.473230 ], [ 13.645020, 54.078729 ], [ 14.117432, 53.758454 ], [ 14.348145, 53.248782 ], [ 14.073486, 52.981723 ], [ 14.436035, 52.626395 ], [ 14.683228, 52.093008 ], [ 14.606323, 51.747439 ], [ 15.012817, 51.106971 ], [ 14.567871, 51.003386 ], [ 14.304199, 51.117317 ], [ 14.051514, 50.927276 ], [ 13.337402, 50.736455 ], [ 12.963867, 50.485474 ], [ 12.238770, 50.268277 ], [ 12.414551, 49.972422 ], [ 12.518921, 49.550162 ], [ 13.029785, 49.307217 ], [ 13.595581, 48.879167 ], [ 13.238525, 48.418264 ], [ 12.881470, 48.290503 ], [ 13.024292, 47.639485 ], [ 12.930908, 47.468950 ], [ 12.617798, 47.672786 ], [ 12.139893, 47.706065 ], [ 11.425781, 47.524620 ], [ 10.541382, 47.569114 ], [ 10.398560, 47.305310 ], [ 9.893188, 47.580231 ], [ 9.591064, 47.528329 ], [ 8.519897, 47.831596 ], [ 8.316650, 47.617273 ], [ 7.465210, 47.620975 ], [ 7.591553, 48.334343 ], [ 8.096924, 49.019859 ], [ 6.657715, 49.203243 ], [ 6.185303, 49.464554 ], [ 6.240234, 49.905249 ], [ 6.042480, 50.131143 ], [ 6.152344, 50.805935 ], [ 5.987549, 51.852746 ], [ 6.586304, 51.852746 ], [ 6.838989, 52.231164 ], [ 7.091675, 53.146770 ], [ 6.904907, 53.484777 ], [ 7.097168, 53.696706 ], [ 7.932129, 53.748711 ], [ 8.118896, 53.530513 ], [ 8.800049, 54.023907 ], [ 8.569336, 54.396550 ], [ 8.525391, 54.965002 ], [ 9.277954, 54.832336 ], [ 9.920654, 54.983918 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Czech Republic", "sov_a3": "CZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Czech Republic", "adm0_a3": "CZE", "geou_dif": 0, "geounit": "Czech Republic", "gu_a3": "CZE", "su_dif": 0, "subunit": "Czech Republic", "su_a3": "CZE", "brk_diff": 0, "name": "Czech Rep.", "name_long": "Czech Republic", "brk_a3": "CZE", "brk_name": "Czech Rep.", "abbrev": "Cz. Rep.", "postal": "CZ", "formal_en": "Czech Republic", "name_sort": "Czech Republic", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 10211904, "gdp_md_est": 265200, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CZ", "iso_a3": "CZE", "iso_n3": "203", "un_a3": "203", "wb_a2": "CZ", "wb_a3": "CZE", "woe_id": -99, "adm0_a3_is": "CZE", "adm0_a3_us": "CZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 14, "abbrev_len": 8, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.304199, 51.117317 ], [ 14.567871, 51.003386 ], [ 15.012817, 51.106971 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.698197 ], [ 16.171875, 50.426019 ], [ 16.715698, 50.219095 ], [ 16.864014, 50.474987 ], [ 17.550659, 50.362985 ], [ 17.644043, 50.050085 ], [ 18.391113, 49.990084 ], [ 18.852539, 49.496675 ], [ 18.550415, 49.496675 ], [ 18.396606, 49.317961 ], [ 18.165894, 49.274973 ], [ 18.099976, 49.045070 ], [ 17.913208, 48.998240 ], [ 17.885742, 48.904449 ], [ 17.539673, 48.803246 ], [ 17.100220, 48.817716 ], [ 16.957397, 48.600225 ], [ 16.495972, 48.788771 ], [ 16.029053, 48.734455 ], [ 15.249023, 49.041469 ], [ 14.897461, 48.965794 ], [ 14.337158, 48.556614 ], [ 13.595581, 48.879167 ], [ 13.029785, 49.307217 ], [ 12.518921, 49.550162 ], [ 12.414551, 49.972422 ], [ 12.238770, 50.268277 ], [ 12.963867, 50.485474 ], [ 13.337402, 50.736455 ], [ 14.051514, 50.927276 ], [ 14.304199, 51.117317 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Poland", "sov_a3": "POL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Poland", "adm0_a3": "POL", "geou_dif": 0, "geounit": "Poland", "gu_a3": "POL", "su_dif": 0, "subunit": "Poland", "su_a3": "POL", "brk_diff": 0, "name": "Poland", "name_long": "Poland", "brk_a3": "POL", "brk_name": "Poland", "abbrev": "Pol.", "postal": "PL", "formal_en": "Republic of Poland", "name_sort": "Poland", "mapcolor7": 3, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 38482919, "gdp_md_est": 667900, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PL", "iso_a3": "POL", "iso_n3": "616", "un_a3": "616", "wb_a2": "PL", "wb_a3": "POL", "woe_id": -99, "adm0_a3_is": "POL", "adm0_a3_us": "POL", "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": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.622070, 54.854478 ], [ 18.616333, 54.683359 ], [ 18.693237, 54.441297 ], [ 19.660034, 54.428518 ], [ 20.890503, 54.313319 ], [ 22.500000, 54.326135 ], [ 22.730713, 54.329338 ], [ 22.939453, 54.284469 ], [ 22.939453, 49.866317 ], [ 22.516479, 49.478832 ], [ 22.774658, 49.030665 ], [ 22.554932, 49.088258 ], [ 22.500000, 49.109838 ], [ 21.604614, 49.471694 ], [ 20.885010, 49.332282 ], [ 20.412598, 49.432413 ], [ 19.824829, 49.217597 ], [ 19.319458, 49.575102 ], [ 18.907471, 49.435985 ], [ 18.391113, 49.990084 ], [ 17.644043, 50.050085 ], [ 17.550659, 50.362985 ], [ 16.864014, 50.474987 ], [ 16.715698, 50.219095 ], [ 16.171875, 50.426019 ], [ 16.237793, 50.698197 ], [ 15.490723, 50.785102 ], [ 15.012817, 51.106971 ], [ 14.606323, 51.747439 ], [ 14.683228, 52.093008 ], [ 14.436035, 52.626395 ], [ 14.073486, 52.981723 ], [ 14.348145, 53.248782 ], [ 14.117432, 53.758454 ], [ 14.798584, 54.052939 ], [ 16.358643, 54.514704 ], [ 17.622070, 54.854478 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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.199341, 46.852678 ], [ 16.369629, 46.841407 ], [ 16.561890, 46.505954 ], [ 15.765381, 46.240652 ], [ 15.666504, 45.836454 ], [ 15.320435, 45.733025 ], [ 15.325928, 45.452424 ], [ 14.930420, 45.475540 ], [ 14.589844, 45.637087 ], [ 14.408569, 45.467836 ], [ 13.710938, 45.502497 ], [ 13.936157, 45.594822 ], [ 13.694458, 46.019853 ], [ 13.804321, 46.509735 ], [ 14.628296, 46.434071 ], [ 15.133667, 46.660747 ], [ 16.007080, 46.687131 ], [ 16.199341, 46.852678 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.206543, 41.211722 ], [ 9.404297, 40.979898 ], [ 9.684448, 40.647304 ], [ 8.278198, 40.647304 ], [ 8.157349, 40.950863 ], [ 8.706665, 40.901058 ], [ 8.838501, 40.979898 ], [ 9.206543, 41.211722 ] ] ], [ [ [ 12.150879, 47.118738 ], [ 12.376099, 46.769968 ], [ 13.804321, 46.509735 ], [ 13.694458, 46.019853 ], [ 13.936157, 45.594822 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.381592, 44.887012 ], [ 12.260742, 44.602202 ], [ 12.584839, 44.091531 ], [ 13.524170, 43.588349 ], [ 14.029541, 42.763146 ], [ 15.139160, 41.955405 ], [ 15.924683, 41.963575 ], [ 16.166382, 41.742627 ], [ 15.886230, 41.541478 ], [ 17.265015, 40.979898 ], [ 17.517700, 40.880295 ], [ 17.896729, 40.647304 ], [ 14.551392, 40.647304 ], [ 14.057007, 40.788860 ], [ 13.848267, 40.979898 ], [ 13.623047, 41.191056 ], [ 12.886963, 41.257162 ], [ 12.101440, 41.705729 ], [ 11.189575, 42.358544 ], [ 10.508423, 42.932296 ], [ 10.195312, 43.921637 ], [ 9.700928, 44.040219 ], [ 8.887939, 44.367060 ], [ 8.426514, 44.233393 ], [ 7.849731, 43.771094 ], [ 7.432251, 43.695680 ], [ 7.547607, 44.130971 ], [ 7.003784, 44.257003 ], [ 6.745605, 45.030833 ], [ 7.091675, 45.336702 ], [ 6.800537, 45.710015 ], [ 6.838989, 45.993145 ], [ 7.272949, 45.779017 ], [ 7.750854, 45.824971 ], [ 8.311157, 46.164614 ], [ 8.486938, 46.008409 ], [ 8.964844, 46.038923 ], [ 9.179077, 46.441642 ], [ 9.920654, 46.316584 ], [ 10.360107, 46.487047 ], [ 10.442505, 46.893985 ], [ 11.046753, 46.754917 ], [ 11.162109, 46.942762 ], [ 12.150879, 47.118738 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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": "Polygon", "coordinates": [ [ [ 16.561890, 46.505954 ], [ 16.880493, 46.381044 ], [ 17.627563, 45.954969 ], [ 18.451538, 45.759859 ], [ 18.825073, 45.909122 ], [ 19.072266, 45.521744 ], [ 19.385376, 45.240086 ], [ 19.000854, 44.863656 ], [ 18.550415, 45.085157 ], [ 17.858276, 45.069641 ], [ 17.001343, 45.236218 ], [ 16.534424, 45.213004 ], [ 16.314697, 45.007535 ], [ 15.957642, 45.236218 ], [ 15.748901, 44.820812 ], [ 16.237793, 44.351350 ], [ 16.452026, 44.044167 ], [ 16.913452, 43.667872 ], [ 17.292480, 43.448931 ], [ 17.671509, 43.028745 ], [ 18.555908, 42.650122 ], [ 18.446045, 42.480200 ], [ 17.506714, 42.851806 ], [ 16.929932, 43.213183 ], [ 16.012573, 43.508721 ], [ 15.172119, 44.245199 ], [ 15.375366, 44.319918 ], [ 14.919434, 44.738930 ], [ 14.897461, 45.077400 ], [ 14.254761, 45.236218 ], [ 13.947144, 44.805224 ], [ 13.656006, 45.139430 ], [ 13.677979, 45.487095 ], [ 13.710938, 45.502497 ], [ 14.408569, 45.467836 ], [ 14.589844, 45.637087 ], [ 14.930420, 45.475540 ], [ 15.325928, 45.452424 ], [ 15.320435, 45.733025 ], [ 15.666504, 45.836454 ], [ 15.765381, 46.240652 ], [ 16.561890, 46.505954 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.319458, 49.575102 ], [ 19.824829, 49.217597 ], [ 20.412598, 49.432413 ], [ 20.885010, 49.332282 ], [ 21.604614, 49.471694 ], [ 22.500000, 49.109838 ], [ 22.554932, 49.088258 ], [ 22.500000, 49.034267 ], [ 22.280273, 48.828566 ], [ 22.082520, 48.425555 ], [ 21.868286, 48.323387 ], [ 20.797119, 48.625647 ], [ 20.473022, 48.563885 ], [ 20.236816, 48.330691 ], [ 19.764404, 48.202710 ], [ 19.660034, 48.268569 ], [ 19.171143, 48.114767 ], [ 18.775635, 48.085419 ], [ 18.693237, 47.883197 ], [ 17.852783, 47.761484 ], [ 17.484741, 47.868459 ], [ 16.979370, 48.125768 ], [ 16.875000, 48.472921 ], [ 17.100220, 48.817716 ], [ 17.539673, 48.803246 ], [ 17.885742, 48.904449 ], [ 17.913208, 48.998240 ], [ 18.099976, 49.045070 ], [ 18.165894, 49.274973 ], [ 18.396606, 49.317961 ], [ 18.550415, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.907471, 49.435985 ], [ 19.319458, 49.575102 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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.001343, 45.236218 ], [ 17.858276, 45.069641 ], [ 18.550415, 45.085157 ], [ 19.000854, 44.863656 ], [ 19.363403, 44.863656 ], [ 19.116211, 44.425934 ], [ 19.599609, 44.040219 ], [ 19.451294, 43.568452 ], [ 19.215088, 43.524655 ], [ 19.028320, 43.432977 ], [ 18.704224, 43.201172 ], [ 18.555908, 42.650122 ], [ 17.671509, 43.028745 ], [ 17.292480, 43.448931 ], [ 16.913452, 43.667872 ], [ 16.452026, 44.044167 ], [ 16.237793, 44.351350 ], [ 15.748901, 44.820812 ], [ 15.957642, 45.236218 ], [ 16.314697, 45.007535 ], [ 16.534424, 45.213004 ], [ 17.001343, 45.236218 ] ] ] } } +, +{ "type": "Feature", "properties": { "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.594116, 46.172223 ], [ 20.214844, 46.130363 ], [ 20.758667, 45.736860 ], [ 20.874023, 45.417732 ], [ 21.478271, 45.182037 ], [ 21.560669, 44.770137 ], [ 22.142944, 44.480830 ], [ 22.456055, 44.703802 ], [ 22.500000, 44.684277 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.429857 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.386692 ], [ 22.653809, 44.237328 ], [ 22.500000, 44.091531 ], [ 22.406616, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.939453, 43.253205 ], [ 22.939453, 43.173135 ], [ 22.604370, 42.900113 ], [ 22.500000, 42.702623 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.512602 ], [ 22.543945, 42.463993 ], [ 22.500000, 42.423457 ], [ 22.379150, 42.322001 ], [ 21.912231, 42.305753 ], [ 21.571655, 42.248852 ], [ 21.538696, 42.322001 ], [ 21.659546, 42.439674 ], [ 21.774902, 42.686473 ], [ 21.632080, 42.678397 ], [ 21.434326, 42.863886 ], [ 21.269531, 42.912183 ], [ 21.143188, 43.068888 ], [ 20.956421, 43.133061 ], [ 20.813599, 43.273206 ], [ 20.632324, 43.217187 ], [ 20.494995, 42.888040 ], [ 20.253296, 42.815551 ], [ 20.335693, 42.900113 ], [ 19.956665, 43.109004 ], [ 19.627075, 43.217187 ], [ 19.478760, 43.353144 ], [ 19.215088, 43.524655 ], [ 19.451294, 43.568452 ], [ 19.599609, 44.040219 ], [ 19.116211, 44.425934 ], [ 19.363403, 44.863656 ], [ 19.000854, 44.863656 ], [ 19.385376, 45.240086 ], [ 19.072266, 45.521744 ], [ 18.825073, 45.909122 ], [ 19.594116, 46.172223 ] ] ] } } +, +{ "type": "Feature", "properties": { "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.813599, 43.273206 ], [ 20.956421, 43.133061 ], [ 21.143188, 43.068888 ], [ 21.269531, 42.912183 ], [ 21.434326, 42.863886 ], [ 21.632080, 42.678397 ], [ 21.774902, 42.686473 ], [ 21.659546, 42.439674 ], [ 21.538696, 42.322001 ], [ 21.571655, 42.248852 ], [ 21.351929, 42.208176 ], [ 20.758667, 42.053372 ], [ 20.714722, 41.849105 ], [ 20.588379, 41.857288 ], [ 20.522461, 42.220382 ], [ 20.280762, 42.322001 ], [ 20.066528, 42.589489 ], [ 20.253296, 42.815551 ], [ 20.494995, 42.888040 ], [ 20.632324, 43.217187 ], [ 20.813599, 43.273206 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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.736938, 42.690511 ], [ 19.797363, 42.500453 ], [ 20.066528, 42.589489 ], [ 20.280762, 42.322001 ], [ 20.522461, 42.220382 ], [ 20.588379, 41.857288 ], [ 20.462036, 41.516804 ], [ 20.604858, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.016846, 40.842905 ], [ 21.000366, 40.647304 ], [ 19.330444, 40.647304 ], [ 19.313965, 40.730608 ], [ 19.346924, 40.979898 ], [ 19.401855, 41.409776 ], [ 19.539185, 41.722131 ], [ 19.368896, 41.877741 ], [ 19.302979, 42.195969 ], [ 19.736938, 42.690511 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 56.022948 ], [ 22.939453, 54.284469 ], [ 22.730713, 54.329338 ], [ 22.648315, 54.584797 ], [ 22.752686, 54.857640 ], [ 22.500000, 54.949231 ], [ 22.313232, 55.015426 ], [ 21.264038, 55.191412 ], [ 21.115723, 55.776573 ], [ 21.055298, 56.022948 ], [ 22.939453, 56.022948 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.939453, 43.173135 ], [ 22.939453, 41.459195 ], [ 22.879028, 42.000325 ], [ 22.500000, 42.244785 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.423457 ], [ 22.543945, 42.463993 ], [ 22.500000, 42.512602 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.702623 ], [ 22.604370, 42.900113 ], [ 22.939453, 43.173135 ] ] ], [ [ [ 22.939453, 43.253205 ], [ 22.500000, 43.644026 ], [ 22.406616, 44.008620 ], [ 22.500000, 44.091531 ], [ 22.653809, 44.237328 ], [ 22.939453, 43.834527 ], [ 22.939453, 43.253205 ] ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 22.939453, 49.866317 ], [ 22.939453, 47.997274 ], [ 22.708740, 47.883197 ], [ 22.637329, 48.151428 ], [ 22.500000, 48.221013 ], [ 22.082520, 48.425555 ], [ 22.280273, 48.828566 ], [ 22.500000, 49.034267 ], [ 22.554932, 49.088258 ], [ 22.774658, 49.030665 ], [ 22.516479, 49.478832 ], [ 22.939453, 49.866317 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 15.545654, 66.687784 ], [ 15.391846, 66.513260 ], [ 15.106201, 66.196009 ], [ 13.551636, 64.788168 ], [ 13.919678, 64.446742 ], [ 13.568115, 64.050575 ], [ 12.579346, 64.067396 ], [ 11.925659, 63.129538 ], [ 11.991577, 61.801688 ], [ 12.628784, 61.293988 ], [ 12.299194, 60.119619 ], [ 11.464233, 59.433903 ], [ 11.024780, 58.856383 ], [ 10.354614, 59.470199 ], [ 8.377075, 58.315260 ], [ 7.047729, 58.080781 ], [ 5.663452, 58.588299 ], [ 5.306396, 59.664966 ], [ 4.987793, 61.972525 ], [ 5.910645, 62.616089 ], [ 8.552856, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.354126, 65.881460 ], [ 13.123169, 66.513260 ], [ 13.337402, 66.687784 ], [ 15.545654, 66.687784 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.370605, 56.111873 ], [ 12.579346, 55.776573 ], [ 12.689209, 55.612487 ], [ 12.628784, 55.528631 ], [ 10.986328, 55.528631 ], [ 10.903931, 55.776573 ], [ 10.898438, 55.782751 ], [ 12.370605, 56.111873 ] ] ], [ [ [ 10.579834, 57.730552 ], [ 10.541382, 57.216634 ], [ 10.244751, 56.891003 ], [ 10.365601, 56.610909 ], [ 10.909424, 56.459455 ], [ 10.667725, 56.084298 ], [ 10.365601, 56.191424 ], [ 9.953613, 55.776573 ], [ 9.706421, 55.528631 ], [ 8.118896, 55.528631 ], [ 8.107910, 55.776573 ], [ 8.085938, 56.541315 ], [ 8.256226, 56.812908 ], [ 8.541870, 57.112385 ], [ 9.420776, 57.174970 ], [ 9.772339, 57.450861 ], [ 10.579834, 57.730552 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 64.057785 ], [ 22.939453, 59.855851 ], [ 22.868042, 59.847574 ], [ 22.500000, 60.196156 ], [ 22.285767, 60.392148 ], [ 21.318970, 60.721571 ], [ 21.544189, 61.705499 ], [ 21.055298, 62.608508 ], [ 21.533203, 63.191541 ], [ 22.439575, 63.818864 ], [ 22.500000, 63.845512 ], [ 22.939453, 64.057785 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "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": "Polygon", "coordinates": [ [ [ 22.521973, 57.754007 ], [ 22.939453, 57.365052 ], [ 22.939453, 56.310443 ], [ 22.500000, 56.328721 ], [ 22.197876, 56.337856 ], [ 21.055298, 56.032157 ], [ 21.088257, 56.785836 ], [ 21.577148, 57.412420 ], [ 22.500000, 57.745213 ], [ 22.521973, 57.754007 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "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": "Polygon", "coordinates": [ [ [ 20.643311, 69.107777 ], [ 21.978149, 68.618536 ], [ 22.500000, 68.393113 ], [ 22.939453, 68.200133 ], [ 22.939453, 66.337505 ], [ 15.232544, 66.337505 ], [ 15.391846, 66.513260 ], [ 16.765137, 68.015798 ], [ 17.726440, 68.011685 ], [ 17.990112, 68.568414 ], [ 19.874268, 68.407268 ], [ 20.022583, 69.066601 ], [ 20.643311, 69.107777 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.242065, 69.370638 ], [ 22.351685, 68.843700 ], [ 22.500000, 68.847665 ], [ 22.939453, 68.865498 ], [ 22.939453, 68.200133 ], [ 22.500000, 68.393113 ], [ 21.978149, 68.618536 ], [ 20.643311, 69.107777 ], [ 21.242065, 69.370638 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zimbabwe", "sov_a3": "ZWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zimbabwe", "adm0_a3": "ZWE", "geou_dif": 0, "geounit": "Zimbabwe", "gu_a3": "ZWE", "su_dif": 0, "subunit": "Zimbabwe", "su_a3": "ZWE", "brk_diff": 0, "name": "Zimbabwe", "name_long": "Zimbabwe", "brk_a3": "ZWE", "brk_name": "Zimbabwe", "abbrev": "Zimb.", "postal": "ZW", "formal_en": "Republic of Zimbabwe", "name_sort": "Zimbabwe", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 12619600, "gdp_md_est": 9323, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ZW", "iso_a3": "ZWE", "iso_n3": "716", "un_a3": "716", "wb_a2": "ZW", "wb_a3": "ZWE", "woe_id": -99, "adm0_a3_is": "ZWE", "adm0_a3_us": "ZWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.854858, -21.534847 ], [ 31.475830, -21.943046 ], [ 31.190186, -22.248429 ], [ 30.657349, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.100909 ], [ 29.426880, -22.090730 ], [ 29.218140, -21.943046 ], [ 28.789673, -21.637005 ], [ 28.262329, -21.534847 ], [ 31.854858, -21.534847 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mozambique", "sov_a3": "MOZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mozambique", "adm0_a3": "MOZ", "geou_dif": 0, "geounit": "Mozambique", "gu_a3": "MOZ", "su_dif": 0, "subunit": "Mozambique", "su_a3": "MOZ", "brk_diff": 0, "name": "Mozambique", "name_long": "Mozambique", "brk_a3": "MOZ", "brk_name": "Mozambique", "abbrev": "Moz.", "postal": "MZ", "formal_en": "Republic of Mozambique", "name_sort": "Mozambique", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 21669278, "gdp_md_est": 18940, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MZ", "iso_a3": "MOZ", "iso_n3": "508", "un_a3": "508", "wb_a2": "MZ", "wb_a3": "MOZ", "woe_id": -99, "adm0_a3_is": "MOZ", "adm0_a3_us": "MOZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.266113, -21.534847 ], [ 35.370483, -21.836006 ], [ 35.375977, -21.943046 ], [ 35.381470, -22.136532 ], [ 35.557251, -22.085640 ], [ 35.529785, -23.069624 ], [ 35.370483, -23.533773 ], [ 35.606689, -23.704895 ], [ 35.458374, -24.121689 ], [ 35.035400, -24.477150 ], [ 34.211426, -24.811668 ], [ 33.008423, -25.353955 ], [ 32.574463, -25.725684 ], [ 32.656860, -26.145576 ], [ 32.915039, -26.214591 ], [ 32.827148, -26.740705 ], [ 32.069092, -26.730893 ], [ 31.981201, -26.288490 ], [ 31.832886, -25.839449 ], [ 31.750488, -25.482951 ], [ 31.926270, -24.367114 ], [ 31.668091, -23.654588 ], [ 31.190186, -22.248429 ], [ 31.475830, -21.943046 ], [ 31.854858, -21.534847 ], [ 35.266113, -21.534847 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Africa", "sov_a3": "ZAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Africa", "adm0_a3": "ZAF", "geou_dif": 0, "geounit": "South Africa", "gu_a3": "ZAF", "su_dif": 0, "subunit": "South Africa", "su_a3": "ZAF", "brk_diff": 0, "name": "South Africa", "name_long": "South Africa", "brk_a3": "ZAF", "brk_name": "South Africa", "abbrev": "S.Af.", "postal": "ZA", "formal_en": "Republic of South Africa", "name_sort": "South Africa", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 49052489, "gdp_md_est": 491000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ZA", "iso_a3": "ZAF", "iso_n3": "710", "un_a3": "710", "wb_a2": "ZA", "wb_a3": "ZAF", "woe_id": -99, "adm0_a3_is": "ZAF", "adm0_a3_us": "ZAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.426880, -22.090730 ], [ 29.838867, -22.100909 ], [ 30.322266, -22.268764 ], [ 30.657349, -22.146708 ], [ 31.190186, -22.248429 ], [ 31.668091, -23.654588 ], [ 31.926270, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.832886, -25.839449 ], [ 31.333008, -25.656382 ], [ 31.041870, -25.730633 ], [ 30.948486, -26.022234 ], [ 30.673828, -26.396790 ], [ 30.684814, -26.740705 ], [ 31.278076, -27.283926 ], [ 31.865845, -27.176469 ], [ 32.069092, -26.730893 ], [ 32.827148, -26.740705 ], [ 32.579956, -27.469287 ], [ 32.459106, -28.299544 ], [ 32.200928, -28.748397 ], [ 31.519775, -29.252856 ], [ 31.322021, -29.401320 ], [ 30.899048, -29.907329 ], [ 30.618896, -30.420256 ], [ 30.053101, -31.137603 ], [ 28.921509, -32.170963 ], [ 28.218384, -32.768800 ], [ 27.460327, -33.224903 ], [ 26.416626, -33.614619 ], [ 25.905762, -33.664925 ], [ 25.779419, -33.943360 ], [ 25.169678, -33.792844 ], [ 24.675293, -33.984364 ], [ 23.593140, -33.792844 ], [ 22.983398, -33.916013 ], [ 22.571411, -33.861293 ], [ 22.500000, -33.888658 ], [ 22.060547, -34.057211 ], [ 22.060547, -26.318037 ], [ 22.104492, -26.278640 ], [ 22.500000, -26.027170 ], [ 22.576904, -25.977799 ], [ 22.824097, -25.497827 ], [ 23.307495, -25.264568 ], [ 23.730469, -25.388698 ], [ 24.208374, -25.666285 ], [ 25.021362, -25.715786 ], [ 25.664062, -25.482951 ], [ 25.762939, -25.170145 ], [ 25.938721, -24.691943 ], [ 26.482544, -24.612063 ], [ 26.784668, -24.236947 ], [ 27.114258, -23.574057 ], [ 28.015137, -22.826820 ], [ 29.426880, -22.090730 ] ], [ [ 28.536987, -28.647210 ], [ 28.070068, -28.849485 ], [ 27.531738, -29.238477 ], [ 26.998901, -29.873992 ], [ 27.745972, -30.642638 ], [ 28.103027, -30.543339 ], [ 28.289795, -30.225848 ], [ 28.844604, -30.069094 ], [ 29.014893, -29.740532 ], [ 29.322510, -29.252856 ], [ 28.976440, -28.955282 ], [ 28.536987, -28.647210 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Swaziland", "sov_a3": "SWZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Swaziland", "adm0_a3": "SWZ", "geou_dif": 0, "geounit": "Swaziland", "gu_a3": "SWZ", "su_dif": 0, "subunit": "Swaziland", "su_a3": "SWZ", "brk_diff": 0, "name": "Swaziland", "name_long": "Swaziland", "brk_a3": "SWZ", "brk_name": "Swaziland", "abbrev": "Swz.", "postal": "SW", "formal_en": "Kingdom of Swaziland", "name_sort": "Swaziland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 1123913, "gdp_md_est": 5702, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SZ", "iso_a3": "SWZ", "iso_n3": "748", "un_a3": "748", "wb_a2": "SZ", "wb_a3": "SWZ", "woe_id": -99, "adm0_a3_is": "SWZ", "adm0_a3_us": "SWZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.333008, -25.656382 ], [ 31.832886, -25.839449 ], [ 31.981201, -26.288490 ], [ 32.069092, -26.730893 ], [ 31.865845, -27.176469 ], [ 31.278076, -27.283926 ], [ 30.684814, -26.740705 ], [ 30.673828, -26.396790 ], [ 30.948486, -26.022234 ], [ 31.041870, -25.730633 ], [ 31.333008, -25.656382 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Madagascar", "sov_a3": "MDG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Madagascar", "adm0_a3": "MDG", "geou_dif": 0, "geounit": "Madagascar", "gu_a3": "MDG", "su_dif": 0, "subunit": "Madagascar", "su_a3": "MDG", "brk_diff": 0, "name": "Madagascar", "name_long": "Madagascar", "brk_a3": "MDG", "brk_name": "Madagascar", "abbrev": "Mad.", "postal": "MG", "formal_en": "Republic of Madagascar", "name_sort": "Madagascar", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 20653556, "gdp_md_est": 20130, "pop_year": -99, "lastcensus": 1993, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MG", "iso_a3": "MDG", "iso_n3": "450", "un_a3": "450", "wb_a2": "MG", "wb_a3": "MDG", "woe_id": -99, "adm0_a3_is": "MDG", "adm0_a3_us": "MDG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -21.534847 ], [ 45.439453, -25.582085 ], [ 45.406494, -25.596948 ], [ 45.000000, -25.418470 ], [ 44.038696, -24.986058 ], [ 43.758545, -24.457151 ], [ 43.692627, -23.574057 ], [ 43.341064, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.280640, -21.943046 ], [ 43.379517, -21.534847 ], [ 45.439453, -21.534847 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.984497, 0.439449 ], [ 40.989990, 0.000000 ], [ 40.989990, -0.856902 ], [ 41.583252, -1.680667 ], [ 40.880127, -2.081451 ], [ 40.632935, -2.498597 ], [ 40.259399, -2.569939 ], [ 40.116577, -3.277630 ], [ 39.797974, -3.677892 ], [ 39.600220, -4.346411 ], [ 39.199219, -4.674980 ], [ 37.765503, -3.672410 ], [ 37.694092, -3.096636 ], [ 34.068604, -1.054628 ], [ 33.898315, -0.944781 ], [ 33.892822, 0.000000 ], [ 33.892822, 0.109863 ], [ 34.123535, 0.439449 ], [ 40.984497, 0.439449 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.313599, 0.439449 ], [ 43.132324, 0.296630 ], [ 42.868652, 0.000000 ], [ 42.039185, -0.917319 ], [ 41.808472, -1.444549 ], [ 41.583252, -1.680667 ], [ 40.989990, -0.856902 ], [ 40.989990, 0.000000 ], [ 40.984497, 0.439449 ], [ 43.313599, 0.439449 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.060547, -12.897489 ], [ 22.060547, -9.725300 ], [ 22.203369, -9.893099 ], [ 22.153931, -11.081385 ], [ 22.401123, -10.989728 ], [ 22.500000, -10.995120 ], [ 22.835083, -11.016689 ], [ 23.455811, -10.865676 ], [ 23.911743, -10.925011 ], [ 24.016113, -11.232286 ], [ 23.900757, -11.722167 ], [ 24.076538, -12.189704 ], [ 23.928223, -12.565287 ], [ 24.016113, -12.908198 ], [ 22.500000, -12.897489 ], [ 22.060547, -12.897489 ] ] ], [ [ [ 22.060547, -16.288506 ], [ 22.500000, -16.820316 ], [ 22.560425, -16.893916 ], [ 23.214111, -17.518344 ], [ 22.500000, -17.680662 ], [ 22.060547, -17.774843 ], [ 22.060547, -16.288506 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Namibia", "sov_a3": "NAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Namibia", "adm0_a3": "NAM", "geou_dif": 0, "geounit": "Namibia", "gu_a3": "NAM", "su_dif": 0, "subunit": "Namibia", "su_a3": "NAM", "brk_diff": 0, "name": "Namibia", "name_long": "Namibia", "brk_a3": "NAM", "brk_name": "Namibia", "abbrev": "Nam.", "postal": "NA", "formal_en": "Republic of Namibia", "name_sort": "Namibia", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 2108665, "gdp_md_est": 13250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "NA", "iso_a3": "NAM", "iso_n3": "516", "un_a3": "516", "wb_a2": "NA", "wb_a3": "NAM", "woe_id": -99, "adm0_a3_is": "NAM", "adm0_a3_us": "NAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.032593, -17.292954 ], [ 24.680786, -17.350638 ], [ 25.076294, -17.575957 ], [ 25.081787, -17.659726 ], [ 24.515991, -17.884659 ], [ 24.213867, -17.884659 ], [ 23.576660, -18.276302 ], [ 23.192139, -17.868975 ], [ 22.500000, -18.025751 ], [ 22.060547, -18.124971 ], [ 22.060547, -17.774843 ], [ 22.500000, -17.680662 ], [ 23.214111, -17.518344 ], [ 24.032593, -17.292954 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Burundi", "sov_a3": "BDI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burundi", "adm0_a3": "BDI", "geou_dif": 0, "geounit": "Burundi", "gu_a3": "BDI", "su_dif": 0, "subunit": "Burundi", "su_a3": "BDI", "brk_diff": 0, "name": "Burundi", "name_long": "Burundi", "brk_a3": "BDI", "brk_name": "Burundi", "abbrev": "Bur.", "postal": "BI", "formal_en": "Republic of Burundi", "name_sort": "Burundi", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8988091, "gdp_md_est": 3102, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BI", "iso_a3": "BDI", "iso_n3": "108", "un_a3": "108", "wb_a2": "BI", "wb_a3": "BDI", "woe_id": -99, "adm0_a3_is": "BDI", "adm0_a3_us": "BDI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.937744, -2.344926 ], [ 30.465088, -2.410787 ], [ 30.525513, -2.805885 ], [ 30.739746, -3.030812 ], [ 30.750732, -3.354405 ], [ 30.503540, -3.568248 ], [ 30.113525, -4.088932 ], [ 29.750977, -4.450474 ], [ 29.338989, -4.499762 ], [ 29.273071, -3.288598 ], [ 29.020386, -2.838804 ], [ 29.630127, -2.915611 ], [ 29.937744, -2.344926 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.344238, -8.233237 ], [ 30.739746, -8.336518 ], [ 31.157227, -8.591884 ], [ 31.552734, -8.760224 ], [ 32.189941, -8.928487 ], [ 32.755737, -9.226827 ], [ 33.228149, -9.676569 ], [ 33.480835, -10.520219 ], [ 33.310547, -10.795537 ], [ 33.112793, -11.603813 ], [ 33.305054, -12.431212 ], [ 32.986450, -12.779661 ], [ 32.684326, -13.710035 ], [ 33.211670, -13.971385 ], [ 30.179443, -14.790817 ], [ 30.272827, -15.506619 ], [ 29.514771, -15.644197 ], [ 28.943481, -16.040534 ], [ 28.822632, -16.388661 ], [ 28.465576, -16.467695 ], [ 27.597656, -17.287709 ], [ 27.042847, -17.936929 ], [ 26.702271, -17.957832 ], [ 26.378174, -17.842833 ], [ 25.263062, -17.732991 ], [ 25.081787, -17.659726 ], [ 25.076294, -17.575957 ], [ 24.680786, -17.350638 ], [ 24.032593, -17.292954 ], [ 23.214111, -17.518344 ], [ 22.560425, -16.893916 ], [ 22.500000, -16.820316 ], [ 22.060547, -16.288506 ], [ 22.060547, -12.897489 ], [ 22.500000, -12.897489 ], [ 24.016113, -12.908198 ], [ 23.928223, -12.565287 ], [ 24.076538, -12.189704 ], [ 23.900757, -11.722167 ], [ 24.016113, -11.232286 ], [ 23.911743, -10.925011 ], [ 24.252319, -10.951978 ], [ 24.312744, -11.259225 ], [ 24.779663, -11.237674 ], [ 25.416870, -11.329253 ], [ 25.751953, -11.781325 ], [ 26.548462, -11.921103 ], [ 27.163696, -11.603813 ], [ 27.383423, -12.130635 ], [ 28.152466, -12.270231 ], [ 28.520508, -12.693933 ], [ 28.932495, -13.245293 ], [ 29.696045, -13.255986 ], [ 29.613647, -12.173595 ], [ 29.338989, -12.356100 ], [ 28.641357, -11.969471 ], [ 28.372192, -11.792080 ], [ 28.493042, -10.784745 ], [ 28.668823, -9.600750 ], [ 28.449097, -9.161756 ], [ 28.734741, -8.521268 ], [ 28.998413, -8.401734 ], [ 30.344238, -8.233237 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zimbabwe", "sov_a3": "ZWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zimbabwe", "adm0_a3": "ZWE", "geou_dif": 0, "geounit": "Zimbabwe", "gu_a3": "ZWE", "su_dif": 0, "subunit": "Zimbabwe", "su_a3": "ZWE", "brk_diff": 0, "name": "Zimbabwe", "name_long": "Zimbabwe", "brk_a3": "ZWE", "brk_name": "Zimbabwe", "abbrev": "Zimb.", "postal": "ZW", "formal_en": "Republic of Zimbabwe", "name_sort": "Zimbabwe", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 12619600, "gdp_md_est": 9323, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ZW", "iso_a3": "ZWE", "iso_n3": "716", "un_a3": "716", "wb_a2": "ZW", "wb_a3": "ZWE", "woe_id": -99, "adm0_a3_is": "ZWE", "adm0_a3_us": "ZWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.272827, -15.506619 ], [ 30.338745, -15.876809 ], [ 31.168213, -15.855674 ], [ 31.635132, -16.066929 ], [ 31.849365, -16.314868 ], [ 32.327271, -16.388661 ], [ 32.843628, -16.709863 ], [ 32.849121, -17.978733 ], [ 32.651367, -18.667063 ], [ 32.607422, -19.414792 ], [ 32.772217, -19.715000 ], [ 32.656860, -20.303418 ], [ 32.508545, -20.390974 ], [ 32.244873, -21.115249 ], [ 31.475830, -21.943046 ], [ 31.190186, -22.248429 ], [ 30.657349, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.100909 ], [ 29.426880, -22.090730 ], [ 29.218140, -21.943046 ], [ 28.789673, -21.637005 ], [ 28.020630, -21.483741 ], [ 27.723999, -20.848545 ], [ 27.723999, -20.493919 ], [ 27.295532, -20.390974 ], [ 26.163940, -19.290406 ], [ 25.845337, -18.713894 ], [ 25.647583, -18.531700 ], [ 25.263062, -17.732991 ], [ 26.378174, -17.842833 ], [ 26.702271, -17.957832 ], [ 27.042847, -17.936929 ], [ 27.597656, -17.287709 ], [ 28.465576, -16.467695 ], [ 28.822632, -16.388661 ], [ 28.943481, -16.040534 ], [ 29.514771, -15.644197 ], [ 30.272827, -15.506619 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.755737, -9.226827 ], [ 33.739014, -9.416548 ], [ 34.277344, -10.158153 ], [ 34.557495, -11.517705 ], [ 34.277344, -12.275599 ], [ 34.557495, -13.576581 ], [ 34.903564, -13.560562 ], [ 35.266113, -13.886079 ], [ 35.683594, -14.610163 ], [ 35.771484, -15.892659 ], [ 35.337524, -16.103876 ], [ 35.029907, -16.799282 ], [ 34.376221, -16.183024 ], [ 34.304810, -15.474857 ], [ 34.513550, -15.008464 ], [ 34.458618, -14.610163 ], [ 34.063110, -14.354870 ], [ 33.788452, -14.450639 ], [ 33.211670, -13.971385 ], [ 32.684326, -13.710035 ], [ 32.986450, -12.779661 ], [ 33.305054, -12.431212 ], [ 33.112793, -11.603813 ], [ 33.310547, -10.795537 ], [ 33.480835, -10.520219 ], [ 33.228149, -9.676569 ], [ 32.755737, -9.226827 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mozambique", "sov_a3": "MOZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mozambique", "adm0_a3": "MOZ", "geou_dif": 0, "geounit": "Mozambique", "gu_a3": "MOZ", "su_dif": 0, "subunit": "Mozambique", "su_a3": "MOZ", "brk_diff": 0, "name": "Mozambique", "name_long": "Mozambique", "brk_a3": "MOZ", "brk_name": "Mozambique", "abbrev": "Moz.", "postal": "MZ", "formal_en": "Republic of Mozambique", "name_sort": "Mozambique", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 21669278, "gdp_md_est": 18940, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MZ", "iso_a3": "MOZ", "iso_n3": "508", "un_a3": "508", "wb_a2": "MZ", "wb_a3": "MOZ", "woe_id": -99, "adm0_a3_is": "MOZ", "adm0_a3_us": "MOZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.314331, -10.314919 ], [ 40.473633, -10.763159 ], [ 40.435181, -11.759815 ], [ 40.556030, -12.634978 ], [ 40.594482, -14.200488 ], [ 40.770264, -14.689881 ], [ 40.473633, -15.406024 ], [ 40.089111, -16.098598 ], [ 39.451904, -16.720385 ], [ 38.534546, -17.098792 ], [ 37.408447, -17.581194 ], [ 36.276855, -18.656654 ], [ 35.892334, -18.838714 ], [ 35.194702, -19.549437 ], [ 34.782715, -19.782211 ], [ 34.700317, -20.493919 ], [ 35.172729, -21.253542 ], [ 35.370483, -21.836006 ], [ 35.375977, -21.943046 ], [ 35.381470, -22.136532 ], [ 35.557251, -22.085640 ], [ 35.551758, -22.350076 ], [ 31.223145, -22.350076 ], [ 31.190186, -22.248429 ], [ 31.475830, -21.943046 ], [ 32.244873, -21.115249 ], [ 32.508545, -20.390974 ], [ 32.656860, -20.303418 ], [ 32.772217, -19.715000 ], [ 32.607422, -19.414792 ], [ 32.651367, -18.667063 ], [ 32.849121, -17.978733 ], [ 32.843628, -16.709863 ], [ 32.327271, -16.388661 ], [ 31.849365, -16.314868 ], [ 31.635132, -16.066929 ], [ 31.168213, -15.855674 ], [ 30.338745, -15.876809 ], [ 30.272827, -15.506619 ], [ 30.179443, -14.790817 ], [ 33.211670, -13.971385 ], [ 33.788452, -14.450639 ], [ 34.063110, -14.354870 ], [ 34.458618, -14.610163 ], [ 34.513550, -15.008464 ], [ 34.304810, -15.474857 ], [ 34.376221, -16.183024 ], [ 35.029907, -16.799282 ], [ 35.337524, -16.103876 ], [ 35.771484, -15.892659 ], [ 35.683594, -14.610163 ], [ 35.266113, -13.886079 ], [ 34.903564, -13.560562 ], [ 34.557495, -13.576581 ], [ 34.277344, -12.275599 ], [ 34.557495, -11.517705 ], [ 35.310059, -11.436955 ], [ 36.513062, -11.716788 ], [ 36.771240, -11.593051 ], [ 37.468872, -11.566144 ], [ 37.825928, -11.264612 ], [ 38.424683, -11.280774 ], [ 39.517822, -10.892648 ], [ 40.314331, -10.314919 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Africa", "sov_a3": "ZAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Africa", "adm0_a3": "ZAF", "geou_dif": 0, "geounit": "South Africa", "gu_a3": "ZAF", "su_dif": 0, "subunit": "South Africa", "su_a3": "ZAF", "brk_diff": 0, "name": "South Africa", "name_long": "South Africa", "brk_a3": "ZAF", "brk_name": "South Africa", "abbrev": "S.Af.", "postal": "ZA", "formal_en": "Republic of South Africa", "name_sort": "South Africa", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 49052489, "gdp_md_est": 491000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ZA", "iso_a3": "ZAF", "iso_n3": "710", "un_a3": "710", "wb_a2": "ZA", "wb_a3": "ZAF", "woe_id": -99, "adm0_a3_is": "ZAF", "adm0_a3_us": "ZAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.426880, -22.090730 ], [ 29.838867, -22.100909 ], [ 30.322266, -22.268764 ], [ 30.657349, -22.146708 ], [ 31.190186, -22.248429 ], [ 31.223145, -22.350076 ], [ 28.932495, -22.350076 ], [ 29.426880, -22.090730 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Madagascar", "sov_a3": "MDG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Madagascar", "adm0_a3": "MDG", "geou_dif": 0, "geounit": "Madagascar", "gu_a3": "MDG", "su_dif": 0, "subunit": "Madagascar", "su_a3": "MDG", "brk_diff": 0, "name": "Madagascar", "name_long": "Madagascar", "brk_a3": "MDG", "brk_name": "Madagascar", "abbrev": "Mad.", "postal": "MG", "formal_en": "Republic of Madagascar", "name_sort": "Madagascar", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 20653556, "gdp_md_est": 20130, "pop_year": -99, "lastcensus": 1993, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MG", "iso_a3": "MDG", "iso_n3": "450", "un_a3": "450", "wb_a2": "MG", "wb_a3": "MDG", "woe_id": -99, "adm0_a3_is": "MDG", "adm0_a3_us": "MDG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -15.993015 ], [ 45.439453, -22.350076 ], [ 43.286133, -22.350076 ], [ 43.253174, -22.055096 ], [ 43.280640, -21.943046 ], [ 43.428955, -21.335432 ], [ 43.890381, -21.161361 ], [ 43.895874, -20.828010 ], [ 44.373779, -20.071411 ], [ 44.461670, -19.430334 ], [ 44.230957, -18.958246 ], [ 44.038696, -18.328455 ], [ 43.961792, -17.408305 ], [ 44.307861, -16.846605 ], [ 44.445190, -16.214675 ], [ 44.939575, -16.177749 ], [ 45.000000, -16.156645 ], [ 45.439453, -15.993015 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.060547, 12.993853 ], [ 22.060547, 20.437308 ], [ 22.500000, 20.226120 ], [ 23.834839, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.021851, 15.681221 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.109940 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.083301 ], [ 22.181396, 13.790071 ], [ 22.291260, 13.373588 ], [ 22.060547, 12.993853 ] ] ], [ [ [ 22.060547, 12.613537 ], [ 22.285767, 12.651058 ], [ 22.494507, 12.264864 ], [ 22.500000, 12.136005 ], [ 22.505493, 11.684514 ], [ 22.873535, 11.388494 ], [ 22.862549, 11.146066 ], [ 22.500000, 11.049038 ], [ 22.230835, 10.973550 ], [ 22.060547, 10.838701 ], [ 22.060547, 12.613537 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.862549, 11.146066 ], [ 22.972412, 10.714587 ], [ 23.549194, 10.093262 ], [ 23.554688, 9.681984 ], [ 23.389893, 9.270201 ], [ 23.455811, 8.955619 ], [ 23.801880, 8.667918 ], [ 24.565430, 8.233237 ], [ 25.114746, 7.825289 ], [ 25.120239, 7.504089 ], [ 25.795898, 6.980954 ], [ 26.213379, 6.550017 ], [ 26.460571, 5.949363 ], [ 27.213135, 5.555848 ], [ 27.372437, 5.238657 ], [ 27.042847, 5.129243 ], [ 26.400146, 5.151128 ], [ 25.647583, 5.260538 ], [ 25.274048, 5.173011 ], [ 25.125732, 4.932251 ], [ 24.801636, 4.899414 ], [ 24.406128, 5.112830 ], [ 23.296509, 4.614753 ], [ 22.840576, 4.713303 ], [ 22.703247, 4.636655 ], [ 22.500000, 4.225900 ], [ 22.401123, 4.034138 ], [ 22.060547, 4.121806 ], [ 22.060547, 10.838701 ], [ 22.230835, 10.973550 ], [ 22.500000, 11.049038 ], [ 22.862549, 11.146066 ] ] ] } } +, +{ "type": "Feature", "properties": { "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": "Polygon", "coordinates": [ [ [ 36.864624, 22.004175 ], [ 36.881104, 21.943046 ], [ 37.183228, 21.022983 ], [ 36.968994, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.479858, 18.615013 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.429270 ], [ 37.166748, 17.266728 ], [ 36.848145, 16.956979 ], [ 36.749268, 16.293779 ], [ 36.320801, 14.822681 ], [ 36.425171, 14.424040 ], [ 36.265869, 13.565902 ], [ 35.859375, 12.581371 ], [ 35.255127, 12.087667 ], [ 34.826660, 11.323867 ], [ 34.727783, 10.914224 ], [ 34.255371, 10.633615 ], [ 33.958740, 9.584501 ], [ 33.958740, 9.465317 ], [ 33.821411, 9.486990 ], [ 33.837891, 9.985081 ], [ 33.717041, 10.325728 ], [ 33.206177, 10.725381 ], [ 33.085327, 11.442339 ], [ 33.206177, 12.184334 ], [ 32.739258, 12.248760 ], [ 32.673340, 12.028576 ], [ 32.069092, 11.974845 ], [ 32.310791, 11.684514 ], [ 32.398682, 11.081385 ], [ 31.849365, 10.536421 ], [ 31.349487, 9.811916 ], [ 30.833130, 9.709057 ], [ 29.992676, 10.293301 ], [ 29.613647, 10.087854 ], [ 29.514771, 9.795678 ], [ 28.998413, 9.606166 ], [ 28.965454, 9.400291 ], [ 27.965698, 9.400291 ], [ 27.828369, 9.606166 ], [ 27.108765, 9.638661 ], [ 26.751709, 9.470736 ], [ 26.477051, 9.557417 ], [ 25.960693, 10.136524 ], [ 25.790405, 10.412183 ], [ 25.065308, 10.277086 ], [ 24.790649, 9.811916 ], [ 24.532471, 8.917634 ], [ 24.191895, 8.733077 ], [ 23.884277, 8.624472 ], [ 23.801880, 8.667918 ], [ 23.455811, 8.955619 ], [ 23.389893, 9.270201 ], [ 23.554688, 9.681984 ], [ 23.549194, 10.093262 ], [ 22.972412, 10.714587 ], [ 22.862549, 11.146066 ], [ 22.873535, 11.388494 ], [ 22.505493, 11.684514 ], [ 22.500000, 12.136005 ], [ 22.494507, 12.264864 ], [ 22.285767, 12.651058 ], [ 22.060547, 12.613537 ], [ 22.060547, 12.993853 ], [ 22.291260, 13.373588 ], [ 22.181396, 13.790071 ], [ 22.500000, 14.083301 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.109940 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 23.021851, 15.681221 ], [ 23.884277, 15.612456 ], [ 23.834839, 19.580493 ], [ 23.845825, 20.004322 ], [ 24.999390, 20.004322 ], [ 24.999390, 22.004175 ], [ 36.864624, 22.004175 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.739258, 12.248760 ], [ 33.206177, 12.184334 ], [ 33.085327, 11.442339 ], [ 33.206177, 10.725381 ], [ 33.717041, 10.325728 ], [ 33.837891, 9.985081 ], [ 33.821411, 9.486990 ], [ 33.958740, 9.465317 ], [ 33.969727, 8.689639 ], [ 33.821411, 8.379997 ], [ 33.294067, 8.358258 ], [ 32.953491, 7.787194 ], [ 33.563232, 7.716435 ], [ 34.074097, 7.226249 ], [ 34.249878, 6.828261 ], [ 34.705811, 6.599131 ], [ 35.293579, 5.506640 ], [ 34.002686, 4.253290 ], [ 33.387451, 3.793003 ], [ 32.684326, 3.793003 ], [ 31.876831, 3.562765 ], [ 31.245117, 3.782041 ], [ 30.833130, 3.513421 ], [ 29.948730, 4.176594 ], [ 29.712524, 4.603803 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.427124, 4.291636 ], [ 27.976685, 4.412137 ], [ 27.372437, 5.238657 ], [ 27.213135, 5.555848 ], [ 26.460571, 5.949363 ], [ 26.213379, 6.550017 ], [ 25.795898, 6.980954 ], [ 25.120239, 7.504089 ], [ 25.114746, 7.825289 ], [ 24.565430, 8.233237 ], [ 23.884277, 8.624472 ], [ 24.191895, 8.733077 ], [ 24.532471, 8.917634 ], [ 24.790649, 9.811916 ], [ 25.065308, 10.277086 ], [ 25.790405, 10.412183 ], [ 25.960693, 10.136524 ], [ 26.477051, 9.557417 ], [ 26.751709, 9.470736 ], [ 27.108765, 9.638661 ], [ 27.828369, 9.606166 ], [ 27.965698, 9.400291 ], [ 28.965454, 9.400291 ], [ 28.998413, 9.606166 ], [ 29.514771, 9.795678 ], [ 29.613647, 10.087854 ], [ 29.992676, 10.293301 ], [ 30.833130, 9.709057 ], [ 31.349487, 9.811916 ], [ 31.849365, 10.536421 ], [ 32.398682, 11.081385 ], [ 32.310791, 11.684514 ], [ 32.069092, 11.974845 ], [ 32.673340, 12.028576 ], [ 32.739258, 12.248760 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Eritrea", "sov_a3": "ERI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Eritrea", "adm0_a3": "ERI", "geou_dif": 0, "geounit": "Eritrea", "gu_a3": "ERI", "su_dif": 0, "subunit": "Eritrea", "su_a3": "ERI", "brk_diff": 0, "name": "Eritrea", "name_long": "Eritrea", "brk_a3": "ERI", "brk_name": "Eritrea", "abbrev": "Erit.", "postal": "ER", "formal_en": "State of Eritrea", "name_sort": "Eritrea", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 5647168, "gdp_md_est": 3945, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ER", "iso_a3": "ERI", "iso_n3": "232", "un_a3": "232", "wb_a2": "ER", "wb_a3": "ERI", "woe_id": -99, "adm0_a3_is": "ERI", "adm0_a3_us": "ERI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.408203, 17.999632 ], [ 38.990479, 16.841348 ], [ 39.265137, 15.924356 ], [ 39.808960, 15.437796 ], [ 41.176758, 14.493190 ], [ 41.731567, 13.923404 ], [ 42.588501, 13.004558 ], [ 43.077393, 12.704651 ], [ 42.775269, 12.458033 ], [ 42.346802, 12.543840 ], [ 42.006226, 12.870715 ], [ 41.594238, 13.453737 ], [ 41.154785, 13.774066 ], [ 40.891113, 14.120595 ], [ 40.023193, 14.519780 ], [ 39.336548, 14.535733 ], [ 39.094849, 14.743011 ], [ 38.512573, 14.509144 ], [ 37.902832, 14.960706 ], [ 37.589722, 14.216464 ], [ 36.425171, 14.424040 ], [ 36.320801, 14.822681 ], [ 36.749268, 16.293779 ], [ 36.848145, 16.956979 ], [ 37.166748, 17.266728 ], [ 37.902832, 17.429270 ], [ 38.408203, 17.999632 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Djibouti", "sov_a3": "DJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Djibouti", "adm0_a3": "DJI", "geou_dif": 0, "geounit": "Djibouti", "gu_a3": "DJI", "su_dif": 0, "subunit": "Djibouti", "su_a3": "DJI", "brk_diff": 0, "name": "Djibouti", "name_long": "Djibouti", "brk_a3": "DJI", "brk_name": "Djibouti", "abbrev": "Dji.", "postal": "DJ", "formal_en": "Republic of Djibouti", "name_sort": "Djibouti", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 516055, "gdp_md_est": 1885, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "DJ", "iso_a3": "DJI", "iso_n3": "262", "un_a3": "262", "wb_a2": "DJ", "wb_a3": "DJI", "woe_id": -99, "adm0_a3_is": "DJI", "adm0_a3_us": "DJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Middle East & North Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.077393, 12.704651 ], [ 43.313599, 12.393659 ], [ 43.286133, 11.980218 ], [ 42.714844, 11.738302 ], [ 43.143311, 11.463874 ], [ 42.775269, 10.930405 ], [ 42.550049, 11.108337 ], [ 42.313843, 11.038255 ], [ 41.753540, 11.054430 ], [ 41.737061, 11.356182 ], [ 41.660156, 11.636096 ], [ 41.995239, 12.103781 ], [ 42.346802, 12.543840 ], [ 42.775269, 12.458033 ], [ 43.077393, 12.704651 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.293579, 5.506640 ], [ 35.815430, 5.342583 ], [ 35.815430, 4.778995 ], [ 36.156006, 4.450474 ], [ 36.853638, 4.450474 ], [ 38.117065, 3.601142 ], [ 38.435669, 3.590178 ], [ 38.666382, 3.617589 ], [ 38.891602, 3.502455 ], [ 39.556274, 3.425692 ], [ 39.852905, 3.842332 ], [ 40.764771, 4.258768 ], [ 41.171265, 3.924540 ], [ 41.852417, 3.919060 ], [ 40.979004, 2.789425 ], [ 40.989990, 0.000000 ], [ 40.989990, -0.439449 ], [ 33.898315, -0.439449 ], [ 33.892822, 0.000000 ], [ 33.892822, 0.109863 ], [ 34.178467, 0.516350 ], [ 34.667358, 1.180947 ], [ 35.035400, 1.911267 ], [ 34.595947, 3.058239 ], [ 34.475098, 3.557283 ], [ 34.002686, 4.253290 ], [ 35.293579, 5.506640 ] ] ] } } +, +{ "type": "Feature", "properties": { "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": "Polygon", "coordinates": [ [ [ 45.439453, 22.350076 ], [ 45.439453, 17.329664 ], [ 45.395508, 17.334908 ], [ 45.214233, 17.434511 ], [ 45.000000, 17.429270 ], [ 44.060669, 17.413546 ], [ 43.791504, 17.324420 ], [ 43.379517, 17.581194 ], [ 43.110352, 17.093542 ], [ 43.214722, 16.667769 ], [ 42.775269, 16.351768 ], [ 42.648926, 16.778246 ], [ 42.346802, 17.077790 ], [ 42.269897, 17.476432 ], [ 41.753540, 17.837604 ], [ 41.220703, 18.672267 ], [ 40.935059, 19.487308 ], [ 40.242920, 20.179724 ], [ 39.797974, 20.339476 ], [ 39.138794, 21.294493 ], [ 39.028931, 21.943046 ], [ 39.023438, 21.988895 ], [ 39.045410, 22.350076 ], [ 45.439453, 22.350076 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Yemen", "sov_a3": "YEM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Yemen", "adm0_a3": "YEM", "geou_dif": 0, "geounit": "Yemen", "gu_a3": "YEM", "su_dif": 0, "subunit": "Yemen", "su_a3": "YEM", "brk_diff": 0, "name": "Yemen", "name_long": "Yemen", "brk_a3": "YEM", "brk_name": "Yemen", "abbrev": "Yem.", "postal": "YE", "formal_en": "Republic of Yemen", "name_sort": "Yemen, Rep.", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 23822783, "gdp_md_est": 55280, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "YE", "iso_a3": "YEM", "iso_n3": "887", "un_a3": "887", "wb_a2": "RY", "wb_a3": "YEM", "woe_id": -99, "adm0_a3_is": "YEM", "adm0_a3_us": "YEM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.379517, 17.581194 ], [ 43.791504, 17.324420 ], [ 44.060669, 17.413546 ], [ 45.000000, 17.429270 ], [ 45.214233, 17.434511 ], [ 45.395508, 17.334908 ], [ 45.439453, 17.329664 ], [ 45.439453, 13.068777 ], [ 45.401001, 13.031318 ], [ 45.142822, 12.956383 ], [ 45.000000, 12.720726 ], [ 44.989014, 12.704651 ], [ 44.489136, 12.726084 ], [ 44.170532, 12.586732 ], [ 43.478394, 12.640338 ], [ 43.220215, 13.223904 ], [ 43.247681, 13.768731 ], [ 43.082886, 14.067317 ], [ 42.890625, 14.806749 ], [ 42.599487, 15.215288 ], [ 42.802734, 15.262989 ], [ 42.698364, 15.723526 ], [ 42.819214, 15.913791 ], [ 42.775269, 16.351768 ], [ 43.214722, 16.667769 ], [ 43.110352, 17.093542 ], [ 43.379517, 17.581194 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 5.512107 ], [ 45.439453, 1.966167 ], [ 45.000000, 1.675176 ], [ 44.066162, 1.054628 ], [ 43.132324, 0.296630 ], [ 42.868652, 0.000000 ], [ 42.473145, -0.439449 ], [ 40.989990, -0.439449 ], [ 40.989990, 0.000000 ], [ 40.979004, 2.789425 ], [ 41.852417, 3.919060 ], [ 42.127075, 4.236856 ], [ 42.764282, 4.253290 ], [ 43.659668, 4.959615 ], [ 44.961548, 5.003394 ], [ 45.000000, 5.041699 ], [ 45.439453, 5.512107 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.647583, 5.260538 ], [ 26.400146, 5.151128 ], [ 27.042847, 5.129243 ], [ 27.372437, 5.238657 ], [ 27.976685, 4.412137 ], [ 28.427124, 4.291636 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.712524, 4.603803 ], [ 29.948730, 4.176594 ], [ 30.833130, 3.513421 ], [ 30.772705, 2.344926 ], [ 31.173706, 2.207705 ], [ 30.849609, 1.850874 ], [ 30.465088, 1.587321 ], [ 30.086060, 1.065612 ], [ 29.871826, 0.598744 ], [ 29.833374, 0.000000 ], [ 29.816895, -0.203247 ], [ 29.674072, -0.439449 ], [ 22.060547, -0.439449 ], [ 22.060547, 4.121806 ], [ 22.401123, 4.034138 ], [ 22.500000, 4.225900 ], [ 22.703247, 4.636655 ], [ 22.840576, 4.713303 ], [ 23.296509, 4.614753 ], [ 24.406128, 5.112830 ], [ 24.801636, 4.899414 ], [ 25.125732, 4.932251 ], [ 25.274048, 5.173011 ], [ 25.647583, 5.260538 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.927734, 41.310824 ], [ 25.197144, 41.236511 ], [ 25.043335, 41.310824 ], [ 25.927734, 41.310824 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.065918, 41.310824 ], [ 44.967041, 41.248903 ], [ 43.577271, 41.095912 ], [ 43.154297, 41.310824 ], [ 45.065918, 41.310824 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "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": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.697510, 35.706377 ], [ 24.241333, 35.371135 ], [ 25.021362, 35.429344 ], [ 25.768433, 35.357696 ], [ 25.740967, 35.182788 ], [ 26.284790, 35.303919 ], [ 26.163940, 35.007503 ], [ 24.724731, 34.921971 ], [ 24.730225, 35.088451 ], [ 23.510742, 35.281501 ], [ 23.697510, 35.706377 ] ] ], [ [ [ 26.477051, 41.310824 ], [ 26.312256, 40.979898 ], [ 26.290283, 40.938415 ], [ 26.054077, 40.826280 ], [ 25.444336, 40.855371 ], [ 24.922485, 40.950863 ], [ 23.713989, 40.688969 ], [ 24.406128, 40.128491 ], [ 23.895264, 39.964491 ], [ 23.340454, 39.964491 ], [ 22.813110, 40.476203 ], [ 22.620850, 40.258569 ], [ 22.846069, 39.660685 ], [ 23.345947, 39.193948 ], [ 22.972412, 38.972222 ], [ 23.527222, 38.513788 ], [ 24.021606, 38.220920 ], [ 24.038086, 37.657732 ], [ 23.109741, 37.922534 ], [ 23.406372, 37.413800 ], [ 22.774658, 37.309014 ], [ 23.153687, 36.425703 ], [ 22.500000, 36.412442 ], [ 22.489014, 36.412442 ], [ 22.060547, 36.641978 ], [ 22.060547, 41.149706 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.791138, 41.310824 ], [ 25.043335, 41.310824 ], [ 25.197144, 41.236511 ], [ 25.927734, 41.310824 ], [ 26.477051, 41.310824 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Cyprus", "sov_a3": "CYP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cyprus", "adm0_a3": "CYP", "geou_dif": 0, "geounit": "Cyprus", "gu_a3": "CYP", "su_dif": 0, "subunit": "Cyprus", "su_a3": "CYP", "brk_diff": 0, "name": "Cyprus", "name_long": "Cyprus", "brk_a3": "CYP", "brk_name": "Cyprus", "abbrev": "Cyp.", "postal": "CY", "formal_en": "Republic of Cyprus", "name_sort": "Cyprus", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 531640, "gdp_md_est": 22700, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "CY", "iso_a3": "CYP", "iso_n3": "196", "un_a3": "196", "wb_a2": "CY", "wb_a3": "CYP", "woe_id": -99, "adm0_a3_is": "CYP", "adm0_a3_us": "CYP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.189697, 35.173808 ], [ 33.381958, 35.164828 ], [ 33.453369, 35.101934 ], [ 33.475342, 35.003003 ], [ 33.524780, 35.038992 ], [ 33.673096, 35.021000 ], [ 33.865356, 35.097440 ], [ 33.969727, 35.061477 ], [ 34.002686, 34.980502 ], [ 32.975464, 34.574430 ], [ 32.486572, 34.705493 ], [ 32.255859, 35.106428 ], [ 32.728271, 35.142371 ], [ 32.915039, 35.088451 ], [ 33.189697, 35.173808 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.493530, 31.587894 ], [ 27.454834, 31.325487 ], [ 28.449097, 31.029401 ], [ 28.910522, 30.873940 ], [ 29.679565, 31.189308 ], [ 30.091553, 31.475524 ], [ 30.975952, 31.559815 ], [ 31.684570, 31.433350 ], [ 31.959229, 30.935213 ], [ 32.189941, 31.264466 ], [ 32.991943, 31.024694 ], [ 33.771973, 30.968189 ], [ 34.260864, 31.222197 ], [ 34.920044, 29.501769 ], [ 34.639893, 29.104177 ], [ 34.425659, 28.347899 ], [ 34.151001, 27.824503 ], [ 33.920288, 27.649472 ], [ 33.134766, 28.420391 ], [ 32.420654, 29.854937 ], [ 32.316284, 29.764377 ], [ 32.733765, 28.709861 ], [ 33.343506, 27.702984 ], [ 34.101562, 26.145576 ], [ 34.469604, 25.601902 ], [ 34.793701, 25.035839 ], [ 35.689087, 23.931034 ], [ 35.491333, 23.755182 ], [ 35.524292, 23.104997 ], [ 36.688843, 22.207749 ], [ 36.864624, 22.004175 ], [ 24.999390, 22.004175 ], [ 24.999390, 29.243270 ], [ 24.697266, 30.045322 ], [ 24.955444, 30.666266 ], [ 24.801636, 31.090574 ], [ 25.164185, 31.569175 ], [ 26.493530, 31.587894 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 43.154297, 41.310824 ], [ 43.577271, 41.095912 ], [ 43.632202, 40.979898 ], [ 43.747559, 40.743095 ], [ 43.654175, 40.254377 ], [ 44.395752, 40.006580 ], [ 44.791260, 39.715638 ], [ 44.104614, 39.431950 ], [ 44.417725, 38.281313 ], [ 44.225464, 37.974515 ], [ 44.769287, 37.173449 ], [ 44.291382, 37.002553 ], [ 43.939819, 37.256566 ], [ 42.775269, 37.387617 ], [ 42.346802, 37.230328 ], [ 41.209717, 37.077093 ], [ 40.671387, 37.094622 ], [ 39.517822, 36.716871 ], [ 38.699341, 36.716871 ], [ 38.166504, 36.901587 ], [ 37.062378, 36.624345 ], [ 36.738281, 36.818080 ], [ 36.683350, 36.261992 ], [ 36.145020, 35.822267 ], [ 35.776978, 36.275279 ], [ 36.156006, 36.650793 ], [ 35.546265, 36.567012 ], [ 34.711304, 36.796090 ], [ 34.024658, 36.222119 ], [ 32.508545, 36.111253 ], [ 31.695557, 36.646385 ], [ 30.618896, 36.681636 ], [ 30.388184, 36.266421 ], [ 29.696045, 36.146747 ], [ 28.729248, 36.677231 ], [ 27.636108, 36.659606 ], [ 27.048340, 37.653383 ], [ 26.317749, 38.212288 ], [ 26.801147, 38.989303 ], [ 26.169434, 39.465885 ], [ 27.279053, 40.421860 ], [ 28.817139, 40.463666 ], [ 29.102783, 40.979898 ], [ 29.234619, 41.224118 ], [ 31.140747, 41.087632 ], [ 31.552734, 41.310824 ], [ 37.001953, 41.310824 ], [ 38.226929, 40.979898 ], [ 38.342285, 40.950863 ], [ 38.583984, 40.979898 ], [ 39.512329, 41.104191 ], [ 40.369263, 41.017211 ], [ 41.039429, 41.310824 ], [ 43.154297, 41.310824 ] ] ], [ [ [ 28.954468, 41.310824 ], [ 28.987427, 41.302571 ], [ 28.806152, 41.058644 ], [ 27.614136, 41.000630 ], [ 27.586670, 40.979898 ], [ 27.191162, 40.693134 ], [ 26.356201, 40.153687 ], [ 26.043091, 40.618122 ], [ 26.054077, 40.826280 ], [ 26.290283, 40.938415 ], [ 26.312256, 40.979898 ], [ 26.477051, 41.310824 ], [ 28.954468, 41.310824 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Syria", "sov_a3": "SYR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Syria", "adm0_a3": "SYR", "geou_dif": 0, "geounit": "Syria", "gu_a3": "SYR", "su_dif": 0, "subunit": "Syria", "su_a3": "SYR", "brk_diff": 0, "name": "Syria", "name_long": "Syria", "brk_a3": "SYR", "brk_name": "Syria", "abbrev": "Syria", "postal": "SYR", "formal_en": "Syrian Arab Republic", "name_sort": "Syrian Arab Republic", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 20178485, "gdp_md_est": 98830, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SY", "iso_a3": "SYR", "iso_n3": "760", "un_a3": "760", "wb_a2": "SY", "wb_a3": "SYR", "woe_id": -99, "adm0_a3_is": "SYR", "adm0_a3_us": "SYR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.346802, 37.230328 ], [ 41.835938, 36.606709 ], [ 41.286621, 36.359375 ], [ 41.380005, 35.630512 ], [ 41.000977, 34.420505 ], [ 38.787231, 33.380999 ], [ 36.831665, 32.314991 ], [ 35.700073, 32.717977 ], [ 35.831909, 32.870360 ], [ 35.820923, 33.280028 ], [ 36.062622, 33.829357 ], [ 36.606445, 34.202716 ], [ 36.447144, 34.597042 ], [ 35.996704, 34.646766 ], [ 35.903320, 35.411438 ], [ 36.145020, 35.822267 ], [ 36.683350, 36.261992 ], [ 36.738281, 36.818080 ], [ 37.062378, 36.624345 ], [ 38.166504, 36.901587 ], [ 38.699341, 36.716871 ], [ 39.517822, 36.716871 ], [ 40.671387, 37.094622 ], [ 41.209717, 37.077093 ], [ 42.346802, 37.230328 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.775269, 37.387617 ], [ 43.939819, 37.256566 ], [ 44.291382, 37.002553 ], [ 44.769287, 37.173449 ], [ 45.000000, 36.756490 ], [ 45.417480, 35.978006 ], [ 45.439453, 35.969115 ], [ 45.439453, 34.048108 ], [ 45.411987, 33.970698 ], [ 45.439453, 33.938803 ], [ 45.439453, 29.152161 ], [ 45.000000, 29.166552 ], [ 44.708862, 29.180941 ], [ 41.885376, 31.194008 ], [ 40.396729, 31.891551 ], [ 39.193726, 32.161663 ], [ 38.787231, 33.380999 ], [ 41.000977, 34.420505 ], [ 41.380005, 35.630512 ], [ 41.286621, 36.359375 ], [ 41.835938, 36.606709 ], [ 42.346802, 37.230328 ], [ 42.775269, 37.387617 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 1, "level": 2, "type": "Disputed", "admin": "Palestine", "adm0_a3": "PSX", "geou_dif": 0, "geounit": "Palestine", "gu_a3": "PSX", "su_dif": 0, "subunit": "Palestine", "su_a3": "PSX", "brk_diff": 0, "name": "Palestine", "name_long": "Palestine", "brk_a3": "PSX", "brk_name": "Palestine", "abbrev": "Pal.", "postal": "PAL", "formal_en": "West Bank and Gaza", "note_adm0": "Partial self-admin.", "note_brk": "Partial self-admin.", "name_sort": "Palestine (West Bank and Gaza)", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 4119083, "gdp_md_est": 11950.8, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PS", "iso_a3": "PSE", "iso_n3": "275", "un_a3": "275", "wb_a2": "GZ", "wb_a3": "WBG", "woe_id": -99, "adm0_a3_is": "PSE", "adm0_a3_us": "PSX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.183716, 32.532921 ], [ 35.540771, 32.398516 ], [ 35.540771, 31.784217 ], [ 35.392456, 31.489578 ], [ 34.925537, 31.353637 ], [ 34.969482, 31.620644 ], [ 35.222168, 31.756196 ], [ 34.969482, 31.868228 ], [ 35.183716, 32.532921 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Jordan", "sov_a3": "JOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Jordan", "adm0_a3": "JOR", "geou_dif": 0, "geounit": "Jordan", "gu_a3": "JOR", "su_dif": 0, "subunit": "Jordan", "su_a3": "JOR", "brk_diff": 0, "name": "Jordan", "name_long": "Jordan", "brk_a3": "JOR", "brk_name": "Jordan", "abbrev": "Jord.", "postal": "J", "formal_en": "Hashemite Kingdom of Jordan", "name_sort": "Jordan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 6342948, "gdp_md_est": 31610, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "JO", "iso_a3": "JOR", "iso_n3": "400", "un_a3": "400", "wb_a2": "JO", "wb_a3": "JOR", "woe_id": -99, "adm0_a3_is": "JOR", "adm0_a3_us": "JOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.787231, 33.380999 ], [ 39.193726, 32.161663 ], [ 39.001465, 32.012734 ], [ 37.001953, 31.512996 ], [ 37.996216, 30.510217 ], [ 37.666626, 30.339695 ], [ 37.501831, 30.007274 ], [ 36.738281, 29.869229 ], [ 36.496582, 29.506549 ], [ 36.068115, 29.200123 ], [ 34.953003, 29.358239 ], [ 34.920044, 29.501769 ], [ 35.419922, 31.104685 ], [ 35.392456, 31.489578 ], [ 35.540771, 31.784217 ], [ 35.540771, 32.398516 ], [ 35.716553, 32.713355 ], [ 36.831665, 32.314991 ], [ 38.787231, 33.380999 ] ] ] } } +, +{ "type": "Feature", "properties": { "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": "Polygon", "coordinates": [ [ [ 36.864624, 22.004175 ], [ 36.881104, 21.943046 ], [ 37.018433, 21.534847 ], [ 24.999390, 21.534847 ], [ 24.999390, 22.004175 ], [ 36.864624, 22.004175 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.474365 ], [ 45.439453, 39.474365 ], [ 45.439453, 38.891033 ], [ 45.000000, 39.296048 ], [ 44.950562, 39.338546 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ] ] ], [ [ [ 45.439453, 40.867834 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.248903 ], [ 45.065918, 41.310824 ], [ 45.439453, 41.310824 ], [ 45.439453, 40.867834 ] ] ], [ [ [ 45.439453, 40.663973 ], [ 45.439453, 40.513799 ], [ 45.357056, 40.563895 ], [ 45.439453, 40.663973 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 35.969115 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.756490 ], [ 44.769287, 37.173449 ], [ 44.225464, 37.974515 ], [ 44.417725, 38.281313 ], [ 44.104614, 39.431950 ], [ 44.791260, 39.715638 ], [ 44.950562, 39.338546 ], [ 45.000000, 39.296048 ], [ 45.439453, 38.891033 ], [ 45.439453, 35.969115 ] ] ], [ [ [ 45.439453, 34.048108 ], [ 45.439453, 33.938803 ], [ 45.411987, 33.970698 ], [ 45.439453, 34.048108 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Poland", "sov_a3": "POL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Poland", "adm0_a3": "POL", "geou_dif": 0, "geounit": "Poland", "gu_a3": "POL", "su_dif": 0, "subunit": "Poland", "su_a3": "POL", "brk_diff": 0, "name": "Poland", "name_long": "Poland", "brk_a3": "POL", "brk_name": "Poland", "abbrev": "Pol.", "postal": "PL", "formal_en": "Republic of Poland", "name_sort": "Poland", "mapcolor7": 3, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 38482919, "gdp_md_est": 667900, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PL", "iso_a3": "POL", "iso_n3": "616", "un_a3": "616", "wb_a2": "PL", "wb_a3": "POL", "woe_id": -99, "adm0_a3_is": "POL", "adm0_a3_us": "POL", "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": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.730713, 54.329338 ], [ 23.241577, 54.223496 ], [ 23.483276, 53.914046 ], [ 23.527222, 53.471700 ], [ 23.801880, 53.090725 ], [ 23.796387, 52.693032 ], [ 23.197632, 52.489470 ], [ 23.505249, 52.025459 ], [ 23.521729, 51.580483 ], [ 24.027100, 50.708634 ], [ 23.922729, 50.426019 ], [ 23.422852, 50.310392 ], [ 22.516479, 49.478832 ], [ 22.774658, 49.030665 ], [ 22.554932, 49.088258 ], [ 22.500000, 49.109838 ], [ 22.060547, 49.289306 ], [ 22.060547, 54.322931 ], [ 22.500000, 54.326135 ], [ 22.730713, 54.329338 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.060547, 49.289306 ], [ 22.500000, 49.109838 ], [ 22.554932, 49.088258 ], [ 22.500000, 49.034267 ], [ 22.280273, 48.828566 ], [ 22.082520, 48.425555 ], [ 22.060547, 48.410972 ], [ 22.060547, 49.289306 ] ] ] } } +, +{ "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": [ [ [ 22.456055, 44.703802 ], [ 22.500000, 44.684277 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.429857 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.386692 ], [ 22.653809, 44.237328 ], [ 22.500000, 44.091531 ], [ 22.406616, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.213183 ], [ 22.604370, 42.900113 ], [ 22.500000, 42.702623 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.512602 ], [ 22.543945, 42.463993 ], [ 22.500000, 42.423457 ], [ 22.379150, 42.322001 ], [ 22.060547, 42.309815 ], [ 22.060547, 44.523927 ], [ 22.142944, 44.480830 ], [ 22.456055, 44.703802 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "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": "Polygon", "coordinates": [ [ [ 27.767944, 56.022948 ], [ 27.075806, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.174927, 55.776573 ], [ 25.686035, 56.022948 ], [ 27.767944, 56.022948 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.686035, 56.022948 ], [ 26.174927, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.586914, 55.169456 ], [ 25.768433, 54.848153 ], [ 25.532227, 54.284469 ], [ 24.450073, 53.907574 ], [ 23.483276, 53.914046 ], [ 23.241577, 54.223496 ], [ 22.730713, 54.329338 ], [ 22.648315, 54.584797 ], [ 22.752686, 54.857640 ], [ 22.500000, 54.949231 ], [ 22.313232, 55.015426 ], [ 22.060547, 55.059495 ], [ 22.060547, 56.022948 ], [ 25.686035, 56.022948 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Belarus", "sov_a3": "BLR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belarus", "adm0_a3": "BLR", "geou_dif": 0, "geounit": "Belarus", "gu_a3": "BLR", "su_dif": 0, "subunit": "Belarus", "su_a3": "BLR", "brk_diff": 0, "name": "Belarus", "name_long": "Belarus", "brk_a3": "BLR", "brk_name": "Belarus", "abbrev": "Bela.", "postal": "BY", "formal_en": "Republic of Belarus", "name_sort": "Belarus", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 9648533, "gdp_md_est": 114100, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BY", "iso_a3": "BLR", "iso_n3": "112", "un_a3": "112", "wb_a2": "BY", "wb_a3": "BLR", "woe_id": -99, "adm0_a3_is": "BLR", "adm0_a3_us": "BLR", "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": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.789673, 56.022948 ], [ 29.229126, 55.918430 ], [ 29.306030, 55.776573 ], [ 29.366455, 55.671389 ], [ 29.838867, 55.776573 ], [ 29.893799, 55.792017 ], [ 29.948730, 55.776573 ], [ 30.871582, 55.553495 ], [ 30.970459, 55.084656 ], [ 30.756226, 54.813348 ], [ 31.382446, 54.159218 ], [ 31.788940, 53.975474 ], [ 31.728516, 53.794162 ], [ 32.404175, 53.618579 ], [ 32.689819, 53.353830 ], [ 32.299805, 53.133590 ], [ 31.492310, 53.169826 ], [ 31.300049, 53.074228 ], [ 31.536255, 52.742943 ], [ 31.783447, 52.103131 ], [ 30.926514, 52.042355 ], [ 30.618896, 51.825593 ], [ 30.552979, 51.320314 ], [ 30.151978, 51.416338 ], [ 29.251099, 51.368351 ], [ 28.987427, 51.604372 ], [ 28.613892, 51.430039 ], [ 28.240356, 51.573656 ], [ 27.449341, 51.594135 ], [ 26.334229, 51.832383 ], [ 25.323486, 51.913779 ], [ 24.548950, 51.890054 ], [ 23.999634, 51.618017 ], [ 23.521729, 51.580483 ], [ 23.505249, 52.025459 ], [ 23.197632, 52.489470 ], [ 23.796387, 52.693032 ], [ 23.801880, 53.090725 ], [ 23.527222, 53.471700 ], [ 23.483276, 53.914046 ], [ 24.450073, 53.907574 ], [ 25.532227, 54.284469 ], [ 25.768433, 54.848153 ], [ 26.586914, 55.169456 ], [ 26.493530, 55.615589 ], [ 27.075806, 55.776573 ], [ 27.767944, 56.022948 ], [ 28.789673, 56.022948 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.653809, 44.237328 ], [ 22.939453, 43.826601 ], [ 23.329468, 43.897892 ], [ 24.098511, 43.743321 ], [ 25.565186, 43.691708 ], [ 26.065063, 43.945372 ], [ 27.240601, 44.178265 ], [ 27.965698, 43.814711 ], [ 28.553467, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.669067, 42.581400 ], [ 27.993164, 42.008489 ], [ 27.130737, 42.143042 ], [ 26.114502, 41.828642 ], [ 26.103516, 41.331451 ], [ 25.197144, 41.236511 ], [ 24.488525, 41.586688 ], [ 23.692017, 41.310824 ], [ 22.950439, 41.339700 ], [ 22.879028, 42.000325 ], [ 22.500000, 42.244785 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.423457 ], [ 22.543945, 42.463993 ], [ 22.500000, 42.512602 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.702623 ], [ 22.604370, 42.900113 ], [ 22.983398, 43.213183 ], [ 22.500000, 43.644026 ], [ 22.406616, 44.008620 ], [ 22.500000, 44.091531 ], [ 22.653809, 44.237328 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Moldova", "sov_a3": "MDA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Moldova", "adm0_a3": "MDA", "geou_dif": 0, "geounit": "Moldova", "gu_a3": "MDA", "su_dif": 0, "subunit": "Moldova", "su_a3": "MDA", "brk_diff": 0, "name": "Moldova", "name_long": "Moldova", "brk_a3": "MDA", "brk_name": "Moldova", "abbrev": "Mda.", "postal": "MD", "formal_en": "Republic of Moldova", "name_sort": "Moldova", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 4, "mapcolor13": 12, "pop_est": 4320748, "gdp_md_est": 10670, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MD", "iso_a3": "MDA", "iso_n3": "498", "un_a3": "498", "wb_a2": "MD", "wb_a3": "MDA", "woe_id": -99, "adm0_a3_is": "MDA", "adm0_a3_us": "MDA", "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": "Polygon", "coordinates": [ [ [ 27.520752, 48.469279 ], [ 28.256836, 48.158757 ], [ 28.668823, 48.118434 ], [ 29.119263, 47.850031 ], [ 29.047852, 47.513491 ], [ 29.410400, 47.349989 ], [ 29.558716, 46.931510 ], [ 29.904785, 46.675826 ], [ 29.833374, 46.528635 ], [ 30.020142, 46.426499 ], [ 29.756470, 46.350719 ], [ 29.168701, 46.381044 ], [ 29.069824, 46.521076 ], [ 28.861084, 46.441642 ], [ 28.932495, 46.259645 ], [ 28.657837, 45.943511 ], [ 28.482056, 45.598666 ], [ 28.229370, 45.490946 ], [ 28.053589, 45.947330 ], [ 28.157959, 46.373464 ], [ 28.125000, 46.811339 ], [ 27.548218, 47.405785 ], [ 27.229614, 47.827908 ], [ 26.921997, 48.125768 ], [ 26.614380, 48.221013 ], [ 26.856079, 48.370848 ], [ 27.520752, 48.469279 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.072632, 43.556510 ], [ 40.918579, 43.385090 ], [ 42.390747, 43.221190 ], [ 43.753052, 42.742978 ], [ 43.928833, 42.557127 ], [ 44.533081, 42.714732 ], [ 45.000000, 42.609706 ], [ 45.439453, 42.512602 ], [ 45.439453, 41.327326 ], [ 45.214233, 41.413896 ], [ 45.000000, 41.269550 ], [ 44.967041, 41.248903 ], [ 43.577271, 41.095912 ], [ 42.615967, 41.586688 ], [ 41.550293, 41.537366 ], [ 41.698608, 41.963575 ], [ 41.451416, 42.646081 ], [ 40.874634, 43.016697 ], [ 40.319824, 43.129052 ], [ 39.951782, 43.436966 ], [ 40.072632, 43.556510 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "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": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.114502, 41.828642 ], [ 26.603394, 41.566142 ], [ 26.312256, 40.979898 ], [ 26.290283, 40.938415 ], [ 26.054077, 40.826280 ], [ 25.444336, 40.855371 ], [ 24.922485, 40.950863 ], [ 23.713989, 40.688969 ], [ 23.763428, 40.647304 ], [ 22.060547, 40.647304 ], [ 22.060547, 41.149706 ], [ 22.500000, 41.137296 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.950439, 41.339700 ], [ 23.692017, 41.310824 ], [ 24.488525, 41.586688 ], [ 25.197144, 41.236511 ], [ 26.103516, 41.331451 ], [ 26.114502, 41.828642 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.167236, 42.041134 ], [ 36.908569, 41.335576 ], [ 38.226929, 40.979898 ], [ 38.342285, 40.950863 ], [ 38.583984, 40.979898 ], [ 39.512329, 41.104191 ], [ 40.369263, 41.017211 ], [ 41.550293, 41.537366 ], [ 42.615967, 41.586688 ], [ 43.577271, 41.095912 ], [ 43.632202, 40.979898 ], [ 43.747559, 40.743095 ], [ 43.731079, 40.647304 ], [ 28.921509, 40.647304 ], [ 29.102783, 40.979898 ], [ 29.234619, 41.224118 ], [ 31.140747, 41.087632 ], [ 32.343750, 41.738528 ], [ 33.508301, 42.020733 ], [ 35.167236, 42.041134 ] ] ], [ [ [ 27.130737, 42.143042 ], [ 27.993164, 42.008489 ], [ 28.114014, 41.623655 ], [ 28.987427, 41.302571 ], [ 28.806152, 41.058644 ], [ 27.614136, 41.000630 ], [ 27.586670, 40.979898 ], [ 27.191162, 40.693134 ], [ 27.119751, 40.647304 ], [ 26.043091, 40.647304 ], [ 26.054077, 40.826280 ], [ 26.290283, 40.938415 ], [ 26.312256, 40.979898 ], [ 26.603394, 41.566142 ], [ 26.114502, 41.828642 ], [ 27.130737, 42.143042 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 40.867834 ], [ 45.175781, 40.988192 ], [ 45.000000, 41.215854 ], [ 44.967041, 41.248903 ], [ 45.000000, 41.269550 ], [ 45.214233, 41.413896 ], [ 45.439453, 41.327326 ], [ 45.439453, 40.867834 ] ] ], [ [ [ 45.439453, 40.663973 ], [ 45.439453, 40.647304 ], [ 45.422974, 40.647304 ], [ 45.439453, 40.663973 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "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": "Polygon", "coordinates": [ [ [ 23.560181, 66.687784 ], [ 23.560181, 66.513260 ], [ 23.565674, 66.396961 ], [ 23.900757, 66.009086 ], [ 22.500000, 65.777998 ], [ 22.181396, 65.723852 ], [ 22.060547, 65.637889 ], [ 22.060547, 66.687784 ], [ 23.560181, 66.687784 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.317017, 66.687784 ], [ 29.498291, 66.513260 ], [ 30.212402, 65.807279 ], [ 29.542236, 64.949139 ], [ 30.443115, 64.206377 ], [ 30.031128, 63.553446 ], [ 31.514282, 62.870179 ], [ 31.135254, 62.359805 ], [ 30.206909, 61.780916 ], [ 28.064575, 60.505935 ], [ 26.251831, 60.424699 ], [ 24.494019, 60.059358 ], [ 22.868042, 59.847574 ], [ 22.500000, 60.196156 ], [ 22.285767, 60.392148 ], [ 22.060547, 60.470758 ], [ 22.060547, 63.555892 ], [ 22.439575, 63.818864 ], [ 22.500000, 63.845512 ], [ 24.730225, 64.902580 ], [ 25.394897, 65.111460 ], [ 25.290527, 65.535721 ], [ 23.900757, 66.009086 ], [ 23.565674, 66.396961 ], [ 23.560181, 66.513260 ], [ 23.560181, 66.687784 ], [ 29.317017, 66.687784 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Estonia", "sov_a3": "EST", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Estonia", "adm0_a3": "EST", "geou_dif": 0, "geounit": "Estonia", "gu_a3": "EST", "su_dif": 0, "subunit": "Estonia", "su_a3": "EST", "brk_diff": 0, "name": "Estonia", "name_long": "Estonia", "brk_a3": "EST", "brk_name": "Estonia", "abbrev": "Est.", "postal": "EST", "formal_en": "Republic of Estonia", "name_sort": "Estonia", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 10, "pop_est": 1299371, "gdp_md_est": 27410, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "EE", "iso_a3": "EST", "iso_n3": "233", "un_a3": "233", "wb_a2": "EE", "wb_a3": "EST", "woe_id": -99, "adm0_a3_is": "EST", "adm0_a3_us": "EST", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.861816, 59.612212 ], [ 26.943970, 59.447868 ], [ 27.976685, 59.475779 ], [ 28.130493, 59.302356 ], [ 27.416382, 58.725451 ], [ 27.713013, 57.792089 ], [ 27.284546, 57.477450 ], [ 26.460571, 57.477450 ], [ 25.598145, 57.847674 ], [ 25.164185, 57.970244 ], [ 24.312744, 57.795016 ], [ 24.428101, 58.384438 ], [ 24.060059, 58.257508 ], [ 23.422852, 58.614056 ], [ 23.334961, 59.189999 ], [ 24.603882, 59.467408 ], [ 25.861816, 59.612212 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.856567, 56.374377 ], [ 24.999390, 56.166965 ], [ 25.532227, 56.102683 ], [ 26.174927, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.510010, 55.528631 ], [ 22.060547, 55.528631 ], [ 22.060547, 56.301301 ], [ 22.197876, 56.337856 ], [ 22.500000, 56.328721 ], [ 23.873291, 56.273861 ], [ 24.856567, 56.374377 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 28.163452, 71.185982 ], [ 31.289062, 70.455184 ], [ 30.003662, 70.186965 ], [ 31.096802, 69.559471 ], [ 29.399414, 69.158650 ], [ 28.591919, 69.066601 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.164610 ], [ 26.174927, 69.826365 ], [ 25.686035, 69.094060 ], [ 24.730225, 68.650556 ], [ 23.659058, 68.893209 ], [ 22.500000, 68.847665 ], [ 22.351685, 68.843700 ], [ 22.060547, 68.984016 ], [ 22.060547, 70.233460 ], [ 22.500000, 70.220452 ], [ 23.021851, 70.203715 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.986560 ], [ 28.163452, 71.185982 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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": "Polygon", "coordinates": [ [ [ 22.060547, 68.582459 ], [ 22.500000, 68.393113 ], [ 23.538208, 67.937524 ], [ 23.560181, 66.513260 ], [ 23.565674, 66.396961 ], [ 23.615112, 66.337505 ], [ 22.060547, 66.337505 ], [ 22.060547, 68.582459 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 22.917480, 80.657741 ], [ 25.444336, 80.407473 ], [ 27.405396, 80.057101 ], [ 25.922241, 79.518659 ], [ 23.021851, 79.400085 ], [ 22.500000, 79.430356 ], [ 22.060547, 79.455516 ], [ 22.060547, 80.403810 ], [ 22.500000, 80.534782 ], [ 22.917480, 80.657741 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 55.437012, 22.350076 ], [ 55.662231, 22.004175 ], [ 55.645752, 21.943046 ], [ 54.997559, 20.004322 ], [ 51.998291, 19.004997 ], [ 49.114380, 18.620219 ], [ 48.180542, 18.166730 ], [ 47.466431, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.746826, 17.287709 ], [ 46.362305, 17.235252 ], [ 45.395508, 17.334908 ], [ 45.214233, 17.434511 ], [ 45.000000, 17.429270 ], [ 44.560547, 17.424029 ], [ 44.560547, 22.350076 ], [ 55.437012, 22.350076 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Yemen", "sov_a3": "YEM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Yemen", "adm0_a3": "YEM", "geou_dif": 0, "geounit": "Yemen", "gu_a3": "YEM", "su_dif": 0, "subunit": "Yemen", "su_a3": "YEM", "brk_diff": 0, "name": "Yemen", "name_long": "Yemen", "brk_a3": "YEM", "brk_name": "Yemen", "abbrev": "Yem.", "postal": "YE", "formal_en": "Republic of Yemen", "name_sort": "Yemen, Rep.", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 23822783, "gdp_md_est": 55280, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "YE", "iso_a3": "YEM", "iso_n3": "887", "un_a3": "887", "wb_a2": "RY", "wb_a3": "YEM", "woe_id": -99, "adm0_a3_is": "YEM", "adm0_a3_us": "YEM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.998291, 19.004997 ], [ 52.778320, 17.350638 ], [ 53.107910, 16.651981 ], [ 52.382812, 16.383391 ], [ 52.190552, 15.940202 ], [ 52.163086, 15.601875 ], [ 51.168823, 15.178181 ], [ 49.570312, 14.711135 ], [ 48.674927, 14.003367 ], [ 48.235474, 13.950061 ], [ 47.938843, 14.008696 ], [ 47.351074, 13.592600 ], [ 46.713867, 13.400307 ], [ 45.873413, 13.352210 ], [ 45.620728, 13.293411 ], [ 45.401001, 13.031318 ], [ 45.142822, 12.956383 ], [ 45.000000, 12.720726 ], [ 44.989014, 12.704651 ], [ 44.560547, 12.720726 ], [ 44.560547, 17.424029 ], [ 45.000000, 17.429270 ], [ 45.214233, 17.434511 ], [ 45.395508, 17.334908 ], [ 46.362305, 17.235252 ], [ 46.746826, 17.287709 ], [ 46.999512, 16.951724 ], [ 47.466431, 17.119793 ], [ 48.180542, 18.166730 ], [ 49.114380, 18.620219 ], [ 51.998291, 19.004997 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "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": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.944092, 11.415418 ], [ 48.938599, 11.399264 ], [ 48.933105, 10.984335 ], [ 48.933105, 9.454480 ], [ 48.482666, 8.841651 ], [ 47.785034, 8.004837 ], [ 46.944580, 7.999397 ], [ 45.000000, 8.705929 ], [ 44.560547, 8.868790 ], [ 44.560547, 10.444598 ], [ 44.609985, 10.444598 ], [ 45.000000, 10.547221 ], [ 45.554810, 10.698394 ], [ 46.642456, 10.817120 ], [ 47.521362, 11.129897 ], [ 48.021240, 11.194568 ], [ 48.378296, 11.377724 ], [ 48.944092, 11.415418 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.108398, 12.028576 ], [ 51.130371, 11.749059 ], [ 51.036987, 11.167624 ], [ 51.042480, 10.644412 ], [ 50.833740, 10.282491 ], [ 50.548096, 9.199715 ], [ 50.070190, 8.086423 ], [ 49.449463, 6.806444 ], [ 48.592529, 5.342583 ], [ 47.735596, 4.220421 ], [ 46.560059, 2.860749 ], [ 45.560303, 2.048514 ], [ 45.000000, 1.675176 ], [ 44.560547, 1.384143 ], [ 44.560547, 4.992450 ], [ 44.961548, 5.003394 ], [ 45.000000, 5.041699 ], [ 47.785034, 8.004837 ], [ 48.482666, 8.841651 ], [ 48.933105, 9.454480 ], [ 48.938599, 11.399264 ], [ 48.944092, 11.415418 ], [ 49.262695, 11.431571 ], [ 49.724121, 11.582288 ], [ 50.256958, 11.684514 ], [ 50.729370, 12.023203 ], [ 51.108398, 12.028576 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.516113, 41.310824 ], [ 46.636963, 41.182788 ], [ 46.499634, 41.066928 ], [ 45.961304, 41.124884 ], [ 45.477905, 41.310824 ], [ 46.516113, 41.310824 ] ] ], [ [ [ 45.065918, 41.310824 ], [ 44.967041, 41.248903 ], [ 44.560547, 41.203456 ], [ 44.560547, 41.310824 ], [ 45.065918, 41.310824 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 44.560547, 37.483577 ], [ 44.769287, 37.173449 ], [ 44.560547, 37.099003 ], [ 44.560547, 37.483577 ] ] ], [ [ [ 44.560547, 39.618384 ], [ 44.560547, 39.888665 ], [ 44.791260, 39.715638 ], [ 44.560547, 39.618384 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.939453, 41.310824 ], [ 67.939453, 41.137296 ], [ 66.708984, 41.170384 ], [ 66.676025, 41.310824 ], [ 67.939453, 41.310824 ] ] ], [ [ [ 55.964355, 41.310824 ], [ 55.453491, 41.261291 ], [ 55.409546, 41.310824 ], [ 55.964355, 41.310824 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 66.676025, 41.310824 ], [ 66.708984, 41.170384 ], [ 67.939453, 41.137296 ], [ 67.939453, 39.567588 ], [ 67.697754, 39.584524 ], [ 67.500000, 39.240763 ], [ 67.439575, 39.142842 ], [ 67.500000, 39.121537 ], [ 67.939453, 38.980763 ], [ 67.939453, 37.343959 ], [ 67.829590, 37.147182 ], [ 67.500000, 37.239075 ], [ 67.071533, 37.357059 ], [ 66.516724, 37.365791 ], [ 66.544189, 37.978845 ], [ 65.214844, 38.406254 ], [ 64.165649, 38.895308 ], [ 63.517456, 39.364032 ], [ 62.369385, 40.057052 ], [ 61.929932, 40.979898 ], [ 61.880493, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.463257, 41.224118 ], [ 60.292969, 41.310824 ], [ 66.676025, 41.310824 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 49.081421, 41.310824 ], [ 49.108887, 41.286062 ], [ 49.323120, 40.979898 ], [ 49.614258, 40.576413 ], [ 50.081177, 40.526327 ], [ 50.388794, 40.258569 ], [ 49.564819, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.053318 ], [ 48.856201, 38.818311 ], [ 48.878174, 38.324420 ], [ 48.630981, 38.272689 ], [ 48.010254, 38.796908 ], [ 48.350830, 39.291797 ], [ 48.059692, 39.584524 ], [ 47.680664, 39.512517 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.465885 ], [ 46.032715, 39.631077 ], [ 45.609741, 39.901309 ], [ 45.889893, 40.220830 ], [ 45.357056, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.186768, 40.979898 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.248903 ], [ 45.065918, 41.310824 ], [ 45.477905, 41.310824 ], [ 45.961304, 41.124884 ], [ 46.499634, 41.066928 ], [ 46.636963, 41.182788 ], [ 46.516113, 41.310824 ], [ 47.268677, 41.310824 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.922363, 41.310824 ], [ 49.081421, 41.310824 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.474365 ], [ 45.736084, 39.474365 ], [ 45.730591, 39.321550 ], [ 46.142578, 38.741231 ], [ 45.455933, 38.878205 ], [ 45.000000, 39.296048 ], [ 44.950562, 39.338546 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.791260, 39.715638 ], [ 44.950562, 39.338546 ], [ 45.000000, 39.296048 ], [ 45.455933, 38.878205 ], [ 46.142578, 38.741231 ], [ 46.505127, 38.771216 ], [ 47.680664, 39.512517 ], [ 48.059692, 39.584524 ], [ 48.350830, 39.291797 ], [ 48.010254, 38.796908 ], [ 48.630981, 38.272689 ], [ 48.878174, 38.324420 ], [ 49.196777, 37.583766 ], [ 50.147095, 37.378888 ], [ 50.839233, 36.875227 ], [ 52.261963, 36.703660 ], [ 53.822021, 36.967449 ], [ 53.920898, 37.199706 ], [ 54.799805, 37.396346 ], [ 55.508423, 37.965854 ], [ 56.178589, 37.935533 ], [ 56.618042, 38.121593 ], [ 57.326660, 38.030786 ], [ 58.430786, 37.522797 ], [ 59.232788, 37.413800 ], [ 60.375366, 36.531709 ], [ 61.122437, 36.491973 ], [ 61.210327, 35.652833 ], [ 60.798340, 34.406910 ], [ 60.523682, 33.678640 ], [ 60.963135, 33.532237 ], [ 60.534668, 32.985628 ], [ 60.858765, 32.184911 ], [ 60.941162, 31.550453 ], [ 61.699219, 31.381779 ], [ 61.776123, 30.737114 ], [ 60.869751, 29.831114 ], [ 61.364136, 29.305561 ], [ 61.770630, 28.700225 ], [ 62.726440, 28.260844 ], [ 62.753906, 27.381523 ], [ 63.231812, 27.220441 ], [ 63.314209, 26.760326 ], [ 61.869507, 26.244156 ], [ 61.495972, 25.080624 ], [ 59.611816, 25.383735 ], [ 58.524170, 25.611810 ], [ 57.392578, 25.740529 ], [ 56.969604, 26.966142 ], [ 56.491699, 27.147145 ], [ 55.722656, 26.966142 ], [ 54.711914, 26.485324 ], [ 53.492432, 26.814266 ], [ 52.481689, 27.581329 ], [ 51.520386, 27.868217 ], [ 50.850220, 28.815800 ], [ 50.114136, 30.149877 ], [ 49.575806, 29.988245 ], [ 48.938599, 30.320730 ], [ 48.565063, 29.931135 ], [ 48.010254, 30.453409 ], [ 47.999268, 30.987028 ], [ 47.680664, 30.987028 ], [ 47.845459, 31.709476 ], [ 47.334595, 32.472695 ], [ 46.104126, 33.017876 ], [ 45.411987, 33.970698 ], [ 45.648193, 34.750640 ], [ 46.148071, 35.097440 ], [ 46.071167, 35.679610 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.756490 ], [ 44.769287, 37.173449 ], [ 44.560547, 37.483577 ], [ 44.560547, 39.618384 ], [ 44.791260, 39.715638 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Kuwait", "sov_a3": "KWT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kuwait", "adm0_a3": "KWT", "geou_dif": 0, "geounit": "Kuwait", "gu_a3": "KWT", "su_dif": 0, "subunit": "Kuwait", "su_a3": "KWT", "brk_diff": 0, "name": "Kuwait", "name_long": "Kuwait", "brk_a3": "KWT", "brk_name": "Kuwait", "abbrev": "Kwt.", "postal": "KW", "formal_en": "State of Kuwait", "name_sort": "Kuwait", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 2691158, "gdp_md_est": 149100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "KW", "iso_a3": "KWT", "iso_n3": "414", "un_a3": "414", "wb_a2": "KW", "wb_a3": "KWT", "woe_id": -99, "adm0_a3_is": "KWT", "adm0_a3_us": "KWT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.301636, 30.059586 ], [ 47.971802, 29.978729 ], [ 48.180542, 29.535230 ], [ 48.092651, 29.310351 ], [ 48.411255, 28.555576 ], [ 47.708130, 28.526622 ], [ 47.455444, 29.003336 ], [ 46.565552, 29.099377 ], [ 47.301636, 30.059586 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Qatar", "sov_a3": "QAT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Qatar", "adm0_a3": "QAT", "geou_dif": 0, "geounit": "Qatar", "gu_a3": "QAT", "su_dif": 0, "subunit": "Qatar", "su_a3": "QAT", "brk_diff": 0, "name": "Qatar", "name_long": "Qatar", "brk_a3": "QAT", "brk_name": "Qatar", "abbrev": "Qatar", "postal": "QA", "formal_en": "State of Qatar", "name_sort": "Qatar", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 833285, "gdp_md_est": 91330, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "QA", "iso_a3": "QAT", "iso_n3": "634", "un_a3": "634", "wb_a2": "QA", "wb_a3": "QAT", "woe_id": -99, "adm0_a3_is": "QAT", "adm0_a3_us": "QAT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.284180, 26.115986 ], [ 51.586304, 25.804837 ], [ 51.602783, 25.219851 ], [ 51.388550, 24.632038 ], [ 51.108398, 24.557116 ], [ 50.806274, 24.756808 ], [ 50.740356, 25.482951 ], [ 51.009521, 26.007424 ], [ 51.284180, 26.115986 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "United Arab Emirates", "sov_a3": "ARE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Arab Emirates", "adm0_a3": "ARE", "geou_dif": 0, "geounit": "United Arab Emirates", "gu_a3": "ARE", "su_dif": 0, "subunit": "United Arab Emirates", "su_a3": "ARE", "brk_diff": 0, "name": "United Arab Emirates", "name_long": "United Arab Emirates", "brk_a3": "ARE", "brk_name": "United Arab Emirates", "abbrev": "U.A.E.", "postal": "AE", "formal_en": "United Arab Emirates", "name_sort": "United Arab Emirates", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 4798491, "gdp_md_est": 184300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AE", "iso_a3": "ARE", "iso_n3": "784", "un_a3": "784", "wb_a2": "AE", "wb_a3": "ARE", "woe_id": -99, "adm0_a3_is": "ARE", "adm0_a3_us": "ARE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 20, "long_len": 20, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.068726, 26.056783 ], [ 56.260986, 25.715786 ], [ 56.392822, 24.926295 ], [ 55.881958, 24.921313 ], [ 55.799561, 24.272005 ], [ 55.980835, 24.131715 ], [ 55.524902, 23.936055 ], [ 55.524902, 23.528737 ], [ 55.233765, 23.115102 ], [ 55.206299, 22.710323 ], [ 55.003052, 22.497332 ], [ 51.998291, 23.003908 ], [ 51.613770, 24.016362 ], [ 51.575317, 24.246965 ], [ 51.756592, 24.297040 ], [ 51.789551, 24.021379 ], [ 52.575073, 24.181836 ], [ 53.399048, 24.151766 ], [ 54.003296, 24.126702 ], [ 54.689941, 24.801695 ], [ 55.437012, 25.443275 ], [ 56.068726, 26.056783 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Oman", "sov_a3": "OMN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Oman", "adm0_a3": "OMN", "geou_dif": 0, "geounit": "Oman", "gu_a3": "OMN", "su_dif": 0, "subunit": "Oman", "su_a3": "OMN", "brk_diff": 0, "name": "Oman", "name_long": "Oman", "brk_a3": "OMN", "brk_name": "Oman", "abbrev": "Oman", "postal": "OM", "formal_en": "Sultanate of Oman", "name_sort": "Oman", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3418085, "gdp_md_est": 66980, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "OM", "iso_a3": "OMN", "iso_n3": "512", "un_a3": "512", "wb_a2": "OM", "wb_a3": "OMN", "woe_id": -99, "adm0_a3_is": "OMN", "adm0_a3_us": "OMN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.392822, 24.926295 ], [ 56.843262, 24.241956 ], [ 57.398071, 23.880815 ], [ 58.134155, 23.750154 ], [ 58.727417, 23.569022 ], [ 59.447021, 22.664710 ], [ 59.804077, 22.537927 ], [ 59.804077, 22.314508 ], [ 59.578857, 21.943046 ], [ 59.441528, 21.718680 ], [ 59.337158, 21.534847 ], [ 55.508423, 21.534847 ], [ 55.645752, 21.943046 ], [ 55.662231, 22.004175 ], [ 55.206299, 22.710323 ], [ 55.233765, 23.115102 ], [ 55.524902, 23.528737 ], [ 55.524902, 23.936055 ], [ 55.980835, 24.131715 ], [ 55.799561, 24.272005 ], [ 55.881958, 24.921313 ], [ 56.392822, 24.926295 ] ] ], [ [ [ 56.359863, 26.396790 ], [ 56.480713, 26.313113 ], [ 56.387329, 25.898762 ], [ 56.260986, 25.715786 ], [ 56.068726, 26.056783 ], [ 56.359863, 26.396790 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.939453, 38.980763 ], [ 67.500000, 39.121537 ], [ 67.439575, 39.142842 ], [ 67.500000, 39.240763 ], [ 67.697754, 39.584524 ], [ 67.939453, 39.567588 ], [ 67.939453, 38.980763 ] ] ], [ [ [ 67.939453, 37.343959 ], [ 67.939453, 37.103384 ], [ 67.829590, 37.147182 ], [ 67.939453, 37.343959 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 65.742188, 37.662081 ], [ 66.214600, 37.396346 ], [ 66.516724, 37.365791 ], [ 67.071533, 37.357059 ], [ 67.500000, 37.239075 ], [ 67.829590, 37.147182 ], [ 67.939453, 37.103384 ], [ 67.939453, 31.611288 ], [ 67.791138, 31.583215 ], [ 67.681274, 31.306715 ], [ 66.934204, 31.306715 ], [ 66.379395, 30.741836 ], [ 66.346436, 29.888281 ], [ 65.044556, 29.473079 ], [ 64.346924, 29.563902 ], [ 64.143677, 29.343875 ], [ 63.544922, 29.473079 ], [ 62.545166, 29.319931 ], [ 60.869751, 29.831114 ], [ 61.776123, 30.737114 ], [ 61.699219, 31.381779 ], [ 60.941162, 31.550453 ], [ 60.858765, 32.184911 ], [ 60.534668, 32.985628 ], [ 60.963135, 33.532237 ], [ 60.523682, 33.678640 ], [ 60.798340, 34.406910 ], [ 61.210327, 35.652833 ], [ 62.226562, 35.272532 ], [ 62.984619, 35.406961 ], [ 63.193359, 35.857892 ], [ 63.978882, 36.009117 ], [ 64.544678, 36.315125 ], [ 64.742432, 37.112146 ], [ 65.588379, 37.309014 ], [ 65.742188, 37.662081 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.560547, 42.710696 ], [ 45.000000, 42.609706 ], [ 45.466919, 42.504503 ], [ 45.774536, 42.094146 ], [ 46.400757, 41.861379 ], [ 46.142578, 41.726230 ], [ 46.636963, 41.182788 ], [ 46.499634, 41.066928 ], [ 45.961304, 41.124884 ], [ 45.214233, 41.413896 ], [ 45.000000, 41.269550 ], [ 44.967041, 41.248903 ], [ 44.560547, 41.203456 ], [ 44.560547, 42.710696 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 54.939766 ], [ 67.939453, 41.137296 ], [ 67.500000, 41.149706 ], [ 66.708984, 41.170384 ], [ 66.505737, 41.988077 ], [ 66.022339, 41.996243 ], [ 66.093750, 43.000630 ], [ 64.896240, 43.731414 ], [ 63.182373, 43.651975 ], [ 62.012329, 43.504737 ], [ 61.056519, 44.406316 ], [ 58.502197, 45.587134 ], [ 55.925903, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.453491, 41.261291 ], [ 54.750366, 42.045213 ], [ 54.074707, 42.326062 ], [ 52.943115, 42.118599 ], [ 52.498169, 41.783601 ], [ 52.443237, 42.028894 ], [ 52.690430, 42.447781 ], [ 52.498169, 42.795401 ], [ 51.339111, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.333862, 44.284537 ], [ 50.300903, 44.610023 ], [ 51.273193, 44.516093 ], [ 51.311646, 45.247821 ], [ 52.163086, 45.410020 ], [ 53.036499, 45.259422 ], [ 53.217773, 46.236853 ], [ 53.041992, 46.856435 ], [ 52.036743, 46.807580 ], [ 51.190796, 47.051411 ], [ 50.031738, 46.611715 ], [ 49.097900, 46.399988 ], [ 48.592529, 46.562637 ], [ 48.691406, 47.077604 ], [ 48.054199, 47.746711 ], [ 47.312622, 47.717154 ], [ 46.461182, 48.396385 ], [ 47.043457, 49.152970 ], [ 46.746826, 49.357334 ], [ 47.548828, 50.457504 ], [ 48.576050, 49.876938 ], [ 48.696899, 50.607646 ], [ 50.762329, 51.692990 ], [ 52.327881, 51.720223 ], [ 54.530640, 51.027576 ], [ 55.711670, 50.625073 ], [ 56.777344, 51.044848 ], [ 58.359375, 51.065565 ], [ 59.639282, 50.548344 ], [ 59.930420, 50.844105 ], [ 61.336670, 50.802463 ], [ 61.583862, 51.275662 ], [ 59.963379, 51.961192 ], [ 60.924683, 52.449314 ], [ 60.737915, 52.722986 ], [ 61.699219, 52.981723 ], [ 60.974121, 53.667426 ], [ 61.435547, 54.007769 ], [ 65.176392, 54.354956 ], [ 65.665283, 54.603892 ], [ 67.500000, 54.873446 ], [ 67.939453, 54.939766 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.248903 ], [ 45.000000, 41.215854 ], [ 45.175781, 40.988192 ], [ 45.186768, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.422974, 40.647304 ], [ 44.560547, 40.647304 ], [ 44.560547, 41.203456 ], [ 44.967041, 41.248903 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.400757, 41.861379 ], [ 46.680908, 41.828642 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.982788, 41.409776 ], [ 48.581543, 41.812267 ], [ 49.108887, 41.286062 ], [ 49.323120, 40.979898 ], [ 49.564819, 40.647304 ], [ 45.422974, 40.647304 ], [ 45.560303, 40.813809 ], [ 45.186768, 40.979898 ], [ 45.175781, 40.988192 ], [ 45.000000, 41.215854 ], [ 44.967041, 41.248903 ], [ 45.000000, 41.269550 ], [ 45.214233, 41.413896 ], [ 45.961304, 41.124884 ], [ 46.499634, 41.066928 ], [ 46.636963, 41.182788 ], [ 46.142578, 41.726230 ], [ 46.400757, 41.861379 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sri Lanka", "sov_a3": "LKA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sri Lanka", "adm0_a3": "LKA", "geou_dif": 0, "geounit": "Sri Lanka", "gu_a3": "LKA", "su_dif": 0, "subunit": "Sri Lanka", "su_a3": "LKA", "brk_diff": 0, "name": "Sri Lanka", "name_long": "Sri Lanka", "brk_a3": "LKA", "brk_name": "Sri Lanka", "abbrev": "Sri L.", "postal": "LK", "formal_en": "Democratic Socialist Republic of Sri Lanka", "name_sort": "Sri Lanka", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 21324791, "gdp_md_est": 91870, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LK", "iso_a3": "LKA", "iso_n3": "144", "un_a3": "144", "wb_a2": "LK", "wb_a3": "LKA", "woe_id": -99, "adm0_a3_is": "LKA", "adm0_a3_us": "LKA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.145264, 9.828154 ], [ 80.837402, 9.270201 ], [ 81.298828, 8.564726 ], [ 81.787720, 7.525873 ], [ 81.633911, 6.484525 ], [ 81.216431, 6.200629 ], [ 80.343018, 5.971217 ], [ 79.870605, 6.768261 ], [ 79.694824, 8.206053 ], [ 80.145264, 9.828154 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bangladesh", "sov_a3": "BGD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bangladesh", "adm0_a3": "BGD", "geou_dif": 0, "geounit": "Bangladesh", "gu_a3": "BGD", "su_dif": 0, "subunit": "Bangladesh", "su_a3": "BGD", "brk_diff": 0, "name": "Bangladesh", "name_long": "Bangladesh", "brk_a3": "BGD", "brk_name": "Bangladesh", "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "name_sort": "Bangladesh", "mapcolor7": 3, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 156050883, "gdp_md_est": 224000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BD", "iso_a3": "BGD", "iso_n3": "050", "un_a3": "050", "wb_a2": "BD", "wb_a3": "BGD", "woe_id": -99, "adm0_a3_is": "BGD", "adm0_a3_us": "BGD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 22.350076 ], [ 90.439453, 22.136532 ], [ 90.269165, 21.841105 ], [ 89.846191, 22.039822 ], [ 89.769287, 21.943046 ], [ 89.697876, 21.861499 ], [ 89.478149, 21.943046 ], [ 89.417725, 21.968519 ], [ 89.027710, 22.060187 ], [ 88.972778, 22.350076 ], [ 90.439453, 22.350076 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 72.053833, 41.310824 ], [ 72.795410, 40.979898 ], [ 73.053589, 40.867834 ], [ 71.773682, 40.149488 ], [ 71.010132, 40.245992 ], [ 70.598145, 40.220830 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.329224, 40.730608 ], [ 69.010620, 40.086477 ], [ 68.532715, 39.533703 ], [ 67.697754, 39.584524 ], [ 67.500000, 39.240763 ], [ 67.439575, 39.142842 ], [ 67.500000, 39.121537 ], [ 68.175659, 38.903858 ], [ 68.389893, 38.160476 ], [ 67.829590, 37.147182 ], [ 67.500000, 37.239075 ], [ 67.071533, 37.357059 ], [ 67.060547, 37.357059 ], [ 67.060547, 41.162114 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 68.818359, 40.979898 ], [ 69.021606, 41.310824 ], [ 70.828857, 41.310824 ], [ 71.152954, 41.145570 ], [ 71.630859, 41.310824 ], [ 72.053833, 41.310824 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 78.299561, 41.310824 ], [ 78.184204, 41.186922 ], [ 76.904297, 41.066928 ], [ 76.849365, 40.979898 ], [ 76.525269, 40.430224 ], [ 75.465088, 40.563895 ], [ 74.772949, 40.367474 ], [ 73.817139, 39.897094 ], [ 73.959961, 39.660685 ], [ 73.674316, 39.431950 ], [ 71.784668, 39.283294 ], [ 70.548706, 39.605688 ], [ 69.461060, 39.529467 ], [ 69.554443, 40.103286 ], [ 70.647583, 39.939225 ], [ 71.010132, 40.245992 ], [ 71.773682, 40.149488 ], [ 73.053589, 40.867834 ], [ 72.795410, 40.979898 ], [ 72.053833, 41.310824 ], [ 78.299561, 41.310824 ] ] ], [ [ [ 71.630859, 41.310824 ], [ 71.152954, 41.145570 ], [ 70.828857, 41.310824 ], [ 71.630859, 41.310824 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.801392, 38.487995 ], [ 71.345215, 38.259750 ], [ 71.235352, 37.957192 ], [ 71.537476, 37.909534 ], [ 71.444092, 37.068328 ], [ 71.839600, 36.738884 ], [ 72.191162, 36.949892 ], [ 72.636108, 37.050793 ], [ 73.256836, 37.496652 ], [ 73.943481, 37.422526 ], [ 74.976196, 37.422526 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.024484 ], [ 74.064331, 36.840065 ], [ 72.916260, 36.721274 ], [ 71.845093, 36.514051 ], [ 71.257324, 36.075742 ], [ 71.493530, 35.652833 ], [ 71.608887, 35.155846 ], [ 71.114502, 34.737098 ], [ 71.152954, 34.352507 ], [ 70.878296, 33.988918 ], [ 69.927979, 34.020795 ], [ 70.323486, 33.362650 ], [ 69.686279, 33.109948 ], [ 69.257812, 32.505129 ], [ 69.312744, 31.905541 ], [ 68.922729, 31.620644 ], [ 68.554688, 31.714149 ], [ 67.791138, 31.583215 ], [ 67.681274, 31.306715 ], [ 67.060547, 31.306715 ], [ 67.060547, 37.357059 ], [ 67.500000, 37.239075 ], [ 67.829590, 37.147182 ], [ 68.131714, 37.024484 ], [ 68.856812, 37.348326 ], [ 69.191895, 37.151561 ], [ 69.515991, 37.609880 ], [ 70.114746, 37.592472 ], [ 70.268555, 37.735969 ], [ 70.372925, 38.138877 ], [ 70.801392, 38.487995 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.157471, 37.134045 ], [ 75.893555, 36.668419 ], [ 76.190186, 35.902400 ], [ 77.832642, 35.496456 ], [ 76.871338, 34.655804 ], [ 75.756226, 34.506557 ], [ 74.240112, 34.750640 ], [ 73.745728, 34.320755 ], [ 74.102783, 33.445193 ], [ 74.448853, 32.768800 ], [ 75.256348, 32.273200 ], [ 74.404907, 31.695456 ], [ 74.415894, 30.982319 ], [ 73.449097, 29.978729 ], [ 72.822876, 28.964895 ], [ 71.773682, 27.916767 ], [ 70.614624, 27.989551 ], [ 69.510498, 26.941660 ], [ 70.164185, 26.495157 ], [ 70.279541, 25.725684 ], [ 70.839844, 25.219851 ], [ 71.043091, 24.357105 ], [ 68.840332, 24.362110 ], [ 68.175659, 23.694835 ], [ 67.500000, 23.926013 ], [ 67.439575, 23.946096 ], [ 67.142944, 24.666986 ], [ 67.060547, 24.751820 ], [ 67.060547, 31.306715 ], [ 67.681274, 31.306715 ], [ 67.791138, 31.583215 ], [ 68.554688, 31.714149 ], [ 68.922729, 31.620644 ], [ 69.312744, 31.905541 ], [ 69.257812, 32.505129 ], [ 69.686279, 33.109948 ], [ 70.323486, 33.362650 ], [ 69.927979, 34.020795 ], [ 70.878296, 33.988918 ], [ 71.152954, 34.352507 ], [ 71.114502, 34.737098 ], [ 71.608887, 35.155846 ], [ 71.493530, 35.652833 ], [ 71.257324, 36.075742 ], [ 71.845093, 36.514051 ], [ 72.916260, 36.721274 ], [ 74.064331, 36.840065 ], [ 74.575195, 37.024484 ], [ 75.157471, 37.134045 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.832642, 35.496456 ], [ 78.909302, 34.325292 ], [ 78.810425, 33.509339 ], [ 79.205933, 32.994843 ], [ 79.172974, 32.486597 ], [ 78.453369, 32.620870 ], [ 78.733521, 31.517679 ], [ 79.716797, 30.883369 ], [ 81.106567, 30.187870 ], [ 80.474854, 29.730992 ], [ 80.084839, 28.796546 ], [ 81.057129, 28.420391 ], [ 81.996460, 27.926474 ], [ 83.303833, 27.366889 ], [ 84.671631, 27.235095 ], [ 85.248413, 26.730893 ], [ 86.022949, 26.632729 ], [ 87.225952, 26.401711 ], [ 88.055420, 26.416470 ], [ 88.170776, 26.814266 ], [ 88.038940, 27.449790 ], [ 88.115845, 27.877928 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.103144 ], [ 89.741821, 26.721080 ], [ 90.000000, 26.784847 ], [ 90.368042, 26.877981 ], [ 90.439453, 26.873081 ], [ 90.439453, 25.195000 ], [ 90.000000, 25.259601 ], [ 89.917603, 25.274504 ], [ 89.829712, 25.967922 ], [ 89.351807, 26.017298 ], [ 88.560791, 26.450902 ], [ 88.209229, 25.770214 ], [ 88.928833, 25.239727 ], [ 88.302612, 24.866503 ], [ 88.082886, 24.502145 ], [ 88.698120, 24.236947 ], [ 88.527832, 23.634460 ], [ 88.873901, 22.882501 ], [ 89.027710, 22.060187 ], [ 88.983765, 21.943046 ], [ 88.884888, 21.693161 ], [ 88.203735, 21.703369 ], [ 87.203979, 21.534847 ], [ 69.757690, 21.534847 ], [ 69.158936, 22.090730 ], [ 69.642334, 22.451649 ], [ 69.345703, 22.847071 ], [ 68.175659, 23.694835 ], [ 68.840332, 24.362110 ], [ 71.043091, 24.357105 ], [ 70.839844, 25.219851 ], [ 70.279541, 25.725684 ], [ 70.164185, 26.495157 ], [ 69.510498, 26.941660 ], [ 70.614624, 27.989551 ], [ 71.773682, 27.916767 ], [ 72.822876, 28.964895 ], [ 73.449097, 29.978729 ], [ 74.415894, 30.982319 ], [ 74.404907, 31.695456 ], [ 75.256348, 32.273200 ], [ 74.448853, 32.768800 ], [ 74.102783, 33.445193 ], [ 73.745728, 34.320755 ], [ 74.240112, 34.750640 ], [ 75.756226, 34.506557 ], [ 76.871338, 34.655804 ], [ 77.832642, 35.496456 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bhutan", "sov_a3": "BTN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bhutan", "adm0_a3": "BTN", "geou_dif": 0, "geounit": "Bhutan", "gu_a3": "BTN", "su_dif": 0, "subunit": "Bhutan", "su_a3": "BTN", "brk_diff": 0, "name": "Bhutan", "name_long": "Bhutan", "brk_a3": "BTN", "brk_name": "Bhutan", "abbrev": "Bhutan", "postal": "BT", "formal_en": "Kingdom of Bhutan", "name_sort": "Bhutan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 691141, "gdp_md_est": 3524, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BT", "iso_a3": "BTN", "iso_n3": "064", "un_a3": "064", "wb_a2": "BT", "wb_a3": "BTN", "woe_id": -99, "adm0_a3_is": "BTN", "adm0_a3_us": "BTN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.010986, 28.299544 ], [ 90.439453, 28.164033 ], [ 90.439453, 26.873081 ], [ 90.368042, 26.877981 ], [ 90.000000, 26.784847 ], [ 89.741821, 26.721080 ], [ 88.835449, 27.103144 ], [ 88.813477, 27.303452 ], [ 89.472656, 28.042895 ], [ 90.000000, 28.289870 ], [ 90.010986, 28.299544 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bangladesh", "sov_a3": "BGD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bangladesh", "adm0_a3": "BGD", "geou_dif": 0, "geounit": "Bangladesh", "gu_a3": "BGD", "su_dif": 0, "subunit": "Bangladesh", "su_a3": "BGD", "brk_diff": 0, "name": "Bangladesh", "name_long": "Bangladesh", "brk_a3": "BGD", "brk_name": "Bangladesh", "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "name_sort": "Bangladesh", "mapcolor7": 3, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 156050883, "gdp_md_est": 224000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BD", "iso_a3": "BGD", "iso_n3": "050", "un_a3": "050", "wb_a2": "BD", "wb_a3": "BGD", "woe_id": -99, "adm0_a3_is": "BGD", "adm0_a3_us": "BGD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.560791, 26.450902 ], [ 89.351807, 26.017298 ], [ 89.829712, 25.967922 ], [ 89.917603, 25.274504 ], [ 90.000000, 25.259601 ], [ 90.439453, 25.195000 ], [ 90.439453, 22.136532 ], [ 90.269165, 21.841105 ], [ 90.000000, 21.968519 ], [ 89.846191, 22.039822 ], [ 89.769287, 21.943046 ], [ 89.697876, 21.861499 ], [ 89.478149, 21.943046 ], [ 89.417725, 21.968519 ], [ 89.027710, 22.060187 ], [ 88.873901, 22.882501 ], [ 88.527832, 23.634460 ], [ 88.698120, 24.236947 ], [ 88.082886, 24.502145 ], [ 88.302612, 24.866503 ], [ 88.928833, 25.239727 ], [ 88.209229, 25.770214 ], [ 88.560791, 26.450902 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.065552, 55.385352 ], [ 70.861816, 55.172594 ], [ 71.174927, 54.133478 ], [ 72.224121, 54.377358 ], [ 73.504028, 54.036812 ], [ 73.421631, 53.491314 ], [ 74.382935, 53.550099 ], [ 76.887817, 54.492377 ], [ 76.519775, 54.178512 ], [ 77.799683, 53.406257 ], [ 80.035400, 50.864911 ], [ 80.568237, 51.388923 ], [ 81.941528, 50.812877 ], [ 83.380737, 51.072468 ], [ 83.930054, 50.892639 ], [ 84.413452, 50.313900 ], [ 85.111084, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.824951, 49.827353 ], [ 87.357788, 49.217597 ], [ 86.594238, 48.549342 ], [ 85.764771, 48.458352 ], [ 85.715332, 47.454094 ], [ 85.160522, 47.002734 ], [ 83.177490, 47.331377 ], [ 82.457886, 45.540984 ], [ 81.947021, 45.317392 ], [ 79.963989, 44.918139 ], [ 80.864868, 43.181147 ], [ 80.178223, 42.920229 ], [ 80.255127, 42.350425 ], [ 79.639893, 42.500453 ], [ 79.140015, 42.859860 ], [ 77.656860, 42.964463 ], [ 75.997925, 42.988576 ], [ 75.635376, 42.879990 ], [ 74.212646, 43.301196 ], [ 73.641357, 43.092961 ], [ 73.487549, 42.504503 ], [ 71.839600, 42.847779 ], [ 71.185913, 42.706660 ], [ 70.960693, 42.269179 ], [ 70.383911, 42.081917 ], [ 69.065552, 41.385052 ], [ 68.818359, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 67.500000, 41.149706 ], [ 67.060547, 41.162114 ], [ 67.060547, 54.810183 ], [ 67.500000, 54.873446 ], [ 68.164673, 54.971308 ], [ 69.065552, 55.385352 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.960693, 42.269179 ], [ 71.257324, 42.171546 ], [ 70.416870, 41.520917 ], [ 71.152954, 41.145570 ], [ 71.867065, 41.393294 ], [ 72.795410, 40.979898 ], [ 73.053589, 40.867834 ], [ 72.663574, 40.647304 ], [ 70.521240, 40.647304 ], [ 70.664062, 40.963308 ], [ 69.329224, 40.730608 ], [ 69.285278, 40.647304 ], [ 67.060547, 40.647304 ], [ 67.060547, 41.162114 ], [ 67.500000, 41.149706 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 68.818359, 40.979898 ], [ 69.065552, 41.385052 ], [ 70.383911, 42.081917 ], [ 70.960693, 42.269179 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.963308 ], [ 70.521240, 40.647304 ], [ 69.285278, 40.647304 ], [ 69.329224, 40.730608 ], [ 70.664062, 40.963308 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 50.212064 ], [ 90.439453, 47.509780 ], [ 90.280151, 47.694974 ], [ 90.000000, 47.768868 ], [ 88.851929, 48.070738 ], [ 88.011475, 48.600225 ], [ 87.747803, 49.300054 ], [ 88.802490, 49.471694 ], [ 90.000000, 50.014799 ], [ 90.439453, 50.212064 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bangladesh", "sov_a3": "BGD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bangladesh", "adm0_a3": "BGD", "geou_dif": 0, "geounit": "Bangladesh", "gu_a3": "BGD", "su_dif": 0, "subunit": "Bangladesh", "su_a3": "BGD", "brk_diff": 0, "name": "Bangladesh", "name_long": "Bangladesh", "brk_a3": "BGD", "brk_name": "Bangladesh", "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "name_sort": "Bangladesh", "mapcolor7": 3, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 156050883, "gdp_md_est": 224000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BD", "iso_a3": "BGD", "iso_n3": "050", "un_a3": "050", "wb_a2": "BD", "wb_a3": "BGD", "woe_id": -99, "adm0_a3_is": "BGD", "adm0_a3_us": "BGD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 92.565308, 22.350076 ], [ 92.669678, 22.044913 ], [ 92.669678, 21.943046 ], [ 92.647705, 21.325198 ], [ 92.301636, 21.478629 ], [ 92.367554, 20.673905 ], [ 92.081909, 21.197216 ], [ 92.021484, 21.703369 ], [ 91.928101, 21.943046 ], [ 91.834717, 22.187405 ], [ 91.713867, 22.350076 ], [ 92.565308, 22.350076 ] ] ], [ [ [ 90.560303, 22.350076 ], [ 90.329590, 21.943046 ], [ 90.269165, 21.841105 ], [ 90.043945, 21.943046 ], [ 89.846191, 22.039822 ], [ 89.697876, 21.861499 ], [ 89.560547, 21.912471 ], [ 89.560547, 22.350076 ], [ 90.560303, 22.350076 ] ] ] ] } } +, +{ "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": [ [ [ [ 110.209351, 20.102365 ], [ 110.786133, 20.081729 ], [ 111.005859, 19.699486 ], [ 110.566406, 19.259294 ], [ 110.335693, 18.682675 ], [ 109.473267, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.621826, 19.368159 ], [ 109.116211, 19.823558 ], [ 110.209351, 20.102365 ] ] ], [ [ [ 112.939453, 22.350076 ], [ 112.939453, 21.948141 ], [ 112.500000, 21.790107 ], [ 111.840820, 21.555284 ], [ 110.780640, 21.401934 ], [ 110.440063, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.627075, 21.012727 ], [ 109.863281, 21.396819 ], [ 108.517456, 21.718680 ], [ 108.045044, 21.555284 ], [ 107.039795, 21.815608 ], [ 106.885986, 21.943046 ], [ 106.561890, 22.223005 ], [ 106.600342, 22.350076 ], [ 112.939453, 22.350076 ] ] ], [ [ [ 101.760864, 22.350076 ], [ 101.651001, 22.319589 ], [ 101.700439, 21.943046 ], [ 101.799316, 21.176729 ], [ 101.266479, 21.202337 ], [ 101.178589, 21.437730 ], [ 101.145630, 21.851302 ], [ 100.415039, 21.560393 ], [ 99.981079, 21.744194 ], [ 99.585571, 21.943046 ], [ 99.239502, 22.121266 ], [ 99.321899, 22.350076 ], [ 101.760864, 22.350076 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Laos", "sov_a3": "LAO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Laos", "adm0_a3": "LAO", "geou_dif": 0, "geounit": "Laos", "gu_a3": "LAO", "su_dif": 0, "subunit": "Laos", "su_a3": "LAO", "brk_diff": 0, "name": "Lao PDR", "name_long": "Lao PDR", "brk_a3": "LAO", "brk_name": "Laos", "abbrev": "Laos", "postal": "LA", "formal_en": "Lao People's Democratic Republic", "name_sort": "Lao PDR", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 6834942, "gdp_md_est": 13980, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LA", "iso_a3": "LAO", "iso_n3": "418", "un_a3": "418", "wb_a2": "LA", "wb_a3": "LAO", "woe_id": -99, "adm0_a3_is": "LAO", "adm0_a3_us": "LAO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.255249, 22.350076 ], [ 102.551880, 21.943046 ], [ 102.749634, 21.677848 ], [ 103.200073, 20.771523 ], [ 104.430542, 20.761250 ], [ 104.820557, 19.890723 ], [ 104.183350, 19.627066 ], [ 103.892212, 19.269665 ], [ 105.089722, 18.667063 ], [ 105.924683, 17.486911 ], [ 106.550903, 16.604610 ], [ 107.308960, 15.913791 ], [ 107.561646, 15.204687 ], [ 107.380371, 14.205814 ], [ 106.495972, 14.572951 ], [ 106.040039, 13.886079 ], [ 105.216064, 14.275030 ], [ 105.540161, 14.727073 ], [ 105.584106, 15.575419 ], [ 104.776611, 16.446622 ], [ 104.716187, 17.429270 ], [ 103.952637, 18.245003 ], [ 103.200073, 18.312811 ], [ 102.996826, 17.963058 ], [ 102.409058, 17.936929 ], [ 102.112427, 18.109308 ], [ 101.057739, 17.513106 ], [ 101.035767, 18.411867 ], [ 101.277466, 19.466592 ], [ 100.601807, 19.513198 ], [ 100.546875, 20.112682 ], [ 100.112915, 20.421865 ], [ 100.327148, 20.786931 ], [ 101.178589, 21.437730 ], [ 101.266479, 21.202337 ], [ 101.799316, 21.176729 ], [ 101.700439, 21.943046 ], [ 101.651001, 22.319589 ], [ 101.760864, 22.350076 ], [ 102.255249, 22.350076 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.112915, 20.421865 ], [ 100.546875, 20.112682 ], [ 100.601807, 19.513198 ], [ 101.277466, 19.466592 ], [ 101.035767, 18.411867 ], [ 101.057739, 17.513106 ], [ 102.112427, 18.109308 ], [ 102.409058, 17.936929 ], [ 102.996826, 17.963058 ], [ 103.200073, 18.312811 ], [ 103.952637, 18.245003 ], [ 104.716187, 17.429270 ], [ 104.776611, 16.446622 ], [ 105.584106, 15.575419 ], [ 105.540161, 14.727073 ], [ 105.216064, 14.275030 ], [ 104.276733, 14.418720 ], [ 102.985840, 14.227113 ], [ 102.343140, 13.394963 ], [ 102.584839, 12.189704 ], [ 101.683960, 12.651058 ], [ 100.827026, 12.629618 ], [ 100.975342, 13.416337 ], [ 100.096436, 13.410994 ], [ 100.014038, 12.307802 ], [ 99.151611, 9.963440 ], [ 99.217529, 9.243093 ], [ 99.871216, 9.210560 ], [ 100.277710, 8.298470 ], [ 100.458984, 7.433284 ], [ 101.013794, 6.860985 ], [ 101.618042, 6.740986 ], [ 102.139893, 6.222473 ], [ 101.810303, 5.812757 ], [ 101.151123, 5.692516 ], [ 101.074219, 6.206090 ], [ 100.255737, 6.648239 ], [ 100.085449, 6.468151 ], [ 99.689941, 6.850078 ], [ 99.514160, 7.346123 ], [ 98.986816, 7.912353 ], [ 98.503418, 8.385431 ], [ 98.338623, 7.798079 ], [ 98.146362, 8.352823 ], [ 98.256226, 8.977323 ], [ 98.552856, 9.936388 ], [ 99.036255, 10.962764 ], [ 99.585571, 11.894228 ], [ 99.195557, 12.806445 ], [ 99.206543, 13.272026 ], [ 99.096680, 13.832746 ], [ 98.426514, 14.626109 ], [ 98.190308, 15.125159 ], [ 98.536377, 15.310678 ], [ 98.898926, 16.183024 ], [ 98.492432, 16.841348 ], [ 97.855225, 17.570721 ], [ 97.371826, 18.448347 ], [ 97.794800, 18.630630 ], [ 98.250732, 19.709829 ], [ 98.959351, 19.756364 ], [ 99.541626, 20.190035 ], [ 100.112915, 20.421865 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cambodia", "sov_a3": "KHM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cambodia", "adm0_a3": "KHM", "geou_dif": 0, "geounit": "Cambodia", "gu_a3": "KHM", "su_dif": 0, "subunit": "Cambodia", "su_a3": "KHM", "brk_diff": 0, "name": "Cambodia", "name_long": "Cambodia", "brk_a3": "KHM", "brk_name": "Cambodia", "abbrev": "Camb.", "postal": "KH", "formal_en": "Kingdom of Cambodia", "name_sort": "Cambodia", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 5, "pop_est": 14494293, "gdp_md_est": 27940, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KH", "iso_a3": "KHM", "iso_n3": "116", "un_a3": "116", "wb_a2": "KH", "wb_a3": "KHM", "woe_id": -99, "adm0_a3_is": "KHM", "adm0_a3_us": "KHM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.495972, 14.572951 ], [ 107.380371, 14.205814 ], [ 107.611084, 13.539201 ], [ 107.490234, 12.340002 ], [ 105.809326, 11.571525 ], [ 106.248779, 10.962764 ], [ 105.199585, 10.892648 ], [ 104.331665, 10.487812 ], [ 103.496704, 10.633615 ], [ 103.090210, 11.156845 ], [ 102.584839, 12.189704 ], [ 102.343140, 13.394963 ], [ 102.985840, 14.227113 ], [ 104.276733, 14.418720 ], [ 105.216064, 14.275030 ], [ 106.040039, 13.886079 ], [ 106.495972, 14.572951 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.939453, 3.096636 ], [ 112.939453, 1.477497 ], [ 112.857056, 1.499463 ], [ 112.500000, 1.433566 ], [ 112.379150, 1.411600 ], [ 111.796875, 0.906334 ], [ 111.154175, 0.977736 ], [ 110.511475, 0.774513 ], [ 109.824829, 1.340210 ], [ 109.660034, 2.010086 ], [ 110.396118, 1.664195 ], [ 111.165161, 1.850874 ], [ 111.368408, 2.701635 ], [ 111.796875, 2.888180 ], [ 112.500000, 3.014356 ], [ 112.939453, 3.096636 ] ] ], [ [ [ 100.255737, 6.648239 ], [ 101.074219, 6.206090 ], [ 101.151123, 5.692516 ], [ 101.810303, 5.812757 ], [ 102.139893, 6.222473 ], [ 102.370605, 6.129631 ], [ 102.958374, 5.528511 ], [ 103.375854, 4.855628 ], [ 103.436279, 4.182073 ], [ 103.331909, 3.727227 ], [ 103.425293, 3.387307 ], [ 103.502197, 2.794911 ], [ 103.853760, 2.520549 ], [ 104.243774, 1.631249 ], [ 104.227295, 1.296276 ], [ 103.518677, 1.230374 ], [ 102.568359, 1.971657 ], [ 101.387329, 2.761991 ], [ 101.271973, 3.272146 ], [ 100.695190, 3.940981 ], [ 100.552368, 4.768047 ], [ 100.195312, 5.315236 ], [ 100.305176, 6.042236 ], [ 100.085449, 6.468151 ], [ 100.255737, 6.648239 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 109.660034, 2.010086 ], [ 109.824829, 1.340210 ], [ 110.511475, 0.774513 ], [ 111.154175, 0.977736 ], [ 111.796875, 0.906334 ], [ 112.379150, 1.411600 ], [ 112.500000, 1.433566 ], [ 112.857056, 1.499463 ], [ 112.939453, 1.477497 ], [ 112.939453, -0.439449 ], [ 109.083252, -0.439449 ], [ 109.017334, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.066772, 1.345701 ], [ 109.660034, 2.010086 ] ] ], [ [ [ 95.289917, 5.484768 ], [ 95.932617, 5.441022 ], [ 97.481689, 5.249598 ], [ 98.366089, 4.269724 ], [ 99.140625, 3.595660 ], [ 99.689941, 3.178910 ], [ 100.640259, 2.103409 ], [ 101.656494, 2.086941 ], [ 102.496948, 1.400617 ], [ 103.073730, 0.565787 ], [ 103.837280, 0.109863 ], [ 103.782349, 0.000000 ], [ 103.568115, -0.439449 ], [ 99.915161, -0.439449 ], [ 99.453735, 0.000000 ], [ 99.261475, 0.186767 ], [ 98.964844, 1.043643 ], [ 98.596802, 1.828913 ], [ 97.695923, 2.454693 ], [ 97.174072, 3.310534 ], [ 96.421509, 3.869735 ], [ 95.377808, 4.976033 ], [ 95.289917, 5.484768 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bhutan", "sov_a3": "BTN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bhutan", "adm0_a3": "BTN", "geou_dif": 0, "geounit": "Bhutan", "gu_a3": "BTN", "su_dif": 0, "subunit": "Bhutan", "su_a3": "BTN", "brk_diff": 0, "name": "Bhutan", "name_long": "Bhutan", "brk_a3": "BTN", "brk_name": "Bhutan", "abbrev": "Bhutan", "postal": "BT", "formal_en": "Kingdom of Bhutan", "name_sort": "Bhutan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 691141, "gdp_md_est": 3524, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BT", "iso_a3": "BTN", "iso_n3": "064", "un_a3": "064", "wb_a2": "BT", "wb_a3": "BTN", "woe_id": -99, "adm0_a3_is": "BTN", "adm0_a3_us": "BTN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.010986, 28.299544 ], [ 90.725098, 28.067133 ], [ 91.257935, 28.042895 ], [ 91.691895, 27.775912 ], [ 92.098389, 27.454665 ], [ 92.032471, 26.838776 ], [ 91.213989, 26.809364 ], [ 90.368042, 26.877981 ], [ 90.000000, 26.784847 ], [ 89.741821, 26.721080 ], [ 89.560547, 26.799558 ], [ 89.560547, 28.086520 ], [ 90.000000, 28.289870 ], [ 90.010986, 28.299544 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bangladesh", "sov_a3": "BGD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bangladesh", "adm0_a3": "BGD", "geou_dif": 0, "geounit": "Bangladesh", "gu_a3": "BGD", "su_dif": 0, "subunit": "Bangladesh", "su_a3": "BGD", "brk_diff": 0, "name": "Bangladesh", "name_long": "Bangladesh", "brk_a3": "BGD", "brk_name": "Bangladesh", "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "name_sort": "Bangladesh", "mapcolor7": 3, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 156050883, "gdp_md_est": 224000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BD", "iso_a3": "BGD", "iso_n3": "050", "un_a3": "050", "wb_a2": "BD", "wb_a3": "BGD", "woe_id": -99, "adm0_a3_is": "BGD", "adm0_a3_us": "BGD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.560547, 25.997550 ], [ 89.829712, 25.967922 ], [ 89.917603, 25.274504 ], [ 90.000000, 25.259601 ], [ 90.867920, 25.135339 ], [ 91.796265, 25.150257 ], [ 92.373047, 24.981079 ], [ 91.911621, 24.131715 ], [ 91.466675, 24.076559 ], [ 91.153564, 23.503552 ], [ 91.702881, 22.988738 ], [ 91.867676, 23.624395 ], [ 92.142334, 23.629427 ], [ 92.669678, 22.044913 ], [ 92.669678, 21.943046 ], [ 92.653198, 21.534847 ], [ 92.043457, 21.534847 ], [ 92.021484, 21.703369 ], [ 91.928101, 21.943046 ], [ 91.834717, 22.187405 ], [ 91.411743, 22.766051 ], [ 90.494385, 22.806567 ], [ 90.582275, 22.395793 ], [ 90.329590, 21.943046 ], [ 90.269165, 21.841105 ], [ 90.043945, 21.943046 ], [ 90.000000, 21.968519 ], [ 89.846191, 22.039822 ], [ 89.697876, 21.861499 ], [ 89.560547, 21.912471 ], [ 89.560547, 25.997550 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.910156, 28.338230 ], [ 98.245239, 27.751608 ], [ 98.679199, 27.513143 ], [ 98.706665, 26.745610 ], [ 98.668213, 25.923467 ], [ 97.723389, 25.085599 ], [ 97.602539, 23.900905 ], [ 98.657227, 24.066528 ], [ 98.893433, 23.145411 ], [ 99.530640, 22.953335 ], [ 99.239502, 22.121266 ], [ 99.585571, 21.943046 ], [ 99.981079, 21.744194 ], [ 100.415039, 21.560393 ], [ 101.145630, 21.851302 ], [ 101.167603, 21.534847 ], [ 92.653198, 21.534847 ], [ 92.669678, 21.943046 ], [ 92.669678, 22.044913 ], [ 93.164062, 22.278931 ], [ 93.059692, 22.705255 ], [ 93.284912, 23.044353 ], [ 93.323364, 24.081574 ], [ 94.103394, 23.855698 ], [ 94.548340, 24.676970 ], [ 94.597778, 25.165173 ], [ 95.152588, 26.002487 ], [ 95.119629, 26.573790 ], [ 96.416016, 27.269279 ], [ 97.130127, 27.088473 ], [ 97.047729, 27.702984 ], [ 97.399292, 27.882784 ], [ 97.322388, 28.265682 ], [ 97.910156, 28.338230 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Laos", "sov_a3": "LAO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Laos", "adm0_a3": "LAO", "geou_dif": 0, "geounit": "Laos", "gu_a3": "LAO", "su_dif": 0, "subunit": "Laos", "su_a3": "LAO", "brk_diff": 0, "name": "Lao PDR", "name_long": "Lao PDR", "brk_a3": "LAO", "brk_name": "Laos", "abbrev": "Laos", "postal": "LA", "formal_en": "Lao People's Democratic Republic", "name_sort": "Lao PDR", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 6834942, "gdp_md_est": 13980, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LA", "iso_a3": "LAO", "iso_n3": "418", "un_a3": "418", "wb_a2": "LA", "wb_a3": "LAO", "woe_id": -99, "adm0_a3_is": "LAO", "adm0_a3_us": "LAO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.167358, 22.466878 ], [ 102.551880, 21.943046 ], [ 102.749634, 21.677848 ], [ 102.821045, 21.534847 ], [ 101.755371, 21.534847 ], [ 101.700439, 21.943046 ], [ 101.651001, 22.319589 ], [ 102.167358, 22.466878 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.860474, 52.049112 ], [ 99.981079, 51.635067 ], [ 100.887451, 51.518998 ], [ 102.062988, 51.261915 ], [ 102.255249, 50.513427 ], [ 103.672485, 50.092393 ], [ 104.617310, 50.278809 ], [ 105.886230, 50.408518 ], [ 106.885986, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.473511, 49.285723 ], [ 109.401855, 49.296472 ], [ 110.659790, 49.131408 ], [ 111.577148, 49.378797 ], [ 112.500000, 49.496675 ], [ 112.895508, 49.546598 ], [ 112.939453, 49.564415 ], [ 112.939453, 44.914249 ], [ 112.500000, 44.999767 ], [ 111.868286, 45.104546 ], [ 111.346436, 44.461231 ], [ 111.665039, 44.075747 ], [ 111.824341, 43.743321 ], [ 111.126709, 43.409038 ], [ 110.407104, 42.871938 ], [ 109.242554, 42.520700 ], [ 107.742920, 42.484251 ], [ 106.127930, 42.134895 ], [ 104.963379, 41.599013 ], [ 104.518433, 41.910453 ], [ 103.309937, 41.910453 ], [ 101.832275, 42.516651 ], [ 100.843506, 42.666281 ], [ 99.514160, 42.524748 ], [ 97.448730, 42.751046 ], [ 96.344604, 42.726839 ], [ 95.762329, 43.321181 ], [ 95.306396, 44.245199 ], [ 94.685669, 44.355278 ], [ 93.477173, 44.976457 ], [ 92.131348, 45.116177 ], [ 90.944824, 45.286482 ], [ 90.582275, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.280151, 47.694974 ], [ 90.000000, 47.768868 ], [ 89.560547, 47.886881 ], [ 89.560547, 49.813176 ], [ 90.000000, 50.014799 ], [ 90.708618, 50.334943 ], [ 92.230225, 50.802463 ], [ 93.103638, 50.495958 ], [ 94.147339, 50.481978 ], [ 94.812012, 50.014799 ], [ 95.811768, 49.979488 ], [ 97.256470, 49.728030 ], [ 98.228760, 50.422519 ], [ 97.822266, 51.013755 ], [ 98.860474, 52.049112 ] ] ] } } +, +{ "type": "Feature", "properties": { "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": "Polygon", "coordinates": [ [ [ 89.560547, 47.886881 ], [ 90.000000, 47.768868 ], [ 90.280151, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.286482 ], [ 92.131348, 45.116177 ], [ 93.477173, 44.976457 ], [ 94.685669, 44.355278 ], [ 95.306396, 44.245199 ], [ 95.762329, 43.321181 ], [ 96.344604, 42.726839 ], [ 97.448730, 42.751046 ], [ 99.514160, 42.524748 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.516651 ], [ 103.309937, 41.910453 ], [ 104.518433, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.134895 ], [ 107.742920, 42.484251 ], [ 109.242554, 42.520700 ], [ 110.407104, 42.871938 ], [ 111.126709, 43.409038 ], [ 111.824341, 43.743321 ], [ 111.665039, 44.075747 ], [ 111.346436, 44.461231 ], [ 111.868286, 45.104546 ], [ 112.500000, 44.999767 ], [ 112.939453, 44.914249 ], [ 112.939453, 40.647304 ], [ 89.560547, 40.647304 ], [ 89.560547, 47.886881 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "East Timor", "sov_a3": "TLS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "East Timor", "adm0_a3": "TLS", "geou_dif": 0, "geounit": "East Timor", "gu_a3": "TLS", "su_dif": 0, "subunit": "East Timor", "su_a3": "TLS", "brk_diff": 0, "name": "Timor-Leste", "name_long": "Timor-Leste", "brk_a3": "TLS", "brk_name": "Timor-Leste", "abbrev": "T.L.", "postal": "TL", "formal_en": "Democratic Republic of Timor-Leste", "name_sort": "Timor-Leste", "name_alt": "East Timor", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1131612, "gdp_md_est": 2520, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "TL", "iso_a3": "TLS", "iso_n3": "626", "un_a3": "626", "wb_a2": "TP", "wb_a3": "TMP", "woe_id": -99, "adm0_a3_is": "TLS", "adm0_a3_us": "TLS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.952515, -8.271291 ], [ 127.331543, -8.396300 ], [ 126.963501, -8.667918 ], [ 125.925293, -9.102097 ], [ 125.084839, -9.389452 ], [ 125.068359, -9.085824 ], [ 124.963989, -8.890499 ], [ 125.084839, -8.651626 ], [ 125.941772, -8.428904 ], [ 126.639404, -8.396300 ], [ 126.952515, -8.271291 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.147949, -21.754398 ], [ 114.164429, -21.943046 ], [ 114.208374, -22.350076 ], [ 113.807373, -22.350076 ], [ 114.038086, -21.943046 ], [ 114.147949, -21.754398 ] ] ], [ [ [ 133.016968, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.390259, -12.039321 ], [ 134.675903, -11.937227 ], [ 135.000000, -12.098410 ], [ 135.296631, -12.243392 ], [ 135.439453, -12.178965 ], [ 135.439453, -14.700508 ], [ 135.428467, -14.711135 ], [ 135.439453, -14.753635 ], [ 135.439453, -22.350076 ], [ 114.323730, -22.350076 ], [ 114.576416, -21.943046 ], [ 114.642334, -21.825807 ], [ 115.455322, -21.493964 ], [ 115.944214, -21.063997 ], [ 116.707764, -20.699600 ], [ 117.163696, -20.622502 ], [ 117.438354, -20.745840 ], [ 118.229370, -20.370377 ], [ 118.833618, -20.262197 ], [ 118.987427, -20.040450 ], [ 119.251099, -19.952696 ], [ 119.800415, -19.973349 ], [ 120.855103, -19.678798 ], [ 121.398926, -19.238550 ], [ 121.651611, -18.703489 ], [ 122.239380, -18.192825 ], [ 122.283325, -17.795766 ], [ 122.310791, -17.250990 ], [ 123.008423, -16.404470 ], [ 123.431396, -17.266728 ], [ 123.854370, -17.067287 ], [ 123.502808, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.325411 ], [ 124.376221, -15.564836 ], [ 124.925537, -15.072124 ], [ 125.167236, -14.679254 ], [ 125.667114, -14.509144 ], [ 125.683594, -14.227113 ], [ 126.123047, -14.344226 ], [ 126.139526, -14.093957 ], [ 126.578979, -13.950061 ], [ 127.062378, -13.816744 ], [ 127.803955, -14.275030 ], [ 128.358765, -14.865160 ], [ 128.984985, -14.875778 ], [ 129.616699, -14.966013 ], [ 129.407959, -14.418720 ], [ 129.885864, -13.613956 ], [ 130.336304, -13.352210 ], [ 130.182495, -13.106230 ], [ 130.616455, -12.533115 ], [ 131.220703, -12.178965 ], [ 131.731567, -12.302435 ], [ 132.572021, -12.109152 ], [ 132.555542, -11.598432 ], [ 131.819458, -11.270000 ], [ 132.352295, -11.124507 ], [ 133.016968, -11.372339 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.125244, 6.931880 ], [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 118.344727, 5.708914 ], [ 119.179688, 5.408211 ], [ 119.108276, 5.019811 ], [ 118.438110, 4.970560 ], [ 118.613892, 4.483333 ], [ 117.877808, 4.138243 ], [ 117.009888, 4.308069 ], [ 115.861816, 4.308069 ], [ 115.515747, 3.173425 ], [ 115.131226, 2.822344 ], [ 114.620361, 1.433566 ], [ 113.801880, 1.219390 ], [ 112.857056, 1.499463 ], [ 112.500000, 1.433566 ], [ 112.379150, 1.411600 ], [ 112.060547, 1.137010 ], [ 112.060547, 2.937555 ], [ 112.500000, 3.014356 ], [ 112.994385, 3.107606 ], [ 113.708496, 3.897138 ], [ 114.202881, 4.527142 ], [ 114.658813, 4.012220 ], [ 114.867554, 4.351889 ], [ 115.345459, 4.319024 ], [ 115.449829, 5.451959 ], [ 116.218872, 6.146016 ], [ 116.724243, 6.926427 ], [ 117.125244, 6.931880 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Taiwan", "sov_a3": "TWN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Taiwan", "adm0_a3": "TWN", "geou_dif": 0, "geounit": "Taiwan", "gu_a3": "TWN", "su_dif": 0, "subunit": "Taiwan", "su_a3": "TWN", "brk_diff": 1, "name": "Taiwan", "name_long": "Taiwan", "brk_a3": "B77", "brk_name": "Taiwan", "abbrev": "Taiwan", "postal": "TW", "note_brk": "Self admin.; Claimed by China", "name_sort": "Taiwan", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 22974347, "gdp_md_est": 712000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TW", "iso_a3": "TWN", "iso_n3": "158", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "TWN", "adm0_a3_us": "TWN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 120.942993, 22.350076 ], [ 120.745239, 21.973614 ], [ 120.509033, 22.350076 ], [ 120.942993, 22.350076 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Brunei", "sov_a3": "BRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brunei", "adm0_a3": "BRN", "geou_dif": 0, "geounit": "Brunei", "gu_a3": "BRN", "su_dif": 0, "subunit": "Brunei", "su_a3": "BRN", "brk_diff": 0, "name": "Brunei", "name_long": "Brunei Darussalam", "brk_a3": "BRN", "brk_name": "Brunei", "abbrev": "Brunei", "postal": "BN", "formal_en": "Negara Brunei Darussalam", "name_sort": "Brunei", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 12, "pop_est": 388190, "gdp_md_est": 20250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BN", "iso_a3": "BRN", "iso_n3": "096", "un_a3": "096", "wb_a2": "BN", "wb_a3": "BRN", "woe_id": -99, "adm0_a3_is": "BRN", "adm0_a3_us": "BRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 17, "abbrev_len": 6, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.449829, 5.451959 ], [ 115.345459, 4.319024 ], [ 114.867554, 4.351889 ], [ 114.658813, 4.012220 ], [ 114.202881, 4.527142 ], [ 114.598389, 4.904887 ], [ 115.449829, 5.451959 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.379761, -0.368039 ], [ 132.648926, -0.439449 ], [ 132.269897, -0.439449 ], [ 132.379761, -0.368039 ] ] ], [ [ [ 125.062866, 1.647722 ], [ 125.238647, 1.422583 ], [ 124.436646, 0.428463 ], [ 123.684082, 0.236205 ], [ 122.722778, 0.433956 ], [ 121.052856, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.135498, 0.000000 ], [ 120.053101, -0.439449 ], [ 119.624634, -0.439449 ], [ 119.772949, 0.000000 ], [ 119.822388, 0.159302 ], [ 120.031128, 0.571280 ], [ 120.882568, 1.312751 ], [ 121.662598, 1.016182 ], [ 122.926025, 0.878872 ], [ 124.074097, 0.917319 ], [ 125.062866, 1.647722 ] ] ], [ [ [ 127.930298, 2.174771 ], [ 128.001709, 1.631249 ], [ 128.589478, 1.543392 ], [ 128.682861, 1.137010 ], [ 128.633423, 0.263671 ], [ 128.117065, 0.357053 ], [ 128.029175, 0.000000 ], [ 127.963257, -0.247192 ], [ 128.111572, -0.439449 ], [ 127.803955, -0.439449 ], [ 127.694092, -0.263671 ], [ 127.633667, 0.000000 ], [ 127.397461, 1.016182 ], [ 127.595215, 1.812442 ], [ 127.930298, 2.174771 ] ] ], [ [ [ 117.009888, 4.308069 ], [ 117.877808, 4.138243 ], [ 117.312012, 3.239240 ], [ 118.048096, 2.290039 ], [ 117.872314, 1.828913 ], [ 118.992920, 0.906334 ], [ 117.806396, 0.785498 ], [ 117.476807, 0.104370 ], [ 117.482300, 0.000000 ], [ 117.498779, -0.439449 ], [ 112.060547, -0.439449 ], [ 112.060547, 1.137010 ], [ 112.379150, 1.411600 ], [ 112.500000, 1.433566 ], [ 112.857056, 1.499463 ], [ 113.801880, 1.219390 ], [ 114.620361, 1.433566 ], [ 115.131226, 2.822344 ], [ 115.515747, 3.173425 ], [ 115.861816, 4.308069 ], [ 117.009888, 4.308069 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Taiwan", "sov_a3": "TWN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Taiwan", "adm0_a3": "TWN", "geou_dif": 0, "geounit": "Taiwan", "gu_a3": "TWN", "su_dif": 0, "subunit": "Taiwan", "su_a3": "TWN", "brk_diff": 1, "name": "Taiwan", "name_long": "Taiwan", "brk_a3": "B77", "brk_name": "Taiwan", "abbrev": "Taiwan", "postal": "TW", "note_brk": "Self admin.; Claimed by China", "name_sort": "Taiwan", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 22974347, "gdp_md_est": 712000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TW", "iso_a3": "TWN", "iso_n3": "158", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "TWN", "adm0_a3_us": "TWN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.492310, 25.299338 ], [ 121.948242, 25.000994 ], [ 121.772461, 24.397133 ], [ 121.173706, 22.791375 ], [ 120.745239, 21.973614 ], [ 120.217896, 22.816694 ], [ 120.102539, 23.558952 ], [ 120.690308, 24.542126 ], [ 121.492310, 25.299338 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "North Korea", "sov_a3": "PRK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "North Korea", "adm0_a3": "PRK", "geou_dif": 0, "geounit": "North Korea", "gu_a3": "PRK", "su_dif": 0, "subunit": "North Korea", "su_a3": "PRK", "brk_diff": 0, "name": "Dem. Rep. Korea", "name_long": "Dem. Rep. Korea", "brk_a3": "PRK", "brk_name": "Dem. Rep. Korea", "abbrev": "N.K.", "postal": "KP", "formal_en": "Democratic People's Republic of Korea", "name_sort": "Korea, Dem. Rep.", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 22665345, "gdp_md_est": 40000, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KP", "iso_a3": "PRK", "iso_n3": "408", "un_a3": "408", "wb_a2": "KP", "wb_a3": "PRK", "woe_id": -99, "adm0_a3_is": "PRK", "adm0_a3_us": "PRK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 15, "long_len": 15, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.682617, 41.310824 ], [ 129.699097, 40.979898 ], [ 129.704590, 40.884448 ], [ 129.182739, 40.663973 ], [ 129.006958, 40.488737 ], [ 128.627930, 40.191463 ], [ 127.963257, 40.027614 ], [ 127.529297, 39.757880 ], [ 127.501831, 39.325799 ], [ 127.380981, 39.215231 ], [ 127.781982, 39.053318 ], [ 128.347778, 38.612578 ], [ 128.204956, 38.371809 ], [ 127.776489, 38.307181 ], [ 127.067871, 38.259750 ], [ 126.683350, 37.805444 ], [ 126.232910, 37.844495 ], [ 126.172485, 37.753344 ], [ 125.689087, 37.944198 ], [ 125.568237, 37.753344 ], [ 125.271606, 37.670777 ], [ 125.238647, 37.857507 ], [ 124.980469, 37.952861 ], [ 124.711304, 38.108628 ], [ 124.985962, 38.552461 ], [ 125.216675, 38.668356 ], [ 125.128784, 38.852542 ], [ 125.381470, 39.389509 ], [ 125.321045, 39.554883 ], [ 124.733276, 39.660685 ], [ 124.260864, 39.930801 ], [ 125.079346, 40.572240 ], [ 125.919800, 40.979898 ], [ 126.177979, 41.108330 ], [ 126.375732, 41.310824 ], [ 129.682617, 41.310824 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "name_sort": "Japan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "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": [ [ [ [ 134.604492, 35.733136 ], [ 135.000000, 35.657296 ], [ 135.439453, 35.576917 ], [ 135.439453, 33.669497 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 133.335571, 34.379713 ], [ 132.154541, 33.906896 ], [ 130.984497, 33.888658 ], [ 131.995239, 33.151349 ], [ 131.330566, 31.452096 ], [ 130.682373, 31.034108 ], [ 130.198975, 31.419288 ], [ 130.446167, 32.319634 ], [ 129.814453, 32.611616 ], [ 129.407959, 33.298395 ], [ 130.352783, 33.605470 ], [ 130.874634, 34.234512 ], [ 131.879883, 34.750640 ], [ 132.615967, 35.433820 ], [ 134.604492, 35.733136 ] ] ], [ [ [ 133.901367, 34.366111 ], [ 134.637451, 34.152727 ], [ 134.763794, 33.806538 ], [ 134.197998, 33.201924 ], [ 133.791504, 33.523079 ], [ 133.275146, 33.293804 ], [ 133.011475, 32.708733 ], [ 132.357788, 32.990236 ], [ 132.368774, 33.468108 ], [ 132.923584, 34.061761 ], [ 133.489380, 33.947917 ], [ 133.901367, 34.366111 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 114.362183, 50.250718 ], [ 114.960938, 50.141706 ], [ 115.482788, 49.806087 ], [ 116.674805, 49.891096 ], [ 116.191406, 49.135003 ], [ 115.482788, 48.136767 ], [ 115.740967, 47.728240 ], [ 116.306763, 47.853717 ], [ 117.290039, 47.698672 ], [ 118.059082, 48.067068 ], [ 118.861084, 47.750405 ], [ 119.767456, 47.051411 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.807580 ], [ 117.416382, 46.675826 ], [ 116.713257, 46.388622 ], [ 115.982666, 45.729191 ], [ 114.455566, 45.340563 ], [ 113.461304, 44.809122 ], [ 112.500000, 44.999767 ], [ 112.434082, 45.015302 ], [ 112.060547, 45.073521 ], [ 112.060547, 49.439557 ], [ 112.500000, 49.496675 ], [ 112.895508, 49.546598 ], [ 114.362183, 50.250718 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 123.568726, 53.461890 ], [ 125.062866, 53.163240 ], [ 125.941772, 52.796119 ], [ 126.562500, 51.784834 ], [ 126.936035, 51.354631 ], [ 127.282104, 50.739932 ], [ 127.655640, 49.763526 ], [ 129.396973, 49.443129 ], [ 130.578003, 48.730832 ], [ 130.984497, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.368530, 48.184401 ], [ 135.000000, 48.476563 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.436490 ], [ 134.500122, 47.580231 ], [ 134.110107, 47.215837 ], [ 133.769531, 46.118942 ], [ 133.093872, 45.147179 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.968684 ], [ 131.286621, 44.115198 ], [ 131.143799, 42.932296 ], [ 130.632935, 42.904136 ], [ 130.638428, 42.395066 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.427511 ], [ 128.051147, 41.996243 ], [ 128.204956, 41.467428 ], [ 127.342529, 41.504464 ], [ 126.864624, 41.820455 ], [ 126.177979, 41.108330 ], [ 125.919800, 40.979898 ], [ 125.233154, 40.647304 ], [ 121.937256, 40.647304 ], [ 121.635132, 40.946714 ], [ 120.899048, 40.647304 ], [ 112.060547, 40.647304 ], [ 112.060547, 45.073521 ], [ 112.500000, 44.999767 ], [ 113.461304, 44.809122 ], [ 114.455566, 45.340563 ], [ 115.982666, 45.729191 ], [ 116.713257, 46.388622 ], [ 117.416382, 46.675826 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.767456, 47.051411 ], [ 118.861084, 47.750405 ], [ 118.059082, 48.067068 ], [ 117.290039, 47.698672 ], [ 116.306763, 47.853717 ], [ 115.740967, 47.728240 ], [ 115.482788, 48.136767 ], [ 116.191406, 49.135003 ], [ 116.674805, 49.891096 ], [ 117.877808, 49.514510 ], [ 119.284058, 50.145226 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.734253, 51.964577 ], [ 120.723267, 52.519564 ], [ 120.173950, 52.756243 ], [ 120.997925, 53.252069 ], [ 122.244873, 53.432447 ], [ 123.568726, 53.461890 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 142.514648, -10.666006 ], [ 142.794800, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.113403, -11.904979 ], [ 143.157349, -12.323903 ], [ 143.519897, -12.833226 ], [ 143.596802, -13.400307 ], [ 143.558350, -13.763396 ], [ 143.920898, -14.546367 ], [ 144.563599, -14.168534 ], [ 144.893188, -14.594216 ], [ 145.371094, -14.981933 ], [ 145.266724, -15.427206 ], [ 145.480957, -16.283233 ], [ 145.634766, -16.783506 ], [ 145.887451, -16.904428 ], [ 146.156616, -17.759150 ], [ 146.063232, -18.276302 ], [ 146.387329, -18.958246 ], [ 147.469482, -19.476950 ], [ 148.172607, -19.952696 ], [ 148.848267, -20.390974 ], [ 148.716431, -20.632784 ], [ 149.287720, -21.258661 ], [ 149.529419, -21.943046 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.121266 ], [ 150.287476, -22.350076 ], [ 134.560547, -22.350076 ], [ 134.560547, -11.980218 ], [ 134.675903, -11.937227 ], [ 135.000000, -12.098410 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.958723 ], [ 136.257935, -12.044693 ], [ 136.488647, -11.856599 ], [ 136.950073, -12.350734 ], [ 136.680908, -12.886780 ], [ 136.301880, -13.288065 ], [ 135.961304, -13.320140 ], [ 136.076660, -13.720708 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.499878, -14.992546 ], [ 136.290894, -15.548960 ], [ 137.059937, -15.866242 ], [ 137.576294, -16.214675 ], [ 138.301392, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.103394, -17.062036 ], [ 139.257202, -17.366367 ], [ 140.213013, -17.706828 ], [ 140.872192, -17.366367 ], [ 141.069946, -16.830832 ], [ 141.273193, -16.388661 ], [ 141.394043, -15.839820 ], [ 141.701660, -15.040296 ], [ 141.558838, -14.557001 ], [ 141.630249, -14.269707 ], [ 141.514893, -13.694025 ], [ 141.646729, -12.940322 ], [ 141.838989, -12.736801 ], [ 141.685181, -12.404389 ], [ 141.926880, -11.872727 ], [ 142.113647, -11.323867 ], [ 142.141113, -11.038255 ], [ 142.514648, -10.666006 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Papua New Guinea", "sov_a3": "PNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Papua New Guinea", "adm0_a3": "PNG", "geou_dif": 0, "geounit": "Papua New Guinea", "gu_a3": "PNG", "su_dif": 1, "subunit": "Papua New Guinea", "su_a3": "PN1", "brk_diff": 0, "name": "Papua New Guinea", "name_long": "Papua New Guinea", "brk_a3": "PN1", "brk_name": "Papua New Guinea", "abbrev": "P.N.G.", "postal": "PG", "formal_en": "Independent State of Papua New Guinea", "name_sort": "Papua New Guinea", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 6057263, "gdp_md_est": 13210, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PG", "iso_a3": "PNG", "iso_n3": "598", "un_a3": "598", "wb_a2": "PG", "wb_a3": "PNG", "woe_id": -99, "adm0_a3_is": "PNG", "adm0_a3_us": "PNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 16, "long_len": 16, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.998535, -2.597377 ], [ 142.734375, -3.288598 ], [ 144.580078, -3.858774 ], [ 145.272217, -4.368320 ], [ 145.827026, -4.872048 ], [ 145.980835, -5.462896 ], [ 147.645264, -6.080473 ], [ 147.886963, -6.610044 ], [ 146.969604, -6.719165 ], [ 147.189331, -7.384258 ], [ 148.079224, -8.042913 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.069551 ], [ 149.265747, -9.514079 ], [ 150.034790, -9.681984 ], [ 149.738159, -9.871452 ], [ 150.798340, -10.293301 ], [ 150.688477, -10.579622 ], [ 150.023804, -10.649811 ], [ 149.782104, -10.390572 ], [ 148.919678, -10.277086 ], [ 147.908936, -10.125709 ], [ 147.134399, -9.492408 ], [ 146.563110, -8.939340 ], [ 146.046753, -8.064669 ], [ 144.739380, -7.629331 ], [ 143.893433, -7.912353 ], [ 143.283691, -8.244110 ], [ 143.410034, -8.982749 ], [ 142.624512, -9.324411 ], [ 142.064209, -9.156333 ], [ 141.031494, -9.112945 ], [ 140.998535, -2.597377 ] ] ], [ [ [ 154.649048, -5.041699 ], [ 154.758911, -5.337114 ], [ 155.061035, -5.566783 ], [ 155.544434, -6.200629 ], [ 156.016846, -6.539103 ], [ 155.879517, -6.817353 ], [ 155.599365, -6.915521 ], [ 155.165405, -6.533645 ], [ 154.725952, -5.900189 ], [ 154.511719, -5.134715 ], [ 154.649048, -5.041699 ] ] ], [ [ [ 152.133179, -4.143722 ], [ 152.336426, -4.308069 ], [ 152.314453, -4.866574 ], [ 151.979370, -5.473832 ], [ 151.457520, -5.555848 ], [ 151.298218, -5.840081 ], [ 150.238037, -6.315299 ], [ 149.705200, -6.315299 ], [ 148.886719, -6.025848 ], [ 148.315430, -5.741708 ], [ 148.397827, -5.435554 ], [ 149.293213, -5.583184 ], [ 149.842529, -5.501172 ], [ 149.990845, -5.025283 ], [ 150.139160, -4.997922 ], [ 150.232544, -5.528511 ], [ 150.803833, -5.451959 ], [ 151.089478, -5.112830 ], [ 151.644287, -4.751624 ], [ 151.534424, -4.165637 ], [ 152.133179, -4.143722 ] ] ], [ [ [ 150.935669, -2.498597 ], [ 151.479492, -2.778451 ], [ 151.814575, -2.997899 ], [ 152.237549, -3.239240 ], [ 152.638550, -3.655964 ], [ 153.017578, -3.979341 ], [ 153.138428, -4.499762 ], [ 152.825317, -4.762573 ], [ 152.638550, -4.171115 ], [ 152.402344, -3.787522 ], [ 151.380615, -3.030812 ], [ 150.661011, -2.740044 ], [ 150.935669, -2.498597 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 135.021973, 48.480204 ], [ 135.000000, 48.436490 ], [ 134.560547, 47.683881 ], [ 134.560547, 48.396385 ], [ 135.000000, 48.476563 ], [ 135.021973, 48.480204 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "name_sort": "Japan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "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": [ [ [ [ 141.366577, 41.380930 ], [ 141.525879, 40.979898 ], [ 141.657715, 40.647304 ], [ 139.938354, 40.647304 ], [ 140.300903, 41.195190 ], [ 141.366577, 41.380930 ] ] ], [ [ [ 141.965332, 45.552525 ], [ 143.140869, 44.512176 ], [ 143.909912, 44.174325 ], [ 144.613037, 43.961191 ], [ 145.316162, 44.386692 ], [ 145.541382, 43.265206 ], [ 144.058228, 42.988576 ], [ 143.179321, 41.996243 ], [ 141.608276, 42.682435 ], [ 141.064453, 41.586688 ], [ 139.954834, 41.570252 ], [ 139.817505, 42.565219 ], [ 140.311890, 43.337165 ], [ 141.377563, 43.389082 ], [ 141.668701, 44.774036 ], [ 141.965332, 45.552525 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "New Zealand", "sov_a3": "NZ1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "New Zealand", "adm0_a3": "NZL", "geou_dif": 0, "geounit": "New Zealand", "gu_a3": "NZL", "su_dif": 0, "subunit": "New Zealand", "su_a3": "NZL", "brk_diff": 0, "name": "New Zealand", "name_long": "New Zealand", "brk_a3": "NZL", "brk_name": "New Zealand", "abbrev": "N.Z.", "postal": "NZ", "formal_en": "New Zealand", "name_sort": "New Zealand", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 4213418, "gdp_md_est": 116700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NZ", "iso_a3": "NZL", "iso_n3": "554", "un_a3": "554", "wb_a2": "NZ", "wb_a3": "NZL", "woe_id": -99, "adm0_a3_is": "NZL", "adm0_a3_us": "NZL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.798462, -40.492915 ], [ 173.018188, -40.917664 ], [ 173.051147, -40.979898 ], [ 173.232422, -41.310824 ], [ 172.001953, -41.310824 ], [ 172.089844, -40.979898 ], [ 172.095337, -40.955011 ], [ 172.798462, -40.492915 ] ] ], [ [ [ 173.001709, -34.447689 ], [ 173.551025, -35.003003 ], [ 174.325562, -35.263562 ], [ 174.611206, -36.155618 ], [ 175.336304, -37.208457 ], [ 175.352783, -36.522881 ], [ 175.808716, -36.796090 ], [ 175.957031, -37.553288 ], [ 176.759033, -37.879189 ], [ 177.434692, -37.957192 ], [ 178.005981, -37.579413 ], [ 178.516846, -37.692514 ], [ 178.269653, -38.582526 ], [ 177.967529, -39.164141 ], [ 177.203979, -39.142842 ], [ 176.934814, -39.448919 ], [ 177.028198, -39.876019 ], [ 176.885376, -40.065461 ], [ 176.237183, -40.979898 ], [ 176.011963, -41.286062 ], [ 175.968018, -41.310824 ], [ 174.732056, -41.310824 ], [ 174.649658, -41.277806 ], [ 174.858398, -40.979898 ], [ 175.226440, -40.455307 ], [ 174.896851, -39.905523 ], [ 173.820190, -39.508279 ], [ 173.847656, -39.142842 ], [ 174.572754, -38.796908 ], [ 174.743042, -38.026459 ], [ 174.693604, -37.378888 ], [ 174.287109, -36.708064 ], [ 174.314575, -36.531709 ], [ 173.836670, -36.120128 ], [ 173.051147, -35.236646 ], [ 172.633667, -34.524661 ], [ 173.001709, -34.447689 ] ] ], [ [ [ 173.990479, -40.979898 ], [ 174.221191, -41.310824 ], [ 173.281860, -41.310824 ], [ 173.864136, -40.979898 ], [ 173.957520, -40.925965 ], [ 173.990479, -40.979898 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Solomon Islands", "sov_a3": "SLB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Solomon Islands", "adm0_a3": "SLB", "geou_dif": 0, "geounit": "Solomon Islands", "gu_a3": "SLB", "su_dif": 0, "subunit": "Solomon Islands", "su_a3": "SLB", "brk_diff": 0, "name": "Solomon Is.", "name_long": "Solomon Islands", "brk_a3": "SLB", "brk_name": "Solomon Is.", "abbrev": "S. Is.", "postal": "SB", "name_sort": "Solomon Islands", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 595613, "gdp_md_est": 1078, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SB", "iso_a3": "SLB", "iso_n3": "090", "un_a3": "090", "wb_a2": "SB", "wb_a3": "SLB", "woe_id": -99, "adm0_a3_is": "SLB", "adm0_a3_us": "SLB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 15, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.317749, -10.201407 ], [ 161.916504, -10.444598 ], [ 162.114258, -10.482410 ], [ 162.394409, -10.822515 ], [ 161.696777, -10.817120 ], [ 161.317749, -10.201407 ] ] ], [ [ [ 159.702759, -9.237671 ], [ 160.361938, -9.400291 ], [ 160.686035, -9.606166 ], [ 160.850830, -9.871452 ], [ 160.460815, -9.893099 ], [ 159.845581, -9.790264 ], [ 159.636841, -9.638661 ], [ 159.702759, -9.237671 ] ] ], [ [ [ 160.916748, -8.314777 ], [ 161.279297, -9.118368 ], [ 161.674805, -9.595334 ], [ 161.526489, -9.779438 ], [ 160.784912, -8.912207 ], [ 160.576172, -8.314777 ], [ 160.916748, -8.314777 ] ] ], [ [ [ 158.356934, -7.318882 ], [ 158.818359, -7.558547 ], [ 159.636841, -8.015716 ], [ 159.873047, -8.336518 ], [ 159.916992, -8.537565 ], [ 159.131470, -8.113615 ], [ 158.582153, -7.754537 ], [ 158.208618, -7.416942 ], [ 158.356934, -7.318882 ] ] ], [ [ [ 157.060547, -6.964597 ], [ 157.137451, -7.019120 ], [ 157.500000, -7.313433 ], [ 157.532959, -7.346123 ], [ 157.500000, -7.357019 ], [ 157.335205, -7.400600 ], [ 157.060547, -7.258945 ], [ 157.060547, -6.964597 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Vanuatu", "sov_a3": "VUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vanuatu", "adm0_a3": "VUT", "geou_dif": 0, "geounit": "Vanuatu", "gu_a3": "VUT", "su_dif": 0, "subunit": "Vanuatu", "su_a3": "VUT", "brk_diff": 0, "name": "Vanuatu", "name_long": "Vanuatu", "brk_a3": "VUT", "brk_name": "Vanuatu", "abbrev": "Van.", "postal": "VU", "formal_en": "Republic of Vanuatu", "name_sort": "Vanuatu", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 218519, "gdp_md_est": 988.5, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VU", "iso_a3": "VUT", "iso_n3": "548", "un_a3": "548", "wb_a2": "VU", "wb_a3": "VUT", "woe_id": -99, "adm0_a3_is": "VUT", "adm0_a3_us": "VUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": 2, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.211914, -15.887376 ], [ 167.843628, -16.462427 ], [ 167.514038, -16.594081 ], [ 167.178955, -16.156645 ], [ 167.211914, -15.887376 ] ] ], [ [ [ 166.624146, -14.626109 ], [ 167.107544, -14.928862 ], [ 167.266846, -15.739388 ], [ 166.997681, -15.612456 ], [ 166.788940, -15.665354 ], [ 166.646118, -15.390136 ], [ 166.624146, -14.626109 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 0, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -169.664612, -83.956169 ], [ -169.571228, -83.979259 ], [ -169.002686, -84.117659 ], [ -168.750000, -84.181769 ], [ -168.530273, -84.237190 ], [ -168.530273, -85.070048 ], [ -180.000000, -85.070048 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139294 ], [ -177.258911, -84.452865 ], [ -177.140808, -84.417709 ], [ -176.086121, -84.099052 ], [ -175.948792, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.383240, -84.534302 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060808 ], [ -171.518555, -83.979259 ], [ -171.134033, -83.956169 ], [ -169.664612, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 0, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -169.953003, -83.884610 ], [ -169.571228, -83.979259 ], [ -169.477844, -84.002262 ], [ -171.903076, -84.002262 ], [ -171.518555, -83.979259 ], [ -169.953003, -83.884610 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 0, "y": 17 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Fiji", "sov_a3": "FJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Fiji", "adm0_a3": "FJI", "geou_dif": 0, "geounit": "Fiji", "gu_a3": "FJI", "su_dif": 0, "subunit": "Fiji", "su_a3": "FJI", "brk_diff": 0, "name": "Fiji", "name_long": "Fiji", "brk_a3": "FJI", "brk_name": "Fiji", "abbrev": "Fiji", "postal": "FJ", "formal_en": "Republic of Fiji", "name_sort": "Fiji", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 944720, "gdp_md_est": 3579, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "FJ", "iso_a3": "FJI", "iso_n3": "242", "un_a3": "242", "wb_a2": "FJ", "wb_a3": "FJI", "woe_id": -99, "adm0_a3_is": "FJI", "adm0_a3_us": "FJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -179.794006, -16.019416 ], [ -179.917603, -16.499299 ], [ -180.000000, -16.554594 ], [ -180.000000, -16.066929 ], [ -179.794006, -16.019416 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 0, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -171.732788, 63.783699 ], [ -171.114807, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.432089 ], [ -168.750000, 63.306514 ], [ -168.689575, 63.297876 ], [ -168.750000, 63.218780 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.290833, 63.195257 ], [ -170.672607, 63.376756 ], [ -171.554260, 63.318850 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.783699 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ -171.197205, 66.600676 ], [ -171.013184, 66.513260 ], [ -169.900818, 65.977798 ], [ -170.892334, 65.541408 ], [ -172.532043, 65.438860 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.252948 ], [ -173.894348, 64.282760 ], [ -174.655151, 64.632115 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.223206, 65.520930 ], [ -178.360291, 65.390867 ], [ -178.904114, 65.740785 ], [ -178.687134, 66.112731 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.404588 ], [ -180.000000, 64.980521 ], [ -180.000000, 66.600676 ], [ -175.012207, 66.600676 ], [ -175.014954, 66.585400 ], [ -174.822693, 66.513260 ], [ -174.342041, 66.336403 ], [ -174.396973, 66.513260 ], [ -174.424438, 66.600676 ], [ -171.197205, 66.600676 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 0, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.014954, 66.585400 ], [ -174.822693, 66.513260 ], [ -174.583740, 66.425537 ], [ -180.000000, 66.425537 ], [ -180.000000, 68.964307 ] ] ], [ [ [ -171.859131, 66.913911 ], [ -171.013184, 66.513260 ], [ -170.829163, 66.425537 ], [ -174.369507, 66.425537 ], [ -174.396973, 66.513260 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.913911 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 0, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -179.873657, 71.557955 ], [ -179.024963, 71.556217 ], [ -177.580261, 71.269949 ], [ -177.665405, 71.133652 ], [ -178.695374, 70.893280 ], [ -180.000000, 70.832953 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 1, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -168.969727, -84.125535 ], [ -168.750000, -84.181769 ], [ -168.530273, -84.237190 ], [ -167.022400, -84.570286 ], [ -164.182434, -84.825066 ], [ -162.575684, -85.051129 ], [ -162.435608, -85.070048 ], [ -168.969727, -85.070048 ], [ -168.969727, -84.125535 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 1, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -159.433594, -79.129976 ], [ -159.408875, -79.171335 ], [ -159.208374, -79.496652 ], [ -161.128235, -79.633945 ], [ -162.441101, -79.281206 ], [ -162.627869, -79.171335 ], [ -162.696533, -79.129976 ], [ -159.433594, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 1, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ -163.108521, -78.222831 ], [ -161.246338, -78.379877 ], [ -160.246582, -78.693184 ], [ -159.483032, -79.046269 ], [ -159.408875, -79.171335 ], [ -159.384155, -79.212538 ], [ -162.556458, -79.212538 ], [ -162.627869, -79.171335 ], [ -163.028870, -78.928746 ], [ -163.067322, -78.869518 ], [ -163.715515, -78.595299 ], [ -163.108521, -78.222831 ] ] ], [ [ [ -158.365173, -76.888876 ], [ -157.876282, -76.986954 ], [ -157.500000, -77.118644 ], [ -157.280273, -77.194959 ], [ -157.280273, -78.372683 ], [ -157.500000, -78.274853 ], [ -158.052063, -78.025574 ], [ -158.365173, -76.888876 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 1, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.280273, 21.171606 ], [ -157.280273, 21.097313 ], [ -157.326965, 21.099875 ], [ -157.280273, 21.171606 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.942200, 21.654875 ], [ -157.653809, 21.322640 ], [ -157.708740, 21.266340 ], [ -157.780151, 21.279137 ], [ -158.128967, 21.314964 ], [ -158.255310, 21.539957 ], [ -158.293762, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.362183, 22.146708 ], [ -159.345703, 21.983801 ], [ -159.392395, 21.943046 ], [ -159.463806, 21.884438 ], [ -159.576416, 21.943046 ], [ -159.801636, 22.067823 ], [ -159.749451, 22.139076 ], [ -159.735718, 22.146708 ], [ -159.362183, 22.146708 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 1, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.215377 ], [ -159.345703, 21.983801 ], [ -159.392395, 21.943046 ], [ -159.463806, 21.884438 ], [ -159.576416, 21.943046 ], [ -159.801636, 22.067823 ], [ -159.749451, 22.139076 ], [ -159.598389, 22.238260 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 1, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -158.694763, 55.899956 ], [ -159.032593, 55.776573 ], [ -159.603882, 55.567475 ], [ -160.290527, 55.645049 ], [ -161.224365, 55.365064 ], [ -162.237854, 55.024873 ], [ -163.070068, 54.691297 ], [ -164.786682, 54.404544 ], [ -164.943237, 54.573654 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.349451 ], [ -162.037354, 55.776573 ], [ -161.806641, 55.895336 ], [ -161.751709, 55.899956 ], [ -158.694763, 55.899956 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 1, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.280273, 58.857803 ], [ -157.500000, 58.799516 ], [ -158.194885, 58.616917 ], [ -158.518982, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.931587 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.672654 ], [ -162.056580, 59.267284 ], [ -161.875305, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.819885, 59.799253 ], [ -164.663086, 60.268428 ], [ -165.346985, 60.508639 ], [ -165.352478, 61.074231 ], [ -166.121521, 61.500424 ], [ -166.052856, 61.606396 ], [ -165.981445, 61.710706 ], [ -157.280273, 61.710706 ], [ -157.280273, 58.857803 ] ] ], [ [ [ -166.470337, 60.385362 ], [ -165.676575, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.192932, 59.755012 ], [ -166.849365, 59.942632 ], [ -167.456360, 60.213898 ], [ -166.470337, 60.385362 ] ] ], [ [ [ -157.280273, 58.644082 ], [ -157.280273, 56.742181 ], [ -157.500000, 56.669811 ], [ -158.117981, 56.464008 ], [ -158.433838, 55.995309 ], [ -159.032593, 55.776573 ], [ -159.370422, 55.652798 ], [ -162.279053, 55.652798 ], [ -162.037354, 55.776573 ], [ -161.806641, 55.895336 ], [ -160.565186, 56.009131 ], [ -160.070801, 56.418459 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.218121 ], [ -157.725220, 57.570361 ], [ -157.552185, 58.329683 ], [ -157.500000, 58.387318 ], [ -157.280273, 58.644082 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 1, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.280273, 66.600676 ], [ -157.280273, 61.501734 ], [ -166.121521, 61.501734 ], [ -166.052856, 61.606396 ], [ -165.737000, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.753967, 63.220018 ], [ -163.067322, 63.059937 ], [ -162.262573, 63.542434 ], [ -161.534729, 63.456647 ], [ -160.773926, 63.766708 ], [ -160.960693, 64.223104 ], [ -161.518250, 64.402872 ], [ -160.779419, 64.789338 ], [ -161.394653, 64.777637 ], [ -162.454834, 64.560241 ], [ -162.759705, 64.338718 ], [ -163.547974, 64.560241 ], [ -164.962463, 64.447927 ], [ -166.426392, 64.687365 ], [ -166.846619, 65.089489 ], [ -168.112793, 65.670724 ], [ -166.706543, 66.089364 ], [ -164.767456, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.655090, 66.576667 ], [ -163.671570, 66.513260 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.117180 ], [ -162.196655, 66.513260 ], [ -162.312012, 66.600676 ], [ -157.280273, 66.600676 ] ] ], [ [ [ -168.969727, 63.336111 ], [ -168.750000, 63.306514 ], [ -168.689575, 63.297876 ], [ -168.750000, 63.218780 ], [ -168.771973, 63.189064 ], [ -168.969727, 63.134503 ], [ -168.969727, 63.336111 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 1, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.655090, 66.576667 ], [ -163.671570, 66.513260 ], [ -163.696289, 66.425537 ], [ -165.171204, 66.425537 ], [ -164.767456, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.655090, 66.576667 ] ] ], [ [ [ -157.280273, 66.425537 ], [ -162.081299, 66.425537 ], [ -162.196655, 66.513260 ], [ -162.490540, 66.736648 ], [ -163.721008, 67.116613 ], [ -164.432373, 67.616543 ], [ -165.390930, 68.043542 ], [ -166.766968, 68.359712 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.915946 ], [ -163.168945, 69.371606 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.935974, 70.447832 ], [ -160.235596, 70.612614 ], [ -159.925232, 70.685421 ], [ -157.280273, 70.685421 ], [ -157.280273, 66.425537 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 1, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -157.280273, 71.117659 ], [ -157.280273, 70.539543 ], [ -160.548706, 70.539543 ], [ -160.235596, 70.612614 ], [ -159.040833, 70.892381 ], [ -158.120728, 70.824836 ], [ -157.500000, 71.041960 ], [ -157.280273, 71.117659 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 2, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -146.030273, -83.956169 ], [ -146.030273, -84.539009 ], [ -146.250000, -84.536918 ], [ -146.829529, -84.531162 ], [ -150.062256, -84.295908 ], [ -150.746155, -83.979259 ], [ -150.795593, -83.956169 ], [ -146.030273, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 2, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -146.030273, -82.648222 ], [ -146.030273, -84.002262 ], [ -150.699463, -84.002262 ], [ -150.746155, -83.979259 ], [ -150.905457, -83.904183 ], [ -153.588867, -83.688427 ], [ -153.410339, -83.237720 ], [ -153.039551, -82.826337 ], [ -152.885742, -82.676285 ], [ -152.858276, -82.648222 ], [ -146.030273, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 2, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -146.030273, -81.059130 ], [ -146.030273, -82.704241 ], [ -152.915955, -82.704241 ], [ -152.885742, -82.676285 ], [ -152.666016, -82.454176 ], [ -152.863770, -82.042319 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.838074, -81.101715 ], [ -154.410095, -81.160574 ], [ -153.407593, -81.093214 ], [ -152.904968, -81.059130 ], [ -151.864014, -81.059130 ], [ -151.715698, -81.093214 ], [ -150.650024, -81.336913 ], [ -149.164124, -81.093214 ], [ -148.960876, -81.059130 ], [ -146.030273, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 2, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ -156.838074, -81.101715 ], [ -155.805359, -81.127169 ], [ -156.717224, -81.127169 ], [ -156.838074, -81.101715 ] ] ], [ [ [ -151.715698, -81.093214 ], [ -151.570129, -81.127169 ], [ -153.910217, -81.127169 ], [ -153.407593, -81.093214 ], [ -152.100220, -81.003896 ], [ -151.715698, -81.093214 ] ] ], [ [ [ -146.030273, -81.127169 ], [ -149.370117, -81.127169 ], [ -149.164124, -81.093214 ], [ -148.867493, -81.043322 ], [ -147.222290, -80.670662 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.065491, -79.651722 ], [ -149.532166, -79.358068 ], [ -151.589355, -79.299070 ], [ -153.273010, -79.171335 ], [ -153.391113, -79.162043 ], [ -154.031067, -79.129976 ], [ -146.030273, -79.129976 ], [ -146.030273, -81.127169 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 2, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -146.030273, -76.790701 ], [ -146.030273, -79.212538 ], [ -152.734680, -79.212538 ], [ -153.273010, -79.171335 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063999 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -157.500000, -78.274853 ], [ -157.719727, -78.176211 ], [ -157.719727, -77.041882 ], [ -157.500000, -77.118644 ], [ -156.975403, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.745422, -77.065265 ], [ -152.921448, -77.496391 ], [ -151.333923, -77.398495 ], [ -150.004578, -77.182779 ], [ -148.749390, -76.908799 ], [ -148.515930, -76.840816 ], [ -148.342896, -76.790701 ], [ -146.030273, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 2, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -146.030273, -75.356870 ], [ -146.030273, -76.890745 ], [ -148.686218, -76.890745 ], [ -148.515930, -76.840816 ], [ -147.615051, -76.575609 ], [ -146.250000, -76.486687 ], [ -146.104431, -76.477699 ], [ -146.145630, -76.105414 ], [ -146.250000, -75.993510 ], [ -146.497192, -75.732565 ], [ -146.250000, -75.437887 ], [ -146.203308, -75.379765 ], [ -146.030273, -75.356870 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 2, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.249314 ], [ -155.404358, 20.081729 ], [ -155.225830, 19.993998 ], [ -155.063782, 19.859727 ], [ -154.808350, 19.510609 ], [ -154.833069, 19.453644 ], [ -155.223083, 19.241143 ], [ -155.544434, 19.085480 ], [ -155.690002, 18.916680 ], [ -155.937195, 19.059522 ], [ -155.909729, 19.339653 ], [ -156.074524, 19.704658 ], [ -156.025085, 19.815806 ], [ -155.852051, 19.978511 ], [ -155.920715, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.612854, 21.012727 ], [ -156.258545, 20.917831 ], [ -155.997620, 20.766387 ], [ -156.080017, 20.645636 ], [ -156.415100, 20.573653 ], [ -156.588135, 20.784363 ], [ -156.703491, 20.866511 ], [ -156.711731, 20.928093 ], [ -156.612854, 21.012727 ] ] ], [ [ [ -157.252808, 21.220261 ], [ -156.758423, 21.179290 ], [ -156.791382, 21.069123 ], [ -157.326965, 21.099875 ], [ -157.252808, 21.220261 ] ] ], [ [ [ -157.719727, 21.399377 ], [ -157.653809, 21.322640 ], [ -157.708740, 21.266340 ], [ -157.719727, 21.268900 ], [ -157.719727, 21.399377 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 2, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -146.030273, 61.710706 ], [ -146.030273, 60.496468 ], [ -146.250000, 60.576175 ], [ -147.115173, 60.885027 ], [ -148.224792, 60.673179 ], [ -148.018799, 59.978380 ], [ -148.570862, 59.915107 ], [ -149.729919, 59.706556 ], [ -150.608826, 59.369593 ], [ -151.718445, 59.156220 ], [ -151.861267, 59.745326 ], [ -151.410828, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.284752 ], [ -151.896973, 60.728287 ], [ -152.580872, 60.062099 ], [ -154.020081, 59.351396 ], [ -153.289490, 58.864905 ], [ -154.234314, 58.147519 ], [ -155.308228, 57.729086 ], [ -156.310730, 57.424252 ], [ -156.557922, 56.980911 ], [ -157.500000, 56.669811 ], [ -157.719727, 56.595791 ], [ -157.719727, 57.583614 ], [ -157.552185, 58.329683 ], [ -157.500000, 58.387318 ], [ -157.044067, 58.920246 ], [ -157.500000, 58.799516 ], [ -157.719727, 58.741132 ], [ -157.719727, 61.710706 ], [ -146.030273, 61.710706 ] ] ], [ [ [ -153.229065, 57.970244 ], [ -152.567139, 57.901715 ], [ -152.141418, 57.592447 ], [ -153.006592, 57.116859 ], [ -154.006348, 56.736155 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.461203 ], [ -153.764648, 57.816967 ], [ -153.229065, 57.970244 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 2, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -146.030273, 66.600676 ], [ -146.030273, 61.501734 ], [ -157.719727, 61.501734 ], [ -157.719727, 66.600676 ], [ -146.030273, 66.600676 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 2, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -152.248535, 70.685421 ], [ -152.267761, 70.612614 ], [ -152.270508, 70.600758 ], [ -150.740662, 70.430360 ], [ -149.721680, 70.530391 ], [ -147.615051, 70.214875 ], [ -146.250000, 70.147827 ], [ -146.030273, 70.137565 ], [ -146.030273, 66.425537 ], [ -157.719727, 66.425537 ], [ -157.719727, 70.685421 ], [ -152.248535, 70.685421 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 2, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -156.582642, 71.357945 ], [ -155.069275, 71.147857 ], [ -154.344177, 70.697228 ], [ -153.901978, 70.890583 ], [ -152.210083, 70.830248 ], [ -152.267761, 70.612614 ], [ -152.270508, 70.600758 ], [ -151.726685, 70.539543 ], [ -157.719727, 70.539543 ], [ -157.719727, 70.965073 ], [ -157.500000, 71.041960 ], [ -156.582642, 71.357945 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 3, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -134.780273, -83.956169 ], [ -134.780273, -85.070048 ], [ -143.399048, -85.070048 ], [ -143.212280, -85.051129 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570286 ], [ -146.250000, -84.536918 ], [ -146.469727, -84.534825 ], [ -146.469727, -83.956169 ], [ -134.780273, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 3, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -134.780273, -82.648222 ], [ -134.780273, -84.002262 ], [ -146.469727, -84.002262 ], [ -146.469727, -82.648222 ], [ -134.780273, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 3, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -134.780273, -81.059130 ], [ -134.780273, -82.704241 ], [ -146.469727, -82.704241 ], [ -146.469727, -81.059130 ], [ -134.780273, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 3, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -134.780273, -79.129976 ], [ -134.780273, -81.127169 ], [ -146.469727, -81.127169 ], [ -146.469727, -80.359755 ], [ -146.420288, -80.337653 ], [ -146.469727, -80.278004 ], [ -146.469727, -79.129976 ], [ -134.780273, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 3, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -134.780273, -76.790701 ], [ -134.780273, -79.212538 ], [ -146.469727, -79.212538 ], [ -146.469727, -76.790701 ], [ -134.780273, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 3, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -135.216980, -74.302152 ], [ -135.000000, -74.318493 ], [ -134.780273, -74.334817 ], [ -134.780273, -76.890745 ], [ -146.469727, -76.890745 ], [ -146.469727, -76.501441 ], [ -146.250000, -76.486687 ], [ -146.104431, -76.477699 ], [ -146.145630, -76.105414 ], [ -146.250000, -75.993510 ], [ -146.469727, -75.760967 ], [ -146.469727, -75.701395 ], [ -146.250000, -75.437887 ], [ -146.203308, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.324646, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.086446 ], [ -140.210266, -75.066641 ], [ -138.858948, -74.968655 ], [ -137.507629, -74.733232 ], [ -136.430969, -74.517689 ], [ -135.216980, -74.302152 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 3, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -134.780273, 61.710706 ], [ -134.780273, 59.171706 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.324783 ], [ -135.477905, 59.788198 ], [ -136.480408, 59.464617 ], [ -137.452698, 58.906064 ], [ -138.342590, 59.562158 ], [ -139.040222, 60.000359 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.306546 ], [ -140.998535, 61.710706 ], [ -134.780273, 61.710706 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -140.998535, 61.710706 ], [ -140.998535, 60.306546 ], [ -140.015259, 60.277962 ], [ -139.040222, 60.000359 ], [ -138.342590, 59.562158 ], [ -137.452698, 58.906064 ], [ -136.480408, 59.464617 ], [ -135.477905, 59.788198 ], [ -135.000000, 59.324783 ], [ -134.945068, 59.271495 ], [ -134.780273, 59.171706 ], [ -134.780273, 58.170702 ], [ -135.000000, 58.185185 ], [ -135.038452, 58.188080 ], [ -136.628723, 58.212685 ], [ -137.801514, 58.500870 ], [ -139.869690, 59.538495 ], [ -140.825500, 59.728716 ], [ -142.575073, 60.085393 ], [ -143.959351, 60.000359 ], [ -145.925903, 60.459926 ], [ -146.250000, 60.576175 ], [ -146.469727, 60.654340 ], [ -146.469727, 61.710706 ], [ -140.998535, 61.710706 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 3, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -134.780273, 66.600676 ], [ -134.780273, 61.501734 ], [ -140.998535, 61.501734 ], [ -140.998535, 61.606396 ], [ -140.993042, 66.000150 ], [ -140.993042, 66.600676 ], [ -134.780273, 66.600676 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -140.993042, 66.600676 ], [ -140.993042, 66.513260 ], [ -140.998535, 61.606396 ], [ -140.998535, 61.501734 ], [ -146.469727, 61.501734 ], [ -146.469727, 66.600676 ], [ -140.993042, 66.600676 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 3, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -140.987549, 69.712393 ], [ -139.122620, 69.471042 ], [ -137.548828, 68.990910 ], [ -136.505127, 68.898154 ], [ -135.626221, 69.315410 ], [ -135.000000, 69.477783 ], [ -134.780273, 69.534518 ], [ -134.780273, 66.425537 ], [ -140.993042, 66.425537 ], [ -140.993042, 66.513260 ], [ -140.987549, 69.712393 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -146.469727, 70.159017 ], [ -146.250000, 70.147827 ], [ -145.692444, 70.120761 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.993042, 66.513260 ], [ -140.993042, 66.425537 ], [ -146.469727, 66.425537 ], [ -146.469727, 70.159017 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -123.530273, -83.956169 ], [ -123.530273, -85.070048 ], [ -135.219727, -85.070048 ], [ -135.219727, -83.956169 ], [ -123.530273, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -123.530273, -82.648222 ], [ -123.530273, -84.002262 ], [ -135.219727, -84.002262 ], [ -135.219727, -82.648222 ], [ -123.530273, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -123.530273, -81.059130 ], [ -123.530273, -82.704241 ], [ -135.219727, -82.704241 ], [ -135.219727, -81.059130 ], [ -123.530273, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -123.530273, -79.129976 ], [ -123.530273, -81.127169 ], [ -135.219727, -81.127169 ], [ -135.219727, -79.129976 ], [ -123.530273, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -123.530273, -76.790701 ], [ -123.530273, -79.212538 ], [ -135.219727, -79.212538 ], [ -135.219727, -76.790701 ], [ -123.530273, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -132.258911, -74.302152 ], [ -130.926819, -74.478784 ], [ -129.556274, -74.458927 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.517689 ], [ -124.013672, -74.478784 ], [ -123.750000, -74.482458 ], [ -123.530273, -74.485397 ], [ -123.530273, -76.890745 ], [ -135.219727, -76.890745 ], [ -135.219727, -74.302895 ], [ -135.216980, -74.302152 ], [ -135.000000, -74.318493 ], [ -134.431458, -74.360753 ], [ -133.747559, -74.439782 ], [ -132.258911, -74.302152 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -126.559753, -73.245712 ], [ -125.559998, -73.480828 ], [ -124.032898, -73.872954 ], [ -124.620667, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.284851, -73.461293 ], [ -126.559753, -73.245712 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.530273, 41.145570 ], [ -123.530273, 38.741231 ], [ -123.728027, 38.953001 ], [ -123.750000, 39.087436 ], [ -123.865356, 39.768436 ], [ -124.398193, 40.315138 ], [ -124.222412, 40.979898 ], [ -124.181213, 41.143501 ], [ -124.181213, 41.145570 ], [ -123.530273, 41.145570 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -123.934021, 49.066668 ], [ -123.923035, 49.063069 ], [ -123.818665, 48.922499 ], [ -123.750000, 48.833990 ], [ -123.530273, 48.538432 ], [ -123.530273, 48.505687 ], [ -123.750000, 48.443778 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.826757 ], [ -125.738525, 48.922499 ], [ -125.859375, 49.066668 ], [ -123.934021, 49.066668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -124.568481, 48.379970 ], [ -123.750000, 48.189895 ], [ -123.530273, 48.136767 ], [ -123.530273, 40.813809 ], [ -124.266357, 40.813809 ], [ -124.222412, 40.979898 ], [ -124.181213, 41.143501 ], [ -124.214172, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.142761, 43.709579 ], [ -123.901062, 45.523668 ], [ -124.082336, 46.865825 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.186232 ], [ -124.568481, 48.379970 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -128.358765, 50.771208 ], [ -127.309570, 50.553580 ], [ -126.697083, 50.401515 ], [ -125.757751, 50.296358 ], [ -125.417175, 49.951220 ], [ -124.922791, 49.477048 ], [ -123.923035, 49.063069 ], [ -123.818665, 48.922499 ], [ -123.711548, 48.777913 ], [ -125.485840, 48.777913 ], [ -125.656128, 48.826757 ], [ -125.738525, 48.922499 ], [ -125.955505, 49.181703 ], [ -126.850891, 49.530557 ], [ -127.032166, 49.816721 ], [ -128.059387, 49.995381 ], [ -128.446655, 50.539617 ], [ -128.358765, 50.771208 ] ] ], [ [ [ -123.530273, 55.899956 ], [ -123.530273, 49.287515 ], [ -123.750000, 49.398463 ], [ -124.911804, 49.984786 ], [ -125.625916, 50.417269 ], [ -127.435913, 50.831963 ], [ -127.993469, 51.716819 ], [ -127.850647, 52.330304 ], [ -129.130554, 52.756243 ], [ -129.306335, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.536804, 54.803851 ], [ -129.981995, 55.285372 ], [ -130.003967, 55.776573 ], [ -130.009460, 55.899956 ], [ -123.530273, 55.899956 ] ] ], [ [ [ -133.181763, 54.170474 ], [ -132.712097, 54.040038 ], [ -131.750793, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.179504, 52.180669 ], [ -131.580505, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.170474 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -130.009460, 55.899956 ], [ -130.003967, 55.776573 ], [ -129.981995, 55.285372 ], [ -130.536804, 54.803851 ], [ -131.086121, 55.180436 ], [ -131.967773, 55.499083 ], [ -132.058411, 55.776573 ], [ -132.096863, 55.899956 ], [ -130.009460, 55.899956 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -123.530273, 61.710706 ], [ -123.530273, 55.652798 ], [ -129.998474, 55.652798 ], [ -130.003967, 55.776573 ], [ -130.009460, 55.916891 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.693873 ], [ -133.357544, 58.410345 ], [ -134.272156, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.324783 ], [ -135.219727, 59.539888 ], [ -135.219727, 61.710706 ], [ -123.530273, 61.710706 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -135.219727, 59.539888 ], [ -135.000000, 59.324783 ], [ -134.945068, 59.271495 ], [ -134.272156, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.693873 ], [ -131.709595, 56.553428 ], [ -130.009460, 55.916891 ], [ -130.003967, 55.776573 ], [ -129.998474, 55.652798 ], [ -132.017212, 55.652798 ], [ -132.058411, 55.776573 ], [ -132.250671, 56.371335 ], [ -133.541565, 57.179436 ], [ -134.079895, 58.124320 ], [ -135.000000, 58.185185 ], [ -135.038452, 58.188080 ], [ -135.219727, 58.190976 ], [ -135.219727, 59.539888 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -123.530273, 66.600676 ], [ -123.530273, 61.501734 ], [ -135.219727, 61.501734 ], [ -135.219727, 66.600676 ], [ -123.530273, 66.600676 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -128.139038, 70.484566 ], [ -127.449646, 70.377854 ], [ -125.757751, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.291077, 69.400615 ], [ -123.750000, 69.472005 ], [ -123.530273, 69.501842 ], [ -123.530273, 66.425537 ], [ -135.219727, 66.425537 ], [ -135.219727, 69.420899 ], [ -135.000000, 69.477783 ], [ -134.414978, 69.627466 ], [ -132.931824, 69.505689 ], [ -131.432190, 69.945375 ], [ -129.795227, 70.194411 ], [ -129.108582, 69.779901 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -123.530273, 74.079925 ], [ -123.530273, 71.266421 ], [ -123.620911, 71.340377 ], [ -123.750000, 71.370232 ], [ -125.930786, 71.869054 ], [ -125.502319, 72.292409 ], [ -124.807434, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.477844, 74.019543 ], [ -124.576721, 74.079925 ], [ -123.530273, 74.079925 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -123.530273, 74.357050 ], [ -123.530273, 73.958939 ], [ -124.381714, 73.958939 ], [ -124.477844, 74.019543 ], [ -124.920044, 74.293232 ], [ -123.750000, 74.347419 ], [ -123.530273, 74.357050 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -112.280273, -83.956169 ], [ -112.280273, -85.070048 ], [ -123.969727, -85.070048 ], [ -123.969727, -83.956169 ], [ -112.280273, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -112.280273, -82.648222 ], [ -112.280273, -84.002262 ], [ -123.969727, -84.002262 ], [ -123.969727, -82.648222 ], [ -112.280273, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -112.280273, -81.059130 ], [ -112.280273, -82.704241 ], [ -123.969727, -82.704241 ], [ -123.969727, -81.059130 ], [ -112.280273, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -112.280273, -79.129976 ], [ -112.280273, -81.127169 ], [ -123.969727, -81.127169 ], [ -123.969727, -79.129976 ], [ -112.280273, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -112.280273, -76.790701 ], [ -112.280273, -79.212538 ], [ -123.969727, -79.212538 ], [ -123.969727, -76.790701 ], [ -112.280273, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ -113.444824, -73.958939 ], [ -113.318481, -74.019543 ], [ -113.299255, -74.027859 ], [ -112.947693, -74.380731 ], [ -112.500000, -74.611259 ], [ -112.299500, -74.713693 ], [ -112.280273, -74.708623 ], [ -112.280273, -76.890745 ], [ -123.969727, -76.890745 ], [ -123.969727, -74.479519 ], [ -123.750000, -74.482458 ], [ -121.074829, -74.517689 ], [ -119.704285, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027859 ], [ -116.218872, -74.243338 ], [ -115.024109, -74.067112 ], [ -114.875793, -74.019543 ], [ -114.689026, -73.958939 ], [ -113.444824, -73.958939 ] ] ], [ [ [ -119.753723, -73.958939 ], [ -119.976196, -74.019543 ], [ -120.234375, -74.088210 ], [ -121.462097, -74.019543 ], [ -121.624146, -74.010467 ], [ -121.772461, -73.958939 ], [ -119.753723, -73.958939 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ -122.406921, -73.323918 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.726501, -73.480828 ], [ -119.292297, -73.833999 ], [ -119.976196, -74.019543 ], [ -120.201416, -74.079925 ], [ -120.390930, -74.079925 ], [ -121.462097, -74.019543 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.406921, -73.323918 ] ] ], [ [ [ -117.471313, -74.027859 ], [ -117.171936, -74.079925 ], [ -117.869568, -74.079925 ], [ -117.471313, -74.027859 ] ] ], [ [ [ -113.318481, -74.019543 ], [ -113.299255, -74.027859 ], [ -113.247070, -74.079925 ], [ -115.106506, -74.079925 ], [ -115.024109, -74.067112 ], [ -114.875793, -74.019543 ], [ -113.944702, -73.714276 ], [ -113.318481, -74.019543 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.280273, 32.138409 ], [ -112.280273, 31.723495 ], [ -112.500000, 31.791221 ], [ -113.024597, 31.952162 ], [ -113.307495, 32.040677 ], [ -113.615112, 32.138409 ], [ -112.280273, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -113.615112, 32.138409 ], [ -113.024597, 31.952162 ], [ -112.500000, 31.791221 ], [ -112.280273, 31.723495 ], [ -112.280273, 29.279212 ], [ -112.500000, 29.587789 ], [ -112.810364, 30.021544 ], [ -113.164673, 30.789037 ], [ -113.150940, 31.172860 ], [ -113.873291, 31.569175 ], [ -114.208374, 31.524703 ], [ -114.776917, 31.800558 ], [ -114.938965, 31.393502 ], [ -114.771423, 30.914007 ], [ -114.675293, 30.164126 ], [ -114.331970, 29.752455 ], [ -113.590393, 29.063372 ], [ -113.425598, 28.827832 ], [ -113.274536, 28.755620 ], [ -113.142700, 28.413144 ], [ -112.964172, 28.425222 ], [ -112.763672, 27.780772 ], [ -112.500000, 27.561852 ], [ -112.458801, 27.527758 ], [ -112.280273, 27.232652 ], [ -112.280273, 25.940757 ], [ -112.302246, 26.012361 ], [ -112.500000, 26.143111 ], [ -113.466797, 26.770135 ], [ -113.598633, 26.640094 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.142257 ], [ -115.057068, 27.724867 ], [ -114.982910, 27.800210 ], [ -114.570923, 27.741885 ], [ -114.200134, 28.115594 ], [ -114.164429, 28.567638 ], [ -114.933472, 29.281608 ], [ -115.521240, 29.556734 ], [ -115.889282, 30.183122 ], [ -116.260071, 30.838573 ], [ -116.724243, 31.637014 ], [ -116.864319, 31.952162 ], [ -116.949463, 32.138409 ], [ -113.615112, 32.138409 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.280273, 41.145570 ], [ -112.280273, 31.765537 ], [ -112.417603, 31.765537 ], [ -113.024597, 31.952162 ], [ -113.307495, 32.040677 ], [ -114.815369, 32.525974 ], [ -114.721985, 32.722599 ], [ -115.993652, 32.613930 ], [ -117.127991, 32.537552 ], [ -117.298279, 33.047810 ], [ -117.946472, 33.621481 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.083557, 34.079962 ], [ -119.440613, 34.350239 ], [ -120.368958, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.158091 ], [ -121.714783, 36.162270 ], [ -122.549744, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.115111 ], [ -123.728027, 38.953001 ], [ -123.750000, 39.087436 ], [ -123.865356, 39.768436 ], [ -123.969727, 39.876019 ], [ -123.969727, 41.145570 ], [ -112.280273, 41.145570 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.721985, 32.722599 ], [ -114.815369, 32.525974 ], [ -113.307495, 32.040677 ], [ -113.024597, 31.952162 ], [ -112.417603, 31.765537 ], [ -114.708252, 31.765537 ], [ -114.776917, 31.800558 ], [ -114.790649, 31.765537 ], [ -116.781921, 31.765537 ], [ -116.864319, 31.952162 ], [ -117.127991, 32.537552 ], [ -115.993652, 32.613930 ], [ -114.721985, 32.722599 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -123.934021, 49.066668 ], [ -123.923035, 49.063069 ], [ -123.750000, 48.833990 ], [ -123.511047, 48.511146 ], [ -123.750000, 48.443778 ], [ -123.969727, 48.383618 ], [ -123.969727, 49.066668 ], [ -123.934021, 49.066668 ] ] ], [ [ [ -112.280273, 49.066668 ], [ -112.280273, 49.000042 ], [ -122.840881, 49.000042 ], [ -122.975464, 49.003646 ], [ -123.101807, 49.066668 ], [ -112.280273, 49.066668 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.280273, 49.000042 ], [ -112.280273, 40.813809 ], [ -123.969727, 40.813809 ], [ -123.969727, 44.997825 ], [ -123.901062, 45.523668 ], [ -123.969727, 46.054173 ], [ -123.969727, 48.241138 ], [ -123.750000, 48.189895 ], [ -123.121033, 48.041365 ], [ -122.588196, 47.096305 ], [ -122.341003, 47.361153 ], [ -122.500305, 48.180739 ], [ -122.807922, 48.922499 ], [ -122.840881, 49.000042 ], [ -112.280273, 49.000042 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -123.969727, 49.082861 ], [ -123.923035, 49.063069 ], [ -123.711548, 48.777913 ], [ -123.969727, 48.777913 ], [ -123.969727, 49.082861 ] ] ], [ [ [ -112.280273, 55.899956 ], [ -112.280273, 49.000042 ], [ -122.840881, 49.000042 ], [ -122.975464, 49.003646 ], [ -123.750000, 49.398463 ], [ -123.969727, 49.510944 ], [ -123.969727, 55.899956 ], [ -112.280273, 55.899956 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.280273, 49.000042 ], [ -112.280273, 48.777913 ], [ -122.747498, 48.777913 ], [ -122.807922, 48.922499 ], [ -122.840881, 49.000042 ], [ -112.280273, 49.000042 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -112.280273, 61.710706 ], [ -112.280273, 55.652798 ], [ -123.969727, 55.652798 ], [ -123.969727, 61.710706 ], [ -112.280273, 61.710706 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -112.280273, 66.600676 ], [ -112.280273, 61.501734 ], [ -123.969727, 61.501734 ], [ -123.969727, 66.600676 ], [ -112.280273, 66.600676 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -122.684326, 69.855708 ], [ -121.473083, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.227112, 68.841718 ], [ -115.249329, 68.906063 ], [ -113.898010, 68.399180 ], [ -115.307007, 67.903454 ], [ -113.499756, 67.688600 ], [ -112.500000, 67.732354 ], [ -112.280273, 67.741719 ], [ -112.280273, 66.425537 ], [ -123.969727, 66.425537 ], [ -123.969727, 69.443092 ], [ -123.750000, 69.472005 ], [ -123.063354, 69.564267 ], [ -122.684326, 69.855708 ] ] ], [ [ [ -112.280273, 70.685421 ], [ -112.280273, 68.590481 ], [ -112.500000, 68.579450 ], [ -113.315735, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.221863, 69.280456 ], [ -116.109009, 69.168419 ], [ -117.342224, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.238104 ], [ -113.722229, 70.192550 ], [ -112.500000, 70.355706 ], [ -112.417603, 70.366783 ], [ -112.500000, 70.376932 ], [ -114.351196, 70.600758 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.009644, 70.612614 ], [ -118.111267, 70.685421 ], [ -112.280273, 70.685421 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -115.191650, 73.315246 ], [ -114.167175, 73.121756 ], [ -114.667053, 72.653038 ], [ -112.500000, 72.947848 ], [ -112.442322, 72.955900 ], [ -112.280273, 72.897841 ], [ -112.280273, 70.539543 ], [ -113.848572, 70.539543 ], [ -114.351196, 70.600758 ], [ -115.977173, 70.539543 ], [ -117.833862, 70.539543 ], [ -117.905273, 70.541373 ], [ -118.009644, 70.612614 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.402161, 71.558823 ], [ -118.564453, 72.308275 ], [ -117.866821, 72.706189 ], [ -115.191650, 73.315246 ] ] ], [ [ [ -117.199402, 74.079925 ], [ -116.998901, 74.019543 ], [ -116.586914, 73.896587 ], [ -115.513000, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.220886, 72.520707 ], [ -120.462341, 71.820272 ], [ -120.462341, 71.384265 ], [ -123.093567, 70.902268 ], [ -123.620911, 71.340377 ], [ -123.750000, 71.370232 ], [ -123.969727, 71.421054 ], [ -123.969727, 73.657955 ], [ -123.942261, 73.680352 ], [ -123.969727, 73.699635 ], [ -123.969727, 74.079925 ], [ -117.199402, 74.079925 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -121.539001, 74.449358 ], [ -120.110779, 74.241846 ], [ -117.556458, 74.185806 ], [ -116.998901, 74.019543 ], [ -116.795654, 73.958939 ], [ -123.969727, 73.958939 ], [ -123.969727, 74.337041 ], [ -123.750000, 74.347419 ], [ -121.539001, 74.449358 ] ] ], [ [ [ -112.280273, 75.149932 ], [ -112.500000, 75.144299 ], [ -116.312256, 75.043975 ], [ -117.713013, 75.222263 ], [ -116.347961, 76.199417 ], [ -115.405884, 76.478984 ], [ -112.590637, 76.141643 ], [ -112.500000, 76.112008 ], [ -112.280273, 76.039967 ], [ -112.280273, 75.149932 ] ] ], [ [ [ -116.334229, 76.890745 ], [ -116.336975, 76.877034 ], [ -116.419373, 76.840816 ], [ -117.108765, 76.530261 ], [ -118.042603, 76.481552 ], [ -119.902039, 76.053875 ], [ -121.500549, 75.900140 ], [ -122.857361, 76.116622 ], [ -121.214905, 76.840816 ], [ -121.159973, 76.864556 ], [ -121.077576, 76.890745 ], [ -116.334229, 76.890745 ] ] ], [ [ [ -112.280273, 75.060270 ], [ -112.280273, 74.416188 ], [ -112.500000, 74.413236 ], [ -113.744202, 74.394776 ], [ -113.873291, 74.720932 ], [ -112.500000, 75.014176 ], [ -112.280273, 75.060270 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -116.199646, 77.645360 ], [ -116.336975, 76.877034 ], [ -116.419373, 76.840816 ], [ -116.529236, 76.790701 ], [ -121.330261, 76.790701 ], [ -121.214905, 76.840816 ], [ -121.159973, 76.864556 ], [ -119.105530, 77.512436 ], [ -117.570190, 77.498770 ], [ -116.199646, 77.645360 ] ] ], [ [ [ -112.280273, 78.082425 ], [ -112.280273, 77.460066 ], [ -112.500000, 77.508278 ], [ -113.535461, 77.732617 ], [ -112.725220, 78.051190 ], [ -112.500000, 78.067101 ], [ -112.280273, 78.082425 ] ] ], [ [ [ -112.280273, 78.622964 ], [ -112.280273, 78.408058 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -112.500000, 78.558309 ], [ -112.280273, 78.622964 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -101.030273, -83.956169 ], [ -101.030273, -85.070048 ], [ -112.719727, -85.070048 ], [ -112.719727, -83.956169 ], [ -101.030273, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -101.030273, -82.648222 ], [ -101.030273, -84.002262 ], [ -112.719727, -84.002262 ], [ -112.719727, -82.648222 ], [ -101.030273, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -101.030273, -81.059130 ], [ -101.030273, -82.704241 ], [ -112.719727, -82.704241 ], [ -112.719727, -81.059130 ], [ -101.030273, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -101.030273, -79.129976 ], [ -101.030273, -81.127169 ], [ -112.719727, -81.127169 ], [ -112.719727, -79.129976 ], [ -101.030273, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -101.030273, -76.790701 ], [ -101.030273, -79.212538 ], [ -112.719727, -79.212538 ], [ -112.719727, -76.790701 ], [ -101.030273, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ -101.030273, -75.252357 ], [ -101.030273, -76.890745 ], [ -112.719727, -76.890745 ], [ -112.719727, -74.497881 ], [ -112.500000, -74.611259 ], [ -112.299500, -74.713693 ], [ -111.261292, -74.419877 ], [ -110.066528, -74.792423 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.878235, -74.948697 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -101.250000, -75.224364 ], [ -101.030273, -75.252357 ] ] ], [ [ [ -101.030273, -74.345937 ], [ -101.250000, -74.186555 ], [ -101.252747, -74.185058 ], [ -102.546387, -74.106272 ], [ -102.680969, -74.019543 ], [ -102.774353, -73.958939 ], [ -101.030273, -73.958939 ], [ -101.030273, -74.345937 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -101.250000, -72.796588 ], [ -101.030273, -72.786837 ], [ -101.030273, -74.079925 ], [ -102.587585, -74.079925 ], [ -102.680969, -74.019543 ], [ -103.114929, -73.734289 ], [ -103.329163, -73.361708 ], [ -103.683472, -72.616970 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -101.250000, -71.766208 ], [ -101.030273, -71.790256 ], [ -101.030273, -72.453760 ], [ -101.250000, -72.411482 ], [ -101.802063, -72.304936 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.030273, 22.146708 ], [ -101.030273, 17.287709 ], [ -101.250000, 17.413546 ], [ -101.667480, 17.649257 ], [ -101.920166, 17.918636 ], [ -102.480469, 17.976121 ], [ -103.502197, 18.294558 ], [ -103.919678, 18.750310 ], [ -104.993591, 19.316327 ], [ -105.493469, 19.947533 ], [ -105.732422, 20.434734 ], [ -105.400085, 20.532505 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.076812 ], [ -105.268250, 21.422390 ], [ -105.603333, 21.871695 ], [ -105.619812, 21.943046 ], [ -105.666504, 22.146708 ], [ -101.030273, 22.146708 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.030273, 32.138409 ], [ -101.030273, 29.422853 ], [ -101.250000, 29.547177 ], [ -101.664734, 29.781066 ], [ -102.480469, 29.761993 ], [ -103.112183, 28.972104 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.707947, 30.123749 ], [ -105.037537, 30.645001 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.509705, 31.756196 ], [ -108.240051, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.025085, 31.334871 ], [ -112.500000, 31.791221 ], [ -112.719727, 31.861230 ], [ -112.719727, 32.138409 ], [ -101.030273, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -112.719727, 29.897806 ], [ -112.719727, 31.861230 ], [ -112.500000, 31.791221 ], [ -111.025085, 31.334871 ], [ -108.242798, 31.344254 ], [ -108.240051, 31.756196 ], [ -106.509705, 31.756196 ], [ -106.144409, 31.400535 ], [ -105.633545, 31.085870 ], [ -105.037537, 30.645001 ], [ -104.707947, 30.123749 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.272025 ], [ -103.112183, 28.972104 ], [ -102.480469, 29.761993 ], [ -101.664734, 29.781066 ], [ -101.250000, 29.547177 ], [ -101.030273, 29.422853 ], [ -101.030273, 21.739091 ], [ -105.504456, 21.739091 ], [ -105.603333, 21.871695 ], [ -105.619812, 21.943046 ], [ -105.693970, 22.271306 ], [ -106.029053, 22.776182 ], [ -106.910706, 23.770264 ], [ -107.915955, 24.549622 ], [ -108.402100, 25.172631 ], [ -109.261780, 25.582085 ], [ -109.445801, 25.827089 ], [ -109.291992, 26.443525 ], [ -109.802856, 26.676913 ], [ -110.393372, 27.164252 ], [ -110.643311, 27.860932 ], [ -111.181641, 27.943460 ], [ -111.761169, 28.468691 ], [ -112.230835, 28.955282 ], [ -112.272034, 29.267233 ], [ -112.500000, 29.587789 ], [ -112.719727, 29.897806 ] ] ], [ [ [ -112.719727, 27.746746 ], [ -112.500000, 27.561852 ], [ -112.458801, 27.527758 ], [ -112.247314, 27.174026 ], [ -111.618347, 26.664641 ], [ -111.286011, 25.733107 ], [ -110.989380, 25.296854 ], [ -110.711975, 24.826625 ], [ -110.657043, 24.299544 ], [ -110.173645, 24.266997 ], [ -109.772644, 23.812988 ], [ -109.410095, 23.364950 ], [ -109.434814, 23.185813 ], [ -109.855042, 22.819226 ], [ -110.033569, 22.824289 ], [ -110.297241, 23.433009 ], [ -110.950928, 24.001308 ], [ -111.673279, 24.484649 ], [ -112.184143, 24.739348 ], [ -112.151184, 25.470554 ], [ -112.302246, 26.012361 ], [ -112.500000, 26.143111 ], [ -112.719727, 26.286028 ], [ -112.719727, 27.746746 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.030273, 41.145570 ], [ -101.030273, 31.765537 ], [ -112.417603, 31.765537 ], [ -112.719727, 31.861230 ], [ -112.719727, 41.145570 ], [ -101.030273, 41.145570 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.719727, 31.861230 ], [ -112.417603, 31.765537 ], [ -112.719727, 31.765537 ], [ -112.719727, 31.861230 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -101.030273, 49.066668 ], [ -101.030273, 49.000042 ], [ -112.719727, 49.000042 ], [ -112.719727, 49.066668 ], [ -101.030273, 49.066668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.030273, 49.000042 ], [ -101.030273, 40.813809 ], [ -112.719727, 40.813809 ], [ -112.719727, 49.000042 ], [ -101.030273, 49.000042 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -101.030273, 55.899956 ], [ -101.030273, 49.000042 ], [ -112.719727, 49.000042 ], [ -112.719727, 55.899956 ], [ -101.030273, 55.899956 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.030273, 49.000042 ], [ -101.030273, 48.777913 ], [ -112.719727, 48.777913 ], [ -112.719727, 49.000042 ], [ -101.030273, 49.000042 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -101.030273, 61.710706 ], [ -101.030273, 55.652798 ], [ -112.719727, 55.652798 ], [ -112.719727, 61.710706 ], [ -101.030273, 61.710706 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -101.030273, 66.600676 ], [ -101.030273, 61.501734 ], [ -112.719727, 61.501734 ], [ -112.719727, 66.600676 ], [ -101.030273, 66.600676 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -106.152649, 68.800041 ], [ -105.345154, 68.561388 ], [ -104.339905, 68.018882 ], [ -103.222046, 68.097907 ], [ -101.455994, 67.647899 ], [ -101.250000, 67.668781 ], [ -101.030273, 67.690686 ], [ -101.030273, 66.425537 ], [ -112.719727, 66.425537 ], [ -112.719727, 67.722985 ], [ -112.500000, 67.732354 ], [ -110.799866, 67.806132 ], [ -109.948425, 67.981843 ], [ -108.882751, 67.382150 ], [ -107.795105, 67.887951 ], [ -108.814087, 68.312057 ], [ -108.168640, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.152649, 68.800041 ] ] ], [ [ [ -103.417053, 70.685421 ], [ -103.172607, 70.612614 ], [ -102.788086, 70.498324 ], [ -101.250000, 70.096464 ], [ -101.030273, 70.037473 ], [ -101.030273, 69.825418 ], [ -101.090698, 69.585354 ], [ -101.250000, 69.576730 ], [ -102.733154, 69.504727 ], [ -102.095947, 69.120506 ], [ -102.431030, 68.753310 ], [ -104.241028, 68.910017 ], [ -105.960388, 69.180137 ], [ -107.124939, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.535950, 68.630549 ], [ -112.500000, 68.579450 ], [ -112.719727, 68.567410 ], [ -112.719727, 70.326137 ], [ -112.417603, 70.366783 ], [ -112.500000, 70.376932 ], [ -112.719727, 70.403663 ], [ -112.719727, 70.685421 ], [ -103.417053, 70.685421 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -107.517700, 73.236209 ], [ -106.523438, 73.076242 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699056 ], [ -104.466248, 70.993717 ], [ -103.172607, 70.612614 ], [ -102.928162, 70.539543 ], [ -112.719727, 70.539543 ], [ -112.719727, 72.918022 ], [ -112.500000, 72.947848 ], [ -112.442322, 72.955900 ], [ -111.052551, 72.450448 ], [ -109.920959, 72.961534 ], [ -109.009094, 72.633374 ], [ -108.190613, 71.651562 ], [ -107.687988, 72.066302 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ] ] ], [ [ [ -101.030273, 72.742078 ], [ -101.030273, 72.057842 ], [ -101.250000, 72.126250 ], [ -102.502441, 72.510804 ], [ -102.480469, 72.830674 ], [ -101.250000, 72.755925 ], [ -101.030273, 72.742078 ] ] ], [ [ [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.460511 ], [ -106.600342, 73.600670 ], [ -105.260010, 73.640171 ] ] ], [ [ [ -101.030273, 73.061045 ], [ -101.250000, 73.190200 ], [ -101.541138, 73.360135 ], [ -101.250000, 73.480047 ], [ -101.030273, 73.570401 ], [ -101.030273, 73.061045 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ], [ -108.212585, 76.202037 ], [ -107.819824, 75.845840 ], [ -106.929932, 76.013439 ], [ -105.883484, 75.969558 ], [ -105.707703, 75.479952 ], [ -106.314697, 75.005651 ], [ -109.701233, 74.850672 ], [ -112.225342, 74.417664 ], [ -112.500000, 74.413236 ], [ -112.719727, 74.410284 ], [ -112.719727, 74.967230 ], [ -112.500000, 75.014176 ], [ -111.796875, 75.162597 ], [ -112.500000, 75.144299 ], [ -112.719727, 75.138665 ], [ -112.719727, 76.157423 ], [ -112.590637, 76.141643 ], [ -112.500000, 76.112008 ], [ -110.816345, 75.549340 ], [ -109.069519, 75.473753 ], [ -110.497742, 76.430093 ], [ -109.583130, 76.794466 ] ] ], [ [ [ -101.030273, 76.410747 ], [ -101.030273, 75.633403 ], [ -101.250000, 75.623177 ], [ -102.502441, 75.564411 ], [ -102.565613, 76.336983 ], [ -101.491699, 76.305807 ], [ -101.250000, 76.360319 ], [ -101.030273, 76.410747 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -109.583130, 76.794466 ], [ -109.550171, 76.790701 ], [ -109.591370, 76.790701 ], [ -109.583130, 76.794466 ] ] ], [ [ [ -111.266785, 78.153115 ], [ -109.855042, 77.996477 ], [ -110.187378, 77.697553 ], [ -112.052307, 77.409277 ], [ -112.500000, 77.508278 ], [ -112.719727, 77.556308 ], [ -112.719727, 78.051758 ], [ -112.500000, 78.067101 ], [ -111.266785, 78.153115 ] ] ], [ [ [ -104.208069, 79.212538 ], [ -103.617554, 79.171335 ], [ -103.529663, 79.165657 ], [ -101.250000, 78.858909 ], [ -101.030273, 78.828618 ], [ -101.030273, 78.000474 ], [ -101.250000, 78.015882 ], [ -101.304932, 78.019304 ], [ -102.950134, 78.343308 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.422058, 78.918720 ], [ -105.468750, 79.171335 ], [ -105.476990, 79.212538 ], [ -104.208069, 79.212538 ] ] ], [ [ [ -111.500244, 78.850415 ], [ -110.964661, 78.804647 ], [ -109.665527, 78.602357 ], [ -110.882263, 78.406954 ], [ -112.500000, 78.408058 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -112.500000, 78.558309 ], [ -111.500244, 78.850415 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -105.493469, 79.301620 ], [ -103.617554, 79.171335 ], [ -103.529663, 79.165657 ], [ -103.263245, 79.129976 ], [ -105.460510, 79.129976 ], [ -105.468750, 79.171335 ], [ -105.493469, 79.301620 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -89.780273, -83.956169 ], [ -89.780273, -85.070048 ], [ -101.469727, -85.070048 ], [ -101.469727, -83.956169 ], [ -89.780273, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -89.780273, -82.648222 ], [ -89.780273, -84.002262 ], [ -101.469727, -84.002262 ], [ -101.469727, -82.648222 ], [ -89.780273, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -89.780273, -81.059130 ], [ -89.780273, -82.704241 ], [ -101.469727, -82.704241 ], [ -101.469727, -81.059130 ], [ -89.780273, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -89.780273, -79.129976 ], [ -89.780273, -81.127169 ], [ -101.469727, -81.127169 ], [ -101.469727, -79.129976 ], [ -89.780273, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -89.780273, -76.790701 ], [ -89.780273, -79.212538 ], [ -101.469727, -79.212538 ], [ -101.469727, -76.790701 ], [ -89.780273, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -89.780273, -73.958939 ], [ -89.780273, -76.890745 ], [ -101.469727, -76.890745 ], [ -101.469727, -75.195618 ], [ -101.250000, -75.224364 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.763855, -74.537473 ], [ -101.250000, -74.186555 ], [ -101.252747, -74.185058 ], [ -101.469727, -74.171579 ], [ -101.469727, -73.958939 ], [ -89.780273, -73.958939 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ -100.313416, -72.754296 ], [ -99.137878, -72.910759 ], [ -98.118896, -73.205286 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.616172 ], [ -95.045471, -73.479266 ], [ -93.674927, -73.283674 ], [ -92.441711, -73.165560 ], [ -91.422729, -73.400984 ], [ -90.090637, -73.322341 ], [ -90.000000, -73.245712 ], [ -89.780273, -73.053041 ], [ -89.780273, -74.079925 ], [ -101.469727, -74.079925 ], [ -101.469727, -72.807146 ], [ -101.250000, -72.796588 ], [ -100.313416, -72.754296 ] ] ], [ [ [ -101.469727, -71.742990 ], [ -101.250000, -71.766208 ], [ -100.431519, -71.854518 ], [ -98.984070, -71.933048 ], [ -97.885437, -72.070530 ], [ -96.789551, -71.952629 ], [ -96.201782, -72.520707 ], [ -96.984558, -72.442164 ], [ -98.198547, -72.481891 ], [ -99.434509, -72.442164 ], [ -100.785828, -72.500896 ], [ -101.250000, -72.411482 ], [ -101.469727, -72.369105 ], [ -101.469727, -71.742990 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.778320, 22.146708 ], [ -97.715149, 21.943046 ], [ -97.701416, 21.899730 ], [ -97.391052, 21.412162 ], [ -97.190552, 20.637925 ], [ -96.525879, 19.893306 ], [ -96.292419, 19.321511 ], [ -95.902405, 18.828316 ], [ -94.839478, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.551331, 18.424896 ], [ -92.787781, 18.526492 ], [ -92.037964, 18.706090 ], [ -91.408997, 18.877702 ], [ -90.774536, 19.285221 ], [ -90.535583, 19.867477 ], [ -90.453186, 20.709877 ], [ -90.280151, 20.999907 ], [ -90.000000, 21.110125 ], [ -89.780273, 21.194655 ], [ -89.780273, 17.816686 ], [ -90.000000, 17.819301 ], [ -91.002502, 17.819301 ], [ -91.002502, 17.256236 ], [ -91.455688, 17.253613 ], [ -91.082153, 16.920195 ], [ -90.714111, 16.688817 ], [ -90.601501, 16.472963 ], [ -90.439453, 16.412375 ], [ -90.466919, 16.069568 ], [ -91.749573, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.066819 ], [ -92.205505, 14.830646 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.617747 ], [ -93.875427, 15.940202 ], [ -94.693909, 16.201488 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.752606 ], [ -96.558838, 15.654776 ], [ -97.264709, 15.919074 ], [ -98.014526, 16.109153 ], [ -98.948364, 16.567758 ], [ -99.698181, 16.707232 ], [ -100.829773, 17.172283 ], [ -101.250000, 17.413546 ], [ -101.469727, 17.539297 ], [ -101.469727, 22.146708 ], [ -97.778320, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guatemala", "sov_a3": "GTM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guatemala", "adm0_a3": "GTM", "geou_dif": 0, "geounit": "Guatemala", "gu_a3": "GTM", "su_dif": 0, "subunit": "Guatemala", "su_a3": "GTM", "brk_diff": 0, "name": "Guatemala", "name_long": "Guatemala", "brk_a3": "GTM", "brk_name": "Guatemala", "abbrev": "Guat.", "postal": "GT", "formal_en": "Republic of Guatemala", "name_sort": "Guatemala", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 13276517, "gdp_md_est": 68580, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GT", "iso_a3": "GTM", "iso_n3": "320", "un_a3": "320", "wb_a2": "GT", "wb_a3": "GTM", "woe_id": -99, "adm0_a3_is": "GTM", "adm0_a3_us": "GTM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.819301 ], [ -89.780273, 17.816686 ], [ -89.780273, 14.093957 ], [ -90.000000, 13.931401 ], [ -90.065918, 13.883412 ], [ -90.096130, 13.736717 ], [ -90.609741, 13.910074 ], [ -91.233215, 13.928736 ], [ -91.691895, 14.128585 ], [ -92.230225, 14.541050 ], [ -92.205505, 14.830646 ], [ -92.087402, 15.066819 ], [ -92.230225, 15.252389 ], [ -91.749573, 16.066929 ], [ -90.466919, 16.069568 ], [ -90.439453, 16.412375 ], [ -90.601501, 16.472963 ], [ -90.714111, 16.688817 ], [ -91.082153, 16.920195 ], [ -91.455688, 17.253613 ], [ -91.002502, 17.256236 ], [ -91.002502, 17.819301 ], [ -90.000000, 17.819301 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "El Salvador", "sov_a3": "SLV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "El Salvador", "adm0_a3": "SLV", "geou_dif": 0, "geounit": "El Salvador", "gu_a3": "SLV", "su_dif": 0, "subunit": "El Salvador", "su_a3": "SLV", "brk_diff": 0, "name": "El Salvador", "name_long": "El Salvador", "brk_a3": "SLV", "brk_name": "El Salvador", "abbrev": "El. S.", "postal": "SV", "formal_en": "Republic of El Salvador", "name_sort": "El Salvador", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 8, "pop_est": 7185218, "gdp_md_est": 43630, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SV", "iso_a3": "SLV", "iso_n3": "222", "un_a3": "222", "wb_a2": "SV", "wb_a3": "SLV", "woe_id": -99, "adm0_a3_is": "SLV", "adm0_a3_us": "SLV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 11, "long_len": 11, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.780273, 14.093957 ], [ -89.780273, 13.517838 ], [ -89.813232, 13.523179 ], [ -90.000000, 13.664669 ], [ -90.096130, 13.736717 ], [ -90.065918, 13.883412 ], [ -90.000000, 13.931401 ], [ -89.780273, 14.093957 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.780273, 32.138409 ], [ -89.780273, 29.307956 ], [ -90.000000, 29.197726 ], [ -90.156555, 29.118574 ], [ -90.881653, 29.149763 ], [ -91.628723, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.227234, 29.785833 ], [ -93.850708, 29.714296 ], [ -94.691162, 29.480252 ], [ -95.600281, 28.738764 ], [ -96.594543, 28.309217 ], [ -97.141113, 27.831790 ], [ -97.371826, 27.381523 ], [ -97.380066, 26.691637 ], [ -97.330627, 26.212127 ], [ -97.141113, 25.871581 ], [ -97.531128, 25.841921 ], [ -98.242493, 26.061718 ], [ -99.022522, 26.372185 ], [ -99.302673, 26.841227 ], [ -99.522400, 27.542371 ], [ -100.110168, 28.110749 ], [ -100.456238, 28.697816 ], [ -100.958862, 29.382175 ], [ -101.250000, 29.547177 ], [ -101.469727, 29.671349 ], [ -101.469727, 32.138409 ], [ -89.780273, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.469727, 29.671349 ], [ -101.250000, 29.547177 ], [ -100.958862, 29.382175 ], [ -100.456238, 28.697816 ], [ -100.110168, 28.110749 ], [ -99.522400, 27.542371 ], [ -99.302673, 26.841227 ], [ -99.022522, 26.372185 ], [ -98.242493, 26.061718 ], [ -97.531128, 25.841921 ], [ -97.141113, 25.871581 ], [ -97.528381, 24.993526 ], [ -97.704163, 24.274509 ], [ -97.778320, 22.933101 ], [ -97.874451, 22.446572 ], [ -97.715149, 21.943046 ], [ -97.701416, 21.899730 ], [ -97.599792, 21.739091 ], [ -101.469727, 21.739091 ], [ -101.469727, 29.671349 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.780273, 41.145570 ], [ -89.780273, 31.765537 ], [ -101.469727, 31.765537 ], [ -101.469727, 41.145570 ], [ -89.780273, 41.145570 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -89.780273, 49.066668 ], [ -89.780273, 48.048710 ], [ -90.000000, 48.096426 ], [ -90.832214, 48.270397 ], [ -91.642456, 48.140432 ], [ -92.612000, 48.451066 ], [ -93.630981, 48.609306 ], [ -94.331360, 48.671013 ], [ -94.641724, 48.841221 ], [ -94.669189, 48.922499 ], [ -94.713135, 49.066668 ], [ -89.780273, 49.066668 ] ] ], [ [ [ -95.160828, 49.066668 ], [ -95.160828, 49.000042 ], [ -101.469727, 49.000042 ], [ -101.469727, 49.066668 ], [ -95.160828, 49.066668 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.713135, 49.066668 ], [ -94.669189, 48.922499 ], [ -94.641724, 48.841221 ], [ -94.331360, 48.671013 ], [ -93.630981, 48.609306 ], [ -92.612000, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.832214, 48.270397 ], [ -90.000000, 48.096426 ], [ -89.780273, 48.048710 ], [ -89.780273, 40.813809 ], [ -101.469727, 40.813809 ], [ -101.469727, 49.000042 ], [ -95.160828, 49.000042 ], [ -95.160828, 49.066668 ], [ -94.713135, 49.066668 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -89.780273, 55.899956 ], [ -89.780273, 48.777913 ], [ -94.526367, 48.777913 ], [ -94.641724, 48.841221 ], [ -94.669189, 48.922499 ], [ -94.820251, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.160828, 49.000042 ], [ -101.469727, 49.000042 ], [ -101.469727, 55.899956 ], [ -89.780273, 55.899956 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.820251, 49.389524 ], [ -94.669189, 48.922499 ], [ -94.641724, 48.841221 ], [ -94.526367, 48.777913 ], [ -101.469727, 48.777913 ], [ -101.469727, 49.000042 ], [ -95.160828, 49.000042 ], [ -95.158081, 49.385949 ], [ -94.820251, 49.389524 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -93.463440, 61.710706 ], [ -93.565063, 61.606396 ], [ -94.243469, 60.899724 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.216248, 58.782438 ], [ -92.765808, 57.846213 ], [ -92.298889, 57.088515 ], [ -90.898132, 57.284981 ], [ -90.000000, 57.076575 ], [ -89.780273, 57.025784 ], [ -89.780273, 55.652798 ], [ -101.469727, 55.652798 ], [ -101.469727, 61.710706 ], [ -93.463440, 61.710706 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -89.780273, 66.600676 ], [ -89.780273, 64.039756 ], [ -89.914856, 64.033744 ], [ -90.000000, 63.988009 ], [ -90.705872, 63.610879 ], [ -90.771790, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.025394 ], [ -93.565063, 61.606396 ], [ -93.666687, 61.501734 ], [ -101.469727, 61.501734 ], [ -101.469727, 66.600676 ], [ -89.780273, 66.600676 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -92.106628, 70.685421 ], [ -92.018738, 70.612614 ], [ -91.521606, 70.191619 ], [ -92.408752, 69.700010 ], [ -90.549316, 69.497994 ], [ -90.552063, 68.475895 ], [ -90.000000, 68.802028 ], [ -89.780273, 68.930761 ], [ -89.780273, 66.425537 ], [ -101.469727, 66.425537 ], [ -101.469727, 67.651033 ], [ -101.455994, 67.647899 ], [ -101.250000, 67.668781 ], [ -99.904175, 67.806132 ], [ -98.445740, 67.782258 ], [ -98.561096, 68.404235 ], [ -97.671204, 68.579450 ], [ -96.122131, 68.239878 ], [ -96.127625, 67.294317 ], [ -95.490417, 68.090734 ], [ -94.685669, 68.064072 ], [ -94.235229, 69.069544 ], [ -95.306396, 69.685711 ], [ -96.473694, 70.089918 ], [ -96.435242, 70.612614 ], [ -96.429749, 70.685421 ], [ -92.106628, 70.685421 ] ] ], [ [ [ -98.220520, 70.144096 ], [ -97.157593, 69.860437 ], [ -96.558838, 69.680943 ], [ -96.259460, 69.490297 ], [ -95.649719, 69.107777 ], [ -96.270447, 68.757291 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.951487 ], [ -99.799805, 69.400615 ], [ -98.918152, 69.710489 ], [ -98.220520, 70.144096 ] ] ], [ [ [ -101.469727, 70.154355 ], [ -101.250000, 70.096464 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.585354 ], [ -101.250000, 69.576730 ], [ -101.469727, 69.566185 ], [ -101.469727, 70.154355 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -95.210266, 71.921119 ], [ -93.891907, 71.760191 ], [ -92.878418, 71.319276 ], [ -92.018738, 70.612614 ], [ -91.933594, 70.539543 ], [ -96.440735, 70.539543 ], [ -96.435242, 70.612614 ], [ -96.391296, 71.194838 ], [ -95.210266, 71.921119 ] ] ], [ [ [ -89.780273, 72.735558 ], [ -89.780273, 71.222265 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.586606 ], [ -90.205994, 72.235514 ], [ -90.000000, 72.478584 ], [ -89.780273, 72.735558 ] ] ], [ [ [ -100.357361, 73.843938 ], [ -99.165344, 73.633981 ], [ -97.380066, 73.760425 ], [ -97.121887, 73.470673 ], [ -98.055725, 72.991286 ], [ -96.542358, 72.560262 ], [ -96.720886, 71.660206 ], [ -98.360596, 71.273477 ], [ -99.324646, 71.357067 ], [ -100.016785, 71.738687 ], [ -101.250000, 72.126250 ], [ -101.469727, 72.194406 ], [ -101.469727, 72.768947 ], [ -101.250000, 72.755925 ], [ -100.439758, 72.706189 ], [ -101.250000, 73.190200 ], [ -101.469727, 73.319188 ], [ -101.469727, 73.389211 ], [ -101.250000, 73.480047 ], [ -100.357361, 73.843938 ] ] ], [ [ [ -92.263184, 74.079925 ], [ -91.785278, 74.019543 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.270935, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.034241, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.495911, 73.863033 ], [ -94.927368, 74.019543 ], [ -94.707642, 74.079925 ], [ -92.263184, 74.079925 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -94.504395, 74.135580 ], [ -92.422485, 74.100253 ], [ -91.785278, 74.019543 ], [ -91.310120, 73.958939 ], [ -95.147095, 73.958939 ], [ -94.504395, 74.135580 ] ] ], [ [ [ -93.966064, 76.890745 ], [ -93.795776, 76.840816 ], [ -93.576050, 76.776886 ], [ -91.606750, 76.778771 ], [ -90.744324, 76.450056 ], [ -90.972290, 76.074381 ], [ -90.000000, 75.883402 ], [ -89.824219, 75.847855 ], [ -89.780273, 75.832401 ], [ -89.780273, 74.517689 ], [ -90.000000, 74.544794 ], [ -92.422485, 74.838465 ], [ -92.768555, 75.387389 ], [ -92.892151, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.962830, 76.441688 ], [ -97.121887, 76.751102 ], [ -97.042236, 76.840816 ], [ -96.995544, 76.890745 ], [ -93.966064, 76.890745 ] ] ], [ [ [ -94.853210, 75.647708 ], [ -93.979797, 75.297038 ], [ -93.614502, 74.980047 ], [ -94.158325, 74.593027 ], [ -95.611267, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.853210, 75.647708 ] ] ], [ [ [ -98.500671, 76.720223 ], [ -97.737122, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.160095, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.884705, 75.057437 ], [ -100.865479, 75.640898 ], [ -101.250000, 75.623177 ], [ -101.469727, 75.612944 ], [ -101.469727, 76.310358 ], [ -101.250000, 76.360319 ], [ -99.983826, 76.646840 ], [ -98.577576, 76.588993 ], [ -98.500671, 76.720223 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -96.745605, 77.161435 ], [ -94.685669, 77.098423 ], [ -93.795776, 76.840816 ], [ -93.625488, 76.790701 ], [ -97.086182, 76.790701 ], [ -97.042236, 76.840816 ], [ -96.745605, 77.161435 ] ] ], [ [ [ -96.437988, 77.834904 ], [ -94.424744, 77.820426 ], [ -93.721619, 77.634777 ], [ -93.842468, 77.520155 ], [ -94.295654, 77.491633 ], [ -96.171570, 77.555124 ], [ -96.437988, 77.834904 ] ] ], [ [ [ -98.632507, 78.872169 ], [ -97.338867, 78.832342 ], [ -96.756592, 78.766187 ], [ -95.561829, 78.418539 ], [ -95.830994, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.082992 ], [ -98.555603, 78.458173 ], [ -98.632507, 78.872169 ] ] ], [ [ [ -101.469727, 78.888590 ], [ -101.250000, 78.858909 ], [ -100.827026, 78.800913 ], [ -100.060730, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.250000, 78.015882 ], [ -101.304932, 78.019304 ], [ -101.469727, 78.052327 ], [ -101.469727, 78.888590 ] ] ], [ [ [ -89.780273, 79.212538 ], [ -89.780273, 78.257538 ], [ -90.000000, 78.248591 ], [ -90.804749, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.952332, 78.751195 ], [ -93.935852, 79.113908 ], [ -93.768311, 79.171335 ], [ -93.647461, 79.212538 ], [ -89.780273, 79.212538 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -92.092896, 81.127169 ], [ -92.010498, 81.093214 ], [ -91.134338, 80.723498 ], [ -90.000000, 80.579842 ], [ -89.780273, 80.551930 ], [ -89.780273, 79.129976 ], [ -93.889160, 79.129976 ], [ -93.768311, 79.171335 ], [ -93.147583, 79.380362 ], [ -94.974060, 79.372767 ], [ -96.078186, 79.705361 ], [ -96.709900, 80.158078 ], [ -96.017761, 80.602741 ], [ -95.325623, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.518127, 81.093214 ], [ -94.584045, 81.127169 ], [ -92.092896, 81.127169 ] ] ], [ [ [ -89.780273, 81.127169 ], [ -89.780273, 81.058703 ], [ -89.923096, 81.127169 ], [ -89.780273, 81.127169 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -92.411499, 81.257537 ], [ -92.010498, 81.093214 ], [ -91.928101, 81.059130 ], [ -94.454956, 81.059130 ], [ -94.518127, 81.093214 ], [ -94.737854, 81.206879 ], [ -92.411499, 81.257537 ] ] ], [ [ [ -89.780273, 82.094243 ], [ -89.780273, 81.059130 ], [ -90.000000, 81.164794 ], [ -90.200500, 81.260042 ], [ -91.370544, 81.553443 ], [ -91.587524, 81.894580 ], [ -90.101624, 82.085171 ], [ -90.000000, 82.087818 ], [ -89.780273, 82.094243 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -78.530273, -83.956169 ], [ -78.530273, -85.070048 ], [ -90.219727, -85.070048 ], [ -90.219727, -83.956169 ], [ -78.530273, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -78.530273, -82.648222 ], [ -78.530273, -84.002262 ], [ -90.219727, -84.002262 ], [ -90.219727, -82.648222 ], [ -78.530273, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -78.530273, -81.059130 ], [ -78.530273, -82.704241 ], [ -90.219727, -82.704241 ], [ -90.219727, -81.059130 ], [ -78.530273, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -78.530273, -79.129976 ], [ -78.530273, -81.127169 ], [ -90.219727, -81.127169 ], [ -90.219727, -79.129976 ], [ -78.530273, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -78.530273, -76.790701 ], [ -78.530273, -79.212538 ], [ -90.219727, -79.212538 ], [ -90.219727, -76.790701 ], [ -78.530273, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -78.530273, -73.958939 ], [ -78.530273, -76.890745 ], [ -90.219727, -76.890745 ], [ -90.219727, -73.958939 ], [ -78.530273, -73.958939 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -89.228210, -72.558615 ], [ -88.426208, -73.008952 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.087432 ], [ -85.193481, -73.479266 ], [ -83.880615, -73.518273 ], [ -82.666626, -73.636303 ], [ -81.471863, -73.851578 ], [ -80.689087, -73.479266 ], [ -80.296326, -73.126540 ], [ -79.299316, -73.518273 ], [ -78.530273, -73.463638 ], [ -78.530273, -74.079925 ], [ -90.219727, -74.079925 ], [ -90.219727, -73.330222 ], [ -90.090637, -73.322341 ], [ -90.000000, -73.245712 ], [ -89.228210, -72.558615 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 16 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.530273, 0.219726 ], [ -78.530273, -4.154679 ], [ -78.640137, -4.546308 ], [ -78.750000, -4.625704 ], [ -79.205933, -4.956879 ], [ -79.626160, -4.453212 ], [ -80.029907, -4.343673 ], [ -80.444641, -4.423090 ], [ -80.469360, -4.058796 ], [ -80.186462, -3.820408 ], [ -80.304565, -3.403758 ], [ -79.771729, -2.654994 ], [ -79.988708, -2.218684 ], [ -80.370483, -2.682430 ], [ -80.969238, -2.246129 ], [ -80.765991, -1.963422 ], [ -80.936279, -1.057374 ], [ -80.584717, -0.906334 ], [ -80.400696, -0.282897 ], [ -80.233154, 0.000000 ], [ -80.104065, 0.219726 ], [ -78.530273, 0.219726 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Peru", "sov_a3": "PER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Peru", "adm0_a3": "PER", "geou_dif": 0, "geounit": "Peru", "gu_a3": "PER", "su_dif": 0, "subunit": "Peru", "su_a3": "PER", "brk_diff": 0, "name": "Peru", "name_long": "Peru", "brk_a3": "PER", "brk_name": "Peru", "abbrev": "Peru", "postal": "PE", "formal_en": "Republic of Peru", "name_sort": "Peru", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 11, "pop_est": 29546963, "gdp_md_est": 247300, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PE", "iso_a3": "PER", "iso_n3": "604", "un_a3": "604", "wb_a2": "PE", "wb_a3": "PER", "woe_id": -99, "adm0_a3_is": "PER", "adm0_a3_us": "PER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.304565, -3.403758 ], [ -80.186462, -3.820408 ], [ -80.469360, -4.058796 ], [ -80.444641, -4.423090 ], [ -80.029907, -4.343673 ], [ -79.626160, -4.453212 ], [ -79.205933, -4.956879 ], [ -78.750000, -4.625704 ], [ -78.640137, -4.546308 ], [ -78.530273, -4.154679 ], [ -78.530273, -9.454480 ], [ -78.750000, -8.990888 ], [ -79.038391, -8.385431 ], [ -79.447632, -7.928675 ], [ -79.760742, -7.193551 ], [ -80.538025, -6.539103 ], [ -81.252136, -6.135093 ], [ -80.928040, -5.689783 ], [ -81.411438, -4.735201 ], [ -81.101074, -4.034138 ], [ -80.304565, -3.403758 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Nicaragua", "sov_a3": "NIC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nicaragua", "adm0_a3": "NIC", "geou_dif": 0, "geounit": "Nicaragua", "gu_a3": "NIC", "su_dif": 0, "subunit": "Nicaragua", "su_a3": "NIC", "brk_diff": 0, "name": "Nicaragua", "name_long": "Nicaragua", "brk_a3": "NIC", "brk_name": "Nicaragua", "abbrev": "Nic.", "postal": "NI", "formal_en": "Republic of Nicaragua", "name_sort": "Nicaragua", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 5891199, "gdp_md_est": 16790, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NI", "iso_a3": "NIC", "iso_n3": "558", "un_a3": "558", "wb_a2": "NI", "wb_a3": "NIC", "woe_id": -99, "adm0_a3_is": "NIC", "adm0_a3_us": "NIC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.839417, 11.393879 ], [ -83.855896, 11.375031 ], [ -83.822937, 11.178402 ], [ -83.809204, 11.105642 ], [ -83.658142, 10.941192 ], [ -83.897095, 10.728080 ], [ -84.190979, 10.795537 ], [ -84.358521, 11.000512 ], [ -84.674377, 11.084080 ], [ -84.905090, 10.954675 ], [ -85.468140, 11.178402 ], [ -85.564270, 11.218816 ], [ -85.608215, 11.178402 ], [ -85.712585, 11.089471 ], [ -85.811462, 11.178402 ], [ -86.050415, 11.393879 ], [ -83.839417, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Costa Rica", "sov_a3": "CRI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Costa Rica", "adm0_a3": "CRI", "geou_dif": 0, "geounit": "Costa Rica", "gu_a3": "CRI", "su_dif": 0, "subunit": "Costa Rica", "su_a3": "CRI", "brk_diff": 0, "name": "Costa Rica", "name_long": "Costa Rica", "brk_a3": "CRI", "brk_name": "Costa Rica", "abbrev": "C.R.", "postal": "CR", "formal_en": "Republic of Costa Rica", "name_sort": "Costa Rica", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 4253877, "gdp_md_est": 48320, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CR", "iso_a3": "CRI", "iso_n3": "188", "un_a3": "188", "wb_a2": "CR", "wb_a3": "CRI", "woe_id": -99, "adm0_a3_is": "CRI", "adm0_a3_us": "CRI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.564270, 11.218816 ], [ -85.468140, 11.178402 ], [ -84.905090, 10.954675 ], [ -84.674377, 11.084080 ], [ -84.358521, 11.000512 ], [ -84.190979, 10.795537 ], [ -83.897095, 10.728080 ], [ -83.658142, 10.941192 ], [ -83.402710, 10.395975 ], [ -83.018188, 9.993196 ], [ -82.548523, 9.568251 ], [ -82.933044, 9.478863 ], [ -82.927551, 9.074976 ], [ -82.721558, 8.925774 ], [ -82.869873, 8.809082 ], [ -82.831421, 8.627188 ], [ -82.913818, 8.426187 ], [ -82.966003, 8.225082 ], [ -83.509827, 8.447922 ], [ -83.713074, 8.657057 ], [ -83.597717, 8.830795 ], [ -83.633423, 9.053277 ], [ -83.910828, 9.291886 ], [ -84.303589, 9.489699 ], [ -84.649658, 9.616998 ], [ -84.715576, 9.909333 ], [ -84.976501, 10.087854 ], [ -84.913330, 9.798384 ], [ -85.111084, 9.557417 ], [ -85.341797, 9.836273 ], [ -85.663147, 9.933682 ], [ -85.797729, 10.136524 ], [ -85.792236, 10.441897 ], [ -85.660400, 10.755064 ], [ -85.943298, 10.895345 ], [ -85.608215, 11.178402 ], [ -85.564270, 11.218816 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Panama", "sov_a3": "PAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Panama", "adm0_a3": "PAN", "geou_dif": 0, "geounit": "Panama", "gu_a3": "PAN", "su_dif": 0, "subunit": "Panama", "su_a3": "PAN", "brk_diff": 0, "name": "Panama", "name_long": "Panama", "brk_a3": "PAN", "brk_name": "Panama", "abbrev": "Pan.", "postal": "PA", "formal_en": "Republic of Panama", "name_sort": "Panama", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 3360474, "gdp_md_est": 38830, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PA", "iso_a3": "PAN", "iso_n3": "591", "un_a3": "591", "wb_a2": "PA", "wb_a3": "PAN", "woe_id": -99, "adm0_a3_is": "PAN", "adm0_a3_us": "PAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.573975, 9.614290 ], [ -79.021912, 9.554709 ], [ -79.060364, 9.457190 ], [ -78.750000, 9.438224 ], [ -78.530273, 9.424677 ], [ -78.530273, 8.556578 ], [ -78.623657, 8.719503 ], [ -78.750000, 8.790083 ], [ -79.120789, 8.996313 ], [ -79.560242, 8.933914 ], [ -79.760742, 8.586453 ], [ -80.164490, 8.333800 ], [ -80.384216, 8.298470 ], [ -80.483093, 8.091862 ], [ -80.005188, 7.547656 ], [ -80.277100, 7.422389 ], [ -80.422668, 7.272568 ], [ -80.886841, 7.220800 ], [ -81.059875, 7.819847 ], [ -81.191711, 7.648387 ], [ -81.521301, 7.708270 ], [ -81.721802, 8.110896 ], [ -82.133789, 8.176149 ], [ -82.391968, 8.293035 ], [ -82.820435, 8.293035 ], [ -82.853394, 8.075546 ], [ -82.966003, 8.225082 ], [ -82.913818, 8.426187 ], [ -82.831421, 8.627188 ], [ -82.869873, 8.809082 ], [ -82.721558, 8.925774 ], [ -82.927551, 9.074976 ], [ -82.933044, 9.478863 ], [ -82.548523, 9.568251 ], [ -82.188721, 9.207849 ], [ -82.207947, 8.996313 ], [ -81.809692, 8.952906 ], [ -81.716309, 9.034290 ], [ -81.441650, 8.787368 ], [ -80.950012, 8.860648 ], [ -80.524292, 9.112945 ], [ -79.917297, 9.313569 ], [ -79.573975, 9.614290 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.530273, 2.471157 ], [ -78.530273, 1.197423 ], [ -78.750000, 1.320989 ], [ -78.857117, 1.381397 ], [ -78.991699, 1.691649 ], [ -78.750000, 1.741065 ], [ -78.618164, 1.768518 ], [ -78.664856, 2.268084 ], [ -78.530273, 2.471157 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.857117, 1.381397 ], [ -78.750000, 1.320989 ], [ -78.530273, 1.197423 ], [ -78.530273, -0.219726 ], [ -80.362244, -0.219726 ], [ -80.233154, 0.000000 ], [ -80.021667, 0.362546 ], [ -80.093079, 0.769020 ], [ -79.543762, 0.983228 ], [ -78.857117, 1.381397 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.052917, 21.545066 ], [ -86.813965, 21.332873 ], [ -86.846924, 20.851112 ], [ -87.385254, 20.257044 ], [ -87.621460, 19.647761 ], [ -87.437439, 19.474361 ], [ -87.588501, 19.041349 ], [ -87.838440, 18.260653 ], [ -88.091125, 18.518679 ], [ -88.492126, 18.487424 ], [ -88.849182, 17.884659 ], [ -89.030457, 18.002244 ], [ -89.151306, 17.957832 ], [ -89.145813, 17.808841 ], [ -90.000000, 17.819301 ], [ -90.068665, 17.821916 ], [ -90.219727, 17.819301 ], [ -90.219727, 21.022983 ], [ -90.000000, 21.110125 ], [ -89.601746, 21.263781 ], [ -88.544312, 21.493964 ], [ -87.659912, 21.460737 ], [ -87.052917, 21.545066 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guatemala", "sov_a3": "GTM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guatemala", "adm0_a3": "GTM", "geou_dif": 0, "geounit": "Guatemala", "gu_a3": "GTM", "su_dif": 0, "subunit": "Guatemala", "su_a3": "GTM", "brk_diff": 0, "name": "Guatemala", "name_long": "Guatemala", "brk_a3": "GTM", "brk_name": "Guatemala", "abbrev": "Guat.", "postal": "GT", "formal_en": "Republic of Guatemala", "name_sort": "Guatemala", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 13276517, "gdp_md_est": 68580, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GT", "iso_a3": "GTM", "iso_n3": "320", "un_a3": "320", "wb_a2": "GT", "wb_a3": "GTM", "woe_id": -99, "adm0_a3_is": "GTM", "adm0_a3_us": "GTM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.819301 ], [ -89.145813, 17.808841 ], [ -89.151306, 17.017394 ], [ -89.230957, 15.887376 ], [ -88.931580, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.519592, 15.855674 ], [ -88.225708, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.156799, 15.066819 ], [ -89.225464, 14.875778 ], [ -89.145813, 14.679254 ], [ -89.354553, 14.426700 ], [ -89.588013, 14.362852 ], [ -89.535828, 14.245749 ], [ -89.722595, 14.136576 ], [ -90.000000, 13.931401 ], [ -90.065918, 13.883412 ], [ -90.096130, 13.736717 ], [ -90.219727, 13.779402 ], [ -90.219727, 17.819301 ], [ -90.000000, 17.819301 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Belize", "sov_a3": "BLZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belize", "adm0_a3": "BLZ", "geou_dif": 0, "geounit": "Belize", "gu_a3": "BLZ", "su_dif": 0, "subunit": "Belize", "su_a3": "BLZ", "brk_diff": 0, "name": "Belize", "name_long": "Belize", "brk_a3": "BLZ", "brk_name": "Belize", "abbrev": "Belize", "postal": "BZ", "formal_en": "Belize", "name_sort": "Belize", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 307899, "gdp_md_est": 2536, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BZ", "iso_a3": "BLZ", "iso_n3": "084", "un_a3": "084", "wb_a2": "BZ", "wb_a3": "BLZ", "woe_id": -99, "adm0_a3_is": "BLZ", "adm0_a3_us": "BLZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.302612, 18.500447 ], [ -88.297119, 18.354526 ], [ -88.107605, 18.349312 ], [ -88.124084, 18.077979 ], [ -88.286133, 17.646639 ], [ -88.198242, 17.489531 ], [ -88.305359, 17.132916 ], [ -88.242188, 17.038403 ], [ -88.357544, 16.530898 ], [ -88.552551, 16.267414 ], [ -88.733826, 16.235772 ], [ -88.931580, 15.887376 ], [ -89.230957, 15.887376 ], [ -89.151306, 17.017394 ], [ -89.145813, 17.808841 ], [ -89.151306, 17.957832 ], [ -89.030457, 18.002244 ], [ -88.849182, 17.884659 ], [ -88.492126, 18.487424 ], [ -88.302612, 18.500447 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "El Salvador", "sov_a3": "SLV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "El Salvador", "adm0_a3": "SLV", "geou_dif": 0, "geounit": "El Salvador", "gu_a3": "SLV", "su_dif": 0, "subunit": "El Salvador", "su_a3": "SLV", "brk_diff": 0, "name": "El Salvador", "name_long": "El Salvador", "brk_a3": "SLV", "brk_name": "El Salvador", "abbrev": "El. S.", "postal": "SV", "formal_en": "Republic of El Salvador", "name_sort": "El Salvador", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 8, "pop_est": 7185218, "gdp_md_est": 43630, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SV", "iso_a3": "SLV", "iso_n3": "222", "un_a3": "222", "wb_a2": "SV", "wb_a3": "SLV", "woe_id": -99, "adm0_a3_is": "SLV", "adm0_a3_us": "SLV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 11, "long_len": 11, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.354553, 14.426700 ], [ -89.060669, 14.341565 ], [ -88.843689, 14.141902 ], [ -88.541565, 13.982046 ], [ -88.505859, 13.846080 ], [ -88.066406, 13.966054 ], [ -87.860413, 13.894077 ], [ -87.725830, 13.787404 ], [ -87.794495, 13.386948 ], [ -87.904358, 13.149027 ], [ -88.483887, 13.165074 ], [ -88.843689, 13.261333 ], [ -89.258423, 13.459080 ], [ -89.813232, 13.523179 ], [ -90.000000, 13.664669 ], [ -90.096130, 13.736717 ], [ -90.065918, 13.883412 ], [ -90.000000, 13.931401 ], [ -89.722595, 14.136576 ], [ -89.535828, 14.245749 ], [ -89.588013, 14.362852 ], [ -89.354553, 14.426700 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Honduras", "sov_a3": "HND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Honduras", "adm0_a3": "HND", "geou_dif": 0, "geounit": "Honduras", "gu_a3": "HND", "su_dif": 0, "subunit": "Honduras", "su_a3": "HND", "brk_diff": 0, "name": "Honduras", "name_long": "Honduras", "brk_a3": "HND", "brk_name": "Honduras", "abbrev": "Hond.", "postal": "HN", "formal_en": "Republic of Honduras", "name_sort": "Honduras", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7792854, "gdp_md_est": 33720, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "HN", "iso_a3": "HND", "iso_n3": "340", "un_a3": "340", "wb_a2": "HN", "wb_a3": "HND", "woe_id": -99, "adm0_a3_is": "HND", "adm0_a3_us": "HND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.003723, 16.006216 ], [ -85.685120, 15.956048 ], [ -85.446167, 15.887376 ], [ -85.182495, 15.911150 ], [ -84.984741, 15.998295 ], [ -84.528809, 15.858316 ], [ -84.369507, 15.837178 ], [ -84.064636, 15.649486 ], [ -83.776245, 15.424558 ], [ -83.410950, 15.270938 ], [ -83.147278, 14.997852 ], [ -83.490601, 15.016422 ], [ -83.630676, 14.881087 ], [ -83.976746, 14.750979 ], [ -84.229431, 14.750979 ], [ -84.451904, 14.623451 ], [ -84.649658, 14.668626 ], [ -84.822693, 14.820026 ], [ -84.927063, 14.790817 ], [ -85.053406, 14.551684 ], [ -85.149536, 14.562318 ], [ -85.166016, 14.354870 ], [ -85.514832, 14.080637 ], [ -85.698853, 13.960723 ], [ -85.803223, 13.838080 ], [ -86.097107, 14.040673 ], [ -86.314087, 13.771399 ], [ -86.522827, 13.779402 ], [ -86.756287, 13.755392 ], [ -86.734314, 13.264006 ], [ -86.882629, 13.255986 ], [ -87.006226, 13.025966 ], [ -87.319336, 12.985824 ], [ -87.489624, 13.298757 ], [ -87.794495, 13.386948 ], [ -87.725830, 13.787404 ], [ -87.860413, 13.894077 ], [ -88.066406, 13.966054 ], [ -88.505859, 13.846080 ], [ -88.541565, 13.982046 ], [ -88.843689, 14.141902 ], [ -89.060669, 14.341565 ], [ -89.354553, 14.426700 ], [ -89.145813, 14.679254 ], [ -89.225464, 14.875778 ], [ -89.156799, 15.066819 ], [ -88.681641, 15.347762 ], [ -88.225708, 15.728814 ], [ -88.121338, 15.689154 ], [ -87.904358, 15.866242 ], [ -87.615967, 15.879451 ], [ -87.525330, 15.797539 ], [ -87.368774, 15.847747 ], [ -86.904602, 15.757893 ], [ -86.443176, 15.784325 ], [ -86.121826, 15.895301 ], [ -86.003723, 16.006216 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Nicaragua", "sov_a3": "NIC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nicaragua", "adm0_a3": "NIC", "geou_dif": 0, "geounit": "Nicaragua", "gu_a3": "NIC", "su_dif": 0, "subunit": "Nicaragua", "su_a3": "NIC", "brk_diff": 0, "name": "Nicaragua", "name_long": "Nicaragua", "brk_a3": "NIC", "brk_name": "Nicaragua", "abbrev": "Nic.", "postal": "NI", "formal_en": "Republic of Nicaragua", "name_sort": "Nicaragua", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 5891199, "gdp_md_est": 16790, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NI", "iso_a3": "NIC", "iso_n3": "558", "un_a3": "558", "wb_a2": "NI", "wb_a3": "NIC", "woe_id": -99, "adm0_a3_is": "NIC", "adm0_a3_us": "NIC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.490601, 15.016422 ], [ -83.147278, 14.997852 ], [ -83.235168, 14.902322 ], [ -83.284607, 14.679254 ], [ -83.182983, 14.312292 ], [ -83.413696, 13.971385 ], [ -83.520813, 13.568572 ], [ -83.553772, 13.127629 ], [ -83.498840, 12.870715 ], [ -83.474121, 12.420483 ], [ -83.627930, 12.321219 ], [ -83.721313, 11.894228 ], [ -83.652649, 11.630716 ], [ -83.855896, 11.375031 ], [ -83.822937, 11.178402 ], [ -83.809204, 11.105642 ], [ -83.680115, 10.962764 ], [ -84.328308, 10.962764 ], [ -84.358521, 11.000512 ], [ -84.674377, 11.084080 ], [ -84.885864, 10.962764 ], [ -84.929810, 10.962764 ], [ -85.468140, 11.178402 ], [ -85.564270, 11.218816 ], [ -85.608215, 11.178402 ], [ -85.712585, 11.089471 ], [ -85.811462, 11.178402 ], [ -86.058655, 11.404649 ], [ -86.528320, 11.808211 ], [ -86.748047, 12.144061 ], [ -87.168274, 12.460715 ], [ -87.670898, 12.910875 ], [ -87.558289, 13.066101 ], [ -87.393494, 12.916230 ], [ -87.319336, 12.985824 ], [ -87.006226, 13.025966 ], [ -86.882629, 13.255986 ], [ -86.734314, 13.264006 ], [ -86.756287, 13.755392 ], [ -86.522827, 13.779402 ], [ -86.314087, 13.771399 ], [ -86.097107, 14.040673 ], [ -85.803223, 13.838080 ], [ -85.698853, 13.960723 ], [ -85.514832, 14.080637 ], [ -85.166016, 14.354870 ], [ -85.149536, 14.562318 ], [ -85.053406, 14.551684 ], [ -84.927063, 14.790817 ], [ -84.822693, 14.820026 ], [ -84.649658, 14.668626 ], [ -84.451904, 14.623451 ], [ -84.229431, 14.750979 ], [ -83.976746, 14.750979 ], [ -83.630676, 14.881087 ], [ -83.490601, 15.016422 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cuba", "sov_a3": "CUB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cuba", "adm0_a3": "CUB", "geou_dif": 0, "geounit": "Cuba", "gu_a3": "CUB", "su_dif": 0, "subunit": "Cuba", "su_a3": "CUB", "brk_diff": 0, "name": "Cuba", "name_long": "Cuba", "brk_a3": "CUB", "brk_name": "Cuba", "abbrev": "Cuba", "postal": "CU", "formal_en": "Republic of Cuba", "name_sort": "Cuba", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 11451652, "gdp_md_est": 108200, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CU", "iso_a3": "CUB", "iso_n3": "192", "un_a3": "192", "wb_a2": "CU", "wb_a3": "CUB", "woe_id": -99, "adm0_a3_is": "CUB", "adm0_a3_us": "CUB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.530273, 22.146708 ], [ -78.530273, 21.143431 ], [ -78.722534, 21.598704 ], [ -78.750000, 21.596151 ], [ -79.285583, 21.560393 ], [ -80.219421, 21.828357 ], [ -80.384216, 21.943046 ], [ -80.518799, 22.037276 ], [ -81.441650, 22.146708 ], [ -78.530273, 22.146708 ] ] ], [ [ [ -83.913574, 22.146708 ], [ -84.034424, 21.943046 ], [ -84.053650, 21.912471 ], [ -84.548035, 21.802858 ], [ -84.976501, 21.897181 ], [ -84.896851, 21.943046 ], [ -84.548035, 22.146708 ], [ -83.913574, 22.146708 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Costa Rica", "sov_a3": "CRI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Costa Rica", "adm0_a3": "CRI", "geou_dif": 0, "geounit": "Costa Rica", "gu_a3": "CRI", "su_dif": 0, "subunit": "Costa Rica", "su_a3": "CRI", "brk_diff": 0, "name": "Costa Rica", "name_long": "Costa Rica", "brk_a3": "CRI", "brk_name": "Costa Rica", "abbrev": "C.R.", "postal": "CR", "formal_en": "Republic of Costa Rica", "name_sort": "Costa Rica", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 4253877, "gdp_md_est": 48320, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CR", "iso_a3": "CRI", "iso_n3": "188", "un_a3": "188", "wb_a2": "CR", "wb_a3": "CRI", "woe_id": -99, "adm0_a3_is": "CRI", "adm0_a3_us": "CRI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.564270, 11.218816 ], [ -85.468140, 11.178402 ], [ -84.929810, 10.962764 ], [ -85.863647, 10.962764 ], [ -85.608215, 11.178402 ], [ -85.564270, 11.218816 ] ] ], [ [ [ -84.358521, 11.000512 ], [ -84.328308, 10.962764 ], [ -84.885864, 10.962764 ], [ -84.674377, 11.084080 ], [ -84.358521, 11.000512 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.741272, 32.138409 ], [ -80.867615, 32.033692 ], [ -80.930786, 31.952162 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.730032 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.538025, 28.473520 ], [ -80.532532, 28.040471 ], [ -80.057373, 26.880431 ], [ -80.090332, 26.207199 ], [ -80.134277, 25.817200 ], [ -80.381470, 25.207426 ], [ -80.680847, 25.080624 ], [ -81.172485, 25.202456 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.871581 ], [ -82.240906, 26.730893 ], [ -82.707825, 27.496090 ], [ -82.856140, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.101777 ], [ -83.710327, 29.938275 ], [ -84.100342, 30.090484 ], [ -85.111084, 29.637933 ], [ -85.289612, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.530823, 30.275672 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.596252, 30.161752 ], [ -89.414978, 29.895425 ], [ -89.431458, 29.489816 ], [ -89.219971, 29.291190 ], [ -89.409485, 29.161756 ], [ -89.780273, 29.307956 ], [ -90.000000, 29.197726 ], [ -90.156555, 29.118574 ], [ -90.219727, 29.120974 ], [ -90.219727, 32.138409 ], [ -80.741272, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "The Bahamas", "sov_a3": "BHS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "The Bahamas", "adm0_a3": "BHS", "geou_dif": 0, "geounit": "The Bahamas", "gu_a3": "BHS", "su_dif": 0, "subunit": "The Bahamas", "su_a3": "BHS", "brk_diff": 0, "name": "Bahamas", "name_long": "Bahamas", "brk_a3": "BHS", "brk_name": "Bahamas", "abbrev": "Bhs.", "postal": "BS", "formal_en": "Commonwealth of the Bahamas", "name_sort": "Bahamas, The", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 309156, "gdp_md_est": 9093, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BS", "iso_a3": "BHS", "iso_n3": "044", "un_a3": "044", "wb_a2": "BS", "wb_a3": "BHS", "woe_id": -99, "adm0_a3_is": "BHS", "adm0_a3_us": "BHS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.530273, 26.868181 ], [ -78.530273, 26.477949 ], [ -78.750000, 26.443525 ], [ -78.912048, 26.421390 ], [ -78.980713, 26.792203 ], [ -78.750000, 26.831424 ], [ -78.530273, 26.868181 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cuba", "sov_a3": "CUB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cuba", "adm0_a3": "CUB", "geou_dif": 0, "geounit": "Cuba", "gu_a3": "CUB", "su_dif": 0, "subunit": "Cuba", "su_a3": "CUB", "brk_diff": 0, "name": "Cuba", "name_long": "Cuba", "brk_a3": "CUB", "brk_name": "Cuba", "abbrev": "Cuba", "postal": "CU", "formal_en": "Republic of Cuba", "name_sort": "Cuba", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 11451652, "gdp_md_est": 108200, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CU", "iso_a3": "CUB", "iso_n3": "192", "un_a3": "192", "wb_a2": "CU", "wb_a3": "CUB", "woe_id": -99, "adm0_a3_is": "CUB", "adm0_a3_us": "CUB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.268372, 23.190863 ], [ -81.405945, 23.117628 ], [ -80.620422, 23.107523 ], [ -79.681091, 22.766051 ], [ -79.282837, 22.400872 ], [ -78.750000, 22.464340 ], [ -78.530273, 22.492257 ], [ -78.530273, 21.739091 ], [ -79.911804, 21.739091 ], [ -80.219421, 21.828357 ], [ -80.384216, 21.943046 ], [ -80.518799, 22.037276 ], [ -81.823425, 22.192491 ], [ -82.172241, 22.388174 ], [ -81.795959, 22.639363 ], [ -82.776489, 22.690052 ], [ -83.496094, 22.169601 ], [ -83.910828, 22.156883 ], [ -84.034424, 21.943046 ], [ -84.053650, 21.912471 ], [ -84.548035, 21.802858 ], [ -84.976501, 21.897181 ], [ -84.896851, 21.943046 ], [ -84.449158, 22.205206 ], [ -84.232178, 22.565830 ], [ -83.778992, 22.788843 ], [ -83.268127, 22.983681 ], [ -82.512817, 23.079732 ], [ -82.268372, 23.190863 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.530273, 41.145570 ], [ -78.530273, 33.865854 ], [ -78.554993, 33.863574 ], [ -78.750000, 33.719771 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.301819, 32.509762 ], [ -80.867615, 32.033692 ], [ -80.930786, 31.952162 ], [ -81.079102, 31.765537 ], [ -90.219727, 31.765537 ], [ -90.219727, 41.145570 ], [ -78.530273, 41.145570 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -78.530273, 49.066668 ], [ -78.530273, 43.626135 ], [ -78.722534, 43.626135 ], [ -78.750000, 43.616194 ], [ -79.172974, 43.466874 ], [ -79.010925, 43.271206 ], [ -78.920288, 42.966472 ], [ -78.939514, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.279602, 42.210211 ], [ -82.441406, 41.677015 ], [ -82.691345, 41.677015 ], [ -83.031921, 41.834781 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.900085, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.471375, 45.995054 ], [ -83.616943, 46.117038 ], [ -83.891602, 46.117038 ], [ -84.092102, 46.276733 ], [ -84.144287, 46.513516 ], [ -84.339294, 46.409458 ], [ -84.605713, 46.439750 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.877625, 46.901492 ], [ -86.462402, 47.554287 ], [ -87.440186, 47.940267 ], [ -88.379517, 48.303294 ], [ -89.274902, 48.021161 ], [ -89.601746, 48.010138 ], [ -90.000000, 48.096426 ], [ -90.219727, 48.142265 ], [ -90.219727, 49.066668 ], [ -78.530273, 49.066668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.379517, 48.303294 ], [ -87.440186, 47.940267 ], [ -86.462402, 47.554287 ], [ -84.877625, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.439750 ], [ -84.339294, 46.409458 ], [ -84.144287, 46.513516 ], [ -84.092102, 46.276733 ], [ -83.891602, 46.117038 ], [ -83.616943, 46.117038 ], [ -83.471375, 45.995054 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.900085, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.031921, 41.834781 ], [ -82.691345, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.279602, 42.210211 ], [ -80.249634, 42.366662 ], [ -78.939514, 42.863886 ], [ -78.920288, 42.966472 ], [ -79.010925, 43.271206 ], [ -79.172974, 43.466874 ], [ -78.750000, 43.616194 ], [ -78.722534, 43.626135 ], [ -78.530273, 43.626135 ], [ -78.530273, 40.813809 ], [ -90.219727, 40.813809 ], [ -90.219727, 48.142265 ], [ -90.000000, 48.096426 ], [ -89.601746, 48.010138 ], [ -89.274902, 48.021161 ], [ -88.379517, 48.303294 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -86.874390, 55.899956 ], [ -86.311340, 55.776573 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.361511, 55.246249 ], [ -82.273865, 55.149058 ], [ -82.438660, 54.282865 ], [ -82.125549, 53.278353 ], [ -81.403198, 52.158770 ], [ -79.914551, 51.208604 ], [ -79.145508, 51.534377 ], [ -78.750000, 52.283282 ], [ -78.604431, 52.562995 ], [ -78.750000, 53.016436 ], [ -79.126282, 54.141523 ], [ -79.832153, 54.669066 ], [ -78.750000, 54.985494 ], [ -78.530273, 55.050056 ], [ -78.530273, 48.777913 ], [ -90.219727, 48.777913 ], [ -90.219727, 55.899956 ], [ -86.874390, 55.899956 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -90.219727, 57.128786 ], [ -90.000000, 57.076575 ], [ -89.041443, 56.851976 ], [ -88.041687, 56.473111 ], [ -87.324829, 55.999917 ], [ -86.311340, 55.776573 ], [ -86.072388, 55.724017 ], [ -85.893860, 55.652798 ], [ -90.219727, 55.652798 ], [ -90.219727, 57.128786 ] ] ], [ [ [ -79.601440, 61.710706 ], [ -79.659119, 61.633812 ], [ -80.062866, 61.710706 ], [ -79.601440, 61.710706 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -79.931030, 62.386551 ], [ -79.521790, 62.364901 ], [ -79.266357, 62.159089 ], [ -79.659119, 61.633812 ], [ -80.101318, 61.718515 ], [ -80.362244, 62.017662 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.386551 ] ] ], [ [ [ -83.251648, 62.915233 ], [ -81.878357, 62.905227 ], [ -81.900330, 62.711944 ], [ -83.070374, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.251648, 62.915233 ] ] ], [ [ [ -85.885620, 65.739656 ], [ -85.163269, 65.658275 ], [ -84.976501, 65.217591 ], [ -84.465637, 65.372560 ], [ -83.883362, 65.110304 ], [ -82.790222, 64.767101 ], [ -81.642151, 64.456218 ], [ -81.554260, 63.980781 ], [ -80.818176, 64.057785 ], [ -80.104065, 63.726615 ], [ -80.991211, 63.412427 ], [ -82.548523, 63.652355 ], [ -83.108826, 64.102206 ], [ -84.103088, 63.570566 ], [ -85.525818, 63.052470 ], [ -85.869141, 63.637723 ], [ -87.223206, 63.542434 ], [ -86.355286, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ] ] ], [ [ [ -82.820435, 66.600676 ], [ -83.064880, 66.513260 ], [ -83.345032, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.559192 ], [ -85.797729, 66.513260 ], [ -86.069641, 66.057060 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.099807 ], [ -89.914856, 64.033744 ], [ -90.000000, 63.988009 ], [ -90.219727, 63.870924 ], [ -90.219727, 66.600676 ], [ -82.820435, 66.600676 ] ] ], [ [ [ -78.530273, 64.602682 ], [ -78.530273, 64.562601 ], [ -78.557739, 64.573216 ], [ -78.530273, 64.602682 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -85.523071, 69.882176 ], [ -84.103088, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.966248, 68.132715 ], [ -81.260376, 67.597709 ], [ -81.386719, 67.111272 ], [ -83.064880, 66.513260 ], [ -83.306580, 66.425537 ], [ -85.314331, 66.425537 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.559192 ], [ -85.797729, 66.513260 ], [ -85.849915, 66.425537 ], [ -90.219727, 66.425537 ], [ -90.219727, 68.672544 ], [ -90.000000, 68.802028 ], [ -89.217224, 69.259067 ], [ -88.019714, 68.615532 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.922044 ], [ -85.578003, 68.785138 ], [ -85.523071, 69.882176 ] ] ], [ [ [ -78.530273, 70.685421 ], [ -78.530273, 69.983955 ], [ -78.750000, 70.078691 ], [ -78.958740, 70.167405 ], [ -79.494324, 69.872727 ], [ -81.307068, 69.743797 ], [ -84.946289, 69.967026 ], [ -87.061157, 70.260380 ], [ -88.684387, 70.411031 ], [ -89.159546, 70.612614 ], [ -89.332581, 70.685421 ], [ -78.530273, 70.685421 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -85.827942, 73.804149 ], [ -86.564026, 73.157604 ], [ -85.775757, 72.534726 ], [ -84.850159, 73.340461 ], [ -82.317810, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -78.750000, 72.361616 ], [ -78.530273, 72.454588 ], [ -78.530273, 70.539543 ], [ -88.986511, 70.539543 ], [ -89.159546, 70.612614 ], [ -89.513855, 70.762491 ], [ -88.470154, 71.218728 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.586606 ], [ -90.205994, 72.235514 ], [ -90.000000, 72.478584 ], [ -89.436951, 73.129728 ], [ -88.409729, 73.538520 ], [ -85.827942, 73.804149 ] ] ], [ [ [ -80.354004, 73.760425 ], [ -78.750000, 73.684982 ], [ -78.530273, 73.674177 ], [ -78.530273, 72.859838 ], [ -78.750000, 72.833106 ], [ -79.488831, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.878601, 73.333373 ], [ -80.834656, 73.693467 ], [ -80.354004, 73.760425 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -90.219727, 75.926879 ], [ -90.000000, 75.883402 ], [ -89.824219, 75.847855 ], [ -89.189758, 75.610214 ], [ -87.838440, 75.566465 ], [ -86.380005, 75.482706 ], [ -84.789734, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.060120, 75.337416 ], [ -79.834900, 74.923713 ], [ -80.458374, 74.657836 ], [ -81.949768, 74.442729 ], [ -83.229675, 74.564543 ], [ -86.099854, 74.410284 ], [ -88.151550, 74.392559 ], [ -89.766541, 74.516223 ], [ -90.000000, 74.544794 ], [ -90.219727, 74.571852 ], [ -90.219727, 75.926879 ] ] ], [ [ [ -78.530273, 76.890745 ], [ -78.530273, 76.636687 ], [ -78.750000, 76.587719 ], [ -80.562744, 76.178435 ], [ -83.174744, 76.454560 ], [ -86.113586, 76.299303 ], [ -87.602234, 76.420423 ], [ -89.491882, 76.472561 ], [ -89.588013, 76.840816 ], [ -89.601746, 76.890745 ], [ -78.530273, 76.890745 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -78.530273, 79.212538 ], [ -78.530273, 77.473179 ], [ -78.750000, 77.426628 ], [ -79.760742, 77.210168 ], [ -79.620667, 76.983861 ], [ -78.750000, 77.003642 ], [ -78.530273, 77.008582 ], [ -78.530273, 76.790701 ], [ -89.574280, 76.790701 ], [ -89.588013, 76.840816 ], [ -89.618225, 76.952275 ], [ -87.769775, 77.178513 ], [ -88.261414, 77.900134 ], [ -87.651672, 77.970745 ], [ -84.976501, 77.539133 ], [ -86.341553, 78.180150 ], [ -87.962036, 78.372130 ], [ -87.154541, 78.758693 ], [ -85.380249, 78.997102 ], [ -85.240173, 79.171335 ], [ -85.204468, 79.212538 ], [ -78.530273, 79.212538 ] ] ], [ [ [ -86.393738, 79.212538 ], [ -86.583252, 79.171335 ], [ -87.190247, 79.039482 ], [ -89.035950, 78.287684 ], [ -90.000000, 78.248591 ], [ -90.219727, 78.239637 ], [ -90.219727, 79.212538 ], [ -86.393738, 79.212538 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -90.219727, 80.608121 ], [ -90.000000, 80.579842 ], [ -89.450684, 80.509454 ], [ -87.810974, 80.320120 ], [ -87.022705, 79.660106 ], [ -85.816956, 79.337252 ], [ -86.583252, 79.171335 ], [ -86.775513, 79.129976 ], [ -90.219727, 79.129976 ], [ -90.219727, 80.608121 ] ] ], [ [ [ -78.530273, 81.127169 ], [ -78.530273, 79.129976 ], [ -85.273132, 79.129976 ], [ -85.240173, 79.171335 ], [ -85.097351, 79.345888 ], [ -86.509094, 79.736728 ], [ -86.932068, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.410950, 80.100165 ], [ -81.850891, 80.464515 ], [ -84.100342, 80.580292 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.855820 ], [ -89.851685, 81.093214 ], [ -89.923096, 81.127169 ], [ -78.530273, 81.127169 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -78.530273, 82.704241 ], [ -78.530273, 81.059130 ], [ -89.783020, 81.059130 ], [ -89.851685, 81.093214 ], [ -90.000000, 81.164794 ], [ -90.200500, 81.260042 ], [ -90.219727, 81.265049 ], [ -90.219727, 82.070028 ], [ -90.101624, 82.085171 ], [ -90.000000, 82.087818 ], [ -88.934326, 82.117630 ], [ -86.970520, 82.279799 ], [ -85.501099, 82.652438 ], [ -84.262390, 82.600269 ], [ -83.180237, 82.320279 ], [ -82.685852, 82.676285 ], [ -82.647400, 82.704241 ], [ -78.530273, 82.704241 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -85.501099, 82.652438 ], [ -85.404968, 82.648222 ], [ -85.517578, 82.648222 ], [ -85.501099, 82.652438 ] ] ], [ [ [ -78.530273, 82.648222 ], [ -82.727051, 82.648222 ], [ -82.685852, 82.676285 ], [ -82.422180, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.307556, 83.130809 ], [ -78.750000, 83.138360 ], [ -78.530273, 83.141313 ], [ -78.530273, 82.648222 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -67.280273, -83.956169 ], [ -67.280273, -85.070048 ], [ -78.969727, -85.070048 ], [ -78.969727, -83.956169 ], [ -67.280273, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -67.280273, -82.648222 ], [ -67.280273, -84.002262 ], [ -78.969727, -84.002262 ], [ -78.969727, -82.648222 ], [ -67.280273, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -69.700012, -81.059130 ], [ -69.502258, -81.093214 ], [ -68.192139, -81.317447 ], [ -67.500000, -81.361287 ], [ -67.280273, -81.375303 ], [ -67.280273, -82.704241 ], [ -78.969727, -82.704241 ], [ -78.969727, -81.059130 ], [ -69.700012, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -78.019409, -79.129976 ], [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.259434 ], [ -73.245850, -80.416165 ], [ -71.444092, -80.690233 ], [ -70.015869, -81.003896 ], [ -69.502258, -81.093214 ], [ -69.307251, -81.127169 ], [ -78.969727, -81.127169 ], [ -78.969727, -79.129976 ], [ -78.019409, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -77.178955, -76.790701 ], [ -77.140503, -76.840816 ], [ -76.929016, -77.104554 ], [ -75.401917, -77.280509 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789705 ], [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -77.917786, -79.212538 ], [ -78.969727, -79.212538 ], [ -78.969727, -76.790701 ], [ -77.178955, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -67.280273, -73.958939 ], [ -67.280273, -75.806833 ], [ -67.500000, -75.844497 ], [ -68.447571, -76.006799 ], [ -69.798889, -76.222983 ], [ -70.600891, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.242126, -76.712650 ], [ -77.140503, -76.840816 ], [ -77.099304, -76.890745 ], [ -78.969727, -76.890745 ], [ -78.969727, -73.958939 ], [ -76.245117, -73.958939 ], [ -76.223145, -73.968802 ], [ -76.077576, -73.958939 ], [ -67.280273, -73.958939 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ -67.280273, -72.318288 ], [ -67.280273, -74.079925 ], [ -78.969727, -74.079925 ], [ -78.969727, -73.494879 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.636303 ], [ -76.223145, -73.968802 ], [ -74.891052, -73.871428 ], [ -73.852844, -73.655637 ], [ -72.833862, -73.400984 ], [ -71.619873, -73.263913 ], [ -70.210876, -73.146459 ], [ -68.936462, -73.008952 ], [ -67.958679, -72.793339 ], [ -67.500000, -72.550381 ], [ -67.370911, -72.480238 ], [ -67.280273, -72.318288 ] ] ], [ [ [ -68.705750, -70.539543 ], [ -68.661804, -70.612614 ], [ -68.453064, -70.955217 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.091656 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.366609 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.661071 ], [ -73.916016, -71.269067 ], [ -73.232117, -71.151407 ], [ -72.075806, -71.190411 ], [ -71.781921, -70.680879 ], [ -71.770935, -70.612614 ], [ -71.759949, -70.539543 ], [ -68.705750, -70.539543 ] ] ], [ [ [ -67.280273, -71.601349 ], [ -67.500000, -71.327192 ], [ -67.565918, -71.245239 ], [ -67.917480, -70.853683 ], [ -68.112488, -70.612614 ], [ -68.170166, -70.539543 ], [ -67.280273, -70.539543 ], [ -67.280273, -71.601349 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 24 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ -70.254822, -68.878368 ], [ -69.724731, -69.250312 ], [ -69.491272, -69.622685 ], [ -69.060059, -70.074011 ], [ -68.727722, -70.504742 ], [ -68.661804, -70.612614 ], [ -68.617859, -70.685421 ], [ -71.784668, -70.685421 ], [ -71.770935, -70.612614 ], [ -71.724243, -70.308561 ], [ -71.743469, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.254822, -68.878368 ] ] ], [ [ [ -67.280273, -66.902061 ], [ -67.280273, -70.685421 ], [ -68.054810, -70.685421 ], [ -68.112488, -70.612614 ], [ -68.233337, -70.461615 ], [ -68.486023, -70.108616 ], [ -68.546448, -69.717155 ], [ -68.447571, -69.325109 ], [ -67.977905, -68.952473 ], [ -67.585144, -68.541301 ], [ -67.500000, -68.330320 ], [ -67.428589, -68.149077 ], [ -67.500000, -67.991108 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.326101 ], [ -67.500000, -67.104861 ], [ -67.280273, -66.902061 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 21 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.517892 ], [ -68.634338, -52.634730 ], [ -68.634338, -54.868705 ], [ -67.563171, -54.868705 ], [ -67.500000, -54.871866 ], [ -67.280273, -54.881347 ], [ -67.280273, -55.286937 ], [ -67.291260, -55.301011 ], [ -67.500000, -55.375989 ], [ -68.150940, -55.610935 ], [ -68.642578, -55.579897 ], [ -69.233093, -55.497527 ], [ -69.958191, -55.197683 ], [ -71.007385, -55.053203 ], [ -72.265320, -54.493972 ], [ -73.287048, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.046167 ], [ -72.435608, -53.714590 ], [ -71.109009, -54.073894 ], [ -70.592651, -53.615321 ], [ -70.268555, -52.930430 ], [ -69.345703, -52.517892 ] ] ], [ [ [ -72.597656, -48.777913 ], [ -72.649841, -48.877361 ], [ -72.726746, -48.922499 ], [ -73.416138, -49.317961 ], [ -73.328247, -50.378751 ], [ -72.976685, -50.739932 ], [ -72.312012, -50.675576 ], [ -72.331238, -51.424902 ], [ -71.916504, -52.008555 ], [ -69.499512, -52.141917 ], [ -68.573914, -52.298402 ], [ -69.463806, -52.291683 ], [ -69.944458, -52.536273 ], [ -70.845337, -52.898962 ], [ -71.007385, -53.833081 ], [ -71.430359, -53.855767 ], [ -72.559204, -53.530513 ], [ -73.704529, -52.834299 ], [ -74.948730, -52.261434 ], [ -75.261841, -51.628248 ], [ -74.978943, -51.043121 ], [ -75.481567, -50.376999 ], [ -75.591431, -48.922499 ], [ -75.602417, -48.777913 ], [ -72.597656, -48.777913 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.634338, -52.634730 ], [ -68.252563, -53.098972 ], [ -67.752686, -53.849286 ], [ -67.500000, -53.965781 ], [ -67.280273, -54.067448 ], [ -67.280273, -54.881347 ], [ -67.500000, -54.871866 ], [ -67.563171, -54.868705 ], [ -68.634338, -54.868705 ], [ -68.634338, -52.634730 ] ] ], [ [ [ -67.280273, -48.777913 ], [ -67.280273, -48.904449 ], [ -67.500000, -49.301845 ], [ -67.818604, -49.868087 ], [ -68.730469, -50.263010 ], [ -69.139709, -50.731240 ], [ -68.815613, -51.769540 ], [ -68.150940, -52.348763 ], [ -68.573914, -52.298402 ], [ -69.499512, -52.141917 ], [ -71.916504, -52.008555 ], [ -72.331238, -51.424902 ], [ -72.312012, -50.675576 ], [ -72.976685, -50.739932 ], [ -73.328247, -50.378751 ], [ -73.416138, -49.317961 ], [ -72.726746, -48.922499 ], [ -72.649841, -48.877361 ], [ -72.597656, -48.777913 ], [ -67.280273, -48.777913 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 20 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.913757, -40.813809 ], [ -71.916504, -40.830437 ], [ -71.897278, -40.979898 ], [ -71.748962, -42.051332 ], [ -72.149963, -42.252918 ], [ -71.916504, -43.407043 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.331482, -44.406316 ], [ -71.224365, -44.783785 ], [ -71.661072, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.919250, -46.884600 ], [ -72.449341, -47.737476 ], [ -72.331238, -48.242967 ], [ -72.649841, -48.877361 ], [ -72.726746, -48.922499 ], [ -72.976685, -49.066668 ], [ -75.580444, -49.066668 ], [ -75.591431, -48.922499 ], [ -75.610657, -48.672826 ], [ -75.184937, -47.711610 ], [ -74.127502, -46.939012 ], [ -75.646362, -46.647551 ], [ -74.693298, -45.763691 ], [ -74.352722, -44.101393 ], [ -73.240356, -44.453389 ], [ -72.718506, -42.382894 ], [ -73.391418, -42.116561 ], [ -73.701782, -43.365126 ], [ -74.333496, -43.223191 ], [ -74.020386, -41.793840 ], [ -73.869324, -40.979898 ], [ -73.836365, -40.813809 ], [ -71.913757, -40.813809 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.280273, -40.813809 ], [ -67.280273, -45.542908 ], [ -67.294006, -45.550602 ], [ -67.500000, -46.090377 ], [ -67.582397, -46.301406 ], [ -67.500000, -46.362093 ], [ -67.280273, -46.524855 ], [ -67.280273, -48.904449 ], [ -67.370911, -49.066668 ], [ -72.976685, -49.066668 ], [ -72.726746, -48.922499 ], [ -72.649841, -48.877361 ], [ -72.331238, -48.242967 ], [ -72.449341, -47.737476 ], [ -71.919250, -46.884600 ], [ -71.553955, -45.560218 ], [ -71.661072, -44.972571 ], [ -71.224365, -44.783785 ], [ -71.331482, -44.406316 ], [ -71.795654, -44.205835 ], [ -71.466064, -43.786958 ], [ -71.916504, -43.407043 ], [ -72.149963, -42.252918 ], [ -71.748962, -42.051332 ], [ -71.897278, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.913757, -40.813809 ], [ -67.280273, -40.813809 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 19 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.430603, -31.765537 ], [ -70.381165, -31.952162 ], [ -70.076294, -33.089240 ], [ -69.815369, -33.273139 ], [ -69.818115, -34.191358 ], [ -70.389404, -35.169318 ], [ -70.367432, -36.004673 ], [ -71.122742, -36.657403 ], [ -71.119995, -37.575059 ], [ -70.815125, -38.552461 ], [ -71.413879, -38.914544 ], [ -71.683044, -39.806426 ], [ -71.916504, -40.830437 ], [ -71.897278, -40.979898 ], [ -71.875305, -41.145570 ], [ -73.899536, -41.145570 ], [ -73.869324, -40.979898 ], [ -73.679810, -39.941331 ], [ -73.218384, -39.257778 ], [ -73.506775, -38.281313 ], [ -73.589172, -37.155939 ], [ -73.168945, -37.123096 ], [ -72.553711, -35.507636 ], [ -71.864319, -33.906896 ], [ -71.438599, -32.417066 ], [ -71.512756, -31.952162 ], [ -71.540222, -31.765537 ], [ -70.430603, -31.765537 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.280273, -31.765537 ], [ -67.280273, -41.145570 ], [ -71.875305, -41.145570 ], [ -71.897278, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.683044, -39.806426 ], [ -71.413879, -38.914544 ], [ -70.815125, -38.552461 ], [ -71.119995, -37.575059 ], [ -71.122742, -36.657403 ], [ -70.367432, -36.004673 ], [ -70.389404, -35.169318 ], [ -69.818115, -34.191358 ], [ -69.815369, -33.273139 ], [ -70.076294, -33.089240 ], [ -70.381165, -31.952162 ], [ -70.430603, -31.765537 ], [ -67.280273, -31.765537 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 18 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.150940, -21.739091 ], [ -68.093262, -21.943046 ], [ -67.829590, -22.872379 ], [ -67.500000, -22.809099 ], [ -67.280273, -22.768584 ], [ -67.280273, -23.878303 ], [ -67.329712, -24.023888 ], [ -67.500000, -24.101633 ], [ -68.420105, -24.517139 ], [ -68.387146, -26.182554 ], [ -68.595886, -26.504989 ], [ -68.296509, -26.897578 ], [ -69.002380, -27.520451 ], [ -69.658813, -28.459033 ], [ -70.015869, -29.367814 ], [ -69.919739, -30.334954 ], [ -70.537720, -31.363018 ], [ -70.381165, -31.952162 ], [ -70.331726, -32.138409 ], [ -71.482544, -32.138409 ], [ -71.512756, -31.952162 ], [ -71.669312, -30.918720 ], [ -71.372681, -30.095237 ], [ -71.490784, -28.859108 ], [ -70.905762, -27.639740 ], [ -70.727234, -25.705888 ], [ -70.405884, -23.626911 ], [ -70.169678, -21.943046 ], [ -70.139465, -21.739091 ], [ -68.150940, -21.739091 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.280273, -21.739091 ], [ -67.280273, -22.768584 ], [ -67.500000, -22.809099 ], [ -67.829590, -22.872379 ], [ -68.093262, -21.943046 ], [ -68.150940, -21.739091 ], [ -67.280273, -21.739091 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.280273, -23.878303 ], [ -67.280273, -32.138409 ], [ -70.331726, -32.138409 ], [ -70.381165, -31.952162 ], [ -70.537720, -31.363018 ], [ -69.919739, -30.334954 ], [ -70.015869, -29.367814 ], [ -69.658813, -28.459033 ], [ -69.002380, -27.520451 ], [ -68.296509, -26.897578 ], [ -68.595886, -26.504989 ], [ -68.387146, -26.182554 ], [ -68.420105, -24.517139 ], [ -67.500000, -24.101633 ], [ -67.329712, -24.023888 ], [ -67.280273, -23.878303 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 17 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Peru", "sov_a3": "PER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Peru", "adm0_a3": "PER", "geou_dif": 0, "geounit": "Peru", "gu_a3": "PER", "su_dif": 0, "subunit": "Peru", "su_a3": "PER", "brk_diff": 0, "name": "Peru", "name_long": "Peru", "brk_a3": "PER", "brk_name": "Peru", "abbrev": "Peru", "postal": "PE", "formal_en": "Republic of Peru", "name_sort": "Peru", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 11, "pop_est": 29546963, "gdp_md_est": 247300, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PE", "iso_a3": "PER", "iso_n3": "604", "un_a3": "604", "wb_a2": "PE", "wb_a3": "PER", "woe_id": -99, "adm0_a3_is": "PER", "adm0_a3_us": "PER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.524231, -10.962764 ], [ -69.408875, -11.178402 ], [ -68.667297, -12.559925 ], [ -68.881531, -12.897489 ], [ -68.930969, -13.600609 ], [ -68.950195, -14.453299 ], [ -69.340210, -14.952746 ], [ -69.161682, -15.323923 ], [ -69.392395, -15.660065 ], [ -68.961182, -16.499299 ], [ -69.592896, -17.578576 ], [ -69.859314, -18.091033 ], [ -70.372925, -18.346705 ], [ -71.375427, -17.772228 ], [ -71.463318, -17.361125 ], [ -73.446350, -16.357039 ], [ -75.239868, -15.265638 ], [ -76.011658, -14.647368 ], [ -76.423645, -13.822078 ], [ -76.261597, -13.533860 ], [ -77.107544, -12.221918 ], [ -77.665100, -11.178402 ], [ -77.780457, -10.962764 ], [ -70.548706, -10.962764 ], [ -70.548706, -11.008601 ], [ -70.095520, -11.121812 ], [ -69.568176, -10.962764 ], [ -69.524231, -10.962764 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.592896, -17.578576 ], [ -69.101257, -18.258045 ], [ -68.969421, -18.981623 ], [ -68.444824, -19.404430 ], [ -68.757935, -20.370377 ], [ -68.222351, -21.493964 ], [ -68.093262, -21.943046 ], [ -68.035583, -22.146708 ], [ -70.197144, -22.146708 ], [ -70.169678, -21.943046 ], [ -70.092773, -21.391705 ], [ -70.166931, -19.756364 ], [ -70.372925, -18.346705 ], [ -69.859314, -18.091033 ], [ -69.592896, -17.578576 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.280273, -10.962764 ], [ -67.280273, -22.146708 ], [ -68.035583, -22.146708 ], [ -68.093262, -21.943046 ], [ -68.222351, -21.493964 ], [ -68.757935, -20.370377 ], [ -68.444824, -19.404430 ], [ -68.969421, -18.981623 ], [ -69.101257, -18.258045 ], [ -69.592896, -17.578576 ], [ -68.961182, -16.499299 ], [ -69.392395, -15.660065 ], [ -69.161682, -15.323923 ], [ -69.340210, -14.952746 ], [ -68.950195, -14.453299 ], [ -68.930969, -13.600609 ], [ -68.881531, -12.897489 ], [ -68.667297, -12.559925 ], [ -69.408875, -11.178402 ], [ -69.524231, -10.962764 ], [ -69.433594, -10.962764 ], [ -68.788147, -11.035560 ], [ -68.271790, -11.013993 ], [ -68.233337, -10.962764 ], [ -67.280273, -10.962764 ] ] ] } } +, +{ "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": [ [ [ [ -69.568176, -10.962764 ], [ -70.095520, -11.121812 ], [ -70.548706, -11.008601 ], [ -70.548706, -10.962764 ], [ -69.568176, -10.962764 ] ] ], [ [ [ -68.233337, -10.962764 ], [ -68.271790, -11.013993 ], [ -68.788147, -11.035560 ], [ -69.433594, -10.962764 ], [ -68.233337, -10.962764 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 16 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.018616, 0.219726 ], [ -70.021362, 0.000000 ], [ -70.021362, -0.184021 ], [ -69.579163, -0.549308 ], [ -69.422607, -1.120534 ], [ -69.444580, -1.554375 ], [ -69.895020, -4.297113 ], [ -70.394897, -3.765597 ], [ -70.694275, -3.740931 ], [ -70.048828, -2.723583 ], [ -70.815125, -2.254362 ], [ -71.413879, -2.342182 ], [ -71.776428, -2.169281 ], [ -72.328491, -2.432740 ], [ -73.072815, -2.306506 ], [ -73.660583, -1.257834 ], [ -74.124756, -1.002451 ], [ -74.443359, -0.530083 ], [ -75.108032, -0.054932 ], [ -75.374451, -0.151062 ], [ -75.649109, 0.000000 ], [ -75.802917, 0.085144 ], [ -76.003418, 0.219726 ], [ -70.018616, 0.219726 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.003418, 0.219726 ], [ -75.802917, 0.085144 ], [ -75.649109, 0.000000 ], [ -75.374451, -0.151062 ], [ -75.234375, -0.909081 ], [ -75.547485, -1.559866 ], [ -76.637878, -2.608352 ], [ -77.838135, -3.000642 ], [ -78.453369, -3.872476 ], [ -78.640137, -4.546308 ], [ -78.750000, -4.625704 ], [ -78.969727, -4.787206 ], [ -78.969727, 0.219726 ], [ -76.003418, 0.219726 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Peru", "sov_a3": "PER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Peru", "adm0_a3": "PER", "geou_dif": 0, "geounit": "Peru", "gu_a3": "PER", "su_dif": 0, "subunit": "Peru", "su_a3": "PER", "brk_diff": 0, "name": "Peru", "name_long": "Peru", "brk_a3": "PER", "brk_name": "Peru", "abbrev": "Peru", "postal": "PE", "formal_en": "Republic of Peru", "name_sort": "Peru", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 11, "pop_est": 29546963, "gdp_md_est": 247300, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PE", "iso_a3": "PER", "iso_n3": "604", "un_a3": "604", "wb_a2": "PE", "wb_a3": "PER", "woe_id": -99, "adm0_a3_is": "PER", "adm0_a3_us": "PER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.108032, -0.054932 ], [ -74.443359, -0.530083 ], [ -74.124756, -1.002451 ], [ -73.660583, -1.257834 ], [ -73.072815, -2.306506 ], [ -72.328491, -2.432740 ], [ -71.776428, -2.169281 ], [ -71.413879, -2.342182 ], [ -70.815125, -2.254362 ], [ -70.048828, -2.723583 ], [ -70.694275, -3.740931 ], [ -70.394897, -3.765597 ], [ -69.895020, -4.297113 ], [ -70.795898, -4.250551 ], [ -70.930481, -4.401183 ], [ -71.748962, -4.592852 ], [ -72.894287, -5.274213 ], [ -72.965698, -5.738976 ], [ -73.221130, -6.088667 ], [ -73.122253, -6.629142 ], [ -73.726501, -6.918247 ], [ -73.723755, -7.340675 ], [ -73.987427, -7.523150 ], [ -73.572693, -8.423470 ], [ -73.017883, -9.031578 ], [ -73.229370, -9.459899 ], [ -72.564697, -9.519497 ], [ -72.185669, -10.052698 ], [ -71.304016, -10.077037 ], [ -70.482788, -9.489699 ], [ -70.548706, -11.008601 ], [ -70.095520, -11.121812 ], [ -69.529724, -10.949282 ], [ -69.408875, -11.178402 ], [ -69.293518, -11.393879 ], [ -77.552490, -11.393879 ], [ -77.665100, -11.178402 ], [ -78.093567, -10.377064 ], [ -78.750000, -8.990888 ], [ -78.969727, -8.526701 ], [ -78.969727, -4.787206 ], [ -78.750000, -4.625704 ], [ -78.640137, -4.546308 ], [ -78.453369, -3.872476 ], [ -77.838135, -3.000642 ], [ -76.637878, -2.608352 ], [ -75.547485, -1.559866 ], [ -75.234375, -0.909081 ], [ -75.374451, -0.151062 ], [ -75.108032, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.280273, -10.355450 ], [ -67.280273, -11.393879 ], [ -69.293518, -11.393879 ], [ -69.408875, -11.178402 ], [ -69.529724, -10.949282 ], [ -68.788147, -11.035560 ], [ -68.271790, -11.013993 ], [ -68.049316, -10.711888 ], [ -67.500000, -10.455402 ], [ -67.280273, -10.355450 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ -67.280273, 0.219726 ], [ -67.280273, -10.355450 ], [ -67.500000, -10.455402 ], [ -68.049316, -10.711888 ], [ -68.271790, -11.013993 ], [ -68.788147, -11.035560 ], [ -69.529724, -10.949282 ], [ -70.095520, -11.121812 ], [ -70.548706, -11.008601 ], [ -70.482788, -9.489699 ], [ -71.304016, -10.077037 ], [ -72.185669, -10.052698 ], [ -72.564697, -9.519497 ], [ -73.229370, -9.459899 ], [ -73.017883, -9.031578 ], [ -73.572693, -8.423470 ], [ -73.987427, -7.523150 ], [ -73.723755, -7.340675 ], [ -73.726501, -6.918247 ], [ -73.122253, -6.629142 ], [ -73.221130, -6.088667 ], [ -72.965698, -5.738976 ], [ -72.894287, -5.274213 ], [ -71.748962, -4.592852 ], [ -70.930481, -4.401183 ], [ -70.795898, -4.250551 ], [ -69.895020, -4.297113 ], [ -69.444580, -1.554375 ], [ -69.422607, -1.120534 ], [ -69.579163, -0.549308 ], [ -70.021362, -0.184021 ], [ -70.021362, 0.000000 ], [ -70.018616, 0.219726 ], [ -67.280273, 0.219726 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Panama", "sov_a3": "PAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Panama", "adm0_a3": "PAN", "geou_dif": 0, "geounit": "Panama", "gu_a3": "PAN", "su_dif": 0, "subunit": "Panama", "su_a3": "PAN", "brk_diff": 0, "name": "Panama", "name_long": "Panama", "brk_a3": "PAN", "brk_name": "Panama", "abbrev": "Pan.", "postal": "PA", "formal_en": "Republic of Panama", "name_sort": "Panama", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 3360474, "gdp_md_est": 38830, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PA", "iso_a3": "PAN", "iso_n3": "591", "un_a3": "591", "wb_a2": "PA", "wb_a3": "PAN", "woe_id": -99, "adm0_a3_is": "PAN", "adm0_a3_us": "PAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.969727, 9.451771 ], [ -78.750000, 9.438224 ], [ -78.502808, 9.421968 ], [ -78.057861, 9.248514 ], [ -77.731018, 8.947480 ], [ -77.354736, 8.670633 ], [ -77.475586, 8.526701 ], [ -77.244873, 7.936836 ], [ -77.431641, 7.640220 ], [ -77.755737, 7.710992 ], [ -77.882080, 7.226249 ], [ -78.217163, 7.512258 ], [ -78.431396, 8.053791 ], [ -78.184204, 8.320212 ], [ -78.436890, 8.388148 ], [ -78.623657, 8.719503 ], [ -78.750000, 8.790083 ], [ -78.969727, 8.912207 ], [ -78.969727, 9.451771 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.084045, 11.393879 ], [ -72.193909, 11.178402 ], [ -72.229614, 11.111032 ], [ -72.616882, 10.822515 ], [ -72.908020, 10.452701 ], [ -73.028870, 9.738835 ], [ -73.306274, 9.153621 ], [ -72.789917, 9.085824 ], [ -72.660828, 8.627188 ], [ -72.441101, 8.407168 ], [ -72.361450, 8.004837 ], [ -72.482300, 7.634776 ], [ -72.446594, 7.425113 ], [ -72.199402, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.675049, 7.089990 ], [ -70.095520, 6.961870 ], [ -69.389648, 6.102322 ], [ -68.985901, 6.208821 ], [ -68.266296, 6.154209 ], [ -67.697754, 6.268888 ], [ -67.500000, 6.173324 ], [ -67.343445, 6.096860 ], [ -67.500000, 5.621453 ], [ -67.521973, 5.558582 ], [ -67.747192, 5.222247 ], [ -67.824097, 4.505238 ], [ -67.623596, 3.839591 ], [ -67.500000, 3.713523 ], [ -67.337952, 3.543576 ], [ -67.304993, 3.318760 ], [ -67.500000, 3.126804 ], [ -67.810364, 2.822344 ], [ -67.500000, 2.633045 ], [ -67.447815, 2.602864 ], [ -67.280273, 2.383346 ], [ -67.280273, 1.743810 ], [ -67.500000, 1.996361 ], [ -67.538452, 2.037534 ], [ -67.870789, 1.694394 ], [ -69.818115, 1.716357 ], [ -69.807129, 1.090327 ], [ -69.219360, 0.985974 ], [ -69.255066, 0.604237 ], [ -69.452820, 0.708600 ], [ -70.015869, 0.543815 ], [ -70.021362, 0.000000 ], [ -70.021362, -0.184021 ], [ -69.980164, -0.219726 ], [ -74.880066, -0.219726 ], [ -75.108032, -0.054932 ], [ -75.374451, -0.151062 ], [ -75.649109, 0.000000 ], [ -75.802917, 0.085144 ], [ -76.294556, 0.417477 ], [ -76.577454, 0.258178 ], [ -77.426147, 0.398251 ], [ -77.670593, 0.826693 ], [ -77.857361, 0.810215 ], [ -78.750000, 1.320989 ], [ -78.857117, 1.381397 ], [ -78.969727, 1.644977 ], [ -78.969727, 1.697139 ], [ -78.750000, 1.741065 ], [ -78.618164, 1.768518 ], [ -78.664856, 2.268084 ], [ -78.428650, 2.630301 ], [ -77.934265, 2.698892 ], [ -77.511292, 3.326986 ], [ -77.129517, 3.850553 ], [ -77.497559, 4.088932 ], [ -77.308044, 4.669505 ], [ -77.533264, 5.583184 ], [ -77.319031, 5.845545 ], [ -77.478333, 6.691887 ], [ -77.882080, 7.226249 ], [ -77.755737, 7.710992 ], [ -77.431641, 7.640220 ], [ -77.244873, 7.936836 ], [ -77.475586, 8.526701 ], [ -77.354736, 8.670633 ], [ -76.838379, 8.640765 ], [ -76.088562, 9.337962 ], [ -75.676575, 9.443643 ], [ -75.665588, 9.774025 ], [ -75.481567, 10.620118 ], [ -74.907532, 11.084080 ], [ -74.278564, 11.102947 ], [ -74.248352, 11.178402 ], [ -74.198914, 11.313094 ], [ -73.416138, 11.229592 ], [ -73.155212, 11.393879 ], [ -72.084045, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Venezuela", "sov_a3": "VEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Venezuela", "adm0_a3": "VEN", "geou_dif": 0, "geounit": "Venezuela", "gu_a3": "VEN", "su_dif": 0, "subunit": "Venezuela", "su_a3": "VEN", "brk_diff": 0, "name": "Venezuela", "name_long": "Venezuela", "brk_a3": "VEN", "brk_name": "Venezuela", "abbrev": "Ven.", "postal": "VE", "formal_en": "Bolivarian Republic of Venezuela", "formal_fr": "República Bolivariana de Venezuela", "name_sort": "Venezuela, RB", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 26814843, "gdp_md_est": 357400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "VE", "iso_a3": "VEN", "iso_n3": "862", "un_a3": "862", "wb_a2": "VE", "wb_a3": "VEN", "woe_id": -99, "adm0_a3_is": "VEN", "adm0_a3_us": "VEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.826599, 11.393879 ], [ -68.576660, 11.178402 ], [ -68.233337, 10.887254 ], [ -68.194885, 10.555322 ], [ -67.500000, 10.549922 ], [ -67.280273, 10.549922 ], [ -67.280273, 2.383346 ], [ -67.447815, 2.602864 ], [ -67.500000, 2.633045 ], [ -67.810364, 2.822344 ], [ -67.500000, 3.126804 ], [ -67.304993, 3.318760 ], [ -67.337952, 3.543576 ], [ -67.500000, 3.713523 ], [ -67.623596, 3.839591 ], [ -67.824097, 4.505238 ], [ -67.747192, 5.222247 ], [ -67.521973, 5.558582 ], [ -67.500000, 5.621453 ], [ -67.343445, 6.096860 ], [ -67.500000, 6.173324 ], [ -67.697754, 6.268888 ], [ -68.266296, 6.154209 ], [ -68.985901, 6.208821 ], [ -69.389648, 6.102322 ], [ -70.095520, 6.961870 ], [ -70.675049, 7.089990 ], [ -71.960449, 6.991859 ], [ -72.199402, 7.340675 ], [ -72.446594, 7.425113 ], [ -72.482300, 7.634776 ], [ -72.361450, 8.004837 ], [ -72.441101, 8.407168 ], [ -72.660828, 8.627188 ], [ -72.789917, 9.085824 ], [ -73.306274, 9.153621 ], [ -73.028870, 9.738835 ], [ -72.908020, 10.452701 ], [ -72.616882, 10.822515 ], [ -72.229614, 11.111032 ], [ -72.193909, 11.178402 ], [ -72.084045, 11.393879 ], [ -71.927490, 11.393879 ], [ -71.773682, 11.178402 ], [ -71.622620, 10.970854 ], [ -71.633606, 10.447299 ], [ -72.075806, 9.866040 ], [ -71.696777, 9.072264 ], [ -71.265564, 9.137351 ], [ -71.040344, 9.860628 ], [ -71.350708, 10.212219 ], [ -71.402893, 10.970854 ], [ -70.760193, 11.178402 ], [ -70.155945, 11.377724 ], [ -70.161438, 11.393879 ], [ -68.826599, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.857117, 1.381397 ], [ -78.750000, 1.320989 ], [ -77.857361, 0.810215 ], [ -77.670593, 0.826693 ], [ -77.426147, 0.398251 ], [ -76.577454, 0.258178 ], [ -76.294556, 0.417477 ], [ -75.802917, 0.085144 ], [ -75.649109, 0.000000 ], [ -75.374451, -0.151062 ], [ -75.363464, -0.219726 ], [ -78.969727, -0.219726 ], [ -78.969727, 1.315497 ], [ -78.857117, 1.381397 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Peru", "sov_a3": "PER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Peru", "adm0_a3": "PER", "geou_dif": 0, "geounit": "Peru", "gu_a3": "PER", "su_dif": 0, "subunit": "Peru", "su_a3": "PER", "brk_diff": 0, "name": "Peru", "name_long": "Peru", "brk_a3": "PER", "brk_name": "Peru", "abbrev": "Peru", "postal": "PE", "formal_en": "Republic of Peru", "name_sort": "Peru", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 11, "pop_est": 29546963, "gdp_md_est": 247300, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PE", "iso_a3": "PER", "iso_n3": "604", "un_a3": "604", "wb_a2": "PE", "wb_a3": "PER", "woe_id": -99, "adm0_a3_is": "PER", "adm0_a3_us": "PER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.108032, -0.054932 ], [ -74.880066, -0.219726 ], [ -75.363464, -0.219726 ], [ -75.374451, -0.151062 ], [ -75.108032, -0.054932 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ -67.538452, 2.037534 ], [ -67.500000, 1.996361 ], [ -67.280273, 1.743810 ], [ -67.280273, -0.219726 ], [ -69.980164, -0.219726 ], [ -70.021362, -0.184021 ], [ -70.021362, 0.000000 ], [ -70.015869, 0.543815 ], [ -69.452820, 0.708600 ], [ -69.255066, 0.604237 ], [ -69.219360, 0.985974 ], [ -69.807129, 1.090327 ], [ -69.818115, 1.716357 ], [ -67.870789, 1.694394 ], [ -67.538452, 2.037534 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cuba", "sov_a3": "CUB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cuba", "adm0_a3": "CUB", "geou_dif": 0, "geounit": "Cuba", "gu_a3": "CUB", "su_dif": 0, "subunit": "Cuba", "su_a3": "CUB", "brk_diff": 0, "name": "Cuba", "name_long": "Cuba", "brk_a3": "CUB", "brk_name": "Cuba", "abbrev": "Cuba", "postal": "CU", "formal_en": "Republic of Cuba", "name_sort": "Cuba", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 11451652, "gdp_md_est": 108200, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CU", "iso_a3": "CUB", "iso_n3": "192", "un_a3": "192", "wb_a2": "CU", "wb_a3": "CUB", "woe_id": -99, "adm0_a3_is": "CUB", "adm0_a3_us": "CUB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.816162, 22.146708 ], [ -77.536011, 21.943046 ], [ -76.525269, 21.207459 ], [ -76.195679, 21.222821 ], [ -75.599670, 21.017855 ], [ -75.671082, 20.735566 ], [ -74.934998, 20.694462 ], [ -74.179688, 20.285385 ], [ -74.297791, 20.050771 ], [ -74.962463, 19.924295 ], [ -75.635376, 19.875226 ], [ -76.324768, 19.955278 ], [ -77.755737, 19.857144 ], [ -77.085571, 20.414143 ], [ -77.494812, 20.673905 ], [ -78.137512, 20.740703 ], [ -78.483582, 21.030674 ], [ -78.722534, 21.598704 ], [ -78.750000, 21.596151 ], [ -78.969727, 21.583381 ], [ -78.969727, 22.146708 ], [ -77.816162, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Jamaica", "sov_a3": "JAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Jamaica", "adm0_a3": "JAM", "geou_dif": 0, "geounit": "Jamaica", "gu_a3": "JAM", "su_dif": 0, "subunit": "Jamaica", "su_a3": "JAM", "brk_diff": 0, "name": "Jamaica", "name_long": "Jamaica", "brk_a3": "JAM", "brk_name": "Jamaica", "abbrev": "Jam.", "postal": "J", "formal_en": "Jamaica", "name_sort": "Jamaica", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 10, "pop_est": 2825928, "gdp_md_est": 20910, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "JM", "iso_a3": "JAM", "iso_n3": "388", "un_a3": "388", "wb_a2": "JM", "wb_a3": "JAM", "woe_id": -99, "adm0_a3_is": "JAM", "adm0_a3_us": "JAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.799683, 18.526492 ], [ -77.571716, 18.492633 ], [ -76.898804, 18.401443 ], [ -76.365967, 18.161511 ], [ -76.201172, 17.887273 ], [ -76.904297, 17.868975 ], [ -77.206421, 17.701595 ], [ -77.766724, 17.863747 ], [ -78.338013, 18.226743 ], [ -78.219910, 18.456163 ], [ -77.799683, 18.526492 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Haiti", "sov_a3": "HTI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Haiti", "adm0_a3": "HTI", "geou_dif": 0, "geounit": "Haiti", "gu_a3": "HTI", "su_dif": 0, "subunit": "Haiti", "su_a3": "HTI", "brk_diff": 0, "name": "Haiti", "name_long": "Haiti", "brk_a3": "HTI", "brk_name": "Haiti", "abbrev": "Haiti", "postal": "HT", "formal_en": "Republic of Haiti", "name_sort": "Haiti", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 9035536, "gdp_md_est": 11500, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "HT", "iso_a3": "HTI", "iso_n3": "332", "un_a3": "332", "wb_a2": "HT", "wb_a3": "HTI", "woe_id": -99, "adm0_a3_is": "HTI", "adm0_a3_us": "HTI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.190918, 19.916548 ], [ -72.581177, 19.872643 ], [ -71.713257, 19.715000 ], [ -71.625366, 19.171113 ], [ -71.702271, 18.786717 ], [ -71.946716, 18.617616 ], [ -71.688538, 18.318026 ], [ -71.710510, 18.046644 ], [ -72.375183, 18.216307 ], [ -72.844849, 18.145852 ], [ -73.454590, 18.218916 ], [ -73.924255, 18.033586 ], [ -74.459839, 18.344098 ], [ -74.371948, 18.667063 ], [ -73.451843, 18.526492 ], [ -72.696533, 18.448347 ], [ -72.336731, 18.669665 ], [ -72.792664, 19.103648 ], [ -72.784424, 19.484718 ], [ -73.416138, 19.640001 ], [ -73.190918, 19.916548 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Dominican Republic", "sov_a3": "DOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Dominican Republic", "adm0_a3": "DOM", "geou_dif": 0, "geounit": "Dominican Republic", "gu_a3": "DOM", "su_dif": 0, "subunit": "Dominican Republic", "su_a3": "DOM", "brk_diff": 0, "name": "Dominican Rep.", "name_long": "Dominican Republic", "brk_a3": "DOM", "brk_name": "Dominican Rep.", "abbrev": "Dom. Rep.", "postal": "DO", "formal_en": "Dominican Republic", "name_sort": "Dominican Republic", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 9650054, "gdp_md_est": 78000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DO", "iso_a3": "DOM", "iso_n3": "214", "un_a3": "214", "wb_a2": "DO", "wb_a3": "DOM", "woe_id": -99, "adm0_a3_is": "DOM", "adm0_a3_us": "DOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 14, "long_len": 18, "abbrev_len": 9, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.589661, 19.885557 ], [ -70.806885, 19.880392 ], [ -70.216370, 19.624479 ], [ -69.952698, 19.650348 ], [ -69.771423, 19.295590 ], [ -69.224854, 19.313735 ], [ -69.255066, 19.015384 ], [ -68.810120, 18.981623 ], [ -68.318481, 18.612410 ], [ -68.692017, 18.205871 ], [ -69.167175, 18.424896 ], [ -69.625854, 18.383199 ], [ -69.955444, 18.430108 ], [ -70.133972, 18.247612 ], [ -70.518494, 18.184997 ], [ -70.669556, 18.427502 ], [ -71.001892, 18.284126 ], [ -71.402893, 17.599521 ], [ -71.658325, 17.759150 ], [ -71.710510, 18.046644 ], [ -71.688538, 18.318026 ], [ -71.946716, 18.617616 ], [ -71.702271, 18.786717 ], [ -71.625366, 19.171113 ], [ -71.713257, 19.715000 ], [ -71.589661, 19.885557 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.754456, 12.439259 ], [ -71.400146, 12.377563 ], [ -71.139221, 12.114523 ], [ -71.334229, 11.778637 ], [ -71.974182, 11.609193 ], [ -72.193909, 11.178402 ], [ -72.229614, 11.111032 ], [ -72.427368, 10.962764 ], [ -75.055847, 10.962764 ], [ -74.907532, 11.084080 ], [ -74.278564, 11.102947 ], [ -74.248352, 11.178402 ], [ -74.198914, 11.313094 ], [ -73.416138, 11.229592 ], [ -72.627869, 11.732924 ], [ -72.240601, 11.956036 ], [ -71.754456, 12.439259 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Venezuela", "sov_a3": "VEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Venezuela", "adm0_a3": "VEN", "geou_dif": 0, "geounit": "Venezuela", "gu_a3": "VEN", "su_dif": 0, "subunit": "Venezuela", "su_a3": "VEN", "brk_diff": 0, "name": "Venezuela", "name_long": "Venezuela", "brk_a3": "VEN", "brk_name": "Venezuela", "abbrev": "Ven.", "postal": "VE", "formal_en": "Bolivarian Republic of Venezuela", "formal_fr": "República Bolivariana de Venezuela", "name_sort": "Venezuela, RB", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 26814843, "gdp_md_est": 357400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "VE", "iso_a3": "VEN", "iso_n3": "862", "un_a3": "862", "wb_a2": "VE", "wb_a3": "VEN", "woe_id": -99, "adm0_a3_is": "VEN", "adm0_a3_us": "VEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -71.334229, 11.778637 ], [ -71.361694, 11.541925 ], [ -71.949463, 11.423495 ], [ -71.773682, 11.178402 ], [ -71.622620, 10.970854 ], [ -71.622620, 10.962764 ], [ -72.427368, 10.962764 ], [ -72.229614, 11.111032 ], [ -72.193909, 11.178402 ], [ -71.974182, 11.609193 ], [ -71.334229, 11.778637 ] ] ], [ [ [ -69.584656, 11.461183 ], [ -68.884277, 11.445031 ], [ -68.576660, 11.178402 ], [ -68.323975, 10.962764 ], [ -71.402893, 10.962764 ], [ -71.402893, 10.970854 ], [ -70.760193, 11.178402 ], [ -70.155945, 11.377724 ], [ -70.296021, 11.848535 ], [ -69.944458, 12.162856 ], [ -69.584656, 11.461183 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "The Bahamas", "sov_a3": "BHS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "The Bahamas", "adm0_a3": "BHS", "geou_dif": 0, "geounit": "The Bahamas", "gu_a3": "BHS", "su_dif": 0, "subunit": "The Bahamas", "su_a3": "BHS", "brk_diff": 0, "name": "Bahamas", "name_long": "Bahamas", "brk_a3": "BHS", "brk_name": "Bahamas", "abbrev": "Bhs.", "postal": "BS", "formal_en": "Commonwealth of the Bahamas", "name_sort": "Bahamas, The", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 309156, "gdp_md_est": 9093, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BS", "iso_a3": "BHS", "iso_n3": "044", "un_a3": "044", "wb_a2": "BS", "wb_a3": "BHS", "woe_id": -99, "adm0_a3_is": "BHS", "adm0_a3_us": "BHS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.192444, 25.212396 ], [ -77.890320, 25.170145 ], [ -77.541504, 24.342092 ], [ -77.536011, 23.760209 ], [ -77.780457, 23.712439 ], [ -78.035889, 24.287027 ], [ -78.409424, 24.577100 ], [ -78.192444, 25.212396 ] ] ], [ [ [ -77.791443, 27.042003 ], [ -77.000427, 26.590983 ], [ -77.173462, 25.881466 ], [ -77.357483, 26.007424 ], [ -77.341003, 26.532023 ], [ -77.788696, 26.926968 ], [ -77.791443, 27.042003 ] ] ], [ [ [ -78.511047, 26.870631 ], [ -77.851868, 26.841227 ], [ -77.821655, 26.581159 ], [ -78.750000, 26.443525 ], [ -78.912048, 26.421390 ], [ -78.969727, 26.735799 ], [ -78.969727, 26.792203 ], [ -78.750000, 26.831424 ], [ -78.511047, 26.870631 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cuba", "sov_a3": "CUB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cuba", "adm0_a3": "CUB", "geou_dif": 0, "geounit": "Cuba", "gu_a3": "CUB", "su_dif": 0, "subunit": "Cuba", "su_a3": "CUB", "brk_diff": 0, "name": "Cuba", "name_long": "Cuba", "brk_a3": "CUB", "brk_name": "Cuba", "abbrev": "Cuba", "postal": "CU", "formal_en": "Republic of Cuba", "name_sort": "Cuba", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 11451652, "gdp_md_est": 108200, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CU", "iso_a3": "CUB", "iso_n3": "192", "un_a3": "192", "wb_a2": "CU", "wb_a3": "CUB", "woe_id": -99, "adm0_a3_is": "CUB", "adm0_a3_us": "CUB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.348999, 22.512557 ], [ -77.994690, 22.278931 ], [ -77.536011, 21.943046 ], [ -77.258606, 21.739091 ], [ -78.969727, 21.739091 ], [ -78.969727, 22.438956 ], [ -78.750000, 22.464340 ], [ -78.348999, 22.512557 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.094788, 41.145570 ], [ -73.569946, 40.979898 ], [ -73.710022, 40.932190 ], [ -73.330994, 40.979898 ], [ -72.243347, 41.120746 ], [ -72.023621, 40.979898 ], [ -71.946716, 40.930115 ], [ -73.347473, 40.630630 ], [ -73.984680, 40.628546 ], [ -73.954468, 40.751418 ], [ -74.259338, 40.474114 ], [ -73.962708, 40.428133 ], [ -74.179688, 39.709300 ], [ -74.907532, 38.940185 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.528259, 39.499802 ], [ -75.322266, 38.961544 ], [ -75.072327, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.379944, 38.015640 ], [ -75.940247, 37.217206 ], [ -76.033630, 37.258752 ], [ -75.723267, 37.937699 ], [ -76.234131, 38.320111 ], [ -76.352234, 39.151363 ], [ -76.544495, 38.717662 ], [ -76.330261, 38.084851 ], [ -76.992188, 38.240337 ], [ -76.302795, 37.918201 ], [ -76.258850, 36.967449 ], [ -75.973206, 36.899391 ], [ -75.868835, 36.551569 ], [ -75.728760, 35.552340 ], [ -76.363220, 34.809293 ], [ -77.398682, 34.513346 ], [ -78.055115, 33.927409 ], [ -78.554993, 33.863574 ], [ -78.750000, 33.719771 ], [ -78.969727, 33.561995 ], [ -78.969727, 41.145570 ], [ -73.094788, 41.145570 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -78.969727, 43.538594 ], [ -78.969727, 49.066668 ], [ -68.513489, 49.066668 ], [ -68.672791, 48.922499 ], [ -69.955444, 47.746711 ], [ -71.106262, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.650818, 48.301467 ], [ -67.500000, 48.759810 ], [ -67.280273, 48.846643 ], [ -67.280273, 45.263289 ], [ -67.500000, 45.452424 ], [ -67.793884, 45.704261 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.355571 ], [ -68.906250, 47.185979 ], [ -69.238586, 47.448522 ], [ -70.002136, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.661316, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.507263, 45.009477 ], [ -73.350220, 45.007535 ], [ -74.869080, 45.001709 ], [ -75.319519, 44.816916 ], [ -76.376953, 44.097448 ], [ -76.500549, 44.018496 ], [ -76.821899, 43.630111 ], [ -77.739258, 43.630111 ], [ -78.722534, 43.626135 ], [ -78.750000, 43.616194 ], [ -78.969727, 43.538594 ] ] ], [ [ [ -78.969727, 43.135065 ], [ -78.920288, 42.966472 ], [ -78.939514, 42.863886 ], [ -78.969727, 42.853820 ], [ -78.969727, 43.135065 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.238586, 47.448522 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.355571 ], [ -67.791138, 47.066380 ], [ -67.793884, 45.704261 ], [ -67.500000, 45.452424 ], [ -67.280273, 45.263289 ], [ -67.280273, 44.668653 ], [ -67.500000, 44.568948 ], [ -68.032837, 44.325813 ], [ -69.060059, 43.980958 ], [ -70.117493, 43.685750 ], [ -70.647583, 43.090955 ], [ -70.815125, 42.865899 ], [ -70.826111, 42.336215 ], [ -70.496521, 41.806125 ], [ -70.081787, 41.781553 ], [ -70.186157, 42.145078 ], [ -69.886780, 41.924760 ], [ -69.966431, 41.638026 ], [ -70.642090, 41.475660 ], [ -71.122742, 41.496235 ], [ -71.861572, 41.321138 ], [ -72.295532, 41.271614 ], [ -72.877808, 41.222052 ], [ -73.569946, 40.979898 ], [ -73.710022, 40.932190 ], [ -73.330994, 40.979898 ], [ -72.243347, 41.120746 ], [ -72.023621, 40.979898 ], [ -71.946716, 40.930115 ], [ -72.490540, 40.813809 ], [ -78.969727, 40.813809 ], [ -78.969727, 42.853820 ], [ -78.939514, 42.863886 ], [ -78.920288, 42.966472 ], [ -78.969727, 43.135065 ], [ -78.969727, 43.538594 ], [ -78.750000, 43.616194 ], [ -78.722534, 43.626135 ], [ -77.739258, 43.630111 ], [ -76.821899, 43.630111 ], [ -76.500549, 44.018496 ], [ -76.376953, 44.097448 ], [ -75.319519, 44.816916 ], [ -74.869080, 45.001709 ], [ -73.350220, 45.007535 ], [ -71.507263, 45.009477 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.661316, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.002136, 46.694667 ], [ -69.238586, 47.448522 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -67.280273, 55.899956 ], [ -67.280273, 49.496675 ], [ -67.500000, 49.421694 ], [ -68.513489, 49.068468 ], [ -68.672791, 48.922499 ], [ -68.832092, 48.777913 ], [ -78.969727, 48.777913 ], [ -78.969727, 51.866316 ], [ -78.750000, 52.283282 ], [ -78.604431, 52.562995 ], [ -78.750000, 53.016436 ], [ -78.969727, 53.680442 ], [ -78.969727, 54.920828 ], [ -78.750000, 54.985494 ], [ -78.230896, 55.136500 ], [ -77.195435, 55.776573 ], [ -77.096558, 55.838314 ], [ -77.047119, 55.899956 ], [ -67.280273, 55.899956 ] ] ], [ [ [ -67.280273, 48.777913 ], [ -67.453308, 48.777913 ], [ -67.280273, 48.846643 ], [ -67.280273, 48.777913 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -72.070312, 61.710706 ], [ -71.850586, 61.606396 ], [ -71.677551, 61.526623 ], [ -71.375427, 61.137933 ], [ -69.592896, 61.062272 ], [ -69.620361, 60.222083 ], [ -69.288025, 58.958507 ], [ -68.376160, 58.802362 ], [ -67.651062, 58.212685 ], [ -67.500000, 58.270510 ], [ -67.280273, 58.355630 ], [ -67.280273, 55.652798 ], [ -77.398682, 55.652798 ], [ -77.195435, 55.776573 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.203247 ], [ -77.302551, 58.053179 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.774963, 60.759160 ], [ -77.953491, 61.606396 ], [ -77.975464, 61.710706 ], [ -72.070312, 61.710706 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -77.412415, 62.551591 ], [ -75.698547, 62.279423 ], [ -74.668579, 62.182169 ], [ -73.841858, 62.445054 ], [ -72.910767, 62.105168 ], [ -71.850586, 61.606396 ], [ -71.677551, 61.526623 ], [ -71.661072, 61.501734 ], [ -77.931519, 61.501734 ], [ -77.953491, 61.606396 ], [ -78.107300, 62.320279 ], [ -77.412415, 62.551591 ] ] ], [ [ [ -67.280273, 66.600676 ], [ -67.280273, 66.334198 ], [ -67.500000, 66.313242 ], [ -68.016357, 66.263540 ], [ -68.142700, 65.689953 ], [ -67.500000, 65.337055 ], [ -67.280273, 65.215289 ], [ -67.280273, 63.269476 ], [ -67.500000, 63.339808 ], [ -68.785400, 63.746061 ], [ -67.500000, 62.965212 ], [ -67.370911, 62.885205 ], [ -67.280273, 62.833835 ], [ -67.280273, 62.096171 ], [ -67.500000, 62.128289 ], [ -68.878784, 62.330484 ], [ -71.023865, 62.911481 ], [ -72.237854, 63.398902 ], [ -71.886292, 63.680377 ], [ -73.380432, 64.194423 ], [ -74.836121, 64.679143 ], [ -74.819641, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.573216 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.454838 ], [ -74.295044, 65.811781 ], [ -73.946228, 66.311035 ], [ -73.682556, 66.513260 ], [ -73.567200, 66.600676 ], [ -67.280273, 66.600676 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -69.763184, 70.685421 ], [ -69.318237, 70.612614 ], [ -68.788147, 70.525813 ], [ -67.917480, 70.122629 ], [ -67.500000, 69.717155 ], [ -67.280273, 69.498956 ], [ -67.280273, 69.108756 ], [ -67.500000, 69.052858 ], [ -68.807373, 68.720441 ], [ -67.500000, 68.360725 ], [ -67.280273, 68.299874 ], [ -67.280273, 66.425537 ], [ -73.795166, 66.425537 ], [ -73.682556, 66.513260 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.727149 ], [ -73.311768, 68.070228 ], [ -74.844360, 68.555363 ], [ -76.871338, 68.895187 ], [ -76.231384, 69.147898 ], [ -77.288818, 69.770406 ], [ -78.170471, 69.827312 ], [ -78.750000, 70.078691 ], [ -78.958740, 70.167405 ], [ -78.969727, 70.160881 ], [ -78.969727, 70.685421 ], [ -69.763184, 70.685421 ] ] ], [ [ [ -75.896301, 68.287684 ], [ -75.116272, 68.010656 ], [ -75.105286, 67.583050 ], [ -75.217896, 67.444390 ], [ -75.866089, 67.149699 ], [ -76.989441, 67.099518 ], [ -77.236633, 67.588287 ], [ -76.813660, 68.149077 ], [ -75.896301, 68.287684 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -77.827148, 72.750224 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.767927 ], [ -74.100037, 71.331588 ], [ -72.243347, 71.557086 ], [ -71.202393, 70.920233 ], [ -69.318237, 70.612614 ], [ -68.876038, 70.539543 ], [ -78.969727, 70.539543 ], [ -78.969727, 72.323293 ], [ -78.771973, 72.352459 ], [ -78.750000, 72.361616 ], [ -77.827148, 72.750224 ] ] ], [ [ [ -78.969727, 73.695009 ], [ -78.750000, 73.684982 ], [ -78.066101, 73.652545 ], [ -76.341248, 73.103405 ], [ -76.253357, 72.826619 ], [ -77.316284, 72.855790 ], [ -78.392944, 72.876828 ], [ -78.750000, 72.833106 ], [ -78.969727, 72.806334 ], [ -78.969727, 73.695009 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -77.901306, 76.890745 ], [ -77.895813, 76.840816 ], [ -77.890320, 76.778142 ], [ -78.750000, 76.587719 ], [ -78.969727, 76.538575 ], [ -78.969727, 76.890745 ], [ -77.901306, 76.890745 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.280273, 76.890745 ], [ -67.280273, 76.098817 ], [ -67.500000, 76.092216 ], [ -68.505249, 76.061816 ], [ -69.667053, 76.380383 ], [ -70.933228, 76.840816 ], [ -71.073303, 76.890745 ], [ -67.280273, 76.890745 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -78.969727, 77.379906 ], [ -78.969727, 79.212538 ], [ -75.693054, 79.212538 ], [ -75.531006, 79.198134 ], [ -75.632629, 79.171335 ], [ -76.223145, 79.019097 ], [ -75.393677, 78.526119 ], [ -76.343994, 78.182963 ], [ -77.890320, 77.900134 ], [ -78.362732, 77.508873 ], [ -78.750000, 77.426628 ], [ -78.969727, 77.379906 ] ] ], [ [ [ -78.969727, 76.998699 ], [ -78.750000, 77.003642 ], [ -77.912292, 77.022159 ], [ -77.895813, 76.840816 ], [ -77.890320, 76.790701 ], [ -78.969727, 76.790701 ], [ -78.969727, 76.998699 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.280273, 77.408079 ], [ -67.500000, 77.421246 ], [ -71.043091, 77.635954 ], [ -73.298035, 78.044364 ], [ -73.160706, 78.432867 ], [ -69.375916, 78.913968 ], [ -67.500000, 79.162559 ], [ -67.280273, 79.191440 ], [ -67.280273, 77.408079 ] ] ], [ [ [ -67.280273, 77.362492 ], [ -67.280273, 76.790701 ], [ -70.793152, 76.790701 ], [ -70.933228, 76.840816 ], [ -71.402893, 77.008582 ], [ -68.777161, 77.323374 ], [ -67.500000, 77.357083 ], [ -67.280273, 77.362492 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -67.280273, 81.127169 ], [ -67.280273, 81.048024 ], [ -67.500000, 80.990143 ], [ -67.840576, 80.900234 ], [ -69.472046, 80.617081 ], [ -71.180420, 79.800150 ], [ -73.243103, 79.634439 ], [ -73.880310, 79.430356 ], [ -76.909790, 79.323522 ], [ -75.531006, 79.198134 ], [ -75.632629, 79.171335 ], [ -75.794678, 79.129976 ], [ -78.969727, 79.129976 ], [ -78.969727, 81.127169 ], [ -67.280273, 81.127169 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.280273, 80.020042 ], [ -67.500000, 80.049036 ], [ -68.024597, 80.117621 ], [ -67.500000, 80.358376 ], [ -67.280273, 80.458143 ], [ -67.280273, 80.020042 ] ] ], [ [ [ -67.280273, 79.191440 ], [ -67.280273, 79.129976 ], [ -67.747192, 79.129976 ], [ -67.280273, 79.191440 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -67.280273, 82.704241 ], [ -67.280273, 81.595699 ], [ -67.500000, 81.540928 ], [ -67.659302, 81.501646 ], [ -67.500000, 81.502052 ], [ -67.280273, 81.502458 ], [ -67.280273, 81.059130 ], [ -78.969727, 81.059130 ], [ -78.969727, 82.704241 ], [ -67.280273, 82.704241 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -72.833862, 83.233515 ], [ -70.666809, 83.169790 ], [ -68.502502, 83.106457 ], [ -67.500000, 83.077387 ], [ -67.280273, 83.070763 ], [ -67.280273, 82.648222 ], [ -78.969727, 82.648222 ], [ -78.969727, 83.135407 ], [ -78.750000, 83.138360 ], [ -76.250610, 83.172076 ], [ -75.720520, 83.064132 ], [ -72.833862, 83.233515 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -56.030273, -83.956169 ], [ -56.030273, -85.070048 ], [ -67.719727, -85.070048 ], [ -67.719727, -83.956169 ], [ -56.030273, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -59.133911, -82.648222 ], [ -59.073486, -82.676285 ], [ -58.713684, -82.845861 ], [ -58.224792, -83.218288 ], [ -57.010803, -82.865673 ], [ -56.250000, -82.731397 ], [ -56.030273, -82.692373 ], [ -56.030273, -84.002262 ], [ -67.719727, -84.002262 ], [ -67.719727, -82.648222 ], [ -59.133911, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ -67.719727, -81.347249 ], [ -67.500000, -81.361287 ], [ -65.706482, -81.474408 ], [ -63.256531, -81.748454 ], [ -61.553650, -82.042319 ], [ -59.691467, -82.375504 ], [ -59.073486, -82.676285 ], [ -59.015808, -82.704241 ], [ -67.719727, -82.704241 ], [ -67.719727, -81.347249 ] ] ], [ [ [ -56.030273, -82.704241 ], [ -56.098938, -82.704241 ], [ -56.030273, -82.692373 ], [ -56.030273, -82.704241 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -60.611572, -79.628507 ], [ -59.573364, -80.040014 ], [ -59.867249, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.256775, -80.862801 ], [ -64.489746, -80.921928 ], [ -65.742188, -80.588380 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255715 ], [ -64.039307, -80.294687 ], [ -61.885986, -80.392815 ], [ -61.141663, -79.980935 ], [ -60.611572, -79.628507 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -61.177368, -73.958939 ], [ -61.259766, -74.019543 ], [ -61.377869, -74.106272 ], [ -61.965637, -74.439782 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.355164, -75.262841 ], [ -65.863037, -75.634766 ], [ -67.195129, -75.791336 ], [ -67.500000, -75.844497 ], [ -67.719727, -75.882732 ], [ -67.719727, -73.958939 ], [ -61.177368, -73.958939 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -62.059021, -70.539543 ], [ -61.954651, -70.612614 ], [ -61.809082, -70.716285 ], [ -61.515198, -71.088305 ], [ -61.377869, -72.009552 ], [ -61.083984, -72.381579 ], [ -61.004333, -72.773828 ], [ -60.691223, -73.165560 ], [ -60.828552, -73.695009 ], [ -61.259766, -74.019543 ], [ -61.342163, -74.079925 ], [ -67.719727, -74.079925 ], [ -67.719727, -72.667773 ], [ -67.500000, -72.550381 ], [ -67.370911, -72.480238 ], [ -67.134705, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.500000, -71.327192 ], [ -67.565918, -71.245239 ], [ -67.719727, -71.074056 ], [ -67.719727, -70.539543 ], [ -62.059021, -70.539543 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 24 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -62.806091, -66.425537 ], [ -63.748169, -66.503407 ], [ -63.761902, -66.513260 ], [ -64.294739, -66.836246 ], [ -64.882507, -67.149699 ], [ -65.508728, -67.580955 ], [ -65.665283, -67.952994 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.913969 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.991475 ], [ -62.278748, -70.383387 ], [ -61.954651, -70.612614 ], [ -61.853027, -70.685421 ], [ -67.719727, -70.685421 ], [ -67.719727, -68.684527 ], [ -67.585144, -68.541301 ], [ -67.500000, -68.330320 ], [ -67.428589, -68.149077 ], [ -67.500000, -67.991108 ], [ -67.626343, -67.717778 ], [ -67.719727, -67.397989 ], [ -67.719727, -67.307035 ], [ -67.500000, -67.104861 ], [ -67.252808, -66.875109 ], [ -66.703491, -66.582126 ], [ -66.585388, -66.513260 ], [ -66.431580, -66.425537 ], [ -62.806091, -66.425537 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 23 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -57.812805, -63.269476 ], [ -57.225037, -63.525297 ], [ -57.595825, -63.857616 ], [ -58.614807, -64.151347 ], [ -59.046021, -64.367249 ], [ -59.790344, -64.211157 ], [ -60.614319, -64.308967 ], [ -61.298218, -64.543718 ], [ -62.023315, -64.798696 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.484486 ], [ -62.591858, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.806091, -66.424439 ], [ -63.748169, -66.503407 ], [ -63.761902, -66.513260 ], [ -63.904724, -66.600676 ], [ -66.739197, -66.600676 ], [ -66.585388, -66.513260 ], [ -66.058044, -66.209308 ], [ -65.371399, -65.896046 ], [ -64.569397, -65.601609 ], [ -64.176636, -65.170346 ], [ -63.630066, -64.896755 ], [ -63.003845, -64.641528 ], [ -62.042542, -64.582648 ], [ -61.416321, -64.269646 ], [ -60.710449, -64.073400 ], [ -59.889221, -63.955467 ], [ -59.164124, -63.701072 ], [ -58.595581, -63.387831 ], [ -57.812805, -63.269476 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 21 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.563171, -54.868705 ], [ -67.500000, -54.871866 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.301011 ], [ -67.500000, -55.375989 ], [ -67.719727, -55.455499 ], [ -67.719727, -54.868705 ], [ -67.563171, -54.868705 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.719727, -53.863866 ], [ -67.500000, -53.965781 ], [ -66.450806, -54.449283 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.199251 ], [ -66.450806, -55.249381 ], [ -66.961670, -54.895565 ], [ -67.500000, -54.871866 ], [ -67.563171, -54.868705 ], [ -67.719727, -54.868705 ], [ -67.719727, -53.863866 ] ] ], [ [ [ -67.211609, -48.777913 ], [ -67.291260, -48.922499 ], [ -67.500000, -49.301845 ], [ -67.719727, -49.696062 ], [ -67.719727, -48.777913 ], [ -67.211609, -48.777913 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "Falkland Islands", "adm0_a3": "FLK", "geou_dif": 0, "geounit": "Falkland Islands", "gu_a3": "FLK", "su_dif": 0, "subunit": "Falkland Islands", "su_a3": "FLK", "brk_diff": 1, "name": "Falkland Is.", "name_long": "Falkland Islands", "brk_a3": "B12", "brk_name": "Falkland Is.", "abbrev": "Flk. Is.", "postal": "FK", "formal_en": "Falkland Islands", "note_adm0": "U.K.", "note_brk": "Admin. by U.K.; Claimed by Argentina", "name_sort": "Falkland Islands", "name_alt": "Islas Malvinas", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 3140, "gdp_md_est": 105.1, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FK", "iso_a3": "FLK", "iso_n3": "238", "un_a3": "238", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "FLK", "adm0_a3_us": "FLK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 12, "long_len": 16, "abbrev_len": 8, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.551636, -51.098348 ], [ -57.752380, -51.549751 ], [ -58.051758, -51.898529 ], [ -59.400330, -52.199190 ], [ -59.850769, -51.849353 ], [ -60.702209, -52.298402 ], [ -61.202087, -51.849353 ], [ -60.001831, -51.249882 ], [ -59.150391, -51.498485 ], [ -58.551636, -51.098348 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 20 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.750671, -40.813809 ], [ -64.995117, -40.979898 ], [ -65.118713, -41.062786 ], [ -64.978638, -42.057450 ], [ -64.305725, -42.358544 ], [ -63.756409, -42.043174 ], [ -63.459778, -42.561173 ], [ -64.379883, -42.871938 ], [ -65.181885, -43.494775 ], [ -65.330200, -44.500423 ], [ -65.566406, -45.036656 ], [ -66.511230, -45.038597 ], [ -67.294006, -45.550602 ], [ -67.500000, -46.090377 ], [ -67.582397, -46.301406 ], [ -67.500000, -46.362093 ], [ -66.599121, -47.032695 ], [ -65.643311, -47.234490 ], [ -65.986633, -48.133101 ], [ -67.167664, -48.696399 ], [ -67.291260, -48.922499 ], [ -67.370911, -49.066668 ], [ -67.719727, -49.066668 ], [ -67.719727, -40.813809 ], [ -64.750671, -40.813809 ] ] ], [ [ [ -62.380371, -40.813809 ], [ -62.663269, -40.979898 ], [ -62.748413, -41.027571 ], [ -63.772888, -41.166249 ], [ -64.267273, -40.979898 ], [ -64.703979, -40.813809 ], [ -62.380371, -40.813809 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 19 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.070984, -31.765537 ], [ -58.120422, -31.952162 ], [ -58.145142, -32.043005 ], [ -58.134155, -33.038601 ], [ -58.351135, -33.261657 ], [ -58.428040, -33.909175 ], [ -58.496704, -34.429567 ], [ -57.227783, -35.285985 ], [ -57.362366, -35.975783 ], [ -56.738892, -36.412442 ], [ -56.788330, -36.899391 ], [ -57.749634, -38.182069 ], [ -59.232788, -38.719805 ], [ -61.237793, -38.927366 ], [ -62.336426, -38.826871 ], [ -62.127686, -39.423464 ], [ -62.330933, -40.172578 ], [ -62.146912, -40.676472 ], [ -62.663269, -40.979898 ], [ -62.748413, -41.027571 ], [ -63.613586, -41.145570 ], [ -63.827820, -41.145570 ], [ -64.267273, -40.979898 ], [ -64.734192, -40.801336 ], [ -64.995117, -40.979898 ], [ -65.118713, -41.062786 ], [ -65.107727, -41.145570 ], [ -67.719727, -41.145570 ], [ -67.719727, -31.765537 ], [ -58.070984, -31.765537 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Uruguay", "sov_a3": "URY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uruguay", "adm0_a3": "URY", "geou_dif": 0, "geounit": "Uruguay", "gu_a3": "URY", "su_dif": 0, "subunit": "Uruguay", "su_a3": "URY", "brk_diff": 0, "name": "Uruguay", "name_long": "Uruguay", "brk_a3": "URY", "brk_name": "Uruguay", "abbrev": "Ury.", "postal": "UY", "formal_en": "Oriental Republic of Uruguay", "name_sort": "Uruguay", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 3494382, "gdp_md_est": 43160, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "UY", "iso_a3": "URY", "iso_n3": "858", "un_a3": "858", "wb_a2": "UY", "wb_a3": "URY", "woe_id": -99, "adm0_a3_is": "URY", "adm0_a3_us": "URY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.030273, -31.765537 ], [ -56.030273, -34.822823 ], [ -56.217041, -34.858890 ], [ -56.250000, -34.843113 ], [ -57.139893, -34.429567 ], [ -57.818298, -34.461277 ], [ -58.428040, -33.909175 ], [ -58.351135, -33.261657 ], [ -58.134155, -33.038601 ], [ -58.145142, -32.043005 ], [ -58.120422, -31.952162 ], [ -58.070984, -31.765537 ], [ -56.030273, -31.765537 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 18 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.107239, -22.735657 ], [ -66.986389, -22.986210 ], [ -67.329712, -24.023888 ], [ -67.719727, -24.201879 ], [ -67.719727, -22.852133 ], [ -67.500000, -22.809099 ], [ -67.107239, -22.735657 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.517700, -21.739091 ], [ -62.586365, -21.943046 ], [ -62.685242, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.987122, -21.991442 ], [ -64.377136, -22.796439 ], [ -64.964905, -22.075459 ], [ -65.679016, -21.943046 ], [ -66.275024, -21.830907 ], [ -66.376648, -21.943046 ], [ -67.107239, -22.735657 ], [ -67.500000, -22.809099 ], [ -67.719727, -22.852133 ], [ -67.719727, -21.739091 ], [ -62.517700, -21.739091 ] ] ] } } +, +{ "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": [ [ [ [ -56.030273, -28.627925 ], [ -56.030273, -30.838573 ], [ -56.250000, -30.668628 ], [ -56.977844, -30.109494 ], [ -57.626038, -30.213982 ], [ -56.291199, -28.851891 ], [ -56.250000, -28.815800 ], [ -56.030273, -28.627925 ] ] ], [ [ [ -56.030273, -22.263680 ], [ -56.250000, -22.174688 ], [ -56.475220, -22.085640 ], [ -56.881714, -22.281472 ], [ -57.939148, -22.088185 ], [ -57.930908, -21.943046 ], [ -57.919922, -21.739091 ], [ -56.030273, -21.739091 ], [ -56.030273, -22.263680 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Paraguay", "sov_a3": "PRY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Paraguay", "adm0_a3": "PRY", "geou_dif": 0, "geounit": "Paraguay", "gu_a3": "PRY", "su_dif": 0, "subunit": "Paraguay", "su_a3": "PRY", "brk_diff": 0, "name": "Paraguay", "name_long": "Paraguay", "brk_a3": "PRY", "brk_name": "Paraguay", "abbrev": "Para.", "postal": "PY", "formal_en": "Republic of Paraguay", "name_sort": "Paraguay", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 2, "pop_est": 6995655, "gdp_md_est": 28890, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PY", "iso_a3": "PRY", "iso_n3": "600", "un_a3": "600", "wb_a2": "PY", "wb_a3": "PRY", "woe_id": -99, "adm0_a3_is": "PRY", "adm0_a3_us": "PRY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.919922, -21.739091 ], [ -57.930908, -21.943046 ], [ -57.939148, -22.088185 ], [ -56.881714, -22.281472 ], [ -56.475220, -22.085640 ], [ -56.250000, -22.174688 ], [ -56.030273, -22.263680 ], [ -56.030273, -27.454665 ], [ -56.250000, -27.498527 ], [ -56.488953, -27.547242 ], [ -57.612305, -27.393717 ], [ -58.620300, -27.122702 ], [ -57.634277, -25.601902 ], [ -57.779846, -25.160201 ], [ -58.809814, -24.769278 ], [ -60.029297, -24.031414 ], [ -60.847778, -23.878303 ], [ -62.685242, -22.248429 ], [ -62.586365, -21.943046 ], [ -62.517700, -21.739091 ], [ -57.919922, -21.739091 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.275024, -21.830907 ], [ -65.679016, -21.943046 ], [ -64.964905, -22.075459 ], [ -64.377136, -22.796439 ], [ -63.987122, -21.991442 ], [ -62.847290, -22.034730 ], [ -62.685242, -22.248429 ], [ -60.847778, -23.878303 ], [ -60.029297, -24.031414 ], [ -58.809814, -24.769278 ], [ -57.779846, -25.160201 ], [ -57.634277, -25.601902 ], [ -58.620300, -27.122702 ], [ -57.612305, -27.393717 ], [ -56.488953, -27.547242 ], [ -56.250000, -27.498527 ], [ -56.030273, -27.454665 ], [ -56.030273, -28.627925 ], [ -56.250000, -28.815800 ], [ -56.291199, -28.851891 ], [ -57.626038, -30.213982 ], [ -57.875977, -31.015279 ], [ -58.120422, -31.952162 ], [ -58.145142, -32.043005 ], [ -58.142395, -32.138409 ], [ -67.719727, -32.138409 ], [ -67.719727, -24.201879 ], [ -67.329712, -24.023888 ], [ -66.986389, -22.986210 ], [ -67.107239, -22.735657 ], [ -66.376648, -21.943046 ], [ -66.275024, -21.830907 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Uruguay", "sov_a3": "URY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uruguay", "adm0_a3": "URY", "geou_dif": 0, "geounit": "Uruguay", "gu_a3": "URY", "su_dif": 0, "subunit": "Uruguay", "su_a3": "URY", "brk_diff": 0, "name": "Uruguay", "name_long": "Uruguay", "brk_a3": "URY", "brk_name": "Uruguay", "abbrev": "Ury.", "postal": "UY", "formal_en": "Oriental Republic of Uruguay", "name_sort": "Uruguay", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 3494382, "gdp_md_est": 43160, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "UY", "iso_a3": "URY", "iso_n3": "858", "un_a3": "858", "wb_a2": "UY", "wb_a3": "URY", "woe_id": -99, "adm0_a3_is": "URY", "adm0_a3_us": "URY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.977844, -30.109494 ], [ -56.250000, -30.668628 ], [ -56.030273, -30.838573 ], [ -56.030273, -32.138409 ], [ -58.142395, -32.138409 ], [ -58.145142, -32.043005 ], [ -58.120422, -31.952162 ], [ -57.875977, -31.015279 ], [ -57.626038, -30.213982 ], [ -56.977844, -30.109494 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 17 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.330200, -10.962764 ], [ -65.357666, -11.178402 ], [ -65.404358, -11.566144 ], [ -64.316711, -12.460715 ], [ -63.198853, -12.626938 ], [ -62.803345, -12.999205 ], [ -62.127686, -13.197165 ], [ -61.715698, -13.488460 ], [ -61.086731, -13.477777 ], [ -60.504456, -13.774066 ], [ -60.460510, -14.352209 ], [ -60.265503, -14.644711 ], [ -60.251770, -15.074776 ], [ -60.545654, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.241272, -16.299051 ], [ -58.389587, -16.875519 ], [ -58.282471, -17.269351 ], [ -57.735901, -17.552391 ], [ -57.499695, -18.171950 ], [ -57.678223, -18.960844 ], [ -57.950134, -19.399249 ], [ -57.854004, -19.968186 ], [ -58.167114, -20.174567 ], [ -58.183594, -19.867477 ], [ -59.117432, -19.355202 ], [ -60.045776, -19.342245 ], [ -61.787109, -19.632240 ], [ -62.267761, -20.511927 ], [ -62.292480, -21.051181 ], [ -62.586365, -21.943046 ], [ -62.652283, -22.146708 ], [ -62.764893, -22.146708 ], [ -62.847290, -22.034730 ], [ -63.987122, -21.991442 ], [ -64.061279, -22.146708 ], [ -64.909973, -22.146708 ], [ -64.964905, -22.075459 ], [ -65.679016, -21.943046 ], [ -66.275024, -21.830907 ], [ -66.376648, -21.943046 ], [ -66.563416, -22.146708 ], [ -67.719727, -22.146708 ], [ -67.719727, -10.962764 ], [ -65.330200, -10.962764 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ -56.030273, -10.962764 ], [ -56.030273, -22.146708 ], [ -56.324158, -22.146708 ], [ -56.475220, -22.085640 ], [ -56.601562, -22.146708 ], [ -57.628784, -22.146708 ], [ -57.939148, -22.088185 ], [ -57.930908, -21.943046 ], [ -57.873230, -20.730428 ], [ -58.167114, -20.174567 ], [ -57.854004, -19.968186 ], [ -57.950134, -19.399249 ], [ -57.678223, -18.960844 ], [ -57.499695, -18.171950 ], [ -57.735901, -17.552391 ], [ -58.282471, -17.269351 ], [ -58.389587, -16.875519 ], [ -58.241272, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.251770, -15.074776 ], [ -60.265503, -14.644711 ], [ -60.460510, -14.352209 ], [ -60.504456, -13.774066 ], [ -61.086731, -13.477777 ], [ -61.715698, -13.488460 ], [ -62.127686, -13.197165 ], [ -62.803345, -12.999205 ], [ -63.198853, -12.626938 ], [ -64.316711, -12.460715 ], [ -65.404358, -11.566144 ], [ -65.357666, -11.178402 ], [ -65.330200, -10.962764 ], [ -56.030273, -10.962764 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Paraguay", "sov_a3": "PRY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Paraguay", "adm0_a3": "PRY", "geou_dif": 0, "geounit": "Paraguay", "gu_a3": "PRY", "su_dif": 0, "subunit": "Paraguay", "su_a3": "PRY", "brk_diff": 0, "name": "Paraguay", "name_long": "Paraguay", "brk_a3": "PRY", "brk_name": "Paraguay", "abbrev": "Para.", "postal": "PY", "formal_en": "Republic of Paraguay", "name_sort": "Paraguay", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 2, "pop_est": 6995655, "gdp_md_est": 28890, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PY", "iso_a3": "PRY", "iso_n3": "600", "un_a3": "600", "wb_a2": "PY", "wb_a3": "PRY", "woe_id": -99, "adm0_a3_is": "PRY", "adm0_a3_us": "PRY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -60.045776, -19.342245 ], [ -59.117432, -19.355202 ], [ -58.183594, -19.867477 ], [ -58.167114, -20.174567 ], [ -57.873230, -20.730428 ], [ -57.930908, -21.943046 ], [ -57.939148, -22.088185 ], [ -57.628784, -22.146708 ], [ -62.652283, -22.146708 ], [ -62.586365, -21.943046 ], [ -62.292480, -21.051181 ], [ -62.267761, -20.511927 ], [ -61.787109, -19.632240 ], [ -60.045776, -19.342245 ] ] ], [ [ [ -56.324158, -22.146708 ], [ -56.601562, -22.146708 ], [ -56.475220, -22.085640 ], [ -56.324158, -22.146708 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -66.275024, -21.830907 ], [ -65.679016, -21.943046 ], [ -64.964905, -22.075459 ], [ -64.909973, -22.146708 ], [ -66.563416, -22.146708 ], [ -66.376648, -21.943046 ], [ -66.275024, -21.830907 ] ] ], [ [ [ -62.847290, -22.034730 ], [ -62.764893, -22.146708 ], [ -64.061279, -22.146708 ], [ -63.987122, -21.991442 ], [ -62.847290, -22.034730 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 16 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.338440, -9.760491 ], [ -65.445557, -10.509417 ], [ -65.321960, -10.895345 ], [ -65.357666, -11.178402 ], [ -65.382385, -11.393879 ], [ -67.719727, -11.393879 ], [ -67.719727, -10.558022 ], [ -67.500000, -10.455402 ], [ -67.175903, -10.304110 ], [ -66.648560, -9.930977 ], [ -65.338440, -9.760491 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ -56.030273, 0.219726 ], [ -56.030273, -11.393879 ], [ -65.382385, -11.393879 ], [ -65.357666, -11.178402 ], [ -65.321960, -10.895345 ], [ -65.445557, -10.509417 ], [ -65.338440, -9.760491 ], [ -66.648560, -9.930977 ], [ -67.175903, -10.304110 ], [ -67.500000, -10.455402 ], [ -67.719727, -10.558022 ], [ -67.719727, 0.219726 ], [ -56.030273, 0.219726 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.719727, 2.767478 ], [ -67.500000, 2.633045 ], [ -67.447815, 2.602864 ], [ -67.181396, 2.251617 ], [ -66.876526, 1.255088 ], [ -67.066040, 1.131518 ], [ -67.261047, 1.721848 ], [ -67.500000, 1.996361 ], [ -67.538452, 2.037534 ], [ -67.719727, 1.848129 ], [ -67.719727, 2.767478 ] ] ], [ [ [ -67.719727, 4.162897 ], [ -67.623596, 3.839591 ], [ -67.500000, 3.713523 ], [ -67.337952, 3.543576 ], [ -67.304993, 3.318760 ], [ -67.500000, 3.126804 ], [ -67.719727, 2.910125 ], [ -67.719727, 4.162897 ] ] ], [ [ [ -67.719727, 5.260538 ], [ -67.719727, 6.263428 ], [ -67.697754, 6.268888 ], [ -67.500000, 6.173324 ], [ -67.343445, 6.096860 ], [ -67.500000, 5.621453 ], [ -67.521973, 5.558582 ], [ -67.719727, 5.260538 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Venezuela", "sov_a3": "VEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Venezuela", "adm0_a3": "VEN", "geou_dif": 0, "geounit": "Venezuela", "gu_a3": "VEN", "su_dif": 0, "subunit": "Venezuela", "su_a3": "VEN", "brk_diff": 0, "name": "Venezuela", "name_long": "Venezuela", "brk_a3": "VEN", "brk_name": "Venezuela", "abbrev": "Ven.", "postal": "VE", "formal_en": "Bolivarian Republic of Venezuela", "formal_fr": "República Bolivariana de Venezuela", "name_sort": "Venezuela, RB", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 26814843, "gdp_md_est": 357400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "VE", "iso_a3": "VEN", "iso_n3": "862", "un_a3": "862", "wb_a2": "VE", "wb_a3": "VEN", "woe_id": -99, "adm0_a3_is": "VEN", "adm0_a3_us": "VEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.883240, 10.717285 ], [ -62.731934, 10.420287 ], [ -62.388611, 9.949914 ], [ -61.589355, 9.874158 ], [ -60.831299, 9.384032 ], [ -60.671997, 8.581021 ], [ -60.150146, 8.605463 ], [ -59.760132, 8.369127 ], [ -60.551147, 7.781751 ], [ -60.639038, 7.416942 ], [ -60.295715, 7.046379 ], [ -60.545654, 6.858259 ], [ -61.160889, 6.697343 ], [ -61.141663, 6.236125 ], [ -61.410828, 5.960290 ], [ -60.735168, 5.200365 ], [ -60.603333, 4.918569 ], [ -60.968628, 4.538094 ], [ -62.086487, 4.162897 ], [ -62.806091, 4.009480 ], [ -63.094482, 3.771078 ], [ -63.890991, 4.023179 ], [ -64.629822, 4.149201 ], [ -64.816589, 4.058796 ], [ -64.368896, 3.798484 ], [ -64.410095, 3.126804 ], [ -64.270020, 2.498597 ], [ -63.424072, 2.413532 ], [ -63.369141, 2.202216 ], [ -64.083252, 1.916757 ], [ -64.201355, 1.493971 ], [ -64.613342, 1.329226 ], [ -65.354919, 1.095819 ], [ -65.549927, 0.790990 ], [ -66.327209, 0.725078 ], [ -66.876526, 1.255088 ], [ -67.181396, 2.251617 ], [ -67.447815, 2.602864 ], [ -67.500000, 2.633045 ], [ -67.719727, 2.767478 ], [ -67.719727, 2.910125 ], [ -67.500000, 3.126804 ], [ -67.304993, 3.318760 ], [ -67.337952, 3.543576 ], [ -67.500000, 3.713523 ], [ -67.623596, 3.839591 ], [ -67.719727, 4.162897 ], [ -67.719727, 5.260538 ], [ -67.521973, 5.558582 ], [ -67.500000, 5.621453 ], [ -67.343445, 6.096860 ], [ -67.500000, 6.173324 ], [ -67.697754, 6.268888 ], [ -67.719727, 6.263428 ], [ -67.719727, 10.552622 ], [ -67.500000, 10.549922 ], [ -67.296753, 10.547221 ], [ -66.228333, 10.649811 ], [ -65.657043, 10.201407 ], [ -64.890747, 10.079741 ], [ -64.330444, 10.390572 ], [ -64.319458, 10.641713 ], [ -63.080750, 10.703792 ], [ -61.883240, 10.717285 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Trinidad and Tobago", "sov_a3": "TTO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Trinidad and Tobago", "adm0_a3": "TTO", "geou_dif": 0, "geounit": "Trinidad and Tobago", "gu_a3": "TTO", "su_dif": 0, "subunit": "Trinidad and Tobago", "su_a3": "TTO", "brk_diff": 0, "name": "Trinidad and Tobago", "name_long": "Trinidad and Tobago", "brk_a3": "TTO", "brk_name": "Trinidad and Tobago", "abbrev": "Tr.T.", "postal": "TT", "formal_en": "Republic of Trinidad and Tobago", "name_sort": "Trinidad and Tobago", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 1310000, "gdp_md_est": 29010, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TT", "iso_a3": "TTO", "iso_n3": "780", "un_a3": "780", "wb_a2": "TT", "wb_a3": "TTO", "woe_id": -99, "adm0_a3_is": "TTO", "adm0_a3_us": "TTO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 19, "long_len": 19, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.105957, 10.892648 ], [ -60.897217, 10.857584 ], [ -60.935669, 10.112190 ], [ -61.770630, 10.001310 ], [ -61.951904, 10.090558 ], [ -61.660767, 10.366257 ], [ -61.682739, 10.760461 ], [ -61.105957, 10.892648 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Guyana", "sov_a3": "GUY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guyana", "adm0_a3": "GUY", "geou_dif": 0, "geounit": "Guyana", "gu_a3": "GUY", "su_dif": 0, "subunit": "Guyana", "su_a3": "GUY", "brk_diff": 0, "name": "Guyana", "name_long": "Guyana", "brk_a3": "GUY", "brk_name": "Guyana", "abbrev": "Guy.", "postal": "GY", "formal_en": "Co-operative Republic of Guyana", "name_sort": "Guyana", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 772298, "gdp_md_est": 2966, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GY", "iso_a3": "GUY", "iso_n3": "328", "un_a3": "328", "wb_a2": "GY", "wb_a3": "GUY", "woe_id": -99, "adm0_a3_is": "GUY", "adm0_a3_us": "GUY", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.760132, 8.369127 ], [ -59.103699, 7.999397 ], [ -58.482971, 7.348847 ], [ -58.455505, 6.833716 ], [ -58.079224, 6.809171 ], [ -57.543640, 6.323488 ], [ -57.148132, 5.973949 ], [ -57.307434, 5.074529 ], [ -57.914429, 4.814575 ], [ -57.862244, 4.579163 ], [ -58.046265, 4.061536 ], [ -57.604065, 3.335212 ], [ -57.282715, 3.335212 ], [ -57.150879, 2.770221 ], [ -56.541138, 1.900286 ], [ -56.782837, 1.864600 ], [ -57.337646, 1.949697 ], [ -57.661743, 1.683413 ], [ -58.114929, 1.507700 ], [ -58.430786, 1.466515 ], [ -58.540649, 1.268817 ], [ -59.032288, 1.318243 ], [ -59.647522, 1.787735 ], [ -59.718933, 2.251617 ], [ -59.977112, 2.756504 ], [ -59.817810, 3.606625 ], [ -59.540405, 3.960161 ], [ -59.768372, 4.425829 ], [ -60.111694, 4.576425 ], [ -59.982605, 5.014339 ], [ -60.216064, 5.246863 ], [ -60.735168, 5.200365 ], [ -61.410828, 5.960290 ], [ -61.141663, 6.236125 ], [ -61.160889, 6.697343 ], [ -60.545654, 6.858259 ], [ -60.295715, 7.046379 ], [ -60.639038, 7.416942 ], [ -60.551147, 7.781751 ], [ -59.760132, 8.369127 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Suriname", "sov_a3": "SUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Suriname", "adm0_a3": "SUR", "geou_dif": 0, "geounit": "Suriname", "gu_a3": "SUR", "su_dif": 0, "subunit": "Suriname", "su_a3": "SUR", "brk_diff": 0, "name": "Suriname", "name_long": "Suriname", "brk_a3": "SUR", "brk_name": "Suriname", "abbrev": "Sur.", "postal": "SR", "formal_en": "Republic of Suriname", "name_sort": "Suriname", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 481267, "gdp_md_est": 4254, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "SR", "iso_a3": "SUR", "iso_n3": "740", "un_a3": "740", "wb_a2": "SR", "wb_a3": "SUR", "woe_id": -99, "adm0_a3_is": "SUR", "adm0_a3_us": "SUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.148132, 5.973949 ], [ -56.250000, 5.823687 ], [ -56.030273, 5.788164 ], [ -56.030273, 2.347670 ], [ -56.074219, 2.221428 ], [ -56.030273, 2.172026 ], [ -56.030273, 1.823423 ], [ -56.250000, 1.856365 ], [ -56.541138, 1.900286 ], [ -57.150879, 2.770221 ], [ -57.282715, 3.335212 ], [ -57.604065, 3.335212 ], [ -58.046265, 4.061536 ], [ -57.862244, 4.579163 ], [ -57.914429, 4.814575 ], [ -57.307434, 5.074529 ], [ -57.148132, 5.973949 ] ] ] } } +, +{ "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": [ [ [ [ -56.030273, 1.823423 ], [ -56.030273, -0.219726 ], [ -67.719727, -0.219726 ], [ -67.719727, 1.848129 ], [ -67.538452, 2.037534 ], [ -67.500000, 1.996361 ], [ -67.261047, 1.721848 ], [ -67.066040, 1.131518 ], [ -66.876526, 1.255088 ], [ -66.327209, 0.725078 ], [ -65.549927, 0.790990 ], [ -65.354919, 1.095819 ], [ -64.613342, 1.329226 ], [ -64.201355, 1.493971 ], [ -64.083252, 1.916757 ], [ -63.369141, 2.202216 ], [ -63.424072, 2.413532 ], [ -64.270020, 2.498597 ], [ -64.410095, 3.126804 ], [ -64.368896, 3.798484 ], [ -64.816589, 4.058796 ], [ -64.629822, 4.149201 ], [ -63.890991, 4.023179 ], [ -63.094482, 3.771078 ], [ -62.806091, 4.009480 ], [ -62.086487, 4.162897 ], [ -60.968628, 4.538094 ], [ -60.603333, 4.918569 ], [ -60.735168, 5.200365 ], [ -60.216064, 5.246863 ], [ -59.982605, 5.014339 ], [ -60.111694, 4.576425 ], [ -59.768372, 4.425829 ], [ -59.540405, 3.960161 ], [ -59.817810, 3.606625 ], [ -59.977112, 2.756504 ], [ -59.718933, 2.251617 ], [ -59.647522, 1.787735 ], [ -59.032288, 1.318243 ], [ -58.540649, 1.268817 ], [ -58.430786, 1.466515 ], [ -58.114929, 1.507700 ], [ -57.661743, 1.683413 ], [ -57.337646, 1.949697 ], [ -56.782837, 1.864600 ], [ -56.541138, 1.900286 ], [ -56.250000, 1.856365 ], [ -56.030273, 1.823423 ] ] ], [ [ [ -56.030273, 2.172026 ], [ -56.074219, 2.221428 ], [ -56.030273, 2.347670 ], [ -56.030273, 2.172026 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "Puerto Rico", "adm0_a3": "PRI", "geou_dif": 0, "geounit": "Puerto Rico", "gu_a3": "PRI", "su_dif": 0, "subunit": "Puerto Rico", "su_a3": "PRI", "brk_diff": 0, "name": "Puerto Rico", "name_long": "Puerto Rico", "brk_a3": "PRI", "brk_name": "Puerto Rico", "abbrev": "P.R.", "postal": "PR", "formal_en": "Commonwealth of Puerto Rico", "note_adm0": "Commonwealth of U.S.A.", "name_sort": "Puerto Rico", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 3971020, "gdp_md_est": 70230, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "PR", "iso_a3": "PRI", "iso_n3": "630", "un_a3": "630", "wb_a2": "PR", "wb_a3": "PRI", "woe_id": -99, "adm0_a3_is": "PRI", "adm0_a3_us": "PRI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.101746, 18.521283 ], [ -66.283264, 18.516075 ], [ -65.772400, 18.427502 ], [ -65.591125, 18.229351 ], [ -65.849304, 17.976121 ], [ -66.601868, 17.983958 ], [ -67.186890, 17.947381 ], [ -67.244568, 18.375379 ], [ -67.101746, 18.521283 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -64.756165, 49.066668 ], [ -64.495239, 48.922499 ], [ -64.171143, 48.743512 ], [ -65.115967, 48.072574 ], [ -64.800110, 46.993368 ], [ -64.473267, 46.238752 ], [ -63.174133, 45.740693 ], [ -61.523438, 45.884273 ], [ -60.518188, 47.008353 ], [ -60.449524, 46.284326 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.256531, 44.670606 ], [ -64.248047, 44.266838 ], [ -65.365906, 43.546557 ], [ -66.123962, 43.620171 ], [ -66.162415, 44.465151 ], [ -64.426575, 45.292279 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.500000, 45.452424 ], [ -67.719727, 45.642848 ], [ -67.719727, 48.672826 ], [ -67.088013, 48.922499 ], [ -66.722717, 49.066668 ], [ -64.756165, 49.066668 ] ] ], [ [ [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.417032 ], [ -62.012329, 46.443535 ], [ -62.503967, 46.035109 ], [ -62.874756, 45.968334 ], [ -64.143677, 46.394306 ], [ -64.393616, 46.728566 ], [ -64.017334, 47.036439 ] ] ], [ [ [ -56.030273, 49.066668 ], [ -56.030273, 47.578379 ], [ -56.250000, 47.633933 ], [ -57.326660, 47.572820 ], [ -59.268494, 47.604311 ], [ -59.419556, 47.899772 ], [ -58.798828, 48.252112 ], [ -59.232788, 48.523881 ], [ -58.677979, 48.922499 ], [ -58.474731, 49.066668 ], [ -56.030273, 49.066668 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.719727, 45.642848 ], [ -67.500000, 45.452424 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.811070 ], [ -67.500000, 44.568948 ], [ -67.719727, 44.469071 ], [ -67.719727, 45.642848 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -56.030273, 51.570241 ], [ -56.030273, 50.811142 ], [ -56.134644, 50.687758 ], [ -56.250000, 50.536126 ], [ -56.796570, 49.813176 ], [ -56.250000, 50.095917 ], [ -56.145630, 50.150506 ], [ -56.030273, 50.115295 ], [ -56.030273, 48.777913 ], [ -58.878479, 48.777913 ], [ -58.677979, 48.922499 ], [ -58.392334, 49.126017 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.287688 ], [ -56.250000, 51.483093 ], [ -56.030273, 51.570241 ] ] ], [ [ [ -64.495239, 48.922499 ], [ -64.237061, 48.777913 ], [ -67.453308, 48.777913 ], [ -67.088013, 48.922499 ], [ -66.555176, 49.133206 ], [ -65.058289, 49.233741 ], [ -64.495239, 48.922499 ] ] ], [ [ [ -64.173889, 49.958288 ], [ -62.861023, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.806335, 49.106242 ], [ -62.295227, 49.088258 ], [ -63.591614, 49.402037 ], [ -64.519958, 49.873398 ], [ -64.173889, 49.958288 ] ] ], [ [ [ -60.762634, 55.899956 ], [ -60.471497, 55.776573 ], [ -59.570618, 55.205521 ], [ -57.977600, 54.946076 ], [ -57.334900, 54.627748 ], [ -56.939392, 53.781181 ], [ -56.250000, 53.664171 ], [ -56.159363, 53.647894 ], [ -56.030273, 53.528881 ], [ -56.030273, 51.967962 ], [ -56.250000, 51.854442 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.723938, 50.081820 ], [ -63.863525, 50.291094 ], [ -65.365906, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.512727 ], [ -67.500000, 49.421694 ], [ -67.719727, 49.344809 ], [ -67.719727, 55.899956 ], [ -60.762634, 55.899956 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -64.585876, 60.336464 ], [ -63.805847, 59.443679 ], [ -62.503967, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.800842, 56.340901 ], [ -60.471497, 55.776573 ], [ -60.276489, 55.652798 ], [ -67.719727, 55.652798 ], [ -67.719727, 58.270510 ], [ -67.651062, 58.212685 ], [ -67.500000, 58.270510 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.871019 ], [ -64.585876, 60.336464 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -67.719727, 66.292269 ], [ -67.719727, 66.600676 ], [ -61.971130, 66.600676 ], [ -62.163391, 66.160511 ], [ -63.918457, 64.999100 ], [ -65.148926, 65.426299 ], [ -66.722717, 66.388161 ], [ -67.500000, 66.313242 ], [ -67.719727, 66.292269 ] ] ], [ [ [ -67.719727, 63.100972 ], [ -67.500000, 62.965212 ], [ -67.370911, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.167908, 61.931197 ], [ -67.500000, 62.128289 ], [ -67.719727, 62.160372 ], [ -67.719727, 63.100972 ] ] ], [ [ [ -67.719727, 65.459402 ], [ -67.500000, 65.337055 ], [ -67.090759, 65.109148 ], [ -65.733948, 64.648584 ], [ -65.321960, 64.383879 ], [ -64.671021, 63.393982 ], [ -65.014343, 62.675404 ], [ -66.277771, 62.945231 ], [ -67.500000, 63.339808 ], [ -67.719727, 63.409968 ], [ -67.719727, 65.459402 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -67.719727, 68.422424 ], [ -67.500000, 68.360725 ], [ -66.450806, 68.068176 ], [ -64.863281, 67.847595 ], [ -63.426819, 66.928984 ], [ -61.853027, 66.862162 ], [ -62.009583, 66.513260 ], [ -62.048035, 66.425537 ], [ -67.719727, 66.425537 ], [ -67.719727, 68.422424 ] ] ], [ [ [ -67.719727, 68.996817 ], [ -67.719727, 69.932185 ], [ -67.500000, 69.717155 ], [ -66.969910, 69.186969 ], [ -67.500000, 69.052858 ], [ -67.719727, 68.996817 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.030273, 74.079925 ], [ -56.030273, 73.573508 ], [ -56.120911, 73.650226 ], [ -56.250000, 73.768104 ], [ -56.532898, 74.019543 ], [ -56.598816, 74.079925 ], [ -56.030273, 74.079925 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.030273, 76.890745 ], [ -56.030273, 73.958939 ], [ -56.464233, 73.958939 ], [ -56.532898, 74.019543 ], [ -57.323914, 74.710796 ], [ -58.598328, 75.099165 ], [ -58.587341, 75.517778 ], [ -61.270752, 76.102775 ], [ -63.393860, 76.175811 ], [ -66.066284, 76.135063 ], [ -67.500000, 76.092216 ], [ -67.719727, 76.085613 ], [ -67.719727, 76.890745 ], [ -56.030273, 76.890745 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.030273, 79.212538 ], [ -56.030273, 76.790701 ], [ -67.719727, 76.790701 ], [ -67.719727, 77.351070 ], [ -67.500000, 77.357083 ], [ -66.766663, 77.376305 ], [ -67.500000, 77.421246 ], [ -67.719727, 77.434996 ], [ -67.719727, 79.133601 ], [ -67.500000, 79.162559 ], [ -67.431335, 79.171335 ], [ -67.118225, 79.212538 ], [ -56.030273, 79.212538 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -66.975403, 81.127169 ], [ -67.107239, 81.093214 ], [ -67.500000, 80.990143 ], [ -67.719727, 80.932322 ], [ -67.719727, 81.127169 ], [ -66.975403, 81.127169 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.030273, 81.127169 ], [ -56.030273, 79.129976 ], [ -67.719727, 79.129976 ], [ -67.719727, 79.133601 ], [ -67.431335, 79.171335 ], [ -65.711975, 79.394526 ], [ -65.324707, 79.758237 ], [ -67.500000, 80.049036 ], [ -67.719727, 80.077946 ], [ -67.719727, 80.258040 ], [ -67.500000, 80.358376 ], [ -67.153931, 80.516245 ], [ -64.308472, 81.093214 ], [ -64.135437, 81.127169 ], [ -56.030273, 81.127169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -62.355652, 82.704241 ], [ -62.168884, 82.676285 ], [ -61.850281, 82.628867 ], [ -61.894226, 82.362009 ], [ -64.335938, 81.927816 ], [ -66.755676, 81.725560 ], [ -67.500000, 81.540928 ], [ -67.659302, 81.501646 ], [ -67.500000, 81.502052 ], [ -65.481262, 81.506921 ], [ -67.107239, 81.093214 ], [ -67.239075, 81.059130 ], [ -67.719727, 81.059130 ], [ -67.719727, 82.704241 ], [ -62.355652, 82.704241 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.030273, 82.194472 ], [ -56.030273, 81.059130 ], [ -64.481506, 81.059130 ], [ -64.308472, 81.093214 ], [ -63.690491, 81.214014 ], [ -62.234802, 81.321178 ], [ -62.652283, 81.770499 ], [ -60.284729, 82.033949 ], [ -57.208557, 82.190741 ], [ -56.250000, 82.193726 ], [ -56.030273, 82.194472 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -67.719727, 83.083674 ], [ -67.500000, 83.077387 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900043 ], [ -62.168884, 82.676285 ], [ -61.982117, 82.648222 ], [ -67.719727, 82.648222 ], [ -67.719727, 83.083674 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -44.780273, -83.956169 ], [ -44.780273, -85.070048 ], [ -56.469727, -85.070048 ], [ -56.469727, -83.956169 ], [ -44.780273, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -44.780273, -82.648222 ], [ -44.780273, -84.002262 ], [ -56.469727, -84.002262 ], [ -56.469727, -82.770559 ], [ -56.250000, -82.731397 ], [ -55.942383, -82.676285 ], [ -55.785828, -82.648222 ], [ -44.780273, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -47.274170, -81.709338 ], [ -45.000000, -81.836674 ], [ -44.826965, -81.846419 ], [ -44.780273, -81.851870 ], [ -44.780273, -82.704241 ], [ -56.098938, -82.704241 ], [ -55.942383, -82.676285 ], [ -55.365601, -82.571561 ], [ -53.621521, -82.258000 ], [ -51.545105, -82.003440 ], [ -49.762573, -81.729116 ], [ -47.274170, -81.709338 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -44.780273, -79.129976 ], [ -44.780273, -80.319196 ], [ -44.881897, -80.339497 ], [ -45.000000, -80.358376 ], [ -46.507874, -80.594217 ], [ -48.386536, -80.829156 ], [ -50.482178, -81.025345 ], [ -52.852478, -80.966455 ], [ -54.165344, -80.633187 ], [ -53.989563, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.350342, -79.171335 ], [ -50.300903, -79.129976 ], [ -44.780273, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -46.664429, -77.831431 ], [ -45.156555, -78.046640 ], [ -45.000000, -78.101694 ], [ -44.780273, -78.179025 ], [ -44.780273, -79.212538 ], [ -50.408020, -79.212538 ], [ -50.350342, -79.171335 ], [ -49.916382, -78.811044 ], [ -49.309387, -78.458173 ], [ -48.661194, -78.046640 ], [ -48.153076, -78.046640 ], [ -46.664429, -77.831431 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 19 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -51.564331, -31.765537 ], [ -51.830750, -31.952162 ], [ -52.256470, -32.245329 ], [ -52.712402, -33.195029 ], [ -53.374329, -33.767732 ], [ -53.651733, -33.201924 ], [ -53.212280, -32.727220 ], [ -53.789062, -32.045333 ], [ -53.923645, -31.952162 ], [ -54.190063, -31.765537 ], [ -51.564331, -31.765537 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Uruguay", "sov_a3": "URY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uruguay", "adm0_a3": "URY", "geou_dif": 0, "geounit": "Uruguay", "gu_a3": "URY", "su_dif": 0, "subunit": "Uruguay", "su_a3": "URY", "brk_diff": 0, "name": "Uruguay", "name_long": "Uruguay", "brk_a3": "URY", "brk_name": "Uruguay", "abbrev": "Ury.", "postal": "UY", "formal_en": "Oriental Republic of Uruguay", "name_sort": "Uruguay", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 3494382, "gdp_md_est": 43160, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "UY", "iso_a3": "URY", "iso_n3": "858", "un_a3": "858", "wb_a2": "UY", "wb_a3": "URY", "woe_id": -99, "adm0_a3_is": "URY", "adm0_a3_us": "URY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.190063, -31.765537 ], [ -53.923645, -31.952162 ], [ -53.789062, -32.045333 ], [ -53.212280, -32.727220 ], [ -53.651733, -33.201924 ], [ -53.374329, -33.767732 ], [ -53.808289, -34.395579 ], [ -54.937134, -34.951242 ], [ -55.675964, -34.750640 ], [ -56.217041, -34.858890 ], [ -56.250000, -34.843113 ], [ -56.469727, -34.741612 ], [ -56.469727, -31.765537 ], [ -54.190063, -31.765537 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 18 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -44.780273, -21.739091 ], [ -44.780273, -23.435529 ], [ -45.000000, -23.574057 ], [ -45.354309, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.650452, -24.883945 ], [ -48.496399, -25.876523 ], [ -48.641968, -26.622908 ], [ -48.477173, -27.174026 ], [ -48.663940, -28.185823 ], [ -48.889160, -28.673721 ], [ -49.589539, -29.224096 ], [ -50.699158, -30.982319 ], [ -51.578064, -31.777213 ], [ -51.830750, -31.952162 ], [ -52.102661, -32.138409 ], [ -53.712158, -32.138409 ], [ -53.789062, -32.045333 ], [ -53.923645, -31.952162 ], [ -54.574585, -31.494262 ], [ -55.601807, -30.852721 ], [ -55.975342, -30.881012 ], [ -56.250000, -30.668628 ], [ -56.469727, -30.500751 ], [ -56.469727, -29.034559 ], [ -56.291199, -28.851891 ], [ -56.250000, -28.815800 ], [ -55.162354, -27.880356 ], [ -54.492188, -27.474161 ], [ -53.648987, -26.922070 ], [ -53.629761, -26.123384 ], [ -54.132385, -25.547398 ], [ -54.626770, -25.738055 ], [ -54.429016, -25.160201 ], [ -54.294434, -24.569606 ], [ -54.294434, -24.018871 ], [ -54.654236, -23.838113 ], [ -55.030518, -23.998799 ], [ -55.401306, -23.956136 ], [ -55.519409, -23.571540 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.355156 ], [ -56.250000, -22.174688 ], [ -56.469727, -22.085640 ], [ -56.469727, -21.739091 ], [ -44.780273, -21.739091 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Paraguay", "sov_a3": "PRY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Paraguay", "adm0_a3": "PRY", "geou_dif": 0, "geounit": "Paraguay", "gu_a3": "PRY", "su_dif": 0, "subunit": "Paraguay", "su_a3": "PRY", "brk_diff": 0, "name": "Paraguay", "name_long": "Paraguay", "brk_a3": "PRY", "brk_name": "Paraguay", "abbrev": "Para.", "postal": "PY", "formal_en": "Republic of Paraguay", "name_sort": "Paraguay", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 2, "pop_est": 6995655, "gdp_md_est": 28890, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PY", "iso_a3": "PRY", "iso_n3": "600", "un_a3": "600", "wb_a2": "PY", "wb_a3": "PRY", "woe_id": -99, "adm0_a3_is": "PRY", "adm0_a3_us": "PRY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.469727, -22.085640 ], [ -56.250000, -22.174688 ], [ -55.799561, -22.355156 ], [ -55.612793, -22.654572 ], [ -55.519409, -23.571540 ], [ -55.401306, -23.956136 ], [ -55.030518, -23.998799 ], [ -54.654236, -23.838113 ], [ -54.294434, -24.018871 ], [ -54.294434, -24.569606 ], [ -54.429016, -25.160201 ], [ -54.626770, -25.738055 ], [ -54.788818, -26.620452 ], [ -55.697937, -27.386401 ], [ -56.250000, -27.498527 ], [ -56.469727, -27.544806 ], [ -56.469727, -22.085640 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.132385, -25.547398 ], [ -53.629761, -26.123384 ], [ -53.648987, -26.922070 ], [ -54.492188, -27.474161 ], [ -55.162354, -27.880356 ], [ -56.250000, -28.815800 ], [ -56.291199, -28.851891 ], [ -56.469727, -29.034559 ], [ -56.469727, -27.544806 ], [ -56.250000, -27.498527 ], [ -55.697937, -27.386401 ], [ -54.788818, -26.620452 ], [ -54.626770, -25.738055 ], [ -54.132385, -25.547398 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Uruguay", "sov_a3": "URY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uruguay", "adm0_a3": "URY", "geou_dif": 0, "geounit": "Uruguay", "gu_a3": "URY", "su_dif": 0, "subunit": "Uruguay", "su_a3": "URY", "brk_diff": 0, "name": "Uruguay", "name_long": "Uruguay", "brk_a3": "URY", "brk_name": "Uruguay", "abbrev": "Ury.", "postal": "UY", "formal_en": "Oriental Republic of Uruguay", "name_sort": "Uruguay", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 3494382, "gdp_md_est": 43160, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "UY", "iso_a3": "URY", "iso_n3": "858", "un_a3": "858", "wb_a2": "UY", "wb_a3": "URY", "woe_id": -99, "adm0_a3_is": "URY", "adm0_a3_us": "URY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.469727, -30.500751 ], [ -56.250000, -30.668628 ], [ -55.975342, -30.881012 ], [ -55.601807, -30.852721 ], [ -54.574585, -31.494262 ], [ -53.923645, -31.952162 ], [ -53.789062, -32.045333 ], [ -53.712158, -32.138409 ], [ -56.469727, -32.138409 ], [ -56.469727, -30.500751 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 17 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -44.780273, -10.962764 ], [ -44.780273, -22.146708 ], [ -56.324158, -22.146708 ], [ -56.469727, -22.085640 ], [ -56.469727, -10.962764 ], [ -44.780273, -10.962764 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Paraguay", "sov_a3": "PRY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Paraguay", "adm0_a3": "PRY", "geou_dif": 0, "geounit": "Paraguay", "gu_a3": "PRY", "su_dif": 0, "subunit": "Paraguay", "su_a3": "PRY", "brk_diff": 0, "name": "Paraguay", "name_long": "Paraguay", "brk_a3": "PRY", "brk_name": "Paraguay", "abbrev": "Para.", "postal": "PY", "formal_en": "Republic of Paraguay", "name_sort": "Paraguay", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 2, "pop_est": 6995655, "gdp_md_est": 28890, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PY", "iso_a3": "PRY", "iso_n3": "600", "un_a3": "600", "wb_a2": "PY", "wb_a3": "PRY", "woe_id": -99, "adm0_a3_is": "PRY", "adm0_a3_us": "PRY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.469727, -22.085640 ], [ -56.324158, -22.146708 ], [ -56.469727, -22.146708 ], [ -56.469727, -22.085640 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 16 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -50.696411, 0.219726 ], [ -50.471191, 0.000000 ], [ -50.388794, -0.076904 ], [ -48.622742, -0.233459 ], [ -48.587036, -1.235866 ], [ -47.826233, -0.579519 ], [ -46.568298, -0.939289 ], [ -45.000000, -1.515936 ], [ -44.906616, -1.551629 ], [ -44.780273, -1.699885 ], [ -44.780273, -11.393879 ], [ -56.469727, -11.393879 ], [ -56.469727, 0.219726 ], [ -50.696411, 0.219726 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Suriname", "sov_a3": "SUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Suriname", "adm0_a3": "SUR", "geou_dif": 0, "geounit": "Suriname", "gu_a3": "SUR", "su_dif": 0, "subunit": "Suriname", "su_a3": "SUR", "brk_diff": 0, "name": "Suriname", "name_long": "Suriname", "brk_a3": "SUR", "brk_name": "Suriname", "abbrev": "Sur.", "postal": "SR", "formal_en": "Republic of Suriname", "name_sort": "Suriname", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 481267, "gdp_md_est": 4254, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "SR", "iso_a3": "SUR", "iso_n3": "740", "un_a3": "740", "wb_a2": "SR", "wb_a3": "SUR", "woe_id": -99, "adm0_a3_is": "SUR", "adm0_a3_us": "SUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.033264, 6.025848 ], [ -53.959351, 5.758105 ], [ -54.481201, 4.899414 ], [ -54.401550, 4.214943 ], [ -54.008789, 3.620330 ], [ -54.181824, 3.189879 ], [ -54.269714, 2.734557 ], [ -54.525146, 2.311994 ], [ -55.099182, 2.526037 ], [ -55.571594, 2.421764 ], [ -55.975342, 2.512317 ], [ -56.074219, 2.221428 ], [ -55.906677, 2.023810 ], [ -55.997314, 1.817932 ], [ -56.250000, 1.856365 ], [ -56.469727, 1.889306 ], [ -56.469727, 5.861939 ], [ -56.250000, 5.823687 ], [ -55.950623, 5.774501 ], [ -55.843506, 5.954827 ], [ -55.033264, 6.025848 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.959351, 5.758105 ], [ -52.882690, 5.410945 ], [ -51.825256, 4.568211 ], [ -51.660461, 4.157419 ], [ -52.250977, 3.241982 ], [ -52.558594, 2.506829 ], [ -52.940369, 2.125367 ], [ -53.421021, 2.054003 ], [ -53.555603, 2.336693 ], [ -53.780823, 2.377857 ], [ -54.088440, 2.106154 ], [ -54.525146, 2.311994 ], [ -54.272461, 2.740044 ], [ -54.184570, 3.195364 ], [ -54.011536, 3.623071 ], [ -54.401550, 4.214943 ], [ -54.481201, 4.899414 ], [ -53.959351, 5.758105 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ -51.319885, 4.203986 ], [ -51.069946, 3.650482 ], [ -50.509644, 1.903031 ], [ -49.976807, 1.738320 ], [ -49.949341, 1.046390 ], [ -50.701904, 0.225219 ], [ -50.471191, 0.000000 ], [ -50.388794, -0.076904 ], [ -48.798523, -0.219726 ], [ -56.469727, -0.219726 ], [ -56.469727, 1.889306 ], [ -56.250000, 1.856365 ], [ -55.997314, 1.817932 ], [ -55.906677, 2.023810 ], [ -56.074219, 2.221428 ], [ -55.975342, 2.512317 ], [ -55.571594, 2.421764 ], [ -55.099182, 2.526037 ], [ -54.525146, 2.311994 ], [ -54.088440, 2.106154 ], [ -53.780823, 2.377857 ], [ -53.555603, 2.336693 ], [ -53.421021, 2.054003 ], [ -52.940369, 2.125367 ], [ -52.558594, 2.506829 ], [ -52.250977, 3.241982 ], [ -51.660461, 4.157419 ], [ -51.319885, 4.203986 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -53.555603, 49.066668 ], [ -53.616028, 48.922499 ], [ -53.786316, 48.518424 ], [ -53.088684, 48.689147 ], [ -52.959595, 48.158757 ], [ -52.649231, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.522644, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.962097, 47.626529 ], [ -54.242249, 47.754098 ], [ -55.401306, 46.886477 ], [ -56.000061, 46.920255 ], [ -55.291443, 47.390912 ], [ -56.250000, 47.633933 ], [ -56.252747, 47.633933 ], [ -56.469727, 47.620975 ], [ -56.469727, 49.066668 ], [ -53.555603, 49.066668 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -56.469727, 49.983020 ], [ -56.250000, 50.095917 ], [ -56.145630, 50.150506 ], [ -55.472717, 49.937080 ], [ -55.824280, 49.587568 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.478699, 49.249879 ], [ -53.616028, 48.922499 ], [ -53.676453, 48.777913 ], [ -56.469727, 48.777913 ], [ -56.469727, 49.983020 ] ] ], [ [ [ -56.469727, 53.701585 ], [ -56.250000, 53.664171 ], [ -56.159363, 53.647894 ], [ -55.758362, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.250000, 51.854442 ], [ -56.409302, 51.771239 ], [ -56.469727, 51.742337 ], [ -56.469727, 53.701585 ] ] ], [ [ [ -56.469727, 50.245448 ], [ -56.469727, 51.395778 ], [ -56.250000, 51.483093 ], [ -55.873718, 51.633362 ], [ -55.409546, 51.589016 ], [ -55.601807, 51.318597 ], [ -56.134644, 50.687758 ], [ -56.250000, 50.536126 ], [ -56.469727, 50.245448 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.780273, 61.710706 ], [ -44.780273, 60.037417 ], [ -44.788513, 60.037417 ], [ -45.000000, 60.156543 ], [ -46.266174, 60.854276 ], [ -48.265686, 60.859626 ], [ -49.235229, 61.407236 ], [ -49.369812, 61.606396 ], [ -49.438477, 61.710706 ], [ -44.780273, 61.710706 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.780273, 66.600676 ], [ -44.780273, 61.501734 ], [ -49.298401, 61.501734 ], [ -49.369812, 61.606396 ], [ -49.902649, 62.384004 ], [ -51.635742, 63.627965 ], [ -52.141113, 64.279184 ], [ -52.278442, 65.177265 ], [ -53.662720, 66.100494 ], [ -53.462219, 66.513260 ], [ -53.418274, 66.600676 ], [ -44.780273, 66.600676 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.780273, 70.685421 ], [ -44.780273, 66.425537 ], [ -53.506165, 66.425537 ], [ -53.462219, 66.513260 ], [ -53.302917, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.357686 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.147898 ], [ -50.872192, 69.929358 ], [ -52.014771, 69.575772 ], [ -52.558594, 69.426691 ], [ -53.456726, 69.284342 ], [ -54.684448, 69.610249 ], [ -54.750366, 70.290043 ], [ -54.514160, 70.612614 ], [ -54.461975, 70.685421 ], [ -52.275696, 70.685421 ], [ -51.718140, 70.612614 ], [ -51.391296, 70.570631 ], [ -51.506653, 70.612614 ], [ -51.701660, 70.685421 ], [ -44.780273, 70.685421 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.780273, 74.079925 ], [ -44.780273, 70.539543 ], [ -54.569092, 70.539543 ], [ -54.514160, 70.612614 ], [ -54.360352, 70.822129 ], [ -53.432007, 70.836560 ], [ -51.718140, 70.612614 ], [ -51.391296, 70.570631 ], [ -51.506653, 70.612614 ], [ -53.110657, 71.205460 ], [ -54.006042, 71.547525 ], [ -55.000305, 71.407048 ], [ -55.835266, 71.655020 ], [ -54.720154, 72.586583 ], [ -55.327148, 72.959120 ], [ -56.120911, 73.650226 ], [ -56.250000, 73.768104 ], [ -56.469727, 73.965768 ], [ -56.469727, 74.079925 ], [ -44.780273, 74.079925 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.780273, 76.890745 ], [ -44.780273, 73.958939 ], [ -56.464233, 73.958939 ], [ -56.469727, 73.965768 ], [ -56.469727, 76.890745 ], [ -44.780273, 76.890745 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.780273, 79.212538 ], [ -44.780273, 76.790701 ], [ -56.469727, 76.790701 ], [ -56.469727, 79.212538 ], [ -44.780273, 79.212538 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.780273, 81.127169 ], [ -44.780273, 79.129976 ], [ -56.469727, 79.129976 ], [ -56.469727, 81.127169 ], [ -44.780273, 81.127169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -44.780273, 81.701809 ], [ -44.780273, 81.059130 ], [ -56.469727, 81.059130 ], [ -56.469727, 82.192980 ], [ -56.250000, 82.193726 ], [ -54.135132, 82.199693 ], [ -53.044739, 81.888381 ], [ -50.391541, 82.439013 ], [ -48.004761, 82.065101 ], [ -46.601257, 81.986228 ], [ -45.000000, 81.736620 ], [ -44.780273, 81.701809 ] ] ], [ [ [ -44.780273, 81.720815 ], [ -45.000000, 81.772072 ], [ -46.903381, 82.200065 ], [ -46.766052, 82.628162 ], [ -46.502380, 82.676285 ], [ -46.351318, 82.704241 ], [ -44.780273, 82.704241 ], [ -44.780273, 81.720815 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.780273, 82.987093 ], [ -44.780273, 82.648222 ], [ -46.656189, 82.648222 ], [ -46.502380, 82.676285 ], [ -45.000000, 82.948087 ], [ -44.780273, 82.987093 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -33.530273, -83.956169 ], [ -33.530273, -85.070048 ], [ -45.219727, -85.070048 ], [ -45.219727, -83.956169 ], [ -33.530273, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -33.530273, -82.648222 ], [ -33.530273, -84.002262 ], [ -45.219727, -84.002262 ], [ -45.219727, -82.648222 ], [ -33.530273, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -33.530273, -81.059130 ], [ -33.530273, -82.704241 ], [ -45.219727, -82.704241 ], [ -45.219727, -81.824576 ], [ -45.000000, -81.836674 ], [ -44.826965, -81.846419 ], [ -42.810974, -82.081766 ], [ -42.162781, -81.650517 ], [ -40.773010, -81.356748 ], [ -38.246155, -81.336913 ], [ -36.268616, -81.121660 ], [ -36.015930, -81.093214 ], [ -35.716553, -81.059130 ], [ -33.530273, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ -33.530273, -79.444453 ], [ -33.681335, -79.456019 ], [ -35.642395, -79.456019 ], [ -35.851135, -79.171335 ], [ -35.881348, -79.129976 ], [ -33.530273, -79.129976 ], [ -33.530273, -79.444453 ] ] ], [ [ [ -43.478394, -79.129976 ], [ -43.467407, -79.171335 ], [ -43.374023, -79.516161 ], [ -43.335571, -80.025752 ], [ -44.881897, -80.339497 ], [ -45.000000, -80.358376 ], [ -45.219727, -80.393274 ], [ -45.219727, -79.129976 ], [ -43.478394, -79.129976 ] ] ], [ [ [ -33.530273, -80.849707 ], [ -33.530273, -81.127169 ], [ -36.318054, -81.127169 ], [ -36.015930, -81.093214 ], [ -34.387207, -80.905879 ], [ -33.750000, -80.864109 ], [ -33.530273, -80.849707 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ -45.219727, -78.037535 ], [ -45.156555, -78.046640 ], [ -45.000000, -78.101694 ], [ -43.923340, -78.477940 ], [ -43.492126, -79.085342 ], [ -43.467407, -79.171335 ], [ -43.456421, -79.212538 ], [ -45.219727, -79.212538 ], [ -45.219727, -78.037535 ] ] ], [ [ [ -33.530273, -77.837219 ], [ -33.530273, -79.212538 ], [ -35.820923, -79.212538 ], [ -35.851135, -79.171335 ], [ -35.914307, -79.083781 ], [ -35.779724, -78.338868 ], [ -35.329285, -78.123193 ], [ -33.898315, -77.888038 ], [ -33.750000, -77.867851 ], [ -33.530273, -77.837219 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 18 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -40.913086, -21.739091 ], [ -40.946045, -21.935403 ], [ -40.957031, -21.943046 ], [ -41.756287, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.965980 ], [ -44.648438, -23.349821 ], [ -45.000000, -23.574057 ], [ -45.219727, -23.712439 ], [ -45.219727, -21.739091 ], [ -40.913086, -21.739091 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 17 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -36.968994, -10.962764 ], [ -37.048645, -11.038255 ], [ -37.125549, -11.178402 ], [ -37.685852, -12.170911 ], [ -38.424683, -13.036669 ], [ -38.674622, -13.055399 ], [ -38.954773, -13.792739 ], [ -38.883362, -15.665354 ], [ -39.163513, -17.206394 ], [ -39.267883, -17.866361 ], [ -39.583740, -18.260653 ], [ -39.762268, -19.598607 ], [ -40.775757, -20.902437 ], [ -40.946045, -21.935403 ], [ -40.957031, -21.943046 ], [ -41.336060, -22.146708 ], [ -45.219727, -22.146708 ], [ -45.219727, -10.962764 ], [ -36.968994, -10.962764 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 16 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -45.219727, -1.433566 ], [ -45.000000, -1.515936 ], [ -44.906616, -1.551629 ], [ -44.417725, -2.136346 ], [ -44.582520, -2.690661 ], [ -43.420715, -2.380601 ], [ -41.473389, -2.910125 ], [ -39.979248, -2.871722 ], [ -38.501587, -3.699819 ], [ -37.224426, -4.820049 ], [ -36.455383, -5.107358 ], [ -35.598450, -5.148392 ], [ -35.235901, -5.462896 ], [ -34.898071, -6.735531 ], [ -34.730530, -7.340675 ], [ -35.128784, -8.996313 ], [ -35.639648, -9.646785 ], [ -37.048645, -11.038255 ], [ -37.125549, -11.178402 ], [ -37.246399, -11.393879 ], [ -45.219727, -11.393879 ], [ -45.219727, -1.433566 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -42.522583, 61.710706 ], [ -42.580261, 61.606396 ], [ -43.379517, 60.099088 ], [ -44.788513, 60.037417 ], [ -45.000000, 60.156543 ], [ -45.219727, 60.279324 ], [ -45.219727, 61.710706 ], [ -42.522583, 61.710706 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -34.450378, 66.600676 ], [ -34.719543, 66.513260 ], [ -36.353760, 65.978916 ], [ -37.045898, 65.938634 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.459402 ], [ -40.671387, 64.840765 ], [ -40.685120, 64.139369 ], [ -41.190491, 63.483636 ], [ -42.821960, 62.682968 ], [ -42.418213, 61.901459 ], [ -42.580261, 61.606396 ], [ -42.635193, 61.501734 ], [ -45.219727, 61.501734 ], [ -45.219727, 66.600676 ], [ -34.450378, 66.600676 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.530273, 70.685421 ], [ -33.530273, 67.195518 ], [ -33.750000, 67.028876 ], [ -34.203186, 66.680174 ], [ -34.719543, 66.513260 ], [ -34.991455, 66.425537 ], [ -45.219727, 66.425537 ], [ -45.219727, 70.685421 ], [ -33.530273, 70.685421 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.530273, 74.079925 ], [ -33.530273, 70.539543 ], [ -45.219727, 70.539543 ], [ -45.219727, 74.079925 ], [ -33.530273, 74.079925 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.530273, 76.890745 ], [ -33.530273, 73.958939 ], [ -45.219727, 73.958939 ], [ -45.219727, 76.890745 ], [ -33.530273, 76.890745 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.530273, 79.212538 ], [ -33.530273, 76.790701 ], [ -45.219727, 76.790701 ], [ -45.219727, 79.212538 ], [ -33.530273, 79.212538 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.530273, 81.127169 ], [ -33.530273, 79.129976 ], [ -45.219727, 79.129976 ], [ -45.219727, 81.127169 ], [ -33.530273, 81.127169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.530273, 82.704241 ], [ -33.530273, 81.059130 ], [ -45.219727, 81.059130 ], [ -45.219727, 81.771285 ], [ -45.000000, 81.736620 ], [ -44.524841, 81.660880 ], [ -45.000000, 81.772072 ], [ -45.219727, 81.822622 ], [ -45.219727, 82.704241 ], [ -33.530273, 82.704241 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.090332, 83.645406 ], [ -33.750000, 83.624396 ], [ -33.530273, 83.621040 ], [ -33.530273, 82.648222 ], [ -45.219727, 82.648222 ], [ -45.219727, 82.908864 ], [ -45.000000, 82.948087 ], [ -43.406982, 83.225420 ], [ -39.899597, 83.180235 ], [ -38.622437, 83.549234 ], [ -35.090332, 83.645406 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 13, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -22.280273, -83.956169 ], [ -22.280273, -85.070048 ], [ -33.969727, -85.070048 ], [ -33.969727, -83.956169 ], [ -22.280273, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 13, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -22.280273, -82.648222 ], [ -22.280273, -84.002262 ], [ -33.969727, -84.002262 ], [ -33.969727, -82.648222 ], [ -22.280273, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 13, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -22.280273, -81.059130 ], [ -22.280273, -82.704241 ], [ -33.969727, -82.704241 ], [ -33.969727, -81.059130 ], [ -22.280273, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 13, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -22.280273, -79.129976 ], [ -22.280273, -81.127169 ], [ -33.969727, -81.127169 ], [ -33.969727, -80.878489 ], [ -33.750000, -80.864109 ], [ -32.310791, -80.768990 ], [ -30.099792, -80.592421 ], [ -28.550720, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.687805, -79.632462 ], [ -29.687805, -79.259730 ], [ -31.626892, -79.299070 ], [ -33.681335, -79.456019 ], [ -33.969727, -79.456019 ], [ -33.969727, -79.129976 ], [ -22.280273, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 13, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -22.280273, -76.790701 ], [ -22.280273, -79.212538 ], [ -33.969727, -79.212538 ], [ -33.969727, -77.900134 ], [ -33.898315, -77.888038 ], [ -33.750000, -77.867851 ], [ -32.214661, -77.652997 ], [ -31.000671, -77.359487 ], [ -29.783936, -77.065265 ], [ -29.264832, -76.840816 ], [ -29.149475, -76.790701 ], [ -22.280273, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 13, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -22.280273, -76.077024 ], [ -22.280273, -76.890745 ], [ -29.380188, -76.890745 ], [ -29.264832, -76.840816 ], [ -28.883057, -76.673455 ], [ -27.512512, -76.496952 ], [ -26.161194, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241939 ], [ -22.500000, -76.108711 ], [ -22.458801, -76.105414 ], [ -22.280273, -76.077024 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 13, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iceland", "sov_a3": "ISL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iceland", "adm0_a3": "ISL", "geou_dif": 0, "geounit": "Iceland", "gu_a3": "ISL", "su_dif": 0, "subunit": "Iceland", "su_a3": "ISL", "brk_diff": 0, "name": "Iceland", "name_long": "Iceland", "brk_a3": "ISL", "brk_name": "Iceland", "abbrev": "Iceland", "postal": "IS", "formal_en": "Republic of Iceland", "name_sort": "Iceland", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 306694, "gdp_md_est": 12710, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IS", "iso_a3": "ISL", "iso_n3": "352", "un_a3": "352", "wb_a2": "IS", "wb_a3": "ISL", "woe_id": -99, "adm0_a3_is": "ISL", "adm0_a3_us": "ISL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.280273, 65.385147 ], [ -22.500000, 65.409160 ], [ -24.326477, 65.611818 ], [ -23.650818, 66.263540 ], [ -22.500000, 66.374956 ], [ -22.280273, 66.396961 ], [ -22.280273, 65.385147 ] ] ], [ [ [ -22.280273, 64.178876 ], [ -22.280273, 63.905980 ], [ -22.500000, 63.931338 ], [ -22.763672, 63.960291 ], [ -22.500000, 64.079404 ], [ -22.280273, 64.178876 ] ] ], [ [ [ -22.280273, 65.075603 ], [ -22.280273, 64.516552 ], [ -22.500000, 64.566139 ], [ -23.955688, 64.892093 ], [ -22.500000, 65.051285 ], [ -22.280273, 65.075603 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 13, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -25.350952, 70.685421 ], [ -25.513000, 70.612614 ], [ -26.364441, 70.226957 ], [ -23.727722, 70.184172 ], [ -22.500000, 70.135698 ], [ -22.351685, 70.130098 ], [ -22.500000, 70.081498 ], [ -25.029602, 69.259067 ], [ -27.748718, 68.470856 ], [ -30.673828, 68.125553 ], [ -31.777954, 68.121459 ], [ -32.813416, 67.735476 ], [ -33.750000, 67.028876 ], [ -33.969727, 66.860003 ], [ -33.969727, 70.685421 ], [ -25.350952, 70.685421 ] ] ], [ [ [ -22.280273, 70.685421 ], [ -22.280273, 70.607143 ], [ -22.500000, 70.583418 ], [ -23.538208, 70.471717 ], [ -23.818359, 70.612614 ], [ -23.963928, 70.685421 ], [ -22.280273, 70.685421 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 13, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.280273, 74.079925 ], [ -22.280273, 73.309725 ], [ -22.500000, 73.308936 ], [ -23.568420, 73.307358 ], [ -22.500000, 72.732297 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.184325 ], [ -22.500000, 72.227132 ], [ -24.279785, 72.598087 ], [ -24.793396, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.500000, 71.642914 ], [ -22.280273, 71.538830 ], [ -22.280273, 70.607143 ], [ -22.906494, 70.539543 ], [ -23.672791, 70.539543 ], [ -23.818359, 70.612614 ], [ -24.307251, 70.857286 ], [ -25.545959, 71.431552 ], [ -25.202637, 70.752534 ], [ -25.513000, 70.612614 ], [ -25.675049, 70.539543 ], [ -33.969727, 70.539543 ], [ -33.969727, 74.079925 ], [ -22.280273, 74.079925 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 13, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.280273, 76.890745 ], [ -22.280273, 73.958939 ], [ -33.969727, 73.958939 ], [ -33.969727, 76.890745 ], [ -22.280273, 76.890745 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 13, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.280273, 79.212538 ], [ -22.280273, 76.790701 ], [ -33.969727, 76.790701 ], [ -33.969727, 79.212538 ], [ -22.280273, 79.212538 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 13, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.280273, 81.127169 ], [ -22.280273, 79.129976 ], [ -33.969727, 79.129976 ], [ -33.969727, 81.127169 ], [ -22.280273, 81.127169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 13, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.280273, 82.704241 ], [ -22.280273, 82.429248 ], [ -22.692261, 82.341904 ], [ -26.518250, 82.297857 ], [ -31.901550, 82.200065 ], [ -31.398926, 82.021759 ], [ -27.858582, 82.131931 ], [ -24.845581, 81.786995 ], [ -22.903748, 82.093487 ], [ -22.500000, 81.921257 ], [ -22.280273, 81.826138 ], [ -22.280273, 81.627353 ], [ -22.500000, 81.512599 ], [ -23.170166, 81.152974 ], [ -22.500000, 81.252109 ], [ -22.280273, 81.284631 ], [ -22.280273, 81.059130 ], [ -33.969727, 81.059130 ], [ -33.969727, 82.704241 ], [ -22.280273, 82.704241 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 13, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.969727, 83.627750 ], [ -33.750000, 83.624396 ], [ -27.100525, 83.519852 ], [ -22.500000, 82.945388 ], [ -22.280273, 82.916997 ], [ -22.280273, 82.648222 ], [ -33.969727, 82.648222 ], [ -33.969727, 83.627750 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -11.030273, -83.956169 ], [ -11.030273, -85.070048 ], [ -22.719727, -85.070048 ], [ -22.719727, -83.956169 ], [ -11.030273, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -11.030273, -82.648222 ], [ -11.030273, -84.002262 ], [ -22.719727, -84.002262 ], [ -22.719727, -82.648222 ], [ -11.030273, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -11.030273, -81.059130 ], [ -11.030273, -82.704241 ], [ -22.719727, -82.704241 ], [ -22.719727, -81.059130 ], [ -11.030273, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -11.030273, -79.129976 ], [ -11.030273, -81.127169 ], [ -22.719727, -81.127169 ], [ -22.719727, -79.129976 ], [ -11.030273, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -11.030273, -76.790701 ], [ -11.030273, -79.212538 ], [ -22.719727, -79.212538 ], [ -22.719727, -76.790701 ], [ -11.030273, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -11.030273, -73.958939 ], [ -11.030273, -76.890745 ], [ -22.719727, -76.890745 ], [ -22.719727, -76.129796 ], [ -22.500000, -76.108711 ], [ -22.458801, -76.105414 ], [ -21.225586, -75.908835 ], [ -20.011597, -75.674236 ], [ -18.915710, -75.438577 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.792423 ], [ -15.702209, -74.497881 ], [ -15.408325, -74.106272 ], [ -15.803833, -74.019543 ], [ -16.075745, -73.958939 ], [ -11.030273, -73.958939 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -11.030273, -71.549264 ], [ -11.030273, -74.079925 ], [ -15.529175, -74.079925 ], [ -15.803833, -74.019543 ], [ -16.465759, -73.871428 ], [ -16.114197, -73.459729 ], [ -15.449524, -73.146459 ], [ -14.411316, -72.950264 ], [ -13.312683, -72.715168 ], [ -12.293701, -72.401520 ], [ -11.510925, -72.009552 ], [ -11.250000, -71.761051 ], [ -11.030273, -71.549264 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Guinea Bissau", "sov_a3": "GNB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea Bissau", "adm0_a3": "GNB", "geou_dif": 0, "geounit": "Guinea Bissau", "gu_a3": "GNB", "su_dif": 0, "subunit": "Guinea Bissau", "su_a3": "GNB", "brk_diff": 0, "name": "Guinea-Bissau", "name_long": "Guinea-Bissau", "brk_a3": "GNB", "brk_name": "Guinea-Bissau", "abbrev": "GnB.", "postal": "GW", "formal_en": "Republic of Guinea-Bissau", "name_sort": "Guinea-Bissau", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 1533964, "gdp_md_est": 904.2, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GW", "iso_a3": "GNB", "iso_n3": "624", "un_a3": "624", "wb_a2": "GW", "wb_a3": "GNB", "woe_id": -99, "adm0_a3_is": "GNB", "adm0_a3_us": "GNB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 13, "long_len": 13, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.809570, 11.393879 ], [ -15.004578, 11.178402 ], [ -15.130920, 11.040951 ], [ -15.306702, 11.178402 ], [ -15.584106, 11.393879 ], [ -14.809570, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guinea", "sov_a3": "GIN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea", "adm0_a3": "GIN", "geou_dif": 0, "geounit": "Guinea", "gu_a3": "GIN", "su_dif": 0, "subunit": "Guinea", "su_a3": "GIN", "brk_diff": 0, "name": "Guinea", "name_long": "Guinea", "brk_a3": "GIN", "brk_name": "Guinea", "abbrev": "Gin.", "postal": "GN", "formal_en": "Republic of Guinea", "name_sort": "Guinea", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 10057975, "gdp_md_est": 10600, "pop_year": -99, "lastcensus": 1996, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GN", "iso_a3": "GIN", "iso_n3": "324", "un_a3": "324", "wb_a2": "GN", "wb_a3": "GIN", "woe_id": -99, "adm0_a3_is": "GIN", "adm0_a3_us": "GIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, 11.393879 ], [ -11.030273, 9.936388 ], [ -11.118164, 10.047289 ], [ -11.917419, 10.047289 ], [ -12.150879, 9.860628 ], [ -12.428284, 9.836273 ], [ -12.598572, 9.622414 ], [ -12.713928, 9.343382 ], [ -13.246765, 8.904067 ], [ -13.686218, 9.495117 ], [ -14.076233, 9.887687 ], [ -14.331665, 10.017539 ], [ -14.581604, 10.214922 ], [ -14.694214, 10.657909 ], [ -14.839783, 10.879162 ], [ -15.130920, 11.040951 ], [ -15.004578, 11.178402 ], [ -14.809570, 11.393879 ], [ -11.030273, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Sierra Leone", "sov_a3": "SLE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sierra Leone", "adm0_a3": "SLE", "geou_dif": 0, "geounit": "Sierra Leone", "gu_a3": "SLE", "su_dif": 0, "subunit": "Sierra Leone", "su_a3": "SLE", "brk_diff": 0, "name": "Sierra Leone", "name_long": "Sierra Leone", "brk_a3": "SLE", "brk_name": "Sierra Leone", "abbrev": "S.L.", "postal": "SL", "formal_en": "Republic of Sierra Leone", "name_sort": "Sierra Leone", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 6440053, "gdp_md_est": 4285, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SL", "iso_a3": "SLE", "iso_n3": "694", "un_a3": "694", "wb_a2": "SL", "wb_a3": "SLE", "woe_id": -99, "adm0_a3_is": "SLE", "adm0_a3_us": "SLE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.118164, 10.047289 ], [ -11.030273, 9.936388 ], [ -11.030273, 7.539487 ], [ -11.148376, 7.397877 ], [ -11.200562, 7.106344 ], [ -11.250000, 7.040927 ], [ -11.439514, 6.787353 ], [ -11.708679, 6.860985 ], [ -12.428284, 7.264394 ], [ -12.950134, 7.800800 ], [ -13.125916, 8.165274 ], [ -13.246765, 8.904067 ], [ -12.713928, 9.343382 ], [ -12.598572, 9.622414 ], [ -12.428284, 9.836273 ], [ -12.150879, 9.860628 ], [ -11.917419, 10.047289 ], [ -11.118164, 10.047289 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Liberia", "sov_a3": "LBR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Liberia", "adm0_a3": "LBR", "geou_dif": 0, "geounit": "Liberia", "gu_a3": "LBR", "su_dif": 0, "subunit": "Liberia", "su_a3": "LBR", "brk_diff": 0, "name": "Liberia", "name_long": "Liberia", "brk_a3": "LBR", "brk_name": "Liberia", "abbrev": "Liberia", "postal": "LR", "formal_en": "Republic of Liberia", "name_sort": "Liberia", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 3441790, "gdp_md_est": 1526, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "LR", "iso_a3": "LBR", "iso_n3": "430", "un_a3": "430", "wb_a2": "LR", "wb_a3": "LBR", "woe_id": -99, "adm0_a3_is": "LBR", "adm0_a3_us": "LBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, 7.539487 ], [ -11.030273, 6.397189 ], [ -11.250000, 6.607316 ], [ -11.439514, 6.787353 ], [ -11.250000, 7.040927 ], [ -11.200562, 7.106344 ], [ -11.148376, 7.397877 ], [ -11.030273, 7.539487 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 7, "sovereignt": "Western Sahara", "sov_a3": "SAH", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Western Sahara", "adm0_a3": "SAH", "geou_dif": 0, "geounit": "Western Sahara", "gu_a3": "SAH", "su_dif": 0, "subunit": "Western Sahara", "su_a3": "SAH", "brk_diff": 1, "name": "W. Sahara", "name_long": "Western Sahara", "brk_a3": "B28", "brk_name": "W. Sahara", "abbrev": "W. Sah.", "postal": "WS", "formal_en": "Sahrawi Arab Democratic Republic", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Morocco", "name_sort": "Western Sahara", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 4, "mapcolor13": 4, "pop_est": -99, "gdp_md_est": -99, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "EH", "iso_a3": "ESH", "iso_n3": "732", "un_a3": "732", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "SAH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 14, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.038025, 22.146708 ], [ -13.010559, 21.943046 ], [ -12.930908, 21.327757 ], [ -16.847534, 21.335432 ], [ -17.064514, 20.999907 ], [ -17.020569, 21.422390 ], [ -14.751892, 21.501630 ], [ -14.631042, 21.861499 ], [ -14.556885, 21.943046 ], [ -14.372864, 22.146708 ], [ -13.038025, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.372864, 22.146708 ], [ -14.556885, 21.943046 ], [ -14.631042, 21.861499 ], [ -14.751892, 21.501630 ], [ -17.020569, 21.422390 ], [ -16.973877, 21.886987 ], [ -16.894226, 21.943046 ], [ -16.605835, 22.146708 ], [ -14.372864, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "name_sort": "Senegal", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.578857, 16.599346 ], [ -14.100952, 16.304323 ], [ -13.436279, 16.040534 ], [ -12.832031, 15.305380 ], [ -12.172852, 14.618136 ], [ -12.126160, 13.995372 ], [ -11.928406, 13.424352 ], [ -11.554871, 13.143678 ], [ -11.469727, 12.755553 ], [ -11.516418, 12.444623 ], [ -11.659241, 12.388294 ], [ -12.205811, 12.466078 ], [ -12.279968, 12.356100 ], [ -12.499695, 12.334636 ], [ -13.219299, 12.576010 ], [ -15.551147, 12.629618 ], [ -15.817566, 12.517028 ], [ -16.149902, 12.549202 ], [ -16.679993, 12.385611 ], [ -16.842041, 13.151702 ], [ -15.932922, 13.130304 ], [ -15.691223, 13.272026 ], [ -15.512695, 13.280046 ], [ -15.141907, 13.509826 ], [ -14.713440, 13.298757 ], [ -14.279480, 13.282719 ], [ -13.845520, 13.507155 ], [ -14.048767, 13.795406 ], [ -14.378357, 13.627303 ], [ -14.688721, 13.632641 ], [ -15.084229, 13.878079 ], [ -15.400085, 13.862080 ], [ -15.625305, 13.624633 ], [ -16.715698, 13.595269 ], [ -17.127686, 14.376155 ], [ -17.627563, 14.729730 ], [ -17.185364, 14.920900 ], [ -16.701965, 15.623037 ], [ -16.465759, 16.135539 ], [ -16.122437, 16.457159 ], [ -15.625305, 16.370215 ], [ -15.136414, 16.588817 ], [ -14.578857, 16.599346 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Gambia", "sov_a3": "GMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gambia", "adm0_a3": "GMB", "geou_dif": 0, "geounit": "Gambia", "gu_a3": "GMB", "su_dif": 0, "subunit": "Gambia", "su_a3": "GMB", "brk_diff": 0, "name": "Gambia", "name_long": "The Gambia", "brk_a3": "GMB", "brk_name": "Gambia", "abbrev": "Gambia", "postal": "GM", "formal_en": "Republic of the Gambia", "name_sort": "Gambia, The", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 1782893, "gdp_md_est": 2272, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GM", "iso_a3": "GMB", "iso_n3": "270", "un_a3": "270", "wb_a2": "GM", "wb_a3": "GMB", "woe_id": -99, "adm0_a3_is": "GMB", "adm0_a3_us": "GMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.084229, 13.878079 ], [ -14.688721, 13.632641 ], [ -14.378357, 13.627303 ], [ -14.048767, 13.795406 ], [ -13.845520, 13.507155 ], [ -14.279480, 13.282719 ], [ -14.713440, 13.298757 ], [ -15.141907, 13.509826 ], [ -15.512695, 13.280046 ], [ -15.691223, 13.272026 ], [ -15.932922, 13.130304 ], [ -16.842041, 13.151702 ], [ -16.715698, 13.595269 ], [ -15.625305, 13.624633 ], [ -15.400085, 13.862080 ], [ -15.084229, 13.878079 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Guinea Bissau", "sov_a3": "GNB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea Bissau", "adm0_a3": "GNB", "geou_dif": 0, "geounit": "Guinea Bissau", "gu_a3": "GNB", "su_dif": 0, "subunit": "Guinea Bissau", "su_a3": "GNB", "brk_diff": 0, "name": "Guinea-Bissau", "name_long": "Guinea-Bissau", "brk_a3": "GNB", "brk_name": "Guinea-Bissau", "abbrev": "GnB.", "postal": "GW", "formal_en": "Republic of Guinea-Bissau", "name_sort": "Guinea-Bissau", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 1533964, "gdp_md_est": 904.2, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GW", "iso_a3": "GNB", "iso_n3": "624", "un_a3": "624", "wb_a2": "GW", "wb_a3": "GNB", "woe_id": -99, "adm0_a3_is": "GNB", "adm0_a3_us": "GNB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 13, "long_len": 13, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.551147, 12.629618 ], [ -13.702698, 12.586732 ], [ -13.719177, 12.248760 ], [ -13.829041, 12.144061 ], [ -13.743896, 11.813588 ], [ -13.903198, 11.679135 ], [ -14.122925, 11.679135 ], [ -14.383850, 11.509631 ], [ -14.685974, 11.528470 ], [ -15.004578, 11.178402 ], [ -15.130920, 11.040951 ], [ -15.306702, 11.178402 ], [ -15.666504, 11.458491 ], [ -16.086731, 11.525779 ], [ -16.317444, 11.808211 ], [ -16.309204, 11.958723 ], [ -16.614075, 12.173595 ], [ -16.679993, 12.385611 ], [ -16.149902, 12.549202 ], [ -15.817566, 12.517028 ], [ -15.551147, 12.629618 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guinea", "sov_a3": "GIN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea", "adm0_a3": "GIN", "geou_dif": 0, "geounit": "Guinea", "gu_a3": "GIN", "su_dif": 0, "subunit": "Guinea", "su_a3": "GIN", "brk_diff": 0, "name": "Guinea", "name_long": "Guinea", "brk_a3": "GIN", "brk_name": "Guinea", "abbrev": "Gin.", "postal": "GN", "formal_en": "Republic of Guinea", "name_sort": "Guinea", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 10057975, "gdp_md_est": 10600, "pop_year": -99, "lastcensus": 1996, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GN", "iso_a3": "GIN", "iso_n3": "324", "un_a3": "324", "wb_a2": "GN", "wb_a3": "GIN", "woe_id": -99, "adm0_a3_is": "GIN", "adm0_a3_us": "GIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.702698, 12.586732 ], [ -13.219299, 12.576010 ], [ -12.499695, 12.334636 ], [ -12.279968, 12.356100 ], [ -12.205811, 12.466078 ], [ -11.659241, 12.388294 ], [ -11.516418, 12.444623 ], [ -11.458740, 12.076924 ], [ -11.299438, 12.079610 ], [ -11.250000, 12.103781 ], [ -11.038513, 12.213865 ], [ -11.030273, 12.211180 ], [ -11.030273, 10.962764 ], [ -14.993591, 10.962764 ], [ -15.130920, 11.040951 ], [ -15.004578, 11.178402 ], [ -14.685974, 11.528470 ], [ -14.383850, 11.509631 ], [ -14.122925, 11.679135 ], [ -13.903198, 11.679135 ], [ -13.743896, 11.813588 ], [ -13.829041, 12.144061 ], [ -13.719177, 12.248760 ], [ -13.702698, 12.586732 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, 22.146708 ], [ -11.030273, 15.284185 ], [ -11.250000, 15.374247 ], [ -11.351624, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.835022, 14.801439 ], [ -12.172852, 14.618136 ], [ -12.832031, 15.305380 ], [ -13.436279, 16.040534 ], [ -14.100952, 16.304323 ], [ -14.578857, 16.599346 ], [ -15.136414, 16.588817 ], [ -15.625305, 16.370215 ], [ -16.122437, 16.457159 ], [ -16.465759, 16.135539 ], [ -16.550903, 16.675662 ], [ -16.270752, 17.167034 ], [ -16.147156, 18.109308 ], [ -16.257019, 19.098458 ], [ -16.377869, 19.596019 ], [ -16.278992, 20.094627 ], [ -16.537170, 20.568510 ], [ -17.064514, 20.999907 ], [ -16.847534, 21.335432 ], [ -12.930908, 21.327757 ], [ -13.010559, 21.943046 ], [ -13.038025, 22.146708 ], [ -11.030273, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.351624, 15.411319 ], [ -11.250000, 15.374247 ], [ -11.030273, 15.284185 ], [ -11.030273, 12.211180 ], [ -11.038513, 12.213865 ], [ -11.250000, 12.103781 ], [ -11.299438, 12.079610 ], [ -11.458740, 12.076924 ], [ -11.516418, 12.444623 ], [ -11.469727, 12.755553 ], [ -11.554871, 13.143678 ], [ -11.928406, 13.424352 ], [ -12.126160, 13.995372 ], [ -12.172852, 14.618136 ], [ -11.835022, 14.801439 ], [ -11.667480, 15.390136 ], [ -11.351624, 15.411319 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 7, "sovereignt": "Western Sahara", "sov_a3": "SAH", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Western Sahara", "adm0_a3": "SAH", "geou_dif": 0, "geounit": "Western Sahara", "gu_a3": "SAH", "su_dif": 0, "subunit": "Western Sahara", "su_a3": "SAH", "brk_diff": 1, "name": "W. Sahara", "name_long": "Western Sahara", "brk_a3": "B28", "brk_name": "W. Sahara", "abbrev": "W. Sah.", "postal": "WS", "formal_en": "Sahrawi Arab Democratic Republic", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Morocco", "name_sort": "Western Sahara", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 4, "mapcolor13": 4, "pop_est": -99, "gdp_md_est": -99, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "EH", "iso_a3": "ESH", "iso_n3": "732", "un_a3": "732", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "SAH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 14, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, 26.931865 ], [ -11.030273, 25.918526 ], [ -11.250000, 25.923467 ], [ -11.969604, 25.935817 ], [ -11.939392, 23.375035 ], [ -12.875977, 23.286765 ], [ -13.120422, 22.773649 ], [ -13.010559, 21.943046 ], [ -12.983093, 21.739091 ], [ -14.672241, 21.739091 ], [ -14.631042, 21.861499 ], [ -14.556885, 21.943046 ], [ -14.221802, 22.311967 ], [ -13.892212, 23.692320 ], [ -12.502441, 24.771772 ], [ -12.032776, 26.032106 ], [ -11.719666, 26.106121 ], [ -11.392822, 26.885330 ], [ -11.250000, 26.902477 ], [ -11.030273, 26.931865 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, 28.721905 ], [ -11.030273, 26.931865 ], [ -11.250000, 26.902477 ], [ -11.392822, 26.885330 ], [ -11.719666, 26.106121 ], [ -12.032776, 26.032106 ], [ -12.502441, 24.771772 ], [ -13.892212, 23.692320 ], [ -14.221802, 22.311967 ], [ -14.556885, 21.943046 ], [ -14.631042, 21.861499 ], [ -14.672241, 21.739091 ], [ -16.990356, 21.739091 ], [ -16.973877, 21.886987 ], [ -16.894226, 21.943046 ], [ -16.589355, 22.159427 ], [ -16.262512, 22.679916 ], [ -16.328430, 23.019076 ], [ -15.985107, 23.725012 ], [ -15.427551, 24.359608 ], [ -15.089722, 24.522137 ], [ -14.826050, 25.105497 ], [ -14.801331, 25.636574 ], [ -14.441528, 26.256473 ], [ -13.774109, 26.620452 ], [ -13.142395, 27.642173 ], [ -12.620544, 28.040471 ], [ -11.689453, 28.149503 ], [ -11.030273, 28.721905 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.969604, 25.935817 ], [ -11.250000, 25.923467 ], [ -11.030273, 25.918526 ], [ -11.030273, 21.739091 ], [ -12.983093, 21.739091 ], [ -13.010559, 21.943046 ], [ -13.120422, 22.773649 ], [ -12.875977, 23.286765 ], [ -11.939392, 23.375035 ], [ -11.969604, 25.935817 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iceland", "sov_a3": "ISL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iceland", "adm0_a3": "ISL", "geou_dif": 0, "geounit": "Iceland", "gu_a3": "ISL", "su_dif": 0, "subunit": "Iceland", "su_a3": "ISL", "brk_diff": 0, "name": "Iceland", "name_long": "Iceland", "brk_a3": "ISL", "brk_name": "Iceland", "abbrev": "Iceland", "postal": "IS", "formal_en": "Republic of Iceland", "name_sort": "Iceland", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 306694, "gdp_md_est": 12710, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IS", "iso_a3": "ISL", "iso_n3": "352", "un_a3": "352", "wb_a2": "IS", "wb_a3": "ISL", "woe_id": -99, "adm0_a3_is": "ISL", "adm0_a3_us": "ISL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.169128, 66.527486 ], [ -15.853271, 66.513260 ], [ -14.510193, 66.456275 ], [ -14.740906, 65.809530 ], [ -13.612061, 65.127638 ], [ -14.911194, 64.364873 ], [ -17.795105, 63.679160 ], [ -18.657532, 63.497122 ], [ -19.973145, 63.643821 ], [ -22.500000, 63.931338 ], [ -22.719727, 63.955467 ], [ -22.719727, 63.980781 ], [ -22.500000, 64.079404 ], [ -21.780396, 64.402872 ], [ -22.500000, 64.566139 ], [ -22.719727, 64.615636 ], [ -22.719727, 65.026945 ], [ -22.500000, 65.051285 ], [ -22.186890, 65.086018 ], [ -22.228088, 65.379427 ], [ -22.500000, 65.409160 ], [ -22.719727, 65.434293 ], [ -22.719727, 66.354035 ], [ -22.500000, 66.374956 ], [ -22.137451, 66.411253 ], [ -20.577393, 65.732884 ], [ -19.058533, 66.276803 ], [ -17.800598, 65.994564 ], [ -16.210327, 66.513260 ], [ -16.169128, 66.527486 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.719727, 70.559664 ], [ -22.719727, 70.685421 ], [ -21.763916, 70.685421 ], [ -21.755676, 70.664516 ], [ -22.228088, 70.612614 ], [ -22.500000, 70.583418 ], [ -22.719727, 70.559664 ] ] ], [ [ [ -22.719727, 70.145029 ], [ -22.500000, 70.135698 ], [ -22.351685, 70.130098 ], [ -22.500000, 70.081498 ], [ -22.719727, 70.011201 ], [ -22.719727, 70.145029 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iceland", "sov_a3": "ISL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iceland", "adm0_a3": "ISL", "geou_dif": 0, "geounit": "Iceland", "gu_a3": "ISL", "su_dif": 0, "subunit": "Iceland", "su_a3": "ISL", "brk_diff": 0, "name": "Iceland", "name_long": "Iceland", "brk_a3": "ISL", "brk_name": "Iceland", "abbrev": "Iceland", "postal": "IS", "formal_en": "Republic of Iceland", "name_sort": "Iceland", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 306694, "gdp_md_est": 12710, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IS", "iso_a3": "ISL", "iso_n3": "352", "un_a3": "352", "wb_a2": "IS", "wb_a3": "ISL", "woe_id": -99, "adm0_a3_is": "ISL", "adm0_a3_us": "ISL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.169128, 66.527486 ], [ -15.853271, 66.513260 ], [ -14.510193, 66.456275 ], [ -14.521179, 66.425537 ], [ -16.482239, 66.425537 ], [ -16.210327, 66.513260 ], [ -16.169128, 66.527486 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.719727, 73.308936 ], [ -22.719727, 74.079925 ], [ -21.181641, 74.079925 ], [ -21.008606, 74.019543 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.173157, 73.309725 ], [ -22.500000, 73.308936 ], [ -22.719727, 73.308936 ] ] ], [ [ [ -22.719727, 71.745571 ], [ -22.500000, 71.642914 ], [ -22.134705, 71.469124 ], [ -21.755676, 70.664516 ], [ -22.228088, 70.612614 ], [ -22.719727, 70.559664 ], [ -22.719727, 71.745571 ] ] ], [ [ [ -22.719727, 72.852551 ], [ -22.500000, 72.732297 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.184325 ], [ -22.500000, 72.227132 ], [ -22.719727, 72.273185 ], [ -22.719727, 72.852551 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -20.316467, 76.890745 ], [ -20.577393, 76.840816 ], [ -21.681519, 76.628432 ], [ -19.835815, 76.098157 ], [ -19.599609, 75.248861 ], [ -20.670776, 75.156266 ], [ -19.374390, 74.296206 ], [ -21.596375, 74.223935 ], [ -21.008606, 74.019543 ], [ -20.838318, 73.958939 ], [ -22.719727, 73.958939 ], [ -22.719727, 76.890745 ], [ -20.316467, 76.890745 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -19.138184, 79.212538 ], [ -19.190369, 79.171335 ], [ -19.706726, 78.751731 ], [ -19.673767, 77.638894 ], [ -18.473511, 76.985717 ], [ -20.036316, 76.944832 ], [ -20.577393, 76.840816 ], [ -20.841064, 76.790701 ], [ -22.719727, 76.790701 ], [ -22.719727, 79.212538 ], [ -19.138184, 79.212538 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.180847, 81.127169 ], [ -13.378601, 81.093214 ], [ -16.287231, 80.580292 ], [ -16.850281, 80.350092 ], [ -20.047302, 80.177308 ], [ -17.731934, 80.129399 ], [ -18.901978, 79.400085 ], [ -19.190369, 79.171335 ], [ -19.242554, 79.129976 ], [ -22.719727, 79.129976 ], [ -22.719727, 81.127169 ], [ -13.180847, 81.127169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.719727, 81.219886 ], [ -22.500000, 81.252109 ], [ -20.624084, 81.524751 ], [ -15.770874, 81.912760 ], [ -12.771606, 81.719233 ], [ -12.208557, 81.291703 ], [ -13.378601, 81.093214 ], [ -13.576355, 81.059130 ], [ -22.719727, 81.059130 ], [ -22.719727, 81.219886 ] ] ], [ [ [ -22.719727, 82.341538 ], [ -22.719727, 82.704241 ], [ -20.956421, 82.704241 ], [ -21.093750, 82.676285 ], [ -22.500000, 82.382789 ], [ -22.692261, 82.341904 ], [ -22.719727, 82.341538 ] ] ], [ [ [ -22.719727, 82.015657 ], [ -22.500000, 81.921257 ], [ -22.074280, 81.734646 ], [ -22.500000, 81.512599 ], [ -22.719727, 81.395872 ], [ -22.719727, 82.015657 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.719727, 82.974003 ], [ -22.500000, 82.945388 ], [ -20.846558, 82.726878 ], [ -21.093750, 82.676285 ], [ -21.231079, 82.648222 ], [ -22.719727, 82.648222 ], [ -22.719727, 82.974003 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 0.219727, -83.956169 ], [ 0.219727, -85.070048 ], [ -11.469727, -85.070048 ], [ -11.469727, -83.956169 ], [ 0.219727, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 0.219727, -82.648222 ], [ 0.219727, -84.002262 ], [ -11.469727, -84.002262 ], [ -11.469727, -82.648222 ], [ 0.219727, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 0.219727, -81.059130 ], [ 0.219727, -82.704241 ], [ -11.469727, -82.704241 ], [ -11.469727, -81.059130 ], [ 0.219727, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 0.219727, -79.129976 ], [ 0.219727, -81.127169 ], [ -11.469727, -81.127169 ], [ -11.469727, -79.129976 ], [ 0.219727, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 0.219727, -76.790701 ], [ 0.219727, -79.212538 ], [ -11.469727, -79.212538 ], [ -11.469727, -76.790701 ], [ 0.219727, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 0.219727, -73.958939 ], [ 0.219727, -76.890745 ], [ -11.469727, -76.890745 ], [ -11.469727, -73.958939 ], [ 0.219727, -73.958939 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -6.869202, -70.931901 ], [ -5.792542, -71.029464 ], [ -5.537109, -71.401793 ], [ -4.342346, -71.461266 ], [ -3.051453, -71.284936 ], [ -1.796265, -71.167373 ], [ -0.661926, -71.225801 ], [ -0.230713, -71.637723 ], [ 0.000000, -71.568378 ], [ 0.219727, -71.502266 ], [ 0.219727, -74.079925 ], [ -11.469727, -74.079925 ], [ -11.469727, -71.971339 ], [ -11.250000, -71.761051 ], [ -11.022034, -71.539700 ], [ -10.296936, -71.264657 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.418518, -71.696469 ], [ -7.380066, -71.323674 ], [ -6.869202, -70.931901 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guinea", "sov_a3": "GIN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea", "adm0_a3": "GIN", "geou_dif": 0, "geounit": "Guinea", "gu_a3": "GIN", "su_dif": 0, "subunit": "Guinea", "su_a3": "GIN", "brk_diff": 0, "name": "Guinea", "name_long": "Guinea", "brk_a3": "GIN", "brk_name": "Guinea", "abbrev": "Gin.", "postal": "GN", "formal_en": "Republic of Guinea", "name_sort": "Guinea", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 10057975, "gdp_md_est": 10600, "pop_year": -99, "lastcensus": 1996, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GN", "iso_a3": "GIN", "iso_n3": "324", "un_a3": "324", "wb_a2": "GN", "wb_a3": "GIN", "woe_id": -99, "adm0_a3_is": "GIN", "adm0_a3_us": "GIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.377075, 11.393879 ], [ -8.550110, 11.178402 ], [ -8.583069, 11.137982 ], [ -8.621521, 10.811724 ], [ -8.410034, 10.911527 ], [ -8.283691, 10.792839 ], [ -8.335876, 10.495914 ], [ -8.031006, 10.206813 ], [ -8.231506, 10.131117 ], [ -8.311157, 9.790264 ], [ -8.080444, 9.378612 ], [ -7.833252, 8.578305 ], [ -8.204041, 8.456072 ], [ -8.300171, 8.317495 ], [ -8.223267, 8.124491 ], [ -8.280945, 7.689217 ], [ -8.440247, 7.686495 ], [ -8.723145, 7.713713 ], [ -8.926392, 7.310709 ], [ -9.209290, 7.316158 ], [ -9.404297, 7.528596 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.542998 ], [ -10.016785, 8.428904 ], [ -10.231018, 8.407168 ], [ -10.505676, 8.350106 ], [ -10.494690, 8.716789 ], [ -10.656738, 8.977323 ], [ -10.623779, 9.270201 ], [ -10.840759, 9.690106 ], [ -11.118164, 10.047289 ], [ -11.469727, 10.047289 ], [ -11.469727, 11.393879 ], [ -8.377075, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Sierra Leone", "sov_a3": "SLE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sierra Leone", "adm0_a3": "SLE", "geou_dif": 0, "geounit": "Sierra Leone", "gu_a3": "SLE", "su_dif": 0, "subunit": "Sierra Leone", "su_a3": "SLE", "brk_diff": 0, "name": "Sierra Leone", "name_long": "Sierra Leone", "brk_a3": "SLE", "brk_name": "Sierra Leone", "abbrev": "S.L.", "postal": "SL", "formal_en": "Republic of Sierra Leone", "name_sort": "Sierra Leone", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 6440053, "gdp_md_est": 4285, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SL", "iso_a3": "SLE", "iso_n3": "694", "un_a3": "694", "wb_a2": "SL", "wb_a3": "SLE", "woe_id": -99, "adm0_a3_is": "SLE", "adm0_a3_us": "SLE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.118164, 10.047289 ], [ -10.840759, 9.690106 ], [ -10.623779, 9.270201 ], [ -10.656738, 8.977323 ], [ -10.494690, 8.716789 ], [ -10.505676, 8.350106 ], [ -10.231018, 8.407168 ], [ -10.697937, 7.939556 ], [ -11.148376, 7.397877 ], [ -11.200562, 7.106344 ], [ -11.250000, 7.040927 ], [ -11.439514, 6.787353 ], [ -11.469727, 6.795535 ], [ -11.469727, 10.047289 ], [ -11.118164, 10.047289 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.199280, 11.393879 ], [ -5.199280, 11.377724 ], [ -5.325623, 11.178402 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.371660 ], [ -5.817261, 10.223031 ], [ -6.050720, 10.098670 ], [ -6.207275, 10.525619 ], [ -6.495667, 10.412183 ], [ -6.668701, 10.431092 ], [ -6.852722, 10.139228 ], [ -7.624512, 10.147339 ], [ -7.901917, 10.298706 ], [ -8.031006, 10.206813 ], [ -8.335876, 10.495914 ], [ -8.283691, 10.792839 ], [ -8.410034, 10.911527 ], [ -8.621521, 10.811724 ], [ -8.583069, 11.137982 ], [ -8.550110, 11.178402 ], [ -8.377075, 11.393879 ], [ -5.199280, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, 11.393879 ], [ 0.219727, 11.013993 ], [ 0.021973, 11.019384 ], [ 0.000000, 11.024776 ], [ -0.439453, 11.100252 ], [ -0.763550, 10.938495 ], [ -1.205750, 11.011297 ], [ -2.941589, 10.962764 ], [ -2.966309, 10.395975 ], [ -2.828979, 9.644077 ], [ -3.512878, 9.901216 ], [ -3.982544, 9.863334 ], [ -4.331360, 9.611582 ], [ -4.781799, 9.822742 ], [ -4.954834, 10.152746 ], [ -5.405273, 10.371660 ], [ -5.471191, 10.951978 ], [ -5.325623, 11.178402 ], [ -5.199280, 11.377724 ], [ -5.199280, 11.393879 ], [ 0.219727, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Liberia", "sov_a3": "LBR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Liberia", "adm0_a3": "LBR", "geou_dif": 0, "geounit": "Liberia", "gu_a3": "LBR", "su_dif": 0, "subunit": "Liberia", "su_a3": "LBR", "brk_diff": 0, "name": "Liberia", "name_long": "Liberia", "brk_a3": "LBR", "brk_name": "Liberia", "abbrev": "Liberia", "postal": "LR", "formal_en": "Republic of Liberia", "name_sort": "Liberia", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 3441790, "gdp_md_est": 1526, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "LR", "iso_a3": "LBR", "iso_n3": "430", "un_a3": "430", "wb_a2": "LR", "wb_a3": "LBR", "woe_id": -99, "adm0_a3_is": "LBR", "adm0_a3_us": "LBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.755859, 8.542998 ], [ -9.338379, 7.928675 ], [ -9.404297, 7.528596 ], [ -9.209290, 7.316158 ], [ -8.926392, 7.310709 ], [ -8.723145, 7.713713 ], [ -8.440247, 7.686495 ], [ -8.486938, 7.397877 ], [ -8.388062, 6.912794 ], [ -8.605042, 6.468151 ], [ -8.313904, 6.195168 ], [ -7.995300, 6.126900 ], [ -7.572327, 5.708914 ], [ -7.542114, 5.315236 ], [ -7.635498, 5.189423 ], [ -7.712402, 4.365582 ], [ -7.976074, 4.357366 ], [ -9.006042, 4.833733 ], [ -9.915161, 5.594118 ], [ -10.766602, 6.143286 ], [ -11.250000, 6.607316 ], [ -11.439514, 6.787353 ], [ -11.250000, 7.040927 ], [ -11.200562, 7.106344 ], [ -11.148376, 7.397877 ], [ -10.697937, 7.939556 ], [ -10.231018, 8.407168 ], [ -10.016785, 8.428904 ], [ -9.755859, 8.542998 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ivory Coast", "sov_a3": "CIV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ivory Coast", "adm0_a3": "CIV", "geou_dif": 0, "geounit": "Ivory Coast", "gu_a3": "CIV", "su_dif": 0, "subunit": "Ivory Coast", "su_a3": "CIV", "brk_diff": 0, "name": "Côte d'Ivoire", "name_long": "Côte d'Ivoire", "brk_a3": "CIV", "brk_name": "Côte d'Ivoire", "abbrev": "I.C.", "postal": "CI", "formal_en": "Republic of Ivory Coast", "formal_fr": "Republic of Cote D'Ivoire", "name_sort": "Côte d'Ivoire", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 20617068, "gdp_md_est": 33850, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CI", "iso_a3": "CIV", "iso_n3": "384", "un_a3": "384", "wb_a2": "CI", "wb_a3": "CIV", "woe_id": -99, "adm0_a3_is": "CIV", "adm0_a3_us": "CIV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 13, "long_len": 13, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.207275, 10.525619 ], [ -6.050720, 10.098670 ], [ -5.817261, 10.223031 ], [ -5.405273, 10.371660 ], [ -4.954834, 10.152746 ], [ -4.781799, 9.822742 ], [ -4.331360, 9.611582 ], [ -3.982544, 9.863334 ], [ -3.512878, 9.901216 ], [ -2.828979, 9.644077 ], [ -2.562561, 8.219646 ], [ -2.985535, 7.381534 ], [ -3.246460, 6.252507 ], [ -2.812500, 5.389070 ], [ -2.856445, 4.995186 ], [ -3.312378, 4.986977 ], [ -4.010010, 5.181217 ], [ -4.649963, 5.170276 ], [ -5.836487, 4.995186 ], [ -6.531372, 4.705091 ], [ -7.520142, 4.340934 ], [ -7.712402, 4.365582 ], [ -7.635498, 5.189423 ], [ -7.542114, 5.315236 ], [ -7.572327, 5.708914 ], [ -7.995300, 6.126900 ], [ -8.313904, 6.195168 ], [ -8.605042, 6.468151 ], [ -8.388062, 6.912794 ], [ -8.486938, 7.397877 ], [ -8.440247, 7.686495 ], [ -8.280945, 7.689217 ], [ -8.223267, 8.124491 ], [ -8.300171, 8.317495 ], [ -8.204041, 8.456072 ], [ -7.833252, 8.578305 ], [ -8.080444, 9.378612 ], [ -8.311157, 9.790264 ], [ -8.231506, 10.131117 ], [ -8.031006, 10.206813 ], [ -7.901917, 10.298706 ], [ -7.624512, 10.147339 ], [ -6.852722, 10.139228 ], [ -6.668701, 10.431092 ], [ -6.495667, 10.412183 ], [ -6.207275, 10.525619 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.100252 ], [ 0.000000, 11.024776 ], [ 0.021973, 11.019384 ], [ 0.000000, 10.919618 ], [ -0.052185, 10.709189 ], [ 0.000000, 10.647112 ], [ 0.219727, 10.374362 ], [ 0.219727, 5.615986 ], [ 0.000000, 5.533978 ], [ -0.508118, 5.345317 ], [ -1.065674, 5.000658 ], [ -1.966553, 4.710566 ], [ -2.856445, 4.995186 ], [ -2.812500, 5.389070 ], [ -3.246460, 6.252507 ], [ -2.985535, 7.381534 ], [ -2.562561, 8.219646 ], [ -2.828979, 9.644077 ], [ -2.966309, 10.395975 ], [ -2.941589, 10.962764 ], [ -1.205750, 11.011297 ], [ -0.763550, 10.938495 ], [ -0.439453, 11.100252 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.019384 ], [ 0.219727, 11.013993 ], [ 0.219727, 10.374362 ], [ 0.000000, 10.647112 ], [ -0.052185, 10.709189 ], [ 0.000000, 10.919618 ], [ 0.021973, 11.019384 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guinea", "sov_a3": "GIN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea", "adm0_a3": "GIN", "geou_dif": 0, "geounit": "Guinea", "gu_a3": "GIN", "su_dif": 0, "subunit": "Guinea", "su_a3": "GIN", "brk_diff": 0, "name": "Guinea", "name_long": "Guinea", "brk_a3": "GIN", "brk_name": "Guinea", "abbrev": "Gin.", "postal": "GN", "formal_en": "Republic of Guinea", "name_sort": "Guinea", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 10057975, "gdp_md_est": 10600, "pop_year": -99, "lastcensus": 1996, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GN", "iso_a3": "GIN", "iso_n3": "324", "un_a3": "324", "wb_a2": "GN", "wb_a3": "GIN", "woe_id": -99, "adm0_a3_is": "GIN", "adm0_a3_us": "GIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.330139, 12.334636 ], [ -9.129639, 12.310486 ], [ -8.907166, 12.090353 ], [ -8.786316, 11.813588 ], [ -8.377075, 11.393879 ], [ -8.550110, 11.178402 ], [ -8.583069, 11.137982 ], [ -8.602295, 10.962764 ], [ -11.469727, 10.962764 ], [ -11.469727, 12.162856 ], [ -11.458740, 12.076924 ], [ -11.299438, 12.079610 ], [ -11.250000, 12.103781 ], [ -11.038513, 12.213865 ], [ -10.870972, 12.178965 ], [ -10.593567, 11.926478 ], [ -10.167847, 11.845847 ], [ -9.893188, 12.060809 ], [ -9.569092, 12.195073 ], [ -9.330139, 12.334636 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.138611, 22.146708 ], [ -6.116638, 21.943046 ], [ -5.973816, 20.643066 ], [ -5.490417, 16.325411 ], [ -5.317383, 16.204125 ], [ -5.539856, 15.503972 ], [ -9.552612, 15.488092 ], [ -9.700928, 15.265638 ], [ -10.088196, 15.331870 ], [ -10.651245, 15.133113 ], [ -11.250000, 15.374247 ], [ -11.351624, 15.411319 ], [ -11.469727, 15.403376 ], [ -11.469727, 22.146708 ], [ -6.138611, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.546570, 22.146708 ], [ -0.230713, 21.943046 ], [ 0.000000, 21.795208 ], [ 0.219727, 21.652323 ], [ 0.219727, 14.928862 ], [ 0.000000, 14.928862 ], [ -0.266418, 14.926208 ], [ -0.516357, 15.117204 ], [ -1.068420, 14.973973 ], [ -2.002258, 14.559659 ], [ -2.194519, 14.248411 ], [ -2.969055, 13.800741 ], [ -3.106384, 13.541871 ], [ -3.523865, 13.338848 ], [ -4.007263, 13.475106 ], [ -4.281921, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.221252, 11.714099 ], [ -5.199280, 11.377724 ], [ -5.325623, 11.178402 ], [ -5.465698, 10.962764 ], [ -8.602295, 10.962764 ], [ -8.583069, 11.137982 ], [ -8.550110, 11.178402 ], [ -8.377075, 11.393879 ], [ -8.786316, 11.813588 ], [ -8.907166, 12.090353 ], [ -9.129639, 12.310486 ], [ -9.330139, 12.334636 ], [ -9.569092, 12.195073 ], [ -9.893188, 12.060809 ], [ -10.167847, 11.845847 ], [ -10.593567, 11.926478 ], [ -10.870972, 12.178965 ], [ -11.038513, 12.213865 ], [ -11.250000, 12.103781 ], [ -11.299438, 12.079610 ], [ -11.458740, 12.076924 ], [ -11.469727, 12.162856 ], [ -11.469727, 15.403376 ], [ -11.351624, 15.411319 ], [ -11.250000, 15.374247 ], [ -10.651245, 15.133113 ], [ -10.088196, 15.331870 ], [ -9.700928, 15.265638 ], [ -9.552612, 15.488092 ], [ -5.539856, 15.503972 ], [ -5.317383, 16.204125 ], [ -5.490417, 16.325411 ], [ -5.973816, 20.643066 ], [ -6.116638, 21.943046 ], [ -6.138611, 22.146708 ], [ -0.546570, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.516357, 15.117204 ], [ -0.266418, 14.926208 ], [ 0.000000, 14.928862 ], [ 0.219727, 14.928862 ], [ 0.219727, 11.013993 ], [ 0.021973, 11.019384 ], [ -0.439453, 11.100252 ], [ -0.711365, 10.962764 ], [ -0.920105, 10.962764 ], [ -1.205750, 11.011297 ], [ -2.938843, 10.962764 ], [ -5.465698, 10.962764 ], [ -5.325623, 11.178402 ], [ -5.199280, 11.377724 ], [ -5.221252, 11.714099 ], [ -4.427490, 12.543840 ], [ -4.281921, 13.229251 ], [ -4.007263, 13.475106 ], [ -3.523865, 13.338848 ], [ -3.106384, 13.541871 ], [ -2.969055, 13.800741 ], [ -2.194519, 14.248411 ], [ -2.002258, 14.559659 ], [ -1.068420, 14.973973 ], [ -0.516357, 15.117204 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -1.205750, 11.011297 ], [ -0.920105, 10.962764 ], [ -2.938843, 10.962764 ], [ -1.205750, 11.011297 ] ] ], [ [ [ 0.021973, 11.019384 ], [ 0.008240, 10.962764 ], [ -0.711365, 10.962764 ], [ -0.439453, 11.100252 ], [ 0.021973, 11.019384 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, 22.146708 ], [ 0.219727, 21.652323 ], [ 0.000000, 21.795208 ], [ -0.230713, 21.943046 ], [ -0.546570, 22.146708 ], [ 0.219727, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.019384 ], [ 0.219727, 11.013993 ], [ 0.219727, 10.962764 ], [ 0.008240, 10.962764 ], [ 0.021973, 11.019384 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 7, "sovereignt": "Western Sahara", "sov_a3": "SAH", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Western Sahara", "adm0_a3": "SAH", "geou_dif": 0, "geounit": "Western Sahara", "gu_a3": "SAH", "su_dif": 0, "subunit": "Western Sahara", "su_a3": "SAH", "brk_diff": 1, "name": "W. Sahara", "name_long": "Western Sahara", "brk_a3": "B28", "brk_name": "W. Sahara", "abbrev": "W. Sah.", "postal": "WS", "formal_en": "Sahrawi Arab Democratic Republic", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Morocco", "name_sort": "Western Sahara", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 4, "mapcolor13": 4, "pop_est": -99, "gdp_md_est": -99, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "EH", "iso_a3": "ESH", "iso_n3": "732", "un_a3": "732", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "SAH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 14, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.668213, 27.656771 ], [ -8.665466, 27.591066 ], [ -8.684692, 27.396155 ], [ -8.687439, 25.881466 ], [ -11.250000, 25.923467 ], [ -11.469727, 25.925937 ], [ -11.469727, 26.701453 ], [ -11.392822, 26.885330 ], [ -11.250000, 26.902477 ], [ -10.552368, 26.993066 ], [ -10.189819, 26.863281 ], [ -9.736633, 26.863281 ], [ -9.415283, 27.090918 ], [ -8.797302, 27.122702 ], [ -8.819275, 27.656771 ], [ -8.668213, 27.656771 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.276917, 32.138409 ], [ -2.617493, 32.096536 ], [ -2.793274, 31.952162 ], [ -3.070679, 31.725831 ], [ -3.650208, 31.639352 ], [ -3.691406, 30.897511 ], [ -4.861450, 30.503117 ], [ -5.243225, 30.002517 ], [ -6.061707, 29.733377 ], [ -7.061462, 29.580623 ], [ -8.676453, 28.842268 ], [ -8.668213, 27.656771 ], [ -8.819275, 27.656771 ], [ -8.797302, 27.122702 ], [ -9.415283, 27.090918 ], [ -9.736633, 26.863281 ], [ -10.189819, 26.863281 ], [ -10.552368, 26.993066 ], [ -11.250000, 26.902477 ], [ -11.392822, 26.885330 ], [ -11.469727, 26.701453 ], [ -11.469727, 28.340648 ], [ -11.250000, 28.531449 ], [ -10.901184, 28.832644 ], [ -10.401306, 29.099377 ], [ -9.566345, 29.935895 ], [ -9.816284, 31.179910 ], [ -9.472961, 31.952162 ], [ -9.437256, 32.038348 ], [ -9.409790, 32.138409 ], [ -2.276917, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.684692, 27.396155 ], [ -4.924622, 24.976099 ], [ -6.454468, 24.958670 ], [ -6.116638, 21.943046 ], [ -6.094666, 21.739091 ], [ -11.469727, 21.739091 ], [ -11.469727, 25.925937 ], [ -11.250000, 25.923467 ], [ -8.687439, 25.881466 ], [ -8.684692, 27.396155 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.924622, 24.976099 ], [ -1.551819, 22.793907 ], [ -0.230713, 21.943046 ], [ 0.085144, 21.739091 ], [ -6.094666, 21.739091 ], [ -6.116638, 21.943046 ], [ -6.454468, 24.958670 ], [ -4.924622, 24.976099 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, 32.138409 ], [ 0.219727, 21.739091 ], [ 0.085144, 21.739091 ], [ -0.230713, 21.943046 ], [ -1.551819, 22.793907 ], [ -4.924622, 24.976099 ], [ -8.684692, 27.396155 ], [ -8.665466, 27.591066 ], [ -8.676453, 28.842268 ], [ -7.061462, 29.580623 ], [ -6.061707, 29.733377 ], [ -5.243225, 30.002517 ], [ -4.861450, 30.503117 ], [ -3.691406, 30.897511 ], [ -3.650208, 31.639352 ], [ -3.070679, 31.725831 ], [ -2.793274, 31.952162 ], [ -2.617493, 32.096536 ], [ -2.276917, 32.138409 ], [ 0.219727, 32.138409 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Portugal", "sov_a3": "PRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Portugal", "adm0_a3": "PRT", "geou_dif": 0, "geounit": "Portugal", "gu_a3": "PRT", "su_dif": 1, "subunit": "Portugal", "su_a3": "PR1", "brk_diff": 0, "name": "Portugal", "name_long": "Portugal", "brk_a3": "PR1", "brk_name": "Portugal", "abbrev": "Port.", "postal": "P", "formal_en": "Portuguese Republic", "name_sort": "Portugal", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 10707924, "gdp_md_est": 208627, "pop_year": -99, "lastcensus": 2011, "gdp_year": 0, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PT", "iso_a3": "PRT", "iso_n3": "620", "un_a3": "620", "wb_a2": "PT", "wb_a3": "PRT", "woe_id": -99, "adm0_a3_is": "PRT", "adm0_a3_us": "PRT", "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": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.795044, 41.145570 ], [ -6.852722, 41.112469 ], [ -6.855469, 40.979898 ], [ -6.866455, 40.331890 ], [ -7.028503, 40.185168 ], [ -7.066956, 39.713525 ], [ -7.500916, 39.631077 ], [ -7.099915, 39.031986 ], [ -7.374573, 38.373962 ], [ -7.031250, 38.076204 ], [ -7.168579, 37.805444 ], [ -7.539368, 37.429069 ], [ -7.454224, 37.099003 ], [ -7.857971, 36.840065 ], [ -8.385315, 36.980615 ], [ -8.898926, 36.870832 ], [ -8.747864, 37.653383 ], [ -8.841248, 38.268376 ], [ -9.288940, 38.358888 ], [ -9.527893, 38.739088 ], [ -9.448242, 39.393755 ], [ -9.049988, 39.755769 ], [ -8.978577, 40.159984 ], [ -8.769836, 40.761821 ], [ -8.780823, 40.979898 ], [ -8.789062, 41.145570 ], [ -6.795044, 41.145570 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, 41.145570 ], [ 0.219727, 40.227121 ], [ 0.104370, 40.124291 ], [ 0.000000, 39.901309 ], [ -0.280151, 39.310925 ], [ 0.000000, 38.903858 ], [ 0.109863, 38.739088 ], [ 0.000000, 38.653343 ], [ -0.469666, 38.294248 ], [ -0.683899, 37.642510 ], [ -1.439209, 37.444335 ], [ -2.147827, 36.675028 ], [ -3.416748, 36.659606 ], [ -4.369812, 36.679433 ], [ -4.996033, 36.326190 ], [ -5.377808, 35.946883 ], [ -5.866699, 36.031332 ], [ -6.237488, 36.368222 ], [ -6.520386, 36.943307 ], [ -7.454224, 37.099003 ], [ -7.539368, 37.429069 ], [ -7.168579, 37.805444 ], [ -7.031250, 38.076204 ], [ -7.374573, 38.373962 ], [ -7.099915, 39.031986 ], [ -7.500916, 39.631077 ], [ -7.066956, 39.713525 ], [ -7.028503, 40.185168 ], [ -6.866455, 40.331890 ], [ -6.855469, 40.979898 ], [ -6.852722, 41.112469 ], [ -6.795044, 41.145570 ], [ 0.219727, 41.145570 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.932617, 35.762115 ], [ -5.196533, 35.755428 ], [ -4.592285, 35.330812 ], [ -3.641968, 35.400245 ], [ -2.606506, 35.180543 ], [ -2.172546, 35.169318 ], [ -1.793518, 34.529187 ], [ -1.735840, 33.920572 ], [ -1.389771, 32.865746 ], [ -1.126099, 32.653251 ], [ -1.310120, 32.263911 ], [ -2.617493, 32.096536 ], [ -2.793274, 31.952162 ], [ -3.021240, 31.765537 ], [ -9.558105, 31.765537 ], [ -9.472961, 31.952162 ], [ -9.437256, 32.038348 ], [ -9.302673, 32.565333 ], [ -8.659973, 33.240985 ], [ -7.654724, 33.699208 ], [ -6.913147, 34.111805 ], [ -6.245728, 35.146863 ], [ -5.932617, 35.762115 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, 36.117909 ], [ 0.219727, 31.765537 ], [ -3.021240, 31.765537 ], [ -2.793274, 31.952162 ], [ -2.617493, 32.096536 ], [ -1.310120, 32.263911 ], [ -1.126099, 32.653251 ], [ -1.389771, 32.865746 ], [ -1.735840, 33.920572 ], [ -1.793518, 34.529187 ], [ -2.172546, 35.169318 ], [ -1.211243, 35.715298 ], [ -0.129089, 35.889050 ], [ 0.000000, 35.973561 ], [ 0.219727, 36.117909 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, 49.066668 ], [ 0.219727, 42.609706 ], [ 0.000000, 42.664261 ], [ -1.505127, 43.034768 ], [ -1.903381, 43.423004 ], [ -1.384277, 44.024422 ], [ -1.194763, 46.016039 ], [ -2.227478, 47.064509 ], [ -2.963562, 47.570967 ], [ -4.493408, 47.954984 ], [ -4.595032, 48.685521 ], [ -3.295898, 48.902643 ], [ -1.617737, 48.645613 ], [ -1.694641, 48.922499 ], [ -1.735840, 49.066668 ], [ 0.219727, 49.066668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Portugal", "sov_a3": "PRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Portugal", "adm0_a3": "PRT", "geou_dif": 0, "geounit": "Portugal", "gu_a3": "PRT", "su_dif": 1, "subunit": "Portugal", "su_a3": "PR1", "brk_diff": 0, "name": "Portugal", "name_long": "Portugal", "brk_a3": "PR1", "brk_name": "Portugal", "abbrev": "Port.", "postal": "P", "formal_en": "Portuguese Republic", "name_sort": "Portugal", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 10707924, "gdp_md_est": 208627, "pop_year": -99, "lastcensus": 2011, "gdp_year": 0, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PT", "iso_a3": "PRT", "iso_n3": "620", "un_a3": "620", "wb_a2": "PT", "wb_a3": "PRT", "woe_id": -99, "adm0_a3_is": "PRT", "adm0_a3_us": "PRT", "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": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.264465, 42.281373 ], [ -8.014526, 41.791793 ], [ -7.424011, 41.793840 ], [ -7.253723, 41.918629 ], [ -6.668701, 41.883876 ], [ -6.391296, 41.382991 ], [ -6.852722, 41.112469 ], [ -6.855469, 40.979898 ], [ -6.858215, 40.813809 ], [ -8.772583, 40.813809 ], [ -8.780823, 40.979898 ], [ -8.791809, 41.184855 ], [ -8.992310, 41.543533 ], [ -9.036255, 41.881831 ], [ -8.673706, 42.134895 ], [ -8.264465, 42.281373 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.978821, 43.749273 ], [ -6.756592, 43.568452 ], [ -5.413513, 43.574422 ], [ -4.350586, 43.405047 ], [ -3.518372, 43.456906 ], [ -1.903381, 43.423004 ], [ -1.505127, 43.034768 ], [ 0.000000, 42.664261 ], [ 0.219727, 42.609706 ], [ 0.219727, 40.813809 ], [ -6.858215, 40.813809 ], [ -6.855469, 40.979898 ], [ -6.852722, 41.112469 ], [ -6.391296, 41.382991 ], [ -6.668701, 41.883876 ], [ -7.253723, 41.918629 ], [ -7.424011, 41.793840 ], [ -8.014526, 41.791793 ], [ -8.264465, 42.281373 ], [ -8.673706, 42.134895 ], [ -9.036255, 41.881831 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.026737 ], [ -7.978821, 43.749273 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ireland", "sov_a3": "IRL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ireland", "adm0_a3": "IRL", "geou_dif": 0, "geounit": "Ireland", "gu_a3": "IRL", "su_dif": 0, "subunit": "Ireland", "su_a3": "IRL", "brk_diff": 0, "name": "Ireland", "name_long": "Ireland", "brk_a3": "IRL", "brk_name": "Ireland", "abbrev": "Ire.", "postal": "IRL", "formal_en": "Ireland", "name_sort": "Ireland", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 4203200, "gdp_md_est": 188400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IE", "iso_a3": "IRL", "iso_n3": "372", "un_a3": "372", "wb_a2": "IE", "wb_a3": "IRL", "woe_id": -99, "adm0_a3_is": "IRL", "adm0_a3_us": "IRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.572327, 55.131790 ], [ -7.366333, 54.595937 ], [ -7.572327, 54.061000 ], [ -6.954346, 54.073894 ], [ -6.199036, 53.868725 ], [ -6.034241, 53.153359 ], [ -6.789551, 52.261434 ], [ -8.563843, 51.670852 ], [ -9.978333, 51.820500 ], [ -9.168091, 52.865814 ], [ -9.689941, 53.881679 ], [ -8.330383, 54.665889 ], [ -7.572327, 55.131790 ] ] ] } } +, +{ "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.079163, 55.899956 ], [ -1.985779, 55.776573 ], [ -1.115112, 54.626158 ], [ -0.431213, 54.465249 ], [ 0.000000, 53.672307 ], [ 0.184021, 53.325952 ], [ 0.219727, 53.278353 ], [ 0.219727, 50.769471 ], [ 0.000000, 50.771208 ], [ -0.788269, 50.776419 ], [ -2.491150, 50.501199 ], [ -2.958069, 50.698197 ], [ -3.619995, 50.229638 ], [ -4.542847, 50.341955 ], [ -5.245972, 49.960055 ], [ -5.778809, 50.161065 ], [ -4.312134, 51.210325 ], [ -3.416748, 51.426614 ], [ -4.985046, 51.594135 ], [ -5.267944, 51.991646 ], [ -4.224243, 52.301761 ], [ -4.770813, 52.840936 ], [ -4.581299, 53.496216 ], [ -3.092651, 53.404620 ], [ -2.947083, 53.985165 ], [ -3.630981, 54.615027 ], [ -4.844971, 54.791185 ], [ -5.083923, 55.062641 ], [ -4.721375, 55.509971 ], [ -5.039978, 55.776573 ], [ -5.048218, 55.784296 ], [ -5.059204, 55.776573 ], [ -5.586548, 55.311954 ], [ -5.616760, 55.776573 ], [ -5.622253, 55.899956 ], [ -2.079163, 55.899956 ] ] ], [ [ [ -6.734619, 55.174162 ], [ -5.663452, 54.556137 ], [ -6.199036, 53.868725 ], [ -6.954346, 54.073894 ], [ -7.572327, 54.061000 ], [ -7.366333, 54.595937 ], [ -7.572327, 55.131790 ], [ -6.734619, 55.174162 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.295898, 48.902643 ], [ -2.488403, 48.777913 ], [ -4.034729, 48.777913 ], [ -3.295898, 48.902643 ] ] ], [ [ [ -0.991516, 49.348388 ], [ 0.000000, 49.681847 ], [ 0.219727, 49.754654 ], [ 0.219727, 48.777913 ], [ -1.656189, 48.777913 ], [ -1.694641, 48.922499 ], [ -1.933594, 49.777717 ], [ -0.991516, 49.348388 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -3.007507, 58.635506 ], [ -4.075928, 57.554155 ], [ -3.056946, 57.690938 ], [ -1.961060, 57.685065 ], [ -2.221985, 56.871495 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.910734 ], [ -1.985779, 55.776573 ], [ -1.889648, 55.652798 ], [ -4.891663, 55.652798 ], [ -5.039978, 55.776573 ], [ -5.048218, 55.784296 ], [ -5.059204, 55.776573 ], [ -5.199280, 55.652798 ], [ -5.608521, 55.652798 ], [ -5.616760, 55.776573 ], [ -5.646973, 56.275386 ], [ -6.152344, 56.785836 ], [ -5.787048, 57.819892 ], [ -5.012512, 58.631217 ], [ -4.213257, 58.551061 ], [ -3.007507, 58.635506 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 11.469727, -83.956169 ], [ 11.469727, -85.070048 ], [ -0.219727, -85.070048 ], [ -0.219727, -83.956169 ], [ 11.469727, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 11.469727, -82.648222 ], [ 11.469727, -84.002262 ], [ -0.219727, -84.002262 ], [ -0.219727, -82.648222 ], [ 11.469727, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 11.469727, -81.059130 ], [ 11.469727, -82.704241 ], [ -0.219727, -82.704241 ], [ -0.219727, -81.059130 ], [ 11.469727, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 11.469727, -79.129976 ], [ 11.469727, -81.127169 ], [ -0.219727, -81.127169 ], [ -0.219727, -79.129976 ], [ 11.469727, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 11.469727, -76.790701 ], [ 11.469727, -79.212538 ], [ -0.219727, -79.212538 ], [ -0.219727, -76.790701 ], [ 11.469727, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 11.469727, -73.958939 ], [ 11.469727, -76.890745 ], [ -0.219727, -76.890745 ], [ -0.219727, -73.958939 ], [ 11.469727, -73.958939 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 10.340881, -70.539543 ], [ 10.458984, -70.612614 ], [ 10.816040, -70.833855 ], [ 11.250000, -70.759776 ], [ 11.469727, -70.721726 ], [ 11.469727, -74.079925 ], [ -0.219727, -74.079925 ], [ -0.219727, -71.634262 ], [ 0.000000, -71.568378 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.155334, -70.618084 ], [ 5.199280, -70.612614 ], [ 5.721130, -70.539543 ], [ 10.340881, -70.539543 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 24 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 7.742615, -69.893509 ], [ 8.486938, -70.147827 ], [ 9.522400, -70.011201 ], [ 10.247498, -70.480896 ], [ 10.458984, -70.612614 ], [ 10.574341, -70.685421 ], [ 4.869690, -70.685421 ], [ 5.155334, -70.618084 ], [ 5.199280, -70.612614 ], [ 6.273193, -70.461615 ], [ 7.135620, -70.246460 ], [ 7.742615, -69.893509 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 16 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Gabon", "sov_a3": "GAB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gabon", "adm0_a3": "GAB", "geou_dif": 0, "geounit": "Gabon", "gu_a3": "GAB", "su_dif": 0, "subunit": "Gabon", "su_a3": "GAB", "brk_diff": 0, "name": "Gabon", "name_long": "Gabon", "brk_a3": "GAB", "brk_name": "Gabon", "abbrev": "Gabon", "postal": "GA", "formal_en": "Gabonese Republic", "name_sort": "Gabon", "mapcolor7": 6, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 1514993, "gdp_md_est": 21110, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "GA", "iso_a3": "GAB", "iso_n3": "266", "un_a3": "266", "wb_a2": "GA", "wb_a3": "GAB", "woe_id": -99, "adm0_a3_is": "GAB", "adm0_a3_us": "GAB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": 3, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 0.219726 ], [ 11.469727, -3.705300 ], [ 11.250000, -3.864255 ], [ 11.093445, -3.976601 ], [ 10.063477, -2.967727 ], [ 9.404297, -2.141835 ], [ 8.797302, -1.109550 ], [ 8.827515, -0.777259 ], [ 9.047241, -0.458674 ], [ 9.201050, 0.000000 ], [ 9.272461, 0.219726 ], [ 11.469727, 0.219726 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, -3.705300 ], [ 11.469727, -4.461427 ], [ 11.250000, -4.179333 ], [ 11.093445, -3.976601 ], [ 11.250000, -3.864255 ], [ 11.469727, -3.705300 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.373291, 11.393879 ], [ 1.274414, 11.178402 ], [ 1.241455, 11.111032 ], [ 0.898132, 10.997816 ], [ 0.021973, 11.019384 ], [ 0.000000, 11.024776 ], [ -0.219727, 11.062516 ], [ -0.219727, 11.393879 ], [ 1.373291, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.219727, 11.062516 ], [ 0.000000, 11.024776 ], [ 0.021973, 11.019384 ], [ 0.000000, 10.919618 ], [ -0.052185, 10.709189 ], [ 0.000000, 10.647112 ], [ 0.365295, 10.193297 ], [ 0.365295, 9.465317 ], [ 0.458679, 8.678779 ], [ 0.711365, 8.314777 ], [ 0.488892, 7.414219 ], [ 0.568542, 6.915521 ], [ 0.834961, 6.282539 ], [ 1.057434, 5.930240 ], [ 0.000000, 5.533978 ], [ -0.219727, 5.451959 ], [ -0.219727, 11.062516 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.019384 ], [ 0.898132, 10.997816 ], [ 0.771790, 10.471607 ], [ 1.076660, 10.177077 ], [ 1.422729, 9.825448 ], [ 1.461182, 9.335252 ], [ 1.664429, 9.129216 ], [ 1.617737, 6.833716 ], [ 1.864929, 6.143286 ], [ 1.057434, 5.930240 ], [ 0.834961, 6.282539 ], [ 0.568542, 6.915521 ], [ 0.488892, 7.414219 ], [ 0.711365, 8.314777 ], [ 0.458679, 8.678779 ], [ 0.365295, 9.465317 ], [ 0.365295, 10.193297 ], [ 0.000000, 10.647112 ], [ -0.052185, 10.709189 ], [ 0.000000, 10.919618 ], [ 0.021973, 11.019384 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Benin", "sov_a3": "BEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Benin", "adm0_a3": "BEN", "geou_dif": 0, "geounit": "Benin", "gu_a3": "BEN", "su_dif": 0, "subunit": "Benin", "su_a3": "BEN", "brk_diff": 0, "name": "Benin", "name_long": "Benin", "brk_a3": "BEN", "brk_name": "Benin", "abbrev": "Benin", "postal": "BJ", "formal_en": "Republic of Benin", "name_sort": "Benin", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 8791832, "gdp_md_est": 12830, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BJ", "iso_a3": "BEN", "iso_n3": "204", "un_a3": "204", "wb_a2": "BJ", "wb_a3": "BEN", "woe_id": -99, "adm0_a3_is": "BEN", "adm0_a3_us": "BEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.578796, 11.393879 ], [ 3.570557, 11.329253 ], [ 3.628235, 11.178402 ], [ 3.795776, 10.736175 ], [ 3.598022, 10.333834 ], [ 3.705139, 10.063516 ], [ 3.218994, 9.446352 ], [ 2.911377, 9.140063 ], [ 2.721863, 8.507687 ], [ 2.746582, 7.871544 ], [ 2.691650, 6.260697 ], [ 1.864929, 6.143286 ], [ 1.617737, 6.833716 ], [ 1.664429, 9.129216 ], [ 1.461182, 9.335252 ], [ 1.422729, 9.825448 ], [ 1.076660, 10.177077 ], [ 0.771790, 10.471607 ], [ 0.898132, 10.997816 ], [ 1.241455, 11.111032 ], [ 1.274414, 11.178402 ], [ 1.373291, 11.393879 ], [ 3.578796, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 11.393879 ], [ 11.469727, 6.847351 ], [ 11.250000, 6.738259 ], [ 11.057739, 6.645511 ], [ 10.494690, 7.057282 ], [ 10.115662, 7.040927 ], [ 9.522400, 6.454505 ], [ 9.231262, 6.446318 ], [ 8.756104, 5.482034 ], [ 8.497925, 4.773521 ], [ 7.459717, 4.412137 ], [ 7.080688, 4.466904 ], [ 6.696167, 4.242334 ], [ 5.896912, 4.264246 ], [ 5.361328, 4.888467 ], [ 5.031738, 5.613252 ], [ 4.323120, 6.271618 ], [ 3.573303, 6.260697 ], [ 2.691650, 6.260697 ], [ 2.746582, 7.871544 ], [ 2.721863, 8.507687 ], [ 2.911377, 9.140063 ], [ 3.218994, 9.446352 ], [ 3.705139, 10.063516 ], [ 3.598022, 10.333834 ], [ 3.795776, 10.736175 ], [ 3.628235, 11.178402 ], [ 3.570557, 11.329253 ], [ 3.578796, 11.393879 ], [ 11.469727, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Equatorial Guinea", "sov_a3": "GNQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Equatorial Guinea", "adm0_a3": "GNQ", "geou_dif": 0, "geounit": "Equatorial Guinea", "gu_a3": "GNQ", "su_dif": 0, "subunit": "Equatorial Guinea", "su_a3": "GNQ", "brk_diff": 0, "name": "Eq. Guinea", "name_long": "Equatorial Guinea", "brk_a3": "GNQ", "brk_name": "Eq. Guinea", "abbrev": "Eq. G.", "postal": "GQ", "formal_en": "Republic of Equatorial Guinea", "name_sort": "Equatorial Guinea", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 650702, "gdp_md_est": 14060, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "7. Least developed region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GQ", "iso_a3": "GNQ", "iso_n3": "226", "un_a3": "226", "wb_a2": "GQ", "wb_a3": "GNQ", "woe_id": -99, "adm0_a3_is": "GNQ", "adm0_a3_us": "GNQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 17, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.648743, 2.284551 ], [ 11.250000, 2.262595 ], [ 11.274719, 2.262595 ], [ 11.282959, 1.060120 ], [ 11.250000, 1.060120 ], [ 9.830017, 1.068358 ], [ 9.492188, 1.010690 ], [ 9.305420, 1.161725 ], [ 9.648743, 2.284551 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.494690, 7.057282 ], [ 11.057739, 6.645511 ], [ 11.250000, 6.738259 ], [ 11.469727, 6.847351 ], [ 11.469727, 2.290039 ], [ 11.274719, 2.262595 ], [ 11.250000, 2.262595 ], [ 9.648743, 2.284551 ], [ 9.794312, 3.074695 ], [ 9.404297, 3.735449 ], [ 8.945618, 3.905359 ], [ 8.742371, 4.354627 ], [ 8.486938, 4.497024 ], [ 8.497925, 4.773521 ], [ 8.756104, 5.482034 ], [ 9.231262, 6.446318 ], [ 9.522400, 6.454505 ], [ 10.115662, 7.040927 ], [ 10.494690, 7.057282 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Gabon", "sov_a3": "GAB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gabon", "adm0_a3": "GAB", "geou_dif": 0, "geounit": "Gabon", "gu_a3": "GAB", "su_dif": 0, "subunit": "Gabon", "su_a3": "GAB", "brk_diff": 0, "name": "Gabon", "name_long": "Gabon", "brk_a3": "GAB", "brk_name": "Gabon", "abbrev": "Gabon", "postal": "GA", "formal_en": "Gabonese Republic", "name_sort": "Gabon", "mapcolor7": 6, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 1514993, "gdp_md_est": 21110, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "GA", "iso_a3": "GAB", "iso_n3": "266", "un_a3": "266", "wb_a2": "GA", "wb_a3": "GAB", "woe_id": -99, "adm0_a3_is": "GAB", "adm0_a3_us": "GAB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": 3, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 2.290039 ], [ 11.469727, -0.219726 ], [ 9.126892, -0.219726 ], [ 9.201050, 0.000000 ], [ 9.288940, 0.269164 ], [ 9.492188, 1.010690 ], [ 9.830017, 1.068358 ], [ 11.250000, 1.060120 ], [ 11.282959, 1.060120 ], [ 11.274719, 2.262595 ], [ 11.469727, 2.290039 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.219727, 21.937950 ], [ 0.000000, 21.795208 ], [ 1.820984, 20.612220 ], [ 2.059937, 20.143628 ], [ 2.683411, 19.857144 ], [ 3.144836, 19.694314 ], [ 3.155823, 19.059522 ], [ 4.265442, 19.155547 ], [ 4.268188, 16.854491 ], [ 3.721619, 16.185662 ], [ 3.636475, 15.570128 ], [ 2.749329, 15.411319 ], [ 1.384277, 15.323923 ], [ 1.013489, 14.968667 ], [ 0.373535, 14.931516 ], [ 0.000000, 14.928862 ], [ -0.219727, 14.926208 ], [ -0.219727, 21.937950 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.373535, 14.931516 ], [ 0.293884, 14.445319 ], [ 0.428467, 13.990041 ], [ 0.991516, 13.336175 ], [ 1.021729, 12.851971 ], [ 2.175293, 12.626938 ], [ 2.153320, 11.942601 ], [ 1.933594, 11.641476 ], [ 1.444702, 11.549998 ], [ 1.274414, 11.178402 ], [ 1.241455, 11.111032 ], [ 0.898132, 10.997816 ], [ 0.021973, 11.019384 ], [ -0.219727, 11.062516 ], [ -0.219727, 14.926208 ], [ 0.000000, 14.928862 ], [ 0.373535, 14.931516 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.219727, 11.062516 ], [ 0.021973, 11.019384 ], [ 0.008240, 10.962764 ], [ -0.219727, 10.962764 ], [ -0.219727, 11.062516 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.610291, 22.146708 ], [ 9.244995, 21.943046 ], [ 8.572083, 21.568056 ], [ 5.677185, 19.603782 ], [ 4.265442, 19.155547 ], [ 3.155823, 19.059522 ], [ 3.144836, 19.694314 ], [ 2.683411, 19.857144 ], [ 2.059937, 20.143628 ], [ 1.820984, 20.612220 ], [ 0.000000, 21.795208 ], [ -0.219727, 21.937950 ], [ -0.219727, 22.146708 ], [ 9.610291, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 22.146708 ], [ 11.469727, 13.336175 ], [ 11.250000, 13.360227 ], [ 10.989075, 13.389620 ], [ 10.700684, 13.247966 ], [ 10.112915, 13.277373 ], [ 9.522400, 12.851971 ], [ 9.014282, 12.827870 ], [ 7.803040, 13.344193 ], [ 7.330627, 13.098205 ], [ 6.819763, 13.116930 ], [ 6.443481, 13.493802 ], [ 5.440979, 13.867414 ], [ 4.367065, 13.750057 ], [ 4.106140, 13.533860 ], [ 3.966064, 12.956383 ], [ 3.680420, 12.554564 ], [ 3.609009, 11.660306 ], [ 2.848206, 12.238023 ], [ 2.488403, 12.235339 ], [ 2.153320, 11.942601 ], [ 2.175293, 12.626938 ], [ 1.021729, 12.851971 ], [ 0.991516, 13.336175 ], [ 0.428467, 13.990041 ], [ 0.293884, 14.445319 ], [ 0.373535, 14.931516 ], [ 1.013489, 14.968667 ], [ 1.384277, 15.323923 ], [ 2.749329, 15.411319 ], [ 3.636475, 15.570128 ], [ 3.721619, 16.185662 ], [ 4.268188, 16.854491 ], [ 4.265442, 19.155547 ], [ 5.677185, 19.603782 ], [ 8.572083, 21.568056 ], [ 9.244995, 21.943046 ], [ 9.610291, 22.146708 ], [ 11.469727, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.019384 ], [ 0.898132, 10.997816 ], [ 0.889893, 10.962764 ], [ 0.008240, 10.962764 ], [ 0.021973, 11.019384 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Benin", "sov_a3": "BEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Benin", "adm0_a3": "BEN", "geou_dif": 0, "geounit": "Benin", "gu_a3": "BEN", "su_dif": 0, "subunit": "Benin", "su_a3": "BEN", "brk_diff": 0, "name": "Benin", "name_long": "Benin", "brk_a3": "BEN", "brk_name": "Benin", "abbrev": "Benin", "postal": "BJ", "formal_en": "Republic of Benin", "name_sort": "Benin", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 8791832, "gdp_md_est": 12830, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BJ", "iso_a3": "BEN", "iso_n3": "204", "un_a3": "204", "wb_a2": "BJ", "wb_a3": "BEN", "woe_id": -99, "adm0_a3_is": "BEN", "adm0_a3_us": "BEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.848206, 12.238023 ], [ 3.609009, 11.660306 ], [ 3.570557, 11.329253 ], [ 3.710632, 10.962764 ], [ 0.889893, 10.962764 ], [ 0.898132, 10.997816 ], [ 1.241455, 11.111032 ], [ 1.274414, 11.178402 ], [ 1.444702, 11.549998 ], [ 1.933594, 11.641476 ], [ 2.153320, 11.942601 ], [ 2.488403, 12.235339 ], [ 2.848206, 12.238023 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.440979, 13.867414 ], [ 6.443481, 13.493802 ], [ 6.819763, 13.116930 ], [ 7.330627, 13.098205 ], [ 7.803040, 13.344193 ], [ 9.014282, 12.827870 ], [ 9.522400, 12.851971 ], [ 10.112915, 13.277373 ], [ 10.700684, 13.247966 ], [ 10.989075, 13.389620 ], [ 11.250000, 13.360227 ], [ 11.469727, 13.336175 ], [ 11.469727, 10.962764 ], [ 3.710632, 10.962764 ], [ 3.570557, 11.329253 ], [ 3.609009, 11.660306 ], [ 3.680420, 12.554564 ], [ 3.966064, 12.956383 ], [ 4.106140, 13.533860 ], [ 4.367065, 13.750057 ], [ 5.440979, 13.867414 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.219727, 21.937950 ], [ 0.085144, 21.739091 ], [ -0.219727, 21.739091 ], [ -0.219727, 21.937950 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Tunisia", "sov_a3": "TUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tunisia", "adm0_a3": "TUN", "geou_dif": 0, "geounit": "Tunisia", "gu_a3": "TUN", "su_dif": 0, "subunit": "Tunisia", "su_a3": "TUN", "brk_diff": 0, "name": "Tunisia", "name_long": "Tunisia", "brk_a3": "TUN", "brk_name": "Tunisia", "abbrev": "Tun.", "postal": "TN", "formal_en": "Republic of Tunisia", "name_sort": "Tunisia", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 10486339, "gdp_md_est": 81710, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TN", "iso_a3": "TUN", "iso_n3": "788", "un_a3": "788", "wb_a2": "TN", "wb_a3": "TUN", "woe_id": -99, "adm0_a3_is": "TUN", "adm0_a3_us": "TUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.038513, 32.138409 ], [ 10.942383, 32.082575 ], [ 10.818787, 31.952162 ], [ 10.634766, 31.763202 ], [ 9.948120, 31.377089 ], [ 10.055237, 30.963479 ], [ 9.967346, 30.540973 ], [ 9.481201, 30.308874 ], [ 9.091187, 31.952162 ], [ 9.055481, 32.103516 ], [ 9.000549, 32.138409 ], [ 11.038513, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.000549, 32.138409 ], [ 9.055481, 32.103516 ], [ 9.091187, 31.952162 ], [ 9.481201, 30.308874 ], [ 9.805298, 29.425245 ], [ 9.857483, 28.960089 ], [ 9.681702, 28.144660 ], [ 9.755859, 27.688392 ], [ 9.626770, 27.142257 ], [ 9.714661, 26.512362 ], [ 9.319153, 26.096255 ], [ 9.909668, 25.366364 ], [ 9.948120, 24.938748 ], [ 10.302429, 24.379623 ], [ 10.769348, 24.564610 ], [ 11.250000, 24.282020 ], [ 11.469727, 24.151766 ], [ 11.469727, 23.180764 ], [ 11.250000, 23.059516 ], [ 9.244995, 21.943046 ], [ 8.882446, 21.739091 ], [ 0.085144, 21.739091 ], [ -0.219727, 21.937950 ], [ -0.219727, 32.138409 ], [ 9.000549, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 32.138409 ], [ 11.469727, 24.151766 ], [ 11.250000, 24.282020 ], [ 10.769348, 24.564610 ], [ 10.302429, 24.379623 ], [ 9.948120, 24.938748 ], [ 9.909668, 25.366364 ], [ 9.319153, 26.096255 ], [ 9.714661, 26.512362 ], [ 9.626770, 27.142257 ], [ 9.755859, 27.688392 ], [ 9.681702, 28.144660 ], [ 9.857483, 28.960089 ], [ 9.805298, 29.425245 ], [ 9.481201, 30.308874 ], [ 9.967346, 30.540973 ], [ 10.055237, 30.963479 ], [ 9.948120, 31.377089 ], [ 10.634766, 31.763202 ], [ 10.818787, 31.952162 ], [ 10.942383, 32.082575 ], [ 11.038513, 32.138409 ], [ 11.469727, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 23.180764 ], [ 11.469727, 21.739091 ], [ 8.882446, 21.739091 ], [ 9.244995, 21.943046 ], [ 11.250000, 23.059516 ], [ 11.469727, 23.180764 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.219727, 39.436193 ], [ -0.219727, 41.145570 ], [ 1.601257, 41.145570 ], [ 0.810242, 41.015138 ], [ 0.799255, 40.979898 ], [ 0.719604, 40.678555 ], [ 0.104370, 40.124291 ], [ 0.000000, 39.901309 ], [ -0.219727, 39.436193 ] ] ], [ [ [ -0.219727, 39.225870 ], [ 0.000000, 38.903858 ], [ 0.109863, 38.739088 ], [ 0.000000, 38.653343 ], [ -0.219727, 38.483695 ], [ -0.219727, 39.225870 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.264221, 41.145570 ], [ 9.404297, 40.979898 ], [ 9.808044, 40.501269 ], [ 9.667969, 39.179046 ], [ 9.214783, 39.240763 ], [ 8.805542, 38.908133 ], [ 8.426514, 39.172659 ], [ 8.388062, 40.380028 ], [ 8.157349, 40.950863 ], [ 8.709412, 40.901058 ], [ 8.838501, 40.979898 ], [ 9.104919, 41.145570 ], [ 9.264221, 41.145570 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Tunisia", "sov_a3": "TUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tunisia", "adm0_a3": "TUN", "geou_dif": 0, "geounit": "Tunisia", "gu_a3": "TUN", "su_dif": 0, "subunit": "Tunisia", "su_a3": "TUN", "brk_diff": 0, "name": "Tunisia", "name_long": "Tunisia", "brk_a3": "TUN", "brk_name": "Tunisia", "abbrev": "Tun.", "postal": "TN", "formal_en": "Republic of Tunisia", "name_sort": "Tunisia", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 10486339, "gdp_md_est": 81710, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TN", "iso_a3": "TUN", "iso_n3": "788", "un_a3": "788", "wb_a2": "TN", "wb_a3": "TUN", "woe_id": -99, "adm0_a3_is": "TUN", "adm0_a3_us": "TUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.508667, 37.350509 ], [ 10.209045, 37.230328 ], [ 10.178833, 36.725677 ], [ 11.027527, 37.092431 ], [ 11.098938, 36.901587 ], [ 10.599060, 36.410231 ], [ 10.590820, 35.949106 ], [ 10.936890, 35.699686 ], [ 10.807800, 34.834096 ], [ 10.148621, 34.332096 ], [ 10.338135, 33.785996 ], [ 10.854492, 33.770015 ], [ 11.107178, 33.293804 ], [ 11.250000, 33.236390 ], [ 11.469727, 33.146750 ], [ 11.469727, 32.879587 ], [ 11.431274, 32.370683 ], [ 11.250000, 32.263911 ], [ 10.942383, 32.082575 ], [ 10.818787, 31.952162 ], [ 10.640259, 31.765537 ], [ 9.135132, 31.765537 ], [ 9.055481, 32.103516 ], [ 8.437500, 32.507446 ], [ 8.429260, 32.750323 ], [ 7.610779, 33.344296 ], [ 7.522888, 34.098159 ], [ 8.140869, 34.655804 ], [ 8.374329, 35.480802 ], [ 8.217773, 36.434542 ], [ 8.418274, 36.947697 ], [ 9.508667, 37.350509 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.327881, 37.118716 ], [ 7.734375, 36.886211 ], [ 8.418274, 36.947697 ], [ 8.217773, 36.434542 ], [ 8.374329, 35.480802 ], [ 8.140869, 34.655804 ], [ 7.522888, 34.098159 ], [ 7.610779, 33.344296 ], [ 8.429260, 32.750323 ], [ 8.437500, 32.507446 ], [ 9.055481, 32.103516 ], [ 9.135132, 31.765537 ], [ -0.219727, 31.765537 ], [ -0.219727, 35.875698 ], [ -0.129089, 35.889050 ], [ 0.000000, 35.973561 ], [ 0.502625, 36.301845 ], [ 1.466675, 36.606709 ], [ 3.161316, 36.785092 ], [ 4.814758, 36.866438 ], [ 5.317383, 36.716871 ], [ 6.259460, 37.112146 ], [ 7.327881, 37.118716 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 32.879587 ], [ 11.469727, 31.765537 ], [ 10.640259, 31.765537 ], [ 10.818787, 31.952162 ], [ 10.942383, 32.082575 ], [ 11.250000, 32.263911 ], [ 11.431274, 32.370683 ], [ 11.469727, 32.879587 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.387817, 43.010673 ], [ 9.558105, 42.153223 ], [ 9.228516, 41.380930 ], [ 8.775330, 41.584634 ], [ 8.541870, 42.256984 ], [ 8.745117, 42.629917 ], [ 9.387817, 43.010673 ] ] ], [ [ [ 7.715149, 49.066668 ], [ 8.096924, 49.018058 ], [ 8.028259, 48.922499 ], [ 7.591553, 48.334343 ], [ 7.465210, 47.620975 ], [ 7.190552, 47.450380 ], [ 6.734619, 47.543164 ], [ 6.767578, 47.288545 ], [ 6.036987, 46.726683 ], [ 6.020508, 46.274834 ], [ 6.498413, 46.430285 ], [ 6.841736, 45.991237 ], [ 6.800537, 45.710015 ], [ 7.094421, 45.334771 ], [ 6.748352, 45.028892 ], [ 7.006531, 44.255036 ], [ 7.547607, 44.128999 ], [ 7.434998, 43.695680 ], [ 6.528625, 43.129052 ], [ 4.556580, 43.401056 ], [ 3.098145, 43.076913 ], [ 2.985535, 42.474123 ], [ 1.826477, 42.344335 ], [ 0.700378, 42.797416 ], [ 0.337830, 42.581400 ], [ 0.000000, 42.664261 ], [ -0.219727, 42.718768 ], [ -0.219727, 49.066668 ], [ 7.715149, 49.066668 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.700378, 42.797416 ], [ 1.826477, 42.344335 ], [ 2.985535, 42.474123 ], [ 3.037720, 41.894100 ], [ 2.090149, 41.226183 ], [ 0.810242, 41.015138 ], [ 0.799255, 40.979898 ], [ 0.755310, 40.813809 ], [ -0.219727, 40.813809 ], [ -0.219727, 42.718768 ], [ 0.000000, 42.664261 ], [ 0.337830, 42.581400 ], [ 0.700378, 42.797416 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 49.066668 ], [ 11.469727, 47.535747 ], [ 11.425781, 47.524620 ], [ 11.250000, 47.533893 ], [ 10.544128, 47.567261 ], [ 10.401306, 47.303447 ], [ 9.895935, 47.580231 ], [ 9.593811, 47.526475 ], [ 8.519897, 47.831596 ], [ 8.316650, 47.615421 ], [ 7.465210, 47.620975 ], [ 7.591553, 48.334343 ], [ 8.028259, 48.922499 ], [ 8.096924, 49.018058 ], [ 7.715149, 49.066668 ], [ 11.469727, 49.066668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Switzerland", "sov_a3": "CHE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Switzerland", "adm0_a3": "CHE", "geou_dif": 0, "geounit": "Switzerland", "gu_a3": "CHE", "su_dif": 0, "subunit": "Switzerland", "su_a3": "CHE", "brk_diff": 0, "name": "Switzerland", "name_long": "Switzerland", "brk_a3": "CHE", "brk_name": "Switzerland", "abbrev": "Switz.", "postal": "CH", "formal_en": "Swiss Confederation", "name_sort": "Switzerland", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 7604467, "gdp_md_est": 316700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CH", "iso_a3": "CHE", "iso_n3": "756", "un_a3": "756", "wb_a2": "CH", "wb_a3": "CHE", "woe_id": -99, "adm0_a3_is": "CHE", "adm0_a3_us": "CHE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 11, "long_len": 11, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.519897, 47.831596 ], [ 9.593811, 47.526475 ], [ 9.632263, 47.348128 ], [ 9.478455, 47.103784 ], [ 9.931641, 46.922131 ], [ 10.442505, 46.893985 ], [ 10.362854, 46.485156 ], [ 9.920654, 46.316584 ], [ 9.181824, 46.441642 ], [ 8.964844, 46.037016 ], [ 8.489685, 46.006501 ], [ 8.313904, 46.164614 ], [ 7.753601, 45.824971 ], [ 7.272949, 45.777102 ], [ 6.841736, 45.991237 ], [ 6.498413, 46.430285 ], [ 6.020508, 46.274834 ], [ 6.036987, 46.726683 ], [ 6.767578, 47.288545 ], [ 6.734619, 47.543164 ], [ 7.190552, 47.450380 ], [ 7.465210, 47.620975 ], [ 8.316650, 47.615421 ], [ 8.519897, 47.831596 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Austria", "sov_a3": "AUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Austria", "adm0_a3": "AUT", "geou_dif": 0, "geounit": "Austria", "gu_a3": "AUT", "su_dif": 0, "subunit": "Austria", "su_a3": "AUT", "brk_diff": 0, "name": "Austria", "name_long": "Austria", "brk_a3": "AUT", "brk_name": "Austria", "abbrev": "Aust.", "postal": "A", "formal_en": "Republic of Austria", "name_sort": "Austria", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 8210281, "gdp_md_est": 329500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AT", "iso_a3": "AUT", "iso_n3": "040", "un_a3": "040", "wb_a2": "AT", "wb_a3": "AUT", "woe_id": -99, "adm0_a3_is": "AUT", "adm0_a3_us": "AUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.895935, 47.580231 ], [ 10.401306, 47.303447 ], [ 10.544128, 47.567261 ], [ 11.250000, 47.533893 ], [ 11.425781, 47.524620 ], [ 11.469727, 47.535747 ], [ 11.469727, 46.997114 ], [ 11.250000, 46.957761 ], [ 11.162109, 46.942762 ], [ 11.046753, 46.753035 ], [ 10.442505, 46.893985 ], [ 9.931641, 46.922131 ], [ 9.478455, 47.103784 ], [ 9.632263, 47.348128 ], [ 9.593811, 47.526475 ], [ 9.895935, 47.580231 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209290, 41.211722 ], [ 9.404297, 40.979898 ], [ 9.544373, 40.813809 ], [ 8.212280, 40.813809 ], [ 8.157349, 40.950863 ], [ 8.709412, 40.901058 ], [ 8.838501, 40.979898 ], [ 9.209290, 41.211722 ] ] ], [ [ [ 11.469727, 46.997114 ], [ 11.469727, 42.159332 ], [ 11.250000, 42.315909 ], [ 11.189575, 42.356514 ], [ 10.511169, 42.932296 ], [ 10.198059, 43.921637 ], [ 9.700928, 44.038244 ], [ 8.887939, 44.367060 ], [ 8.426514, 44.231425 ], [ 7.849731, 43.769110 ], [ 7.434998, 43.695680 ], [ 7.547607, 44.128999 ], [ 7.006531, 44.255036 ], [ 6.748352, 45.028892 ], [ 7.094421, 45.334771 ], [ 6.800537, 45.710015 ], [ 6.841736, 45.991237 ], [ 7.272949, 45.777102 ], [ 7.753601, 45.824971 ], [ 8.313904, 46.164614 ], [ 8.489685, 46.006501 ], [ 8.964844, 46.037016 ], [ 9.181824, 46.441642 ], [ 9.920654, 46.316584 ], [ 10.362854, 46.485156 ], [ 10.442505, 46.893985 ], [ 11.046753, 46.753035 ], [ 11.162109, 46.942762 ], [ 11.250000, 46.957761 ], [ 11.469727, 46.997114 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -0.219727, 54.078729 ], [ 0.000000, 53.672307 ], [ 0.184021, 53.325952 ], [ 0.469666, 52.930430 ], [ 1.680908, 52.739618 ], [ 1.557312, 52.101444 ], [ 1.049194, 51.806917 ], [ 1.447449, 51.291124 ], [ 0.549316, 50.765997 ], [ 0.000000, 50.771208 ], [ -0.219727, 50.771208 ], [ -0.219727, 54.078729 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.513123, 51.150063 ], [ 2.655945, 50.797255 ], [ 3.122864, 50.781629 ], [ 3.587036, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.798279, 49.986552 ], [ 5.671692, 49.530557 ], [ 5.896912, 49.443129 ], [ 6.185303, 49.464554 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.018058 ], [ 8.028259, 48.922499 ], [ 7.921143, 48.777913 ], [ -0.219727, 48.777913 ], [ -0.219727, 49.607150 ], [ 0.000000, 49.681847 ], [ 1.337585, 50.127622 ], [ 1.636963, 50.948045 ], [ 2.513123, 51.150063 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 10.077209, 55.899956 ], [ 9.953613, 55.776573 ], [ 9.648743, 55.471070 ], [ 9.920654, 54.983918 ], [ 9.280701, 54.832336 ], [ 8.525391, 54.963425 ], [ 8.118896, 55.517747 ], [ 8.110657, 55.776573 ], [ 8.107910, 55.899956 ], [ 10.077209, 55.899956 ] ] ], [ [ [ 11.469727, 55.899956 ], [ 11.469727, 55.136500 ], [ 11.250000, 55.254077 ], [ 11.041260, 55.365064 ], [ 10.903931, 55.776573 ], [ 10.901184, 55.781207 ], [ 11.431274, 55.899956 ], [ 11.469727, 55.899956 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Netherlands", "sov_a3": "NL1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Netherlands", "adm0_a3": "NLD", "geou_dif": 0, "geounit": "Netherlands", "gu_a3": "NLD", "su_dif": 0, "subunit": "Netherlands", "su_a3": "NLD", "brk_diff": 0, "name": "Netherlands", "name_long": "Netherlands", "brk_a3": "NLD", "brk_name": "Netherlands", "abbrev": "Neth.", "postal": "NL", "formal_en": "Kingdom of the Netherlands", "name_sort": "Netherlands", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 16715999, "gdp_md_est": 672000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NL", "iso_a3": "NLD", "iso_n3": "528", "un_a3": "528", "wb_a2": "NL", "wb_a3": "NLD", "woe_id": -99, "adm0_a3_is": "NLD", "adm0_a3_us": "NLD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.072693, 53.510918 ], [ 6.904907, 53.483143 ], [ 7.091675, 53.145123 ], [ 6.841736, 52.229482 ], [ 6.589050, 51.852746 ], [ 5.987549, 51.852746 ], [ 6.155090, 50.804199 ], [ 5.605774, 51.037940 ], [ 4.971313, 51.476251 ], [ 4.045715, 51.268789 ], [ 3.312378, 51.346054 ], [ 3.828735, 51.621427 ], [ 4.704895, 53.092375 ], [ 6.072693, 53.510918 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Belgium", "sov_a3": "BEL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belgium", "adm0_a3": "BEL", "geou_dif": 0, "geounit": "Belgium", "gu_a3": "BEL", "su_dif": 0, "subunit": "Belgium", "su_a3": "BEL", "brk_diff": 0, "name": "Belgium", "name_long": "Belgium", "brk_a3": "BEL", "brk_name": "Belgium", "abbrev": "Belg.", "postal": "B", "formal_en": "Kingdom of Belgium", "name_sort": "Belgium", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 10414336, "gdp_md_est": 389300, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "BE", "iso_a3": "BEL", "iso_n3": "056", "un_a3": "056", "wb_a2": "BE", "wb_a3": "BEL", "woe_id": -99, "adm0_a3_is": "BEL", "adm0_a3_us": "BEL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.971313, 51.476251 ], [ 5.605774, 51.037940 ], [ 6.155090, 50.804199 ], [ 6.042480, 50.129382 ], [ 5.781555, 50.090631 ], [ 5.671692, 49.530557 ], [ 4.798279, 49.986552 ], [ 4.284668, 49.908787 ], [ 3.587036, 50.380502 ], [ 3.122864, 50.781629 ], [ 2.655945, 50.797255 ], [ 2.513123, 51.150063 ], [ 3.312378, 51.346054 ], [ 4.045715, 51.268789 ], [ 4.971313, 51.476251 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Luxembourg", "sov_a3": "LUX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Luxembourg", "adm0_a3": "LUX", "geou_dif": 0, "geounit": "Luxembourg", "gu_a3": "LUX", "su_dif": 0, "subunit": "Luxembourg", "su_a3": "LUX", "brk_diff": 0, "name": "Luxembourg", "name_long": "Luxembourg", "brk_a3": "LUX", "brk_name": "Luxembourg", "abbrev": "Lux.", "postal": "L", "formal_en": "Grand Duchy of Luxembourg", "name_sort": "Luxembourg", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 491775, "gdp_md_est": 39370, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "LU", "iso_a3": "LUX", "iso_n3": "442", "un_a3": "442", "wb_a2": "LU", "wb_a3": "LUX", "woe_id": -99, "adm0_a3_is": "LUX", "adm0_a3_us": "LUX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.042480, 50.129382 ], [ 6.240234, 49.903480 ], [ 6.185303, 49.464554 ], [ 5.896912, 49.443129 ], [ 5.671692, 49.530557 ], [ 5.781555, 50.090631 ], [ 6.042480, 50.129382 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.920654, 54.983918 ], [ 9.937134, 54.597528 ], [ 10.947876, 54.364558 ], [ 10.936890, 54.009383 ], [ 11.250000, 54.067448 ], [ 11.469727, 54.107723 ], [ 11.469727, 48.777913 ], [ 7.921143, 48.777913 ], [ 8.028259, 48.922499 ], [ 8.096924, 49.018058 ], [ 6.657715, 49.203243 ], [ 6.185303, 49.464554 ], [ 6.240234, 49.903480 ], [ 6.042480, 50.129382 ], [ 6.155090, 50.804199 ], [ 5.987549, 51.852746 ], [ 6.589050, 51.852746 ], [ 6.841736, 52.229482 ], [ 7.091675, 53.145123 ], [ 6.904907, 53.483143 ], [ 7.099915, 53.695080 ], [ 7.934875, 53.748711 ], [ 8.121643, 53.528881 ], [ 8.800049, 54.022293 ], [ 8.572083, 54.396550 ], [ 8.525391, 54.963425 ], [ 9.280701, 54.832336 ], [ 9.920654, 54.983918 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 11.469727, 61.710706 ], [ 11.469727, 59.433903 ], [ 11.250000, 59.149178 ], [ 11.024780, 58.856383 ], [ 10.354614, 59.470199 ], [ 8.379822, 58.313817 ], [ 7.047729, 58.079329 ], [ 5.663452, 58.588299 ], [ 5.306396, 59.663579 ], [ 5.042725, 61.606396 ], [ 5.026245, 61.710706 ], [ 11.469727, 61.710706 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.469727, 55.909194 ], [ 11.469727, 55.652798 ], [ 10.945129, 55.652798 ], [ 10.903931, 55.776573 ], [ 10.901184, 55.781207 ], [ 11.250000, 55.859900 ], [ 11.469727, 55.909194 ] ] ], [ [ [ 10.579834, 57.730552 ], [ 10.544128, 57.216634 ], [ 10.247498, 56.891003 ], [ 10.368347, 56.610909 ], [ 10.912170, 56.459455 ], [ 10.667725, 56.082765 ], [ 10.368347, 56.191424 ], [ 9.953613, 55.776573 ], [ 9.830017, 55.652798 ], [ 8.116150, 55.652798 ], [ 8.110657, 55.776573 ], [ 8.088684, 56.541315 ], [ 8.256226, 56.811404 ], [ 8.541870, 57.110894 ], [ 9.423523, 57.173481 ], [ 9.775085, 57.449383 ], [ 10.579834, 57.730552 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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": "Polygon", "coordinates": [ [ [ 11.469727, 59.433903 ], [ 11.469727, 58.041550 ], [ 11.250000, 58.449170 ], [ 11.024780, 58.856383 ], [ 11.250000, 59.149178 ], [ 11.466980, 59.432506 ], [ 11.469727, 59.433903 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 11.469727, 65.212986 ], [ 11.469727, 61.501734 ], [ 5.056458, 61.501734 ], [ 5.042725, 61.606396 ], [ 4.990540, 61.971234 ], [ 5.910645, 62.614825 ], [ 8.552856, 63.454192 ], [ 10.527649, 64.486993 ], [ 11.250000, 65.045491 ], [ 11.469727, 65.212986 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 11.469727, 79.212538 ], [ 11.469727, 78.765652 ], [ 11.250000, 78.857848 ], [ 11.219788, 78.869518 ], [ 10.928650, 79.171335 ], [ 10.887451, 79.212538 ], [ 11.469727, 79.212538 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 11.469727, 79.788958 ], [ 11.469727, 79.129976 ], [ 10.967102, 79.129976 ], [ 10.928650, 79.171335 ], [ 10.442505, 79.652708 ], [ 11.250000, 79.759702 ], [ 11.469727, 79.788958 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 22.719727, -83.956169 ], [ 22.719727, -85.070048 ], [ 11.030273, -85.070048 ], [ 11.030273, -83.956169 ], [ 22.719727, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 22.719727, -82.648222 ], [ 22.719727, -84.002262 ], [ 11.030273, -84.002262 ], [ 11.030273, -82.648222 ], [ 22.719727, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 22.719727, -81.059130 ], [ 22.719727, -82.704241 ], [ 11.030273, -82.704241 ], [ 11.030273, -81.059130 ], [ 22.719727, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 22.719727, -79.129976 ], [ 22.719727, -81.127169 ], [ 11.030273, -81.127169 ], [ 11.030273, -79.129976 ], [ 22.719727, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 22.719727, -76.790701 ], [ 22.719727, -79.212538 ], [ 11.030273, -79.212538 ], [ 11.030273, -76.790701 ], [ 22.719727, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 22.719727, -73.958939 ], [ 22.719727, -76.890745 ], [ 11.030273, -76.890745 ], [ 11.030273, -73.958939 ], [ 22.719727, -73.958939 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 22.219849, -70.539543 ], [ 22.381897, -70.612614 ], [ 22.500000, -70.665426 ], [ 22.568665, -70.696320 ], [ 22.719727, -70.672699 ], [ 22.719727, -74.079925 ], [ 11.030273, -74.079925 ], [ 11.030273, -70.797753 ], [ 11.250000, -70.759776 ], [ 11.953125, -70.638127 ], [ 11.983337, -70.612614 ], [ 12.065735, -70.539543 ], [ 22.219849, -70.539543 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 24 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 18.201599, -69.873672 ], [ 19.259033, -69.893509 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.920471, -70.402742 ], [ 22.381897, -70.612614 ], [ 22.541199, -70.685421 ], [ 11.681213, -70.685421 ], [ 11.953125, -70.638127 ], [ 11.983337, -70.612614 ], [ 12.403564, -70.246460 ], [ 13.422546, -69.971730 ], [ 14.732666, -70.030908 ], [ 15.125427, -70.402742 ], [ 15.946655, -70.030908 ], [ 17.026062, -69.913328 ], [ 18.201599, -69.873672 ] ] ], [ [ [ 22.719727, -70.685421 ], [ 22.642822, -70.685421 ], [ 22.719727, -70.672699 ], [ 22.719727, -70.685421 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 19 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Africa", "sov_a3": "ZAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Africa", "adm0_a3": "ZAF", "geou_dif": 0, "geounit": "South Africa", "gu_a3": "ZAF", "su_dif": 0, "subunit": "South Africa", "su_a3": "ZAF", "brk_diff": 0, "name": "South Africa", "name_long": "South Africa", "brk_a3": "ZAF", "brk_name": "South Africa", "abbrev": "S.Af.", "postal": "ZA", "formal_en": "Republic of South Africa", "name_sort": "South Africa", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 49052489, "gdp_md_est": 491000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ZA", "iso_a3": "ZAF", "iso_n3": "710", "un_a3": "710", "wb_a2": "ZA", "wb_a3": "ZAF", "woe_id": -99, "adm0_a3_is": "ZAF", "adm0_a3_us": "ZAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, -31.765537 ], [ 22.719727, -33.881817 ], [ 22.571411, -33.863574 ], [ 22.500000, -33.890937 ], [ 21.541443, -34.257216 ], [ 20.687256, -34.415973 ], [ 20.069275, -34.793506 ], [ 19.616089, -34.818313 ], [ 19.193115, -34.461277 ], [ 18.855286, -34.443159 ], [ 18.424072, -33.995750 ], [ 18.377380, -34.134542 ], [ 18.242798, -33.865854 ], [ 18.248291, -33.280028 ], [ 17.924194, -32.609303 ], [ 18.245544, -32.428658 ], [ 18.229065, -31.952162 ], [ 18.223572, -31.765537 ], [ 22.719727, -31.765537 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 18 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Namibia", "sov_a3": "NAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Namibia", "adm0_a3": "NAM", "geou_dif": 0, "geounit": "Namibia", "gu_a3": "NAM", "su_dif": 0, "subunit": "Namibia", "su_a3": "NAM", "brk_diff": 0, "name": "Namibia", "name_long": "Namibia", "brk_a3": "NAM", "brk_name": "Namibia", "abbrev": "Nam.", "postal": "NA", "formal_en": "Republic of Namibia", "name_sort": "Namibia", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 2108665, "gdp_md_est": 13250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "NA", "iso_a3": "NAM", "iso_n3": "516", "un_a3": "516", "wb_a2": "NA", "wb_a3": "NAM", "woe_id": -99, "adm0_a3_is": "NAM", "adm0_a3_us": "NAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.879517, -21.739091 ], [ 20.879517, -21.813058 ], [ 19.893494, -21.848753 ], [ 19.893494, -28.459033 ], [ 19.000854, -28.972104 ], [ 18.462524, -29.044164 ], [ 17.833557, -28.854296 ], [ 17.385864, -28.782104 ], [ 17.218323, -28.355151 ], [ 16.822815, -28.081674 ], [ 16.344910, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.207825, -27.090918 ], [ 14.988098, -26.115986 ], [ 14.740906, -25.391179 ], [ 14.405823, -23.850674 ], [ 14.383850, -22.654572 ], [ 14.257507, -22.111088 ], [ 14.098206, -21.943046 ], [ 13.905945, -21.739091 ], [ 20.879517, -21.739091 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 22.719727, -21.739091 ], [ 22.719727, -25.703413 ], [ 22.576904, -25.977799 ], [ 22.500000, -26.029638 ], [ 22.104492, -26.278640 ], [ 21.604614, -26.725987 ], [ 20.887756, -26.826522 ], [ 20.665283, -26.475490 ], [ 20.755920, -25.866638 ], [ 20.165405, -24.916331 ], [ 19.893494, -24.766785 ], [ 19.893494, -21.848753 ], [ 20.879517, -21.813058 ], [ 20.879517, -21.739091 ], [ 22.719727, -21.739091 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Africa", "sov_a3": "ZAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Africa", "adm0_a3": "ZAF", "geou_dif": 0, "geounit": "South Africa", "gu_a3": "ZAF", "su_dif": 0, "subunit": "South Africa", "su_a3": "ZAF", "brk_diff": 0, "name": "South Africa", "name_long": "South Africa", "brk_a3": "ZAF", "brk_name": "South Africa", "abbrev": "S.Af.", "postal": "ZA", "formal_en": "Republic of South Africa", "name_sort": "South Africa", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 49052489, "gdp_md_est": 491000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ZA", "iso_a3": "ZAF", "iso_n3": "710", "un_a3": "710", "wb_a2": "ZA", "wb_a3": "ZAF", "woe_id": -99, "adm0_a3_is": "ZAF", "adm0_a3_us": "ZAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.893494, -24.766785 ], [ 20.165405, -24.916331 ], [ 20.755920, -25.866638 ], [ 20.665283, -26.475490 ], [ 20.887756, -26.826522 ], [ 21.604614, -26.725987 ], [ 22.104492, -26.278640 ], [ 22.500000, -26.029638 ], [ 22.576904, -25.977799 ], [ 22.719727, -25.703413 ], [ 22.719727, -32.138409 ], [ 18.237305, -32.138409 ], [ 18.229065, -31.952162 ], [ 18.220825, -31.660395 ], [ 17.564392, -30.725310 ], [ 17.061768, -29.876374 ], [ 16.344910, -28.574874 ], [ 16.822815, -28.081674 ], [ 17.218323, -28.355151 ], [ 17.385864, -28.782104 ], [ 17.833557, -28.854296 ], [ 18.462524, -29.044164 ], [ 19.000854, -28.972104 ], [ 19.893494, -28.459033 ], [ 19.893494, -24.766785 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 17 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, -10.962764 ], [ 22.719727, -11.008601 ], [ 22.401123, -10.992424 ], [ 22.153931, -11.084080 ], [ 22.159424, -10.962764 ], [ 22.719727, -10.962764 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.159424, -10.962764 ], [ 22.153931, -11.084080 ], [ 22.401123, -10.992424 ], [ 22.719727, -11.008601 ], [ 22.719727, -12.902844 ], [ 22.500000, -12.900166 ], [ 21.931458, -12.897489 ], [ 21.887512, -16.080125 ], [ 22.500000, -16.820316 ], [ 22.560425, -16.896544 ], [ 22.719727, -17.048907 ], [ 22.719727, -17.630935 ], [ 22.500000, -17.680662 ], [ 21.376648, -17.929089 ], [ 18.954163, -17.787920 ], [ 18.262024, -17.308688 ], [ 14.208069, -17.350638 ], [ 14.057007, -17.421408 ], [ 13.460999, -16.970114 ], [ 12.812805, -16.941215 ], [ 12.214050, -17.109293 ], [ 11.733398, -17.300821 ], [ 11.640015, -16.673031 ], [ 11.777344, -15.792254 ], [ 12.123413, -14.875778 ], [ 12.175598, -14.447979 ], [ 12.499695, -13.547211 ], [ 12.735901, -13.135654 ], [ 13.312683, -12.482169 ], [ 13.631287, -12.036634 ], [ 13.738403, -11.296934 ], [ 13.727417, -11.178402 ], [ 13.705444, -10.962764 ], [ 22.159424, -10.962764 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Namibia", "sov_a3": "NAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Namibia", "adm0_a3": "NAM", "geou_dif": 0, "geounit": "Namibia", "gu_a3": "NAM", "su_dif": 0, "subunit": "Namibia", "su_a3": "NAM", "brk_diff": 0, "name": "Namibia", "name_long": "Namibia", "brk_a3": "NAM", "brk_name": "Namibia", "abbrev": "Nam.", "postal": "NA", "formal_en": "Republic of Namibia", "name_sort": "Namibia", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 2108665, "gdp_md_est": 13250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "NA", "iso_a3": "NAM", "iso_n3": "516", "un_a3": "516", "wb_a2": "NA", "wb_a3": "NAM", "woe_id": -99, "adm0_a3_is": "NAM", "adm0_a3_us": "NAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.812805, -16.941215 ], [ 13.460999, -16.970114 ], [ 14.057007, -17.421408 ], [ 14.208069, -17.350638 ], [ 18.262024, -17.308688 ], [ 18.954163, -17.787920 ], [ 21.376648, -17.929089 ], [ 22.500000, -17.680662 ], [ 22.719727, -17.630935 ], [ 22.719727, -17.976121 ], [ 22.500000, -18.025751 ], [ 21.654053, -18.218916 ], [ 20.909729, -18.250220 ], [ 20.879517, -21.813058 ], [ 19.893494, -21.848753 ], [ 19.893494, -22.146708 ], [ 14.265747, -22.146708 ], [ 14.257507, -22.111088 ], [ 14.098206, -21.943046 ], [ 13.867493, -21.698265 ], [ 13.351135, -20.871644 ], [ 12.826538, -19.671039 ], [ 12.606812, -19.043945 ], [ 11.793823, -18.067535 ], [ 11.733398, -17.300821 ], [ 12.214050, -17.109293 ], [ 12.812805, -16.941215 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.931458, -12.897489 ], [ 22.500000, -12.900166 ], [ 22.719727, -12.902844 ], [ 22.719727, -17.048907 ], [ 22.560425, -16.896544 ], [ 22.500000, -16.820316 ], [ 21.887512, -16.080125 ], [ 21.931458, -12.897489 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 22.719727, -17.976121 ], [ 22.719727, -22.146708 ], [ 19.893494, -22.146708 ], [ 19.893494, -21.848753 ], [ 20.879517, -21.813058 ], [ 20.909729, -18.250220 ], [ 21.654053, -18.218916 ], [ 22.500000, -18.025751 ], [ 22.719727, -17.976121 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 16 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Gabon", "sov_a3": "GAB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gabon", "adm0_a3": "GAB", "geou_dif": 0, "geounit": "Gabon", "gu_a3": "GAB", "su_dif": 0, "subunit": "Gabon", "su_a3": "GAB", "brk_diff": 0, "name": "Gabon", "name_long": "Gabon", "brk_a3": "GAB", "brk_name": "Gabon", "abbrev": "Gabon", "postal": "GA", "formal_en": "Gabonese Republic", "name_sort": "Gabon", "mapcolor7": 6, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 1514993, "gdp_md_est": 21110, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "GA", "iso_a3": "GAB", "iso_n3": "266", "un_a3": "266", "wb_a2": "GA", "wb_a3": "GAB", "woe_id": -99, "adm0_a3_is": "GAB", "adm0_a3_us": "GAB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": 3, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.908691, 0.219726 ], [ 13.842773, 0.041199 ], [ 13.872986, 0.000000 ], [ 14.315186, -0.552054 ], [ 14.425049, -1.331972 ], [ 14.298706, -1.996361 ], [ 13.991089, -2.468413 ], [ 13.109436, -2.427252 ], [ 12.573853, -1.946952 ], [ 12.494202, -2.391578 ], [ 11.818542, -2.512317 ], [ 11.477966, -2.764735 ], [ 11.854248, -3.425692 ], [ 11.250000, -3.864255 ], [ 11.093445, -3.976601 ], [ 11.030273, -3.916319 ], [ 11.030273, 0.219726 ], [ 13.908691, 0.219726 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.792358, 0.219726 ], [ 17.690735, 0.000000 ], [ 17.663269, -0.057678 ], [ 17.638550, -0.422970 ], [ 17.523193, -0.741556 ], [ 16.864014, -1.224882 ], [ 16.405334, -1.738320 ], [ 15.971375, -2.709866 ], [ 16.004333, -3.532611 ], [ 15.751648, -3.853293 ], [ 15.169373, -4.340934 ], [ 14.581604, -4.967824 ], [ 14.208069, -4.792680 ], [ 14.144897, -4.507976 ], [ 13.598328, -4.499762 ], [ 13.257751, -4.880258 ], [ 12.994080, -4.778995 ], [ 12.620544, -4.436782 ], [ 12.318420, -4.603803 ], [ 11.914673, -5.036227 ], [ 11.250000, -4.179333 ], [ 11.093445, -3.976601 ], [ 11.250000, -3.864255 ], [ 11.854248, -3.425692 ], [ 11.477966, -2.764735 ], [ 11.818542, -2.512317 ], [ 12.494202, -2.391578 ], [ 12.573853, -1.946952 ], [ 13.109436, -2.427252 ], [ 13.991089, -2.468413 ], [ 14.298706, -1.996361 ], [ 14.425049, -1.331972 ], [ 14.315186, -0.552054 ], [ 13.872986, 0.000000 ], [ 13.842773, 0.041199 ], [ 13.908691, 0.219726 ], [ 17.792358, 0.219726 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 0.219726 ], [ 22.719727, -11.008601 ], [ 22.500000, -10.997816 ], [ 22.401123, -10.992424 ], [ 22.153931, -11.084080 ], [ 22.206116, -9.893099 ], [ 21.873779, -9.522206 ], [ 21.799622, -8.906780 ], [ 21.947937, -8.303906 ], [ 21.744690, -7.917793 ], [ 21.725464, -7.288914 ], [ 20.514221, -7.297088 ], [ 20.599365, -6.937333 ], [ 20.091248, -6.942786 ], [ 20.036316, -7.114520 ], [ 19.415588, -7.155400 ], [ 19.165649, -7.735487 ], [ 19.014587, -7.985798 ], [ 18.462524, -7.844336 ], [ 18.132935, -7.985798 ], [ 17.471008, -8.067388 ], [ 17.089233, -7.544933 ], [ 16.858521, -7.220800 ], [ 16.572876, -6.620957 ], [ 16.325684, -5.875600 ], [ 13.373108, -5.861939 ], [ 13.024292, -5.982144 ], [ 12.733154, -5.963022 ], [ 12.321167, -6.099591 ], [ 12.181091, -5.788164 ], [ 12.436523, -5.681584 ], [ 12.466736, -5.246863 ], [ 12.631531, -4.989714 ], [ 12.994080, -4.778995 ], [ 13.257751, -4.880258 ], [ 13.598328, -4.499762 ], [ 14.144897, -4.507976 ], [ 14.208069, -4.792680 ], [ 14.581604, -4.967824 ], [ 15.169373, -4.340934 ], [ 15.751648, -3.853293 ], [ 16.004333, -3.532611 ], [ 15.971375, -2.709866 ], [ 16.405334, -1.738320 ], [ 16.864014, -1.224882 ], [ 17.523193, -0.741556 ], [ 17.638550, -0.422970 ], [ 17.663269, -0.057678 ], [ 17.690735, 0.000000 ], [ 17.792358, 0.219726 ], [ 22.719727, 0.219726 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.373108, -5.861939 ], [ 16.325684, -5.875600 ], [ 16.572876, -6.620957 ], [ 16.858521, -7.220800 ], [ 17.089233, -7.544933 ], [ 17.471008, -8.067388 ], [ 18.132935, -7.985798 ], [ 18.462524, -7.844336 ], [ 19.014587, -7.985798 ], [ 19.165649, -7.735487 ], [ 19.415588, -7.155400 ], [ 20.036316, -7.114520 ], [ 20.091248, -6.942786 ], [ 20.599365, -6.937333 ], [ 20.514221, -7.297088 ], [ 21.725464, -7.288914 ], [ 21.744690, -7.917793 ], [ 21.947937, -8.303906 ], [ 21.799622, -8.906780 ], [ 21.873779, -9.522206 ], [ 22.206116, -9.893099 ], [ 22.153931, -11.084080 ], [ 22.401123, -10.992424 ], [ 22.500000, -10.997816 ], [ 22.719727, -11.008601 ], [ 22.719727, -11.393879 ], [ 13.724670, -11.393879 ], [ 13.738403, -11.296934 ], [ 13.727417, -11.178402 ], [ 13.686218, -10.730778 ], [ 13.386841, -10.371660 ], [ 13.120422, -9.765904 ], [ 12.873230, -9.164467 ], [ 12.928162, -8.958332 ], [ 13.235779, -8.562010 ], [ 12.930908, -7.593940 ], [ 12.727661, -6.926427 ], [ 12.225037, -6.293459 ], [ 12.321167, -6.099591 ], [ 12.733154, -5.963022 ], [ 13.024292, -5.982144 ], [ 13.373108, -5.861939 ] ] ], [ [ [ 12.620544, -4.436782 ], [ 12.994080, -4.778995 ], [ 12.631531, -4.989714 ], [ 12.466736, -5.246863 ], [ 12.436523, -5.681584 ], [ 12.181091, -5.788164 ], [ 11.914673, -5.036227 ], [ 12.318420, -4.603803 ], [ 12.620544, -4.436782 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.219055, 11.393879 ], [ 13.985596, 11.178402 ], [ 13.570862, 10.800933 ], [ 13.307190, 10.160857 ], [ 13.167114, 9.641369 ], [ 12.952881, 9.419258 ], [ 12.752380, 8.719503 ], [ 12.216797, 8.306624 ], [ 12.062988, 7.800800 ], [ 11.837769, 7.397877 ], [ 11.744385, 6.983681 ], [ 11.250000, 6.738259 ], [ 11.057739, 6.645511 ], [ 11.030273, 6.667336 ], [ 11.030273, 11.393879 ], [ 14.219055, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Equatorial Guinea", "sov_a3": "GNQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Equatorial Guinea", "adm0_a3": "GNQ", "geou_dif": 0, "geounit": "Equatorial Guinea", "gu_a3": "GNQ", "su_dif": 0, "subunit": "Equatorial Guinea", "su_a3": "GNQ", "brk_diff": 0, "name": "Eq. Guinea", "name_long": "Equatorial Guinea", "brk_a3": "GNQ", "brk_name": "Eq. Guinea", "abbrev": "Eq. G.", "postal": "GQ", "formal_en": "Republic of Equatorial Guinea", "name_sort": "Equatorial Guinea", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 650702, "gdp_md_est": 14060, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "7. Least developed region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GQ", "iso_a3": "GNQ", "iso_n3": "226", "un_a3": "226", "wb_a2": "GQ", "wb_a3": "GNQ", "woe_id": -99, "adm0_a3_is": "GNQ", "adm0_a3_us": "GNQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 17, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.030273, 2.265340 ], [ 11.250000, 2.262595 ], [ 11.274719, 2.262595 ], [ 11.282959, 1.060120 ], [ 11.030273, 1.060120 ], [ 11.030273, 2.265340 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 11.393879 ], [ 22.719727, 11.105642 ], [ 22.500000, 11.046343 ], [ 22.230835, 10.973550 ], [ 21.722717, 10.568822 ], [ 21.000366, 9.476154 ], [ 20.058289, 9.015302 ], [ 19.091492, 9.074976 ], [ 18.811340, 8.985462 ], [ 18.910217, 8.632619 ], [ 18.388367, 8.282163 ], [ 17.962646, 7.893309 ], [ 16.704712, 7.509535 ], [ 16.454773, 7.735487 ], [ 16.289978, 7.754537 ], [ 16.105957, 7.498643 ], [ 15.279236, 7.422389 ], [ 15.435791, 7.694661 ], [ 15.119934, 8.382714 ], [ 14.979858, 8.798225 ], [ 14.543152, 8.966471 ], [ 13.952637, 9.552000 ], [ 14.169617, 10.022948 ], [ 14.625549, 9.922860 ], [ 14.908447, 9.993196 ], [ 15.466003, 9.982376 ], [ 14.922180, 10.892648 ], [ 14.938660, 11.178402 ], [ 14.949646, 11.393879 ], [ 22.719727, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.949646, 11.393879 ], [ 14.938660, 11.178402 ], [ 14.922180, 10.892648 ], [ 15.466003, 9.982376 ], [ 14.908447, 9.993196 ], [ 14.625549, 9.922860 ], [ 14.169617, 10.022948 ], [ 13.952637, 9.552000 ], [ 14.543152, 8.966471 ], [ 14.979858, 8.798225 ], [ 15.119934, 8.382714 ], [ 15.435791, 7.694661 ], [ 15.279236, 7.422389 ], [ 14.773865, 6.410837 ], [ 14.534912, 6.227934 ], [ 14.458008, 5.451959 ], [ 14.556885, 5.030755 ], [ 14.477234, 4.735201 ], [ 14.949646, 4.212204 ], [ 15.034790, 3.853293 ], [ 15.402832, 3.337954 ], [ 15.861511, 3.014356 ], [ 15.905457, 2.558963 ], [ 16.012573, 2.268084 ], [ 15.938416, 1.730084 ], [ 15.144653, 1.966167 ], [ 14.337158, 2.229662 ], [ 13.073730, 2.268084 ], [ 12.950134, 2.322972 ], [ 12.356873, 2.193983 ], [ 11.749878, 2.328460 ], [ 11.274719, 2.262595 ], [ 11.250000, 2.262595 ], [ 11.030273, 2.265340 ], [ 11.030273, 6.667336 ], [ 11.057739, 6.645511 ], [ 11.250000, 6.738259 ], [ 11.744385, 6.983681 ], [ 11.837769, 7.397877 ], [ 12.062988, 7.800800 ], [ 12.216797, 8.306624 ], [ 12.752380, 8.719503 ], [ 12.952881, 9.419258 ], [ 13.167114, 9.641369 ], [ 13.307190, 10.160857 ], [ 13.570862, 10.800933 ], [ 13.985596, 11.178402 ], [ 14.219055, 11.393879 ], [ 14.949646, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 11.105642 ], [ 22.719727, 4.642130 ], [ 22.703247, 4.633917 ], [ 22.500000, 4.223161 ], [ 22.403870, 4.031399 ], [ 21.656799, 4.225900 ], [ 20.926208, 4.324501 ], [ 20.289001, 4.694142 ], [ 19.467773, 5.033491 ], [ 18.932190, 4.710566 ], [ 18.542175, 4.203986 ], [ 18.451538, 3.505197 ], [ 17.808838, 3.562765 ], [ 17.130432, 3.729968 ], [ 16.534424, 3.200848 ], [ 16.012573, 2.268084 ], [ 15.905457, 2.558963 ], [ 15.861511, 3.014356 ], [ 15.402832, 3.337954 ], [ 15.034790, 3.853293 ], [ 14.949646, 4.212204 ], [ 14.477234, 4.735201 ], [ 14.556885, 5.030755 ], [ 14.458008, 5.451959 ], [ 14.534912, 6.227934 ], [ 14.773865, 6.410837 ], [ 15.279236, 7.422389 ], [ 16.105957, 7.498643 ], [ 16.289978, 7.754537 ], [ 16.454773, 7.735487 ], [ 16.704712, 7.509535 ], [ 17.962646, 7.893309 ], [ 18.388367, 8.282163 ], [ 18.910217, 8.632619 ], [ 18.811340, 8.985462 ], [ 19.091492, 9.074976 ], [ 20.058289, 9.015302 ], [ 21.000366, 9.476154 ], [ 21.722717, 10.568822 ], [ 22.230835, 10.973550 ], [ 22.500000, 11.046343 ], [ 22.719727, 11.105642 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Gabon", "sov_a3": "GAB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gabon", "adm0_a3": "GAB", "geou_dif": 0, "geounit": "Gabon", "gu_a3": "GAB", "su_dif": 0, "subunit": "Gabon", "su_a3": "GAB", "brk_diff": 0, "name": "Gabon", "name_long": "Gabon", "brk_a3": "GAB", "brk_name": "Gabon", "abbrev": "Gabon", "postal": "GA", "formal_en": "Gabonese Republic", "name_sort": "Gabon", "mapcolor7": 6, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 1514993, "gdp_md_est": 21110, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "GA", "iso_a3": "GAB", "iso_n3": "266", "un_a3": "266", "wb_a2": "GA", "wb_a3": "GAB", "woe_id": -99, "adm0_a3_is": "GAB", "adm0_a3_us": "GAB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": 3, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.749878, 2.328460 ], [ 12.356873, 2.193983 ], [ 12.950134, 2.322972 ], [ 13.073730, 2.268084 ], [ 13.002319, 1.831658 ], [ 13.282471, 1.315497 ], [ 14.024048, 1.397872 ], [ 14.273987, 1.197423 ], [ 13.842773, 0.041199 ], [ 13.872986, 0.000000 ], [ 14.048767, -0.219726 ], [ 11.030273, -0.219726 ], [ 11.030273, 1.060120 ], [ 11.282959, 1.060120 ], [ 11.274719, 2.262595 ], [ 11.749878, 2.328460 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.130432, 3.729968 ], [ 17.808838, 3.562765 ], [ 18.451538, 3.505197 ], [ 18.391113, 2.901896 ], [ 18.091736, 2.366880 ], [ 17.896729, 1.743810 ], [ 17.773132, 0.856902 ], [ 17.825317, 0.291136 ], [ 17.690735, 0.000000 ], [ 17.663269, -0.057678 ], [ 17.652283, -0.219726 ], [ 14.048767, -0.219726 ], [ 13.872986, 0.000000 ], [ 13.842773, 0.041199 ], [ 14.273987, 1.197423 ], [ 14.024048, 1.397872 ], [ 13.282471, 1.315497 ], [ 13.002319, 1.831658 ], [ 13.073730, 2.268084 ], [ 14.337158, 2.229662 ], [ 15.144653, 1.966167 ], [ 15.938416, 1.730084 ], [ 16.012573, 2.268084 ], [ 16.534424, 3.200848 ], [ 17.130432, 3.729968 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.467773, 5.033491 ], [ 20.289001, 4.694142 ], [ 20.926208, 4.324501 ], [ 21.656799, 4.225900 ], [ 22.403870, 4.031399 ], [ 22.500000, 4.223161 ], [ 22.703247, 4.633917 ], [ 22.719727, 4.642130 ], [ 22.719727, -0.219726 ], [ 17.652283, -0.219726 ], [ 17.663269, -0.057678 ], [ 17.690735, 0.000000 ], [ 17.825317, 0.291136 ], [ 17.773132, 0.856902 ], [ 17.896729, 1.743810 ], [ 18.091736, 2.366880 ], [ 18.391113, 2.901896 ], [ 18.451538, 3.505197 ], [ 18.542175, 4.203986 ], [ 18.932190, 4.710566 ], [ 19.467773, 5.033491 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 22.146708 ], [ 22.719727, 20.120419 ], [ 22.500000, 20.226120 ], [ 19.846802, 21.496519 ], [ 18.918457, 21.943046 ], [ 18.495483, 22.146708 ], [ 22.719727, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.963379, 22.146708 ], [ 14.996338, 21.943046 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.048618 ], [ 15.485229, 20.730428 ], [ 15.902710, 20.388400 ], [ 15.685730, 19.957860 ], [ 15.298462, 17.929089 ], [ 15.246277, 16.628297 ], [ 13.971863, 15.686510 ], [ 13.537903, 14.368173 ], [ 13.955383, 13.998037 ], [ 13.952637, 13.354882 ], [ 14.595337, 13.330830 ], [ 14.493713, 12.860004 ], [ 14.210815, 12.803767 ], [ 14.180603, 12.484850 ], [ 13.993835, 12.463396 ], [ 13.318176, 13.557892 ], [ 13.081970, 13.597939 ], [ 12.301941, 13.039345 ], [ 11.527405, 13.330830 ], [ 11.250000, 13.360227 ], [ 11.030273, 13.384276 ], [ 11.030273, 22.146708 ], [ 14.963379, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.081970, 13.597939 ], [ 13.318176, 13.557892 ], [ 13.993835, 12.463396 ], [ 14.180603, 12.484850 ], [ 14.576111, 12.087667 ], [ 14.466248, 11.904979 ], [ 14.414062, 11.574216 ], [ 13.985596, 11.178402 ], [ 13.749390, 10.962764 ], [ 11.030273, 10.962764 ], [ 11.030273, 13.384276 ], [ 11.250000, 13.360227 ], [ 11.527405, 13.330830 ], [ 12.301941, 13.039345 ], [ 13.081970, 13.597939 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.495483, 22.146708 ], [ 18.918457, 21.943046 ], [ 19.846802, 21.496519 ], [ 22.500000, 20.226120 ], [ 22.719727, 20.120419 ], [ 22.719727, 15.191434 ], [ 22.565918, 14.944785 ], [ 22.500000, 14.788161 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.107276 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.083301 ], [ 22.181396, 13.787404 ], [ 22.294006, 13.373588 ], [ 22.035828, 12.956383 ], [ 21.934204, 12.589413 ], [ 22.285767, 12.648378 ], [ 22.497253, 12.262180 ], [ 22.500000, 12.136005 ], [ 22.508240, 11.681825 ], [ 22.719727, 11.512322 ], [ 22.719727, 11.105642 ], [ 22.230835, 10.973550 ], [ 22.217102, 10.962764 ], [ 14.924927, 10.962764 ], [ 14.938660, 11.178402 ], [ 14.957886, 11.558071 ], [ 14.891968, 12.219233 ], [ 14.493713, 12.860004 ], [ 14.595337, 13.330830 ], [ 13.952637, 13.354882 ], [ 13.955383, 13.998037 ], [ 13.537903, 14.368173 ], [ 13.971863, 15.686510 ], [ 15.246277, 16.628297 ], [ 15.298462, 17.929089 ], [ 15.685730, 19.957860 ], [ 15.902710, 20.388400 ], [ 15.485229, 20.730428 ], [ 15.468750, 21.048618 ], [ 15.095215, 21.309846 ], [ 14.996338, 21.943046 ], [ 14.963379, 22.146708 ], [ 18.495483, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.493713, 12.860004 ], [ 14.891968, 12.219233 ], [ 14.957886, 11.558071 ], [ 14.938660, 11.178402 ], [ 14.924927, 10.962764 ], [ 13.749390, 10.962764 ], [ 13.985596, 11.178402 ], [ 14.414062, 11.574216 ], [ 14.466248, 11.904979 ], [ 14.576111, 12.087667 ], [ 14.180603, 12.484850 ], [ 14.210815, 12.803767 ], [ 14.493713, 12.860004 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 11.105642 ], [ 22.719727, 10.962764 ], [ 22.217102, 10.962764 ], [ 22.230835, 10.973550 ], [ 22.719727, 11.105642 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 22.719727, 15.191434 ], [ 22.719727, 11.512322 ], [ 22.508240, 11.681825 ], [ 22.500000, 12.136005 ], [ 22.497253, 12.262180 ], [ 22.285767, 12.648378 ], [ 21.934204, 12.589413 ], [ 22.035828, 12.956383 ], [ 22.294006, 13.373588 ], [ 22.181396, 13.787404 ], [ 22.500000, 14.083301 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.107276 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.788161 ], [ 22.565918, 14.944785 ], [ 22.719727, 15.191434 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Tunisia", "sov_a3": "TUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tunisia", "adm0_a3": "TUN", "geou_dif": 0, "geounit": "Tunisia", "gu_a3": "TUN", "su_dif": 0, "subunit": "Tunisia", "su_a3": "TUN", "brk_diff": 0, "name": "Tunisia", "name_long": "Tunisia", "brk_a3": "TUN", "brk_name": "Tunisia", "abbrev": "Tun.", "postal": "TN", "formal_en": "Republic of Tunisia", "name_sort": "Tunisia", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 10486339, "gdp_md_est": 81710, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TN", "iso_a3": "TUN", "iso_n3": "788", "un_a3": "788", "wb_a2": "TN", "wb_a3": "TUN", "woe_id": -99, "adm0_a3_is": "TUN", "adm0_a3_us": "TUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.038513, 32.138409 ], [ 11.030273, 32.133757 ], [ 11.030273, 32.138409 ], [ 11.038513, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.030273, 24.412140 ], [ 11.250000, 24.282020 ], [ 11.560364, 24.099126 ], [ 11.997070, 23.473324 ], [ 11.250000, 23.059516 ], [ 11.030273, 22.935630 ], [ 11.030273, 24.412140 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 32.138409 ], [ 22.719727, 21.739091 ], [ 19.341431, 21.739091 ], [ 18.918457, 21.943046 ], [ 15.858765, 23.410327 ], [ 14.850769, 22.864787 ], [ 14.142151, 22.492257 ], [ 13.579102, 23.041825 ], [ 11.997070, 23.473324 ], [ 11.560364, 24.099126 ], [ 11.250000, 24.282020 ], [ 11.030273, 24.412140 ], [ 11.030273, 32.133757 ], [ 11.038513, 32.138409 ], [ 15.312195, 32.138409 ], [ 15.408325, 31.952162 ], [ 15.713196, 31.377089 ], [ 16.611328, 31.182259 ], [ 18.020325, 30.765439 ], [ 19.085999, 30.268556 ], [ 19.572144, 30.526779 ], [ 20.052795, 30.987028 ], [ 19.819336, 31.753861 ], [ 19.948425, 31.952162 ], [ 20.069275, 32.138409 ], [ 22.719727, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.997070, 23.473324 ], [ 13.579102, 23.041825 ], [ 14.142151, 22.492257 ], [ 14.850769, 22.864787 ], [ 14.996338, 21.943046 ], [ 15.026550, 21.739091 ], [ 11.030273, 21.739091 ], [ 11.030273, 22.935630 ], [ 11.250000, 23.059516 ], [ 11.997070, 23.473324 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.858765, 23.410327 ], [ 18.918457, 21.943046 ], [ 19.341431, 21.739091 ], [ 15.026550, 21.739091 ], [ 14.996338, 21.943046 ], [ 14.850769, 22.864787 ], [ 15.858765, 23.410327 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.518188, 38.231708 ], [ 15.158386, 37.444335 ], [ 15.309448, 37.136235 ], [ 15.097961, 36.622141 ], [ 14.334412, 36.998166 ], [ 13.826294, 37.105575 ], [ 12.428284, 37.614231 ], [ 12.568359, 38.128075 ], [ 13.741150, 38.035112 ], [ 14.760132, 38.145358 ], [ 15.518188, 38.231708 ] ] ], [ [ [ 16.866760, 41.145570 ], [ 17.267761, 40.979898 ], [ 17.517700, 40.878218 ], [ 18.374634, 40.357010 ], [ 18.479004, 40.170479 ], [ 18.292236, 39.812756 ], [ 17.737427, 40.279526 ], [ 16.869507, 40.442767 ], [ 16.446533, 39.795876 ], [ 17.168884, 39.425586 ], [ 17.050781, 38.903858 ], [ 16.633301, 38.843986 ], [ 16.100464, 37.987504 ], [ 15.682983, 37.909534 ], [ 15.685730, 38.216604 ], [ 15.891724, 38.751941 ], [ 16.108704, 38.965816 ], [ 15.718689, 39.544294 ], [ 15.411072, 40.048643 ], [ 14.996338, 40.174676 ], [ 14.702454, 40.605612 ], [ 14.059753, 40.786780 ], [ 13.851013, 40.979898 ], [ 13.672485, 41.145570 ], [ 16.866760, 41.145570 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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.582886, 41.145570 ], [ 20.604858, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.019592, 40.842905 ], [ 20.997620, 40.580585 ], [ 20.673523, 40.436495 ], [ 20.613098, 40.111689 ], [ 20.148926, 39.626846 ], [ 19.978638, 39.696621 ], [ 19.959412, 39.916056 ], [ 19.404602, 40.252280 ], [ 19.316711, 40.728527 ], [ 19.349670, 40.979898 ], [ 19.368896, 41.145570 ], [ 20.582886, 41.145570 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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": "MultiPolygon", "coordinates": [ [ [ [ 22.046814, 41.145570 ], [ 21.758423, 40.979898 ], [ 21.673279, 40.932190 ], [ 21.019592, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.087632 ], [ 20.582886, 41.145570 ], [ 22.046814, 41.145570 ] ] ], [ [ [ 22.609863, 41.145570 ], [ 22.596130, 41.131090 ], [ 22.173157, 41.145570 ], [ 22.609863, 41.145570 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Tunisia", "sov_a3": "TUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tunisia", "adm0_a3": "TUN", "geou_dif": 0, "geounit": "Tunisia", "gu_a3": "TUN", "su_dif": 0, "subunit": "Tunisia", "su_a3": "TUN", "brk_diff": 0, "name": "Tunisia", "name_long": "Tunisia", "brk_a3": "TUN", "brk_name": "Tunisia", "abbrev": "Tun.", "postal": "TN", "formal_en": "Republic of Tunisia", "name_sort": "Tunisia", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 10486339, "gdp_md_est": 81710, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TN", "iso_a3": "TUN", "iso_n3": "788", "un_a3": "788", "wb_a2": "TN", "wb_a3": "TUN", "woe_id": -99, "adm0_a3_is": "TUN", "adm0_a3_us": "TUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.030273, 33.442901 ], [ 11.107178, 33.293804 ], [ 11.250000, 33.236390 ], [ 11.486206, 33.137551 ], [ 11.431274, 32.370683 ], [ 11.250000, 32.263911 ], [ 11.030273, 32.133757 ], [ 11.030273, 33.442901 ] ] ], [ [ [ 11.030273, 36.833470 ], [ 11.030273, 37.090240 ], [ 11.098938, 36.901587 ], [ 11.030273, 36.833470 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.486206, 33.137551 ], [ 12.661743, 32.794201 ], [ 13.081970, 32.879587 ], [ 13.916931, 32.713355 ], [ 15.243530, 32.266233 ], [ 15.408325, 31.952162 ], [ 15.507202, 31.765537 ], [ 11.030273, 31.765537 ], [ 11.030273, 32.133757 ], [ 11.250000, 32.263911 ], [ 11.431274, 32.370683 ], [ 11.486206, 33.137551 ] ] ], [ [ [ 22.500000, 32.699489 ], [ 22.719727, 32.667125 ], [ 22.719727, 31.765537 ], [ 19.827576, 31.765537 ], [ 19.948425, 31.952162 ], [ 20.132446, 32.238359 ], [ 20.852051, 32.708733 ], [ 21.541443, 32.844981 ], [ 22.500000, 32.699489 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "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": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 41.145570 ], [ 22.719727, 40.367474 ], [ 22.623596, 40.258569 ], [ 22.719727, 40.008683 ], [ 22.719727, 36.414652 ], [ 22.500000, 36.410231 ], [ 22.489014, 36.410231 ], [ 21.667786, 36.846659 ], [ 21.294250, 37.646859 ], [ 21.118469, 38.311491 ], [ 20.728455, 38.771216 ], [ 20.217590, 39.340670 ], [ 20.148926, 39.626846 ], [ 20.613098, 40.111689 ], [ 20.673523, 40.436495 ], [ 20.997620, 40.580585 ], [ 21.019592, 40.842905 ], [ 21.673279, 40.932190 ], [ 21.758423, 40.979898 ], [ 22.046814, 41.145570 ], [ 22.173157, 41.145570 ], [ 22.596130, 41.131090 ], [ 22.609863, 41.145570 ], [ 22.719727, 41.145570 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.345642, 49.066668 ], [ 13.535156, 48.922499 ], [ 13.595581, 48.877361 ], [ 13.241272, 48.416442 ], [ 12.881470, 48.290503 ], [ 13.024292, 47.637634 ], [ 12.930908, 47.468950 ], [ 12.620544, 47.672786 ], [ 12.139893, 47.704217 ], [ 11.425781, 47.524620 ], [ 11.250000, 47.533893 ], [ 11.030273, 47.543164 ], [ 11.030273, 49.066668 ], [ 13.345642, 49.066668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Czech Republic", "sov_a3": "CZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Czech Republic", "adm0_a3": "CZE", "geou_dif": 0, "geounit": "Czech Republic", "gu_a3": "CZE", "su_dif": 0, "subunit": "Czech Republic", "su_a3": "CZE", "brk_diff": 0, "name": "Czech Rep.", "name_long": "Czech Republic", "brk_a3": "CZE", "brk_name": "Czech Rep.", "abbrev": "Cz. Rep.", "postal": "CZ", "formal_en": "Czech Republic", "name_sort": "Czech Republic", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 10211904, "gdp_md_est": 265200, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CZ", "iso_a3": "CZE", "iso_n3": "203", "un_a3": "203", "wb_a2": "CZ", "wb_a3": "CZE", "woe_id": -99, "adm0_a3_is": "CZE", "adm0_a3_us": "CZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 14, "abbrev_len": 8, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.110962, 49.066668 ], [ 18.102722, 49.045070 ], [ 17.913208, 48.998240 ], [ 17.891235, 48.922499 ], [ 17.885742, 48.904449 ], [ 17.542419, 48.801436 ], [ 17.100220, 48.817716 ], [ 16.960144, 48.598409 ], [ 16.498718, 48.786962 ], [ 16.029053, 48.734455 ], [ 15.548401, 48.922499 ], [ 15.251770, 49.039668 ], [ 14.900208, 48.965794 ], [ 14.842529, 48.922499 ], [ 14.337158, 48.556614 ], [ 13.595581, 48.877361 ], [ 13.535156, 48.922499 ], [ 13.345642, 49.066668 ], [ 18.110962, 49.066668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Poland", "sov_a3": "POL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Poland", "adm0_a3": "POL", "geou_dif": 0, "geounit": "Poland", "gu_a3": "POL", "su_dif": 0, "subunit": "Poland", "su_a3": "POL", "brk_diff": 0, "name": "Poland", "name_long": "Poland", "brk_a3": "POL", "brk_name": "Poland", "abbrev": "Pol.", "postal": "PL", "formal_en": "Republic of Poland", "name_sort": "Poland", "mapcolor7": 3, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 38482919, "gdp_md_est": 667900, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PL", "iso_a3": "POL", "iso_n3": "616", "un_a3": "616", "wb_a2": "PL", "wb_a3": "POL", "woe_id": -99, "adm0_a3_is": "POL", "adm0_a3_us": "POL", "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": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 49.066668 ], [ 22.719727, 49.043269 ], [ 22.629089, 49.066668 ], [ 22.719727, 49.066668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Austria", "sov_a3": "AUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Austria", "adm0_a3": "AUT", "geou_dif": 0, "geounit": "Austria", "gu_a3": "AUT", "su_dif": 0, "subunit": "Austria", "su_a3": "AUT", "brk_diff": 0, "name": "Austria", "name_long": "Austria", "brk_a3": "AUT", "brk_name": "Austria", "abbrev": "Aust.", "postal": "A", "formal_en": "Republic of Austria", "name_sort": "Austria", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 8210281, "gdp_md_est": 329500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AT", "iso_a3": "AUT", "iso_n3": "040", "un_a3": "040", "wb_a2": "AT", "wb_a3": "AUT", "woe_id": -99, "adm0_a3_is": "AUT", "adm0_a3_us": "AUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.251770, 49.039668 ], [ 15.548401, 48.922499 ], [ 16.029053, 48.734455 ], [ 16.498718, 48.786962 ], [ 16.960144, 48.598409 ], [ 16.877747, 48.471100 ], [ 16.979370, 48.123934 ], [ 16.902466, 47.715306 ], [ 16.339417, 47.713458 ], [ 16.531677, 47.496792 ], [ 16.202087, 46.852678 ], [ 16.009827, 46.685247 ], [ 15.136414, 46.658862 ], [ 14.631042, 46.432178 ], [ 13.804321, 46.509735 ], [ 12.376099, 46.768087 ], [ 12.150879, 47.116869 ], [ 11.250000, 46.957761 ], [ 11.162109, 46.942762 ], [ 11.046753, 46.753035 ], [ 11.030273, 46.756798 ], [ 11.030273, 47.543164 ], [ 11.250000, 47.533893 ], [ 11.425781, 47.524620 ], [ 12.139893, 47.704217 ], [ 12.620544, 47.672786 ], [ 12.930908, 47.468950 ], [ 13.024292, 47.637634 ], [ 12.881470, 48.290503 ], [ 13.241272, 48.416442 ], [ 13.595581, 48.877361 ], [ 14.337158, 48.556614 ], [ 14.842529, 48.922499 ], [ 14.900208, 48.965794 ], [ 15.251770, 49.039668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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.202087, 46.852678 ], [ 16.369629, 46.841407 ], [ 16.564636, 46.504064 ], [ 15.768127, 46.238752 ], [ 15.669250, 45.834540 ], [ 15.323181, 45.733025 ], [ 15.325928, 45.452424 ], [ 14.933167, 45.473614 ], [ 14.592590, 45.635167 ], [ 14.411316, 45.467836 ], [ 13.713684, 45.500572 ], [ 13.936157, 45.592900 ], [ 13.697205, 46.017946 ], [ 13.804321, 46.509735 ], [ 14.631042, 46.432178 ], [ 15.136414, 46.658862 ], [ 16.009827, 46.685247 ], [ 16.202087, 46.852678 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.150879, 47.116869 ], [ 12.376099, 46.768087 ], [ 13.804321, 46.509735 ], [ 13.697205, 46.017946 ], [ 13.936157, 45.592900 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.381592, 44.887012 ], [ 12.260742, 44.602202 ], [ 12.587585, 44.091531 ], [ 13.524170, 43.588349 ], [ 14.029541, 42.761129 ], [ 15.141907, 41.955405 ], [ 15.924683, 41.961532 ], [ 16.169128, 41.740578 ], [ 15.888977, 41.541478 ], [ 17.267761, 40.979898 ], [ 17.517700, 40.878218 ], [ 17.622070, 40.813809 ], [ 14.029541, 40.813809 ], [ 13.851013, 40.979898 ], [ 13.625793, 41.188989 ], [ 12.886963, 41.255097 ], [ 12.104187, 41.705729 ], [ 11.250000, 42.315909 ], [ 11.189575, 42.356514 ], [ 11.030273, 42.494378 ], [ 11.030273, 46.756798 ], [ 11.046753, 46.753035 ], [ 11.162109, 46.942762 ], [ 11.250000, 46.957761 ], [ 12.150879, 47.116869 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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": "Polygon", "coordinates": [ [ [ 16.564636, 46.504064 ], [ 16.880493, 46.381044 ], [ 17.627563, 45.953059 ], [ 18.454285, 45.759859 ], [ 18.827820, 45.909122 ], [ 19.072266, 45.521744 ], [ 19.388123, 45.238152 ], [ 19.003601, 44.861710 ], [ 18.553162, 45.083218 ], [ 17.861023, 45.069641 ], [ 17.001343, 45.234283 ], [ 16.534424, 45.213004 ], [ 16.317444, 45.005593 ], [ 15.957642, 45.234283 ], [ 15.748901, 44.818864 ], [ 16.237793, 44.351350 ], [ 16.454773, 44.042193 ], [ 16.913452, 43.667872 ], [ 17.295227, 43.446937 ], [ 17.674255, 43.028745 ], [ 18.558655, 42.650122 ], [ 18.448792, 42.480200 ], [ 17.509460, 42.851806 ], [ 16.929932, 43.211182 ], [ 16.015320, 43.508721 ], [ 15.172119, 44.243231 ], [ 15.375366, 44.317953 ], [ 14.919434, 44.738930 ], [ 14.900208, 45.077400 ], [ 14.257507, 45.234283 ], [ 13.949890, 44.803276 ], [ 13.656006, 45.137493 ], [ 13.677979, 45.485169 ], [ 13.713684, 45.500572 ], [ 14.411316, 45.467836 ], [ 14.592590, 45.635167 ], [ 14.933167, 45.473614 ], [ 15.325928, 45.452424 ], [ 15.323181, 45.733025 ], [ 15.669250, 45.834540 ], [ 15.768127, 46.238752 ], [ 16.564636, 46.504064 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Hungary", "sov_a3": "HUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Hungary", "adm0_a3": "HUN", "geou_dif": 0, "geounit": "Hungary", "gu_a3": "HUN", "su_dif": 0, "subunit": "Hungary", "su_a3": "HUN", "brk_diff": 0, "name": "Hungary", "name_long": "Hungary", "brk_a3": "HUN", "brk_name": "Hungary", "abbrev": "Hun.", "postal": "HU", "formal_en": "Republic of Hungary", "name_sort": "Hungary", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 9905596, "gdp_md_est": 196600, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "HU", "iso_a3": "HUN", "iso_n3": "348", "un_a3": "348", "wb_a2": "HU", "wb_a3": "HUN", "woe_id": -99, "adm0_a3_is": "HUN", "adm0_a3_us": "HUN", "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": "Polygon", "coordinates": [ [ [ 20.799866, 48.625647 ], [ 21.871033, 48.321560 ], [ 22.085266, 48.423733 ], [ 22.500000, 48.221013 ], [ 22.640076, 48.151428 ], [ 22.708740, 47.883197 ], [ 22.500000, 47.811310 ], [ 22.098999, 47.672786 ], [ 21.623840, 46.995241 ], [ 21.019592, 46.316584 ], [ 20.217590, 46.128460 ], [ 19.594116, 46.172223 ], [ 18.827820, 45.909122 ], [ 18.454285, 45.759859 ], [ 17.627563, 45.953059 ], [ 16.880493, 46.381044 ], [ 16.564636, 46.504064 ], [ 16.369629, 46.841407 ], [ 16.202087, 46.852678 ], [ 16.531677, 47.496792 ], [ 16.339417, 47.713458 ], [ 16.902466, 47.715306 ], [ 16.979370, 48.123934 ], [ 17.487488, 47.868459 ], [ 17.855530, 47.759637 ], [ 18.695984, 47.881355 ], [ 18.775635, 48.083584 ], [ 19.173889, 48.112933 ], [ 19.660034, 48.266741 ], [ 19.767151, 48.202710 ], [ 20.236816, 48.328865 ], [ 20.473022, 48.563885 ], [ 20.799866, 48.625647 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.535706, 49.066668 ], [ 22.381897, 48.922499 ], [ 22.280273, 48.826757 ], [ 22.085266, 48.423733 ], [ 21.871033, 48.321560 ], [ 20.799866, 48.625647 ], [ 20.473022, 48.563885 ], [ 20.236816, 48.328865 ], [ 19.767151, 48.202710 ], [ 19.660034, 48.266741 ], [ 19.173889, 48.112933 ], [ 18.775635, 48.083584 ], [ 18.695984, 47.881355 ], [ 17.855530, 47.759637 ], [ 17.487488, 47.868459 ], [ 16.979370, 48.123934 ], [ 16.877747, 48.471100 ], [ 17.100220, 48.817716 ], [ 17.542419, 48.801436 ], [ 17.885742, 48.904449 ], [ 17.891235, 48.922499 ], [ 17.913208, 48.998240 ], [ 18.102722, 49.045070 ], [ 18.110962, 49.066668 ], [ 22.535706, 49.066668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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.001343, 45.234283 ], [ 17.861023, 45.069641 ], [ 18.553162, 45.083218 ], [ 19.003601, 44.861710 ], [ 19.366150, 44.863656 ], [ 19.116211, 44.423973 ], [ 19.599609, 44.040219 ], [ 19.451294, 43.568452 ], [ 19.217834, 43.524655 ], [ 19.031067, 43.432977 ], [ 18.704224, 43.201172 ], [ 18.558655, 42.650122 ], [ 17.674255, 43.028745 ], [ 17.295227, 43.446937 ], [ 16.913452, 43.667872 ], [ 16.454773, 44.042193 ], [ 16.237793, 44.351350 ], [ 15.748901, 44.818864 ], [ 15.957642, 45.234283 ], [ 16.317444, 45.005593 ], [ 16.534424, 45.213004 ], [ 17.001343, 45.234283 ] ] ] } } +, +{ "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.217834, 43.524655 ], [ 19.481506, 43.353144 ], [ 19.629822, 43.215185 ], [ 19.956665, 43.106999 ], [ 20.338440, 42.900113 ], [ 20.256042, 42.813537 ], [ 20.069275, 42.589489 ], [ 19.800110, 42.500453 ], [ 19.736938, 42.688492 ], [ 19.302979, 42.195969 ], [ 19.371643, 41.877741 ], [ 19.160156, 41.955405 ], [ 18.880005, 42.283405 ], [ 18.448792, 42.480200 ], [ 18.558655, 42.650122 ], [ 18.704224, 43.201172 ], [ 19.031067, 43.432977 ], [ 19.217834, 43.524655 ] ] ] } } +, +{ "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.594116, 46.172223 ], [ 20.217590, 46.128460 ], [ 20.761414, 45.734943 ], [ 20.874023, 45.417732 ], [ 21.481018, 45.182037 ], [ 21.560669, 44.770137 ], [ 22.142944, 44.478871 ], [ 22.458801, 44.703802 ], [ 22.500000, 44.682325 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.429857 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.384729 ], [ 22.656555, 44.235360 ], [ 22.500000, 44.091531 ], [ 22.409363, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.719727, 43.448931 ], [ 22.719727, 42.994603 ], [ 22.604370, 42.900113 ], [ 22.500000, 42.700604 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.512602 ], [ 22.543945, 42.461967 ], [ 22.500000, 42.423457 ], [ 22.379150, 42.322001 ], [ 21.914978, 42.303722 ], [ 21.574402, 42.246819 ], [ 21.541443, 42.322001 ], [ 21.662292, 42.439674 ], [ 21.774902, 42.684454 ], [ 21.632080, 42.678397 ], [ 21.437073, 42.863886 ], [ 21.272278, 42.910172 ], [ 21.143188, 43.068888 ], [ 20.956421, 43.131057 ], [ 20.813599, 43.273206 ], [ 20.635071, 43.217187 ], [ 20.494995, 42.886027 ], [ 20.256042, 42.813537 ], [ 20.338440, 42.900113 ], [ 19.956665, 43.106999 ], [ 19.629822, 43.215185 ], [ 19.481506, 43.353144 ], [ 19.217834, 43.524655 ], [ 19.451294, 43.568452 ], [ 19.599609, 44.040219 ], [ 19.116211, 44.423973 ], [ 19.366150, 44.863656 ], [ 19.003601, 44.861710 ], [ 19.388123, 45.238152 ], [ 19.072266, 45.521744 ], [ 18.827820, 45.909122 ], [ 19.594116, 46.172223 ] ] ] } } +, +{ "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.813599, 43.273206 ], [ 20.956421, 43.131057 ], [ 21.143188, 43.068888 ], [ 21.272278, 42.910172 ], [ 21.437073, 42.863886 ], [ 21.632080, 42.678397 ], [ 21.774902, 42.684454 ], [ 21.662292, 42.439674 ], [ 21.541443, 42.322001 ], [ 21.574402, 42.246819 ], [ 21.351929, 42.208176 ], [ 20.761414, 42.053372 ], [ 20.714722, 41.849105 ], [ 20.588379, 41.857288 ], [ 20.522461, 42.218348 ], [ 20.283508, 42.322001 ], [ 20.069275, 42.589489 ], [ 20.256042, 42.813537 ], [ 20.494995, 42.886027 ], [ 20.635071, 43.217187 ], [ 20.813599, 43.273206 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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.736938, 42.688492 ], [ 19.800110, 42.500453 ], [ 20.069275, 42.589489 ], [ 20.283508, 42.322001 ], [ 20.522461, 42.218348 ], [ 20.588379, 41.857288 ], [ 20.462036, 41.516804 ], [ 20.604858, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.019592, 40.842905 ], [ 21.016846, 40.813809 ], [ 19.327698, 40.813809 ], [ 19.349670, 40.979898 ], [ 19.401855, 41.409776 ], [ 19.539185, 41.720081 ], [ 19.371643, 41.877741 ], [ 19.302979, 42.195969 ], [ 19.736938, 42.688492 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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.379150, 42.322001 ], [ 22.500000, 42.244785 ], [ 22.719727, 42.104336 ], [ 22.719727, 41.261291 ], [ 22.596130, 41.131090 ], [ 22.500000, 41.135227 ], [ 22.055054, 41.151774 ], [ 21.758423, 40.979898 ], [ 21.673279, 40.932190 ], [ 21.019592, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.087632 ], [ 20.462036, 41.516804 ], [ 20.588379, 41.857288 ], [ 20.714722, 41.849105 ], [ 20.761414, 42.053372 ], [ 21.351929, 42.208176 ], [ 21.914978, 42.303722 ], [ 22.379150, 42.322001 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "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": "Polygon", "coordinates": [ [ [ 22.719727, 47.886881 ], [ 22.719727, 44.146740 ], [ 22.656555, 44.235360 ], [ 22.500000, 44.384729 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.429857 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.682325 ], [ 22.458801, 44.703802 ], [ 22.142944, 44.478871 ], [ 21.560669, 44.770137 ], [ 21.481018, 45.182037 ], [ 20.874023, 45.417732 ], [ 20.761414, 45.734943 ], [ 20.217590, 46.128460 ], [ 21.019592, 46.316584 ], [ 21.623840, 46.995241 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.811310 ], [ 22.708740, 47.883197 ], [ 22.719727, 47.886881 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.719727, 42.994603 ], [ 22.719727, 42.104336 ], [ 22.500000, 42.244785 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.423457 ], [ 22.543945, 42.461967 ], [ 22.500000, 42.512602 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.700604 ], [ 22.604370, 42.900113 ], [ 22.719727, 42.994603 ] ] ], [ [ [ 22.719727, 43.448931 ], [ 22.500000, 43.644026 ], [ 22.409363, 44.008620 ], [ 22.500000, 44.091531 ], [ 22.656555, 44.235360 ], [ 22.719727, 44.146740 ], [ 22.719727, 43.448931 ] ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 22.629089, 49.066668 ], [ 22.719727, 49.043269 ], [ 22.719727, 47.886881 ], [ 22.708740, 47.883197 ], [ 22.640076, 48.151428 ], [ 22.500000, 48.221013 ], [ 22.085266, 48.423733 ], [ 22.280273, 48.826757 ], [ 22.381897, 48.922499 ], [ 22.535706, 49.066668 ], [ 22.629089, 49.066668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "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": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 41.261291 ], [ 22.719727, 40.813809 ], [ 21.016846, 40.813809 ], [ 21.019592, 40.842905 ], [ 21.673279, 40.932190 ], [ 21.758423, 40.979898 ], [ 22.055054, 41.151774 ], [ 22.500000, 41.135227 ], [ 22.596130, 41.131090 ], [ 22.719727, 41.261291 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 21.266785, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.500000, 54.949231 ], [ 22.719727, 54.870285 ], [ 22.719727, 54.759501 ], [ 22.648315, 54.583205 ], [ 22.719727, 54.364558 ], [ 22.719727, 54.327736 ], [ 22.500000, 54.326135 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.426920 ], [ 19.888000, 54.867124 ], [ 21.266785, 55.191412 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.505188, 55.899956 ], [ 12.582092, 55.776573 ], [ 12.689209, 55.610935 ], [ 12.087708, 54.800685 ], [ 11.250000, 55.254077 ], [ 11.041260, 55.365064 ], [ 11.030273, 55.405629 ], [ 11.030273, 55.808999 ], [ 11.431274, 55.899956 ], [ 12.505188, 55.899956 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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": "Polygon", "coordinates": [ [ [ 14.449768, 55.899956 ], [ 14.361877, 55.776573 ], [ 14.098206, 55.408748 ], [ 12.941895, 55.361942 ], [ 12.801819, 55.776573 ], [ 12.760620, 55.899956 ], [ 14.449768, 55.899956 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.516174, 54.471634 ], [ 13.645020, 54.077117 ], [ 14.117432, 53.758454 ], [ 14.350891, 53.248782 ], [ 14.073486, 52.981723 ], [ 14.436035, 52.626395 ], [ 14.683228, 52.091320 ], [ 14.606323, 51.745738 ], [ 15.015564, 51.106971 ], [ 14.570618, 51.003386 ], [ 14.306946, 51.117317 ], [ 14.054260, 50.927276 ], [ 13.337402, 50.734717 ], [ 12.966614, 50.485474 ], [ 12.238770, 50.266521 ], [ 12.414551, 49.970656 ], [ 12.518921, 49.548380 ], [ 13.029785, 49.307217 ], [ 13.535156, 48.922499 ], [ 13.595581, 48.877361 ], [ 13.518677, 48.777913 ], [ 11.030273, 48.777913 ], [ 11.030273, 54.025520 ], [ 11.250000, 54.067448 ], [ 11.955872, 54.197797 ], [ 12.516174, 54.471634 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Czech Republic", "sov_a3": "CZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Czech Republic", "adm0_a3": "CZE", "geou_dif": 0, "geounit": "Czech Republic", "gu_a3": "CZE", "su_dif": 0, "subunit": "Czech Republic", "su_a3": "CZE", "brk_diff": 0, "name": "Czech Rep.", "name_long": "Czech Republic", "brk_a3": "CZE", "brk_name": "Czech Rep.", "abbrev": "Cz. Rep.", "postal": "CZ", "formal_en": "Czech Republic", "name_sort": "Czech Republic", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 10211904, "gdp_md_est": 265200, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CZ", "iso_a3": "CZE", "iso_n3": "203", "un_a3": "203", "wb_a2": "CZ", "wb_a3": "CZE", "woe_id": -99, "adm0_a3_is": "CZE", "adm0_a3_us": "CZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 14, "abbrev_len": 8, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.306946, 51.117317 ], [ 14.570618, 51.003386 ], [ 15.015564, 51.106971 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.698197 ], [ 16.174622, 50.424269 ], [ 16.718445, 50.217337 ], [ 16.866760, 50.474987 ], [ 17.553406, 50.362985 ], [ 17.646790, 50.050085 ], [ 18.391113, 49.990084 ], [ 18.852539, 49.496675 ], [ 18.553162, 49.496675 ], [ 18.399353, 49.316171 ], [ 18.168640, 49.273181 ], [ 18.102722, 49.045070 ], [ 17.913208, 48.998240 ], [ 17.891235, 48.922499 ], [ 17.885742, 48.904449 ], [ 17.542419, 48.801436 ], [ 17.100220, 48.817716 ], [ 17.075500, 48.777913 ], [ 16.517944, 48.777913 ], [ 16.498718, 48.786962 ], [ 16.427307, 48.777913 ], [ 15.916443, 48.777913 ], [ 15.548401, 48.922499 ], [ 15.251770, 49.039668 ], [ 14.900208, 48.965794 ], [ 14.842529, 48.922499 ], [ 14.642029, 48.777913 ], [ 13.823547, 48.777913 ], [ 13.595581, 48.877361 ], [ 13.535156, 48.922499 ], [ 13.029785, 49.307217 ], [ 12.518921, 49.548380 ], [ 12.414551, 49.970656 ], [ 12.238770, 50.266521 ], [ 12.966614, 50.485474 ], [ 13.337402, 50.734717 ], [ 14.054260, 50.927276 ], [ 14.306946, 51.117317 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Poland", "sov_a3": "POL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Poland", "adm0_a3": "POL", "geou_dif": 0, "geounit": "Poland", "gu_a3": "POL", "su_dif": 0, "subunit": "Poland", "su_a3": "POL", "brk_diff": 0, "name": "Poland", "name_long": "Poland", "brk_a3": "POL", "brk_name": "Poland", "abbrev": "Pol.", "postal": "PL", "formal_en": "Republic of Poland", "name_sort": "Poland", "mapcolor7": 3, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 38482919, "gdp_md_est": 667900, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PL", "iso_a3": "POL", "iso_n3": "616", "un_a3": "616", "wb_a2": "PL", "wb_a3": "POL", "woe_id": -99, "adm0_a3_is": "POL", "adm0_a3_us": "POL", "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": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.622070, 54.852896 ], [ 18.619080, 54.683359 ], [ 18.695984, 54.439700 ], [ 19.660034, 54.426920 ], [ 20.890503, 54.313319 ], [ 22.500000, 54.326135 ], [ 22.719727, 54.327736 ], [ 22.719727, 49.664072 ], [ 22.516479, 49.477048 ], [ 22.719727, 49.127814 ], [ 22.719727, 49.043269 ], [ 22.557678, 49.086459 ], [ 22.500000, 49.109838 ], [ 21.607361, 49.471694 ], [ 20.887756, 49.330492 ], [ 20.415344, 49.432413 ], [ 19.824829, 49.217597 ], [ 19.319458, 49.573321 ], [ 18.907471, 49.435985 ], [ 18.391113, 49.990084 ], [ 17.646790, 50.050085 ], [ 17.553406, 50.362985 ], [ 16.866760, 50.474987 ], [ 16.718445, 50.217337 ], [ 16.174622, 50.424269 ], [ 16.237793, 50.698197 ], [ 15.490723, 50.785102 ], [ 15.015564, 51.106971 ], [ 14.606323, 51.745738 ], [ 14.683228, 52.091320 ], [ 14.436035, 52.626395 ], [ 14.073486, 52.981723 ], [ 14.350891, 53.248782 ], [ 14.117432, 53.758454 ], [ 14.801331, 54.051327 ], [ 16.361389, 54.514704 ], [ 17.622070, 54.852896 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Austria", "sov_a3": "AUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Austria", "adm0_a3": "AUT", "geou_dif": 0, "geounit": "Austria", "gu_a3": "AUT", "su_dif": 0, "subunit": "Austria", "su_a3": "AUT", "brk_diff": 0, "name": "Austria", "name_long": "Austria", "brk_a3": "AUT", "brk_name": "Austria", "abbrev": "Aust.", "postal": "A", "formal_en": "Republic of Austria", "name_sort": "Austria", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 8210281, "gdp_md_est": 329500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AT", "iso_a3": "AUT", "iso_n3": "040", "un_a3": "040", "wb_a2": "AT", "wb_a3": "AUT", "woe_id": -99, "adm0_a3_is": "AUT", "adm0_a3_us": "AUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.595581, 48.877361 ], [ 13.823547, 48.777913 ], [ 13.518677, 48.777913 ], [ 13.595581, 48.877361 ] ] ], [ [ [ 15.548401, 48.922499 ], [ 15.916443, 48.777913 ], [ 14.642029, 48.777913 ], [ 14.842529, 48.922499 ], [ 14.900208, 48.965794 ], [ 15.251770, 49.039668 ], [ 15.548401, 48.922499 ] ] ], [ [ [ 16.517944, 48.777913 ], [ 16.427307, 48.777913 ], [ 16.498718, 48.786962 ], [ 16.517944, 48.777913 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.319458, 49.573321 ], [ 19.824829, 49.217597 ], [ 20.415344, 49.432413 ], [ 20.887756, 49.330492 ], [ 21.607361, 49.471694 ], [ 22.500000, 49.109838 ], [ 22.557678, 49.086459 ], [ 22.500000, 49.032466 ], [ 22.381897, 48.922499 ], [ 22.280273, 48.826757 ], [ 22.255554, 48.777913 ], [ 17.075500, 48.777913 ], [ 17.100220, 48.817716 ], [ 17.542419, 48.801436 ], [ 17.885742, 48.904449 ], [ 17.891235, 48.922499 ], [ 17.913208, 48.998240 ], [ 18.102722, 49.045070 ], [ 18.168640, 49.273181 ], [ 18.399353, 49.316171 ], [ 18.553162, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.907471, 49.435985 ], [ 19.319458, 49.573321 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.719727, 54.870285 ], [ 22.500000, 54.949231 ], [ 22.313232, 55.015426 ], [ 21.266785, 55.191412 ], [ 21.118469, 55.776573 ], [ 21.088257, 55.899956 ], [ 22.719727, 55.899956 ], [ 22.719727, 54.870285 ] ] ], [ [ [ 22.719727, 54.759501 ], [ 22.719727, 54.364558 ], [ 22.648315, 54.583205 ], [ 22.719727, 54.759501 ] ] ] ] } } +, +{ "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": [ [ [ [ 22.719727, 49.043269 ], [ 22.719727, 48.777913 ], [ 22.255554, 48.777913 ], [ 22.280273, 48.826757 ], [ 22.381897, 48.922499 ], [ 22.500000, 49.032466 ], [ 22.557678, 49.086459 ], [ 22.719727, 49.043269 ] ] ], [ [ [ 22.719727, 49.127814 ], [ 22.516479, 49.477048 ], [ 22.719727, 49.664072 ], [ 22.719727, 49.127814 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 12.104187, 61.710706 ], [ 12.236023, 61.606396 ], [ 12.628784, 61.293988 ], [ 12.299194, 60.118251 ], [ 11.466980, 59.432506 ], [ 11.250000, 59.149178 ], [ 11.030273, 58.860644 ], [ 11.030273, 61.710706 ], [ 12.104187, 61.710706 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.370605, 56.111873 ], [ 12.582092, 55.776573 ], [ 12.661743, 55.652798 ], [ 11.030273, 55.652798 ], [ 11.030273, 55.808999 ], [ 11.250000, 55.859900 ], [ 12.370605, 56.111873 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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": "Polygon", "coordinates": [ [ [ 17.306213, 61.710706 ], [ 17.254028, 61.606396 ], [ 17.119446, 61.341444 ], [ 17.830811, 60.636836 ], [ 18.786621, 60.082653 ], [ 17.866516, 58.954258 ], [ 16.828308, 58.721173 ], [ 16.446533, 57.042224 ], [ 15.877991, 56.105747 ], [ 14.664001, 56.202121 ], [ 14.361877, 55.776573 ], [ 14.273987, 55.652798 ], [ 12.845764, 55.652798 ], [ 12.801819, 55.776573 ], [ 12.623291, 56.307396 ], [ 11.785583, 57.441993 ], [ 11.250000, 58.449170 ], [ 11.030273, 58.852121 ], [ 11.030273, 58.860644 ], [ 11.250000, 59.149178 ], [ 11.466980, 59.432506 ], [ 12.299194, 60.118251 ], [ 12.628784, 61.293988 ], [ 12.236023, 61.606396 ], [ 12.104187, 61.710706 ], [ 17.306213, 61.710706 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 61.710706 ], [ 22.719727, 59.989371 ], [ 22.500000, 60.196156 ], [ 22.288513, 60.392148 ], [ 21.321716, 60.720228 ], [ 21.519470, 61.606396 ], [ 21.544189, 61.705499 ], [ 21.541443, 61.710706 ], [ 22.719727, 61.710706 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "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": "Polygon", "coordinates": [ [ [ 22.521973, 57.754007 ], [ 22.719727, 57.571834 ], [ 22.719727, 56.318060 ], [ 22.500000, 56.327198 ], [ 22.200623, 56.337856 ], [ 21.055298, 56.032157 ], [ 21.088257, 56.784332 ], [ 21.579895, 57.412420 ], [ 22.500000, 57.745213 ], [ 22.521973, 57.754007 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.200623, 56.337856 ], [ 22.500000, 56.327198 ], [ 22.719727, 56.318060 ], [ 22.719727, 55.652798 ], [ 21.151428, 55.652798 ], [ 21.118469, 55.776573 ], [ 21.055298, 56.032157 ], [ 22.200623, 56.337856 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 15.468750, 66.600676 ], [ 15.391846, 66.513260 ], [ 15.106201, 66.194900 ], [ 13.554382, 64.788168 ], [ 13.919678, 64.445557 ], [ 13.570862, 64.049373 ], [ 12.579346, 64.067396 ], [ 11.928406, 63.129538 ], [ 11.991577, 61.800390 ], [ 12.236023, 61.606396 ], [ 12.367859, 61.501734 ], [ 11.030273, 61.501734 ], [ 11.030273, 64.876938 ], [ 11.250000, 65.045491 ], [ 12.356873, 65.880337 ], [ 13.125916, 66.513260 ], [ 13.233032, 66.600676 ], [ 15.468750, 66.600676 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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": "Polygon", "coordinates": [ [ [ 22.719727, 66.600676 ], [ 22.719727, 65.812906 ], [ 22.500000, 65.776871 ], [ 22.181396, 65.723852 ], [ 21.211853, 65.026945 ], [ 21.368408, 64.414735 ], [ 19.778137, 63.609658 ], [ 17.847290, 62.749696 ], [ 17.254028, 61.606396 ], [ 17.199097, 61.501734 ], [ 12.367859, 61.501734 ], [ 12.236023, 61.606396 ], [ 11.991577, 61.800390 ], [ 11.928406, 63.129538 ], [ 12.579346, 64.067396 ], [ 13.570862, 64.049373 ], [ 13.919678, 64.445557 ], [ 13.554382, 64.788168 ], [ 15.106201, 66.194900 ], [ 15.391846, 66.513260 ], [ 15.468750, 66.600676 ], [ 22.719727, 66.600676 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 63.951849 ], [ 22.719727, 61.501734 ], [ 21.497498, 61.501734 ], [ 21.519470, 61.606396 ], [ 21.544189, 61.705499 ], [ 21.058044, 62.608508 ], [ 21.535950, 63.190302 ], [ 22.442322, 63.818864 ], [ 22.500000, 63.845512 ], [ 22.719727, 63.951849 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 21.376648, 70.255741 ], [ 22.500000, 70.219523 ], [ 22.719727, 70.212085 ], [ 22.719727, 68.855592 ], [ 22.500000, 68.847665 ], [ 22.354431, 68.842709 ], [ 21.244812, 69.370638 ], [ 20.643311, 69.106797 ], [ 20.022583, 69.065619 ], [ 19.877014, 68.407268 ], [ 17.992859, 68.567410 ], [ 17.726440, 68.010656 ], [ 16.767883, 68.014770 ], [ 16.108704, 67.302797 ], [ 15.391846, 66.513260 ], [ 15.312195, 66.425537 ], [ 13.016052, 66.425537 ], [ 13.125916, 66.513260 ], [ 14.760132, 67.811319 ], [ 16.435547, 68.563395 ], [ 19.182129, 69.817839 ], [ 21.376648, 70.255741 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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": "Polygon", "coordinates": [ [ [ 20.643311, 69.106797 ], [ 21.978149, 68.617535 ], [ 22.500000, 68.392101 ], [ 22.719727, 68.296827 ], [ 22.719727, 66.425537 ], [ 15.312195, 66.425537 ], [ 15.391846, 66.513260 ], [ 16.108704, 67.302797 ], [ 16.767883, 68.014770 ], [ 17.726440, 68.010656 ], [ 17.992859, 68.567410 ], [ 19.877014, 68.407268 ], [ 20.022583, 69.065619 ], [ 20.643311, 69.106797 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.244812, 69.370638 ], [ 22.354431, 68.842709 ], [ 22.500000, 68.847665 ], [ 22.719727, 68.855592 ], [ 22.719727, 68.296827 ], [ 22.500000, 68.392101 ], [ 21.978149, 68.617535 ], [ 20.643311, 69.106797 ], [ 21.244812, 69.370638 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 17.163391, 76.890745 ], [ 17.133179, 76.840816 ], [ 17.116699, 76.809516 ], [ 15.910950, 76.770602 ], [ 15.669250, 76.840816 ], [ 15.496216, 76.890745 ], [ 17.163391, 76.890745 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 20.434570, 79.212538 ], [ 20.615845, 79.171335 ], [ 21.541443, 78.956138 ], [ 19.025574, 78.562667 ], [ 18.470764, 77.826799 ], [ 17.591858, 77.638306 ], [ 17.133179, 76.840816 ], [ 17.116699, 76.809516 ], [ 16.537170, 76.790701 ], [ 15.842285, 76.790701 ], [ 15.669250, 76.840816 ], [ 13.760376, 77.380506 ], [ 14.669495, 77.736118 ], [ 13.169861, 78.025004 ], [ 11.250000, 78.857848 ], [ 11.219788, 78.869518 ], [ 11.030273, 79.068167 ], [ 11.030273, 79.212538 ], [ 20.434570, 79.212538 ] ] ], [ [ [ 22.719727, 78.439474 ], [ 22.719727, 77.488064 ], [ 22.500000, 77.446940 ], [ 22.489014, 77.445149 ], [ 20.725708, 77.677053 ], [ 21.415100, 77.935203 ], [ 20.810852, 78.254743 ], [ 22.500000, 78.418539 ], [ 22.719727, 78.439474 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 16.990356, 80.050934 ], [ 18.251038, 79.701925 ], [ 20.615845, 79.171335 ], [ 20.794373, 79.129976 ], [ 11.030273, 79.129976 ], [ 11.030273, 79.730854 ], [ 11.250000, 79.759702 ], [ 13.169861, 80.010518 ], [ 13.716431, 79.660599 ], [ 15.141907, 79.674392 ], [ 15.520935, 80.016233 ], [ 16.990356, 80.050934 ] ] ], [ [ [ 22.719727, 80.599153 ], [ 22.719727, 79.417753 ], [ 22.500000, 79.430356 ], [ 20.074768, 79.567014 ], [ 19.896240, 79.842378 ], [ 18.459778, 79.860284 ], [ 17.366638, 80.319196 ], [ 20.453796, 80.598255 ], [ 21.906738, 80.357916 ], [ 22.500000, 80.534330 ], [ 22.719727, 80.599153 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 33.969727, -83.956169 ], [ 33.969727, -85.070048 ], [ 22.280273, -85.070048 ], [ 22.280273, -83.956169 ], [ 33.969727, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 33.969727, -82.648222 ], [ 33.969727, -84.002262 ], [ 22.280273, -84.002262 ], [ 22.280273, -82.648222 ], [ 33.969727, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 33.969727, -81.059130 ], [ 33.969727, -82.704241 ], [ 22.280273, -82.704241 ], [ 22.280273, -81.059130 ], [ 33.969727, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 33.969727, -79.129976 ], [ 33.969727, -81.127169 ], [ 22.280273, -81.127169 ], [ 22.280273, -79.129976 ], [ 33.969727, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 33.969727, -76.790701 ], [ 33.969727, -79.212538 ], [ 22.280273, -79.212538 ], [ 22.280273, -76.790701 ], [ 33.969727, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 33.969727, -73.958939 ], [ 33.969727, -76.890745 ], [ 22.280273, -76.890745 ], [ 22.280273, -73.958939 ], [ 33.969727, -73.958939 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 33.969727, -70.539543 ], [ 33.969727, -74.079925 ], [ 22.280273, -74.079925 ], [ 22.280273, -70.566062 ], [ 22.500000, -70.665426 ], [ 22.568665, -70.696320 ], [ 23.096008, -70.612614 ], [ 23.549194, -70.539543 ], [ 33.969727, -70.539543 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 24 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 22.280273, -70.566062 ], [ 22.541199, -70.685421 ], [ 22.280273, -70.685421 ], [ 22.280273, -70.566062 ] ] ], [ [ [ 33.969727, -68.517173 ], [ 33.969727, -70.685421 ], [ 22.642822, -70.685421 ], [ 23.096008, -70.612614 ], [ 23.664551, -70.520318 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.461615 ], [ 28.092041, -70.324288 ], [ 29.149475, -70.206506 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.989441, -69.658041 ], [ 32.752991, -69.384181 ], [ 33.302307, -68.834777 ], [ 33.750000, -68.573431 ], [ 33.868103, -68.502080 ], [ 33.969727, -68.517173 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 19 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Africa", "sov_a3": "ZAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Africa", "adm0_a3": "ZAF", "geou_dif": 0, "geounit": "South Africa", "gu_a3": "ZAF", "su_dif": 0, "subunit": "South Africa", "su_a3": "ZAF", "brk_diff": 0, "name": "South Africa", "name_long": "South Africa", "brk_a3": "ZAF", "brk_name": "South Africa", "abbrev": "S.Af.", "postal": "ZA", "formal_en": "Republic of South Africa", "name_sort": "South Africa", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 49052489, "gdp_md_est": 491000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ZA", "iso_a3": "ZAF", "iso_n3": "710", "un_a3": "710", "wb_a2": "ZA", "wb_a3": "ZAF", "woe_id": -99, "adm0_a3_is": "ZAF", "adm0_a3_us": "ZAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.371948, -31.765537 ], [ 29.165955, -31.952162 ], [ 28.924255, -32.170963 ], [ 28.218384, -32.771110 ], [ 27.463074, -33.224903 ], [ 26.419373, -33.614619 ], [ 25.908508, -33.664925 ], [ 25.779419, -33.943360 ], [ 25.172424, -33.795126 ], [ 24.675293, -33.986641 ], [ 23.593140, -33.792844 ], [ 22.986145, -33.916013 ], [ 22.571411, -33.863574 ], [ 22.500000, -33.890937 ], [ 22.280273, -33.975253 ], [ 22.280273, -31.765537 ], [ 29.371948, -31.765537 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 18 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zimbabwe", "sov_a3": "ZWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zimbabwe", "adm0_a3": "ZWE", "geou_dif": 0, "geounit": "Zimbabwe", "gu_a3": "ZWE", "su_dif": 0, "subunit": "Zimbabwe", "su_a3": "ZWE", "brk_diff": 0, "name": "Zimbabwe", "name_long": "Zimbabwe", "brk_a3": "ZWE", "brk_name": "Zimbabwe", "abbrev": "Zimb.", "postal": "ZW", "formal_en": "Republic of Zimbabwe", "name_sort": "Zimbabwe", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 12619600, "gdp_md_est": 9323, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ZW", "iso_a3": "ZWE", "iso_n3": "716", "un_a3": "716", "wb_a2": "ZW", "wb_a3": "ZWE", "woe_id": -99, "adm0_a3_is": "ZWE", "adm0_a3_us": "ZWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.665344, -21.739091 ], [ 31.475830, -21.943046 ], [ 31.190186, -22.250971 ], [ 30.657349, -22.149252 ], [ 30.322266, -22.271306 ], [ 29.838867, -22.100909 ], [ 29.429626, -22.090730 ], [ 29.220886, -21.943046 ], [ 28.932495, -21.739091 ], [ 31.665344, -21.739091 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mozambique", "sov_a3": "MOZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mozambique", "adm0_a3": "MOZ", "geou_dif": 0, "geounit": "Mozambique", "gu_a3": "MOZ", "su_dif": 0, "subunit": "Mozambique", "su_a3": "MOZ", "brk_diff": 0, "name": "Mozambique", "name_long": "Mozambique", "brk_a3": "MOZ", "brk_name": "Mozambique", "abbrev": "Moz.", "postal": "MZ", "formal_en": "Republic of Mozambique", "name_sort": "Mozambique", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 21669278, "gdp_md_est": 18940, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MZ", "iso_a3": "MOZ", "iso_n3": "508", "un_a3": "508", "wb_a2": "MZ", "wb_a3": "MOZ", "woe_id": -99, "adm0_a3_is": "MOZ", "adm0_a3_us": "MOZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, -21.739091 ], [ 33.969727, -24.926295 ], [ 33.750000, -25.025884 ], [ 33.011169, -25.356437 ], [ 32.574463, -25.725684 ], [ 32.659607, -26.148042 ], [ 32.915039, -26.214591 ], [ 32.829895, -26.740705 ], [ 32.069092, -26.733346 ], [ 31.983948, -26.290953 ], [ 31.835632, -25.841921 ], [ 31.750488, -25.482951 ], [ 31.929016, -24.367114 ], [ 31.668091, -23.657104 ], [ 31.190186, -22.250971 ], [ 31.475830, -21.943046 ], [ 31.665344, -21.739091 ], [ 33.969727, -21.739091 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 28.932495, -21.739091 ], [ 29.220886, -21.943046 ], [ 29.429626, -22.090730 ], [ 28.015137, -22.826820 ], [ 27.117004, -23.574057 ], [ 26.784668, -24.239451 ], [ 26.485291, -24.614560 ], [ 25.941467, -24.694439 ], [ 25.765686, -25.172631 ], [ 25.664062, -25.485431 ], [ 25.024109, -25.718261 ], [ 24.211121, -25.668760 ], [ 23.733215, -25.388698 ], [ 23.310242, -25.267052 ], [ 22.824097, -25.500306 ], [ 22.576904, -25.977799 ], [ 22.500000, -26.029638 ], [ 22.280273, -26.167764 ], [ 22.280273, -21.739091 ], [ 28.932495, -21.739091 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Africa", "sov_a3": "ZAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Africa", "adm0_a3": "ZAF", "geou_dif": 0, "geounit": "South Africa", "gu_a3": "ZAF", "su_dif": 0, "subunit": "South Africa", "su_a3": "ZAF", "brk_diff": 0, "name": "South Africa", "name_long": "South Africa", "brk_a3": "ZAF", "brk_name": "South Africa", "abbrev": "S.Af.", "postal": "ZA", "formal_en": "Republic of South Africa", "name_sort": "South Africa", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 49052489, "gdp_md_est": 491000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ZA", "iso_a3": "ZAF", "iso_n3": "710", "un_a3": "710", "wb_a2": "ZA", "wb_a3": "ZAF", "woe_id": -99, "adm0_a3_is": "ZAF", "adm0_a3_us": "ZAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.429626, -22.090730 ], [ 29.838867, -22.100909 ], [ 30.322266, -22.271306 ], [ 30.657349, -22.149252 ], [ 31.190186, -22.250971 ], [ 31.668091, -23.657104 ], [ 31.929016, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.835632, -25.841921 ], [ 31.333008, -25.658858 ], [ 31.041870, -25.730633 ], [ 30.948486, -26.022234 ], [ 30.676575, -26.396790 ], [ 30.684814, -26.743158 ], [ 31.280823, -27.283926 ], [ 31.865845, -27.176469 ], [ 32.069092, -26.733346 ], [ 32.829895, -26.740705 ], [ 32.579956, -27.469287 ], [ 32.461853, -28.299544 ], [ 32.200928, -28.750805 ], [ 31.519775, -29.255252 ], [ 31.324768, -29.401320 ], [ 30.899048, -29.909710 ], [ 30.621643, -30.422625 ], [ 30.053101, -31.139954 ], [ 29.165955, -31.952162 ], [ 28.959961, -32.138409 ], [ 22.280273, -32.138409 ], [ 22.280273, -26.167764 ], [ 22.500000, -26.029638 ], [ 22.576904, -25.977799 ], [ 22.824097, -25.500306 ], [ 23.310242, -25.267052 ], [ 23.733215, -25.388698 ], [ 24.211121, -25.668760 ], [ 25.024109, -25.718261 ], [ 25.664062, -25.485431 ], [ 25.765686, -25.172631 ], [ 25.941467, -24.694439 ], [ 26.485291, -24.614560 ], [ 26.784668, -24.239451 ], [ 27.117004, -23.574057 ], [ 28.015137, -22.826820 ], [ 29.429626, -22.090730 ] ], [ [ 28.539734, -28.647210 ], [ 28.072815, -28.849485 ], [ 27.531738, -29.240874 ], [ 26.998901, -29.873992 ], [ 27.748718, -30.645001 ], [ 28.105774, -30.545704 ], [ 28.289795, -30.225848 ], [ 28.847351, -30.069094 ], [ 29.017639, -29.742917 ], [ 29.322510, -29.255252 ], [ 28.976440, -28.955282 ], [ 28.539734, -28.647210 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Swaziland", "sov_a3": "SWZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Swaziland", "adm0_a3": "SWZ", "geou_dif": 0, "geounit": "Swaziland", "gu_a3": "SWZ", "su_dif": 0, "subunit": "Swaziland", "su_a3": "SWZ", "brk_diff": 0, "name": "Swaziland", "name_long": "Swaziland", "brk_a3": "SWZ", "brk_name": "Swaziland", "abbrev": "Swz.", "postal": "SW", "formal_en": "Kingdom of Swaziland", "name_sort": "Swaziland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 1123913, "gdp_md_est": 5702, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SZ", "iso_a3": "SWZ", "iso_n3": "748", "un_a3": "748", "wb_a2": "SZ", "wb_a3": "SWZ", "woe_id": -99, "adm0_a3_is": "SWZ", "adm0_a3_us": "SWZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.333008, -25.658858 ], [ 31.835632, -25.841921 ], [ 31.983948, -26.290953 ], [ 32.069092, -26.733346 ], [ 31.865845, -27.176469 ], [ 31.280823, -27.283926 ], [ 30.684814, -26.743158 ], [ 30.676575, -26.396790 ], [ 30.948486, -26.022234 ], [ 31.041870, -25.730633 ], [ 31.333008, -25.658858 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Lesotho", "sov_a3": "LSO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lesotho", "adm0_a3": "LSO", "geou_dif": 0, "geounit": "Lesotho", "gu_a3": "LSO", "su_dif": 0, "subunit": "Lesotho", "su_a3": "LSO", "brk_diff": 0, "name": "Lesotho", "name_long": "Lesotho", "brk_a3": "LSO", "brk_name": "Lesotho", "abbrev": "Les.", "postal": "LS", "formal_en": "Kingdom of Lesotho", "name_sort": "Lesotho", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 2130819, "gdp_md_est": 3293, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LS", "iso_a3": "LSO", "iso_n3": "426", "un_a3": "426", "wb_a2": "LS", "wb_a3": "LSO", "woe_id": -99, "adm0_a3_is": "LSO", "adm0_a3_us": "LSO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.539734, -28.647210 ], [ 28.976440, -28.955282 ], [ 29.322510, -29.255252 ], [ 29.017639, -29.742917 ], [ 28.847351, -30.069094 ], [ 28.289795, -30.225848 ], [ 28.105774, -30.545704 ], [ 27.748718, -30.645001 ], [ 26.998901, -29.873992 ], [ 27.531738, -29.240874 ], [ 28.072815, -28.849485 ], [ 28.539734, -28.647210 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 17 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.473816, -10.962764 ], [ 28.446350, -11.178402 ], [ 28.372192, -11.792080 ], [ 28.641357, -11.969471 ], [ 29.338989, -12.358783 ], [ 29.613647, -12.176280 ], [ 29.698792, -13.255986 ], [ 28.932495, -13.247966 ], [ 28.523254, -12.696612 ], [ 28.152466, -12.270231 ], [ 27.386169, -12.130635 ], [ 27.163696, -11.606503 ], [ 26.551208, -11.923790 ], [ 25.751953, -11.784014 ], [ 25.416870, -11.329253 ], [ 24.782410, -11.237674 ], [ 24.312744, -11.261919 ], [ 24.296265, -11.178402 ], [ 24.257812, -10.962764 ], [ 28.473816, -10.962764 ] ] ], [ [ [ 23.063049, -10.962764 ], [ 22.835083, -11.016689 ], [ 22.401123, -10.992424 ], [ 22.280273, -11.038255 ], [ 22.280273, -10.962764 ], [ 23.063049, -10.962764 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.280273, -12.900166 ], [ 22.280273, -11.038255 ], [ 22.401123, -10.992424 ], [ 22.835083, -11.016689 ], [ 23.063049, -10.962764 ], [ 23.922729, -10.962764 ], [ 23.996887, -11.178402 ], [ 24.016113, -11.234980 ], [ 23.903503, -11.722167 ], [ 24.079285, -12.189704 ], [ 23.928223, -12.565287 ], [ 24.016113, -12.910875 ], [ 22.500000, -12.900166 ], [ 22.280273, -12.900166 ] ] ], [ [ [ 22.280273, -16.554594 ], [ 22.500000, -16.820316 ], [ 22.560425, -16.896544 ], [ 23.214111, -17.520963 ], [ 22.500000, -17.680662 ], [ 22.280273, -17.730375 ], [ 22.280273, -16.554594 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Namibia", "sov_a3": "NAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Namibia", "adm0_a3": "NAM", "geou_dif": 0, "geounit": "Namibia", "gu_a3": "NAM", "su_dif": 0, "subunit": "Namibia", "su_a3": "NAM", "brk_diff": 0, "name": "Namibia", "name_long": "Namibia", "brk_a3": "NAM", "brk_name": "Namibia", "abbrev": "Nam.", "postal": "NA", "formal_en": "Republic of Namibia", "name_sort": "Namibia", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 2108665, "gdp_md_est": 13250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "NA", "iso_a3": "NAM", "iso_n3": "516", "un_a3": "516", "wb_a2": "NA", "wb_a3": "NAM", "woe_id": -99, "adm0_a3_is": "NAM", "adm0_a3_us": "NAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.032593, -17.295576 ], [ 24.680786, -17.353260 ], [ 25.076294, -17.578576 ], [ 25.081787, -17.659726 ], [ 24.518738, -17.884659 ], [ 24.216614, -17.887273 ], [ 23.576660, -18.278910 ], [ 23.194885, -17.868975 ], [ 22.500000, -18.025751 ], [ 22.280273, -18.075368 ], [ 22.280273, -17.730375 ], [ 22.500000, -17.680662 ], [ 23.214111, -17.520963 ], [ 24.032593, -17.295576 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.272095, -10.962764 ], [ 33.219910, -11.178402 ], [ 33.112793, -11.606503 ], [ 33.305054, -12.433894 ], [ 32.989197, -12.782339 ], [ 32.687073, -13.712704 ], [ 33.211670, -13.971385 ], [ 30.179443, -14.793472 ], [ 30.272827, -15.506619 ], [ 29.514771, -15.644197 ], [ 28.946228, -16.040534 ], [ 28.825378, -16.388661 ], [ 28.465576, -16.467695 ], [ 27.597656, -17.290332 ], [ 27.042847, -17.936929 ], [ 26.705017, -17.960445 ], [ 26.380920, -17.845447 ], [ 25.263062, -17.735607 ], [ 25.081787, -17.659726 ], [ 25.076294, -17.578576 ], [ 24.680786, -17.353260 ], [ 24.032593, -17.295576 ], [ 23.214111, -17.520963 ], [ 22.560425, -16.896544 ], [ 22.500000, -16.820316 ], [ 22.280273, -16.554594 ], [ 22.280273, -12.900166 ], [ 22.500000, -12.900166 ], [ 24.016113, -12.910875 ], [ 23.928223, -12.565287 ], [ 24.079285, -12.189704 ], [ 23.903503, -11.722167 ], [ 24.016113, -11.234980 ], [ 23.996887, -11.178402 ], [ 23.922729, -10.962764 ], [ 24.257812, -10.962764 ], [ 24.296265, -11.178402 ], [ 24.312744, -11.261919 ], [ 24.782410, -11.237674 ], [ 25.416870, -11.329253 ], [ 25.751953, -11.784014 ], [ 26.551208, -11.923790 ], [ 27.163696, -11.606503 ], [ 27.386169, -12.130635 ], [ 28.152466, -12.270231 ], [ 28.523254, -12.696612 ], [ 28.932495, -13.247966 ], [ 29.698792, -13.255986 ], [ 29.613647, -12.176280 ], [ 29.338989, -12.358783 ], [ 28.641357, -11.969471 ], [ 28.372192, -11.792080 ], [ 28.446350, -11.178402 ], [ 28.473816, -10.962764 ], [ 33.272095, -10.962764 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zimbabwe", "sov_a3": "ZWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zimbabwe", "adm0_a3": "ZWE", "geou_dif": 0, "geounit": "Zimbabwe", "gu_a3": "ZWE", "su_dif": 0, "subunit": "Zimbabwe", "su_a3": "ZWE", "brk_diff": 0, "name": "Zimbabwe", "name_long": "Zimbabwe", "brk_a3": "ZWE", "brk_name": "Zimbabwe", "abbrev": "Zimb.", "postal": "ZW", "formal_en": "Republic of Zimbabwe", "name_sort": "Zimbabwe", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 12619600, "gdp_md_est": 9323, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ZW", "iso_a3": "ZWE", "iso_n3": "716", "un_a3": "716", "wb_a2": "ZW", "wb_a3": "ZWE", "woe_id": -99, "adm0_a3_is": "ZWE", "adm0_a3_us": "ZWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.272827, -15.506619 ], [ 30.338745, -15.879451 ], [ 31.170959, -15.858316 ], [ 31.635132, -16.069568 ], [ 31.849365, -16.317504 ], [ 32.327271, -16.391296 ], [ 32.846375, -16.712494 ], [ 32.849121, -17.978733 ], [ 32.654114, -18.669665 ], [ 32.610168, -19.417383 ], [ 32.772217, -19.715000 ], [ 32.659607, -20.303418 ], [ 32.508545, -20.393549 ], [ 32.244873, -21.115249 ], [ 31.475830, -21.943046 ], [ 31.286316, -22.146708 ], [ 29.965210, -22.146708 ], [ 29.838867, -22.100909 ], [ 29.429626, -22.090730 ], [ 29.220886, -21.943046 ], [ 28.792419, -21.637005 ], [ 28.020630, -21.483741 ], [ 27.726746, -20.851112 ], [ 27.723999, -20.496492 ], [ 27.295532, -20.390974 ], [ 26.163940, -19.292998 ], [ 25.848083, -18.713894 ], [ 25.647583, -18.534304 ], [ 25.263062, -17.735607 ], [ 26.380920, -17.845447 ], [ 26.705017, -17.960445 ], [ 27.042847, -17.936929 ], [ 27.597656, -17.290332 ], [ 28.465576, -16.467695 ], [ 28.825378, -16.388661 ], [ 28.946228, -16.040534 ], [ 29.514771, -15.644197 ], [ 30.272827, -15.506619 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, -10.962764 ], [ 33.969727, -14.389458 ], [ 33.788452, -14.450639 ], [ 33.211670, -13.971385 ], [ 32.687073, -13.712704 ], [ 32.989197, -12.782339 ], [ 33.305054, -12.433894 ], [ 33.112793, -11.606503 ], [ 33.219910, -11.178402 ], [ 33.272095, -10.962764 ], [ 33.969727, -10.962764 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mozambique", "sov_a3": "MOZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mozambique", "adm0_a3": "MOZ", "geou_dif": 0, "geounit": "Mozambique", "gu_a3": "MOZ", "su_dif": 0, "subunit": "Mozambique", "su_a3": "MOZ", "brk_diff": 0, "name": "Mozambique", "name_long": "Mozambique", "brk_a3": "MOZ", "brk_name": "Mozambique", "abbrev": "Moz.", "postal": "MZ", "formal_en": "Republic of Mozambique", "name_sort": "Mozambique", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 21669278, "gdp_md_est": 18940, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MZ", "iso_a3": "MOZ", "iso_n3": "508", "un_a3": "508", "wb_a2": "MZ", "wb_a3": "MOZ", "woe_id": -99, "adm0_a3_is": "MOZ", "adm0_a3_us": "MOZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.211670, -13.971385 ], [ 33.788452, -14.450639 ], [ 33.969727, -14.389458 ], [ 33.969727, -22.146708 ], [ 31.286316, -22.146708 ], [ 31.475830, -21.943046 ], [ 32.244873, -21.115249 ], [ 32.508545, -20.393549 ], [ 32.659607, -20.303418 ], [ 32.772217, -19.715000 ], [ 32.610168, -19.417383 ], [ 32.654114, -18.669665 ], [ 32.849121, -17.978733 ], [ 32.846375, -16.712494 ], [ 32.327271, -16.391296 ], [ 31.849365, -16.317504 ], [ 31.635132, -16.069568 ], [ 31.170959, -15.858316 ], [ 30.338745, -15.879451 ], [ 30.272827, -15.506619 ], [ 30.179443, -14.793472 ], [ 33.211670, -13.971385 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 25.081787, -17.659726 ], [ 25.263062, -17.735607 ], [ 25.647583, -18.534304 ], [ 25.848083, -18.713894 ], [ 26.163940, -19.292998 ], [ 27.295532, -20.390974 ], [ 27.723999, -20.496492 ], [ 27.726746, -20.851112 ], [ 28.020630, -21.483741 ], [ 28.792419, -21.637005 ], [ 29.220886, -21.943046 ], [ 29.429626, -22.090730 ], [ 29.325256, -22.146708 ], [ 22.280273, -22.146708 ], [ 22.280273, -18.075368 ], [ 22.500000, -18.025751 ], [ 23.194885, -17.868975 ], [ 23.576660, -18.278910 ], [ 24.216614, -17.887273 ], [ 24.518738, -17.884659 ], [ 25.081787, -17.659726 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Africa", "sov_a3": "ZAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Africa", "adm0_a3": "ZAF", "geou_dif": 0, "geounit": "South Africa", "gu_a3": "ZAF", "su_dif": 0, "subunit": "South Africa", "su_a3": "ZAF", "brk_diff": 0, "name": "South Africa", "name_long": "South Africa", "brk_a3": "ZAF", "brk_name": "South Africa", "abbrev": "S.Af.", "postal": "ZA", "formal_en": "Republic of South Africa", "name_sort": "South Africa", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 49052489, "gdp_md_est": 491000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ZA", "iso_a3": "ZAF", "iso_n3": "710", "un_a3": "710", "wb_a2": "ZA", "wb_a3": "ZAF", "woe_id": -99, "adm0_a3_is": "ZAF", "adm0_a3_us": "ZAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.429626, -22.090730 ], [ 29.838867, -22.100909 ], [ 29.965210, -22.146708 ], [ 29.325256, -22.146708 ], [ 29.429626, -22.090730 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 16 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 0.219726 ], [ 33.892822, 0.109863 ], [ 33.901062, -0.947528 ], [ 33.750000, -0.955766 ], [ 31.865845, -1.027167 ], [ 30.767212, -1.013436 ], [ 30.418396, -1.134264 ], [ 29.819641, -1.441803 ], [ 29.577942, -1.340210 ], [ 29.586182, -0.585012 ], [ 29.816895, -0.203247 ], [ 29.833374, 0.000000 ], [ 29.847107, 0.219726 ], [ 33.969727, 0.219726 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 0.219726 ], [ 33.969727, -0.991467 ], [ 33.901062, -0.947528 ], [ 33.892822, 0.109863 ], [ 33.969727, 0.219726 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.847107, 0.219726 ], [ 29.833374, 0.000000 ], [ 29.816895, -0.203247 ], [ 29.586182, -0.585012 ], [ 29.577942, -1.340210 ], [ 29.289551, -1.617522 ], [ 29.253845, -2.213195 ], [ 29.116516, -2.290039 ], [ 29.023132, -2.838804 ], [ 29.275818, -3.291340 ], [ 29.338989, -4.499762 ], [ 29.517517, -5.419148 ], [ 29.418640, -5.938436 ], [ 29.619141, -6.520001 ], [ 30.198669, -7.079088 ], [ 30.739746, -8.339236 ], [ 30.344238, -8.235955 ], [ 29.001160, -8.404451 ], [ 28.734741, -8.523984 ], [ 28.449097, -9.164467 ], [ 28.671570, -9.603458 ], [ 28.495789, -10.787443 ], [ 28.446350, -11.178402 ], [ 28.418884, -11.393879 ], [ 25.463562, -11.393879 ], [ 25.416870, -11.329253 ], [ 24.782410, -11.237674 ], [ 24.312744, -11.261919 ], [ 24.296265, -11.178402 ], [ 24.255066, -10.951978 ], [ 23.911743, -10.925011 ], [ 23.455811, -10.865676 ], [ 22.835083, -11.016689 ], [ 22.500000, -10.997816 ], [ 22.401123, -10.992424 ], [ 22.280273, -11.038255 ], [ 22.280273, 0.219726 ], [ 29.847107, 0.219726 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.455811, -10.865676 ], [ 23.911743, -10.925011 ], [ 23.996887, -11.178402 ], [ 24.016113, -11.234980 ], [ 23.980408, -11.393879 ], [ 22.280273, -11.393879 ], [ 22.280273, -11.038255 ], [ 22.401123, -10.992424 ], [ 22.500000, -10.997816 ], [ 22.835083, -11.016689 ], [ 23.455811, -10.865676 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Rwanda", "sov_a3": "RWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Rwanda", "adm0_a3": "RWA", "geou_dif": 0, "geounit": "Rwanda", "gu_a3": "RWA", "su_dif": 0, "subunit": "Rwanda", "su_a3": "RWA", "brk_diff": 0, "name": "Rwanda", "name_long": "Rwanda", "brk_a3": "RWA", "brk_name": "Rwanda", "abbrev": "Rwa.", "postal": "RW", "formal_en": "Republic of Rwanda", "name_sort": "Rwanda", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 10473282, "gdp_md_est": 9706, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "RW", "iso_a3": "RWA", "iso_n3": "646", "un_a3": "646", "wb_a2": "RW", "wb_a3": "RWA", "woe_id": -99, "adm0_a3_is": "RWA", "adm0_a3_us": "RWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.418396, -1.134264 ], [ 30.813904, -1.697139 ], [ 30.756226, -2.284551 ], [ 30.467834, -2.413532 ], [ 29.937744, -2.347670 ], [ 29.630127, -2.915611 ], [ 29.023132, -2.838804 ], [ 29.116516, -2.290039 ], [ 29.253845, -2.213195 ], [ 29.289551, -1.617522 ], [ 29.577942, -1.340210 ], [ 29.819641, -1.441803 ], [ 30.418396, -1.134264 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Burundi", "sov_a3": "BDI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burundi", "adm0_a3": "BDI", "geou_dif": 0, "geounit": "Burundi", "gu_a3": "BDI", "su_dif": 0, "subunit": "Burundi", "su_a3": "BDI", "brk_diff": 0, "name": "Burundi", "name_long": "Burundi", "brk_a3": "BDI", "brk_name": "Burundi", "abbrev": "Bur.", "postal": "BI", "formal_en": "Republic of Burundi", "name_sort": "Burundi", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8988091, "gdp_md_est": 3102, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BI", "iso_a3": "BDI", "iso_n3": "108", "un_a3": "108", "wb_a2": "BI", "wb_a3": "BDI", "woe_id": -99, "adm0_a3_is": "BDI", "adm0_a3_us": "BDI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.937744, -2.347670 ], [ 30.467834, -2.413532 ], [ 30.525513, -2.805885 ], [ 30.742493, -3.033555 ], [ 30.750732, -3.357147 ], [ 30.503540, -3.568248 ], [ 30.116272, -4.088932 ], [ 29.750977, -4.450474 ], [ 29.338989, -4.499762 ], [ 29.275818, -3.291340 ], [ 29.023132, -2.838804 ], [ 29.630127, -2.915611 ], [ 29.937744, -2.347670 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.911743, -10.925011 ], [ 24.255066, -10.951978 ], [ 24.296265, -11.178402 ], [ 24.312744, -11.261919 ], [ 24.782410, -11.237674 ], [ 25.416870, -11.329253 ], [ 25.463562, -11.393879 ], [ 23.980408, -11.393879 ], [ 24.016113, -11.234980 ], [ 23.996887, -11.178402 ], [ 23.911743, -10.925011 ] ] ], [ [ [ 30.739746, -8.339236 ], [ 31.157227, -8.591884 ], [ 31.555481, -8.760224 ], [ 32.189941, -8.928487 ], [ 32.758484, -9.229538 ], [ 33.230896, -9.676569 ], [ 33.483582, -10.522919 ], [ 33.313293, -10.795537 ], [ 33.219910, -11.178402 ], [ 33.164978, -11.393879 ], [ 28.418884, -11.393879 ], [ 28.446350, -11.178402 ], [ 28.495789, -10.787443 ], [ 28.671570, -9.603458 ], [ 28.449097, -9.164467 ], [ 28.734741, -8.523984 ], [ 29.001160, -8.404451 ], [ 30.344238, -8.235955 ], [ 30.739746, -8.339236 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "United Republic of Tanzania", "sov_a3": "TZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Republic of Tanzania", "adm0_a3": "TZA", "geou_dif": 0, "geounit": "Tanzania", "gu_a3": "TZA", "su_dif": 0, "subunit": "Tanzania", "su_a3": "TZA", "brk_diff": 0, "name": "Tanzania", "name_long": "Tanzania", "brk_a3": "TZA", "brk_name": "Tanzania", "abbrev": "Tanz.", "postal": "TZ", "formal_en": "United Republic of Tanzania", "name_sort": "Tanzania", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 41048532, "gdp_md_est": 54250, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TZ", "iso_a3": "TZA", "iso_n3": "834", "un_a3": "834", "wb_a2": "TZ", "wb_a3": "TZA", "woe_id": -99, "adm0_a3_is": "TZA", "adm0_a3_us": "TZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.901062, -0.947528 ], [ 33.969727, -0.991467 ], [ 33.969727, -9.730714 ], [ 33.750000, -9.430096 ], [ 33.739014, -9.416548 ], [ 32.758484, -9.229538 ], [ 32.189941, -8.928487 ], [ 31.555481, -8.760224 ], [ 31.157227, -8.591884 ], [ 30.739746, -8.339236 ], [ 30.198669, -7.079088 ], [ 29.619141, -6.517272 ], [ 29.418640, -5.938436 ], [ 29.517517, -5.419148 ], [ 29.338989, -4.499762 ], [ 29.750977, -4.450474 ], [ 30.116272, -4.088932 ], [ 30.503540, -3.568248 ], [ 30.750732, -3.357147 ], [ 30.742493, -3.033555 ], [ 30.525513, -2.805885 ], [ 30.467834, -2.413532 ], [ 30.756226, -2.284551 ], [ 30.813904, -1.697139 ], [ 30.418396, -1.134264 ], [ 30.767212, -1.013436 ], [ 31.865845, -1.027167 ], [ 33.750000, -0.955766 ], [ 33.901062, -0.947528 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.758484, -9.229538 ], [ 33.739014, -9.416548 ], [ 33.750000, -9.430096 ], [ 33.939514, -9.692813 ], [ 33.969727, -9.730714 ], [ 33.969727, -11.393879 ], [ 33.164978, -11.393879 ], [ 33.219910, -11.178402 ], [ 33.313293, -10.795537 ], [ 33.483582, -10.522919 ], [ 33.230896, -9.676569 ], [ 32.758484, -9.229538 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.862549, 11.393879 ], [ 22.873535, 11.385802 ], [ 22.865295, 11.178402 ], [ 22.862549, 11.143372 ], [ 22.500000, 11.046343 ], [ 22.280273, 10.987031 ], [ 22.280273, 11.393879 ], [ 22.862549, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.862549, 11.143372 ], [ 22.975159, 10.714587 ], [ 23.551941, 10.090558 ], [ 23.554688, 9.681984 ], [ 23.392639, 9.267490 ], [ 23.458557, 8.955619 ], [ 23.804626, 8.667918 ], [ 24.565430, 8.230519 ], [ 25.114746, 7.825289 ], [ 25.122986, 7.501366 ], [ 25.795898, 6.980954 ], [ 26.213379, 6.547289 ], [ 26.463318, 5.949363 ], [ 27.213135, 5.553114 ], [ 27.372437, 5.235922 ], [ 27.042847, 5.129243 ], [ 26.400146, 5.151128 ], [ 25.650330, 5.257803 ], [ 25.276794, 5.173011 ], [ 25.128479, 4.929515 ], [ 24.804382, 4.899414 ], [ 24.408875, 5.110094 ], [ 23.296509, 4.612016 ], [ 22.840576, 4.710566 ], [ 22.703247, 4.633917 ], [ 22.500000, 4.223161 ], [ 22.403870, 4.031399 ], [ 22.280273, 4.064275 ], [ 22.280273, 10.987031 ], [ 22.500000, 11.046343 ], [ 22.862549, 11.143372 ] ] ] } } +, +{ "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": [ [ [ [ 32.354736, 11.393879 ], [ 32.384949, 11.178402 ], [ 32.398682, 11.081385 ], [ 31.849365, 10.533720 ], [ 31.352234, 9.811916 ], [ 30.835876, 9.709057 ], [ 29.995422, 10.293301 ], [ 29.616394, 10.085150 ], [ 29.514771, 9.795678 ], [ 28.998413, 9.606166 ], [ 28.965454, 9.400291 ], [ 27.968445, 9.400291 ], [ 27.831116, 9.606166 ], [ 27.111511, 9.638661 ], [ 26.751709, 9.468027 ], [ 26.477051, 9.554709 ], [ 25.960693, 10.136524 ], [ 25.790405, 10.412183 ], [ 25.068054, 10.274384 ], [ 24.793396, 9.811916 ], [ 24.535217, 8.917634 ], [ 24.191895, 8.730363 ], [ 23.884277, 8.621757 ], [ 23.804626, 8.667918 ], [ 23.458557, 8.955619 ], [ 23.392639, 9.267490 ], [ 23.554688, 9.681984 ], [ 23.551941, 10.090558 ], [ 22.975159, 10.714587 ], [ 22.862549, 11.143372 ], [ 22.865295, 11.178402 ], [ 22.873535, 11.385802 ], [ 22.862549, 11.393879 ], [ 32.354736, 11.393879 ] ] ], [ [ [ 33.969727, 11.393879 ], [ 33.969727, 9.614290 ], [ 33.961487, 9.584501 ], [ 33.961487, 9.465317 ], [ 33.824158, 9.484281 ], [ 33.840637, 9.982376 ], [ 33.750000, 10.247357 ], [ 33.719788, 10.325728 ], [ 33.206177, 10.722683 ], [ 33.129272, 11.178402 ], [ 33.093567, 11.393879 ], [ 33.969727, 11.393879 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.093567, 11.393879 ], [ 33.129272, 11.178402 ], [ 33.206177, 10.722683 ], [ 33.719788, 10.325728 ], [ 33.750000, 10.247357 ], [ 33.840637, 9.982376 ], [ 33.824158, 9.484281 ], [ 33.961487, 9.465317 ], [ 33.969727, 9.039715 ], [ 33.969727, 8.676064 ], [ 33.824158, 8.379997 ], [ 33.750000, 8.377279 ], [ 33.294067, 8.355540 ], [ 32.953491, 7.787194 ], [ 33.565979, 7.713713 ], [ 33.750000, 7.539487 ], [ 33.969727, 7.329778 ], [ 33.969727, 4.225900 ], [ 33.387451, 3.790262 ], [ 32.684326, 3.793003 ], [ 31.879578, 3.560024 ], [ 31.245117, 3.782041 ], [ 30.833130, 3.510680 ], [ 29.951477, 4.173855 ], [ 29.715271, 4.601065 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.427124, 4.288897 ], [ 27.979431, 4.409398 ], [ 27.372437, 5.235922 ], [ 27.213135, 5.553114 ], [ 26.463318, 5.949363 ], [ 26.213379, 6.547289 ], [ 25.795898, 6.980954 ], [ 25.122986, 7.501366 ], [ 25.114746, 7.825289 ], [ 24.565430, 8.230519 ], [ 23.884277, 8.621757 ], [ 24.191895, 8.730363 ], [ 24.535217, 8.917634 ], [ 24.793396, 9.811916 ], [ 25.068054, 10.274384 ], [ 25.790405, 10.412183 ], [ 25.960693, 10.136524 ], [ 26.477051, 9.554709 ], [ 26.751709, 9.468027 ], [ 27.111511, 9.638661 ], [ 27.831116, 9.606166 ], [ 27.968445, 9.400291 ], [ 28.965454, 9.400291 ], [ 28.998413, 9.606166 ], [ 29.514771, 9.795678 ], [ 29.616394, 10.085150 ], [ 29.995422, 10.293301 ], [ 30.835876, 9.709057 ], [ 31.352234, 9.811916 ], [ 31.849365, 10.533720 ], [ 32.398682, 11.081385 ], [ 32.384949, 11.178402 ], [ 32.354736, 11.393879 ], [ 33.093567, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 4.225900 ], [ 33.969727, 0.219726 ], [ 33.892822, 0.109863 ], [ 33.895569, -0.219726 ], [ 29.808655, -0.219726 ], [ 29.816895, -0.203247 ], [ 29.833374, 0.000000 ], [ 29.874573, 0.598744 ], [ 30.086060, 1.062866 ], [ 30.467834, 1.584576 ], [ 30.852356, 1.850874 ], [ 31.173706, 2.204961 ], [ 30.772705, 2.342182 ], [ 30.833130, 3.510680 ], [ 31.245117, 3.782041 ], [ 31.879578, 3.560024 ], [ 32.684326, 3.793003 ], [ 33.387451, 3.790262 ], [ 33.969727, 4.225900 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 0.219726 ], [ 33.969727, -0.219726 ], [ 33.895569, -0.219726 ], [ 33.892822, 0.109863 ], [ 33.969727, 0.219726 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.969727, 8.676064 ], [ 33.969727, 7.329778 ], [ 33.750000, 7.539487 ], [ 33.565979, 7.713713 ], [ 32.953491, 7.787194 ], [ 33.294067, 8.355540 ], [ 33.750000, 8.377279 ], [ 33.824158, 8.379997 ], [ 33.969727, 8.676064 ] ] ], [ [ [ 33.969727, 9.039715 ], [ 33.961487, 9.584501 ], [ 33.969727, 9.614290 ], [ 33.969727, 9.039715 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.650330, 5.257803 ], [ 26.400146, 5.151128 ], [ 27.042847, 5.129243 ], [ 27.372437, 5.235922 ], [ 27.979431, 4.409398 ], [ 28.427124, 4.288897 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.715271, 4.601065 ], [ 29.951477, 4.173855 ], [ 30.833130, 3.510680 ], [ 30.772705, 2.342182 ], [ 31.173706, 2.204961 ], [ 30.852356, 1.850874 ], [ 30.467834, 1.584576 ], [ 30.086060, 1.062866 ], [ 29.874573, 0.598744 ], [ 29.833374, 0.000000 ], [ 29.816895, -0.203247 ], [ 29.808655, -0.219726 ], [ 22.280273, -0.219726 ], [ 22.280273, 4.064275 ], [ 22.403870, 4.031399 ], [ 22.500000, 4.223161 ], [ 22.703247, 4.633917 ], [ 22.840576, 4.710566 ], [ 23.296509, 4.612016 ], [ 24.408875, 5.110094 ], [ 24.804382, 4.899414 ], [ 25.128479, 4.929515 ], [ 25.276794, 5.173011 ], [ 25.650330, 5.257803 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.999390, 22.146708 ], [ 24.999390, 20.004322 ], [ 23.848572, 20.001741 ], [ 23.837585, 19.580493 ], [ 22.500000, 20.226120 ], [ 22.280273, 20.331750 ], [ 22.280273, 22.146708 ], [ 24.999390, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.280273, 13.878079 ], [ 22.280273, 20.331750 ], [ 22.500000, 20.226120 ], [ 23.837585, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.021851, 15.681221 ], [ 22.565918, 14.944785 ], [ 22.500000, 14.788161 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.107276 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.083301 ], [ 22.280273, 13.878079 ] ] ], [ [ [ 22.280273, 12.645698 ], [ 22.285767, 12.648378 ], [ 22.497253, 12.262180 ], [ 22.500000, 12.136005 ], [ 22.508240, 11.681825 ], [ 22.873535, 11.385802 ], [ 22.865295, 11.178402 ], [ 22.862549, 11.143372 ], [ 22.280273, 10.987031 ], [ 22.280273, 12.645698 ] ] ], [ [ [ 22.280273, 13.432367 ], [ 22.294006, 13.373588 ], [ 22.280273, 13.346865 ], [ 22.280273, 13.432367 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.862549, 11.143372 ], [ 22.909241, 10.962764 ], [ 22.280273, 10.962764 ], [ 22.280273, 10.987031 ], [ 22.862549, 11.143372 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 22.146708 ], [ 33.969727, 22.001628 ], [ 24.999390, 22.001628 ], [ 24.999390, 22.146708 ], [ 33.969727, 22.146708 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 33.969727, 22.001628 ], [ 33.969727, 10.962764 ], [ 33.164978, 10.962764 ], [ 33.129272, 11.178402 ], [ 33.085327, 11.442339 ], [ 33.206177, 12.181650 ], [ 32.742004, 12.248760 ], [ 32.673340, 12.025889 ], [ 32.071838, 11.974845 ], [ 32.313538, 11.681825 ], [ 32.384949, 11.178402 ], [ 32.398682, 11.081385 ], [ 32.280579, 10.962764 ], [ 22.909241, 10.962764 ], [ 22.862549, 11.143372 ], [ 22.865295, 11.178402 ], [ 22.873535, 11.385802 ], [ 22.508240, 11.681825 ], [ 22.500000, 12.136005 ], [ 22.497253, 12.262180 ], [ 22.285767, 12.648378 ], [ 22.280273, 12.645698 ], [ 22.280273, 13.346865 ], [ 22.294006, 13.373588 ], [ 22.280273, 13.432367 ], [ 22.280273, 13.878079 ], [ 22.500000, 14.083301 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.107276 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.788161 ], [ 22.565918, 14.944785 ], [ 23.021851, 15.681221 ], [ 23.884277, 15.612456 ], [ 23.837585, 19.580493 ], [ 23.848572, 20.001741 ], [ 24.999390, 20.004322 ], [ 24.999390, 22.001628 ], [ 33.969727, 22.001628 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.742004, 12.248760 ], [ 33.206177, 12.181650 ], [ 33.085327, 11.442339 ], [ 33.129272, 11.178402 ], [ 33.164978, 10.962764 ], [ 32.280579, 10.962764 ], [ 32.398682, 11.081385 ], [ 32.384949, 11.178402 ], [ 32.313538, 11.681825 ], [ 32.071838, 11.974845 ], [ 32.673340, 12.025889 ], [ 32.742004, 12.248760 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.700256, 32.138409 ], [ 23.925476, 32.017392 ], [ 24.472046, 31.952162 ], [ 24.919739, 31.900878 ], [ 25.164185, 31.569175 ], [ 24.801636, 31.090574 ], [ 24.955444, 30.663903 ], [ 24.700012, 30.045322 ], [ 24.999390, 29.240874 ], [ 24.999390, 21.739091 ], [ 22.280273, 21.739091 ], [ 22.280273, 32.138409 ], [ 23.700256, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.493530, 31.587894 ], [ 27.457581, 31.323140 ], [ 28.449097, 31.027048 ], [ 28.913269, 30.871583 ], [ 29.682312, 31.186959 ], [ 30.094299, 31.475524 ], [ 30.975952, 31.557474 ], [ 31.687317, 31.431007 ], [ 31.959229, 30.935213 ], [ 32.189941, 31.262118 ], [ 32.991943, 31.024694 ], [ 33.750000, 30.970544 ], [ 33.771973, 30.968189 ], [ 33.969727, 31.069403 ], [ 33.969727, 27.685960 ], [ 33.920288, 27.649472 ], [ 33.750000, 27.814786 ], [ 33.134766, 28.417975 ], [ 32.420654, 29.852555 ], [ 32.319031, 29.761993 ], [ 32.733765, 28.707452 ], [ 33.346252, 27.700552 ], [ 33.750000, 26.877981 ], [ 33.969727, 26.423849 ], [ 33.969727, 22.001628 ], [ 24.999390, 22.001628 ], [ 24.999390, 29.240874 ], [ 24.700012, 30.045322 ], [ 24.955444, 30.663903 ], [ 24.801636, 31.090574 ], [ 25.164185, 31.569175 ], [ 26.493530, 31.587894 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 33.969727, 22.001628 ], [ 33.969727, 21.739091 ], [ 24.999390, 21.739091 ], [ 24.999390, 22.001628 ], [ 33.969727, 22.001628 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "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.609863, 41.145570 ], [ 22.596130, 41.131090 ], [ 22.280273, 41.143501 ], [ 22.280273, 41.145570 ], [ 22.609863, 41.145570 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.280273, 32.731841 ], [ 22.500000, 32.699489 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.191884 ], [ 23.606873, 32.189560 ], [ 23.925476, 32.017392 ], [ 24.472046, 31.952162 ], [ 24.919739, 31.900878 ], [ 25.018616, 31.765537 ], [ 22.280273, 31.765537 ], [ 22.280273, 32.731841 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "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": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.697510, 35.706377 ], [ 24.244080, 35.368895 ], [ 25.024109, 35.427106 ], [ 25.768433, 35.355456 ], [ 25.743713, 35.180543 ], [ 26.287537, 35.301677 ], [ 26.163940, 35.005253 ], [ 24.724731, 34.921971 ], [ 24.732971, 35.086203 ], [ 23.513489, 35.281501 ], [ 23.697510, 35.706377 ] ] ], [ [ [ 26.397400, 41.145570 ], [ 26.315002, 40.979898 ], [ 26.293030, 40.936340 ], [ 26.056824, 40.824202 ], [ 25.447083, 40.853293 ], [ 24.925232, 40.948788 ], [ 23.713989, 40.688969 ], [ 24.406128, 40.126391 ], [ 23.898010, 39.962386 ], [ 23.340454, 39.962386 ], [ 22.813110, 40.476203 ], [ 22.623596, 40.258569 ], [ 22.848816, 39.660685 ], [ 23.348694, 39.191820 ], [ 22.972412, 38.972222 ], [ 23.529968, 38.511639 ], [ 24.024353, 38.220920 ], [ 24.038086, 37.655558 ], [ 23.112488, 37.920368 ], [ 23.409119, 37.411619 ], [ 22.774658, 37.306829 ], [ 23.153687, 36.423493 ], [ 22.500000, 36.410231 ], [ 22.489014, 36.410231 ], [ 22.280273, 36.522881 ], [ 22.280273, 41.143501 ], [ 22.596130, 41.131090 ], [ 22.609863, 41.145570 ], [ 26.397400, 41.145570 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Northern Cyprus", "sov_a3": "CYN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Northern Cyprus", "adm0_a3": "CYN", "geou_dif": 0, "geounit": "Northern Cyprus", "gu_a3": "CYN", "su_dif": 0, "subunit": "Northern Cyprus", "su_a3": "CYN", "brk_diff": 1, "name": "N. Cyprus", "name_long": "Northern Cyprus", "brk_a3": "B20", "brk_name": "N. Cyprus", "abbrev": "N. Cy.", "postal": "CN", "formal_en": "Turkish Republic of Northern Cyprus", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Cyprus", "name_sort": "Cyprus, Northern", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 265100, "gdp_md_est": 3600, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "CYP", "adm0_a3_us": "CYP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 15, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 35.474092 ], [ 33.969727, 35.290469 ], [ 33.898315, 35.247862 ], [ 33.969727, 35.070469 ], [ 33.969727, 35.061477 ], [ 33.865356, 35.095193 ], [ 33.750000, 35.047987 ], [ 33.673096, 35.018750 ], [ 33.524780, 35.038992 ], [ 33.475342, 35.000754 ], [ 33.453369, 35.101934 ], [ 33.381958, 35.164828 ], [ 33.189697, 35.173808 ], [ 32.917786, 35.088451 ], [ 32.731018, 35.140125 ], [ 32.802429, 35.146863 ], [ 32.945251, 35.386811 ], [ 33.664856, 35.373375 ], [ 33.750000, 35.402484 ], [ 33.969727, 35.474092 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Cyprus", "sov_a3": "CYP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cyprus", "adm0_a3": "CYP", "geou_dif": 0, "geounit": "Cyprus", "gu_a3": "CYP", "su_dif": 0, "subunit": "Cyprus", "su_a3": "CYP", "brk_diff": 0, "name": "Cyprus", "name_long": "Cyprus", "brk_a3": "CYP", "brk_name": "Cyprus", "abbrev": "Cyp.", "postal": "CY", "formal_en": "Republic of Cyprus", "name_sort": "Cyprus", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 531640, "gdp_md_est": 22700, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "CY", "iso_a3": "CYP", "iso_n3": "196", "un_a3": "196", "wb_a2": "CY", "wb_a3": "CYP", "woe_id": -99, "adm0_a3_is": "CYP", "adm0_a3_us": "CYP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.189697, 35.173808 ], [ 33.381958, 35.164828 ], [ 33.453369, 35.101934 ], [ 33.475342, 35.000754 ], [ 33.524780, 35.038992 ], [ 33.673096, 35.018750 ], [ 33.750000, 35.047987 ], [ 33.865356, 35.095193 ], [ 33.969727, 35.061477 ], [ 33.969727, 34.964748 ], [ 33.750000, 34.879172 ], [ 32.978210, 34.572168 ], [ 32.489319, 34.703235 ], [ 32.255859, 35.104181 ], [ 32.731018, 35.140125 ], [ 32.917786, 35.088451 ], [ 33.189697, 35.173808 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.969727, 41.145570 ], [ 33.969727, 36.217687 ], [ 33.750000, 36.199958 ], [ 32.508545, 36.109034 ], [ 31.698303, 36.646385 ], [ 30.618896, 36.679433 ], [ 30.390930, 36.264207 ], [ 29.698792, 36.144529 ], [ 28.731995, 36.677231 ], [ 27.638855, 36.659606 ], [ 27.048340, 37.653383 ], [ 26.317749, 38.210130 ], [ 26.803894, 38.987168 ], [ 26.169434, 39.463764 ], [ 27.279053, 40.421860 ], [ 28.819885, 40.461577 ], [ 29.105530, 40.979898 ], [ 29.196167, 41.145570 ], [ 30.311279, 41.145570 ], [ 31.143494, 41.087632 ], [ 31.250610, 41.145570 ], [ 33.969727, 41.145570 ] ] ], [ [ [ 28.872070, 41.145570 ], [ 28.806152, 41.056573 ], [ 27.616882, 41.000630 ], [ 27.589417, 40.979898 ], [ 27.191162, 40.691052 ], [ 26.356201, 40.153687 ], [ 26.043091, 40.618122 ], [ 26.056824, 40.824202 ], [ 26.293030, 40.936340 ], [ 26.315002, 40.979898 ], [ 26.397400, 41.145570 ], [ 28.872070, 41.145570 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Poland", "sov_a3": "POL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Poland", "adm0_a3": "POL", "geou_dif": 0, "geounit": "Poland", "gu_a3": "POL", "su_dif": 0, "subunit": "Poland", "su_a3": "POL", "brk_diff": 0, "name": "Poland", "name_long": "Poland", "brk_a3": "POL", "brk_name": "Poland", "abbrev": "Pol.", "postal": "PL", "formal_en": "Republic of Poland", "name_sort": "Poland", "mapcolor7": 3, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 38482919, "gdp_md_est": 667900, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PL", "iso_a3": "POL", "iso_n3": "616", "un_a3": "616", "wb_a2": "PL", "wb_a3": "POL", "woe_id": -99, "adm0_a3_is": "POL", "adm0_a3_us": "POL", "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": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.752686, 49.066668 ], [ 22.774658, 49.028864 ], [ 22.629089, 49.066668 ], [ 22.752686, 49.066668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Hungary", "sov_a3": "HUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Hungary", "adm0_a3": "HUN", "geou_dif": 0, "geounit": "Hungary", "gu_a3": "HUN", "su_dif": 0, "subunit": "Hungary", "su_a3": "HUN", "brk_diff": 0, "name": "Hungary", "name_long": "Hungary", "brk_a3": "HUN", "brk_name": "Hungary", "abbrev": "Hun.", "postal": "HU", "formal_en": "Republic of Hungary", "name_sort": "Hungary", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 9905596, "gdp_md_est": 196600, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "HU", "iso_a3": "HUN", "iso_n3": "348", "un_a3": "348", "wb_a2": "HU", "wb_a3": "HUN", "woe_id": -99, "adm0_a3_is": "HUN", "adm0_a3_us": "HUN", "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": "Polygon", "coordinates": [ [ [ 22.280273, 48.328865 ], [ 22.500000, 48.221013 ], [ 22.640076, 48.151428 ], [ 22.708740, 47.883197 ], [ 22.500000, 47.811310 ], [ 22.280273, 47.735629 ], [ 22.280273, 48.328865 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.535706, 49.066668 ], [ 22.280273, 48.824949 ], [ 22.280273, 49.066668 ], [ 22.535706, 49.066668 ] ] ] } } +, +{ "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": [ [ [ 22.458801, 44.703802 ], [ 22.500000, 44.682325 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.429857 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.384729 ], [ 22.656555, 44.235360 ], [ 22.500000, 44.091531 ], [ 22.409363, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.211182 ], [ 22.604370, 42.900113 ], [ 22.500000, 42.700604 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.512602 ], [ 22.543945, 42.461967 ], [ 22.500000, 42.423457 ], [ 22.379150, 42.322001 ], [ 22.280273, 42.317939 ], [ 22.280273, 44.576774 ], [ 22.458801, 44.703802 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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.379150, 42.322001 ], [ 22.500000, 42.244785 ], [ 22.879028, 42.000325 ], [ 22.950439, 41.339700 ], [ 22.760925, 41.306698 ], [ 22.596130, 41.131090 ], [ 22.500000, 41.135227 ], [ 22.280273, 41.143501 ], [ 22.280273, 42.317939 ], [ 22.379150, 42.322001 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "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": "Polygon", "coordinates": [ [ [ 26.617126, 48.221013 ], [ 26.921997, 48.123934 ], [ 27.232361, 47.827908 ], [ 27.550964, 47.405785 ], [ 28.127747, 46.811339 ], [ 28.157959, 46.371569 ], [ 28.053589, 45.945421 ], [ 28.232117, 45.489020 ], [ 28.677063, 45.305803 ], [ 29.149475, 45.465910 ], [ 29.602661, 45.294211 ], [ 29.624634, 45.036656 ], [ 29.141235, 44.820812 ], [ 28.836365, 44.914249 ], [ 28.556213, 43.707594 ], [ 27.968445, 43.812729 ], [ 27.240601, 44.176295 ], [ 26.065063, 43.945372 ], [ 25.567932, 43.689722 ], [ 24.098511, 43.741336 ], [ 23.332214, 43.897892 ], [ 22.942200, 43.824620 ], [ 22.656555, 44.235360 ], [ 22.500000, 44.384729 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.429857 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.682325 ], [ 22.458801, 44.703802 ], [ 22.280273, 44.576774 ], [ 22.280273, 47.735629 ], [ 22.500000, 47.811310 ], [ 22.708740, 47.883197 ], [ 23.139954, 48.096426 ], [ 23.760681, 47.986245 ], [ 24.400635, 47.982568 ], [ 24.864807, 47.739323 ], [ 25.205383, 47.892406 ], [ 25.944214, 47.988083 ], [ 26.196899, 48.221013 ], [ 26.617126, 48.221013 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.656555, 44.235360 ], [ 22.942200, 43.824620 ], [ 23.332214, 43.897892 ], [ 24.098511, 43.741336 ], [ 25.567932, 43.689722 ], [ 26.065063, 43.945372 ], [ 27.240601, 44.176295 ], [ 27.968445, 43.812729 ], [ 28.556213, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.671814, 42.579377 ], [ 27.995911, 42.008489 ], [ 27.133484, 42.143042 ], [ 26.114502, 41.828642 ], [ 26.103516, 41.329389 ], [ 25.197144, 41.236511 ], [ 24.491272, 41.584634 ], [ 23.692017, 41.310824 ], [ 22.950439, 41.339700 ], [ 22.879028, 42.000325 ], [ 22.500000, 42.244785 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.423457 ], [ 22.543945, 42.461967 ], [ 22.500000, 42.512602 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.700604 ], [ 22.604370, 42.900113 ], [ 22.983398, 43.211182 ], [ 22.500000, 43.644026 ], [ 22.409363, 44.008620 ], [ 22.500000, 44.091531 ], [ 22.656555, 44.235360 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Moldova", "sov_a3": "MDA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Moldova", "adm0_a3": "MDA", "geou_dif": 0, "geounit": "Moldova", "gu_a3": "MDA", "su_dif": 0, "subunit": "Moldova", "su_a3": "MDA", "brk_diff": 0, "name": "Moldova", "name_long": "Moldova", "brk_a3": "MDA", "brk_name": "Moldova", "abbrev": "Mda.", "postal": "MD", "formal_en": "Republic of Moldova", "name_sort": "Moldova", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 4, "mapcolor13": 12, "pop_est": 4320748, "gdp_md_est": 10670, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MD", "iso_a3": "MDA", "iso_n3": "498", "un_a3": "498", "wb_a2": "MD", "wb_a3": "MDA", "woe_id": -99, "adm0_a3_is": "MDA", "adm0_a3_us": "MDA", "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": "Polygon", "coordinates": [ [ [ 27.520752, 48.467458 ], [ 28.256836, 48.156925 ], [ 28.668823, 48.118434 ], [ 29.122009, 47.850031 ], [ 29.050598, 47.511636 ], [ 29.413147, 47.348128 ], [ 29.558716, 46.929634 ], [ 29.907532, 46.675826 ], [ 29.836121, 46.526745 ], [ 30.022888, 46.424606 ], [ 29.759216, 46.350719 ], [ 29.168701, 46.381044 ], [ 29.069824, 46.519186 ], [ 28.861084, 46.439750 ], [ 28.932495, 46.259645 ], [ 28.657837, 45.941601 ], [ 28.484802, 45.598666 ], [ 28.232117, 45.489020 ], [ 28.053589, 45.945421 ], [ 28.157959, 46.371569 ], [ 28.127747, 46.811339 ], [ 27.550964, 47.405785 ], [ 27.232361, 47.827908 ], [ 26.921997, 48.123934 ], [ 26.617126, 48.221013 ], [ 26.856079, 48.369023 ], [ 27.520752, 48.467458 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 33.969727, 49.066668 ], [ 33.969727, 44.400430 ], [ 33.881836, 44.363133 ], [ 33.750000, 44.410240 ], [ 33.324280, 44.565034 ], [ 33.546753, 45.036656 ], [ 32.453613, 45.328979 ], [ 32.629395, 45.519820 ], [ 33.587952, 45.851760 ], [ 33.296814, 46.080852 ], [ 31.742249, 46.333654 ], [ 31.673584, 46.707853 ], [ 30.747986, 46.583406 ], [ 30.377197, 46.033203 ], [ 29.602661, 45.294211 ], [ 29.149475, 45.465910 ], [ 28.677063, 45.305803 ], [ 28.232117, 45.489020 ], [ 28.484802, 45.598666 ], [ 28.657837, 45.941601 ], [ 28.932495, 46.259645 ], [ 28.861084, 46.439750 ], [ 29.069824, 46.519186 ], [ 29.168701, 46.381044 ], [ 29.759216, 46.350719 ], [ 30.022888, 46.424606 ], [ 29.836121, 46.526745 ], [ 29.907532, 46.675826 ], [ 29.558716, 46.929634 ], [ 29.413147, 47.348128 ], [ 29.050598, 47.511636 ], [ 29.122009, 47.850031 ], [ 28.668823, 48.118434 ], [ 28.256836, 48.156925 ], [ 27.520752, 48.467458 ], [ 26.856079, 48.369023 ], [ 26.617126, 48.221013 ], [ 26.196899, 48.221013 ], [ 25.944214, 47.988083 ], [ 25.205383, 47.892406 ], [ 24.864807, 47.739323 ], [ 24.400635, 47.982568 ], [ 23.760681, 47.986245 ], [ 23.139954, 48.096426 ], [ 22.708740, 47.883197 ], [ 22.640076, 48.151428 ], [ 22.500000, 48.221013 ], [ 22.280273, 48.328865 ], [ 22.280273, 48.824949 ], [ 22.535706, 49.066668 ], [ 22.629089, 49.066668 ], [ 22.774658, 49.028864 ], [ 22.752686, 49.066668 ], [ 33.969727, 49.066668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "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": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.114502, 41.828642 ], [ 26.603394, 41.564087 ], [ 26.315002, 40.979898 ], [ 26.293030, 40.936340 ], [ 26.056824, 40.824202 ], [ 25.447083, 40.853293 ], [ 24.925232, 40.948788 ], [ 24.301758, 40.813809 ], [ 22.280273, 40.813809 ], [ 22.280273, 41.143501 ], [ 22.500000, 41.135227 ], [ 22.596130, 41.131090 ], [ 22.760925, 41.306698 ], [ 22.950439, 41.339700 ], [ 23.692017, 41.310824 ], [ 24.491272, 41.584634 ], [ 25.197144, 41.236511 ], [ 26.103516, 41.329389 ], [ 26.114502, 41.828642 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.969727, 42.026854 ], [ 33.969727, 40.813809 ], [ 29.014893, 40.813809 ], [ 29.105530, 40.979898 ], [ 29.237366, 41.222052 ], [ 31.143494, 41.087632 ], [ 32.346497, 41.736479 ], [ 33.511047, 42.020733 ], [ 33.750000, 42.022773 ], [ 33.969727, 42.026854 ] ] ], [ [ [ 27.133484, 42.143042 ], [ 27.995911, 42.008489 ], [ 28.114014, 41.623655 ], [ 28.987427, 41.300508 ], [ 28.806152, 41.056573 ], [ 27.616882, 41.000630 ], [ 27.589417, 40.979898 ], [ 27.361450, 40.813809 ], [ 26.054077, 40.813809 ], [ 26.056824, 40.824202 ], [ 26.293030, 40.936340 ], [ 26.315002, 40.979898 ], [ 26.603394, 41.564087 ], [ 26.114502, 41.828642 ], [ 27.133484, 42.143042 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 33.969727, 55.899956 ], [ 33.969727, 52.143602 ], [ 33.750000, 52.335339 ], [ 32.714539, 52.239574 ], [ 32.409668, 52.290003 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.539001, 52.742943 ], [ 31.302795, 53.074228 ], [ 31.495056, 53.168180 ], [ 32.302551, 53.133590 ], [ 32.692566, 53.352191 ], [ 32.404175, 53.618579 ], [ 31.731262, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.157609 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.083084 ], [ 30.871582, 55.551942 ], [ 29.948730, 55.776573 ], [ 29.893799, 55.790473 ], [ 29.838867, 55.776573 ], [ 29.369202, 55.671389 ], [ 29.308777, 55.776573 ], [ 29.237366, 55.899956 ], [ 33.969727, 55.899956 ] ] ], [ [ [ 22.280273, 55.021725 ], [ 22.313232, 55.015426 ], [ 22.500000, 54.949231 ], [ 22.755432, 54.857640 ], [ 22.648315, 54.583205 ], [ 22.730713, 54.327736 ], [ 22.500000, 54.326135 ], [ 22.280273, 54.324533 ], [ 22.280273, 55.021725 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Poland", "sov_a3": "POL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Poland", "adm0_a3": "POL", "geou_dif": 0, "geounit": "Poland", "gu_a3": "POL", "su_dif": 0, "subunit": "Poland", "su_a3": "POL", "brk_diff": 0, "name": "Poland", "name_long": "Poland", "brk_a3": "POL", "brk_name": "Poland", "abbrev": "Pol.", "postal": "PL", "formal_en": "Republic of Poland", "name_sort": "Poland", "mapcolor7": 3, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 38482919, "gdp_md_est": 667900, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PL", "iso_a3": "POL", "iso_n3": "616", "un_a3": "616", "wb_a2": "PL", "wb_a3": "POL", "woe_id": -99, "adm0_a3_is": "POL", "adm0_a3_us": "POL", "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": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.730713, 54.327736 ], [ 23.241577, 54.221891 ], [ 23.483276, 53.914046 ], [ 23.527222, 53.471700 ], [ 23.804626, 53.090725 ], [ 23.799133, 52.691367 ], [ 23.197632, 52.487798 ], [ 23.507996, 52.023769 ], [ 23.524475, 51.578776 ], [ 24.029846, 50.706895 ], [ 23.922729, 50.426019 ], [ 23.425598, 50.308638 ], [ 22.516479, 49.477048 ], [ 22.774658, 49.028864 ], [ 22.557678, 49.086459 ], [ 22.500000, 49.109838 ], [ 22.280273, 49.199654 ], [ 22.280273, 54.324533 ], [ 22.500000, 54.326135 ], [ 22.730713, 54.327736 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.280273, 49.199654 ], [ 22.500000, 49.109838 ], [ 22.557678, 49.086459 ], [ 22.500000, 49.032466 ], [ 22.280273, 48.826757 ], [ 22.280273, 49.199654 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "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": "Polygon", "coordinates": [ [ [ 27.424622, 55.899956 ], [ 27.100525, 55.784296 ], [ 27.075806, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.174927, 55.776573 ], [ 25.930481, 55.899956 ], [ 27.424622, 55.899956 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.930481, 55.899956 ], [ 26.174927, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.586914, 55.167888 ], [ 25.768433, 54.848153 ], [ 25.534973, 54.282865 ], [ 24.450073, 53.905956 ], [ 23.483276, 53.914046 ], [ 23.241577, 54.221891 ], [ 22.730713, 54.327736 ], [ 22.648315, 54.583205 ], [ 22.755432, 54.857640 ], [ 22.500000, 54.949231 ], [ 22.313232, 55.015426 ], [ 22.280273, 55.021725 ], [ 22.280273, 55.899956 ], [ 25.930481, 55.899956 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Belarus", "sov_a3": "BLR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belarus", "adm0_a3": "BLR", "geou_dif": 0, "geounit": "Belarus", "gu_a3": "BLR", "su_dif": 0, "subunit": "Belarus", "su_a3": "BLR", "brk_diff": 0, "name": "Belarus", "name_long": "Belarus", "brk_a3": "BLR", "brk_name": "Belarus", "abbrev": "Bela.", "postal": "BY", "formal_en": "Republic of Belarus", "name_sort": "Belarus", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 9648533, "gdp_md_est": 114100, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BY", "iso_a3": "BLR", "iso_n3": "112", "un_a3": "112", "wb_a2": "BY", "wb_a3": "BLR", "woe_id": -99, "adm0_a3_is": "BLR", "adm0_a3_us": "BLR", "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": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.237366, 55.899956 ], [ 29.308777, 55.776573 ], [ 29.369202, 55.671389 ], [ 29.838867, 55.776573 ], [ 29.893799, 55.790473 ], [ 29.948730, 55.776573 ], [ 30.871582, 55.551942 ], [ 30.970459, 55.083084 ], [ 30.756226, 54.813348 ], [ 31.382446, 54.157609 ], [ 31.788940, 53.975474 ], [ 31.731262, 53.794162 ], [ 32.404175, 53.618579 ], [ 32.692566, 53.352191 ], [ 32.302551, 53.133590 ], [ 31.495056, 53.168180 ], [ 31.302795, 53.074228 ], [ 31.539001, 52.742943 ], [ 31.783447, 52.103131 ], [ 30.926514, 52.042355 ], [ 30.618896, 51.823896 ], [ 30.552979, 51.320314 ], [ 30.154724, 51.416338 ], [ 29.253845, 51.368351 ], [ 28.990173, 51.602666 ], [ 28.616638, 51.428327 ], [ 28.240356, 51.573656 ], [ 27.452087, 51.592429 ], [ 26.336975, 51.832383 ], [ 25.326233, 51.912085 ], [ 24.551697, 51.890054 ], [ 24.002380, 51.618017 ], [ 23.524475, 51.578776 ], [ 23.507996, 52.023769 ], [ 23.197632, 52.487798 ], [ 23.799133, 52.691367 ], [ 23.804626, 53.090725 ], [ 23.527222, 53.471700 ], [ 23.483276, 53.914046 ], [ 24.450073, 53.905956 ], [ 25.534973, 54.282865 ], [ 25.768433, 54.848153 ], [ 26.586914, 55.167888 ], [ 26.493530, 55.615589 ], [ 27.075806, 55.776573 ], [ 27.100525, 55.784296 ], [ 27.424622, 55.899956 ], [ 29.237366, 55.899956 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 33.750000, 52.335339 ], [ 33.969727, 52.143602 ], [ 33.969727, 48.777913 ], [ 22.280273, 48.777913 ], [ 22.280273, 48.826757 ], [ 22.500000, 49.032466 ], [ 22.557678, 49.086459 ], [ 22.774658, 49.028864 ], [ 22.516479, 49.477048 ], [ 23.425598, 50.308638 ], [ 23.922729, 50.426019 ], [ 24.029846, 50.706895 ], [ 23.524475, 51.578776 ], [ 24.002380, 51.618017 ], [ 24.551697, 51.890054 ], [ 25.326233, 51.912085 ], [ 26.336975, 51.832383 ], [ 27.452087, 51.592429 ], [ 28.240356, 51.573656 ], [ 28.616638, 51.428327 ], [ 28.990173, 51.602666 ], [ 29.253845, 51.368351 ], [ 30.154724, 51.416338 ], [ 30.552979, 51.320314 ], [ 30.618896, 51.823896 ], [ 30.926514, 52.042355 ], [ 31.783447, 52.103131 ], [ 32.156982, 52.062623 ], [ 32.409668, 52.290003 ], [ 32.714539, 52.239574 ], [ 33.750000, 52.335339 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 33.969727, 61.710706 ], [ 33.969727, 55.652798 ], [ 30.456848, 55.652798 ], [ 29.948730, 55.776573 ], [ 29.893799, 55.790473 ], [ 29.838867, 55.776573 ], [ 29.369202, 55.671389 ], [ 29.308777, 55.776573 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.853088, 56.760251 ], [ 27.767944, 57.244880 ], [ 27.287292, 57.475973 ], [ 27.715759, 57.792089 ], [ 27.419128, 58.725451 ], [ 28.130493, 59.300954 ], [ 27.979431, 59.475779 ], [ 29.116516, 60.029186 ], [ 28.067322, 60.504583 ], [ 29.913025, 61.606396 ], [ 30.091553, 61.710706 ], [ 33.969727, 61.710706 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.091553, 61.710706 ], [ 29.913025, 61.606396 ], [ 28.067322, 60.504583 ], [ 26.254578, 60.424699 ], [ 24.494019, 60.057987 ], [ 22.868042, 59.847574 ], [ 22.500000, 60.196156 ], [ 22.288513, 60.392148 ], [ 22.280273, 60.396219 ], [ 22.280273, 61.710706 ], [ 30.091553, 61.710706 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "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": "Polygon", "coordinates": [ [ [ 25.164185, 57.970244 ], [ 25.600891, 57.847674 ], [ 26.463318, 57.477450 ], [ 27.287292, 57.475973 ], [ 27.767944, 57.244880 ], [ 27.853088, 56.760251 ], [ 28.174438, 56.170023 ], [ 27.100525, 55.784296 ], [ 27.075806, 55.776573 ], [ 26.628113, 55.652798 ], [ 26.419373, 55.652798 ], [ 26.174927, 55.776573 ], [ 25.532227, 56.101152 ], [ 24.999390, 56.165435 ], [ 24.859314, 56.372856 ], [ 23.876038, 56.273861 ], [ 22.500000, 56.327198 ], [ 22.280273, 56.334812 ], [ 22.280273, 57.665973 ], [ 22.500000, 57.745213 ], [ 22.521973, 57.754007 ], [ 23.315735, 57.006346 ], [ 24.120483, 57.025784 ], [ 24.312744, 57.793553 ], [ 25.164185, 57.970244 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Estonia", "sov_a3": "EST", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Estonia", "adm0_a3": "EST", "geou_dif": 0, "geounit": "Estonia", "gu_a3": "EST", "su_dif": 0, "subunit": "Estonia", "su_a3": "EST", "brk_diff": 0, "name": "Estonia", "name_long": "Estonia", "brk_a3": "EST", "brk_name": "Estonia", "abbrev": "Est.", "postal": "EST", "formal_en": "Republic of Estonia", "name_sort": "Estonia", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 10, "pop_est": 1299371, "gdp_md_est": 27410, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "EE", "iso_a3": "EST", "iso_n3": "233", "un_a3": "233", "wb_a2": "EE", "wb_a3": "EST", "woe_id": -99, "adm0_a3_is": "EST", "adm0_a3_us": "EST", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.861816, 59.612212 ], [ 26.946716, 59.446471 ], [ 27.979431, 59.475779 ], [ 28.130493, 59.300954 ], [ 27.419128, 58.725451 ], [ 27.715759, 57.792089 ], [ 27.287292, 57.475973 ], [ 26.463318, 57.477450 ], [ 25.600891, 57.847674 ], [ 25.164185, 57.970244 ], [ 24.312744, 57.793553 ], [ 24.428101, 58.384438 ], [ 24.060059, 58.257508 ], [ 23.425598, 58.614056 ], [ 23.337708, 59.188592 ], [ 24.603882, 59.466013 ], [ 25.861816, 59.612212 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.859314, 56.372856 ], [ 24.999390, 56.165435 ], [ 25.532227, 56.101152 ], [ 26.174927, 55.776573 ], [ 26.419373, 55.652798 ], [ 22.280273, 55.652798 ], [ 22.280273, 56.334812 ], [ 22.500000, 56.327198 ], [ 23.876038, 56.273861 ], [ 24.859314, 56.372856 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Belarus", "sov_a3": "BLR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belarus", "adm0_a3": "BLR", "geou_dif": 0, "geounit": "Belarus", "gu_a3": "BLR", "su_dif": 0, "subunit": "Belarus", "su_a3": "BLR", "brk_diff": 0, "name": "Belarus", "name_long": "Belarus", "brk_a3": "BLR", "brk_name": "Belarus", "abbrev": "Bela.", "postal": "BY", "formal_en": "Republic of Belarus", "name_sort": "Belarus", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 9648533, "gdp_md_est": 114100, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BY", "iso_a3": "BLR", "iso_n3": "112", "un_a3": "112", "wb_a2": "BY", "wb_a3": "BLR", "woe_id": -99, "adm0_a3_is": "BLR", "adm0_a3_us": "BLR", "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": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.174438, 56.170023 ], [ 29.229126, 55.918430 ], [ 29.308777, 55.776573 ], [ 29.369202, 55.671389 ], [ 29.838867, 55.776573 ], [ 29.893799, 55.790473 ], [ 29.948730, 55.776573 ], [ 30.456848, 55.652798 ], [ 26.628113, 55.652798 ], [ 27.075806, 55.776573 ], [ 27.100525, 55.784296 ], [ 28.174438, 56.170023 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 33.255615, 66.600676 ], [ 33.450623, 66.513260 ], [ 33.750000, 66.381560 ], [ 33.969727, 66.283432 ], [ 33.969727, 61.501734 ], [ 29.734497, 61.501734 ], [ 29.913025, 61.606396 ], [ 30.209656, 61.780916 ], [ 31.138000, 62.358530 ], [ 31.514282, 62.868926 ], [ 30.033875, 63.553446 ], [ 30.443115, 64.205182 ], [ 29.542236, 64.949139 ], [ 30.215149, 65.806153 ], [ 29.501038, 66.513260 ], [ 29.410400, 66.600676 ], [ 33.255615, 66.600676 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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": "Polygon", "coordinates": [ [ [ 23.560181, 66.600676 ], [ 23.562927, 66.513260 ], [ 23.565674, 66.396961 ], [ 23.900757, 66.007969 ], [ 22.500000, 65.776871 ], [ 22.280273, 65.740785 ], [ 22.280273, 66.600676 ], [ 23.560181, 66.600676 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.410400, 66.600676 ], [ 29.501038, 66.513260 ], [ 30.215149, 65.806153 ], [ 29.542236, 64.949139 ], [ 30.443115, 64.205182 ], [ 30.033875, 63.553446 ], [ 31.514282, 62.868926 ], [ 31.138000, 62.358530 ], [ 30.209656, 61.780916 ], [ 29.913025, 61.606396 ], [ 29.734497, 61.501734 ], [ 22.280273, 61.501734 ], [ 22.280273, 63.707156 ], [ 22.442322, 63.818864 ], [ 22.500000, 63.845512 ], [ 24.730225, 64.902580 ], [ 25.397644, 65.111460 ], [ 25.293274, 65.534584 ], [ 23.900757, 66.007969 ], [ 23.565674, 66.396961 ], [ 23.562927, 66.513260 ], [ 23.560181, 66.600676 ], [ 29.410400, 66.600676 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 32.132263, 69.906724 ], [ 33.750000, 69.311529 ], [ 33.774719, 69.301823 ], [ 33.969727, 69.285314 ], [ 33.969727, 66.751830 ], [ 33.917542, 66.760501 ], [ 33.750000, 66.731223 ], [ 33.184204, 66.633377 ], [ 33.450623, 66.513260 ], [ 33.648376, 66.425537 ], [ 29.588928, 66.425537 ], [ 29.501038, 66.513260 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.065619 ], [ 29.399414, 69.157672 ], [ 31.099548, 69.558512 ], [ 32.132263, 69.906724 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 30.314026, 70.685421 ], [ 30.621643, 70.612614 ], [ 31.291809, 70.454265 ], [ 30.003662, 70.186965 ], [ 31.099548, 69.558512 ], [ 29.399414, 69.157672 ], [ 28.591919, 69.065619 ], [ 29.014893, 69.766607 ], [ 27.732239, 70.164610 ], [ 26.177673, 69.825418 ], [ 25.688782, 69.093080 ], [ 24.732971, 68.650556 ], [ 23.661804, 68.892220 ], [ 22.500000, 68.847665 ], [ 22.354431, 68.842709 ], [ 22.280273, 68.878368 ], [ 22.280273, 70.226957 ], [ 22.500000, 70.219523 ], [ 23.021851, 70.202785 ], [ 23.768921, 70.612614 ], [ 23.903503, 70.685421 ], [ 30.314026, 70.685421 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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": "Polygon", "coordinates": [ [ [ 22.280273, 68.486977 ], [ 22.500000, 68.392101 ], [ 23.538208, 67.936492 ], [ 23.562927, 66.513260 ], [ 23.562927, 66.425537 ], [ 22.280273, 66.425537 ], [ 22.280273, 68.486977 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.732239, 70.164610 ], [ 29.014893, 69.766607 ], [ 28.591919, 69.065619 ], [ 28.443604, 68.364776 ], [ 29.976196, 67.699025 ], [ 29.053345, 66.945123 ], [ 29.501038, 66.513260 ], [ 29.588928, 66.425537 ], [ 23.562927, 66.425537 ], [ 23.562927, 66.513260 ], [ 23.538208, 67.936492 ], [ 22.500000, 68.392101 ], [ 22.280273, 68.486977 ], [ 22.280273, 68.878368 ], [ 22.354431, 68.842709 ], [ 22.500000, 68.847665 ], [ 23.661804, 68.892220 ], [ 24.732971, 68.650556 ], [ 25.688782, 69.093080 ], [ 26.177673, 69.825418 ], [ 27.732239, 70.164610 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 28.163452, 71.185982 ], [ 30.621643, 70.612614 ], [ 30.932007, 70.539543 ], [ 23.634338, 70.539543 ], [ 23.768921, 70.612614 ], [ 24.546204, 71.031249 ], [ 26.369934, 70.986560 ], [ 28.163452, 71.185982 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 22.881775, 78.455425 ], [ 23.280029, 78.079589 ], [ 24.721985, 77.853989 ], [ 22.500000, 77.446940 ], [ 22.489014, 77.445149 ], [ 22.280273, 77.473179 ], [ 22.280273, 78.397015 ], [ 22.500000, 78.418539 ], [ 22.881775, 78.455425 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 22.917480, 80.657296 ], [ 25.447083, 80.407473 ], [ 27.405396, 80.056627 ], [ 25.922241, 79.518159 ], [ 23.021851, 79.400085 ], [ 22.500000, 79.430356 ], [ 22.280273, 79.442440 ], [ 22.280273, 80.469064 ], [ 22.500000, 80.534330 ], [ 22.917480, 80.657296 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 45.219727, -83.956169 ], [ 45.219727, -85.070048 ], [ 33.530273, -85.070048 ], [ 33.530273, -83.956169 ], [ 45.219727, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 45.219727, -82.648222 ], [ 45.219727, -84.002262 ], [ 33.530273, -84.002262 ], [ 33.530273, -82.648222 ], [ 45.219727, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 45.219727, -81.059130 ], [ 45.219727, -82.704241 ], [ 33.530273, -82.704241 ], [ 33.530273, -81.059130 ], [ 45.219727, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 45.219727, -79.129976 ], [ 45.219727, -81.127169 ], [ 33.530273, -81.127169 ], [ 33.530273, -79.129976 ], [ 45.219727, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 45.219727, -76.790701 ], [ 45.219727, -79.212538 ], [ 33.530273, -79.212538 ], [ 33.530273, -76.790701 ], [ 45.219727, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 45.219727, -73.958939 ], [ 45.219727, -76.890745 ], [ 33.530273, -76.890745 ], [ 33.530273, -73.958939 ], [ 45.219727, -73.958939 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 45.219727, -70.539543 ], [ 45.219727, -74.079925 ], [ 33.530273, -74.079925 ], [ 33.530273, -70.539543 ], [ 45.219727, -70.539543 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 24 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 45.219727, -67.959179 ], [ 45.219727, -70.685421 ], [ 33.530273, -70.685421 ], [ 33.530273, -68.702491 ], [ 33.750000, -68.573431 ], [ 33.868103, -68.502080 ], [ 34.906311, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.647156, -69.776104 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.921326, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.937317, -68.462791 ], [ 44.112854, -68.267353 ], [ 45.000000, -68.021966 ], [ 45.219727, -67.959179 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 18 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mozambique", "sov_a3": "MOZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mozambique", "adm0_a3": "MOZ", "geou_dif": 0, "geounit": "Mozambique", "gu_a3": "MOZ", "su_dif": 0, "subunit": "Mozambique", "su_a3": "MOZ", "brk_diff": 0, "name": "Mozambique", "name_long": "Mozambique", "brk_a3": "MOZ", "brk_name": "Mozambique", "abbrev": "Moz.", "postal": "MZ", "formal_en": "Republic of Mozambique", "name_sort": "Mozambique", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 21669278, "gdp_md_est": 18940, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MZ", "iso_a3": "MOZ", "iso_n3": "508", "un_a3": "508", "wb_a2": "MZ", "wb_a3": "MOZ", "woe_id": -99, "adm0_a3_is": "MOZ", "adm0_a3_us": "MOZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.337524, -21.739091 ], [ 35.373230, -21.838555 ], [ 35.375977, -21.943046 ], [ 35.384216, -22.139076 ], [ 35.559998, -22.088185 ], [ 35.532532, -23.069624 ], [ 35.370483, -23.533773 ], [ 35.606689, -23.704895 ], [ 35.458374, -24.121689 ], [ 35.038147, -24.477150 ], [ 34.214172, -24.814161 ], [ 33.750000, -25.025884 ], [ 33.530273, -25.122906 ], [ 33.530273, -21.739091 ], [ 35.337524, -21.739091 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Madagascar", "sov_a3": "MDG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Madagascar", "adm0_a3": "MDG", "geou_dif": 0, "geounit": "Madagascar", "gu_a3": "MDG", "su_dif": 0, "subunit": "Madagascar", "su_a3": "MDG", "brk_diff": 0, "name": "Madagascar", "name_long": "Madagascar", "brk_a3": "MDG", "brk_name": "Madagascar", "abbrev": "Mad.", "postal": "MG", "formal_en": "Republic of Madagascar", "name_sort": "Madagascar", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 20653556, "gdp_md_est": 20130, "pop_year": -99, "lastcensus": 1993, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MG", "iso_a3": "MDG", "iso_n3": "450", "un_a3": "450", "wb_a2": "MG", "wb_a3": "MDG", "woe_id": -99, "adm0_a3_is": "MDG", "adm0_a3_us": "MDG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, -21.739091 ], [ 45.219727, -25.515179 ], [ 45.000000, -25.418470 ], [ 44.038696, -24.986058 ], [ 43.761292, -24.459651 ], [ 43.695374, -23.574057 ], [ 43.343811, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.280640, -21.943046 ], [ 43.332825, -21.739091 ], [ 45.219727, -21.739091 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 17 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "United Republic of Tanzania", "sov_a3": "TZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Republic of Tanzania", "adm0_a3": "TZA", "geou_dif": 0, "geounit": "Tanzania", "gu_a3": "TZA", "su_dif": 0, "subunit": "Tanzania", "su_a3": "TZA", "brk_diff": 0, "name": "Tanzania", "name_long": "Tanzania", "brk_a3": "TZA", "brk_name": "Tanzania", "abbrev": "Tanz.", "postal": "TZ", "formal_en": "United Republic of Tanzania", "name_sort": "Tanzania", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 41048532, "gdp_md_est": 54250, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TZ", "iso_a3": "TZA", "iso_n3": "834", "un_a3": "834", "wb_a2": "TZ", "wb_a3": "TZA", "woe_id": -99, "adm0_a3_is": "TZA", "adm0_a3_us": "TZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.333801, -10.962764 ], [ 38.726807, -11.178402 ], [ 38.427429, -11.283467 ], [ 37.825928, -11.267306 ], [ 37.468872, -11.566144 ], [ 36.773987, -11.593051 ], [ 36.513062, -11.719478 ], [ 35.310059, -11.436955 ], [ 34.557495, -11.517705 ], [ 34.488831, -11.178402 ], [ 34.444885, -10.962764 ], [ 39.333801, -10.962764 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.444885, -10.962764 ], [ 34.488831, -11.178402 ], [ 34.557495, -11.517705 ], [ 34.277344, -12.278283 ], [ 34.557495, -13.579251 ], [ 34.906311, -13.563232 ], [ 35.266113, -13.886079 ], [ 35.686340, -14.610163 ], [ 35.771484, -15.895301 ], [ 35.337524, -16.106514 ], [ 35.032654, -16.799282 ], [ 34.378967, -16.183024 ], [ 34.304810, -15.477504 ], [ 34.516296, -15.011117 ], [ 34.458618, -14.612821 ], [ 34.063110, -14.357530 ], [ 33.788452, -14.450639 ], [ 33.750000, -14.418720 ], [ 33.530273, -14.235100 ], [ 33.530273, -10.962764 ], [ 34.444885, -10.962764 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mozambique", "sov_a3": "MOZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mozambique", "adm0_a3": "MOZ", "geou_dif": 0, "geounit": "Mozambique", "gu_a3": "MOZ", "su_dif": 0, "subunit": "Mozambique", "su_a3": "MOZ", "brk_diff": 0, "name": "Mozambique", "name_long": "Mozambique", "brk_a3": "MOZ", "brk_name": "Mozambique", "abbrev": "Moz.", "postal": "MZ", "formal_en": "Republic of Mozambique", "name_sort": "Mozambique", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 21669278, "gdp_md_est": 18940, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MZ", "iso_a3": "MOZ", "iso_n3": "508", "un_a3": "508", "wb_a2": "MZ", "wb_a3": "MOZ", "woe_id": -99, "adm0_a3_is": "MOZ", "adm0_a3_us": "MOZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.468140, -10.962764 ], [ 40.459900, -11.178402 ], [ 40.435181, -11.759815 ], [ 40.558777, -12.637658 ], [ 40.597229, -14.200488 ], [ 40.773010, -14.689881 ], [ 40.476379, -15.406024 ], [ 40.089111, -16.098598 ], [ 39.451904, -16.720385 ], [ 38.537292, -17.098792 ], [ 37.408447, -17.583812 ], [ 36.279602, -18.659257 ], [ 35.895081, -18.841314 ], [ 35.197449, -19.552026 ], [ 34.785461, -19.782211 ], [ 34.700317, -20.496492 ], [ 35.175476, -21.253542 ], [ 35.373230, -21.838555 ], [ 35.375977, -21.943046 ], [ 35.384216, -22.139076 ], [ 35.559998, -22.088185 ], [ 35.559998, -22.146708 ], [ 33.530273, -22.146708 ], [ 33.530273, -14.235100 ], [ 33.750000, -14.418720 ], [ 33.788452, -14.450639 ], [ 34.063110, -14.357530 ], [ 34.458618, -14.612821 ], [ 34.516296, -15.011117 ], [ 34.304810, -15.477504 ], [ 34.378967, -16.183024 ], [ 35.032654, -16.799282 ], [ 35.337524, -16.106514 ], [ 35.771484, -15.895301 ], [ 35.686340, -14.610163 ], [ 35.266113, -13.886079 ], [ 34.906311, -13.563232 ], [ 34.557495, -13.579251 ], [ 34.277344, -12.278283 ], [ 34.557495, -11.517705 ], [ 35.310059, -11.436955 ], [ 36.513062, -11.719478 ], [ 36.773987, -11.593051 ], [ 37.468872, -11.566144 ], [ 37.825928, -11.267306 ], [ 38.427429, -11.283467 ], [ 38.726807, -11.178402 ], [ 39.333801, -10.962764 ], [ 40.468140, -10.962764 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Madagascar", "sov_a3": "MDG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Madagascar", "adm0_a3": "MDG", "geou_dif": 0, "geounit": "Madagascar", "gu_a3": "MDG", "su_dif": 0, "subunit": "Madagascar", "su_a3": "MDG", "brk_diff": 0, "name": "Madagascar", "name_long": "Madagascar", "brk_a3": "MDG", "brk_name": "Madagascar", "abbrev": "Mad.", "postal": "MG", "formal_en": "Republic of Madagascar", "name_sort": "Madagascar", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 20653556, "gdp_md_est": 20130, "pop_year": -99, "lastcensus": 1993, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MG", "iso_a3": "MDG", "iso_n3": "450", "un_a3": "450", "wb_a2": "MG", "wb_a3": "MDG", "woe_id": -99, "adm0_a3_is": "MDG", "adm0_a3_us": "MDG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, -16.077486 ], [ 45.219727, -22.146708 ], [ 43.264160, -22.146708 ], [ 43.253174, -22.055096 ], [ 43.280640, -21.943046 ], [ 43.431702, -21.335432 ], [ 43.893127, -21.161361 ], [ 43.895874, -20.828010 ], [ 44.373779, -20.071411 ], [ 44.461670, -19.432924 ], [ 44.230957, -18.960844 ], [ 44.041443, -18.331062 ], [ 43.961792, -17.408305 ], [ 44.310608, -16.849234 ], [ 44.445190, -16.214675 ], [ 44.942322, -16.177749 ], [ 45.000000, -16.156645 ], [ 45.219727, -16.077486 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 16 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 0.219726 ], [ 33.892822, 0.109863 ], [ 33.892822, 0.000000 ], [ 33.901062, -0.947528 ], [ 33.750000, -0.955766 ], [ 33.530273, -0.964005 ], [ 33.530273, 0.219726 ], [ 33.969727, 0.219726 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.987244, 0.219726 ], [ 40.989990, 0.000000 ], [ 40.992737, -0.856902 ], [ 41.583252, -1.680667 ], [ 40.882874, -2.081451 ], [ 40.635681, -2.498597 ], [ 40.262146, -2.572682 ], [ 40.119324, -3.277630 ], [ 39.797974, -3.680632 ], [ 39.602966, -4.346411 ], [ 39.201965, -4.674980 ], [ 37.765503, -3.675151 ], [ 37.696838, -3.096636 ], [ 34.071350, -1.057374 ], [ 33.901062, -0.947528 ], [ 33.892822, 0.000000 ], [ 33.892822, 0.109863 ], [ 33.969727, 0.219726 ], [ 40.987244, 0.219726 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.069153, 0.219726 ], [ 42.871399, 0.000000 ], [ 42.039185, -0.917319 ], [ 41.808472, -1.444549 ], [ 41.583252, -1.680667 ], [ 40.992737, -0.856902 ], [ 40.989990, 0.000000 ], [ 40.987244, 0.219726 ], [ 43.069153, 0.219726 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "United Republic of Tanzania", "sov_a3": "TZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Republic of Tanzania", "adm0_a3": "TZA", "geou_dif": 0, "geounit": "Tanzania", "gu_a3": "TZA", "su_dif": 0, "subunit": "Tanzania", "su_a3": "TZA", "brk_diff": 0, "name": "Tanzania", "name_long": "Tanzania", "brk_a3": "TZA", "brk_name": "Tanzania", "abbrev": "Tanz.", "postal": "TZ", "formal_en": "United Republic of Tanzania", "name_sort": "Tanzania", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 41048532, "gdp_md_est": 54250, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TZ", "iso_a3": "TZA", "iso_n3": "834", "un_a3": "834", "wb_a2": "TZ", "wb_a3": "TZA", "woe_id": -99, "adm0_a3_is": "TZA", "adm0_a3_us": "TZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.901062, -0.947528 ], [ 34.071350, -1.057374 ], [ 37.696838, -3.096636 ], [ 37.765503, -3.675151 ], [ 39.201965, -4.674980 ], [ 38.740540, -5.908385 ], [ 38.798218, -6.473609 ], [ 39.438171, -6.839170 ], [ 39.468384, -7.098167 ], [ 39.193726, -7.702826 ], [ 39.251404, -8.007557 ], [ 39.185486, -8.483239 ], [ 39.534302, -9.110233 ], [ 39.949036, -10.095966 ], [ 40.314331, -10.314919 ], [ 39.520569, -10.895345 ], [ 38.726807, -11.178402 ], [ 38.427429, -11.283467 ], [ 37.825928, -11.267306 ], [ 37.677612, -11.393879 ], [ 34.532776, -11.393879 ], [ 34.488831, -11.178402 ], [ 34.277344, -10.158153 ], [ 33.750000, -9.430096 ], [ 33.739014, -9.416548 ], [ 33.530273, -9.375903 ], [ 33.530273, -0.964005 ], [ 33.750000, -0.955766 ], [ 33.901062, -0.947528 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.530273, -9.375903 ], [ 33.739014, -9.416548 ], [ 33.750000, -9.430096 ], [ 34.277344, -10.158153 ], [ 34.488831, -11.178402 ], [ 34.532776, -11.393879 ], [ 33.530273, -11.393879 ], [ 33.530273, -9.375903 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mozambique", "sov_a3": "MOZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mozambique", "adm0_a3": "MOZ", "geou_dif": 0, "geounit": "Mozambique", "gu_a3": "MOZ", "su_dif": 0, "subunit": "Mozambique", "su_a3": "MOZ", "brk_diff": 0, "name": "Mozambique", "name_long": "Mozambique", "brk_a3": "MOZ", "brk_name": "Mozambique", "abbrev": "Moz.", "postal": "MZ", "formal_en": "Republic of Mozambique", "name_sort": "Mozambique", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 21669278, "gdp_md_est": 18940, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MZ", "iso_a3": "MOZ", "iso_n3": "508", "un_a3": "508", "wb_a2": "MZ", "wb_a3": "MOZ", "woe_id": -99, "adm0_a3_is": "MOZ", "adm0_a3_us": "MOZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.314331, -10.314919 ], [ 40.476379, -10.763159 ], [ 40.459900, -11.178402 ], [ 40.451660, -11.393879 ], [ 37.677612, -11.393879 ], [ 37.825928, -11.267306 ], [ 38.427429, -11.283467 ], [ 38.726807, -11.178402 ], [ 39.520569, -10.895345 ], [ 40.314331, -10.314919 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 34.873352, 11.393879 ], [ 34.829407, 11.321174 ], [ 34.796448, 11.178402 ], [ 34.730530, 10.911527 ], [ 34.255371, 10.630916 ], [ 33.961487, 9.584501 ], [ 33.961487, 9.465317 ], [ 33.824158, 9.484281 ], [ 33.840637, 9.982376 ], [ 33.750000, 10.247357 ], [ 33.719788, 10.325728 ], [ 33.530273, 10.474308 ], [ 33.530273, 11.393879 ], [ 34.873352, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.530273, 7.719157 ], [ 33.565979, 7.713713 ], [ 33.750000, 7.539487 ], [ 34.074097, 7.226249 ], [ 34.249878, 6.828261 ], [ 34.705811, 6.596402 ], [ 35.296326, 5.506640 ], [ 34.002686, 4.250551 ], [ 33.530273, 3.897138 ], [ 33.530273, 7.719157 ] ] ], [ [ [ 33.530273, 8.366410 ], [ 33.530273, 10.474308 ], [ 33.719788, 10.325728 ], [ 33.750000, 10.247357 ], [ 33.840637, 9.982376 ], [ 33.824158, 9.484281 ], [ 33.961487, 9.465317 ], [ 33.972473, 8.686924 ], [ 33.824158, 8.379997 ], [ 33.750000, 8.377279 ], [ 33.530273, 8.366410 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.002686, 4.250551 ], [ 34.477844, 3.557283 ], [ 34.595947, 3.055497 ], [ 35.035400, 1.908521 ], [ 34.670105, 1.178201 ], [ 34.178467, 0.516350 ], [ 33.892822, 0.109863 ], [ 33.892822, 0.000000 ], [ 33.895569, -0.219726 ], [ 33.530273, -0.219726 ], [ 33.530273, 3.897138 ], [ 34.002686, 4.250551 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Djibouti", "sov_a3": "DJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Djibouti", "adm0_a3": "DJI", "geou_dif": 0, "geounit": "Djibouti", "gu_a3": "DJI", "su_dif": 0, "subunit": "Djibouti", "su_a3": "DJI", "brk_diff": 0, "name": "Djibouti", "name_long": "Djibouti", "brk_a3": "DJI", "brk_name": "Djibouti", "abbrev": "Dji.", "postal": "DJ", "formal_en": "Republic of Djibouti", "name_sort": "Djibouti", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 516055, "gdp_md_est": 1885, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "DJ", "iso_a3": "DJI", "iso_n3": "262", "un_a3": "262", "wb_a2": "DJ", "wb_a3": "DJI", "woe_id": -99, "adm0_a3_is": "DJI", "adm0_a3_us": "DJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Middle East & North Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.096619, 11.393879 ], [ 42.948303, 11.178402 ], [ 42.775269, 10.927708 ], [ 42.552795, 11.105642 ], [ 42.313843, 11.035560 ], [ 41.753540, 11.051734 ], [ 41.748047, 11.178402 ], [ 41.737061, 11.356182 ], [ 41.726074, 11.393879 ], [ 43.096619, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.296326, 5.506640 ], [ 35.815430, 5.339848 ], [ 35.815430, 4.778995 ], [ 36.158752, 4.450474 ], [ 36.853638, 4.450474 ], [ 38.119812, 3.601142 ], [ 38.435669, 3.590178 ], [ 38.669128, 3.617589 ], [ 38.891602, 3.502455 ], [ 39.559021, 3.422950 ], [ 39.852905, 3.839591 ], [ 40.767517, 4.258768 ], [ 41.171265, 3.921800 ], [ 41.852417, 3.919060 ], [ 40.979004, 2.786681 ], [ 40.989990, 0.000000 ], [ 40.989990, -0.219726 ], [ 33.895569, -0.219726 ], [ 33.892822, 0.000000 ], [ 33.892822, 0.109863 ], [ 34.178467, 0.516350 ], [ 34.670105, 1.178201 ], [ 35.035400, 1.908521 ], [ 34.595947, 3.055497 ], [ 34.477844, 3.557283 ], [ 34.002686, 4.250551 ], [ 35.296326, 5.506640 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.726074, 11.393879 ], [ 41.737061, 11.356182 ], [ 41.748047, 11.178402 ], [ 41.753540, 11.051734 ], [ 42.313843, 11.035560 ], [ 42.552795, 11.105642 ], [ 42.775269, 10.927708 ], [ 42.558289, 10.574222 ], [ 42.926331, 10.022948 ], [ 43.294373, 9.541166 ], [ 43.676147, 9.186159 ], [ 45.000000, 8.705929 ], [ 45.219727, 8.627188 ], [ 45.219727, 5.276948 ], [ 45.000000, 5.041699 ], [ 44.961548, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.767029, 4.253290 ], [ 42.127075, 4.236856 ], [ 41.852417, 3.919060 ], [ 41.171265, 3.921800 ], [ 40.767517, 4.258768 ], [ 39.852905, 3.839591 ], [ 39.559021, 3.422950 ], [ 38.891602, 3.502455 ], [ 38.669128, 3.617589 ], [ 38.435669, 3.590178 ], [ 38.119812, 3.601142 ], [ 36.853638, 4.450474 ], [ 36.158752, 4.450474 ], [ 35.815430, 4.778995 ], [ 35.815430, 5.339848 ], [ 35.296326, 5.506640 ], [ 34.705811, 6.596402 ], [ 34.249878, 6.828261 ], [ 34.074097, 7.226249 ], [ 33.750000, 7.539487 ], [ 33.565979, 7.713713 ], [ 33.530273, 7.719157 ], [ 33.530273, 8.366410 ], [ 33.750000, 8.377279 ], [ 33.824158, 8.379997 ], [ 33.972473, 8.686924 ], [ 33.961487, 9.584501 ], [ 34.255371, 10.630916 ], [ 34.730530, 10.911527 ], [ 34.796448, 11.178402 ], [ 34.829407, 11.321174 ], [ 34.873352, 11.393879 ], [ 41.726074, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "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": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.264160, 11.393879 ], [ 43.470154, 11.278080 ], [ 43.516846, 11.178402 ], [ 43.665161, 10.865676 ], [ 44.115601, 10.447299 ], [ 44.612732, 10.444598 ], [ 45.000000, 10.547221 ], [ 45.219727, 10.606620 ], [ 45.219727, 8.627188 ], [ 45.000000, 8.705929 ], [ 43.676147, 9.186159 ], [ 43.294373, 9.541166 ], [ 42.926331, 10.022948 ], [ 42.558289, 10.574222 ], [ 42.775269, 10.927708 ], [ 42.948303, 11.178402 ], [ 43.096619, 11.393879 ], [ 43.264160, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, 5.276948 ], [ 45.219727, 1.817932 ], [ 45.000000, 1.672431 ], [ 44.066162, 1.054628 ], [ 43.135071, 0.293883 ], [ 42.871399, 0.000000 ], [ 42.670898, -0.219726 ], [ 40.989990, -0.219726 ], [ 40.989990, 0.000000 ], [ 40.979004, 2.786681 ], [ 41.852417, 3.919060 ], [ 42.127075, 4.236856 ], [ 42.767029, 4.253290 ], [ 43.659668, 4.959615 ], [ 44.961548, 5.003394 ], [ 45.000000, 5.041699 ], [ 45.219727, 5.276948 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.738281, 22.146708 ], [ 36.864624, 22.001628 ], [ 33.530273, 22.001628 ], [ 33.530273, 22.146708 ], [ 36.738281, 22.146708 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 36.864624, 22.001628 ], [ 36.883850, 21.943046 ], [ 37.185974, 21.020419 ], [ 36.968994, 20.838278 ], [ 37.114563, 19.808054 ], [ 37.479858, 18.615013 ], [ 37.861633, 18.370166 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.429270 ], [ 37.166748, 17.264105 ], [ 36.850891, 16.956979 ], [ 36.752014, 16.293779 ], [ 36.320801, 14.822681 ], [ 36.427917, 14.424040 ], [ 36.268616, 13.565902 ], [ 35.862122, 12.578691 ], [ 35.257874, 12.084982 ], [ 34.829407, 11.321174 ], [ 34.796448, 11.178402 ], [ 34.741516, 10.962764 ], [ 33.530273, 10.962764 ], [ 33.530273, 22.001628 ], [ 36.864624, 22.001628 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Eritrea", "sov_a3": "ERI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Eritrea", "adm0_a3": "ERI", "geou_dif": 0, "geounit": "Eritrea", "gu_a3": "ERI", "su_dif": 0, "subunit": "Eritrea", "su_a3": "ERI", "brk_diff": 0, "name": "Eritrea", "name_long": "Eritrea", "brk_a3": "ERI", "brk_name": "Eritrea", "abbrev": "Erit.", "postal": "ER", "formal_en": "State of Eritrea", "name_sort": "Eritrea", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 5647168, "gdp_md_est": 3945, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ER", "iso_a3": "ERI", "iso_n3": "232", "un_a3": "232", "wb_a2": "ER", "wb_a3": "ERI", "woe_id": -99, "adm0_a3_is": "ERI", "adm0_a3_us": "ERI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.408203, 17.999632 ], [ 38.990479, 16.841348 ], [ 39.265137, 15.924356 ], [ 39.811707, 15.437796 ], [ 41.176758, 14.493190 ], [ 41.734314, 13.923404 ], [ 42.275391, 13.344193 ], [ 42.588501, 13.001882 ], [ 43.080139, 12.701971 ], [ 42.778015, 12.458033 ], [ 42.349548, 12.543840 ], [ 42.008972, 12.868037 ], [ 41.596985, 13.453737 ], [ 41.154785, 13.774066 ], [ 40.893860, 14.120595 ], [ 40.025940, 14.519780 ], [ 39.339294, 14.533074 ], [ 39.097595, 14.743011 ], [ 38.512573, 14.506485 ], [ 37.905579, 14.960706 ], [ 37.592468, 14.213801 ], [ 36.427917, 14.424040 ], [ 36.320801, 14.822681 ], [ 36.752014, 16.293779 ], [ 36.850891, 16.956979 ], [ 37.166748, 17.264105 ], [ 37.902832, 17.429270 ], [ 38.408203, 17.999632 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Djibouti", "sov_a3": "DJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Djibouti", "adm0_a3": "DJI", "geou_dif": 0, "geounit": "Djibouti", "gu_a3": "DJI", "su_dif": 0, "subunit": "Djibouti", "su_a3": "DJI", "brk_diff": 0, "name": "Djibouti", "name_long": "Djibouti", "brk_a3": "DJI", "brk_name": "Djibouti", "abbrev": "Dji.", "postal": "DJ", "formal_en": "Republic of Djibouti", "name_sort": "Djibouti", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 516055, "gdp_md_est": 1885, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "DJ", "iso_a3": "DJI", "iso_n3": "262", "un_a3": "262", "wb_a2": "DJ", "wb_a3": "DJI", "woe_id": -99, "adm0_a3_is": "DJI", "adm0_a3_us": "DJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Middle East & North Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.080139, 12.701971 ], [ 43.316345, 12.390976 ], [ 43.286133, 11.977532 ], [ 42.714844, 11.738302 ], [ 43.143311, 11.463874 ], [ 42.948303, 11.178402 ], [ 42.799988, 10.962764 ], [ 42.731323, 10.962764 ], [ 42.552795, 11.105642 ], [ 42.313843, 11.035560 ], [ 41.753540, 11.051734 ], [ 41.748047, 11.178402 ], [ 41.737061, 11.356182 ], [ 41.660156, 11.633406 ], [ 41.997986, 12.101095 ], [ 42.349548, 12.543840 ], [ 42.778015, 12.458033 ], [ 43.080139, 12.701971 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.905579, 14.960706 ], [ 38.512573, 14.506485 ], [ 39.097595, 14.743011 ], [ 39.339294, 14.533074 ], [ 40.025940, 14.519780 ], [ 40.893860, 14.120595 ], [ 41.154785, 13.774066 ], [ 41.596985, 13.453737 ], [ 42.008972, 12.868037 ], [ 42.349548, 12.543840 ], [ 41.997986, 12.101095 ], [ 41.660156, 11.633406 ], [ 41.737061, 11.356182 ], [ 41.748047, 11.178402 ], [ 41.753540, 11.051734 ], [ 42.313843, 11.035560 ], [ 42.552795, 11.105642 ], [ 42.731323, 10.962764 ], [ 34.741516, 10.962764 ], [ 34.796448, 11.178402 ], [ 34.829407, 11.321174 ], [ 35.257874, 12.084982 ], [ 35.862122, 12.578691 ], [ 36.268616, 13.565902 ], [ 36.427917, 14.424040 ], [ 37.592468, 14.213801 ], [ 37.905579, 14.960706 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 45.219727, 22.146708 ], [ 45.219727, 17.431890 ], [ 45.000000, 17.429270 ], [ 44.060669, 17.410925 ], [ 43.791504, 17.321798 ], [ 43.379517, 17.581194 ], [ 43.113098, 17.090917 ], [ 43.217468, 16.667769 ], [ 42.778015, 16.349132 ], [ 42.648926, 16.775617 ], [ 42.346802, 17.077790 ], [ 42.269897, 17.476432 ], [ 41.753540, 17.834989 ], [ 41.220703, 18.672267 ], [ 40.937805, 19.487308 ], [ 40.245667, 20.177145 ], [ 39.800720, 20.339476 ], [ 39.138794, 21.291933 ], [ 39.028931, 21.943046 ], [ 39.023438, 21.988895 ], [ 39.034424, 22.146708 ], [ 45.219727, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Yemen", "sov_a3": "YEM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Yemen", "adm0_a3": "YEM", "geou_dif": 0, "geounit": "Yemen", "gu_a3": "YEM", "su_dif": 0, "subunit": "Yemen", "su_a3": "YEM", "brk_diff": 0, "name": "Yemen", "name_long": "Yemen", "brk_a3": "YEM", "brk_name": "Yemen", "abbrev": "Yem.", "postal": "YE", "formal_en": "Republic of Yemen", "name_sort": "Yemen, Rep.", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 23822783, "gdp_md_est": 55280, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "YE", "iso_a3": "YEM", "iso_n3": "887", "un_a3": "887", "wb_a2": "RY", "wb_a3": "YEM", "woe_id": -99, "adm0_a3_is": "YEM", "adm0_a3_us": "YEM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.379517, 17.581194 ], [ 43.791504, 17.321798 ], [ 44.060669, 17.410925 ], [ 45.000000, 17.429270 ], [ 45.214233, 17.434511 ], [ 45.219727, 17.431890 ], [ 45.219727, 12.975118 ], [ 45.142822, 12.956383 ], [ 45.000000, 12.718047 ], [ 44.989014, 12.701971 ], [ 44.491882, 12.723405 ], [ 44.173279, 12.586732 ], [ 43.481140, 12.637658 ], [ 43.220215, 13.221230 ], [ 43.250427, 13.768731 ], [ 43.085632, 14.064652 ], [ 42.890625, 14.804094 ], [ 42.602234, 15.215288 ], [ 42.802734, 15.262989 ], [ 42.701111, 15.720882 ], [ 42.821960, 15.913791 ], [ 42.778015, 16.349132 ], [ 43.217468, 16.667769 ], [ 43.113098, 17.090917 ], [ 43.379517, 17.581194 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "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": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.143311, 11.463874 ], [ 43.470154, 11.278080 ], [ 43.516846, 11.178402 ], [ 43.618469, 10.962764 ], [ 42.799988, 10.962764 ], [ 42.948303, 11.178402 ], [ 43.143311, 11.463874 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.530273, 27.327855 ], [ 33.750000, 26.877981 ], [ 34.104309, 26.143111 ], [ 34.472351, 25.599425 ], [ 34.793701, 25.035839 ], [ 35.691833, 23.928524 ], [ 35.491333, 23.752668 ], [ 35.524292, 23.102471 ], [ 36.688843, 22.205206 ], [ 36.864624, 22.001628 ], [ 33.530273, 22.001628 ], [ 33.530273, 27.327855 ] ] ], [ [ [ 33.530273, 28.030773 ], [ 33.530273, 30.987028 ], [ 33.750000, 30.970544 ], [ 33.771973, 30.968189 ], [ 34.263611, 31.219848 ], [ 34.920044, 29.501769 ], [ 34.639893, 29.101777 ], [ 34.425659, 28.345482 ], [ 34.153748, 27.824503 ], [ 33.920288, 27.649472 ], [ 33.750000, 27.814786 ], [ 33.530273, 28.030773 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, 32.138409 ], [ 45.219727, 29.159357 ], [ 45.000000, 29.166552 ], [ 44.708862, 29.180941 ], [ 41.888123, 31.191658 ], [ 40.399475, 31.891551 ], [ 40.122070, 31.952162 ], [ 39.295349, 32.138409 ], [ 45.219727, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Israel", "adm0_a3": "ISR", "geou_dif": 0, "geounit": "Israel", "gu_a3": "ISR", "su_dif": 0, "subunit": "Israel", "su_a3": "ISR", "brk_diff": 0, "name": "Israel", "name_long": "Israel", "brk_a3": "ISR", "brk_name": "Israel", "abbrev": "Isr.", "postal": "IS", "formal_en": "State of Israel", "name_sort": "Israel", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 7233701, "gdp_md_est": 201400, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IL", "iso_a3": "ISR", "iso_n3": "376", "un_a3": "376", "wb_a2": "IL", "wb_a3": "ISR", "woe_id": -99, "adm0_a3_is": "ISR", "adm0_a3_us": "ISR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.057373, 32.138409 ], [ 34.999695, 31.952162 ], [ 34.972229, 31.868228 ], [ 35.224915, 31.756196 ], [ 34.969482, 31.618305 ], [ 34.925537, 31.353637 ], [ 35.395203, 31.489578 ], [ 35.419922, 31.102334 ], [ 34.920044, 29.501769 ], [ 34.263611, 31.219848 ], [ 34.554749, 31.550453 ], [ 34.486084, 31.606610 ], [ 34.683838, 31.952162 ], [ 34.752502, 32.073266 ], [ 34.768982, 32.138409 ], [ 35.057373, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 1, "level": 2, "type": "Disputed", "admin": "Palestine", "adm0_a3": "PSX", "geou_dif": 0, "geounit": "Palestine", "gu_a3": "PSX", "su_dif": 0, "subunit": "Palestine", "su_a3": "PSX", "brk_diff": 0, "name": "Palestine", "name_long": "Palestine", "brk_a3": "PSX", "brk_name": "Palestine", "abbrev": "Pal.", "postal": "PAL", "formal_en": "West Bank and Gaza", "note_adm0": "Partial self-admin.", "note_brk": "Partial self-admin.", "name_sort": "Palestine (West Bank and Gaza)", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 4119083, "gdp_md_est": 11950.8, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PS", "iso_a3": "PSE", "iso_n3": "275", "un_a3": "275", "wb_a2": "GZ", "wb_a3": "WBG", "woe_id": -99, "adm0_a3_is": "PSE", "adm0_a3_us": "PSX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.543518, 32.138409 ], [ 35.543518, 31.784217 ], [ 35.395203, 31.489578 ], [ 34.925537, 31.353637 ], [ 34.969482, 31.618305 ], [ 35.224915, 31.756196 ], [ 34.972229, 31.868228 ], [ 34.999695, 31.952162 ], [ 35.057373, 32.138409 ], [ 35.543518, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Jordan", "sov_a3": "JOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Jordan", "adm0_a3": "JOR", "geou_dif": 0, "geounit": "Jordan", "gu_a3": "JOR", "su_dif": 0, "subunit": "Jordan", "su_a3": "JOR", "brk_diff": 0, "name": "Jordan", "name_long": "Jordan", "brk_a3": "JOR", "brk_name": "Jordan", "abbrev": "Jord.", "postal": "J", "formal_en": "Hashemite Kingdom of Jordan", "name_sort": "Jordan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 6342948, "gdp_md_est": 31610, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "JO", "iso_a3": "JOR", "iso_n3": "400", "un_a3": "400", "wb_a2": "JO", "wb_a3": "JOR", "woe_id": -99, "adm0_a3_is": "JOR", "adm0_a3_us": "JOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.166260, 32.138409 ], [ 39.004211, 32.010405 ], [ 38.770752, 31.952162 ], [ 37.001953, 31.510654 ], [ 37.996216, 30.510217 ], [ 37.666626, 30.339695 ], [ 37.501831, 30.004895 ], [ 36.738281, 29.866847 ], [ 36.499329, 29.506549 ], [ 36.068115, 29.197726 ], [ 34.955750, 29.358239 ], [ 34.920044, 29.501769 ], [ 35.419922, 31.102334 ], [ 35.395203, 31.489578 ], [ 35.543518, 31.784217 ], [ 35.543518, 32.138409 ], [ 39.166260, 32.138409 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 36.864624, 22.001628 ], [ 36.883850, 21.943046 ], [ 36.949768, 21.739091 ], [ 33.530273, 21.739091 ], [ 33.530273, 22.001628 ], [ 36.864624, 22.001628 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 39.295349, 32.138409 ], [ 40.122070, 31.952162 ], [ 40.399475, 31.891551 ], [ 41.888123, 31.191658 ], [ 44.708862, 29.180941 ], [ 45.000000, 29.166552 ], [ 45.219727, 29.159357 ], [ 45.219727, 21.739091 ], [ 39.064636, 21.739091 ], [ 39.028931, 21.943046 ], [ 39.023438, 21.988895 ], [ 39.064636, 22.581047 ], [ 38.490601, 23.689805 ], [ 38.023682, 24.079067 ], [ 37.482605, 24.287027 ], [ 37.153015, 24.859026 ], [ 37.207947, 25.085599 ], [ 36.930542, 25.604379 ], [ 36.639404, 25.827089 ], [ 36.246643, 26.571333 ], [ 35.639648, 27.376645 ], [ 35.128784, 28.064710 ], [ 34.631653, 28.059862 ], [ 34.785461, 28.608637 ], [ 34.832153, 28.957686 ], [ 34.955750, 29.358239 ], [ 36.068115, 29.197726 ], [ 36.499329, 29.506549 ], [ 36.738281, 29.866847 ], [ 37.501831, 30.004895 ], [ 37.666626, 30.339695 ], [ 37.996216, 30.510217 ], [ 37.001953, 31.510654 ], [ 38.770752, 31.952162 ], [ 39.004211, 32.010405 ], [ 39.166260, 32.138409 ], [ 39.295349, 32.138409 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.057922, 41.145570 ], [ 43.580017, 41.093842 ], [ 43.475647, 41.145570 ], [ 44.057922, 41.145570 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Northern Cyprus", "sov_a3": "CYN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Northern Cyprus", "adm0_a3": "CYN", "geou_dif": 0, "geounit": "Northern Cyprus", "gu_a3": "CYN", "su_dif": 0, "subunit": "Northern Cyprus", "su_a3": "CYN", "brk_diff": 1, "name": "N. Cyprus", "name_long": "Northern Cyprus", "brk_a3": "B20", "brk_name": "N. Cyprus", "abbrev": "N. Cy.", "postal": "CN", "formal_en": "Turkish Republic of Northern Cyprus", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Cyprus", "name_sort": "Cyprus, Northern", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 265100, "gdp_md_est": 3600, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "CYP", "adm0_a3_us": "CYP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 15, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.573975, 35.672916 ], [ 33.898315, 35.247862 ], [ 33.972473, 35.059229 ], [ 33.865356, 35.095193 ], [ 33.750000, 35.047987 ], [ 33.673096, 35.018750 ], [ 33.530273, 35.038992 ], [ 33.530273, 35.377854 ], [ 33.664856, 35.373375 ], [ 33.750000, 35.402484 ], [ 34.573975, 35.672916 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Cyprus", "sov_a3": "CYP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cyprus", "adm0_a3": "CYP", "geou_dif": 0, "geounit": "Cyprus", "gu_a3": "CYP", "su_dif": 0, "subunit": "Cyprus", "su_a3": "CYP", "brk_diff": 0, "name": "Cyprus", "name_long": "Cyprus", "brk_a3": "CYP", "brk_name": "Cyprus", "abbrev": "Cyp.", "postal": "CY", "formal_en": "Republic of Cyprus", "name_sort": "Cyprus", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 531640, "gdp_md_est": 22700, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "CY", "iso_a3": "CYP", "iso_n3": "196", "un_a3": "196", "wb_a2": "CY", "wb_a3": "CYP", "woe_id": -99, "adm0_a3_is": "CYP", "adm0_a3_us": "CYP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.865356, 35.095193 ], [ 33.972473, 35.059229 ], [ 34.002686, 34.978252 ], [ 33.750000, 34.879172 ], [ 33.530273, 34.791250 ], [ 33.530273, 35.038992 ], [ 33.673096, 35.018750 ], [ 33.750000, 35.047987 ], [ 33.865356, 35.095193 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.475647, 41.145570 ], [ 43.580017, 41.093842 ], [ 43.634949, 40.979898 ], [ 43.750305, 40.741014 ], [ 43.654175, 40.254377 ], [ 44.398499, 40.006580 ], [ 44.791260, 39.713525 ], [ 44.107361, 39.429829 ], [ 44.420471, 38.281313 ], [ 44.225464, 37.972350 ], [ 44.772034, 37.171260 ], [ 44.291382, 37.002553 ], [ 43.939819, 37.256566 ], [ 42.778015, 37.385435 ], [ 42.349548, 37.230328 ], [ 41.209717, 37.074902 ], [ 40.671387, 37.092431 ], [ 39.520569, 36.716871 ], [ 38.699341, 36.714669 ], [ 38.166504, 36.901587 ], [ 37.065125, 36.624345 ], [ 36.738281, 36.818080 ], [ 36.683350, 36.259778 ], [ 36.147766, 35.822267 ], [ 35.779724, 36.275279 ], [ 36.158752, 36.650793 ], [ 35.549011, 36.567012 ], [ 34.714050, 36.796090 ], [ 34.024658, 36.222119 ], [ 33.750000, 36.199958 ], [ 33.530273, 36.184442 ], [ 33.530273, 41.145570 ], [ 37.617188, 41.145570 ], [ 38.229675, 40.979898 ], [ 38.345032, 40.948788 ], [ 38.583984, 40.979898 ], [ 39.512329, 41.104191 ], [ 40.372009, 41.015138 ], [ 40.668640, 41.145570 ], [ 43.475647, 41.145570 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lebanon", "sov_a3": "LBN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lebanon", "adm0_a3": "LBN", "geou_dif": 0, "geounit": "Lebanon", "gu_a3": "LBN", "su_dif": 0, "subunit": "Lebanon", "su_a3": "LBN", "brk_diff": 0, "name": "Lebanon", "name_long": "Lebanon", "brk_a3": "LBN", "brk_name": "Lebanon", "abbrev": "Leb.", "postal": "LB", "formal_en": "Lebanese Republic", "name_sort": "Lebanon", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 12, "pop_est": 4017095, "gdp_md_est": 44060, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LB", "iso_a3": "LBN", "iso_n3": "422", "un_a3": "422", "wb_a2": "LB", "wb_a3": "LBN", "woe_id": -99, "adm0_a3_is": "LBN", "adm0_a3_us": "LBN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.996704, 34.646766 ], [ 36.447144, 34.594781 ], [ 36.609192, 34.202716 ], [ 36.065369, 33.827075 ], [ 35.820923, 33.277732 ], [ 35.551758, 33.266250 ], [ 35.458374, 33.089240 ], [ 35.126038, 33.091542 ], [ 35.480347, 33.906896 ], [ 35.977478, 34.610606 ], [ 35.996704, 34.646766 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Syria", "sov_a3": "SYR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Syria", "adm0_a3": "SYR", "geou_dif": 0, "geounit": "Syria", "gu_a3": "SYR", "su_dif": 0, "subunit": "Syria", "su_a3": "SYR", "brk_diff": 0, "name": "Syria", "name_long": "Syria", "brk_a3": "SYR", "brk_name": "Syria", "abbrev": "Syria", "postal": "SYR", "formal_en": "Syrian Arab Republic", "name_sort": "Syrian Arab Republic", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 20178485, "gdp_md_est": 98830, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SY", "iso_a3": "SYR", "iso_n3": "760", "un_a3": "760", "wb_a2": "SY", "wb_a3": "SYR", "woe_id": -99, "adm0_a3_is": "SYR", "adm0_a3_us": "SYR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.349548, 37.230328 ], [ 41.835938, 36.606709 ], [ 41.289368, 36.359375 ], [ 41.382751, 35.630512 ], [ 41.003723, 34.420505 ], [ 38.789978, 33.378706 ], [ 36.831665, 32.314991 ], [ 35.700073, 32.717977 ], [ 35.834656, 32.870360 ], [ 35.820923, 33.277732 ], [ 36.065369, 33.827075 ], [ 36.609192, 34.202716 ], [ 36.447144, 34.594781 ], [ 35.996704, 34.646766 ], [ 35.903320, 35.411438 ], [ 36.147766, 35.822267 ], [ 36.683350, 36.259778 ], [ 36.738281, 36.818080 ], [ 37.065125, 36.624345 ], [ 38.166504, 36.901587 ], [ 38.699341, 36.714669 ], [ 39.520569, 36.716871 ], [ 40.671387, 37.092431 ], [ 41.209717, 37.074902 ], [ 42.349548, 37.230328 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.778015, 37.385435 ], [ 43.939819, 37.256566 ], [ 44.291382, 37.002553 ], [ 44.772034, 37.171260 ], [ 45.000000, 36.754290 ], [ 45.219727, 36.350527 ], [ 45.219727, 31.765537 ], [ 40.663147, 31.765537 ], [ 40.399475, 31.891551 ], [ 40.122070, 31.952162 ], [ 39.193726, 32.161663 ], [ 38.789978, 33.378706 ], [ 41.003723, 34.420505 ], [ 41.382751, 35.630512 ], [ 41.289368, 36.359375 ], [ 41.835938, 36.606709 ], [ 42.349548, 37.230328 ], [ 42.778015, 37.385435 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Israel", "adm0_a3": "ISR", "geou_dif": 0, "geounit": "Israel", "gu_a3": "ISR", "su_dif": 0, "subunit": "Israel", "su_a3": "ISR", "brk_diff": 0, "name": "Israel", "name_long": "Israel", "brk_a3": "ISR", "brk_name": "Israel", "abbrev": "Isr.", "postal": "IS", "formal_en": "State of Israel", "name_sort": "Israel", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 7233701, "gdp_md_est": 201400, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IL", "iso_a3": "ISR", "iso_n3": "376", "un_a3": "376", "wb_a2": "IL", "wb_a3": "ISR", "woe_id": -99, "adm0_a3_is": "ISR", "adm0_a3_us": "ISR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.820923, 33.277732 ], [ 35.834656, 32.870360 ], [ 35.700073, 32.717977 ], [ 35.719299, 32.711044 ], [ 35.543518, 32.396197 ], [ 35.183716, 32.532921 ], [ 34.999695, 31.952162 ], [ 34.972229, 31.868228 ], [ 35.200195, 31.765537 ], [ 34.576721, 31.765537 ], [ 34.683838, 31.952162 ], [ 34.752502, 32.073266 ], [ 34.953003, 32.828827 ], [ 35.095825, 33.082337 ], [ 35.126038, 33.091542 ], [ 35.458374, 33.089240 ], [ 35.551758, 33.266250 ], [ 35.820923, 33.277732 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 1, "level": 2, "type": "Disputed", "admin": "Palestine", "adm0_a3": "PSX", "geou_dif": 0, "geounit": "Palestine", "gu_a3": "PSX", "su_dif": 0, "subunit": "Palestine", "su_a3": "PSX", "brk_diff": 0, "name": "Palestine", "name_long": "Palestine", "brk_a3": "PSX", "brk_name": "Palestine", "abbrev": "Pal.", "postal": "PAL", "formal_en": "West Bank and Gaza", "note_adm0": "Partial self-admin.", "note_brk": "Partial self-admin.", "name_sort": "Palestine (West Bank and Gaza)", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 4119083, "gdp_md_est": 11950.8, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PS", "iso_a3": "PSE", "iso_n3": "275", "un_a3": "275", "wb_a2": "GZ", "wb_a3": "WBG", "woe_id": -99, "adm0_a3_is": "PSE", "adm0_a3_us": "PSX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.183716, 32.532921 ], [ 35.543518, 32.396197 ], [ 35.543518, 31.784217 ], [ 35.535278, 31.765537 ], [ 35.200195, 31.765537 ], [ 34.972229, 31.868228 ], [ 34.999695, 31.952162 ], [ 35.183716, 32.532921 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Jordan", "sov_a3": "JOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Jordan", "adm0_a3": "JOR", "geou_dif": 0, "geounit": "Jordan", "gu_a3": "JOR", "su_dif": 0, "subunit": "Jordan", "su_a3": "JOR", "brk_diff": 0, "name": "Jordan", "name_long": "Jordan", "brk_a3": "JOR", "brk_name": "Jordan", "abbrev": "Jord.", "postal": "J", "formal_en": "Hashemite Kingdom of Jordan", "name_sort": "Jordan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 6342948, "gdp_md_est": 31610, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "JO", "iso_a3": "JOR", "iso_n3": "400", "un_a3": "400", "wb_a2": "JO", "wb_a3": "JOR", "woe_id": -99, "adm0_a3_is": "JOR", "adm0_a3_us": "JOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.789978, 33.378706 ], [ 39.193726, 32.161663 ], [ 39.004211, 32.010405 ], [ 38.770752, 31.952162 ], [ 38.026428, 31.765537 ], [ 35.535278, 31.765537 ], [ 35.543518, 31.784217 ], [ 35.543518, 32.396197 ], [ 35.719299, 32.711044 ], [ 36.831665, 32.314991 ], [ 38.789978, 33.378706 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.052185, 41.145570 ], [ 45.178528, 40.986118 ], [ 45.219727, 40.967456 ], [ 45.219727, 39.544294 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.713525 ], [ 44.398499, 40.006580 ], [ 43.654175, 40.254377 ], [ 43.750305, 40.741014 ], [ 43.634949, 40.979898 ], [ 43.580017, 41.093842 ], [ 44.057922, 41.145570 ], [ 45.052185, 41.145570 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 39.740986 ], [ 45.219727, 39.544294 ], [ 45.219727, 39.093831 ], [ 45.000000, 39.293923 ], [ 44.950562, 39.336422 ], [ 44.791260, 39.713525 ], [ 45.000000, 39.740986 ] ] ], [ [ [ 45.219727, 41.145570 ], [ 45.219727, 40.967456 ], [ 45.178528, 40.986118 ], [ 45.052185, 41.145570 ], [ 45.219727, 41.145570 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.791260, 39.713525 ], [ 44.950562, 39.336422 ], [ 45.000000, 39.293923 ], [ 45.219727, 39.093831 ], [ 45.219727, 36.350527 ], [ 45.000000, 36.754290 ], [ 44.772034, 37.171260 ], [ 44.225464, 37.972350 ], [ 44.420471, 38.281313 ], [ 44.107361, 39.429829 ], [ 44.791260, 39.713525 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 39.193726, 32.161663 ], [ 40.122070, 31.952162 ], [ 40.399475, 31.891551 ], [ 40.663147, 31.765537 ], [ 38.026428, 31.765537 ], [ 38.770752, 31.952162 ], [ 39.004211, 32.010405 ], [ 39.193726, 32.161663 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 45.219727, 49.066668 ], [ 45.219727, 42.559150 ], [ 45.000000, 42.609706 ], [ 44.535828, 42.712714 ], [ 43.928833, 42.555104 ], [ 43.755798, 42.740961 ], [ 42.393494, 43.221190 ], [ 40.921326, 43.383094 ], [ 40.075378, 43.554520 ], [ 39.954529, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.537537, 44.658885 ], [ 36.675110, 45.245887 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.242552 ], [ 37.672119, 46.638122 ], [ 39.147034, 47.045797 ], [ 39.119568, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.768005, 47.826064 ], [ 39.737549, 47.899772 ], [ 39.894104, 48.233821 ], [ 39.674377, 48.785152 ], [ 39.781494, 48.922499 ], [ 39.891357, 49.066668 ], [ 45.219727, 49.066668 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 39.891357, 49.066668 ], [ 39.781494, 48.922499 ], [ 39.674377, 48.785152 ], [ 39.894104, 48.233821 ], [ 39.737549, 47.899772 ], [ 38.768005, 47.826064 ], [ 38.254395, 47.546872 ], [ 38.221436, 47.103784 ], [ 37.424927, 47.023334 ], [ 36.757507, 46.700319 ], [ 35.823669, 46.647551 ], [ 34.961243, 46.274834 ], [ 35.018921, 45.652448 ], [ 35.507812, 45.410020 ], [ 36.529541, 45.471688 ], [ 36.334534, 45.114238 ], [ 35.238647, 44.941473 ], [ 33.881836, 44.363133 ], [ 33.750000, 44.410240 ], [ 33.530273, 44.490628 ], [ 33.530273, 44.999767 ], [ 33.546753, 45.036656 ], [ 33.530273, 45.040537 ], [ 33.530273, 45.832627 ], [ 33.587952, 45.851760 ], [ 33.530273, 45.897655 ], [ 33.530273, 49.066668 ], [ 39.891357, 49.066668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.075378, 43.554520 ], [ 40.921326, 43.383094 ], [ 42.393494, 43.221190 ], [ 43.755798, 42.740961 ], [ 43.928833, 42.555104 ], [ 44.535828, 42.712714 ], [ 45.000000, 42.609706 ], [ 45.219727, 42.559150 ], [ 45.219727, 41.411836 ], [ 45.000000, 41.267485 ], [ 44.969788, 41.248903 ], [ 43.580017, 41.093842 ], [ 42.618713, 41.584634 ], [ 41.553040, 41.537366 ], [ 41.701355, 41.963575 ], [ 41.451416, 42.646081 ], [ 40.874634, 43.014689 ], [ 40.319824, 43.129052 ], [ 39.954529, 43.436966 ], [ 40.075378, 43.554520 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.167236, 42.041134 ], [ 36.911316, 41.335576 ], [ 38.229675, 40.979898 ], [ 38.345032, 40.948788 ], [ 38.583984, 40.979898 ], [ 39.512329, 41.104191 ], [ 40.372009, 41.015138 ], [ 41.553040, 41.537366 ], [ 42.618713, 41.584634 ], [ 43.580017, 41.093842 ], [ 43.634949, 40.979898 ], [ 43.714600, 40.813809 ], [ 33.530273, 40.813809 ], [ 33.530273, 42.020733 ], [ 33.750000, 42.022773 ], [ 35.167236, 42.041134 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.969788, 41.248903 ], [ 45.000000, 41.213788 ], [ 45.178528, 40.986118 ], [ 45.219727, 40.967456 ], [ 45.219727, 40.813809 ], [ 43.714600, 40.813809 ], [ 43.634949, 40.979898 ], [ 43.580017, 41.093842 ], [ 44.969788, 41.248903 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, 41.411836 ], [ 45.219727, 40.967456 ], [ 45.178528, 40.986118 ], [ 45.000000, 41.213788 ], [ 44.969788, 41.248903 ], [ 45.000000, 41.267485 ], [ 45.216980, 41.411836 ], [ 45.219727, 41.411836 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 45.219727, 55.899956 ], [ 45.219727, 48.777913 ], [ 39.674377, 48.777913 ], [ 39.674377, 48.785152 ], [ 39.781494, 48.922499 ], [ 40.078125, 49.309008 ], [ 40.067139, 49.601811 ], [ 38.594971, 49.926472 ], [ 38.009949, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.625671, 50.226124 ], [ 35.354004, 50.578004 ], [ 35.375977, 50.774682 ], [ 35.021667, 51.208604 ], [ 34.222412, 51.256758 ], [ 34.140015, 51.566827 ], [ 34.389954, 51.769540 ], [ 33.750000, 52.335339 ], [ 33.530273, 52.315195 ], [ 33.530273, 55.899956 ], [ 45.219727, 55.899956 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 33.750000, 52.335339 ], [ 34.389954, 51.769540 ], [ 34.140015, 51.566827 ], [ 34.222412, 51.256758 ], [ 35.021667, 51.208604 ], [ 35.375977, 50.774682 ], [ 35.354004, 50.578004 ], [ 36.625671, 50.226124 ], [ 37.391968, 50.384005 ], [ 38.009949, 49.915862 ], [ 38.594971, 49.926472 ], [ 40.067139, 49.601811 ], [ 40.078125, 49.309008 ], [ 39.781494, 48.922499 ], [ 39.674377, 48.785152 ], [ 39.674377, 48.777913 ], [ 33.530273, 48.777913 ], [ 33.530273, 52.315195 ], [ 33.750000, 52.335339 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 45.219727, 61.710706 ], [ 45.219727, 55.652798 ], [ 33.530273, 55.652798 ], [ 33.530273, 61.710706 ], [ 45.219727, 61.710706 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 45.219727, 66.600676 ], [ 45.219727, 61.501734 ], [ 33.530273, 61.501734 ], [ 33.530273, 66.479304 ], [ 33.750000, 66.381560 ], [ 34.812927, 65.900532 ], [ 34.876099, 65.436577 ], [ 34.942017, 64.414735 ], [ 36.230164, 64.110602 ], [ 37.010193, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.537781, 64.764759 ], [ 37.174988, 65.143806 ], [ 39.591980, 64.521279 ], [ 40.435181, 64.764759 ], [ 39.762268, 65.497020 ], [ 42.091370, 66.477112 ], [ 43.014221, 66.418945 ], [ 43.948059, 66.069318 ], [ 44.324341, 66.513260 ], [ 44.398499, 66.600676 ], [ 45.219727, 66.600676 ] ] ], [ [ [ 40.718079, 66.600676 ], [ 40.534058, 66.513260 ], [ 40.014954, 66.266856 ], [ 38.380737, 66.000150 ], [ 35.378723, 66.513260 ], [ 34.862366, 66.600676 ], [ 40.718079, 66.600676 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 33.530273, 66.693218 ], [ 33.530273, 69.392883 ], [ 33.750000, 69.311529 ], [ 33.774719, 69.301823 ], [ 36.513062, 69.063657 ], [ 40.289612, 67.933397 ], [ 41.058655, 67.458082 ], [ 41.124573, 66.791909 ], [ 40.534058, 66.513260 ], [ 40.350037, 66.425537 ], [ 35.895081, 66.425537 ], [ 35.378723, 66.513260 ], [ 33.917542, 66.760501 ], [ 33.750000, 66.731223 ], [ 33.530273, 66.693218 ] ] ], [ [ [ 45.000000, 68.394124 ], [ 45.219727, 68.368826 ], [ 45.219727, 66.425537 ], [ 44.247437, 66.425537 ], [ 44.324341, 66.513260 ], [ 44.530334, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.950932 ], [ 43.450928, 68.571424 ], [ 45.000000, 68.394124 ] ] ], [ [ [ 41.967773, 66.425537 ], [ 42.091370, 66.477112 ], [ 42.904358, 66.425537 ], [ 41.967773, 66.425537 ] ] ], [ [ [ 33.530273, 66.479304 ], [ 33.648376, 66.425537 ], [ 33.530273, 66.425537 ], [ 33.530273, 66.479304 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 45.219727, 80.625138 ], [ 45.219727, 80.584786 ], [ 45.000000, 80.587930 ], [ 44.846191, 80.590176 ], [ 45.000000, 80.604535 ], [ 45.219727, 80.625138 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 56.469727, -83.956169 ], [ 56.469727, -85.070048 ], [ 44.780273, -85.070048 ], [ 44.780273, -83.956169 ], [ 56.469727, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 56.469727, -82.648222 ], [ 56.469727, -84.002262 ], [ 44.780273, -84.002262 ], [ 44.780273, -82.648222 ], [ 56.469727, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 56.469727, -81.059130 ], [ 56.469727, -82.704241 ], [ 44.780273, -82.704241 ], [ 44.780273, -81.059130 ], [ 56.469727, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 56.469727, -79.129976 ], [ 56.469727, -81.127169 ], [ 44.780273, -81.127169 ], [ 44.780273, -79.129976 ], [ 56.469727, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 56.469727, -76.790701 ], [ 56.469727, -79.212538 ], [ 44.780273, -79.212538 ], [ 44.780273, -76.790701 ], [ 56.469727, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 56.469727, -73.958939 ], [ 56.469727, -76.890745 ], [ 44.780273, -76.890745 ], [ 44.780273, -73.958939 ], [ 56.469727, -73.958939 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 56.469727, -70.539543 ], [ 56.469727, -74.079925 ], [ 44.780273, -74.079925 ], [ 44.780273, -70.539543 ], [ 56.469727, -70.539543 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 24 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 56.469727, -66.425537 ], [ 56.469727, -70.685421 ], [ 44.780273, -70.685421 ], [ 44.780273, -68.083559 ], [ 45.000000, -68.021966 ], [ 45.719604, -67.816505 ], [ 46.502380, -67.600849 ], [ 47.441711, -67.717778 ], [ 48.342590, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.930115, -67.111272 ], [ 50.751343, -66.875109 ], [ 50.949097, -66.523110 ], [ 50.979309, -66.513260 ], [ 51.248474, -66.425537 ], [ 56.469727, -66.425537 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 23 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 54.533386, -65.817407 ], [ 55.412292, -65.875847 ], [ 56.250000, -65.963258 ], [ 56.354370, -65.974443 ], [ 56.469727, -66.013552 ], [ 56.469727, -66.600676 ], [ 50.905151, -66.600676 ], [ 50.949097, -66.523110 ], [ 50.979309, -66.513260 ], [ 51.789551, -66.248057 ], [ 52.613525, -66.052601 ], [ 53.610535, -65.896046 ], [ 54.533386, -65.817407 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 18 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Madagascar", "sov_a3": "MDG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Madagascar", "adm0_a3": "MDG", "geou_dif": 0, "geounit": "Madagascar", "gu_a3": "MDG", "su_dif": 0, "subunit": "Madagascar", "su_a3": "MDG", "brk_diff": 0, "name": "Madagascar", "name_long": "Madagascar", "brk_a3": "MDG", "brk_name": "Madagascar", "abbrev": "Mad.", "postal": "MG", "formal_en": "Republic of Madagascar", "name_sort": "Madagascar", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 20653556, "gdp_md_est": 20130, "pop_year": -99, "lastcensus": 1993, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MG", "iso_a3": "MDG", "iso_n3": "450", "un_a3": "450", "wb_a2": "MG", "wb_a3": "MDG", "woe_id": -99, "adm0_a3_is": "MDG", "adm0_a3_us": "MDG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.142090, -21.739091 ], [ 48.076172, -21.943046 ], [ 47.930603, -22.390714 ], [ 47.546082, -23.780318 ], [ 47.095642, -24.941238 ], [ 46.279907, -25.177602 ], [ 45.409241, -25.599425 ], [ 45.000000, -25.418470 ], [ 44.832458, -25.344026 ], [ 44.780273, -25.321684 ], [ 44.780273, -21.739091 ], [ 48.142090, -21.739091 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 17 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Madagascar", "sov_a3": "MDG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Madagascar", "adm0_a3": "MDG", "geou_dif": 0, "geounit": "Madagascar", "gu_a3": "MDG", "su_dif": 0, "subunit": "Madagascar", "su_a3": "MDG", "brk_diff": 0, "name": "Madagascar", "name_long": "Madagascar", "brk_a3": "MDG", "brk_name": "Madagascar", "abbrev": "Mad.", "postal": "MG", "formal_en": "Republic of Madagascar", "name_sort": "Madagascar", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 20653556, "gdp_md_est": 20130, "pop_year": -99, "lastcensus": 1993, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MG", "iso_a3": "MDG", "iso_n3": "450", "un_a3": "450", "wb_a2": "MG", "wb_a3": "MDG", "woe_id": -99, "adm0_a3_is": "MDG", "adm0_a3_us": "MDG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.194031, -12.039321 ], [ 49.542847, -12.468760 ], [ 49.806519, -12.894812 ], [ 50.056458, -13.555222 ], [ 50.215759, -14.756291 ], [ 50.473938, -15.225889 ], [ 50.375061, -15.705019 ], [ 50.199280, -15.998295 ], [ 49.858704, -15.413967 ], [ 49.671936, -15.707663 ], [ 49.861450, -16.449256 ], [ 49.773560, -16.872890 ], [ 49.496155, -17.104043 ], [ 49.432983, -17.952606 ], [ 49.040222, -19.116624 ], [ 48.545837, -20.496492 ], [ 48.076172, -21.943046 ], [ 48.010254, -22.146708 ], [ 44.780273, -22.146708 ], [ 44.780273, -16.190937 ], [ 44.942322, -16.177749 ], [ 45.000000, -16.156645 ], [ 45.502625, -15.971892 ], [ 45.870667, -15.792254 ], [ 46.310120, -15.779039 ], [ 46.881409, -15.209988 ], [ 47.702637, -14.594216 ], [ 48.004761, -14.088629 ], [ 47.867432, -13.662001 ], [ 48.293152, -13.782069 ], [ 48.842468, -13.087504 ], [ 48.861694, -12.487532 ], [ 49.194031, -12.039321 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.780273, 8.784654 ], [ 45.000000, 8.705929 ], [ 46.947327, 7.999397 ], [ 47.787781, 8.004837 ], [ 45.000000, 5.041699 ], [ 44.961548, 5.003394 ], [ 44.780273, 4.997922 ], [ 44.780273, 8.784654 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "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": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.941345, 11.393879 ], [ 48.938599, 11.178402 ], [ 48.935852, 10.984335 ], [ 48.935852, 9.451771 ], [ 48.485413, 8.838937 ], [ 47.787781, 8.004837 ], [ 46.947327, 7.999397 ], [ 45.000000, 8.705929 ], [ 44.780273, 8.784654 ], [ 44.780273, 10.487812 ], [ 45.000000, 10.547221 ], [ 45.554810, 10.698394 ], [ 46.645203, 10.817120 ], [ 47.524109, 11.129897 ], [ 47.908630, 11.178402 ], [ 48.021240, 11.194568 ], [ 48.378296, 11.377724 ], [ 48.674927, 11.393879 ], [ 48.941345, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.075439, 11.393879 ], [ 51.042480, 11.178402 ], [ 51.045227, 10.641713 ], [ 50.833740, 10.279789 ], [ 50.550842, 9.199715 ], [ 50.070190, 8.083704 ], [ 49.452209, 6.806444 ], [ 48.592529, 5.339848 ], [ 47.738342, 4.220421 ], [ 46.562805, 2.858006 ], [ 45.563049, 2.045769 ], [ 45.000000, 1.672431 ], [ 44.780273, 1.526919 ], [ 44.780273, 4.997922 ], [ 44.961548, 5.003394 ], [ 45.000000, 5.041699 ], [ 47.787781, 8.004837 ], [ 48.485413, 8.838937 ], [ 48.935852, 9.451771 ], [ 48.938599, 11.178402 ], [ 48.941345, 11.393879 ], [ 51.075439, 11.393879 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 55.571594, 22.146708 ], [ 55.664978, 22.001628 ], [ 55.645752, 21.943046 ], [ 54.997559, 20.001741 ], [ 51.998291, 19.002400 ], [ 49.114380, 18.617616 ], [ 48.183289, 18.166730 ], [ 47.466431, 17.117168 ], [ 46.999512, 16.951724 ], [ 46.749573, 17.285087 ], [ 46.365051, 17.235252 ], [ 45.398254, 17.334908 ], [ 45.214233, 17.434511 ], [ 45.000000, 17.429270 ], [ 44.780273, 17.426649 ], [ 44.780273, 22.146708 ], [ 55.571594, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Yemen", "sov_a3": "YEM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Yemen", "adm0_a3": "YEM", "geou_dif": 0, "geounit": "Yemen", "gu_a3": "YEM", "su_dif": 0, "subunit": "Yemen", "su_a3": "YEM", "brk_diff": 0, "name": "Yemen", "name_long": "Yemen", "brk_a3": "YEM", "brk_name": "Yemen", "abbrev": "Yem.", "postal": "YE", "formal_en": "Republic of Yemen", "name_sort": "Yemen, Rep.", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 23822783, "gdp_md_est": 55280, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "YE", "iso_a3": "YEM", "iso_n3": "887", "un_a3": "887", "wb_a2": "RY", "wb_a3": "YEM", "woe_id": -99, "adm0_a3_is": "YEM", "adm0_a3_us": "YEM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.998291, 19.002400 ], [ 52.781067, 17.350638 ], [ 53.107910, 16.651981 ], [ 52.382812, 16.383391 ], [ 52.190552, 15.940202 ], [ 52.165833, 15.599229 ], [ 51.171570, 15.175530 ], [ 49.573059, 14.711135 ], [ 48.677673, 14.003367 ], [ 48.238220, 13.950061 ], [ 47.938843, 14.008696 ], [ 47.353821, 13.592600 ], [ 46.716614, 13.400307 ], [ 45.876160, 13.349537 ], [ 45.623474, 13.293411 ], [ 45.403748, 13.028642 ], [ 45.142822, 12.956383 ], [ 45.000000, 12.718047 ], [ 44.989014, 12.701971 ], [ 44.780273, 12.710009 ], [ 44.780273, 17.426649 ], [ 45.000000, 17.429270 ], [ 45.214233, 17.434511 ], [ 45.398254, 17.334908 ], [ 46.365051, 17.235252 ], [ 46.749573, 17.285087 ], [ 46.999512, 16.951724 ], [ 47.466431, 17.117168 ], [ 48.183289, 18.166730 ], [ 49.114380, 18.617616 ], [ 51.998291, 19.002400 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Oman", "sov_a3": "OMN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Oman", "adm0_a3": "OMN", "geou_dif": 0, "geounit": "Oman", "gu_a3": "OMN", "su_dif": 0, "subunit": "Oman", "su_a3": "OMN", "brk_diff": 0, "name": "Oman", "name_long": "Oman", "brk_a3": "OMN", "brk_name": "Oman", "abbrev": "Oman", "postal": "OM", "formal_en": "Sultanate of Oman", "name_sort": "Oman", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3418085, "gdp_md_est": 66980, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "OM", "iso_a3": "OMN", "iso_n3": "512", "un_a3": "512", "wb_a2": "OM", "wb_a3": "OMN", "woe_id": -99, "adm0_a3_is": "OMN", "adm0_a3_us": "OMN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, 22.146708 ], [ 56.469727, 18.049256 ], [ 56.282959, 17.876817 ], [ 56.250000, 17.876817 ], [ 55.659485, 17.884659 ], [ 55.269470, 17.633552 ], [ 55.272217, 17.230005 ], [ 54.788818, 16.951724 ], [ 54.236755, 17.046281 ], [ 53.569336, 16.709863 ], [ 53.107910, 16.651981 ], [ 51.998291, 19.002400 ], [ 54.997559, 20.001741 ], [ 55.645752, 21.943046 ], [ 55.664978, 22.001628 ], [ 55.571594, 22.146708 ], [ 56.469727, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "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": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.946838, 11.412726 ], [ 48.941345, 11.396572 ], [ 48.938599, 11.178402 ], [ 48.935852, 10.984335 ], [ 48.935852, 10.962764 ], [ 47.057190, 10.962764 ], [ 47.524109, 11.129897 ], [ 47.908630, 11.178402 ], [ 48.021240, 11.194568 ], [ 48.378296, 11.377724 ], [ 48.946838, 11.412726 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.111145, 12.025889 ], [ 51.133118, 11.749059 ], [ 51.042480, 11.178402 ], [ 51.042480, 10.962764 ], [ 48.935852, 10.962764 ], [ 48.938599, 11.178402 ], [ 48.941345, 11.396572 ], [ 48.946838, 11.412726 ], [ 49.265442, 11.431571 ], [ 49.726868, 11.579597 ], [ 50.256958, 11.681825 ], [ 50.729370, 12.023203 ], [ 51.111145, 12.025889 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.557068, 32.138409 ], [ 47.683411, 31.952162 ], [ 47.848206, 31.709476 ], [ 47.683411, 30.987028 ], [ 48.002014, 30.987028 ], [ 48.013000, 30.453409 ], [ 48.567810, 29.928755 ], [ 47.971802, 29.976349 ], [ 47.301636, 30.059586 ], [ 46.568298, 29.099377 ], [ 45.000000, 29.166552 ], [ 44.780273, 29.176145 ], [ 44.780273, 32.138409 ], [ 47.557068, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, 32.138409 ], [ 56.469727, 27.139813 ], [ 56.250000, 27.088473 ], [ 55.722656, 26.966142 ], [ 54.714661, 26.482866 ], [ 53.492432, 26.814266 ], [ 52.481689, 27.581329 ], [ 51.520386, 27.865789 ], [ 50.850220, 28.815800 ], [ 50.114136, 30.149877 ], [ 49.575806, 29.985866 ], [ 48.938599, 30.318359 ], [ 48.567810, 29.928755 ], [ 48.013000, 30.453409 ], [ 48.002014, 30.987028 ], [ 47.683411, 30.987028 ], [ 47.848206, 31.709476 ], [ 47.683411, 31.952162 ], [ 47.557068, 32.138409 ], [ 56.469727, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Kuwait", "sov_a3": "KWT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kuwait", "adm0_a3": "KWT", "geou_dif": 0, "geounit": "Kuwait", "gu_a3": "KWT", "su_dif": 0, "subunit": "Kuwait", "su_a3": "KWT", "brk_diff": 0, "name": "Kuwait", "name_long": "Kuwait", "brk_a3": "KWT", "brk_name": "Kuwait", "abbrev": "Kwt.", "postal": "KW", "formal_en": "State of Kuwait", "name_sort": "Kuwait", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 2691158, "gdp_md_est": 149100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "KW", "iso_a3": "KWT", "iso_n3": "414", "un_a3": "414", "wb_a2": "KW", "wb_a3": "KWT", "woe_id": -99, "adm0_a3_is": "KWT", "adm0_a3_us": "KWT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.301636, 30.059586 ], [ 47.971802, 29.976349 ], [ 48.180542, 29.535230 ], [ 48.092651, 29.307956 ], [ 48.414001, 28.553164 ], [ 47.708130, 28.526622 ], [ 47.458191, 29.003336 ], [ 46.568298, 29.099377 ], [ 47.301636, 30.059586 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 44.780273, 29.176145 ], [ 45.000000, 29.166552 ], [ 46.568298, 29.099377 ], [ 47.458191, 29.003336 ], [ 47.708130, 28.526622 ], [ 48.414001, 28.553164 ], [ 48.806763, 27.690824 ], [ 49.298401, 27.461976 ], [ 49.468689, 27.110479 ], [ 50.149841, 26.691637 ], [ 50.210266, 26.278640 ], [ 50.111389, 25.945697 ], [ 50.237732, 25.609333 ], [ 50.526123, 25.329132 ], [ 50.657959, 25.000994 ], [ 50.809021, 24.756808 ], [ 51.111145, 24.557116 ], [ 51.388550, 24.629541 ], [ 51.578064, 24.246965 ], [ 51.616516, 24.016362 ], [ 51.998291, 23.001380 ], [ 55.005798, 22.497332 ], [ 55.206299, 22.710323 ], [ 55.664978, 22.001628 ], [ 55.645752, 21.943046 ], [ 55.577087, 21.739091 ], [ 44.780273, 21.739091 ], [ 44.780273, 29.176145 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Qatar", "sov_a3": "QAT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Qatar", "adm0_a3": "QAT", "geou_dif": 0, "geounit": "Qatar", "gu_a3": "QAT", "su_dif": 0, "subunit": "Qatar", "su_a3": "QAT", "brk_diff": 0, "name": "Qatar", "name_long": "Qatar", "brk_a3": "QAT", "brk_name": "Qatar", "abbrev": "Qatar", "postal": "QA", "formal_en": "State of Qatar", "name_sort": "Qatar", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 833285, "gdp_md_est": 91330, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "QA", "iso_a3": "QAT", "iso_n3": "634", "un_a3": "634", "wb_a2": "QA", "wb_a3": "QAT", "woe_id": -99, "adm0_a3_is": "QAT", "adm0_a3_us": "QAT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.284180, 26.115986 ], [ 51.589050, 25.802364 ], [ 51.605530, 25.217366 ], [ 51.388550, 24.629541 ], [ 51.111145, 24.557116 ], [ 50.809021, 24.756808 ], [ 50.743103, 25.482951 ], [ 51.012268, 26.007424 ], [ 51.284180, 26.115986 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "United Arab Emirates", "sov_a3": "ARE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Arab Emirates", "adm0_a3": "ARE", "geou_dif": 0, "geounit": "United Arab Emirates", "gu_a3": "ARE", "su_dif": 0, "subunit": "United Arab Emirates", "su_a3": "ARE", "brk_diff": 0, "name": "United Arab Emirates", "name_long": "United Arab Emirates", "brk_a3": "ARE", "brk_name": "United Arab Emirates", "abbrev": "U.A.E.", "postal": "AE", "formal_en": "United Arab Emirates", "name_sort": "United Arab Emirates", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 4798491, "gdp_md_est": 184300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AE", "iso_a3": "ARE", "iso_n3": "784", "un_a3": "784", "wb_a2": "AE", "wb_a3": "ARE", "woe_id": -99, "adm0_a3_is": "ARE", "adm0_a3_us": "ARE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 20, "long_len": 20, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.068726, 26.056783 ], [ 56.250000, 25.735581 ], [ 56.260986, 25.715786 ], [ 56.395569, 24.926295 ], [ 56.250000, 24.923804 ], [ 55.884705, 24.921313 ], [ 55.802307, 24.272005 ], [ 55.980835, 24.131715 ], [ 55.527649, 23.936055 ], [ 55.524902, 23.526218 ], [ 55.233765, 23.112575 ], [ 55.206299, 22.710323 ], [ 55.005798, 22.497332 ], [ 51.998291, 23.001380 ], [ 51.616516, 24.016362 ], [ 51.578064, 24.246965 ], [ 51.756592, 24.294537 ], [ 51.792297, 24.021379 ], [ 52.575073, 24.179331 ], [ 53.401794, 24.151766 ], [ 54.006042, 24.124195 ], [ 54.692688, 24.799202 ], [ 55.437012, 25.440794 ], [ 56.068726, 26.056783 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Oman", "sov_a3": "OMN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Oman", "adm0_a3": "OMN", "geou_dif": 0, "geounit": "Oman", "gu_a3": "OMN", "su_dif": 0, "subunit": "Oman", "su_a3": "OMN", "brk_diff": 0, "name": "Oman", "name_long": "Oman", "brk_a3": "OMN", "brk_name": "Oman", "abbrev": "Oman", "postal": "OM", "formal_en": "Sultanate of Oman", "name_sort": "Oman", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3418085, "gdp_md_est": 66980, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "OM", "iso_a3": "OMN", "iso_n3": "512", "un_a3": "512", "wb_a2": "OM", "wb_a3": "OMN", "woe_id": -99, "adm0_a3_is": "OMN", "adm0_a3_us": "OMN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.395569, 24.926295 ], [ 56.469727, 24.814161 ], [ 56.469727, 21.739091 ], [ 55.577087, 21.739091 ], [ 55.645752, 21.943046 ], [ 55.664978, 22.001628 ], [ 55.206299, 22.710323 ], [ 55.233765, 23.112575 ], [ 55.524902, 23.526218 ], [ 55.527649, 23.936055 ], [ 55.980835, 24.131715 ], [ 55.802307, 24.272005 ], [ 55.884705, 24.921313 ], [ 56.250000, 24.923804 ], [ 56.395569, 24.926295 ] ] ], [ [ [ 56.359863, 26.396790 ], [ 56.469727, 26.320498 ], [ 56.469727, 26.241693 ], [ 56.390076, 25.896291 ], [ 56.260986, 25.715786 ], [ 56.250000, 25.735581 ], [ 56.068726, 26.056783 ], [ 56.250000, 26.266325 ], [ 56.359863, 26.396790 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.595764, 41.145570 ], [ 46.499634, 41.064857 ], [ 45.961304, 41.124884 ], [ 45.906372, 41.145570 ], [ 46.595764, 41.145570 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.780273, 39.724089 ], [ 44.791260, 39.713525 ], [ 44.780273, 39.709300 ], [ 44.780273, 39.724089 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.780273, 37.158128 ], [ 45.000000, 36.754290 ], [ 45.420227, 35.978006 ], [ 46.073914, 35.679610 ], [ 46.150818, 35.095193 ], [ 45.648193, 34.748383 ], [ 45.414734, 33.968420 ], [ 46.106873, 33.017876 ], [ 47.334595, 32.470378 ], [ 47.683411, 31.952162 ], [ 47.809753, 31.765537 ], [ 44.780273, 31.765537 ], [ 44.780273, 37.158128 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.052185, 41.145570 ], [ 45.178528, 40.986118 ], [ 45.189514, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.357056, 40.561808 ], [ 45.889893, 40.218733 ], [ 45.609741, 39.901309 ], [ 46.032715, 39.628961 ], [ 46.483154, 39.465885 ], [ 46.505127, 38.771216 ], [ 46.142578, 38.741231 ], [ 45.733337, 39.321550 ], [ 45.738831, 39.474365 ], [ 45.296631, 39.472245 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.713525 ], [ 44.780273, 39.724089 ], [ 44.780273, 41.145570 ], [ 45.052185, 41.145570 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 49.207764, 41.145570 ], [ 49.325867, 40.979898 ], [ 49.617004, 40.574326 ], [ 50.083923, 40.526327 ], [ 50.391541, 40.258569 ], [ 49.567566, 40.176775 ], [ 49.394531, 39.400122 ], [ 49.221497, 39.051185 ], [ 48.856201, 38.816171 ], [ 48.880920, 38.322266 ], [ 48.633728, 38.270532 ], [ 48.010254, 38.794768 ], [ 48.353577, 39.289671 ], [ 48.059692, 39.582407 ], [ 47.683411, 39.510398 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.465885 ], [ 46.032715, 39.628961 ], [ 45.609741, 39.901309 ], [ 45.889893, 40.218733 ], [ 45.357056, 40.561808 ], [ 45.560303, 40.813809 ], [ 45.189514, 40.979898 ], [ 45.178528, 40.986118 ], [ 45.052185, 41.145570 ], [ 45.906372, 41.145570 ], [ 45.961304, 41.124884 ], [ 46.499634, 41.064857 ], [ 46.595764, 41.145570 ], [ 49.207764, 41.145570 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.472245 ], [ 45.738831, 39.474365 ], [ 45.733337, 39.321550 ], [ 46.142578, 38.741231 ], [ 45.455933, 38.876067 ], [ 45.000000, 39.293923 ], [ 44.950562, 39.336422 ], [ 44.791260, 39.713525 ], [ 45.000000, 39.740986 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.791260, 39.713525 ], [ 44.950562, 39.336422 ], [ 45.000000, 39.293923 ], [ 45.455933, 38.876067 ], [ 46.142578, 38.741231 ], [ 46.505127, 38.771216 ], [ 47.683411, 39.510398 ], [ 48.059692, 39.582407 ], [ 48.353577, 39.289671 ], [ 48.010254, 38.794768 ], [ 48.633728, 38.270532 ], [ 48.880920, 38.322266 ], [ 49.199524, 37.583766 ], [ 50.147095, 37.376705 ], [ 50.841980, 36.873029 ], [ 52.261963, 36.701458 ], [ 53.824768, 36.965255 ], [ 53.920898, 37.199706 ], [ 54.799805, 37.394164 ], [ 55.511169, 37.965854 ], [ 56.178589, 37.935533 ], [ 56.250000, 37.965854 ], [ 56.469727, 38.058905 ], [ 56.469727, 31.765537 ], [ 47.809753, 31.765537 ], [ 47.683411, 31.952162 ], [ 47.334595, 32.470378 ], [ 46.106873, 33.017876 ], [ 45.414734, 33.968420 ], [ 45.648193, 34.748383 ], [ 46.150818, 35.095193 ], [ 46.073914, 35.679610 ], [ 45.420227, 35.978006 ], [ 45.000000, 36.754290 ], [ 44.780273, 37.158128 ], [ 44.780273, 39.709300 ], [ 44.791260, 39.713525 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.469727, 41.145570 ], [ 56.469727, 38.058905 ], [ 56.250000, 37.965854 ], [ 56.178589, 37.935533 ], [ 55.511169, 37.965854 ], [ 54.799805, 37.394164 ], [ 53.920898, 37.199706 ], [ 53.734131, 37.907367 ], [ 53.879700, 38.953001 ], [ 53.099670, 39.291797 ], [ 53.355103, 39.977120 ], [ 52.693176, 40.033924 ], [ 52.912903, 40.878218 ], [ 53.857727, 40.632714 ], [ 54.736633, 40.952937 ], [ 54.700928, 40.979898 ], [ 54.500427, 41.145570 ], [ 56.469727, 41.145570 ] ] ], [ [ [ 52.814026, 41.145570 ], [ 52.814026, 41.137296 ], [ 52.808533, 41.145570 ], [ 52.814026, 41.145570 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 46.977539, 49.066668 ], [ 46.867676, 48.922499 ], [ 46.463928, 48.394562 ], [ 47.312622, 47.717154 ], [ 48.056946, 47.744864 ], [ 48.694153, 47.075734 ], [ 48.592529, 46.562637 ], [ 49.100647, 46.399988 ], [ 48.644714, 45.807743 ], [ 47.675171, 45.642848 ], [ 46.680908, 44.610023 ], [ 47.590027, 43.661911 ], [ 47.491150, 42.988576 ], [ 48.584290, 41.810220 ], [ 47.985535, 41.407716 ], [ 47.815247, 41.151774 ], [ 47.373047, 41.219986 ], [ 46.683655, 41.828642 ], [ 46.403503, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.469666, 42.504503 ], [ 45.000000, 42.609706 ], [ 44.780273, 42.658202 ], [ 44.780273, 49.066668 ], [ 46.977539, 49.066668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.780273, 42.658202 ], [ 45.000000, 42.609706 ], [ 45.469666, 42.504503 ], [ 45.774536, 42.094146 ], [ 46.403503, 41.861379 ], [ 46.145325, 41.724181 ], [ 46.636963, 41.182788 ], [ 46.499634, 41.064857 ], [ 45.961304, 41.124884 ], [ 45.216980, 41.411836 ], [ 45.000000, 41.267485 ], [ 44.969788, 41.248903 ], [ 44.780273, 41.228249 ], [ 44.780273, 42.658202 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, 49.066668 ], [ 56.469727, 45.121991 ], [ 56.250000, 45.071581 ], [ 55.928650, 44.995883 ], [ 55.967102, 41.308761 ], [ 55.453491, 41.261291 ], [ 54.753113, 42.045213 ], [ 54.077454, 42.326062 ], [ 52.943115, 42.116561 ], [ 52.500916, 41.783601 ], [ 52.445984, 42.028894 ], [ 52.690430, 42.445755 ], [ 52.500916, 42.793385 ], [ 51.341858, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.336609, 44.284537 ], [ 50.303650, 44.610023 ], [ 51.275940, 44.516093 ], [ 51.314392, 45.247821 ], [ 52.165833, 45.410020 ], [ 53.039246, 45.259422 ], [ 53.220520, 46.234953 ], [ 53.041992, 46.854557 ], [ 52.039490, 46.805700 ], [ 51.190796, 47.049540 ], [ 50.031738, 46.609828 ], [ 49.100647, 46.399988 ], [ 48.592529, 46.562637 ], [ 48.694153, 47.075734 ], [ 48.056946, 47.744864 ], [ 47.312622, 47.717154 ], [ 46.463928, 48.394562 ], [ 46.867676, 48.922499 ], [ 46.977539, 49.066668 ], [ 56.469727, 49.066668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, 45.121991 ], [ 56.469727, 41.314950 ], [ 56.250000, 41.312887 ], [ 55.967102, 41.308761 ], [ 55.928650, 44.995883 ], [ 56.250000, 45.071581 ], [ 56.469727, 45.121991 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.969788, 41.248903 ], [ 45.000000, 41.213788 ], [ 45.178528, 40.986118 ], [ 45.189514, 40.979898 ], [ 45.554810, 40.813809 ], [ 44.780273, 40.813809 ], [ 44.780273, 41.228249 ], [ 44.969788, 41.248903 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.403503, 41.861379 ], [ 46.683655, 41.828642 ], [ 47.373047, 41.219986 ], [ 47.815247, 41.151774 ], [ 47.985535, 41.407716 ], [ 48.584290, 41.810220 ], [ 49.108887, 41.283999 ], [ 49.325867, 40.979898 ], [ 49.446716, 40.813809 ], [ 45.554810, 40.813809 ], [ 45.189514, 40.979898 ], [ 45.178528, 40.986118 ], [ 45.000000, 41.213788 ], [ 44.969788, 41.248903 ], [ 45.000000, 41.267485 ], [ 45.216980, 41.411836 ], [ 45.961304, 41.124884 ], [ 46.499634, 41.064857 ], [ 46.636963, 41.182788 ], [ 46.145325, 41.724181 ], [ 46.403503, 41.861379 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 52.912903, 40.878218 ], [ 53.154602, 40.813809 ], [ 52.896423, 40.813809 ], [ 52.912903, 40.878218 ] ] ], [ [ [ 54.753113, 42.045213 ], [ 55.453491, 41.261291 ], [ 55.967102, 41.308761 ], [ 56.250000, 41.312887 ], [ 56.469727, 41.314950 ], [ 56.469727, 40.813809 ], [ 54.357605, 40.813809 ], [ 54.736633, 40.952937 ], [ 54.700928, 40.979898 ], [ 54.006042, 41.551756 ], [ 53.720398, 42.124710 ], [ 52.915649, 41.869561 ], [ 52.814026, 41.137296 ], [ 52.500916, 41.783601 ], [ 52.943115, 42.116561 ], [ 54.077454, 42.326062 ], [ 54.753113, 42.045213 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 56.469727, 55.899956 ], [ 56.469727, 50.922082 ], [ 56.250000, 50.835432 ], [ 55.714417, 50.623331 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.765076, 51.692990 ], [ 48.699646, 50.605903 ], [ 48.576050, 49.875168 ], [ 47.548828, 50.455755 ], [ 46.749573, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.867676, 48.922499 ], [ 46.755066, 48.777913 ], [ 44.780273, 48.777913 ], [ 44.780273, 55.899956 ], [ 56.469727, 55.899956 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 52.327881, 51.720223 ], [ 54.530640, 51.027576 ], [ 55.714417, 50.623331 ], [ 56.250000, 50.835432 ], [ 56.469727, 50.922082 ], [ 56.469727, 48.777913 ], [ 46.755066, 48.777913 ], [ 46.867676, 48.922499 ], [ 47.043457, 49.152970 ], [ 46.749573, 49.357334 ], [ 47.548828, 50.455755 ], [ 48.576050, 49.875168 ], [ 48.699646, 50.605903 ], [ 50.765076, 51.692990 ], [ 52.327881, 51.720223 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 56.469727, 61.710706 ], [ 56.469727, 55.652798 ], [ 44.780273, 55.652798 ], [ 44.780273, 61.710706 ], [ 56.469727, 61.710706 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 56.469727, 66.600676 ], [ 56.469727, 61.501734 ], [ 44.780273, 61.501734 ], [ 44.780273, 66.600676 ], [ 56.469727, 66.600676 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 53.714905, 68.857574 ], [ 54.470215, 68.808978 ], [ 53.484192, 68.202172 ], [ 54.725647, 68.097907 ], [ 55.442505, 68.439589 ], [ 56.250000, 68.450689 ], [ 56.469727, 68.454724 ], [ 56.469727, 66.425537 ], [ 44.780273, 66.425537 ], [ 44.780273, 68.419393 ], [ 45.000000, 68.394124 ], [ 46.249695, 68.250057 ], [ 46.820984, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.010646 ], [ 46.348572, 66.668211 ], [ 47.892151, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.226746, 67.999341 ], [ 53.714905, 68.857574 ] ] ], [ [ [ 56.469727, 70.685421 ], [ 56.469727, 70.651781 ], [ 55.621033, 70.685421 ], [ 56.469727, 70.685421 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 56.469727, 74.079925 ], [ 56.469727, 73.021790 ], [ 56.250000, 72.888146 ], [ 55.417786, 72.371600 ], [ 55.621033, 71.541439 ], [ 56.250000, 71.276122 ], [ 56.469727, 71.182439 ], [ 56.469727, 70.651781 ], [ 56.250000, 70.660878 ], [ 53.676453, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.600037, 71.475234 ], [ 51.454468, 72.015489 ], [ 52.476196, 72.229647 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.506165, 73.750437 ], [ 54.228516, 74.019543 ], [ 54.393311, 74.079925 ], [ 56.469727, 74.079925 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 56.469727, 75.281694 ], [ 56.469727, 73.958939 ], [ 54.066467, 73.958939 ], [ 54.228516, 74.019543 ], [ 55.901184, 74.628014 ], [ 55.629272, 75.081497 ], [ 56.250000, 75.229267 ], [ 56.469727, 75.281694 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 50.037231, 80.918894 ], [ 51.520386, 80.700003 ], [ 51.135864, 80.547420 ], [ 49.792786, 80.415707 ], [ 48.891907, 80.339958 ], [ 48.754578, 80.175902 ], [ 47.584534, 80.010518 ], [ 46.502380, 80.247344 ], [ 47.070923, 80.559591 ], [ 45.000000, 80.587930 ], [ 44.846191, 80.590176 ], [ 45.000000, 80.604535 ], [ 46.799011, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.095154, 80.753998 ], [ 50.037231, 80.918894 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 67.719727, -83.956169 ], [ 67.719727, -85.070048 ], [ 56.030273, -85.070048 ], [ 56.030273, -83.956169 ], [ 67.719727, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 67.719727, -82.648222 ], [ 67.719727, -84.002262 ], [ 56.030273, -84.002262 ], [ 56.030273, -82.648222 ], [ 67.719727, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 67.719727, -81.059130 ], [ 67.719727, -82.704241 ], [ 56.030273, -82.704241 ], [ 56.030273, -81.059130 ], [ 67.719727, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 67.719727, -79.129976 ], [ 67.719727, -81.127169 ], [ 56.030273, -81.127169 ], [ 56.030273, -79.129976 ], [ 67.719727, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 67.719727, -76.790701 ], [ 67.719727, -79.212538 ], [ 56.030273, -79.212538 ], [ 56.030273, -76.790701 ], [ 67.719727, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 67.719727, -73.958939 ], [ 67.719727, -76.890745 ], [ 56.030273, -76.890745 ], [ 56.030273, -73.958939 ], [ 67.719727, -73.958939 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 67.719727, -70.539543 ], [ 67.719727, -74.079925 ], [ 56.030273, -74.079925 ], [ 56.030273, -70.539543 ], [ 67.719727, -70.539543 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 24 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 57.197571, -66.425537 ], [ 57.216797, -66.513260 ], [ 57.255249, -66.680174 ], [ 58.136902, -67.012792 ], [ 58.743896, -67.286894 ], [ 59.938660, -67.404322 ], [ 60.603333, -67.679214 ], [ 61.427307, -67.952994 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.816505 ], [ 64.050293, -67.404322 ], [ 64.992371, -67.620726 ], [ 65.970154, -67.737557 ], [ 66.909485, -67.855879 ], [ 67.500000, -67.902421 ], [ 67.719727, -67.919979 ], [ 67.719727, -70.685421 ], [ 56.030273, -70.685421 ], [ 56.030273, -66.425537 ], [ 57.197571, -66.425537 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 23 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 56.030273, -65.940874 ], [ 56.250000, -65.963258 ], [ 56.354370, -65.974443 ], [ 57.156372, -66.248057 ], [ 57.216797, -66.513260 ], [ 57.236023, -66.600676 ], [ 56.030273, -66.600676 ], [ 56.030273, -65.940874 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Oman", "sov_a3": "OMN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Oman", "adm0_a3": "OMN", "geou_dif": 0, "geounit": "Oman", "gu_a3": "OMN", "su_dif": 0, "subunit": "Oman", "su_a3": "OMN", "brk_diff": 0, "name": "Oman", "name_long": "Oman", "brk_a3": "OMN", "brk_name": "Oman", "abbrev": "Oman", "postal": "OM", "formal_en": "Sultanate of Oman", "name_sort": "Oman", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3418085, "gdp_md_est": 66980, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "OM", "iso_a3": "OMN", "iso_n3": "512", "un_a3": "512", "wb_a2": "OM", "wb_a3": "OMN", "woe_id": -99, "adm0_a3_is": "OMN", "adm0_a3_us": "OMN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.705200, 22.146708 ], [ 59.578857, 21.943046 ], [ 59.441528, 21.716128 ], [ 59.282227, 21.435173 ], [ 58.859253, 21.115249 ], [ 58.485718, 20.429587 ], [ 58.032532, 20.483628 ], [ 57.823792, 20.244160 ], [ 57.664490, 19.738269 ], [ 57.788086, 19.069906 ], [ 57.691956, 18.945258 ], [ 57.233276, 18.950454 ], [ 56.607056, 18.575965 ], [ 56.510925, 18.088423 ], [ 56.282959, 17.876817 ], [ 56.250000, 17.876817 ], [ 56.030273, 17.879431 ], [ 56.030273, 22.146708 ], [ 59.705200, 22.146708 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 60.867004, 32.138409 ], [ 60.891724, 31.952162 ], [ 60.941162, 31.548112 ], [ 61.699219, 31.381779 ], [ 61.778870, 30.737114 ], [ 60.872498, 29.831114 ], [ 61.366882, 29.305561 ], [ 61.770630, 28.700225 ], [ 62.726440, 28.260844 ], [ 62.753906, 27.379084 ], [ 63.231812, 27.217999 ], [ 63.314209, 26.757873 ], [ 61.872253, 26.241693 ], [ 61.495972, 25.080624 ], [ 59.614563, 25.381254 ], [ 58.524170, 25.611810 ], [ 57.395325, 25.740529 ], [ 56.969604, 26.966142 ], [ 56.491699, 27.144701 ], [ 56.250000, 27.088473 ], [ 56.030273, 27.037110 ], [ 56.030273, 32.138409 ], [ 60.867004, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "United Arab Emirates", "sov_a3": "ARE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Arab Emirates", "adm0_a3": "ARE", "geou_dif": 0, "geounit": "United Arab Emirates", "gu_a3": "ARE", "su_dif": 0, "subunit": "United Arab Emirates", "su_a3": "ARE", "brk_diff": 0, "name": "United Arab Emirates", "name_long": "United Arab Emirates", "brk_a3": "ARE", "brk_name": "United Arab Emirates", "abbrev": "U.A.E.", "postal": "AE", "formal_en": "United Arab Emirates", "name_sort": "United Arab Emirates", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 4798491, "gdp_md_est": 184300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AE", "iso_a3": "ARE", "iso_n3": "784", "un_a3": "784", "wb_a2": "AE", "wb_a3": "ARE", "woe_id": -99, "adm0_a3_is": "ARE", "adm0_a3_us": "ARE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 20, "long_len": 20, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.068726, 26.056783 ], [ 56.250000, 25.735581 ], [ 56.260986, 25.715786 ], [ 56.395569, 24.926295 ], [ 56.250000, 24.923804 ], [ 56.030273, 24.923804 ], [ 56.030273, 26.017298 ], [ 56.068726, 26.056783 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Oman", "sov_a3": "OMN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Oman", "adm0_a3": "OMN", "geou_dif": 0, "geounit": "Oman", "gu_a3": "OMN", "su_dif": 0, "subunit": "Oman", "su_a3": "OMN", "brk_diff": 0, "name": "Oman", "name_long": "Oman", "brk_a3": "OMN", "brk_name": "Oman", "abbrev": "Oman", "postal": "OM", "formal_en": "Sultanate of Oman", "name_sort": "Oman", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3418085, "gdp_md_est": 66980, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "OM", "iso_a3": "OMN", "iso_n3": "512", "un_a3": "512", "wb_a2": "OM", "wb_a3": "OMN", "woe_id": -99, "adm0_a3_is": "OMN", "adm0_a3_us": "OMN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.395569, 24.926295 ], [ 56.843262, 24.241956 ], [ 57.400818, 23.880815 ], [ 58.136902, 23.750154 ], [ 58.727417, 23.566505 ], [ 59.177856, 22.993795 ], [ 59.449768, 22.662175 ], [ 59.806824, 22.535391 ], [ 59.804077, 22.311967 ], [ 59.578857, 21.943046 ], [ 59.455261, 21.739091 ], [ 56.030273, 21.739091 ], [ 56.030273, 24.923804 ], [ 56.250000, 24.923804 ], [ 56.395569, 24.926295 ] ] ], [ [ [ 56.359863, 26.396790 ], [ 56.483459, 26.310651 ], [ 56.390076, 25.896291 ], [ 56.260986, 25.715786 ], [ 56.250000, 25.735581 ], [ 56.068726, 26.056783 ], [ 56.250000, 26.266325 ], [ 56.359863, 26.396790 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 32.138409 ], [ 67.719727, 31.398191 ], [ 67.681274, 31.304368 ], [ 67.500000, 31.304368 ], [ 66.936951, 31.306715 ], [ 66.379395, 30.739475 ], [ 66.346436, 29.888281 ], [ 65.044556, 29.473079 ], [ 64.349670, 29.561513 ], [ 64.146423, 29.341481 ], [ 63.547668, 29.470688 ], [ 62.547913, 29.319931 ], [ 60.872498, 29.831114 ], [ 61.778870, 30.737114 ], [ 61.699219, 31.381779 ], [ 60.941162, 31.548112 ], [ 60.891724, 31.952162 ], [ 60.867004, 32.138409 ], [ 67.719727, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 31.398191 ], [ 67.719727, 23.850674 ], [ 67.500000, 23.926013 ], [ 67.442322, 23.946096 ], [ 67.142944, 24.664490 ], [ 66.371155, 25.425912 ], [ 64.528198, 25.237243 ], [ 62.904968, 25.219851 ], [ 61.495972, 25.080624 ], [ 61.872253, 26.241693 ], [ 63.314209, 26.757873 ], [ 63.231812, 27.217999 ], [ 62.753906, 27.379084 ], [ 62.726440, 28.260844 ], [ 61.770630, 28.700225 ], [ 61.366882, 29.305561 ], [ 60.872498, 29.831114 ], [ 62.547913, 29.319931 ], [ 63.547668, 29.470688 ], [ 64.146423, 29.341481 ], [ 64.349670, 29.561513 ], [ 65.044556, 29.473079 ], [ 66.346436, 29.888281 ], [ 66.379395, 30.739475 ], [ 66.936951, 31.306715 ], [ 67.500000, 31.304368 ], [ 67.681274, 31.304368 ], [ 67.719727, 31.398191 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 41.145570 ], [ 67.719727, 41.143501 ], [ 67.609863, 41.145570 ], [ 67.719727, 41.145570 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.609863, 41.145570 ], [ 67.719727, 41.143501 ], [ 67.719727, 39.580290 ], [ 67.700500, 39.582407 ], [ 67.500000, 39.238635 ], [ 67.439575, 39.140712 ], [ 67.500000, 39.121537 ], [ 67.719727, 39.051185 ], [ 67.719727, 37.177826 ], [ 67.500000, 37.239075 ], [ 67.074280, 37.357059 ], [ 66.516724, 37.363609 ], [ 66.544189, 37.976680 ], [ 65.214844, 38.404101 ], [ 64.168396, 38.893171 ], [ 63.517456, 39.364032 ], [ 62.372131, 40.054950 ], [ 61.932678, 40.979898 ], [ 61.880493, 41.085562 ], [ 61.767883, 41.145570 ], [ 67.609863, 41.145570 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.618042, 38.121593 ], [ 57.329407, 38.030786 ], [ 58.433533, 37.522797 ], [ 59.232788, 37.413800 ], [ 60.375366, 36.529502 ], [ 61.122437, 36.491973 ], [ 61.210327, 35.650601 ], [ 60.801086, 34.404644 ], [ 60.526428, 33.678640 ], [ 60.963135, 33.529948 ], [ 60.534668, 32.983324 ], [ 60.861511, 32.184911 ], [ 60.891724, 31.952162 ], [ 60.913696, 31.765537 ], [ 56.030273, 31.765537 ], [ 56.030273, 37.942031 ], [ 56.178589, 37.935533 ], [ 56.250000, 37.965854 ], [ 56.618042, 38.121593 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.767883, 41.145570 ], [ 61.880493, 41.085562 ], [ 61.932678, 40.979898 ], [ 62.372131, 40.054950 ], [ 63.517456, 39.364032 ], [ 64.168396, 38.893171 ], [ 65.214844, 38.404101 ], [ 66.544189, 37.976680 ], [ 66.516724, 37.363609 ], [ 66.217346, 37.394164 ], [ 65.744934, 37.662081 ], [ 65.588379, 37.306829 ], [ 64.745178, 37.112146 ], [ 64.544678, 36.312912 ], [ 63.981628, 36.009117 ], [ 63.193359, 35.857892 ], [ 62.984619, 35.404722 ], [ 62.229309, 35.272532 ], [ 61.210327, 35.650601 ], [ 61.122437, 36.491973 ], [ 60.375366, 36.529502 ], [ 59.232788, 37.413800 ], [ 58.433533, 37.522797 ], [ 57.329407, 38.030786 ], [ 56.618042, 38.121593 ], [ 56.250000, 37.965854 ], [ 56.178589, 37.935533 ], [ 56.030273, 37.942031 ], [ 56.030273, 41.145570 ], [ 61.767883, 41.145570 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.700500, 39.582407 ], [ 67.719727, 39.580290 ], [ 67.719727, 39.051185 ], [ 67.500000, 39.121537 ], [ 67.439575, 39.140712 ], [ 67.500000, 39.238635 ], [ 67.700500, 39.582407 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 65.744934, 37.662081 ], [ 66.217346, 37.394164 ], [ 66.516724, 37.363609 ], [ 67.074280, 37.357059 ], [ 67.500000, 37.239075 ], [ 67.719727, 37.177826 ], [ 67.719727, 31.765537 ], [ 60.913696, 31.765537 ], [ 60.891724, 31.952162 ], [ 60.861511, 32.184911 ], [ 60.534668, 32.983324 ], [ 60.963135, 33.529948 ], [ 60.526428, 33.678640 ], [ 60.801086, 34.404644 ], [ 61.210327, 35.650601 ], [ 62.229309, 35.272532 ], [ 62.984619, 35.404722 ], [ 63.193359, 35.857892 ], [ 63.981628, 36.009117 ], [ 64.544678, 36.312912 ], [ 64.745178, 37.112146 ], [ 65.588379, 37.306829 ], [ 65.744934, 37.662081 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 49.066668 ], [ 67.719727, 41.143501 ], [ 67.500000, 41.149706 ], [ 66.711731, 41.170384 ], [ 66.508484, 41.988077 ], [ 66.022339, 41.996243 ], [ 66.096497, 42.998621 ], [ 64.898987, 43.729429 ], [ 63.185120, 43.651975 ], [ 62.012329, 43.504737 ], [ 61.056519, 44.406316 ], [ 60.238037, 44.785734 ], [ 58.502197, 45.587134 ], [ 56.250000, 45.071581 ], [ 56.030273, 45.021127 ], [ 56.030273, 49.066668 ], [ 67.719727, 49.066668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.502197, 45.587134 ], [ 60.238037, 44.785734 ], [ 61.056519, 44.406316 ], [ 62.012329, 43.504737 ], [ 63.185120, 43.651975 ], [ 64.898987, 43.729429 ], [ 66.096497, 42.998621 ], [ 66.022339, 41.996243 ], [ 66.508484, 41.988077 ], [ 66.711731, 41.170384 ], [ 67.500000, 41.149706 ], [ 67.719727, 41.143501 ], [ 67.719727, 40.813809 ], [ 62.012329, 40.813809 ], [ 61.932678, 40.979898 ], [ 61.880493, 41.085562 ], [ 61.545410, 41.267485 ], [ 60.463257, 41.222052 ], [ 60.081482, 41.426253 ], [ 59.974365, 42.224450 ], [ 58.628540, 42.753063 ], [ 57.785339, 42.171546 ], [ 56.931152, 41.826595 ], [ 57.095947, 41.323201 ], [ 56.250000, 41.312887 ], [ 56.030273, 41.310824 ], [ 56.030273, 45.021127 ], [ 56.250000, 45.071581 ], [ 58.502197, 45.587134 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.628540, 42.753063 ], [ 59.974365, 42.224450 ], [ 60.081482, 41.426253 ], [ 60.463257, 41.222052 ], [ 61.545410, 41.267485 ], [ 61.880493, 41.085562 ], [ 61.932678, 40.979898 ], [ 62.012329, 40.813809 ], [ 56.030273, 40.813809 ], [ 56.030273, 41.310824 ], [ 56.250000, 41.312887 ], [ 57.095947, 41.323201 ], [ 56.931152, 41.826595 ], [ 57.785339, 42.171546 ], [ 58.628540, 42.753063 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 67.719727, 55.899956 ], [ 67.719727, 54.905041 ], [ 67.500000, 54.873446 ], [ 65.665283, 54.602301 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.976868, 53.665798 ], [ 61.699219, 52.980070 ], [ 60.737915, 52.721322 ], [ 60.924683, 52.447640 ], [ 59.966125, 51.961192 ], [ 61.586609, 51.273944 ], [ 61.336670, 50.800727 ], [ 59.930420, 50.842370 ], [ 59.642029, 50.546599 ], [ 58.362122, 51.063839 ], [ 56.777344, 51.044848 ], [ 56.250000, 50.835432 ], [ 56.030273, 50.746884 ], [ 56.030273, 55.899956 ], [ 67.719727, 55.899956 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 54.905041 ], [ 67.719727, 48.777913 ], [ 56.030273, 48.777913 ], [ 56.030273, 50.746884 ], [ 56.250000, 50.835432 ], [ 56.777344, 51.044848 ], [ 58.362122, 51.063839 ], [ 59.642029, 50.546599 ], [ 59.930420, 50.842370 ], [ 61.336670, 50.800727 ], [ 61.586609, 51.273944 ], [ 59.966125, 51.961192 ], [ 60.924683, 52.447640 ], [ 60.737915, 52.721322 ], [ 61.699219, 52.980070 ], [ 60.976868, 53.665798 ], [ 61.435547, 54.007769 ], [ 65.176392, 54.354956 ], [ 65.665283, 54.602301 ], [ 67.500000, 54.873446 ], [ 67.719727, 54.905041 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 67.719727, 61.710706 ], [ 67.719727, 55.652798 ], [ 56.030273, 55.652798 ], [ 56.030273, 61.710706 ], [ 67.719727, 61.710706 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 67.719727, 66.600676 ], [ 67.719727, 61.501734 ], [ 56.030273, 61.501734 ], [ 56.030273, 66.600676 ], [ 67.719727, 66.600676 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 67.719727, 68.347554 ], [ 67.719727, 66.425537 ], [ 56.030273, 66.425537 ], [ 56.030273, 68.447662 ], [ 56.250000, 68.450689 ], [ 57.315674, 68.466824 ], [ 58.801575, 68.881337 ], [ 59.941406, 68.278537 ], [ 61.075745, 68.941620 ], [ 60.029297, 69.520108 ], [ 60.548401, 69.850032 ], [ 63.503723, 69.547958 ], [ 64.888000, 69.235711 ], [ 67.500000, 68.417373 ], [ 67.719727, 68.347554 ] ] ], [ [ [ 57.299194, 70.685421 ], [ 56.944885, 70.633573 ], [ 56.030273, 70.669972 ], [ 56.030273, 70.685421 ], [ 57.299194, 70.685421 ] ] ], [ [ [ 67.719727, 69.390950 ], [ 67.500000, 69.408345 ], [ 66.928711, 69.454662 ], [ 67.258301, 69.929358 ], [ 66.791382, 70.612614 ], [ 66.739197, 70.685421 ], [ 67.719727, 70.685421 ], [ 67.719727, 69.390950 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 67.719727, 71.537960 ], [ 67.719727, 70.539543 ], [ 66.840820, 70.539543 ], [ 66.791382, 70.612614 ], [ 66.722717, 70.709027 ], [ 66.692505, 71.029464 ], [ 67.500000, 71.429803 ], [ 67.719727, 71.537960 ] ] ], [ [ [ 56.030273, 72.752667 ], [ 56.030273, 74.079925 ], [ 58.117676, 74.079925 ], [ 58.024292, 74.019543 ], [ 56.986084, 73.333373 ], [ 56.250000, 72.888146 ], [ 56.030273, 72.752667 ] ] ], [ [ [ 56.030273, 71.369355 ], [ 56.250000, 71.276122 ], [ 57.535400, 70.720820 ], [ 56.944885, 70.633573 ], [ 56.250000, 70.660878 ], [ 56.030273, 70.669972 ], [ 56.030273, 71.369355 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 67.719727, 76.890745 ], [ 67.719727, 76.170559 ], [ 67.500000, 76.140327 ], [ 64.635315, 75.737979 ], [ 61.581116, 75.261444 ], [ 58.474731, 74.309582 ], [ 58.024292, 74.019543 ], [ 57.930908, 73.958939 ], [ 56.030273, 73.958939 ], [ 56.030273, 75.177360 ], [ 56.250000, 75.229267 ], [ 57.867737, 75.609532 ], [ 61.169128, 76.252386 ], [ 64.497986, 76.439112 ], [ 66.209106, 76.810143 ], [ 66.673279, 76.840816 ], [ 67.420349, 76.890745 ], [ 67.719727, 76.890745 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 67.719727, 76.910665 ], [ 67.719727, 76.790701 ], [ 66.121216, 76.790701 ], [ 66.209106, 76.810143 ], [ 66.673279, 76.840816 ], [ 67.500000, 76.896351 ], [ 67.719727, 76.910665 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 78.969727, -83.956169 ], [ 78.969727, -85.070048 ], [ 67.280273, -85.070048 ], [ 67.280273, -83.956169 ], [ 78.969727, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 78.969727, -82.648222 ], [ 78.969727, -84.002262 ], [ 67.280273, -84.002262 ], [ 67.280273, -82.648222 ], [ 78.969727, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 78.969727, -81.059130 ], [ 78.969727, -82.704241 ], [ 67.280273, -82.704241 ], [ 67.280273, -81.059130 ], [ 78.969727, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 78.969727, -79.129976 ], [ 78.969727, -81.127169 ], [ 67.280273, -81.127169 ], [ 67.280273, -79.129976 ], [ 78.969727, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 78.969727, -76.790701 ], [ 78.969727, -79.212538 ], [ 67.280273, -79.212538 ], [ 67.280273, -76.790701 ], [ 78.969727, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 78.969727, -73.958939 ], [ 78.969727, -76.890745 ], [ 67.280273, -76.890745 ], [ 67.280273, -73.958939 ], [ 78.969727, -73.958939 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 78.969727, -70.539543 ], [ 78.969727, -74.079925 ], [ 67.280273, -74.079925 ], [ 67.280273, -70.539543 ], [ 67.892761, -70.539543 ], [ 67.917480, -70.612614 ], [ 67.947693, -70.696320 ], [ 69.065552, -70.677244 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.947693, -71.852807 ], [ 68.711243, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.023865, -72.088277 ], [ 71.573181, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.452087, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.155212, -70.612614 ], [ 73.207397, -70.539543 ], [ 78.969727, -70.539543 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 24 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 67.280273, -67.884849 ], [ 67.500000, -67.902421 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.710999, -68.972193 ], [ 69.672546, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.595886, -69.932185 ], [ 67.810364, -70.304859 ], [ 67.917480, -70.612614 ], [ 67.944946, -70.685421 ], [ 67.280273, -70.685421 ], [ 67.280273, -67.884849 ] ] ], [ [ [ 69.062805, -70.685421 ], [ 68.617859, -70.685421 ], [ 69.065552, -70.677244 ], [ 69.062805, -70.685421 ] ] ], [ [ [ 78.969727, -70.685421 ], [ 73.103027, -70.685421 ], [ 73.155212, -70.612614 ], [ 73.333740, -70.364014 ], [ 73.863831, -69.873672 ], [ 74.490051, -69.776104 ], [ 75.627136, -69.736188 ], [ 76.624146, -69.618859 ], [ 77.643127, -69.462372 ], [ 78.132019, -69.070526 ], [ 78.425903, -68.697503 ], [ 78.750000, -68.524213 ], [ 78.969727, -68.404235 ], [ 78.969727, -70.685421 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 21 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 3, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "French Southern and Antarctic Lands", "adm0_a3": "ATF", "geou_dif": 0, "geounit": "French Southern and Antarctic Lands", "gu_a3": "ATF", "su_dif": 0, "subunit": "French Southern and Antarctic Lands", "su_a3": "ATF", "brk_diff": 0, "name": "Fr. S. Antarctic Lands", "name_long": "French Southern and Antarctic Lands", "brk_a3": "ATF", "brk_name": "Fr. S. and Antarctic Lands", "abbrev": "Fr. S.A.L.", "postal": "TF", "formal_en": "Territory of the French Southern and Antarctic Lands", "note_adm0": "Fr.", "name_sort": "French Southern and Antarctic Lands", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 140, "gdp_md_est": 16, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TF", "iso_a3": "ATF", "iso_n3": "260", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATF", "adm0_a3_us": "ATF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Seven seas (open ocean)", "region_un": "Seven seas (open ocean)", "subregion": "Seven seas (open ocean)", "region_wb": "Sub-Saharan Africa", "name_len": 22, "long_len": 35, "abbrev_len": 10, "tiny": 2, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.246826, -48.777913 ], [ 69.543457, -48.922499 ], [ 69.579163, -48.938739 ], [ 70.523987, -49.064869 ], [ 70.559692, -49.253465 ], [ 70.279541, -49.708496 ], [ 68.744202, -49.774170 ], [ 68.719482, -49.240914 ], [ 68.832092, -48.922499 ], [ 68.865051, -48.828566 ], [ 68.884277, -48.777913 ], [ 69.246826, -48.777913 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 20 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 3, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "French Southern and Antarctic Lands", "adm0_a3": "ATF", "geou_dif": 0, "geounit": "French Southern and Antarctic Lands", "gu_a3": "ATF", "su_dif": 0, "subunit": "French Southern and Antarctic Lands", "su_a3": "ATF", "brk_diff": 0, "name": "Fr. S. Antarctic Lands", "name_long": "French Southern and Antarctic Lands", "brk_a3": "ATF", "brk_name": "Fr. S. and Antarctic Lands", "abbrev": "Fr. S.A.L.", "postal": "TF", "formal_en": "Territory of the French Southern and Antarctic Lands", "note_adm0": "Fr.", "name_sort": "French Southern and Antarctic Lands", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 140, "gdp_md_est": 16, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TF", "iso_a3": "ATF", "iso_n3": "260", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATF", "adm0_a3_us": "ATF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Seven seas (open ocean)", "region_un": "Seven seas (open ocean)", "subregion": "Seven seas (open ocean)", "region_wb": "Sub-Saharan Africa", "name_len": 22, "long_len": 35, "abbrev_len": 10, "tiny": 2, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.933716, -48.623832 ], [ 69.543457, -48.922499 ], [ 69.579163, -48.938739 ], [ 70.523987, -49.066668 ], [ 68.782654, -49.066668 ], [ 68.832092, -48.922499 ], [ 68.865051, -48.828566 ], [ 68.933716, -48.623832 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.969727, 11.393879 ], [ 78.969727, 9.690106 ], [ 78.884583, 9.546583 ], [ 78.969727, 9.457190 ], [ 78.969727, 9.148198 ], [ 78.750000, 9.080400 ], [ 78.277588, 8.933914 ], [ 77.939758, 8.254983 ], [ 77.538757, 7.966758 ], [ 76.591187, 8.901353 ], [ 76.129761, 10.301408 ], [ 75.794678, 11.178402 ], [ 75.745239, 11.310401 ], [ 75.682068, 11.393879 ], [ 78.969727, 11.393879 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.969727, 22.146708 ], [ 78.969727, 10.962764 ], [ 75.877075, 10.962764 ], [ 75.794678, 11.178402 ], [ 75.745239, 11.310401 ], [ 75.393677, 11.781325 ], [ 74.863586, 12.742158 ], [ 74.616394, 13.992706 ], [ 74.443359, 14.618136 ], [ 73.531494, 15.993015 ], [ 73.119507, 17.929089 ], [ 72.820129, 19.210022 ], [ 72.822876, 20.421865 ], [ 72.627869, 21.358455 ], [ 71.174927, 20.758682 ], [ 70.469055, 20.879343 ], [ 69.320984, 21.943046 ], [ 69.161682, 22.090730 ], [ 69.238586, 22.146708 ], [ 78.969727, 22.146708 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.293518, 32.138409 ], [ 69.312744, 31.952162 ], [ 69.315491, 31.903210 ], [ 68.925476, 31.620644 ], [ 68.554688, 31.714149 ], [ 67.791138, 31.583215 ], [ 67.681274, 31.304368 ], [ 67.280273, 31.304368 ], [ 67.280273, 32.138409 ], [ 69.293518, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.061340, 32.138409 ], [ 74.786682, 31.952162 ], [ 74.404907, 31.693119 ], [ 74.418640, 30.979964 ], [ 73.449097, 29.978729 ], [ 72.822876, 28.962492 ], [ 71.776428, 27.914340 ], [ 70.614624, 27.989551 ], [ 69.513245, 26.941660 ], [ 70.166931, 26.492699 ], [ 70.282288, 25.723210 ], [ 70.842590, 25.217366 ], [ 71.043091, 24.357105 ], [ 68.840332, 24.359608 ], [ 68.175659, 23.692320 ], [ 67.500000, 23.926013 ], [ 67.442322, 23.946096 ], [ 67.280273, 24.339589 ], [ 67.280273, 31.304368 ], [ 67.681274, 31.304368 ], [ 67.791138, 31.583215 ], [ 68.554688, 31.714149 ], [ 68.925476, 31.620644 ], [ 69.315491, 31.903210 ], [ 69.312744, 31.952162 ], [ 69.293518, 32.138409 ], [ 75.061340, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.579712, 32.138409 ], [ 78.626404, 31.952162 ], [ 78.736267, 31.517679 ], [ 78.750000, 31.510654 ], [ 78.969727, 31.367709 ], [ 78.969727, 21.739091 ], [ 69.540710, 21.739091 ], [ 69.161682, 22.090730 ], [ 69.642334, 22.451649 ], [ 69.348450, 22.844540 ], [ 68.175659, 23.692320 ], [ 68.840332, 24.359608 ], [ 71.043091, 24.357105 ], [ 70.842590, 25.217366 ], [ 70.282288, 25.723210 ], [ 70.166931, 26.492699 ], [ 69.513245, 26.941660 ], [ 70.614624, 27.989551 ], [ 71.776428, 27.914340 ], [ 72.822876, 28.962492 ], [ 73.449097, 29.978729 ], [ 74.418640, 30.979964 ], [ 74.404907, 31.693119 ], [ 74.786682, 31.952162 ], [ 75.061340, 32.138409 ], [ 78.579712, 32.138409 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 78.969727, 32.138409 ], [ 78.969727, 31.367709 ], [ 78.750000, 31.510654 ], [ 78.736267, 31.517679 ], [ 78.626404, 31.952162 ], [ 78.579712, 32.138409 ], [ 78.969727, 32.138409 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.922729, 41.145570 ], [ 68.821106, 40.979898 ], [ 68.631592, 40.670223 ], [ 68.258057, 40.663973 ], [ 68.074036, 40.979898 ], [ 67.983398, 41.137296 ], [ 67.609863, 41.145570 ], [ 68.922729, 41.145570 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 72.427368, 41.145570 ], [ 72.798157, 40.979898 ], [ 73.053589, 40.867834 ], [ 71.773682, 40.147389 ], [ 71.012878, 40.245992 ], [ 70.600891, 40.218733 ], [ 70.458069, 40.497092 ], [ 70.664062, 40.961234 ], [ 69.329224, 40.728527 ], [ 69.010620, 40.086477 ], [ 68.535461, 39.533703 ], [ 67.700500, 39.582407 ], [ 67.500000, 39.238635 ], [ 67.439575, 39.140712 ], [ 67.500000, 39.121537 ], [ 68.175659, 38.901721 ], [ 68.389893, 38.158317 ], [ 67.829590, 37.147182 ], [ 67.280273, 37.300275 ], [ 67.280273, 41.145570 ], [ 67.609863, 41.145570 ], [ 67.983398, 41.137296 ], [ 68.074036, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.670223 ], [ 68.821106, 40.979898 ], [ 68.922729, 41.145570 ], [ 72.427368, 41.145570 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.755737, 41.145570 ], [ 76.904297, 41.066928 ], [ 76.852112, 40.979898 ], [ 76.525269, 40.428133 ], [ 75.465088, 40.563895 ], [ 74.775696, 40.367474 ], [ 73.819885, 39.894987 ], [ 73.959961, 39.660685 ], [ 73.674316, 39.431950 ], [ 71.784668, 39.281168 ], [ 70.548706, 39.605688 ], [ 69.463806, 39.527348 ], [ 69.557190, 40.103286 ], [ 70.647583, 39.937119 ], [ 71.012878, 40.245992 ], [ 71.773682, 40.147389 ], [ 73.053589, 40.867834 ], [ 72.798157, 40.979898 ], [ 72.427368, 41.145570 ], [ 77.755737, 41.145570 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.961234 ], [ 70.458069, 40.497092 ], [ 70.600891, 40.218733 ], [ 71.012878, 40.245992 ], [ 70.647583, 39.937119 ], [ 69.557190, 40.103286 ], [ 69.463806, 39.527348 ], [ 70.548706, 39.605688 ], [ 71.784668, 39.281168 ], [ 73.674316, 39.431950 ], [ 73.927002, 38.507341 ], [ 74.256592, 38.608286 ], [ 74.863586, 38.380422 ], [ 74.827881, 37.991834 ], [ 74.978943, 37.420345 ], [ 73.946228, 37.422526 ], [ 73.259583, 37.496652 ], [ 72.636108, 37.048601 ], [ 72.191162, 36.949892 ], [ 71.842346, 36.738884 ], [ 71.446838, 37.066136 ], [ 71.540222, 37.907367 ], [ 71.238098, 37.955027 ], [ 71.347961, 38.259750 ], [ 70.804138, 38.487995 ], [ 70.375671, 38.138877 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.590295 ], [ 69.518738, 37.609880 ], [ 69.194641, 37.151561 ], [ 68.856812, 37.346143 ], [ 68.134460, 37.024484 ], [ 67.829590, 37.147182 ], [ 68.389893, 38.158317 ], [ 68.175659, 38.901721 ], [ 67.500000, 39.121537 ], [ 67.439575, 39.140712 ], [ 67.500000, 39.238635 ], [ 67.700500, 39.582407 ], [ 68.535461, 39.533703 ], [ 69.010620, 40.086477 ], [ 69.329224, 40.728527 ], [ 70.664062, 40.961234 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.804138, 38.487995 ], [ 71.347961, 38.259750 ], [ 71.238098, 37.955027 ], [ 71.540222, 37.907367 ], [ 71.446838, 37.066136 ], [ 71.842346, 36.738884 ], [ 72.191162, 36.949892 ], [ 72.636108, 37.048601 ], [ 73.259583, 37.496652 ], [ 73.946228, 37.422526 ], [ 74.978943, 37.420345 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.022291 ], [ 74.067078, 36.837866 ], [ 72.919006, 36.721274 ], [ 71.845093, 36.511844 ], [ 71.260071, 36.075742 ], [ 71.496277, 35.650601 ], [ 71.611633, 35.153600 ], [ 71.114502, 34.734841 ], [ 71.155701, 34.350239 ], [ 70.881042, 33.988918 ], [ 69.927979, 34.020795 ], [ 70.323486, 33.360356 ], [ 69.686279, 33.107648 ], [ 69.260559, 32.502813 ], [ 69.312744, 31.952162 ], [ 69.315491, 31.903210 ], [ 69.125977, 31.765537 ], [ 67.280273, 31.765537 ], [ 67.280273, 37.300275 ], [ 67.829590, 37.147182 ], [ 68.134460, 37.024484 ], [ 68.856812, 37.346143 ], [ 69.194641, 37.151561 ], [ 69.518738, 37.609880 ], [ 70.114746, 37.590295 ], [ 70.268555, 37.735969 ], [ 70.375671, 38.138877 ], [ 70.804138, 38.487995 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.157471, 37.134045 ], [ 75.896301, 36.668419 ], [ 76.190186, 35.900175 ], [ 77.835388, 35.494220 ], [ 76.871338, 34.653545 ], [ 75.756226, 34.506557 ], [ 74.240112, 34.750640 ], [ 73.748474, 34.318487 ], [ 74.102783, 33.442901 ], [ 74.448853, 32.766491 ], [ 75.256348, 32.273200 ], [ 74.786682, 31.952162 ], [ 74.512024, 31.765537 ], [ 69.125977, 31.765537 ], [ 69.315491, 31.903210 ], [ 69.312744, 31.952162 ], [ 69.260559, 32.502813 ], [ 69.686279, 33.107648 ], [ 70.323486, 33.360356 ], [ 69.927979, 34.020795 ], [ 70.881042, 33.988918 ], [ 71.155701, 34.350239 ], [ 71.114502, 34.734841 ], [ 71.611633, 35.153600 ], [ 71.496277, 35.650601 ], [ 71.260071, 36.075742 ], [ 71.845093, 36.511844 ], [ 72.919006, 36.721274 ], [ 74.067078, 36.837866 ], [ 74.575195, 37.022291 ], [ 75.157471, 37.134045 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.835388, 35.494220 ], [ 78.750000, 34.502030 ], [ 78.912048, 34.323024 ], [ 78.810425, 33.507049 ], [ 78.969727, 33.302986 ], [ 78.969727, 32.523658 ], [ 78.750000, 32.565333 ], [ 78.456116, 32.618557 ], [ 78.626404, 31.952162 ], [ 78.673096, 31.765537 ], [ 74.512024, 31.765537 ], [ 74.786682, 31.952162 ], [ 75.256348, 32.273200 ], [ 74.448853, 32.766491 ], [ 74.102783, 33.442901 ], [ 73.748474, 34.318487 ], [ 74.240112, 34.750640 ], [ 75.756226, 34.506557 ], [ 76.871338, 34.653545 ], [ 77.835388, 35.494220 ] ] ] } } +, +{ "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": [ [ [ [ 78.969727, 33.302986 ], [ 78.810425, 33.507049 ], [ 78.912048, 34.323024 ], [ 78.750000, 34.502030 ], [ 77.835388, 35.494220 ], [ 76.190186, 35.900175 ], [ 75.896301, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.978943, 37.420345 ], [ 74.827881, 37.991834 ], [ 74.863586, 38.380422 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.507341 ], [ 73.674316, 39.431950 ], [ 73.959961, 39.660685 ], [ 73.819885, 39.894987 ], [ 74.775696, 40.367474 ], [ 75.465088, 40.563895 ], [ 76.525269, 40.428133 ], [ 76.852112, 40.979898 ], [ 76.904297, 41.066928 ], [ 77.755737, 41.145570 ], [ 78.969727, 41.145570 ], [ 78.969727, 33.302986 ] ] ], [ [ [ 78.969727, 32.523658 ], [ 78.969727, 31.765537 ], [ 78.673096, 31.765537 ], [ 78.626404, 31.952162 ], [ 78.456116, 32.618557 ], [ 78.750000, 32.565333 ], [ 78.969727, 32.523658 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.969727, 49.066668 ], [ 78.969727, 42.869925 ], [ 78.750000, 42.884015 ], [ 77.656860, 42.962453 ], [ 75.997925, 42.988576 ], [ 75.635376, 42.877977 ], [ 74.212646, 43.299197 ], [ 73.644104, 43.092961 ], [ 73.487549, 42.502478 ], [ 71.842346, 42.845765 ], [ 71.185913, 42.704641 ], [ 70.960693, 42.267147 ], [ 70.386658, 42.081917 ], [ 69.068298, 41.385052 ], [ 68.821106, 40.979898 ], [ 68.719482, 40.813809 ], [ 68.170166, 40.813809 ], [ 68.074036, 40.979898 ], [ 67.983398, 41.137296 ], [ 67.500000, 41.149706 ], [ 67.280273, 41.155910 ], [ 67.280273, 49.066668 ], [ 78.969727, 49.066668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.280273, 41.155910 ], [ 67.500000, 41.149706 ], [ 67.983398, 41.137296 ], [ 68.074036, 40.979898 ], [ 68.170166, 40.813809 ], [ 67.280273, 40.813809 ], [ 67.280273, 41.155910 ] ] ], [ [ [ 71.257324, 42.169511 ], [ 70.419617, 41.520917 ], [ 71.155701, 41.145570 ], [ 71.869812, 41.393294 ], [ 72.798157, 40.979898 ], [ 73.053589, 40.867834 ], [ 72.960205, 40.813809 ], [ 70.598145, 40.813809 ], [ 70.664062, 40.961234 ], [ 69.823608, 40.813809 ], [ 68.719482, 40.813809 ], [ 68.821106, 40.979898 ], [ 69.068298, 41.385052 ], [ 70.386658, 42.081917 ], [ 70.960693, 42.267147 ], [ 71.257324, 42.169511 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.212646, 43.299197 ], [ 75.635376, 42.877977 ], [ 75.997925, 42.988576 ], [ 77.656860, 42.962453 ], [ 78.750000, 42.884015 ], [ 78.969727, 42.869925 ], [ 78.969727, 41.730330 ], [ 78.750000, 41.654445 ], [ 78.541260, 41.582580 ], [ 78.186951, 41.186922 ], [ 76.904297, 41.066928 ], [ 76.852112, 40.979898 ], [ 76.753235, 40.813809 ], [ 72.960205, 40.813809 ], [ 73.053589, 40.867834 ], [ 72.798157, 40.979898 ], [ 71.869812, 41.393294 ], [ 71.155701, 41.145570 ], [ 70.419617, 41.520917 ], [ 71.257324, 42.169511 ], [ 70.960693, 42.267147 ], [ 71.185913, 42.704641 ], [ 71.842346, 42.845765 ], [ 73.487549, 42.502478 ], [ 73.644104, 43.092961 ], [ 74.212646, 43.299197 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.961234 ], [ 70.598145, 40.813809 ], [ 69.823608, 40.813809 ], [ 70.664062, 40.961234 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 78.969727, 41.730330 ], [ 78.969727, 40.813809 ], [ 76.753235, 40.813809 ], [ 76.852112, 40.979898 ], [ 76.904297, 41.066928 ], [ 78.186951, 41.186922 ], [ 78.541260, 41.582580 ], [ 78.750000, 41.654445 ], [ 78.969727, 41.730330 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 78.969727, 55.899956 ], [ 78.969727, 52.094695 ], [ 78.750000, 52.343730 ], [ 77.799683, 53.404620 ], [ 76.522522, 54.178512 ], [ 76.890564, 54.490782 ], [ 74.382935, 53.548467 ], [ 73.424377, 53.491314 ], [ 73.506775, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.177673, 54.133478 ], [ 70.864563, 55.171025 ], [ 69.065552, 55.385352 ], [ 68.167419, 54.971308 ], [ 67.500000, 54.873446 ], [ 67.280273, 54.840245 ], [ 67.280273, 55.899956 ], [ 78.969727, 55.899956 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.065552, 55.385352 ], [ 70.864563, 55.171025 ], [ 71.177673, 54.133478 ], [ 72.224121, 54.377358 ], [ 73.506775, 54.036812 ], [ 73.424377, 53.491314 ], [ 74.382935, 53.548467 ], [ 76.890564, 54.490782 ], [ 76.522522, 54.178512 ], [ 77.799683, 53.404620 ], [ 78.750000, 52.343730 ], [ 78.969727, 52.094695 ], [ 78.969727, 48.777913 ], [ 67.280273, 48.777913 ], [ 67.280273, 54.840245 ], [ 67.500000, 54.873446 ], [ 68.167419, 54.971308 ], [ 69.065552, 55.385352 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 78.969727, 61.710706 ], [ 78.969727, 55.652798 ], [ 67.280273, 55.652798 ], [ 67.280273, 61.710706 ], [ 78.969727, 61.710706 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 78.969727, 66.600676 ], [ 78.969727, 61.501734 ], [ 67.280273, 61.501734 ], [ 67.280273, 66.600676 ], [ 71.655579, 66.600676 ], [ 71.537476, 66.513260 ], [ 71.279297, 66.320965 ], [ 72.421875, 66.172719 ], [ 72.798157, 66.513260 ], [ 72.820129, 66.532956 ], [ 73.108521, 66.600676 ], [ 78.969727, 66.600676 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 72.655334, 70.685421 ], [ 72.691040, 70.612614 ], [ 72.789917, 70.391684 ], [ 72.564697, 69.021414 ], [ 73.666077, 68.408278 ], [ 73.237610, 67.740678 ], [ 71.537476, 66.513260 ], [ 71.419373, 66.425537 ], [ 67.280273, 66.425537 ], [ 67.280273, 68.487984 ], [ 67.500000, 68.417373 ], [ 68.510742, 68.092783 ], [ 69.178162, 68.616534 ], [ 68.161926, 69.144965 ], [ 68.134460, 69.357086 ], [ 67.500000, 69.408345 ], [ 67.280273, 69.426691 ], [ 67.280273, 70.685421 ], [ 72.655334, 70.685421 ] ] ], [ [ [ 78.969727, 66.425537 ], [ 72.699280, 66.425537 ], [ 72.798157, 66.513260 ], [ 72.820129, 66.532956 ], [ 73.918762, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.050354, 67.761477 ], [ 74.468079, 68.329305 ], [ 74.934998, 68.989925 ], [ 73.841858, 69.071507 ], [ 73.600159, 69.628422 ], [ 74.382935, 70.612614 ], [ 74.399414, 70.631752 ], [ 74.314270, 70.685421 ], [ 78.969727, 70.685421 ], [ 78.969727, 66.425537 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.847839, 71.409675 ], [ 72.468567, 71.090975 ], [ 72.691040, 70.612614 ], [ 72.723999, 70.539543 ], [ 67.280273, 70.539543 ], [ 67.280273, 71.321035 ], [ 67.500000, 71.429803 ], [ 68.538208, 71.934751 ], [ 69.194641, 72.843642 ], [ 69.938965, 73.040226 ] ] ], [ [ [ 75.682068, 72.300761 ], [ 75.286560, 71.335983 ], [ 76.357727, 71.153182 ], [ 75.901794, 71.874181 ], [ 77.574463, 72.267330 ], [ 78.750000, 72.297421 ], [ 78.969727, 72.303266 ], [ 78.969727, 70.539543 ], [ 74.322510, 70.539543 ], [ 74.382935, 70.612614 ], [ 74.399414, 70.631752 ], [ 73.100281, 71.447289 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.682068, 72.300761 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 68.244324, 76.890745 ], [ 68.332214, 76.840816 ], [ 68.851318, 76.544967 ], [ 68.178406, 76.234098 ], [ 67.500000, 76.140327 ], [ 67.280273, 76.109370 ], [ 67.280273, 76.881398 ], [ 67.420349, 76.890745 ], [ 68.244324, 76.890745 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 68.156433, 76.939868 ], [ 68.332214, 76.840816 ], [ 68.420105, 76.790701 ], [ 67.280273, 76.790701 ], [ 67.280273, 76.881398 ], [ 67.500000, 76.896351 ], [ 68.156433, 76.939868 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 90.219727, -83.956169 ], [ 90.219727, -85.070048 ], [ 78.530273, -85.070048 ], [ 78.530273, -83.956169 ], [ 90.219727, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 90.219727, -82.648222 ], [ 90.219727, -84.002262 ], [ 78.530273, -84.002262 ], [ 78.530273, -82.648222 ], [ 90.219727, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 90.219727, -81.059130 ], [ 90.219727, -82.704241 ], [ 78.530273, -82.704241 ], [ 78.530273, -81.059130 ], [ 90.219727, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 90.219727, -79.129976 ], [ 90.219727, -81.127169 ], [ 78.530273, -81.127169 ], [ 78.530273, -79.129976 ], [ 90.219727, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 90.219727, -76.790701 ], [ 90.219727, -79.212538 ], [ 78.530273, -79.212538 ], [ 78.530273, -76.790701 ], [ 90.219727, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 90.219727, -73.958939 ], [ 90.219727, -76.890745 ], [ 78.530273, -76.890745 ], [ 78.530273, -73.958939 ], [ 90.219727, -73.958939 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 90.219727, -70.539543 ], [ 90.219727, -74.079925 ], [ 78.530273, -74.079925 ], [ 78.530273, -70.539543 ], [ 90.219727, -70.539543 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 24 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 88.277893, -66.425537 ], [ 88.357544, -66.483688 ], [ 88.385010, -66.513260 ], [ 88.827209, -66.953727 ], [ 89.670410, -67.149699 ], [ 90.000000, -67.176348 ], [ 90.219727, -67.194453 ], [ 90.219727, -70.685421 ], [ 78.530273, -70.685421 ], [ 78.530273, -68.642556 ], [ 78.750000, -68.524213 ], [ 79.112549, -68.325248 ], [ 80.093079, -68.071253 ], [ 80.933533, -67.875541 ], [ 81.482849, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.773743, -67.208289 ], [ 83.773499, -67.307035 ], [ 84.674377, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.750793, -67.149699 ], [ 87.475891, -66.875109 ], [ 87.756042, -66.513260 ], [ 87.821960, -66.425537 ], [ 88.277893, -66.425537 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 23 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 87.984009, -66.209308 ], [ 88.357544, -66.483688 ], [ 88.385010, -66.513260 ], [ 88.472900, -66.600676 ], [ 87.687378, -66.600676 ], [ 87.756042, -66.513260 ], [ 87.984009, -66.209308 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 79.859619, 11.393879 ], [ 79.859619, 11.178402 ], [ 79.856873, 10.358151 ], [ 79.337769, 10.309515 ], [ 78.884583, 9.546583 ], [ 79.189453, 9.218694 ], [ 78.750000, 9.080400 ], [ 78.530273, 9.012590 ], [ 78.530273, 11.393879 ], [ 79.859619, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sri Lanka", "sov_a3": "LKA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sri Lanka", "adm0_a3": "LKA", "geou_dif": 0, "geounit": "Sri Lanka", "gu_a3": "LKA", "su_dif": 0, "subunit": "Sri Lanka", "su_a3": "LKA", "brk_diff": 0, "name": "Sri Lanka", "name_long": "Sri Lanka", "brk_a3": "LKA", "brk_name": "Sri Lanka", "abbrev": "Sri L.", "postal": "LK", "formal_en": "Democratic Socialist Republic of Sri Lanka", "name_sort": "Sri Lanka", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 21324791, "gdp_md_est": 91870, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LK", "iso_a3": "LKA", "iso_n3": "144", "un_a3": "144", "wb_a2": "LK", "wb_a3": "LKA", "woe_id": -99, "adm0_a3_is": "LKA", "adm0_a3_us": "LKA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.145264, 9.825448 ], [ 80.837402, 9.270201 ], [ 81.301575, 8.564726 ], [ 81.787720, 7.523150 ], [ 81.636658, 6.481796 ], [ 81.216431, 6.197899 ], [ 80.345764, 5.968485 ], [ 79.870605, 6.765534 ], [ 79.694824, 8.203335 ], [ 80.145264, 9.825448 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.013977, 22.146708 ], [ 89.030457, 22.057642 ], [ 88.986511, 21.943046 ], [ 88.887634, 21.690609 ], [ 88.206482, 21.703369 ], [ 86.973267, 21.496519 ], [ 87.030945, 20.745840 ], [ 86.498108, 20.153942 ], [ 85.058899, 19.479540 ], [ 83.938293, 18.302381 ], [ 83.188477, 17.672811 ], [ 82.191467, 17.017394 ], [ 82.188721, 16.557227 ], [ 81.691589, 16.312232 ], [ 80.790710, 15.953407 ], [ 80.323792, 15.900584 ], [ 80.024414, 15.138416 ], [ 80.233154, 13.838080 ], [ 80.285339, 13.007234 ], [ 79.862366, 12.058123 ], [ 79.859619, 11.178402 ], [ 79.856873, 10.962764 ], [ 78.530273, 10.962764 ], [ 78.530273, 22.146708 ], [ 89.013977, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bangladesh", "sov_a3": "BGD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bangladesh", "adm0_a3": "BGD", "geou_dif": 0, "geounit": "Bangladesh", "gu_a3": "BGD", "su_dif": 0, "subunit": "Bangladesh", "su_a3": "BGD", "brk_diff": 0, "name": "Bangladesh", "name_long": "Bangladesh", "brk_a3": "BGD", "brk_name": "Bangladesh", "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "name_sort": "Bangladesh", "mapcolor7": 3, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 156050883, "gdp_md_est": 224000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BD", "iso_a3": "BGD", "iso_n3": "050", "un_a3": "050", "wb_a2": "BD", "wb_a3": "BGD", "woe_id": -99, "adm0_a3_is": "BGD", "adm0_a3_us": "BGD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.219727, 22.146708 ], [ 90.219727, 21.864048 ], [ 89.846191, 22.039822 ], [ 89.769287, 21.943046 ], [ 89.700623, 21.858950 ], [ 89.478149, 21.943046 ], [ 89.417725, 21.968519 ], [ 89.030457, 22.057642 ], [ 89.013977, 22.146708 ], [ 90.219727, 22.146708 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Nepal", "sov_a3": "NPL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nepal", "adm0_a3": "NPL", "geou_dif": 0, "geounit": "Nepal", "gu_a3": "NPL", "su_dif": 0, "subunit": "Nepal", "su_a3": "NPL", "brk_diff": 0, "name": "Nepal", "name_long": "Nepal", "brk_a3": "NPL", "brk_name": "Nepal", "abbrev": "Nepal", "postal": "NP", "formal_en": "Nepal", "name_sort": "Nepal", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 28563377, "gdp_md_est": 31080, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NP", "iso_a3": "NPL", "iso_n3": "524", "un_a3": "524", "wb_a2": "NP", "wb_a3": "NPL", "woe_id": -99, "adm0_a3_is": "NPL", "adm0_a3_us": "NPL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.524048, 30.424993 ], [ 82.326050, 30.116622 ], [ 83.336792, 29.465905 ], [ 83.897095, 29.322326 ], [ 84.232178, 28.842268 ], [ 85.009460, 28.644800 ], [ 85.822449, 28.205188 ], [ 86.954041, 27.974998 ], [ 88.118591, 27.877928 ], [ 88.041687, 27.447353 ], [ 88.173523, 26.811815 ], [ 88.058167, 26.416470 ], [ 87.225952, 26.399250 ], [ 86.022949, 26.632729 ], [ 85.251160, 26.728440 ], [ 84.674377, 27.235095 ], [ 83.303833, 27.366889 ], [ 81.999207, 27.926474 ], [ 81.057129, 28.417975 ], [ 80.087585, 28.796546 ], [ 80.474854, 29.730992 ], [ 81.109314, 30.185496 ], [ 81.524048, 30.424993 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.579712, 32.138409 ], [ 78.736267, 31.517679 ], [ 78.750000, 31.510654 ], [ 79.719543, 30.883369 ], [ 81.109314, 30.185496 ], [ 80.474854, 29.730992 ], [ 80.087585, 28.796546 ], [ 81.057129, 28.417975 ], [ 81.999207, 27.926474 ], [ 83.303833, 27.366889 ], [ 84.674377, 27.235095 ], [ 85.251160, 26.728440 ], [ 86.022949, 26.632729 ], [ 87.225952, 26.399250 ], [ 88.058167, 26.416470 ], [ 88.173523, 26.811815 ], [ 88.041687, 27.447353 ], [ 88.118591, 27.877928 ], [ 88.728333, 28.088943 ], [ 88.835449, 27.100699 ], [ 89.741821, 26.721080 ], [ 90.000000, 26.784847 ], [ 90.219727, 26.838776 ], [ 90.219727, 25.227305 ], [ 90.000000, 25.259601 ], [ 89.920349, 25.272020 ], [ 89.832458, 25.965453 ], [ 89.354553, 26.014829 ], [ 88.560791, 26.448443 ], [ 88.209229, 25.770214 ], [ 88.928833, 25.239727 ], [ 88.305359, 24.866503 ], [ 88.082886, 24.502145 ], [ 88.698120, 24.234442 ], [ 88.527832, 23.631944 ], [ 88.873901, 22.879971 ], [ 89.030457, 22.057642 ], [ 88.986511, 21.943046 ], [ 88.906860, 21.739091 ], [ 78.530273, 21.739091 ], [ 78.530273, 32.138409 ], [ 78.579712, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bhutan", "sov_a3": "BTN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bhutan", "adm0_a3": "BTN", "geou_dif": 0, "geounit": "Bhutan", "gu_a3": "BTN", "su_dif": 0, "subunit": "Bhutan", "su_a3": "BTN", "brk_diff": 0, "name": "Bhutan", "name_long": "Bhutan", "brk_a3": "BTN", "brk_name": "Bhutan", "abbrev": "Bhutan", "postal": "BT", "formal_en": "Kingdom of Bhutan", "name_sort": "Bhutan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 691141, "gdp_md_est": 3524, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BT", "iso_a3": "BTN", "iso_n3": "064", "un_a3": "064", "wb_a2": "BT", "wb_a3": "BTN", "woe_id": -99, "adm0_a3_is": "BTN", "adm0_a3_us": "BTN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.013733, 28.297126 ], [ 90.219727, 28.231810 ], [ 90.219727, 26.838776 ], [ 90.000000, 26.784847 ], [ 89.741821, 26.721080 ], [ 88.835449, 27.100699 ], [ 88.813477, 27.301011 ], [ 89.475403, 28.042895 ], [ 90.000000, 28.289870 ], [ 90.013733, 28.297126 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bangladesh", "sov_a3": "BGD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bangladesh", "adm0_a3": "BGD", "geou_dif": 0, "geounit": "Bangladesh", "gu_a3": "BGD", "su_dif": 0, "subunit": "Bangladesh", "su_a3": "BGD", "brk_diff": 0, "name": "Bangladesh", "name_long": "Bangladesh", "brk_a3": "BGD", "brk_name": "Bangladesh", "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "name_sort": "Bangladesh", "mapcolor7": 3, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 156050883, "gdp_md_est": 224000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BD", "iso_a3": "BGD", "iso_n3": "050", "un_a3": "050", "wb_a2": "BD", "wb_a3": "BGD", "woe_id": -99, "adm0_a3_is": "BGD", "adm0_a3_us": "BGD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.560791, 26.448443 ], [ 89.354553, 26.014829 ], [ 89.832458, 25.965453 ], [ 89.920349, 25.272020 ], [ 90.000000, 25.259601 ], [ 90.219727, 25.227305 ], [ 90.219727, 21.864048 ], [ 90.000000, 21.968519 ], [ 89.846191, 22.039822 ], [ 89.769287, 21.943046 ], [ 89.700623, 21.858950 ], [ 89.478149, 21.943046 ], [ 89.417725, 21.968519 ], [ 89.030457, 22.057642 ], [ 88.873901, 22.879971 ], [ 88.527832, 23.631944 ], [ 88.698120, 24.234442 ], [ 88.082886, 24.502145 ], [ 88.305359, 24.866503 ], [ 88.928833, 25.239727 ], [ 88.209229, 25.770214 ], [ 88.560791, 26.448443 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 90.219727, 32.138409 ], [ 90.219727, 28.231810 ], [ 90.013733, 28.297126 ], [ 90.000000, 28.289870 ], [ 89.475403, 28.042895 ], [ 88.813477, 27.301011 ], [ 88.728333, 28.088943 ], [ 88.118591, 27.877928 ], [ 86.954041, 27.974998 ], [ 85.822449, 28.205188 ], [ 85.009460, 28.644800 ], [ 84.232178, 28.842268 ], [ 83.897095, 29.322326 ], [ 83.336792, 29.465905 ], [ 82.326050, 30.116622 ], [ 81.524048, 30.424993 ], [ 81.109314, 30.185496 ], [ 79.719543, 30.883369 ], [ 78.750000, 31.510654 ], [ 78.736267, 31.517679 ], [ 78.579712, 32.138409 ], [ 90.219727, 32.138409 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 78.530273, 32.606989 ], [ 78.530273, 34.741612 ], [ 78.750000, 34.502030 ], [ 78.912048, 34.323024 ], [ 78.810425, 33.507049 ], [ 79.208679, 32.994843 ], [ 79.175720, 32.484280 ], [ 78.750000, 32.565333 ], [ 78.530273, 32.606989 ] ] ], [ [ [ 78.530273, 32.338200 ], [ 78.673096, 31.765537 ], [ 78.530273, 31.765537 ], [ 78.530273, 32.338200 ] ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 90.219727, 41.145570 ], [ 90.219727, 31.765537 ], [ 78.673096, 31.765537 ], [ 78.530273, 32.338200 ], [ 78.530273, 32.606989 ], [ 78.750000, 32.565333 ], [ 79.175720, 32.484280 ], [ 79.208679, 32.994843 ], [ 78.810425, 33.507049 ], [ 78.912048, 34.323024 ], [ 78.750000, 34.502030 ], [ 78.530273, 34.741612 ], [ 78.530273, 41.145570 ], [ 90.219727, 41.145570 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.187500, 49.066668 ], [ 87.022705, 48.922499 ], [ 86.596985, 48.549342 ], [ 85.767517, 48.456530 ], [ 85.718079, 47.454094 ], [ 85.163269, 47.002734 ], [ 83.180237, 47.331377 ], [ 82.457886, 45.540984 ], [ 81.947021, 45.317392 ], [ 79.963989, 44.918139 ], [ 80.864868, 43.181147 ], [ 80.178223, 42.920229 ], [ 80.257874, 42.350425 ], [ 79.642639, 42.498428 ], [ 79.140015, 42.857846 ], [ 78.750000, 42.884015 ], [ 78.530273, 42.900113 ], [ 78.530273, 49.066668 ], [ 87.187500, 49.066668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.530273, 42.900113 ], [ 78.750000, 42.884015 ], [ 79.140015, 42.857846 ], [ 79.642639, 42.498428 ], [ 80.257874, 42.350425 ], [ 80.117798, 42.124710 ], [ 78.750000, 41.654445 ], [ 78.541260, 41.582580 ], [ 78.530273, 41.568197 ], [ 78.530273, 42.900113 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.219727, 49.066668 ], [ 90.219727, 47.709762 ], [ 90.000000, 47.768868 ], [ 88.851929, 48.070738 ], [ 88.011475, 48.600225 ], [ 87.890625, 48.922499 ], [ 87.835693, 49.066668 ], [ 90.219727, 49.066668 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 87.835693, 49.066668 ], [ 87.890625, 48.922499 ], [ 88.011475, 48.600225 ], [ 88.851929, 48.070738 ], [ 90.000000, 47.768868 ], [ 90.219727, 47.709762 ], [ 90.219727, 40.813809 ], [ 78.530273, 40.813809 ], [ 78.530273, 41.568197 ], [ 78.541260, 41.582580 ], [ 78.750000, 41.654445 ], [ 80.117798, 42.124710 ], [ 80.257874, 42.350425 ], [ 80.178223, 42.920229 ], [ 80.864868, 43.181147 ], [ 79.963989, 44.918139 ], [ 81.947021, 45.317392 ], [ 82.457886, 45.540984 ], [ 83.180237, 47.331377 ], [ 85.163269, 47.002734 ], [ 85.718079, 47.454094 ], [ 85.767517, 48.456530 ], [ 86.596985, 48.549342 ], [ 87.022705, 48.922499 ], [ 87.187500, 49.066668 ], [ 87.835693, 49.066668 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 90.219727, 55.899956 ], [ 90.219727, 50.111772 ], [ 90.000000, 50.013034 ], [ 88.805237, 49.471694 ], [ 87.750549, 49.298263 ], [ 87.357788, 49.215803 ], [ 86.827698, 49.827353 ], [ 85.539551, 49.694285 ], [ 85.113831, 50.118817 ], [ 84.416199, 50.312146 ], [ 83.932800, 50.890907 ], [ 83.380737, 51.070743 ], [ 81.944275, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 78.750000, 52.343730 ], [ 78.530273, 52.593038 ], [ 78.530273, 55.899956 ], [ 90.219727, 55.899956 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.530273, 52.593038 ], [ 78.750000, 52.343730 ], [ 80.035400, 50.864911 ], [ 80.568237, 51.388923 ], [ 81.944275, 50.812877 ], [ 83.380737, 51.070743 ], [ 83.932800, 50.890907 ], [ 84.416199, 50.312146 ], [ 85.113831, 50.118817 ], [ 85.539551, 49.694285 ], [ 86.827698, 49.827353 ], [ 87.357788, 49.215803 ], [ 87.022705, 48.922499 ], [ 86.857910, 48.777913 ], [ 78.530273, 48.777913 ], [ 78.530273, 52.593038 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.219727, 50.111772 ], [ 90.219727, 48.777913 ], [ 87.945557, 48.777913 ], [ 87.890625, 48.922499 ], [ 87.750549, 49.298263 ], [ 88.805237, 49.471694 ], [ 90.000000, 50.013034 ], [ 90.219727, 50.111772 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 87.750549, 49.298263 ], [ 87.890625, 48.922499 ], [ 87.945557, 48.777913 ], [ 86.857910, 48.777913 ], [ 87.022705, 48.922499 ], [ 87.357788, 49.215803 ], [ 87.750549, 49.298263 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 90.219727, 61.710706 ], [ 90.219727, 55.652798 ], [ 78.530273, 55.652798 ], [ 78.530273, 61.710706 ], [ 90.219727, 61.710706 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 90.219727, 66.600676 ], [ 90.219727, 61.501734 ], [ 78.530273, 61.501734 ], [ 78.530273, 66.600676 ], [ 90.219727, 66.600676 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 90.219727, 70.685421 ], [ 90.219727, 66.425537 ], [ 78.530273, 66.425537 ], [ 78.530273, 70.685421 ], [ 90.219727, 70.685421 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 90.219727, 74.079925 ], [ 90.219727, 70.539543 ], [ 78.530273, 70.539543 ], [ 78.530273, 72.291574 ], [ 78.750000, 72.297421 ], [ 79.650879, 72.320791 ], [ 81.499329, 71.750733 ], [ 80.609436, 72.583295 ], [ 80.510559, 73.648679 ], [ 82.249146, 73.850050 ], [ 84.655151, 73.806447 ], [ 86.822205, 73.936915 ], [ 86.693115, 74.019543 ], [ 86.602478, 74.079925 ], [ 90.219727, 74.079925 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 90.219727, 75.629996 ], [ 90.219727, 73.958939 ], [ 86.786499, 73.958939 ], [ 86.693115, 74.019543 ], [ 86.009216, 74.460399 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.144299 ], [ 90.000000, 75.574678 ], [ 90.219727, 75.629996 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 101.469727, -83.956169 ], [ 101.469727, -85.070048 ], [ 89.780273, -85.070048 ], [ 89.780273, -83.956169 ], [ 101.469727, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 101.469727, -82.648222 ], [ 101.469727, -84.002262 ], [ 89.780273, -84.002262 ], [ 89.780273, -82.648222 ], [ 101.469727, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 101.469727, -81.059130 ], [ 101.469727, -82.704241 ], [ 89.780273, -82.704241 ], [ 89.780273, -81.059130 ], [ 101.469727, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 101.469727, -79.129976 ], [ 101.469727, -81.127169 ], [ 89.780273, -81.127169 ], [ 89.780273, -79.129976 ], [ 101.469727, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 101.469727, -76.790701 ], [ 101.469727, -79.212538 ], [ 89.780273, -79.212538 ], [ 89.780273, -76.790701 ], [ 101.469727, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 101.469727, -73.958939 ], [ 101.469727, -76.890745 ], [ 89.780273, -76.890745 ], [ 89.780273, -73.958939 ], [ 101.469727, -73.958939 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 101.469727, -70.539543 ], [ 101.469727, -74.079925 ], [ 89.780273, -74.079925 ], [ 89.780273, -70.539543 ], [ 101.469727, -70.539543 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 24 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 101.469727, -66.425537 ], [ 101.469727, -70.685421 ], [ 89.780273, -70.685421 ], [ 89.780273, -67.159296 ], [ 90.000000, -67.176348 ], [ 90.628967, -67.228496 ], [ 91.587524, -67.111272 ], [ 92.606506, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.111272 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.385318 ], [ 96.679688, -67.247624 ], [ 97.759094, -67.247624 ], [ 98.679199, -67.111272 ], [ 99.717407, -67.247624 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.582126 ], [ 101.285706, -66.425537 ], [ 101.469727, -66.425537 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 23 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 101.469727, -66.350730 ], [ 101.469727, -66.600676 ], [ 100.862732, -66.600676 ], [ 100.892944, -66.582126 ], [ 101.250000, -66.439813 ], [ 101.469727, -66.350730 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 16 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.469727, 0.219726 ], [ 101.469727, -2.874465 ], [ 101.398315, -2.797655 ], [ 101.250000, -2.572682 ], [ 100.901184, -2.048514 ], [ 100.140381, -0.648180 ], [ 99.456482, 0.000000 ], [ 99.261475, 0.184021 ], [ 99.250488, 0.219726 ], [ 101.469727, 0.219726 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.291687, 11.393879 ], [ 99.165344, 11.178402 ], [ 99.036255, 10.962764 ], [ 98.552856, 9.933682 ], [ 98.456726, 10.676803 ], [ 98.657227, 11.178402 ], [ 98.745117, 11.393879 ], [ 99.291687, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.678955, 11.393879 ], [ 99.599304, 11.178402 ], [ 99.151611, 9.963440 ], [ 99.220276, 9.240382 ], [ 99.871216, 9.210560 ], [ 100.277710, 8.295752 ], [ 100.458984, 7.430560 ], [ 101.016541, 6.858259 ], [ 101.250000, 6.814626 ], [ 101.469727, 6.770989 ], [ 101.469727, 5.749907 ], [ 101.250000, 5.708914 ], [ 101.153870, 5.692516 ], [ 101.074219, 6.206090 ], [ 100.258484, 6.645511 ], [ 100.085449, 6.465422 ], [ 99.689941, 6.850078 ], [ 99.516907, 7.346123 ], [ 98.986816, 7.909632 ], [ 98.503418, 8.382714 ], [ 98.338623, 7.795357 ], [ 98.149109, 8.350106 ], [ 98.258972, 8.974610 ], [ 98.552856, 9.933682 ], [ 99.036255, 10.962764 ], [ 99.165344, 11.178402 ], [ 99.291687, 11.393879 ], [ 99.678955, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.258484, 6.645511 ], [ 101.074219, 6.206090 ], [ 101.153870, 5.692516 ], [ 101.250000, 5.708914 ], [ 101.469727, 5.749907 ], [ 101.469727, 2.709866 ], [ 101.390076, 2.761991 ], [ 101.271973, 3.272146 ], [ 101.250000, 3.299566 ], [ 100.695190, 3.940981 ], [ 100.555115, 4.768047 ], [ 100.195312, 5.312501 ], [ 100.305176, 6.042236 ], [ 100.085449, 6.465422 ], [ 100.258484, 6.645511 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 95.292664, 5.482034 ], [ 95.935364, 5.441022 ], [ 97.484436, 5.246863 ], [ 98.368835, 4.269724 ], [ 99.140625, 3.592919 ], [ 99.692688, 3.176167 ], [ 100.640259, 2.100664 ], [ 101.250000, 2.092430 ], [ 101.469727, 2.086941 ], [ 101.469727, -0.219726 ], [ 99.687195, -0.219726 ], [ 99.456482, 0.000000 ], [ 99.261475, 0.184021 ], [ 98.967590, 1.043643 ], [ 98.599548, 1.826168 ], [ 97.698669, 2.454693 ], [ 97.176819, 3.310534 ], [ 96.421509, 3.869735 ], [ 95.380554, 4.973296 ], [ 95.292664, 5.482034 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 92.889404, 22.146708 ], [ 92.672424, 22.042367 ], [ 92.636719, 22.146708 ], [ 92.889404, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bangladesh", "sov_a3": "BGD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bangladesh", "adm0_a3": "BGD", "geou_dif": 0, "geounit": "Bangladesh", "gu_a3": "BGD", "su_dif": 0, "subunit": "Bangladesh", "su_a3": "BGD", "brk_diff": 0, "name": "Bangladesh", "name_long": "Bangladesh", "brk_a3": "BGD", "brk_name": "Bangladesh", "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "name_sort": "Bangladesh", "mapcolor7": 3, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 156050883, "gdp_md_est": 224000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BD", "iso_a3": "BGD", "iso_n3": "050", "un_a3": "050", "wb_a2": "BD", "wb_a3": "BGD", "woe_id": -99, "adm0_a3_is": "BGD", "adm0_a3_us": "BGD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 92.636719, 22.146708 ], [ 92.672424, 22.042367 ], [ 92.669678, 21.943046 ], [ 92.650452, 21.325198 ], [ 92.301636, 21.476073 ], [ 92.367554, 20.671336 ], [ 92.081909, 21.194655 ], [ 92.024231, 21.703369 ], [ 91.928101, 21.943046 ], [ 91.848450, 22.146708 ], [ 92.636719, 22.146708 ] ] ], [ [ [ 90.447693, 22.146708 ], [ 90.332336, 21.943046 ], [ 90.271912, 21.838555 ], [ 90.046692, 21.943046 ], [ 89.846191, 22.039822 ], [ 89.780273, 21.955783 ], [ 89.780273, 22.146708 ], [ 90.447693, 22.146708 ] ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 101.469727, 22.146708 ], [ 101.469727, 21.192094 ], [ 101.269226, 21.202337 ], [ 101.250000, 21.256102 ], [ 101.178589, 21.437730 ], [ 101.148376, 21.851302 ], [ 100.415039, 21.560393 ], [ 99.981079, 21.744194 ], [ 99.585571, 21.943046 ], [ 99.239502, 22.118722 ], [ 99.250488, 22.146708 ], [ 101.469727, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.250488, 22.146708 ], [ 99.239502, 22.118722 ], [ 99.585571, 21.943046 ], [ 99.981079, 21.744194 ], [ 100.415039, 21.560393 ], [ 101.148376, 21.851302 ], [ 101.178589, 21.437730 ], [ 100.327148, 20.786931 ], [ 100.115662, 20.419291 ], [ 99.541626, 20.187457 ], [ 98.959351, 19.753779 ], [ 98.253479, 19.709829 ], [ 97.797546, 18.628027 ], [ 97.374573, 18.445741 ], [ 97.857971, 17.568102 ], [ 98.492432, 16.838719 ], [ 98.901672, 16.180386 ], [ 98.536377, 15.310678 ], [ 98.190308, 15.125159 ], [ 98.429260, 14.623451 ], [ 99.096680, 13.830079 ], [ 99.209290, 13.269353 ], [ 99.195557, 12.806445 ], [ 99.585571, 11.894228 ], [ 99.165344, 11.178402 ], [ 99.039001, 10.962764 ], [ 98.572083, 10.962764 ], [ 98.657227, 11.178402 ], [ 98.764343, 11.442339 ], [ 98.426514, 12.033948 ], [ 98.508911, 13.124955 ], [ 98.102417, 13.640649 ], [ 97.775574, 14.838612 ], [ 97.597046, 16.101237 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.428182 ], [ 95.366821, 15.715595 ], [ 94.806519, 15.805468 ], [ 94.188538, 16.040534 ], [ 94.531860, 17.279841 ], [ 94.323120, 18.213698 ], [ 93.540344, 19.368159 ], [ 93.661194, 19.727928 ], [ 93.076172, 19.857144 ], [ 92.367554, 20.671336 ], [ 92.301636, 21.476073 ], [ 92.650452, 21.325198 ], [ 92.669678, 21.943046 ], [ 92.672424, 22.042367 ], [ 92.889404, 22.146708 ], [ 99.250488, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Laos", "sov_a3": "LAO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Laos", "adm0_a3": "LAO", "geou_dif": 0, "geounit": "Laos", "gu_a3": "LAO", "su_dif": 0, "subunit": "Laos", "su_a3": "LAO", "brk_diff": 0, "name": "Lao PDR", "name_long": "Lao PDR", "brk_a3": "LAO", "brk_name": "Laos", "abbrev": "Laos", "postal": "LA", "formal_en": "Lao People's Democratic Republic", "name_sort": "Lao PDR", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 6834942, "gdp_md_est": 13980, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LA", "iso_a3": "LAO", "iso_n3": "418", "un_a3": "418", "wb_a2": "LA", "wb_a3": "LAO", "woe_id": -99, "adm0_a3_is": "LAO", "adm0_a3_us": "LAO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.178589, 21.437730 ], [ 101.250000, 21.256102 ], [ 101.269226, 21.202337 ], [ 101.469727, 21.192094 ], [ 101.469727, 17.746071 ], [ 101.250000, 17.620464 ], [ 101.057739, 17.513106 ], [ 101.035767, 18.409261 ], [ 101.250000, 19.326695 ], [ 101.280212, 19.464003 ], [ 101.250000, 19.466592 ], [ 100.604553, 19.510609 ], [ 100.546875, 20.110102 ], [ 100.115662, 20.419291 ], [ 100.327148, 20.786931 ], [ 101.178589, 21.437730 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.115662, 20.419291 ], [ 100.546875, 20.110102 ], [ 100.604553, 19.510609 ], [ 101.250000, 19.466592 ], [ 101.280212, 19.464003 ], [ 101.250000, 19.326695 ], [ 101.035767, 18.409261 ], [ 101.057739, 17.513106 ], [ 101.250000, 17.620464 ], [ 101.469727, 17.746071 ], [ 101.469727, 12.643018 ], [ 101.250000, 12.637658 ], [ 100.829773, 12.629618 ], [ 100.978088, 13.413666 ], [ 100.096436, 13.408322 ], [ 100.016785, 12.307802 ], [ 99.599304, 11.178402 ], [ 99.519653, 10.962764 ], [ 99.039001, 10.962764 ], [ 99.165344, 11.178402 ], [ 99.585571, 11.894228 ], [ 99.195557, 12.806445 ], [ 99.209290, 13.269353 ], [ 99.096680, 13.830079 ], [ 98.429260, 14.623451 ], [ 98.190308, 15.125159 ], [ 98.536377, 15.310678 ], [ 98.901672, 16.180386 ], [ 98.492432, 16.838719 ], [ 97.857971, 17.568102 ], [ 97.374573, 18.445741 ], [ 97.797546, 18.628027 ], [ 98.253479, 19.709829 ], [ 98.959351, 19.753779 ], [ 99.541626, 20.187457 ], [ 100.115662, 20.419291 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.116638, 29.453948 ], [ 96.586304, 28.832644 ], [ 96.248474, 28.413144 ], [ 97.325134, 28.263263 ], [ 97.402039, 27.882784 ], [ 97.050476, 27.700552 ], [ 97.132874, 27.086028 ], [ 96.418762, 27.266837 ], [ 95.122375, 26.573790 ], [ 95.152588, 26.002487 ], [ 94.600525, 25.162687 ], [ 94.551086, 24.676970 ], [ 94.106140, 23.853186 ], [ 93.323364, 24.079067 ], [ 93.284912, 23.044353 ], [ 93.059692, 22.705255 ], [ 93.164062, 22.278931 ], [ 92.672424, 22.042367 ], [ 92.145081, 23.629427 ], [ 91.867676, 23.624395 ], [ 91.705627, 22.986210 ], [ 91.156311, 23.503552 ], [ 91.466675, 24.074051 ], [ 91.914368, 24.131715 ], [ 92.375793, 24.978589 ], [ 91.799011, 25.147771 ], [ 90.870667, 25.132852 ], [ 90.000000, 25.259601 ], [ 89.920349, 25.272020 ], [ 89.832458, 25.965453 ], [ 89.780273, 25.972861 ], [ 89.780273, 26.728440 ], [ 90.000000, 26.784847 ], [ 90.370789, 26.877981 ], [ 91.216736, 26.809364 ], [ 92.032471, 26.838776 ], [ 92.101135, 27.454665 ], [ 91.694641, 27.773481 ], [ 92.502136, 27.897349 ], [ 93.411255, 28.642389 ], [ 94.564819, 29.279212 ], [ 95.402527, 29.032158 ], [ 96.116638, 29.453948 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bhutan", "sov_a3": "BTN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bhutan", "adm0_a3": "BTN", "geou_dif": 0, "geounit": "Bhutan", "gu_a3": "BTN", "su_dif": 0, "subunit": "Bhutan", "su_a3": "BTN", "brk_diff": 0, "name": "Bhutan", "name_long": "Bhutan", "brk_a3": "BTN", "brk_name": "Bhutan", "abbrev": "Bhutan", "postal": "BT", "formal_en": "Kingdom of Bhutan", "name_sort": "Bhutan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 691141, "gdp_md_est": 3524, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BT", "iso_a3": "BTN", "iso_n3": "064", "un_a3": "064", "wb_a2": "BT", "wb_a3": "BTN", "woe_id": -99, "adm0_a3_is": "BTN", "adm0_a3_us": "BTN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.013733, 28.297126 ], [ 90.727844, 28.067133 ], [ 91.257935, 28.042895 ], [ 91.694641, 27.773481 ], [ 92.101135, 27.454665 ], [ 92.032471, 26.838776 ], [ 91.216736, 26.809364 ], [ 90.370789, 26.877981 ], [ 90.000000, 26.784847 ], [ 89.780273, 26.728440 ], [ 89.780273, 28.188244 ], [ 90.000000, 28.289870 ], [ 90.013733, 28.297126 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bangladesh", "sov_a3": "BGD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bangladesh", "adm0_a3": "BGD", "geou_dif": 0, "geounit": "Bangladesh", "gu_a3": "BGD", "su_dif": 0, "subunit": "Bangladesh", "su_a3": "BGD", "brk_diff": 0, "name": "Bangladesh", "name_long": "Bangladesh", "brk_a3": "BGD", "brk_name": "Bangladesh", "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "name_sort": "Bangladesh", "mapcolor7": 3, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 156050883, "gdp_md_est": 224000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BD", "iso_a3": "BGD", "iso_n3": "050", "un_a3": "050", "wb_a2": "BD", "wb_a3": "BGD", "woe_id": -99, "adm0_a3_is": "BGD", "adm0_a3_us": "BGD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.780273, 25.972861 ], [ 89.832458, 25.965453 ], [ 89.920349, 25.272020 ], [ 90.000000, 25.259601 ], [ 90.870667, 25.132852 ], [ 91.799011, 25.147771 ], [ 92.375793, 24.978589 ], [ 91.914368, 24.131715 ], [ 91.466675, 24.074051 ], [ 91.156311, 23.503552 ], [ 91.705627, 22.986210 ], [ 91.867676, 23.624395 ], [ 92.145081, 23.629427 ], [ 92.672424, 22.042367 ], [ 92.669678, 21.943046 ], [ 92.661438, 21.739091 ], [ 92.007751, 21.739091 ], [ 91.928101, 21.943046 ], [ 91.834717, 22.184862 ], [ 91.414490, 22.766051 ], [ 90.494385, 22.806567 ], [ 90.585022, 22.393253 ], [ 90.332336, 21.943046 ], [ 90.271912, 21.838555 ], [ 90.046692, 21.943046 ], [ 90.000000, 21.968519 ], [ 89.846191, 22.039822 ], [ 89.780273, 21.955783 ], [ 89.780273, 25.972861 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 101.469727, 32.138409 ], [ 101.469727, 21.739091 ], [ 101.156616, 21.739091 ], [ 101.148376, 21.851302 ], [ 100.868225, 21.739091 ], [ 99.992065, 21.739091 ], [ 99.585571, 21.943046 ], [ 99.239502, 22.118722 ], [ 99.530640, 22.950806 ], [ 98.896179, 23.142886 ], [ 98.659973, 24.064020 ], [ 97.602539, 23.898394 ], [ 97.723389, 25.085599 ], [ 98.670959, 25.920996 ], [ 98.709412, 26.745610 ], [ 98.681946, 27.510707 ], [ 98.245239, 27.749177 ], [ 97.910156, 28.338230 ], [ 97.325134, 28.263263 ], [ 96.248474, 28.413144 ], [ 96.586304, 28.832644 ], [ 96.116638, 29.453948 ], [ 95.402527, 29.032158 ], [ 94.564819, 29.279212 ], [ 93.411255, 28.642389 ], [ 92.502136, 27.897349 ], [ 91.694641, 27.773481 ], [ 91.257935, 28.042895 ], [ 90.727844, 28.067133 ], [ 90.013733, 28.297126 ], [ 90.000000, 28.289870 ], [ 89.780273, 28.188244 ], [ 89.780273, 32.138409 ], [ 101.469727, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 97.910156, 28.338230 ], [ 98.245239, 27.749177 ], [ 98.681946, 27.510707 ], [ 98.709412, 26.745610 ], [ 98.670959, 25.920996 ], [ 97.723389, 25.085599 ], [ 97.602539, 23.898394 ], [ 98.659973, 24.064020 ], [ 98.896179, 23.142886 ], [ 99.530640, 22.950806 ], [ 99.239502, 22.118722 ], [ 99.585571, 21.943046 ], [ 99.992065, 21.739091 ], [ 92.661438, 21.739091 ], [ 92.669678, 21.943046 ], [ 92.672424, 22.042367 ], [ 93.164062, 22.278931 ], [ 93.059692, 22.705255 ], [ 93.284912, 23.044353 ], [ 93.323364, 24.079067 ], [ 94.106140, 23.853186 ], [ 94.551086, 24.676970 ], [ 94.600525, 25.162687 ], [ 95.152588, 26.002487 ], [ 95.122375, 26.573790 ], [ 96.418762, 27.266837 ], [ 97.132874, 27.086028 ], [ 97.050476, 27.700552 ], [ 97.402039, 27.882784 ], [ 97.325134, 28.263263 ], [ 97.910156, 28.338230 ] ] ], [ [ [ 101.156616, 21.739091 ], [ 100.868225, 21.739091 ], [ 101.148376, 21.851302 ], [ 101.156616, 21.739091 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 101.469727, 41.145570 ], [ 101.469727, 31.765537 ], [ 89.780273, 31.765537 ], [ 89.780273, 41.145570 ], [ 101.469727, 41.145570 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.469727, 49.066668 ], [ 101.469727, 42.571287 ], [ 101.250000, 42.603642 ], [ 100.843506, 42.664261 ], [ 99.514160, 42.524748 ], [ 97.451477, 42.749029 ], [ 96.347351, 42.726839 ], [ 95.762329, 43.321181 ], [ 95.306396, 44.243231 ], [ 94.688416, 44.353314 ], [ 93.479919, 44.976457 ], [ 92.131348, 45.116177 ], [ 90.944824, 45.286482 ], [ 90.585022, 45.721522 ], [ 90.969543, 46.888355 ], [ 90.280151, 47.694974 ], [ 90.000000, 47.768868 ], [ 89.780273, 47.826064 ], [ 89.780273, 49.066668 ], [ 101.469727, 49.066668 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 89.780273, 47.826064 ], [ 90.000000, 47.768868 ], [ 90.280151, 47.694974 ], [ 90.969543, 46.888355 ], [ 90.585022, 45.721522 ], [ 90.944824, 45.286482 ], [ 92.131348, 45.116177 ], [ 93.479919, 44.976457 ], [ 94.688416, 44.353314 ], [ 95.306396, 44.243231 ], [ 95.762329, 43.321181 ], [ 96.347351, 42.726839 ], [ 97.451477, 42.749029 ], [ 99.514160, 42.524748 ], [ 100.843506, 42.664261 ], [ 101.250000, 42.603642 ], [ 101.469727, 42.571287 ], [ 101.469727, 40.813809 ], [ 89.780273, 40.813809 ], [ 89.780273, 47.826064 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 101.469727, 55.899956 ], [ 101.469727, 51.390637 ], [ 101.250000, 51.438601 ], [ 100.887451, 51.517289 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.047423 ], [ 97.825012, 51.012027 ], [ 98.231506, 50.422519 ], [ 97.259216, 49.726255 ], [ 95.811768, 49.977722 ], [ 94.814758, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.232971, 50.802463 ], [ 90.711365, 50.333190 ], [ 90.000000, 50.013034 ], [ 89.780273, 49.914093 ], [ 89.780273, 55.899956 ], [ 101.469727, 55.899956 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.860474, 52.047423 ], [ 99.981079, 51.635067 ], [ 100.887451, 51.517289 ], [ 101.250000, 51.438601 ], [ 101.469727, 51.390637 ], [ 101.469727, 48.777913 ], [ 89.780273, 48.777913 ], [ 89.780273, 49.914093 ], [ 90.000000, 50.013034 ], [ 90.711365, 50.333190 ], [ 92.232971, 50.802463 ], [ 93.103638, 50.495958 ], [ 94.147339, 50.481978 ], [ 94.814758, 50.014799 ], [ 95.811768, 49.977722 ], [ 97.259216, 49.726255 ], [ 98.231506, 50.422519 ], [ 97.825012, 51.012027 ], [ 98.860474, 52.047423 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 101.469727, 61.710706 ], [ 101.469727, 55.652798 ], [ 89.780273, 55.652798 ], [ 89.780273, 61.710706 ], [ 101.469727, 61.710706 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 101.469727, 66.600676 ], [ 101.469727, 61.501734 ], [ 89.780273, 61.501734 ], [ 89.780273, 66.600676 ], [ 101.469727, 66.600676 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 101.469727, 70.685421 ], [ 101.469727, 66.425537 ], [ 89.780273, 66.425537 ], [ 89.780273, 70.685421 ], [ 101.469727, 70.685421 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 101.469727, 74.079925 ], [ 101.469727, 70.539543 ], [ 89.780273, 70.539543 ], [ 89.780273, 74.079925 ], [ 101.469727, 74.079925 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 101.469727, 76.890745 ], [ 101.469727, 73.958939 ], [ 89.780273, 73.958939 ], [ 89.780273, 75.519151 ], [ 90.000000, 75.574678 ], [ 90.258179, 75.640217 ], [ 92.900391, 75.773797 ], [ 93.232727, 76.047254 ], [ 95.858459, 76.140327 ], [ 96.676941, 75.915521 ], [ 98.920898, 76.447482 ], [ 100.758362, 76.430738 ], [ 101.033020, 76.862059 ], [ 101.098938, 76.890745 ], [ 101.469727, 76.890745 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 101.469727, 77.057270 ], [ 101.469727, 76.790701 ], [ 100.989075, 76.790701 ], [ 101.019287, 76.840816 ], [ 101.033020, 76.862059 ], [ 101.250000, 76.959094 ], [ 101.469727, 77.057270 ] ] ], [ [ [ 101.469727, 79.212538 ], [ 101.469727, 78.061989 ], [ 101.250000, 78.046640 ], [ 99.437256, 77.921418 ], [ 101.170349, 79.171335 ], [ 101.230774, 79.212538 ], [ 101.469727, 79.212538 ] ] ], [ [ [ 100.027771, 79.212538 ], [ 100.016785, 79.171335 ], [ 99.937134, 78.881177 ], [ 97.756348, 78.756551 ], [ 94.971313, 79.045225 ], [ 94.427490, 79.171335 ], [ 94.248962, 79.212538 ], [ 100.027771, 79.212538 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 101.469727, 79.262288 ], [ 101.469727, 79.129976 ], [ 101.109924, 79.129976 ], [ 101.170349, 79.171335 ], [ 101.250000, 79.224355 ], [ 101.263733, 79.234107 ], [ 101.469727, 79.262288 ] ] ], [ [ [ 96.424255, 81.127169 ], [ 96.558838, 81.093214 ], [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 100.016785, 79.171335 ], [ 100.005798, 79.129976 ], [ 94.606018, 79.129976 ], [ 94.427490, 79.171335 ], [ 93.312378, 79.426828 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.341801 ], [ 93.776550, 81.024916 ], [ 94.427490, 81.093214 ], [ 94.751587, 81.127169 ], [ 96.424255, 81.127169 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 95.940857, 81.250438 ], [ 96.558838, 81.093214 ], [ 96.690674, 81.059130 ], [ 94.103394, 81.059130 ], [ 94.427490, 81.093214 ], [ 95.940857, 81.250438 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 112.719727, -83.956169 ], [ 112.719727, -85.070048 ], [ 101.030273, -85.070048 ], [ 101.030273, -83.956169 ], [ 112.719727, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 112.719727, -82.648222 ], [ 112.719727, -84.002262 ], [ 101.030273, -84.002262 ], [ 101.030273, -82.648222 ], [ 112.719727, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 112.719727, -81.059130 ], [ 112.719727, -82.704241 ], [ 101.030273, -82.704241 ], [ 101.030273, -81.059130 ], [ 112.719727, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 112.719727, -79.129976 ], [ 112.719727, -81.127169 ], [ 101.030273, -81.127169 ], [ 101.030273, -79.129976 ], [ 112.719727, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 112.719727, -76.790701 ], [ 112.719727, -79.212538 ], [ 101.030273, -79.212538 ], [ 101.030273, -76.790701 ], [ 112.719727, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 112.719727, -73.958939 ], [ 112.719727, -76.890745 ], [ 101.030273, -76.890745 ], [ 101.030273, -73.958939 ], [ 112.719727, -73.958939 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 112.719727, -70.539543 ], [ 112.719727, -74.079925 ], [ 101.030273, -74.079925 ], [ 101.030273, -70.539543 ], [ 112.719727, -70.539543 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 24 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 112.719727, -66.425537 ], [ 112.719727, -70.685421 ], [ 101.030273, -70.685421 ], [ 101.030273, -66.527486 ], [ 101.285706, -66.425537 ], [ 105.111694, -66.425537 ], [ 105.292969, -66.513260 ], [ 106.180115, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.080750, -66.953727 ], [ 109.157410, -66.836246 ], [ 110.234070, -66.699737 ], [ 110.794373, -66.513260 ], [ 111.058044, -66.425537 ], [ 112.719727, -66.425537 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 23 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 102.832031, -65.563005 ], [ 103.477478, -65.700128 ], [ 104.241028, -65.974443 ], [ 104.908447, -66.326479 ], [ 105.292969, -66.513260 ], [ 105.476990, -66.600676 ], [ 101.030273, -66.600676 ], [ 101.030273, -66.527486 ], [ 101.250000, -66.439813 ], [ 101.576843, -66.307724 ], [ 102.832031, -65.563005 ] ] ], [ [ [ 112.719727, -66.600676 ], [ 110.533447, -66.600676 ], [ 110.794373, -66.513260 ], [ 111.058044, -66.424439 ], [ 111.741943, -66.130520 ], [ 112.500000, -66.104945 ], [ 112.719727, -66.097156 ], [ 112.719727, -66.600676 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 16 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.051025, -5.894725 ], [ 107.262268, -5.954827 ], [ 108.069763, -6.345327 ], [ 108.484497, -6.421754 ], [ 108.621826, -6.776444 ], [ 110.538940, -6.877347 ], [ 110.758667, -6.462693 ], [ 112.500000, -6.915521 ], [ 112.612610, -6.945512 ], [ 112.719727, -7.130872 ], [ 112.719727, -8.369127 ], [ 112.557678, -8.374562 ], [ 112.500000, -8.371845 ], [ 111.519470, -8.301188 ], [ 110.585632, -8.121772 ], [ 109.426575, -7.738208 ], [ 108.693237, -7.640220 ], [ 108.275757, -7.765423 ], [ 106.452026, -7.354295 ], [ 106.278992, -6.923700 ], [ 105.364380, -6.850078 ], [ 106.051025, -5.894725 ] ] ], [ [ [ 103.645020, 0.219726 ], [ 103.837280, 0.107117 ], [ 103.785095, 0.000000 ], [ 103.436279, -0.711346 ], [ 104.010315, -1.057374 ], [ 104.367371, -1.084835 ], [ 104.537659, -1.782244 ], [ 104.886475, -2.339438 ], [ 105.619812, -2.427252 ], [ 106.105957, -3.060982 ], [ 105.856018, -4.305330 ], [ 105.817566, -5.851010 ], [ 104.707947, -5.872868 ], [ 103.867493, -5.036227 ], [ 102.582092, -4.217682 ], [ 102.153625, -3.612107 ], [ 101.398315, -2.797655 ], [ 101.250000, -2.572682 ], [ 101.030273, -2.240640 ], [ 101.030273, 0.219726 ], [ 103.645020, 0.219726 ] ] ], [ [ [ 112.719727, 0.219726 ], [ 112.719727, -3.280372 ], [ 112.500000, -3.346180 ], [ 112.066040, -3.477782 ], [ 111.700745, -2.992413 ], [ 111.047058, -3.047268 ], [ 110.223083, -2.932069 ], [ 110.069275, -1.592812 ], [ 109.569397, -1.312751 ], [ 109.091492, -0.458674 ], [ 109.017334, 0.000000 ], [ 108.981628, 0.219726 ], [ 112.719727, 0.219726 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.030273, 6.855532 ], [ 101.250000, 6.814626 ], [ 101.620789, 6.740986 ], [ 102.139893, 6.222473 ], [ 101.813049, 5.812757 ], [ 101.250000, 5.708914 ], [ 101.153870, 5.692516 ], [ 101.074219, 6.206090 ], [ 101.030273, 6.230664 ], [ 101.030273, 6.855532 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Vietnam", "sov_a3": "VNM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vietnam", "adm0_a3": "VNM", "geou_dif": 0, "geounit": "Vietnam", "gu_a3": "VNM", "su_dif": 0, "subunit": "Vietnam", "su_a3": "VNM", "brk_diff": 0, "name": "Vietnam", "name_long": "Vietnam", "brk_a3": "VNM", "brk_name": "Vietnam", "abbrev": "Viet.", "postal": "VN", "formal_en": "Socialist Republic of Vietnam", "name_sort": "Vietnam", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 86967524, "gdp_md_est": 241700, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VN", "iso_a3": "VNM", "iso_n3": "704", "un_a3": "704", "wb_a2": "VN", "wb_a3": "VNM", "woe_id": -99, "adm0_a3_is": "VNM", "adm0_a3_us": "VNM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 108.852539, 11.393879 ], [ 108.580627, 11.178402 ], [ 108.363647, 11.008601 ], [ 107.218323, 10.366257 ], [ 106.402588, 9.533040 ], [ 105.155640, 8.600032 ], [ 104.793091, 9.243093 ], [ 105.075989, 9.920155 ], [ 104.331665, 10.487812 ], [ 105.199585, 10.889951 ], [ 106.248779, 10.962764 ], [ 105.935669, 11.393879 ], [ 108.852539, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cambodia", "sov_a3": "KHM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cambodia", "adm0_a3": "KHM", "geou_dif": 0, "geounit": "Cambodia", "gu_a3": "KHM", "su_dif": 0, "subunit": "Cambodia", "su_a3": "KHM", "brk_diff": 0, "name": "Cambodia", "name_long": "Cambodia", "brk_a3": "KHM", "brk_name": "Cambodia", "abbrev": "Camb.", "postal": "KH", "formal_en": "Kingdom of Cambodia", "name_sort": "Cambodia", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 5, "pop_est": 14494293, "gdp_md_est": 27940, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KH", "iso_a3": "KHM", "iso_n3": "116", "un_a3": "116", "wb_a2": "KH", "wb_a3": "KHM", "woe_id": -99, "adm0_a3_is": "KHM", "adm0_a3_us": "KHM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.935669, 11.393879 ], [ 106.248779, 10.962764 ], [ 105.199585, 10.889951 ], [ 104.331665, 10.487812 ], [ 103.496704, 10.633615 ], [ 103.090210, 11.154151 ], [ 103.076477, 11.178402 ], [ 102.972107, 11.393879 ], [ 105.935669, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.719727, 3.052754 ], [ 112.719727, 1.474752 ], [ 112.500000, 1.433566 ], [ 112.379150, 1.411600 ], [ 111.796875, 0.906334 ], [ 111.156921, 0.977736 ], [ 110.511475, 0.774513 ], [ 109.827576, 1.340210 ], [ 109.662781, 2.007341 ], [ 110.396118, 1.664195 ], [ 111.167908, 1.850874 ], [ 111.368408, 2.698892 ], [ 111.796875, 2.888180 ], [ 112.500000, 3.014356 ], [ 112.719727, 3.052754 ] ] ], [ [ [ 101.030273, 6.230664 ], [ 101.074219, 6.206090 ], [ 101.153870, 5.692516 ], [ 101.250000, 5.708914 ], [ 101.813049, 5.812757 ], [ 102.139893, 6.222473 ], [ 102.370605, 6.129631 ], [ 102.961121, 5.525777 ], [ 103.378601, 4.855628 ], [ 103.436279, 4.182073 ], [ 103.331909, 3.727227 ], [ 103.428040, 3.384566 ], [ 103.502197, 2.792168 ], [ 103.853760, 2.517805 ], [ 104.246521, 1.631249 ], [ 104.227295, 1.293530 ], [ 103.518677, 1.227628 ], [ 102.571106, 1.968912 ], [ 101.390076, 2.761991 ], [ 101.271973, 3.272146 ], [ 101.250000, 3.299566 ], [ 101.030273, 3.554541 ], [ 101.030273, 6.230664 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 109.662781, 2.007341 ], [ 109.827576, 1.340210 ], [ 110.511475, 0.774513 ], [ 111.156921, 0.977736 ], [ 111.796875, 0.906334 ], [ 112.379150, 1.411600 ], [ 112.500000, 1.433566 ], [ 112.719727, 1.474752 ], [ 112.719727, -0.219726 ], [ 109.053040, -0.219726 ], [ 109.017334, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.066772, 1.342956 ], [ 109.662781, 2.007341 ] ] ], [ [ [ 101.030273, 2.095175 ], [ 101.250000, 2.092430 ], [ 101.656494, 2.084196 ], [ 102.496948, 1.400617 ], [ 103.076477, 0.563040 ], [ 103.837280, 0.107117 ], [ 103.785095, 0.000000 ], [ 103.677979, -0.219726 ], [ 101.030273, -0.219726 ], [ 101.030273, 2.095175 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 110.209351, 20.102365 ], [ 110.786133, 20.079150 ], [ 111.008606, 19.696900 ], [ 110.569153, 19.256701 ], [ 110.338440, 18.680073 ], [ 109.473267, 18.198044 ], [ 108.654785, 18.508261 ], [ 108.624573, 19.368159 ], [ 109.118958, 19.823558 ], [ 110.209351, 20.102365 ] ] ], [ [ [ 112.719727, 22.146708 ], [ 112.719727, 21.866597 ], [ 112.500000, 21.787557 ], [ 111.843567, 21.552730 ], [ 110.783386, 21.399377 ], [ 110.442810, 20.342052 ], [ 109.888000, 20.282809 ], [ 109.627075, 21.010163 ], [ 109.863281, 21.396819 ], [ 108.520203, 21.716128 ], [ 108.047791, 21.552730 ], [ 107.042542, 21.813058 ], [ 106.888733, 21.943046 ], [ 106.649780, 22.146708 ], [ 112.719727, 22.146708 ] ] ], [ [ [ 101.672974, 22.146708 ], [ 101.700439, 21.943046 ], [ 101.802063, 21.176729 ], [ 101.269226, 21.202337 ], [ 101.250000, 21.256102 ], [ 101.178589, 21.437730 ], [ 101.148376, 21.851302 ], [ 101.030273, 21.802858 ], [ 101.030273, 22.146708 ], [ 101.672974, 22.146708 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.148376, 21.851302 ], [ 101.178589, 21.437730 ], [ 101.030273, 21.322640 ], [ 101.030273, 21.802858 ], [ 101.148376, 21.851302 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Laos", "sov_a3": "LAO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Laos", "adm0_a3": "LAO", "geou_dif": 0, "geounit": "Laos", "gu_a3": "LAO", "su_dif": 0, "subunit": "Laos", "su_a3": "LAO", "brk_diff": 0, "name": "Lao PDR", "name_long": "Lao PDR", "brk_a3": "LAO", "brk_name": "Laos", "abbrev": "Laos", "postal": "LA", "formal_en": "Lao People's Democratic Republic", "name_sort": "Lao PDR", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 6834942, "gdp_md_est": 13980, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LA", "iso_a3": "LAO", "iso_n3": "418", "un_a3": "418", "wb_a2": "LA", "wb_a3": "LAO", "woe_id": -99, "adm0_a3_is": "LAO", "adm0_a3_us": "LAO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.403564, 22.146708 ], [ 102.554626, 21.943046 ], [ 102.752380, 21.675296 ], [ 103.202820, 20.768955 ], [ 104.433289, 20.761250 ], [ 104.820557, 19.888140 ], [ 104.183350, 19.627066 ], [ 103.894958, 19.267073 ], [ 105.092468, 18.667063 ], [ 105.924683, 17.486911 ], [ 106.553650, 16.604610 ], [ 107.311707, 15.911150 ], [ 107.564392, 15.204687 ], [ 107.380371, 14.203151 ], [ 106.495972, 14.572951 ], [ 106.042786, 13.883412 ], [ 105.216064, 14.275030 ], [ 105.542908, 14.724417 ], [ 105.586853, 15.572774 ], [ 104.776611, 16.443988 ], [ 104.716187, 17.429270 ], [ 103.955383, 18.242395 ], [ 103.200073, 18.310203 ], [ 102.996826, 17.963058 ], [ 102.411804, 17.934316 ], [ 102.112427, 18.109308 ], [ 101.250000, 17.620464 ], [ 101.057739, 17.513106 ], [ 101.035767, 18.409261 ], [ 101.250000, 19.326695 ], [ 101.280212, 19.464003 ], [ 101.250000, 19.466592 ], [ 101.030273, 19.482129 ], [ 101.030273, 21.322640 ], [ 101.178589, 21.437730 ], [ 101.250000, 21.256102 ], [ 101.269226, 21.202337 ], [ 101.802063, 21.176729 ], [ 101.700439, 21.943046 ], [ 101.672974, 22.146708 ], [ 102.403564, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.030273, 19.482129 ], [ 101.250000, 19.466592 ], [ 101.280212, 19.464003 ], [ 101.250000, 19.326695 ], [ 101.035767, 18.409261 ], [ 101.057739, 17.513106 ], [ 101.250000, 17.620464 ], [ 102.112427, 18.109308 ], [ 102.411804, 17.934316 ], [ 102.996826, 17.963058 ], [ 103.200073, 18.310203 ], [ 103.955383, 18.242395 ], [ 104.716187, 17.429270 ], [ 104.776611, 16.443988 ], [ 105.586853, 15.572774 ], [ 105.542908, 14.724417 ], [ 105.216064, 14.275030 ], [ 104.279480, 14.418720 ], [ 102.985840, 14.227113 ], [ 102.345886, 13.394963 ], [ 102.584839, 12.187019 ], [ 101.686707, 12.648378 ], [ 101.250000, 12.637658 ], [ 101.030273, 12.632298 ], [ 101.030273, 19.482129 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Vietnam", "sov_a3": "VNM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vietnam", "adm0_a3": "VNM", "geou_dif": 0, "geounit": "Vietnam", "gu_a3": "VNM", "su_dif": 0, "subunit": "Vietnam", "su_a3": "VNM", "brk_diff": 0, "name": "Vietnam", "name_long": "Vietnam", "brk_a3": "VNM", "brk_name": "Vietnam", "abbrev": "Viet.", "postal": "VN", "formal_en": "Socialist Republic of Vietnam", "name_sort": "Vietnam", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 86967524, "gdp_md_est": 241700, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VN", "iso_a3": "VNM", "iso_n3": "704", "un_a3": "704", "wb_a2": "VN", "wb_a3": "VNM", "woe_id": -99, "adm0_a3_is": "VNM", "adm0_a3_us": "VNM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.649780, 22.146708 ], [ 106.888733, 21.943046 ], [ 107.042542, 21.813058 ], [ 108.047791, 21.552730 ], [ 106.712952, 20.697031 ], [ 105.880737, 19.753779 ], [ 105.661011, 19.059522 ], [ 107.361145, 16.699340 ], [ 108.267517, 16.080125 ], [ 108.874512, 15.278886 ], [ 109.333191, 13.427024 ], [ 109.198608, 11.668376 ], [ 108.580627, 11.178402 ], [ 108.363647, 11.008601 ], [ 108.283997, 10.962764 ], [ 106.248779, 10.962764 ], [ 106.092224, 11.178402 ], [ 105.809326, 11.568835 ], [ 107.490234, 12.337319 ], [ 107.613831, 13.536530 ], [ 107.380371, 14.203151 ], [ 107.564392, 15.204687 ], [ 107.311707, 15.911150 ], [ 106.553650, 16.604610 ], [ 105.924683, 17.486911 ], [ 105.092468, 18.667063 ], [ 103.894958, 19.267073 ], [ 104.183350, 19.627066 ], [ 104.820557, 19.888140 ], [ 104.433289, 20.761250 ], [ 103.202820, 20.768955 ], [ 102.752380, 21.675296 ], [ 102.554626, 21.943046 ], [ 102.403564, 22.146708 ], [ 106.649780, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cambodia", "sov_a3": "KHM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cambodia", "adm0_a3": "KHM", "geou_dif": 0, "geounit": "Cambodia", "gu_a3": "KHM", "su_dif": 0, "subunit": "Cambodia", "su_a3": "KHM", "brk_diff": 0, "name": "Cambodia", "name_long": "Cambodia", "brk_a3": "KHM", "brk_name": "Cambodia", "abbrev": "Camb.", "postal": "KH", "formal_en": "Kingdom of Cambodia", "name_sort": "Cambodia", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 5, "pop_est": 14494293, "gdp_md_est": 27940, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KH", "iso_a3": "KHM", "iso_n3": "116", "un_a3": "116", "wb_a2": "KH", "wb_a3": "KHM", "woe_id": -99, "adm0_a3_is": "KHM", "adm0_a3_us": "KHM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.495972, 14.572951 ], [ 107.380371, 14.203151 ], [ 107.613831, 13.536530 ], [ 107.490234, 12.337319 ], [ 105.809326, 11.568835 ], [ 106.092224, 11.178402 ], [ 106.248779, 10.962764 ], [ 103.238525, 10.962764 ], [ 103.090210, 11.154151 ], [ 103.076477, 11.178402 ], [ 102.584839, 12.187019 ], [ 102.345886, 13.394963 ], [ 102.985840, 14.227113 ], [ 104.279480, 14.418720 ], [ 105.216064, 14.275030 ], [ 106.042786, 13.883412 ], [ 106.495972, 14.572951 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 112.719727, 32.138409 ], [ 112.719727, 21.866597 ], [ 112.368164, 21.739091 ], [ 107.325439, 21.739091 ], [ 107.042542, 21.813058 ], [ 106.888733, 21.943046 ], [ 106.564636, 22.220463 ], [ 106.723938, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.328674, 23.352343 ], [ 104.474487, 22.819226 ], [ 103.502197, 22.705255 ], [ 102.705688, 22.710323 ], [ 102.170105, 22.466878 ], [ 101.651001, 22.319589 ], [ 101.700439, 21.943046 ], [ 101.727905, 21.739091 ], [ 101.156616, 21.739091 ], [ 101.148376, 21.851302 ], [ 101.030273, 21.802858 ], [ 101.030273, 32.138409 ], [ 112.719727, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.148376, 21.851302 ], [ 101.156616, 21.739091 ], [ 101.030273, 21.739091 ], [ 101.030273, 21.802858 ], [ 101.148376, 21.851302 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Laos", "sov_a3": "LAO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Laos", "adm0_a3": "LAO", "geou_dif": 0, "geounit": "Laos", "gu_a3": "LAO", "su_dif": 0, "subunit": "Laos", "su_a3": "LAO", "brk_diff": 0, "name": "Lao PDR", "name_long": "Lao PDR", "brk_a3": "LAO", "brk_name": "Laos", "abbrev": "Laos", "postal": "LA", "formal_en": "Lao People's Democratic Republic", "name_sort": "Lao PDR", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 6834942, "gdp_md_est": 13980, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LA", "iso_a3": "LAO", "iso_n3": "418", "un_a3": "418", "wb_a2": "LA", "wb_a3": "LAO", "woe_id": -99, "adm0_a3_is": "LAO", "adm0_a3_us": "LAO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.170105, 22.466878 ], [ 102.554626, 21.943046 ], [ 102.705688, 21.739091 ], [ 101.727905, 21.739091 ], [ 101.700439, 21.943046 ], [ 101.651001, 22.319589 ], [ 102.170105, 22.466878 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Vietnam", "sov_a3": "VNM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vietnam", "adm0_a3": "VNM", "geou_dif": 0, "geounit": "Vietnam", "gu_a3": "VNM", "su_dif": 0, "subunit": "Vietnam", "su_a3": "VNM", "brk_diff": 0, "name": "Vietnam", "name_long": "Vietnam", "brk_a3": "VNM", "brk_name": "Vietnam", "abbrev": "Viet.", "postal": "VN", "formal_en": "Socialist Republic of Vietnam", "name_sort": "Vietnam", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 86967524, "gdp_md_est": 241700, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VN", "iso_a3": "VNM", "iso_n3": "704", "un_a3": "704", "wb_a2": "VN", "wb_a3": "VNM", "woe_id": -99, "adm0_a3_is": "VNM", "adm0_a3_us": "VNM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.328674, 23.352343 ], [ 105.809326, 22.978624 ], [ 106.723938, 22.796439 ], [ 106.564636, 22.220463 ], [ 106.888733, 21.943046 ], [ 107.042542, 21.813058 ], [ 107.325439, 21.739091 ], [ 102.705688, 21.739091 ], [ 102.554626, 21.943046 ], [ 102.170105, 22.466878 ], [ 102.705688, 22.710323 ], [ 103.502197, 22.705255 ], [ 104.474487, 22.819226 ], [ 105.328674, 23.352343 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 112.719727, 41.145570 ], [ 112.719727, 31.765537 ], [ 101.030273, 31.765537 ], [ 101.030273, 41.145570 ], [ 112.719727, 41.145570 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.719727, 49.066668 ], [ 112.719727, 44.957024 ], [ 112.500000, 44.999767 ], [ 112.434082, 45.013360 ], [ 111.871033, 45.102608 ], [ 111.346436, 44.459270 ], [ 111.665039, 44.073774 ], [ 111.827087, 43.743321 ], [ 111.129456, 43.407043 ], [ 110.409851, 42.871938 ], [ 109.242554, 42.520700 ], [ 107.742920, 42.482226 ], [ 106.127930, 42.134895 ], [ 104.963379, 41.599013 ], [ 104.521179, 41.908409 ], [ 103.309937, 41.908409 ], [ 101.832275, 42.516651 ], [ 101.250000, 42.603642 ], [ 101.030273, 42.638000 ], [ 101.030273, 49.066668 ], [ 112.719727, 49.066668 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 111.871033, 45.102608 ], [ 112.434082, 45.013360 ], [ 112.500000, 44.999767 ], [ 112.719727, 44.957024 ], [ 112.719727, 40.813809 ], [ 101.030273, 40.813809 ], [ 101.030273, 42.638000 ], [ 101.250000, 42.603642 ], [ 101.832275, 42.516651 ], [ 103.309937, 41.908409 ], [ 104.521179, 41.908409 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.134895 ], [ 107.742920, 42.482226 ], [ 109.242554, 42.520700 ], [ 110.409851, 42.871938 ], [ 111.129456, 43.407043 ], [ 111.827087, 43.743321 ], [ 111.665039, 44.073774 ], [ 111.346436, 44.459270 ], [ 111.871033, 45.102608 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 112.719727, 55.899956 ], [ 112.719727, 49.521643 ], [ 112.500000, 49.494891 ], [ 111.579895, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.294680 ], [ 108.473511, 49.283932 ], [ 107.866516, 49.795450 ], [ 106.888733, 50.275299 ], [ 105.886230, 50.406767 ], [ 104.620056, 50.277054 ], [ 103.675232, 50.090631 ], [ 102.255249, 50.511680 ], [ 102.062988, 51.260196 ], [ 101.250000, 51.438601 ], [ 101.030273, 51.486514 ], [ 101.030273, 55.899956 ], [ 112.719727, 55.899956 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.030273, 51.486514 ], [ 101.250000, 51.438601 ], [ 102.062988, 51.260196 ], [ 102.255249, 50.511680 ], [ 103.675232, 50.090631 ], [ 104.620056, 50.277054 ], [ 105.886230, 50.406767 ], [ 106.888733, 50.275299 ], [ 107.866516, 49.795450 ], [ 108.473511, 49.283932 ], [ 109.401855, 49.294680 ], [ 110.659790, 49.131408 ], [ 111.579895, 49.378797 ], [ 112.500000, 49.494891 ], [ 112.719727, 49.521643 ], [ 112.719727, 48.777913 ], [ 101.030273, 48.777913 ], [ 101.030273, 51.486514 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 112.719727, 61.710706 ], [ 112.719727, 55.652798 ], [ 101.030273, 55.652798 ], [ 101.030273, 61.710706 ], [ 112.719727, 61.710706 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 112.719727, 66.600676 ], [ 112.719727, 61.501734 ], [ 101.030273, 61.501734 ], [ 101.030273, 66.600676 ], [ 112.719727, 66.600676 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 112.719727, 70.685421 ], [ 112.719727, 66.425537 ], [ 101.030273, 66.425537 ], [ 101.030273, 70.685421 ], [ 112.719727, 70.685421 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 110.286255, 74.079925 ], [ 110.637817, 74.040702 ], [ 110.758667, 74.019543 ], [ 112.118225, 73.788054 ], [ 112.500000, 73.868376 ], [ 112.719727, 73.914861 ], [ 112.719727, 70.539543 ], [ 101.030273, 70.539543 ], [ 101.030273, 74.079925 ], [ 110.286255, 74.079925 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 107.015076, 76.890745 ], [ 107.042542, 76.840816 ], [ 107.237549, 76.480268 ], [ 108.152161, 76.723377 ], [ 111.074524, 76.710125 ], [ 112.500000, 76.404292 ], [ 112.719727, 76.356432 ], [ 112.719727, 75.019856 ], [ 112.500000, 74.974352 ], [ 110.148926, 74.477314 ], [ 109.399109, 74.180566 ], [ 110.637817, 74.040702 ], [ 110.758667, 74.019543 ], [ 111.115723, 73.958939 ], [ 101.030273, 73.958939 ], [ 101.030273, 76.854565 ], [ 101.033020, 76.862059 ], [ 101.098938, 76.890745 ], [ 107.015076, 76.890745 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 104.350891, 77.698138 ], [ 106.064758, 77.373904 ], [ 104.702454, 77.127825 ], [ 106.968384, 76.974579 ], [ 107.042542, 76.840816 ], [ 107.070007, 76.790701 ], [ 101.030273, 76.790701 ], [ 101.030273, 76.854565 ], [ 101.033020, 76.862059 ], [ 101.250000, 76.959094 ], [ 101.988831, 77.287763 ], [ 104.350891, 77.698138 ] ] ], [ [ [ 103.150635, 79.212538 ], [ 103.337402, 79.171335 ], [ 105.369873, 78.713629 ], [ 105.073242, 78.307182 ], [ 101.250000, 78.046640 ], [ 101.030273, 78.031271 ], [ 101.030273, 79.073895 ], [ 101.230774, 79.212538 ], [ 103.150635, 79.212538 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 102.084961, 79.346904 ], [ 102.837524, 79.281717 ], [ 103.337402, 79.171335 ], [ 103.524170, 79.129976 ], [ 101.109924, 79.129976 ], [ 101.250000, 79.224355 ], [ 101.263733, 79.234107 ], [ 102.084961, 79.346904 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 123.969727, -83.956169 ], [ 123.969727, -85.070048 ], [ 112.280273, -85.070048 ], [ 112.280273, -83.956169 ], [ 123.969727, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 123.969727, -82.648222 ], [ 123.969727, -84.002262 ], [ 112.280273, -84.002262 ], [ 112.280273, -82.648222 ], [ 123.969727, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 123.969727, -81.059130 ], [ 123.969727, -82.704241 ], [ 112.280273, -82.704241 ], [ 112.280273, -81.059130 ], [ 123.969727, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 123.969727, -79.129976 ], [ 123.969727, -81.127169 ], [ 112.280273, -81.127169 ], [ 112.280273, -79.129976 ], [ 123.969727, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 123.969727, -76.790701 ], [ 123.969727, -79.212538 ], [ 112.280273, -79.212538 ], [ 112.280273, -76.790701 ], [ 123.969727, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 123.969727, -73.958939 ], [ 123.969727, -76.890745 ], [ 112.280273, -76.890745 ], [ 112.280273, -73.958939 ], [ 123.969727, -73.958939 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 123.969727, -70.539543 ], [ 123.969727, -74.079925 ], [ 112.280273, -74.079925 ], [ 112.280273, -70.539543 ], [ 123.969727, -70.539543 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 24 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 114.982910, -66.425537 ], [ 115.180664, -66.513260 ], [ 115.600891, -66.699737 ], [ 116.696777, -66.660596 ], [ 117.383423, -66.914988 ], [ 118.578186, -67.169955 ], [ 119.830627, -67.267798 ], [ 120.868835, -67.189129 ], [ 121.654358, -66.875109 ], [ 122.319031, -66.562469 ], [ 122.887573, -66.513260 ], [ 123.219910, -66.483688 ], [ 123.409424, -66.513260 ], [ 123.750000, -66.564654 ], [ 123.969727, -66.597403 ], [ 123.969727, -70.685421 ], [ 112.280273, -70.685421 ], [ 112.280273, -66.425537 ], [ 114.982910, -66.425537 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 23 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 113.604126, -65.875847 ], [ 114.386902, -66.072660 ], [ 114.895020, -66.385961 ], [ 115.180664, -66.513260 ], [ 115.378418, -66.600676 ], [ 112.280273, -66.600676 ], [ 112.280273, -66.112731 ], [ 112.500000, -66.104945 ], [ 112.859802, -66.091591 ], [ 113.604126, -65.875847 ] ] ], [ [ [ 123.409424, -66.513260 ], [ 123.969727, -66.597403 ], [ 123.969727, -66.600676 ], [ 122.239380, -66.600676 ], [ 122.319031, -66.562469 ], [ 122.887573, -66.513260 ], [ 123.219910, -66.483688 ], [ 123.409424, -66.513260 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 19 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.969727, -31.765537 ], [ 123.969727, -33.548262 ], [ 123.750000, -33.790561 ], [ 123.659363, -33.888658 ], [ 122.810669, -33.913734 ], [ 122.181702, -34.002581 ], [ 121.297302, -33.820230 ], [ 120.577698, -33.929688 ], [ 119.891052, -33.975253 ], [ 119.297791, -34.508820 ], [ 119.006653, -34.463542 ], [ 118.504028, -34.746126 ], [ 118.023376, -35.063725 ], [ 117.292786, -35.023249 ], [ 116.622620, -35.023249 ], [ 115.562439, -34.384246 ], [ 115.024109, -34.195901 ], [ 115.046082, -33.621481 ], [ 115.543213, -33.486435 ], [ 115.713501, -33.259360 ], [ 115.677795, -32.900344 ], [ 115.801392, -32.203505 ], [ 115.751953, -31.952162 ], [ 115.716248, -31.765537 ], [ 123.969727, -31.765537 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 18 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.969727, -21.739091 ], [ 123.969727, -32.138409 ], [ 115.787659, -32.138409 ], [ 115.751953, -31.952162 ], [ 115.688782, -31.611288 ], [ 115.158691, -30.600094 ], [ 114.996643, -30.028678 ], [ 115.037842, -29.458731 ], [ 114.639587, -28.808580 ], [ 114.614868, -28.514556 ], [ 114.172668, -28.118016 ], [ 114.046326, -27.332735 ], [ 113.475037, -26.541851 ], [ 113.337708, -26.115986 ], [ 113.777161, -26.546766 ], [ 113.439331, -25.619239 ], [ 113.936462, -25.911115 ], [ 114.230347, -26.298340 ], [ 114.213867, -25.785053 ], [ 113.719482, -24.998505 ], [ 113.623352, -24.681961 ], [ 113.392639, -24.384626 ], [ 113.499756, -23.805450 ], [ 113.705750, -23.558952 ], [ 113.843079, -23.059516 ], [ 113.735962, -22.474493 ], [ 114.040833, -21.943046 ], [ 114.147949, -21.754398 ], [ 114.167175, -21.943046 ], [ 114.224854, -22.515094 ], [ 114.576416, -21.943046 ], [ 114.645081, -21.828357 ], [ 114.867554, -21.739091 ], [ 123.969727, -21.739091 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 17 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.147949, -21.754398 ], [ 114.167175, -21.943046 ], [ 114.186401, -22.146708 ], [ 113.925476, -22.146708 ], [ 114.040833, -21.943046 ], [ 114.147949, -21.754398 ] ] ], [ [ [ 123.969727, -16.185662 ], [ 123.969727, -22.146708 ], [ 114.452820, -22.146708 ], [ 114.576416, -21.943046 ], [ 114.645081, -21.828357 ], [ 115.458069, -21.493964 ], [ 115.946960, -21.066560 ], [ 116.710510, -20.699600 ], [ 117.163696, -20.622502 ], [ 117.441101, -20.745840 ], [ 118.229370, -20.372952 ], [ 118.833618, -20.262197 ], [ 118.987427, -20.043031 ], [ 119.251099, -19.952696 ], [ 119.803162, -19.975930 ], [ 120.855103, -19.681384 ], [ 121.398926, -19.238550 ], [ 121.654358, -18.703489 ], [ 122.239380, -18.195434 ], [ 122.286072, -17.798381 ], [ 122.310791, -17.253613 ], [ 123.011169, -16.404470 ], [ 123.431396, -17.266728 ], [ 123.750000, -17.119793 ], [ 123.857117, -17.067287 ], [ 123.750000, -16.922822 ], [ 123.502808, -16.594081 ], [ 123.750000, -16.214675 ], [ 123.815918, -16.109153 ], [ 123.969727, -16.185662 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 16 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 123.969727, -9.302728 ], [ 123.969727, -10.258168 ], [ 123.750000, -10.314919 ], [ 123.579712, -10.358151 ], [ 123.458862, -10.239249 ], [ 123.549500, -9.898510 ], [ 123.750000, -9.614290 ], [ 123.969727, -9.302728 ] ] ], [ [ [ 119.899292, -9.359643 ], [ 120.423889, -9.665738 ], [ 120.775452, -9.968851 ], [ 120.715027, -10.239249 ], [ 120.294800, -10.258168 ], [ 118.965454, -9.557417 ], [ 119.899292, -9.359643 ] ] ], [ [ [ 117.899780, -8.094581 ], [ 118.259583, -8.360975 ], [ 118.877563, -8.279445 ], [ 119.124756, -8.703214 ], [ 117.968445, -8.904067 ], [ 117.276306, -9.039715 ], [ 116.737976, -9.031578 ], [ 117.081299, -8.456072 ], [ 117.630615, -8.447922 ], [ 117.899780, -8.094581 ] ] ], [ [ [ 122.901306, -8.091862 ], [ 122.755737, -8.648911 ], [ 121.253357, -8.931200 ], [ 119.924011, -8.809082 ], [ 119.918518, -8.442488 ], [ 120.715027, -8.235955 ], [ 121.341248, -8.534849 ], [ 122.005920, -8.458789 ], [ 122.901306, -8.091862 ] ] ], [ [ [ 112.280273, -6.858259 ], [ 112.500000, -6.915521 ], [ 112.612610, -6.945512 ], [ 112.977905, -7.593940 ], [ 114.477539, -7.776309 ], [ 115.705261, -8.369127 ], [ 114.562683, -8.749366 ], [ 113.464050, -8.347388 ], [ 112.557678, -8.374562 ], [ 112.500000, -8.371845 ], [ 112.280273, -8.355540 ], [ 112.280273, -6.858259 ] ] ], [ [ [ 120.179443, 0.219726 ], [ 120.138245, 0.000000 ], [ 120.039368, -0.519097 ], [ 120.934753, -1.408855 ], [ 121.473083, -0.955766 ], [ 123.338013, -0.615223 ], [ 123.258362, -1.073851 ], [ 122.821655, -0.928304 ], [ 122.387695, -1.515936 ], [ 121.506042, -1.903031 ], [ 122.453613, -3.184394 ], [ 122.269592, -3.527128 ], [ 123.170471, -4.683192 ], [ 123.162231, -5.339848 ], [ 122.626648, -5.632386 ], [ 122.233887, -5.282418 ], [ 122.717285, -4.464165 ], [ 121.736755, -4.850154 ], [ 121.486816, -4.573687 ], [ 121.618652, -4.187551 ], [ 120.896301, -3.601142 ], [ 120.970459, -2.627558 ], [ 120.303040, -2.929326 ], [ 120.388184, -4.097151 ], [ 120.429382, -5.525777 ], [ 119.794922, -5.673384 ], [ 119.366455, -5.378132 ], [ 119.652100, -4.458689 ], [ 119.498291, -3.494231 ], [ 119.078064, -3.486006 ], [ 118.767700, -2.800398 ], [ 119.179688, -2.144580 ], [ 119.322510, -1.351193 ], [ 119.825134, 0.156555 ], [ 119.858093, 0.219726 ], [ 120.179443, 0.219726 ] ] ], [ [ [ 117.534485, 0.219726 ], [ 117.476807, 0.104370 ], [ 117.482300, 0.000000 ], [ 117.520752, -0.801976 ], [ 116.559448, -1.485734 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.012220 ], [ 115.999146, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.494231 ], [ 113.755188, -3.436658 ], [ 113.255310, -3.118576 ], [ 112.500000, -3.346180 ], [ 112.280273, -3.411983 ], [ 112.280273, 0.219726 ], [ 117.534485, 0.219726 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.127991, 6.929153 ], [ 117.641602, 6.424484 ], [ 117.688293, 5.987607 ], [ 118.347473, 5.708914 ], [ 119.179688, 5.408211 ], [ 119.108276, 5.017075 ], [ 118.438110, 4.967824 ], [ 118.616638, 4.480595 ], [ 117.880554, 4.138243 ], [ 117.012634, 4.308069 ], [ 115.864563, 4.308069 ], [ 115.518494, 3.170683 ], [ 115.133972, 2.822344 ], [ 114.620361, 1.430820 ], [ 113.804626, 1.219390 ], [ 112.859802, 1.499463 ], [ 112.500000, 1.433566 ], [ 112.379150, 1.411600 ], [ 112.280273, 1.323735 ], [ 112.280273, 2.973213 ], [ 112.500000, 3.014356 ], [ 112.994385, 3.104864 ], [ 113.711243, 3.894398 ], [ 114.202881, 4.527142 ], [ 114.658813, 4.009480 ], [ 114.867554, 4.349150 ], [ 115.345459, 4.319024 ], [ 115.449829, 5.449225 ], [ 116.218872, 6.143286 ], [ 116.724243, 6.926427 ], [ 117.127991, 6.929153 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Philippines", "sov_a3": "PHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Philippines", "adm0_a3": "PHL", "geou_dif": 0, "geounit": "Philippines", "gu_a3": "PHL", "su_dif": 0, "subunit": "Philippines", "su_a3": "PHL", "brk_diff": 0, "name": "Philippines", "name_long": "Philippines", "brk_a3": "PHL", "brk_name": "Philippines", "abbrev": "Phil.", "postal": "PH", "formal_en": "Republic of the Philippines", "name_sort": "Philippines", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 97976603, "gdp_md_est": 317500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PH", "iso_a3": "PHL", "iso_n3": "608", "un_a3": "608", "wb_a2": "PH", "wb_a3": "PHL", "woe_id": -99, "adm0_a3_is": "PHL", "adm0_a3_us": "PHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 123.969727, 7.566715 ], [ 123.750000, 7.730043 ], [ 123.609924, 7.836173 ], [ 123.294067, 7.419666 ], [ 122.824402, 7.457794 ], [ 122.082825, 6.901887 ], [ 121.918030, 7.193551 ], [ 122.310791, 8.037473 ], [ 122.939758, 8.317495 ], [ 123.486328, 8.695069 ], [ 123.750000, 8.358258 ], [ 123.840637, 8.241392 ], [ 123.969727, 8.287599 ], [ 123.969727, 7.566715 ] ] ], [ [ [ 119.509277, 11.372339 ], [ 119.553223, 11.178402 ], [ 119.687805, 10.555322 ], [ 119.028625, 10.004015 ], [ 118.504028, 9.318990 ], [ 117.171936, 8.369127 ], [ 117.663574, 9.069551 ], [ 118.385925, 9.684691 ], [ 118.984680, 10.377064 ], [ 119.410400, 11.178402 ], [ 119.509277, 11.372339 ] ] ], [ [ [ 123.969727, 11.092166 ], [ 123.969727, 10.268979 ], [ 123.750000, 10.066220 ], [ 123.620911, 9.952620 ], [ 123.307800, 9.318990 ], [ 122.994690, 9.023440 ], [ 122.379456, 9.714472 ], [ 122.585449, 9.982376 ], [ 122.835388, 10.263573 ], [ 122.945251, 10.884557 ], [ 123.497314, 10.941192 ], [ 123.335266, 10.268979 ], [ 123.750000, 10.806328 ], [ 123.969727, 11.092166 ] ] ], [ [ [ 123.110046, 11.393879 ], [ 123.099060, 11.178402 ], [ 123.099060, 11.167624 ], [ 122.637634, 10.741572 ], [ 122.000427, 10.441897 ], [ 121.964722, 10.906133 ], [ 122.003174, 11.178402 ], [ 122.033386, 11.393879 ], [ 123.110046, 11.393879 ] ] ], [ [ [ 123.969727, 6.934606 ], [ 123.969727, 6.806444 ], [ 123.936768, 6.885527 ], [ 123.969727, 6.934606 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Brunei", "sov_a3": "BRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brunei", "adm0_a3": "BRN", "geou_dif": 0, "geounit": "Brunei", "gu_a3": "BRN", "su_dif": 0, "subunit": "Brunei", "su_a3": "BRN", "brk_diff": 0, "name": "Brunei", "name_long": "Brunei Darussalam", "brk_a3": "BRN", "brk_name": "Brunei", "abbrev": "Brunei", "postal": "BN", "formal_en": "Negara Brunei Darussalam", "name_sort": "Brunei", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 12, "pop_est": 388190, "gdp_md_est": 20250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BN", "iso_a3": "BRN", "iso_n3": "096", "un_a3": "096", "wb_a2": "BN", "wb_a3": "BRN", "woe_id": -99, "adm0_a3_is": "BRN", "adm0_a3_us": "BRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 17, "abbrev_len": 6, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.449829, 5.449225 ], [ 115.345459, 4.319024 ], [ 114.867554, 4.349150 ], [ 114.658813, 4.009480 ], [ 114.202881, 4.527142 ], [ 114.598389, 4.902150 ], [ 115.449829, 5.449225 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 120.885315, 1.310005 ], [ 121.665344, 1.016182 ], [ 122.926025, 0.876126 ], [ 123.750000, 0.906334 ], [ 123.969727, 0.914573 ], [ 123.969727, 0.310362 ], [ 123.750000, 0.252685 ], [ 123.684082, 0.236205 ], [ 122.722778, 0.431209 ], [ 121.055603, 0.381772 ], [ 120.182190, 0.238952 ], [ 120.138245, 0.000000 ], [ 120.097046, -0.219726 ], [ 119.698792, -0.219726 ], [ 119.772949, 0.000000 ], [ 119.825134, 0.156555 ], [ 120.033875, 0.568533 ], [ 120.885315, 1.310005 ] ] ], [ [ [ 117.012634, 4.308069 ], [ 117.880554, 4.138243 ], [ 117.312012, 3.236498 ], [ 118.048096, 2.290039 ], [ 117.875061, 1.828913 ], [ 118.995667, 0.903588 ], [ 117.809143, 0.785498 ], [ 117.476807, 0.104370 ], [ 117.482300, 0.000000 ], [ 117.493286, -0.219726 ], [ 112.280273, -0.219726 ], [ 112.280273, 1.323735 ], [ 112.379150, 1.411600 ], [ 112.500000, 1.433566 ], [ 112.859802, 1.499463 ], [ 113.804626, 1.219390 ], [ 114.620361, 1.430820 ], [ 115.133972, 2.822344 ], [ 115.518494, 3.170683 ], [ 115.864563, 4.308069 ], [ 117.012634, 4.308069 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 113.348694, 22.146708 ], [ 113.238831, 22.052550 ], [ 112.936707, 21.943046 ], [ 112.500000, 21.787557 ], [ 112.280273, 21.708473 ], [ 112.280273, 22.146708 ], [ 113.348694, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Taiwan", "sov_a3": "TWN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Taiwan", "adm0_a3": "TWN", "geou_dif": 0, "geounit": "Taiwan", "gu_a3": "TWN", "su_dif": 0, "subunit": "Taiwan", "su_a3": "TWN", "brk_diff": 1, "name": "Taiwan", "name_long": "Taiwan", "brk_a3": "B77", "brk_name": "Taiwan", "abbrev": "Taiwan", "postal": "TW", "note_brk": "Self admin.; Claimed by China", "name_sort": "Taiwan", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 22974347, "gdp_md_est": 712000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TW", "iso_a3": "TWN", "iso_n3": "158", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "TWN", "adm0_a3_us": "TWN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 120.838623, 22.146708 ], [ 120.745239, 21.971066 ], [ 120.635376, 22.146708 ], [ 120.838623, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Philippines", "sov_a3": "PHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Philippines", "adm0_a3": "PHL", "geou_dif": 0, "geounit": "Philippines", "gu_a3": "PHL", "su_dif": 0, "subunit": "Philippines", "su_a3": "PHL", "brk_diff": 0, "name": "Philippines", "name_long": "Philippines", "brk_a3": "PHL", "brk_name": "Philippines", "abbrev": "Phil.", "postal": "PH", "formal_en": "Republic of the Philippines", "name_sort": "Philippines", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 97976603, "gdp_md_est": 317500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PH", "iso_a3": "PHL", "iso_n3": "608", "un_a3": "608", "wb_a2": "PH", "wb_a3": "PHL", "woe_id": -99, "adm0_a3_is": "PHL", "adm0_a3_us": "PHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 123.969727, 11.092166 ], [ 123.969727, 10.962764 ], [ 123.868103, 10.962764 ], [ 123.969727, 11.092166 ] ] ], [ [ [ 119.509277, 11.372339 ], [ 119.553223, 11.178402 ], [ 119.599915, 10.962764 ], [ 119.295044, 10.962764 ], [ 119.410400, 11.178402 ], [ 119.509277, 11.372339 ] ] ], [ [ [ 121.882324, 11.894228 ], [ 122.481079, 11.582288 ], [ 123.118286, 11.584979 ], [ 123.099060, 11.178402 ], [ 123.099060, 11.167624 ], [ 122.876587, 10.962764 ], [ 121.972961, 10.962764 ], [ 122.003174, 11.178402 ], [ 122.036133, 11.418110 ], [ 121.882324, 11.894228 ] ] ], [ [ [ 120.322266, 13.467093 ], [ 121.179199, 13.432367 ], [ 121.525269, 13.071452 ], [ 121.261597, 12.205811 ], [ 120.833130, 12.704651 ], [ 120.322266, 13.467093 ] ] ], [ [ [ 121.319275, 18.505657 ], [ 121.937256, 18.218916 ], [ 122.244873, 18.479609 ], [ 122.335510, 18.226743 ], [ 122.173462, 17.811456 ], [ 122.514038, 17.093542 ], [ 122.250366, 16.264777 ], [ 121.662598, 15.932279 ], [ 121.503296, 15.125159 ], [ 121.728516, 14.330921 ], [ 122.258606, 14.219126 ], [ 122.700806, 14.338904 ], [ 123.750000, 13.872747 ], [ 123.947754, 13.784737 ], [ 123.854370, 13.239945 ], [ 123.969727, 13.154376 ], [ 123.969727, 12.605496 ], [ 123.750000, 12.744837 ], [ 123.296814, 13.028642 ], [ 122.926025, 13.555222 ], [ 122.670593, 13.186468 ], [ 122.033386, 13.784737 ], [ 121.124268, 13.637980 ], [ 120.627136, 13.859414 ], [ 120.679321, 14.272369 ], [ 120.989685, 14.527756 ], [ 120.693054, 14.758947 ], [ 120.563965, 14.397439 ], [ 120.069580, 14.971320 ], [ 119.918518, 15.408672 ], [ 119.882812, 16.364945 ], [ 120.283813, 16.035255 ], [ 120.388184, 17.599521 ], [ 120.715027, 18.505657 ], [ 121.319275, 18.505657 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 121.514282, 32.138409 ], [ 121.676331, 31.952162 ], [ 121.907043, 31.693119 ], [ 121.890564, 30.951702 ], [ 121.261597, 30.678078 ], [ 121.503296, 30.145127 ], [ 122.091064, 29.833496 ], [ 121.937256, 29.020150 ], [ 121.681824, 28.226970 ], [ 121.124268, 28.137394 ], [ 120.393677, 27.054234 ], [ 119.583435, 25.743003 ], [ 118.655090, 24.549622 ], [ 117.279053, 23.626911 ], [ 115.889282, 22.783779 ], [ 114.763184, 22.669779 ], [ 114.150696, 22.225548 ], [ 113.804626, 22.550611 ], [ 113.238831, 22.052550 ], [ 112.936707, 21.943046 ], [ 112.368164, 21.739091 ], [ 112.280273, 21.739091 ], [ 112.280273, 32.138409 ], [ 121.514282, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Taiwan", "sov_a3": "TWN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Taiwan", "adm0_a3": "TWN", "geou_dif": 0, "geounit": "Taiwan", "gu_a3": "TWN", "su_dif": 0, "subunit": "Taiwan", "su_a3": "TWN", "brk_diff": 1, "name": "Taiwan", "name_long": "Taiwan", "brk_a3": "B77", "brk_name": "Taiwan", "abbrev": "Taiwan", "postal": "TW", "note_brk": "Self admin.; Claimed by China", "name_sort": "Taiwan", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 22974347, "gdp_md_est": 712000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TW", "iso_a3": "TWN", "iso_n3": "158", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "TWN", "adm0_a3_us": "TWN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.492310, 25.296854 ], [ 121.950989, 24.998505 ], [ 121.775208, 24.394632 ], [ 121.173706, 22.791375 ], [ 120.745239, 21.971066 ], [ 120.217896, 22.816694 ], [ 120.105286, 23.556434 ], [ 120.693054, 24.539628 ], [ 121.492310, 25.296854 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 123.969727, 41.145570 ], [ 123.969727, 39.867588 ], [ 123.750000, 39.823304 ], [ 122.865601, 39.639538 ], [ 122.129517, 39.170529 ], [ 121.052856, 38.899583 ], [ 121.585693, 39.361909 ], [ 121.374207, 39.751545 ], [ 122.167969, 40.423951 ], [ 121.637878, 40.946714 ], [ 120.767212, 40.595185 ], [ 119.638367, 39.899202 ], [ 119.023132, 39.253525 ], [ 118.042603, 39.204591 ], [ 117.531738, 38.739088 ], [ 118.059082, 38.063230 ], [ 118.877563, 37.898698 ], [ 118.910522, 37.448697 ], [ 119.701538, 37.158128 ], [ 120.822144, 37.870517 ], [ 121.709290, 37.481397 ], [ 122.357483, 37.455238 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.652996 ], [ 120.635376, 36.113471 ], [ 119.663086, 35.610418 ], [ 119.149475, 34.910710 ], [ 120.226135, 34.361576 ], [ 120.618896, 33.378706 ], [ 121.228638, 32.461109 ], [ 121.676331, 31.952162 ], [ 121.841125, 31.765537 ], [ 112.280273, 31.765537 ], [ 112.280273, 41.145570 ], [ 123.969727, 41.145570 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.141968, 49.066668 ], [ 116.040344, 48.922499 ], [ 115.482788, 48.136767 ], [ 115.740967, 47.728240 ], [ 116.306763, 47.853717 ], [ 117.292786, 47.698672 ], [ 118.061829, 48.067068 ], [ 118.863831, 47.748558 ], [ 119.770203, 47.049540 ], [ 119.663086, 46.692783 ], [ 118.872070, 46.805700 ], [ 117.419128, 46.673941 ], [ 116.716003, 46.388622 ], [ 115.982666, 45.727274 ], [ 114.458313, 45.340563 ], [ 113.461304, 44.809122 ], [ 112.500000, 44.999767 ], [ 112.434082, 45.013360 ], [ 112.280273, 45.038597 ], [ 112.280273, 49.066668 ], [ 116.141968, 49.066668 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 123.969727, 49.066668 ], [ 123.969727, 40.813809 ], [ 121.772461, 40.813809 ], [ 121.637878, 40.946714 ], [ 121.311035, 40.813809 ], [ 112.280273, 40.813809 ], [ 112.280273, 45.038597 ], [ 112.500000, 44.999767 ], [ 113.461304, 44.809122 ], [ 114.458313, 45.340563 ], [ 115.982666, 45.727274 ], [ 116.716003, 46.388622 ], [ 117.419128, 46.673941 ], [ 118.872070, 46.805700 ], [ 119.663086, 46.692783 ], [ 119.770203, 47.049540 ], [ 118.863831, 47.748558 ], [ 118.061829, 48.067068 ], [ 117.292786, 47.698672 ], [ 116.306763, 47.853717 ], [ 115.740967, 47.728240 ], [ 115.482788, 48.136767 ], [ 116.040344, 48.922499 ], [ 116.141968, 49.066668 ], [ 123.969727, 49.066668 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 123.969727, 55.899956 ], [ 123.969727, 53.380052 ], [ 123.750000, 53.424264 ], [ 123.568726, 53.460255 ], [ 122.244873, 53.432447 ], [ 121.000671, 53.252069 ], [ 120.176697, 52.754581 ], [ 120.723267, 52.517892 ], [ 120.737000, 51.964577 ], [ 120.179443, 51.643590 ], [ 119.278564, 50.583237 ], [ 119.286804, 50.143466 ], [ 117.877808, 49.512727 ], [ 116.677551, 49.889326 ], [ 115.485535, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.248961 ], [ 112.895508, 49.544816 ], [ 112.500000, 49.494891 ], [ 112.280273, 49.466339 ], [ 112.280273, 55.899956 ], [ 123.969727, 55.899956 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 114.362183, 50.248961 ], [ 114.960938, 50.141706 ], [ 115.485535, 49.806087 ], [ 116.677551, 49.889326 ], [ 116.191406, 49.135003 ], [ 116.040344, 48.922499 ], [ 115.935974, 48.777913 ], [ 112.280273, 48.777913 ], [ 112.280273, 49.466339 ], [ 112.500000, 49.494891 ], [ 112.895508, 49.544816 ], [ 114.362183, 50.248961 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 123.571472, 53.460255 ], [ 123.750000, 53.424264 ], [ 123.969727, 53.380052 ], [ 123.969727, 48.777913 ], [ 115.935974, 48.777913 ], [ 116.040344, 48.922499 ], [ 116.191406, 49.135003 ], [ 116.677551, 49.889326 ], [ 117.877808, 49.512727 ], [ 119.286804, 50.143466 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.643590 ], [ 120.737000, 51.964577 ], [ 120.723267, 52.517892 ], [ 120.176697, 52.754581 ], [ 121.000671, 53.252069 ], [ 122.244873, 53.432447 ], [ 123.571472, 53.460255 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 123.969727, 61.710706 ], [ 123.969727, 55.652798 ], [ 112.280273, 55.652798 ], [ 112.280273, 61.710706 ], [ 123.969727, 61.710706 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 123.969727, 66.600676 ], [ 123.969727, 61.501734 ], [ 112.280273, 61.501734 ], [ 112.280273, 66.600676 ], [ 123.969727, 66.600676 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 123.969727, 70.685421 ], [ 123.969727, 66.425537 ], [ 112.280273, 66.425537 ], [ 112.280273, 70.685421 ], [ 123.969727, 70.685421 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 113.019104, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.753511 ], [ 118.775940, 73.588258 ], [ 119.017639, 73.120161 ], [ 123.197937, 72.971993 ], [ 123.255615, 73.735059 ], [ 123.750000, 73.695009 ], [ 123.969727, 73.677264 ], [ 123.969727, 70.539543 ], [ 112.280273, 70.539543 ], [ 112.280273, 73.821760 ], [ 112.500000, 73.868376 ], [ 113.019104, 73.977144 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 113.032837, 73.958939 ], [ 112.931213, 73.958939 ], [ 113.019104, 73.977144 ], [ 113.032837, 73.958939 ] ] ], [ [ [ 112.280273, 76.451987 ], [ 112.500000, 76.404292 ], [ 113.329468, 76.222329 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.777405, 75.031921 ], [ 112.500000, 74.974352 ], [ 112.280273, 74.927999 ], [ 112.280273, 76.451987 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 135.219727, -83.956169 ], [ 135.219727, -85.070048 ], [ 123.530273, -85.070048 ], [ 123.530273, -83.956169 ], [ 135.219727, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 135.219727, -82.648222 ], [ 135.219727, -84.002262 ], [ 123.530273, -84.002262 ], [ 123.530273, -82.648222 ], [ 135.219727, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 135.219727, -81.059130 ], [ 135.219727, -82.704241 ], [ 123.530273, -82.704241 ], [ 123.530273, -81.059130 ], [ 135.219727, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 135.219727, -79.129976 ], [ 135.219727, -81.127169 ], [ 123.530273, -81.127169 ], [ 123.530273, -79.129976 ], [ 135.219727, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 135.219727, -76.790701 ], [ 135.219727, -79.212538 ], [ 123.530273, -79.212538 ], [ 123.530273, -76.790701 ], [ 135.219727, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 135.219727, -73.958939 ], [ 135.219727, -76.890745 ], [ 123.530273, -76.890745 ], [ 123.530273, -73.958939 ], [ 135.219727, -73.958939 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 135.219727, -70.539543 ], [ 135.219727, -74.079925 ], [ 123.530273, -74.079925 ], [ 123.530273, -70.539543 ], [ 135.219727, -70.539543 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 24 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 135.219727, -66.425537 ], [ 135.219727, -70.685421 ], [ 123.530273, -70.685421 ], [ 123.530273, -66.530768 ], [ 123.750000, -66.564654 ], [ 124.120789, -66.621392 ], [ 125.158997, -66.719285 ], [ 126.098328, -66.562469 ], [ 126.999207, -66.562469 ], [ 127.880859, -66.660596 ], [ 128.800964, -66.758334 ], [ 129.701843, -66.582126 ], [ 130.177002, -66.513260 ], [ 130.778503, -66.425537 ], [ 135.219727, -66.425537 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 23 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 123.530273, -66.530768 ], [ 123.983459, -66.600676 ], [ 123.530273, -66.600676 ], [ 123.530273, -66.530768 ] ] ], [ [ [ 127.342529, -66.600676 ], [ 125.870361, -66.600676 ], [ 126.098328, -66.562469 ], [ 126.999207, -66.562469 ], [ 127.342529, -66.600676 ] ] ], [ [ [ 135.219727, -65.373705 ], [ 135.219727, -66.600676 ], [ 129.608459, -66.600676 ], [ 129.701843, -66.582126 ], [ 130.177002, -66.513260 ], [ 130.781250, -66.424439 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.854675, -66.287851 ], [ 134.755554, -66.209308 ], [ 135.000000, -65.776871 ], [ 135.030212, -65.719335 ], [ 135.068665, -65.308387 ], [ 135.219727, -65.373705 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 19 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.219727, -33.925130 ], [ 135.000000, -33.669497 ], [ 134.612732, -33.222605 ], [ 134.085388, -32.847289 ], [ 134.272156, -32.616243 ], [ 132.989502, -32.010405 ], [ 132.286377, -31.982453 ], [ 132.225952, -31.952162 ], [ 131.857910, -31.765537 ], [ 135.219727, -31.765537 ], [ 135.219727, -33.925130 ] ] ], [ [ [ 128.902588, -31.765537 ], [ 128.226929, -31.952162 ], [ 127.100830, -32.280167 ], [ 126.147766, -32.215125 ], [ 125.087585, -32.727220 ], [ 124.219666, -32.957977 ], [ 124.027405, -33.481854 ], [ 123.750000, -33.790561 ], [ 123.659363, -33.888658 ], [ 123.530273, -33.893217 ], [ 123.530273, -31.765537 ], [ 128.902588, -31.765537 ] ] ], [ [ [ 135.219727, -34.279914 ], [ 135.219727, -34.483920 ], [ 135.205994, -34.477128 ], [ 135.219727, -34.279914 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 18 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.219727, -21.739091 ], [ 135.219727, -32.138409 ], [ 133.258667, -32.138409 ], [ 132.989502, -32.010405 ], [ 132.286377, -31.982453 ], [ 132.225952, -31.952162 ], [ 131.325073, -31.494262 ], [ 129.534302, -31.590234 ], [ 128.226929, -31.952162 ], [ 127.592468, -32.138409 ], [ 123.530273, -32.138409 ], [ 123.530273, -21.739091 ], [ 135.219727, -21.739091 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 17 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 132.355042, -11.127202 ], [ 132.489624, -11.178402 ], [ 133.016968, -11.375031 ], [ 133.549805, -11.784014 ], [ 134.393005, -12.042007 ], [ 134.675903, -11.939914 ], [ 135.000000, -12.098410 ], [ 135.219727, -12.208496 ], [ 135.219727, -22.146708 ], [ 123.530273, -22.146708 ], [ 123.530273, -17.222135 ], [ 123.750000, -17.119793 ], [ 123.857117, -17.067287 ], [ 123.750000, -16.922822 ], [ 123.530273, -16.630929 ], [ 123.530273, -16.554594 ], [ 123.750000, -16.214675 ], [ 123.815918, -16.109153 ], [ 124.258118, -16.325411 ], [ 124.378967, -15.564836 ], [ 124.925537, -15.074776 ], [ 125.167236, -14.679254 ], [ 125.669861, -14.509144 ], [ 125.683594, -14.229776 ], [ 126.123047, -14.346887 ], [ 126.142273, -14.093957 ], [ 126.581726, -13.952727 ], [ 127.065125, -13.816744 ], [ 127.803955, -14.275030 ], [ 128.358765, -14.867814 ], [ 128.984985, -14.875778 ], [ 129.619446, -14.968667 ], [ 129.407959, -14.418720 ], [ 129.888611, -13.616625 ], [ 130.339050, -13.354882 ], [ 130.182495, -13.106230 ], [ 130.616455, -12.535796 ], [ 131.223450, -12.181650 ], [ 131.734314, -12.302435 ], [ 132.574768, -12.111837 ], [ 132.555542, -11.601122 ], [ 131.822205, -11.272693 ], [ 132.173767, -11.178402 ], [ 132.355042, -11.127202 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 16 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.966736, -8.890499 ], [ 125.068359, -9.088536 ], [ 125.087585, -9.392161 ], [ 124.433899, -10.139228 ], [ 123.750000, -10.314919 ], [ 123.579712, -10.358151 ], [ 123.530273, -10.309515 ], [ 123.530273, -9.974261 ], [ 123.549500, -9.898510 ], [ 123.750000, -9.614290 ], [ 123.977966, -9.289175 ], [ 124.966736, -8.890499 ] ] ], [ [ [ 134.497375, -5.443757 ], [ 134.725342, -5.736243 ], [ 134.722595, -6.214282 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.288635, -5.782699 ], [ 134.497375, -5.443757 ] ] ], [ [ [ 132.379761, -0.368039 ], [ 133.983765, -0.780005 ], [ 134.143066, -1.150740 ], [ 134.420471, -2.767478 ], [ 135.000000, -3.102121 ], [ 135.219727, -3.228271 ], [ 135.219727, -4.466904 ], [ 135.162048, -4.461427 ], [ 135.000000, -4.360105 ], [ 133.662415, -3.538093 ], [ 133.365784, -4.023179 ], [ 132.981262, -4.110848 ], [ 132.756042, -3.743671 ], [ 132.753296, -3.310534 ], [ 131.989746, -2.819601 ], [ 133.066406, -2.460181 ], [ 133.777771, -2.479389 ], [ 133.695374, -2.213195 ], [ 132.231445, -2.210450 ], [ 131.835938, -1.614776 ], [ 130.940552, -1.430820 ], [ 130.517578, -0.936543 ], [ 131.866150, -0.694868 ], [ 132.379761, -0.368039 ] ] ], [ [ [ 129.369507, -2.800398 ], [ 130.470886, -3.091151 ], [ 130.833435, -3.856034 ], [ 129.990234, -3.444883 ], [ 129.152527, -3.362631 ], [ 128.589478, -3.428433 ], [ 127.897339, -3.392791 ], [ 128.133545, -2.841547 ], [ 129.369507, -2.800398 ] ] ], [ [ [ 126.999207, -3.126804 ], [ 127.249146, -3.458591 ], [ 126.872864, -3.790262 ], [ 126.183472, -3.606625 ], [ 125.988464, -3.176167 ], [ 126.999207, -3.126804 ] ] ], [ [ [ 128.084106, 0.219726 ], [ 128.029175, 0.000000 ], [ 127.966003, -0.249938 ], [ 128.377991, -0.777259 ], [ 128.097839, -0.898096 ], [ 127.694092, -0.266417 ], [ 127.633667, 0.000000 ], [ 127.581482, 0.219726 ], [ 128.084106, 0.219726 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "East Timor", "sov_a3": "TLS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "East Timor", "adm0_a3": "TLS", "geou_dif": 0, "geounit": "East Timor", "gu_a3": "TLS", "su_dif": 0, "subunit": "East Timor", "su_a3": "TLS", "brk_diff": 0, "name": "Timor-Leste", "name_long": "Timor-Leste", "brk_a3": "TLS", "brk_name": "Timor-Leste", "abbrev": "T.L.", "postal": "TL", "formal_en": "Democratic Republic of Timor-Leste", "name_sort": "Timor-Leste", "name_alt": "East Timor", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1131612, "gdp_md_est": 2520, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "TL", "iso_a3": "TLS", "iso_n3": "626", "un_a3": "626", "wb_a2": "TP", "wb_a3": "TMP", "woe_id": -99, "adm0_a3_is": "TLS", "adm0_a3_us": "TLS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.955261, -8.271291 ], [ 127.334290, -8.396300 ], [ 126.966248, -8.667918 ], [ 125.925293, -9.104809 ], [ 125.087585, -9.392161 ], [ 125.068359, -9.088536 ], [ 124.966736, -8.890499 ], [ 125.084839, -8.654342 ], [ 125.944519, -8.431621 ], [ 126.642151, -8.396300 ], [ 126.955261, -8.271291 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 132.355042, -11.127202 ], [ 132.489624, -11.178402 ], [ 133.016968, -11.375031 ], [ 133.041687, -11.393879 ], [ 132.091370, -11.393879 ], [ 131.822205, -11.272693 ], [ 132.173767, -11.178402 ], [ 132.355042, -11.127202 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Philippines", "sov_a3": "PHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Philippines", "adm0_a3": "PHL", "geou_dif": 0, "geounit": "Philippines", "gu_a3": "PHL", "su_dif": 0, "subunit": "Philippines", "su_a3": "PHL", "brk_diff": 0, "name": "Philippines", "name_long": "Philippines", "brk_a3": "PHL", "brk_name": "Philippines", "abbrev": "Phil.", "postal": "PH", "formal_en": "Republic of the Philippines", "name_sort": "Philippines", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 97976603, "gdp_md_est": 317500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PH", "iso_a3": "PHL", "iso_n3": "608", "un_a3": "608", "wb_a2": "PH", "wb_a3": "PHL", "woe_id": -99, "adm0_a3_is": "PHL", "adm0_a3_us": "PHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.411682, 9.760491 ], [ 126.221924, 9.286465 ], [ 126.304321, 8.784654 ], [ 126.375732, 8.415319 ], [ 126.477356, 7.751816 ], [ 126.535034, 7.190826 ], [ 126.194458, 6.274348 ], [ 125.829163, 7.294363 ], [ 125.362244, 6.787353 ], [ 125.680847, 6.050430 ], [ 125.395203, 5.583184 ], [ 124.219666, 6.162401 ], [ 123.936768, 6.885527 ], [ 124.241638, 7.362467 ], [ 123.750000, 7.730043 ], [ 123.609924, 7.836173 ], [ 123.530273, 7.730043 ], [ 123.530273, 8.640765 ], [ 123.750000, 8.358258 ], [ 123.840637, 8.241392 ], [ 124.601440, 8.515836 ], [ 124.763489, 8.961045 ], [ 125.469360, 8.988175 ], [ 125.411682, 9.760491 ] ] ], [ [ [ 124.076843, 11.234980 ], [ 124.071350, 11.178402 ], [ 123.980713, 10.279789 ], [ 123.750000, 10.066220 ], [ 123.620911, 9.952620 ], [ 123.530273, 9.763198 ], [ 123.530273, 10.520219 ], [ 123.750000, 10.806328 ], [ 124.035645, 11.178402 ], [ 124.076843, 11.234980 ] ] ], [ [ [ 125.694580, 11.393879 ], [ 125.749512, 11.178402 ], [ 125.782471, 11.046343 ], [ 125.397949, 11.178402 ], [ 125.010681, 11.313094 ], [ 125.018921, 11.178402 ], [ 125.032654, 10.976246 ], [ 125.277100, 10.360853 ], [ 124.799194, 10.136524 ], [ 124.757996, 10.838701 ], [ 124.458618, 10.889951 ], [ 124.384460, 11.178402 ], [ 124.326782, 11.393879 ], [ 125.694580, 11.393879 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 127.930298, 2.174771 ], [ 128.001709, 1.631249 ], [ 128.592224, 1.543392 ], [ 128.685608, 1.134264 ], [ 128.633423, 0.260924 ], [ 128.119812, 0.357053 ], [ 128.029175, 0.000000 ], [ 127.974243, -0.219726 ], [ 127.683105, -0.219726 ], [ 127.633667, 0.000000 ], [ 127.397461, 1.013436 ], [ 127.597961, 1.812442 ], [ 127.930298, 2.174771 ] ] ], [ [ [ 125.065613, 1.644977 ], [ 125.238647, 1.419838 ], [ 124.436646, 0.428463 ], [ 123.750000, 0.252685 ], [ 123.684082, 0.236205 ], [ 123.530273, 0.269164 ], [ 123.530273, 0.898096 ], [ 123.750000, 0.906334 ], [ 124.076843, 0.917319 ], [ 125.065613, 1.644977 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Philippines", "sov_a3": "PHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Philippines", "adm0_a3": "PHL", "geou_dif": 0, "geounit": "Philippines", "gu_a3": "PHL", "su_dif": 0, "subunit": "Philippines", "su_a3": "PHL", "brk_diff": 0, "name": "Philippines", "name_long": "Philippines", "brk_a3": "PHL", "brk_name": "Philippines", "abbrev": "Phil.", "postal": "PH", "formal_en": "Republic of the Philippines", "name_sort": "Philippines", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 97976603, "gdp_md_est": 317500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PH", "iso_a3": "PHL", "iso_n3": "608", "un_a3": "608", "wb_a2": "PH", "wb_a3": "PHL", "woe_id": -99, "adm0_a3_is": "PHL", "adm0_a3_us": "PHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.076843, 11.234980 ], [ 124.071350, 11.178402 ], [ 124.049377, 10.962764 ], [ 123.868103, 10.962764 ], [ 124.035645, 11.178402 ], [ 124.076843, 11.234980 ] ] ], [ [ [ 124.266357, 12.559925 ], [ 125.224915, 12.535796 ], [ 125.502319, 12.162856 ], [ 125.749512, 11.178402 ], [ 125.782471, 11.046343 ], [ 125.397949, 11.178402 ], [ 125.010681, 11.313094 ], [ 125.018921, 11.178402 ], [ 125.032654, 10.976246 ], [ 125.035400, 10.962764 ], [ 124.439392, 10.962764 ], [ 124.384460, 11.178402 ], [ 124.302063, 11.496174 ], [ 124.889832, 11.418110 ], [ 124.876099, 11.794769 ], [ 124.266357, 12.559925 ] ] ], [ [ [ 123.530273, 13.968719 ], [ 123.750000, 13.872747 ], [ 123.947754, 13.784737 ], [ 123.854370, 13.239945 ], [ 124.181213, 12.999205 ], [ 124.076843, 12.538478 ], [ 123.750000, 12.744837 ], [ 123.530273, 12.881425 ], [ 123.530273, 13.968719 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "name_sort": "Japan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "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": "Polygon", "coordinates": [ [ [ 131.599731, 32.138409 ], [ 131.528320, 31.952162 ], [ 131.330566, 31.452096 ], [ 130.685120, 31.031755 ], [ 130.201721, 31.419288 ], [ 130.347290, 31.952162 ], [ 130.396729, 32.138409 ], [ 131.599731, 32.138409 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 126.216431, 41.145570 ], [ 126.180725, 41.108330 ], [ 125.919800, 40.979898 ], [ 125.079346, 40.570154 ], [ 124.263611, 39.928695 ], [ 123.750000, 39.823304 ], [ 123.530273, 39.776880 ], [ 123.530273, 41.145570 ], [ 126.216431, 41.145570 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "North Korea", "sov_a3": "PRK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "North Korea", "adm0_a3": "PRK", "geou_dif": 0, "geounit": "North Korea", "gu_a3": "PRK", "su_dif": 0, "subunit": "North Korea", "su_a3": "PRK", "brk_diff": 0, "name": "Dem. Rep. Korea", "name_long": "Dem. Rep. Korea", "brk_a3": "PRK", "brk_name": "Dem. Rep. Korea", "abbrev": "N.K.", "postal": "KP", "formal_en": "Democratic People's Republic of Korea", "name_sort": "Korea, Dem. Rep.", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 22665345, "gdp_md_est": 40000, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KP", "iso_a3": "PRK", "iso_n3": "408", "un_a3": "408", "wb_a2": "KP", "wb_a3": "PRK", "woe_id": -99, "adm0_a3_is": "PRK", "adm0_a3_us": "PRK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 15, "long_len": 15, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.690857, 41.145570 ], [ 129.699097, 40.979898 ], [ 129.704590, 40.884448 ], [ 129.185486, 40.661889 ], [ 129.009705, 40.486649 ], [ 128.630676, 40.191463 ], [ 127.966003, 40.025511 ], [ 127.532043, 39.757880 ], [ 127.501831, 39.325799 ], [ 127.383728, 39.215231 ], [ 127.781982, 39.051185 ], [ 128.347778, 38.612578 ], [ 128.204956, 38.371809 ], [ 127.779236, 38.305025 ], [ 127.070618, 38.257593 ], [ 126.683350, 37.805444 ], [ 126.235657, 37.842326 ], [ 126.172485, 37.751172 ], [ 125.689087, 37.942031 ], [ 125.568237, 37.753344 ], [ 125.274353, 37.670777 ], [ 125.238647, 37.857507 ], [ 124.980469, 37.950695 ], [ 124.711304, 38.108628 ], [ 124.985962, 38.550313 ], [ 125.219421, 38.666212 ], [ 125.131531, 38.850403 ], [ 125.384216, 39.389509 ], [ 125.321045, 39.552765 ], [ 124.736023, 39.660685 ], [ 124.263611, 39.928695 ], [ 125.079346, 40.570154 ], [ 125.919800, 40.979898 ], [ 126.180725, 41.108330 ], [ 126.216431, 41.145570 ], [ 129.690857, 41.145570 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Korea", "sov_a3": "KOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Korea", "adm0_a3": "KOR", "geou_dif": 0, "geounit": "South Korea", "gu_a3": "KOR", "su_dif": 0, "subunit": "South Korea", "su_a3": "KOR", "brk_diff": 0, "name": "Korea", "name_long": "Republic of Korea", "brk_a3": "KOR", "brk_name": "Republic of Korea", "abbrev": "S.K.", "postal": "KR", "formal_en": "Republic of Korea", "name_sort": "Korea, Rep.", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 48508972, "gdp_md_est": 1335000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "KR", "iso_a3": "KOR", "iso_n3": "410", "un_a3": "410", "wb_a2": "KR", "wb_a3": "KOR", "woe_id": -99, "adm0_a3_is": "KOR", "adm0_a3_us": "KOR", "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": 17, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.347778, 38.612578 ], [ 129.210205, 37.433431 ], [ 129.460144, 36.785092 ], [ 129.465637, 35.632744 ], [ 129.089355, 35.083956 ], [ 128.185730, 34.890437 ], [ 127.386475, 34.477128 ], [ 126.485596, 34.391046 ], [ 126.372986, 34.935482 ], [ 126.557007, 35.686302 ], [ 126.114807, 36.725677 ], [ 126.859131, 36.894998 ], [ 126.172485, 37.751172 ], [ 126.235657, 37.842326 ], [ 126.683350, 37.805444 ], [ 127.070618, 38.257593 ], [ 127.779236, 38.305025 ], [ 128.204956, 38.371809 ], [ 128.347778, 38.612578 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "name_sort": "Japan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "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": [ [ [ [ 134.607239, 35.733136 ], [ 135.000000, 35.657296 ], [ 135.219727, 35.614884 ], [ 135.219727, 33.792844 ], [ 135.120850, 33.849889 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 133.338318, 34.377446 ], [ 132.154541, 33.906896 ], [ 130.984497, 33.886377 ], [ 131.997986, 33.151349 ], [ 131.528320, 31.952162 ], [ 131.454163, 31.765537 ], [ 130.295105, 31.765537 ], [ 130.347290, 31.952162 ], [ 130.446167, 32.319634 ], [ 129.814453, 32.611616 ], [ 129.407959, 33.296099 ], [ 130.352783, 33.605470 ], [ 130.877380, 34.234512 ], [ 131.882629, 34.750640 ], [ 132.615967, 35.433820 ], [ 134.607239, 35.733136 ] ] ], [ [ [ 133.901367, 34.366111 ], [ 134.637451, 34.150454 ], [ 134.763794, 33.806538 ], [ 134.200745, 33.201924 ], [ 133.791504, 33.523079 ], [ 133.277893, 33.291508 ], [ 133.014221, 32.706422 ], [ 132.360535, 32.990236 ], [ 132.368774, 33.465817 ], [ 132.923584, 34.061761 ], [ 133.492126, 33.945638 ], [ 133.901367, 34.366111 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 135.219727, 49.066668 ], [ 135.219727, 43.719505 ], [ 135.000000, 43.518680 ], [ 134.868164, 43.399061 ], [ 133.536072, 42.811522 ], [ 132.904358, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.778503, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.930285 ], [ 131.286621, 44.113226 ], [ 131.022949, 44.968684 ], [ 131.882629, 45.321254 ], [ 133.096619, 45.145242 ], [ 133.769531, 46.117038 ], [ 134.110107, 47.213971 ], [ 134.500122, 47.580231 ], [ 135.000000, 48.434668 ], [ 135.024719, 48.478384 ], [ 135.000000, 48.474742 ], [ 133.371277, 48.184401 ], [ 132.506104, 47.789171 ], [ 130.987244, 47.791016 ], [ 130.580750, 48.730832 ], [ 130.262146, 48.922499 ], [ 130.020447, 49.066668 ], [ 135.219727, 49.066668 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 130.020447, 49.066668 ], [ 130.262146, 48.922499 ], [ 130.580750, 48.730832 ], [ 130.987244, 47.791016 ], [ 132.506104, 47.789171 ], [ 133.371277, 48.184401 ], [ 135.000000, 48.474742 ], [ 135.024719, 48.478384 ], [ 135.000000, 48.434668 ], [ 134.500122, 47.580231 ], [ 134.110107, 47.213971 ], [ 133.769531, 46.117038 ], [ 133.096619, 45.145242 ], [ 131.882629, 45.321254 ], [ 131.022949, 44.968684 ], [ 131.286621, 44.113226 ], [ 131.143799, 42.930285 ], [ 130.632935, 42.904136 ], [ 130.638428, 42.395066 ], [ 129.992981, 42.986567 ], [ 129.594727, 42.425484 ], [ 128.051147, 41.996243 ], [ 128.207703, 41.467428 ], [ 127.342529, 41.504464 ], [ 126.867371, 41.818408 ], [ 126.180725, 41.108330 ], [ 125.919800, 40.979898 ], [ 125.576477, 40.813809 ], [ 123.530273, 40.813809 ], [ 123.530273, 49.066668 ], [ 130.020447, 49.066668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "North Korea", "sov_a3": "PRK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "North Korea", "adm0_a3": "PRK", "geou_dif": 0, "geounit": "North Korea", "gu_a3": "PRK", "su_dif": 0, "subunit": "North Korea", "su_a3": "PRK", "brk_diff": 0, "name": "Dem. Rep. Korea", "name_long": "Dem. Rep. Korea", "brk_a3": "PRK", "brk_name": "Dem. Rep. Korea", "abbrev": "N.K.", "postal": "KP", "formal_en": "Democratic People's Republic of Korea", "name_sort": "Korea, Dem. Rep.", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 22665345, "gdp_md_est": 40000, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KP", "iso_a3": "PRK", "iso_n3": "408", "un_a3": "408", "wb_a2": "KP", "wb_a3": "PRK", "woe_id": -99, "adm0_a3_is": "PRK", "adm0_a3_us": "PRK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 15, "long_len": 15, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.992981, 42.986567 ], [ 130.638428, 42.395066 ], [ 130.778503, 42.220382 ], [ 130.399475, 42.281373 ], [ 129.965515, 41.943149 ], [ 129.666138, 41.603121 ], [ 129.699097, 40.979898 ], [ 129.704590, 40.884448 ], [ 129.542542, 40.813809 ], [ 125.576477, 40.813809 ], [ 125.919800, 40.979898 ], [ 126.180725, 41.108330 ], [ 126.867371, 41.818408 ], [ 127.342529, 41.504464 ], [ 128.207703, 41.467428 ], [ 128.051147, 41.996243 ], [ 129.594727, 42.425484 ], [ 129.992981, 42.986567 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 135.219727, 55.899956 ], [ 135.219727, 54.789601 ], [ 135.123596, 54.730964 ], [ 135.219727, 54.723034 ], [ 135.219727, 48.777913 ], [ 130.501099, 48.777913 ], [ 130.262146, 48.922499 ], [ 129.396973, 49.441343 ], [ 127.655640, 49.761752 ], [ 127.284851, 50.739932 ], [ 126.938782, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.944519, 52.794458 ], [ 125.065613, 53.161594 ], [ 123.750000, 53.424264 ], [ 123.568726, 53.460255 ], [ 123.530273, 53.458620 ], [ 123.530273, 55.899956 ], [ 135.219727, 55.899956 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 123.571472, 53.460255 ], [ 123.750000, 53.424264 ], [ 125.065613, 53.161594 ], [ 125.944519, 52.794458 ], [ 126.562500, 51.784834 ], [ 126.938782, 51.354631 ], [ 127.284851, 50.739932 ], [ 127.655640, 49.761752 ], [ 129.396973, 49.441343 ], [ 130.262146, 48.922499 ], [ 130.501099, 48.777913 ], [ 123.530273, 48.777913 ], [ 123.530273, 53.458620 ], [ 123.571472, 53.460255 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 135.219727, 61.710706 ], [ 135.219727, 55.652798 ], [ 123.530273, 55.652798 ], [ 123.530273, 61.710706 ], [ 135.219727, 61.710706 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 135.219727, 66.600676 ], [ 135.219727, 61.501734 ], [ 123.530273, 61.501734 ], [ 123.530273, 66.600676 ], [ 135.219727, 66.600676 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 135.219727, 70.685421 ], [ 135.219727, 66.425537 ], [ 123.530273, 66.425537 ], [ 123.530273, 70.685421 ], [ 135.219727, 70.685421 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 123.530273, 73.712735 ], [ 123.750000, 73.695009 ], [ 125.378723, 73.560299 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.039425 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.787814 ], [ 132.253418, 71.836547 ], [ 133.857422, 71.386895 ], [ 135.000000, 71.567510 ], [ 135.219727, 71.602216 ], [ 135.219727, 70.539543 ], [ 123.530273, 70.539543 ], [ 123.530273, 73.712735 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 146.469727, -83.956169 ], [ 146.469727, -85.070048 ], [ 134.780273, -85.070048 ], [ 134.780273, -83.956169 ], [ 146.469727, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 146.469727, -82.648222 ], [ 146.469727, -84.002262 ], [ 134.780273, -84.002262 ], [ 134.780273, -82.648222 ], [ 146.469727, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 146.469727, -81.059130 ], [ 146.469727, -82.704241 ], [ 134.780273, -82.704241 ], [ 134.780273, -81.059130 ], [ 146.469727, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 146.469727, -79.129976 ], [ 146.469727, -81.127169 ], [ 134.780273, -81.127169 ], [ 134.780273, -79.129976 ], [ 146.469727, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 146.469727, -76.790701 ], [ 146.469727, -79.212538 ], [ 134.780273, -79.212538 ], [ 134.780273, -76.790701 ], [ 146.469727, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 146.469727, -73.958939 ], [ 146.469727, -76.890745 ], [ 134.780273, -76.890745 ], [ 134.780273, -73.958939 ], [ 146.469727, -73.958939 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 146.469727, -70.539543 ], [ 146.469727, -74.079925 ], [ 134.780273, -74.079925 ], [ 134.780273, -70.539543 ], [ 146.469727, -70.539543 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 24 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 136.189270, -66.425537 ], [ 136.205750, -66.444204 ], [ 136.288147, -66.513260 ], [ 136.617737, -66.777835 ], [ 137.458191, -66.953727 ], [ 138.595276, -66.895596 ], [ 139.908142, -66.875109 ], [ 140.809021, -66.816791 ], [ 142.119141, -66.816791 ], [ 143.061218, -66.797321 ], [ 144.371338, -66.836246 ], [ 145.489197, -66.914988 ], [ 146.195068, -67.228496 ], [ 145.997314, -67.600849 ], [ 146.250000, -67.714654 ], [ 146.469727, -67.814431 ], [ 146.469727, -70.685421 ], [ 134.780273, -70.685421 ], [ 134.780273, -66.425537 ], [ 136.189270, -66.425537 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 23 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 135.068665, -65.308387 ], [ 135.694885, -65.582314 ], [ 135.873413, -66.032527 ], [ 136.205750, -66.444204 ], [ 136.288147, -66.513260 ], [ 136.398010, -66.600676 ], [ 134.780273, -66.600676 ], [ 134.780273, -66.169390 ], [ 135.000000, -65.776871 ], [ 135.030212, -65.719335 ], [ 135.068665, -65.308387 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 20 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 145.456238, -40.813809 ], [ 145.920410, -40.979898 ], [ 146.250000, -41.095912 ], [ 146.362610, -41.137296 ], [ 146.469727, -41.110399 ], [ 146.469727, -43.570442 ], [ 146.250000, -43.558501 ], [ 146.046753, -43.548548 ], [ 145.431519, -42.692530 ], [ 145.294189, -42.032974 ], [ 144.717407, -41.162114 ], [ 144.725647, -40.979898 ], [ 144.736633, -40.813809 ], [ 145.456238, -40.813809 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 19 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.742126, -40.703546 ], [ 145.395813, -40.790939 ], [ 145.920410, -40.979898 ], [ 146.362610, -41.137296 ], [ 146.469727, -41.110399 ], [ 146.469727, -41.145570 ], [ 144.717407, -41.145570 ], [ 144.725647, -40.979898 ], [ 144.742126, -40.703546 ] ] ], [ [ [ 146.469727, -31.765537 ], [ 146.469727, -38.927366 ], [ 146.315918, -39.034120 ], [ 146.250000, -38.997841 ], [ 145.489197, -38.593261 ], [ 144.876709, -38.417014 ], [ 145.030518, -37.894363 ], [ 144.483948, -38.084851 ], [ 143.607788, -38.807611 ], [ 142.745361, -38.537424 ], [ 142.176819, -38.378269 ], [ 141.605530, -38.307181 ], [ 140.635986, -38.017804 ], [ 139.990540, -37.402892 ], [ 139.806519, -36.641978 ], [ 139.573059, -36.137875 ], [ 139.081421, -35.730907 ], [ 138.120117, -35.610418 ], [ 138.446960, -35.126648 ], [ 138.205261, -34.384246 ], [ 137.719116, -35.074965 ], [ 136.829224, -35.259077 ], [ 137.351074, -34.705493 ], [ 137.502136, -34.129995 ], [ 137.889404, -33.639776 ], [ 137.809753, -32.898038 ], [ 136.996765, -33.751748 ], [ 136.370544, -34.093610 ], [ 135.988770, -34.888184 ], [ 135.205994, -34.477128 ], [ 135.238953, -33.947917 ], [ 135.000000, -33.669497 ], [ 134.780273, -33.415395 ], [ 134.780273, -31.765537 ], [ 146.469727, -31.765537 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 18 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 146.469727, -21.739091 ], [ 146.469727, -32.138409 ], [ 134.780273, -32.138409 ], [ 134.780273, -21.739091 ], [ 146.469727, -21.739091 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 17 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 142.684937, -10.962764 ], [ 142.794800, -11.156845 ], [ 142.797546, -11.178402 ], [ 142.866211, -11.784014 ], [ 143.113403, -11.904979 ], [ 143.157349, -12.323903 ], [ 143.519897, -12.833226 ], [ 143.596802, -13.400307 ], [ 143.561096, -13.763396 ], [ 143.920898, -14.546367 ], [ 144.563599, -14.168534 ], [ 144.893188, -14.594216 ], [ 145.373840, -14.984586 ], [ 145.269470, -15.427206 ], [ 145.483704, -16.283233 ], [ 145.634766, -16.783506 ], [ 145.887451, -16.904428 ], [ 146.159363, -17.759150 ], [ 146.063232, -18.278910 ], [ 146.250000, -18.669665 ], [ 146.387329, -18.958246 ], [ 146.469727, -18.997206 ], [ 146.469727, -22.146708 ], [ 134.780273, -22.146708 ], [ 134.780273, -11.990965 ], [ 135.000000, -12.098410 ], [ 135.296631, -12.246076 ], [ 135.881653, -11.961410 ], [ 136.257935, -12.047379 ], [ 136.491394, -11.856599 ], [ 136.950073, -12.350734 ], [ 136.683655, -12.886780 ], [ 136.304626, -13.290738 ], [ 135.961304, -13.322812 ], [ 136.076660, -13.723377 ], [ 135.782776, -14.221789 ], [ 135.428467, -14.713791 ], [ 135.499878, -14.995199 ], [ 136.293640, -15.548960 ], [ 137.062683, -15.868883 ], [ 137.579041, -16.214675 ], [ 138.301392, -16.807170 ], [ 138.584290, -16.804541 ], [ 139.106140, -17.062036 ], [ 139.259949, -17.368989 ], [ 140.213013, -17.709445 ], [ 140.874939, -17.368989 ], [ 141.069946, -16.830832 ], [ 141.273193, -16.388661 ], [ 141.396790, -15.839820 ], [ 141.701660, -15.042948 ], [ 141.561584, -14.559659 ], [ 141.632996, -14.269707 ], [ 141.517639, -13.696693 ], [ 141.649475, -12.942999 ], [ 141.841736, -12.739479 ], [ 141.685181, -12.407071 ], [ 141.926880, -11.875414 ], [ 142.116394, -11.326560 ], [ 142.130127, -11.178402 ], [ 142.141113, -11.040951 ], [ 142.220764, -10.962764 ], [ 142.684937, -10.962764 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 16 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 138.328857, -1.702630 ], [ 139.183044, -2.051258 ], [ 139.924622, -2.408043 ], [ 140.998535, -2.600120 ], [ 141.031494, -9.115656 ], [ 140.141602, -8.295752 ], [ 139.125366, -8.094581 ], [ 138.880920, -8.379997 ], [ 137.612000, -8.409885 ], [ 138.037720, -7.596663 ], [ 138.666687, -7.318882 ], [ 138.405762, -6.230664 ], [ 137.925110, -5.391805 ], [ 135.988770, -4.546308 ], [ 135.162048, -4.461427 ], [ 135.000000, -4.360105 ], [ 134.780273, -4.225900 ], [ 134.780273, -2.975956 ], [ 135.000000, -3.102121 ], [ 135.455933, -3.365373 ], [ 136.290894, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 142.514648, -10.666006 ], [ 142.794800, -11.156845 ], [ 142.797546, -11.178402 ], [ 142.822266, -11.393879 ], [ 142.094421, -11.393879 ], [ 142.116394, -11.326560 ], [ 142.130127, -11.178402 ], [ 142.141113, -11.040951 ], [ 142.514648, -10.666006 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Papua New Guinea", "sov_a3": "PNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Papua New Guinea", "adm0_a3": "PNG", "geou_dif": 0, "geounit": "Papua New Guinea", "gu_a3": "PNG", "su_dif": 1, "subunit": "Papua New Guinea", "su_a3": "PN1", "brk_diff": 0, "name": "Papua New Guinea", "name_long": "Papua New Guinea", "brk_a3": "PN1", "brk_name": "Papua New Guinea", "abbrev": "P.N.G.", "postal": "PG", "formal_en": "Independent State of Papua New Guinea", "name_sort": "Papua New Guinea", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 6057263, "gdp_md_est": 13210, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PG", "iso_a3": "PNG", "iso_n3": "598", "un_a3": "598", "wb_a2": "PG", "wb_a3": "PNG", "woe_id": -99, "adm0_a3_is": "PNG", "adm0_a3_us": "PNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 16, "long_len": 16, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 140.998535, -2.600120 ], [ 142.734375, -3.288598 ], [ 144.582825, -3.858774 ], [ 145.272217, -4.371059 ], [ 145.829773, -4.874784 ], [ 145.980835, -5.462896 ], [ 146.250000, -5.564049 ], [ 146.469727, -5.646052 ], [ 146.469727, -8.776511 ], [ 146.250000, -8.407168 ], [ 146.046753, -8.067388 ], [ 144.742126, -7.629331 ], [ 143.896179, -7.915073 ], [ 143.283691, -8.244110 ], [ 143.412781, -8.982749 ], [ 142.627258, -9.324411 ], [ 142.066956, -9.159044 ], [ 141.031494, -9.115656 ], [ 140.998535, -2.600120 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "name_sort": "Japan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "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": "Polygon", "coordinates": [ [ [ 141.459961, 41.145570 ], [ 141.525879, 40.979898 ], [ 141.913147, 39.991851 ], [ 141.882935, 39.181175 ], [ 140.957336, 38.175592 ], [ 140.973816, 37.142803 ], [ 140.597534, 36.346103 ], [ 140.773315, 35.844535 ], [ 140.251465, 35.140125 ], [ 138.974304, 34.669359 ], [ 137.216492, 34.608345 ], [ 135.791016, 33.465817 ], [ 135.120850, 33.849889 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 134.780273, 34.560859 ], [ 134.780273, 35.699686 ], [ 135.000000, 35.657296 ], [ 135.675659, 35.527756 ], [ 136.722107, 37.306829 ], [ 137.389526, 36.829073 ], [ 138.856201, 37.829311 ], [ 139.424744, 38.216604 ], [ 140.053711, 39.440435 ], [ 139.880676, 40.563895 ], [ 140.160828, 40.979898 ], [ 140.270691, 41.145570 ], [ 141.459961, 41.145570 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 140.234985, 49.066668 ], [ 140.193787, 48.922499 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.000861 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.145242 ], [ 135.513611, 43.990839 ], [ 135.000000, 43.518680 ], [ 134.868164, 43.399061 ], [ 134.780273, 43.361132 ], [ 134.780273, 48.059725 ], [ 135.000000, 48.434668 ], [ 135.024719, 48.478384 ], [ 135.000000, 48.474742 ], [ 134.780273, 48.434668 ], [ 134.780273, 49.066668 ], [ 140.234985, 49.066668 ] ] ], [ [ [ 143.069458, 49.066668 ], [ 143.006287, 48.922499 ], [ 142.558594, 47.862931 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.741743 ], [ 142.091675, 45.968334 ], [ 141.904907, 46.807580 ], [ 142.017517, 47.781789 ], [ 141.902161, 48.859294 ], [ 141.965332, 49.066668 ], [ 143.069458, 49.066668 ] ] ], [ [ [ 144.602051, 49.066668 ], [ 144.651489, 48.976612 ], [ 144.247742, 49.066668 ], [ 144.602051, 49.066668 ] ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 135.024719, 48.478384 ], [ 135.000000, 48.434668 ], [ 134.780273, 48.059725 ], [ 134.780273, 48.434668 ], [ 135.000000, 48.474742 ], [ 135.024719, 48.478384 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "name_sort": "Japan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "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": [ [ [ [ 141.366577, 41.378870 ], [ 141.525879, 40.979898 ], [ 141.591797, 40.813809 ], [ 140.048218, 40.813809 ], [ 140.160828, 40.979898 ], [ 140.303650, 41.195190 ], [ 141.366577, 41.378870 ] ] ], [ [ [ 141.965332, 45.552525 ], [ 143.140869, 44.512176 ], [ 143.909912, 44.174325 ], [ 144.613037, 43.961191 ], [ 145.318909, 44.386692 ], [ 145.541382, 43.263206 ], [ 144.058228, 42.988576 ], [ 143.182068, 41.996243 ], [ 141.611023, 42.680416 ], [ 141.067200, 41.584634 ], [ 139.954834, 41.570252 ], [ 139.817505, 42.565219 ], [ 140.311890, 43.335167 ], [ 141.380310, 43.389082 ], [ 141.671448, 44.774036 ], [ 141.965332, 45.552525 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 142.654724, 54.366158 ], [ 142.912903, 53.704836 ], [ 143.258972, 52.741280 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.748622 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 143.006287, 48.922499 ], [ 142.945862, 48.777913 ], [ 141.910400, 48.777913 ], [ 141.902161, 48.859294 ], [ 141.921387, 48.922499 ], [ 142.135620, 49.616049 ], [ 142.179565, 50.953236 ], [ 141.591797, 51.935799 ], [ 141.682434, 53.302980 ], [ 142.605286, 53.763325 ], [ 142.207031, 54.226708 ], [ 142.654724, 54.366158 ] ] ], [ [ [ 136.996765, 55.899956 ], [ 136.796265, 55.776573 ], [ 135.123596, 54.730964 ], [ 136.700134, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.804016, 54.255598 ], [ 139.899902, 54.189763 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.239574 ], [ 140.594788, 51.241286 ], [ 140.512390, 50.046557 ], [ 140.193787, 48.922499 ], [ 140.152588, 48.777913 ], [ 134.780273, 48.777913 ], [ 134.780273, 55.899956 ], [ 136.996765, 55.899956 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 146.469727, 61.710706 ], [ 146.469727, 59.281317 ], [ 146.250000, 59.293942 ], [ 145.486450, 59.337392 ], [ 142.196045, 59.040555 ], [ 138.957825, 57.088515 ], [ 136.796265, 55.776573 ], [ 136.598511, 55.652798 ], [ 134.780273, 55.652798 ], [ 134.780273, 61.710706 ], [ 146.469727, 61.710706 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 146.469727, 66.600676 ], [ 146.469727, 61.501734 ], [ 134.780273, 61.501734 ], [ 134.780273, 66.600676 ], [ 146.469727, 66.600676 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 146.469727, 70.685421 ], [ 146.469727, 66.425537 ], [ 134.780273, 66.425537 ], [ 134.780273, 70.685421 ], [ 146.469727, 70.685421 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 140.465698, 72.850122 ], [ 146.250000, 72.437192 ], [ 146.469727, 72.420609 ], [ 146.469727, 70.539543 ], [ 134.780273, 70.539543 ], [ 134.780273, 71.532741 ], [ 135.560303, 71.655885 ], [ 137.496643, 71.348285 ], [ 138.232727, 71.628203 ], [ 139.869690, 71.488319 ], [ 139.147339, 72.416461 ], [ 140.465698, 72.850122 ] ] ], [ [ [ 142.061462, 73.857688 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.213220 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.317611 ], [ 139.861450, 73.370356 ], [ 140.809021, 73.765801 ], [ 142.061462, 73.857688 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 138.828735, 76.137037 ], [ 141.470947, 76.093537 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.611267, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262143 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137037 ] ] ], [ [ [ 146.357117, 75.497157 ], [ 146.469727, 75.488213 ], [ 146.469727, 75.099871 ], [ 146.118164, 75.173143 ], [ 146.250000, 75.351314 ], [ 146.357117, 75.497157 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 157.719727, -83.956169 ], [ 157.719727, -85.070048 ], [ 146.030273, -85.070048 ], [ 146.030273, -83.956169 ], [ 157.719727, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 157.719727, -82.648222 ], [ 157.719727, -84.002262 ], [ 146.030273, -84.002262 ], [ 146.030273, -82.648222 ], [ 157.719727, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 157.719727, -81.059130 ], [ 157.719727, -82.704241 ], [ 146.030273, -82.704241 ], [ 146.030273, -81.059130 ], [ 157.719727, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 157.719727, -79.129976 ], [ 157.719727, -81.127169 ], [ 146.030273, -81.127169 ], [ 146.030273, -79.129976 ], [ 157.719727, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 157.719727, -76.790701 ], [ 157.719727, -79.212538 ], [ 146.030273, -79.212538 ], [ 146.030273, -76.790701 ], [ 157.719727, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 157.719727, -73.958939 ], [ 157.719727, -76.890745 ], [ 146.030273, -76.890745 ], [ 146.030273, -73.958939 ], [ 157.719727, -73.958939 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 157.719727, -70.539543 ], [ 157.719727, -74.079925 ], [ 146.030273, -74.079925 ], [ 146.030273, -70.539543 ], [ 157.719727, -70.539543 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 24 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 146.030273, -67.614451 ], [ 146.250000, -67.714654 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.129645 ], [ 148.837280, -68.385020 ], [ 150.130920, -68.560384 ], [ 151.482239, -68.717450 ], [ 152.501221, -68.874409 ], [ 153.635559, -68.894198 ], [ 154.283752, -68.560384 ], [ 155.165405, -68.834777 ], [ 155.928955, -69.148876 ], [ 156.810608, -69.384181 ], [ 157.500000, -69.439234 ], [ 157.719727, -69.457554 ], [ 157.719727, -70.685421 ], [ 146.030273, -70.685421 ], [ 146.030273, -67.614451 ] ] ], [ [ [ 146.030273, -67.543216 ], [ 146.030273, -67.155031 ], [ 146.195068, -67.228496 ], [ 146.030273, -67.543216 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 20 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 147.738647, -40.813809 ], [ 148.287964, -40.874065 ], [ 148.293457, -40.979898 ], [ 148.359375, -42.061529 ], [ 148.016052, -42.405207 ], [ 147.911682, -43.211182 ], [ 147.562866, -42.936318 ], [ 146.867981, -43.634087 ], [ 146.661987, -43.580391 ], [ 146.250000, -43.558501 ], [ 146.046753, -43.548548 ], [ 146.030273, -43.524655 ], [ 146.030273, -41.017211 ], [ 146.250000, -41.095912 ], [ 146.362610, -41.137296 ], [ 146.991577, -40.979898 ], [ 147.664490, -40.813809 ], [ 147.738647, -40.813809 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 19 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 147.689209, -40.807573 ], [ 148.287964, -40.874065 ], [ 148.293457, -40.979898 ], [ 148.304443, -41.145570 ], [ 146.030273, -41.145570 ], [ 146.030273, -41.017211 ], [ 146.362610, -41.137296 ], [ 146.991577, -40.979898 ], [ 147.689209, -40.807573 ] ] ], [ [ [ 152.830811, -31.765537 ], [ 152.740173, -31.952162 ], [ 152.449036, -32.549128 ], [ 151.707458, -33.040903 ], [ 151.342163, -33.815666 ], [ 151.009827, -34.309413 ], [ 150.713196, -35.171563 ], [ 150.325928, -35.670685 ], [ 150.073242, -36.419072 ], [ 149.944153, -37.107765 ], [ 149.996338, -37.424707 ], [ 149.422302, -37.770715 ], [ 148.304443, -37.807614 ], [ 147.381592, -38.218762 ], [ 146.920166, -38.606140 ], [ 146.315918, -39.034120 ], [ 146.250000, -38.997841 ], [ 146.030273, -38.882481 ], [ 146.030273, -31.765537 ], [ 152.830811, -31.765537 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 18 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 149.460754, -21.739091 ], [ 149.532166, -21.943046 ], [ 149.677734, -22.342455 ], [ 150.075989, -22.121266 ], [ 150.482483, -22.555684 ], [ 150.726929, -22.400872 ], [ 150.897217, -23.460727 ], [ 151.608582, -24.074051 ], [ 152.072754, -24.457151 ], [ 152.852783, -25.267052 ], [ 153.135681, -26.069119 ], [ 153.160400, -26.640094 ], [ 153.091736, -27.259513 ], [ 153.566895, -28.108326 ], [ 153.511963, -28.993727 ], [ 153.338928, -29.456340 ], [ 153.067017, -30.349176 ], [ 153.088989, -30.923433 ], [ 152.891235, -31.639352 ], [ 152.740173, -31.952162 ], [ 152.649536, -32.138409 ], [ 146.030273, -32.138409 ], [ 146.030273, -21.739091 ], [ 149.460754, -21.739091 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 17 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 146.030273, -17.350638 ], [ 146.159363, -17.759150 ], [ 146.063232, -18.278910 ], [ 146.250000, -18.669665 ], [ 146.387329, -18.958246 ], [ 147.469482, -19.479540 ], [ 148.175354, -19.955278 ], [ 148.848267, -20.390974 ], [ 148.716431, -20.632784 ], [ 149.287720, -21.258661 ], [ 149.532166, -21.943046 ], [ 149.606323, -22.146708 ], [ 146.030273, -22.146708 ], [ 146.030273, -17.350638 ] ] ], [ [ [ 150.097961, -22.146708 ], [ 150.032043, -22.146708 ], [ 150.075989, -22.121266 ], [ 150.097961, -22.146708 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 16 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Papua New Guinea", "sov_a3": "PNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Papua New Guinea", "adm0_a3": "PNG", "geou_dif": 0, "geounit": "Papua New Guinea", "gu_a3": "PNG", "su_dif": 1, "subunit": "Papua New Guinea", "su_a3": "PN1", "brk_diff": 0, "name": "Papua New Guinea", "name_long": "Papua New Guinea", "brk_a3": "PN1", "brk_name": "Papua New Guinea", "abbrev": "P.N.G.", "postal": "PG", "formal_en": "Independent State of Papua New Guinea", "name_sort": "Papua New Guinea", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 6057263, "gdp_md_est": 13210, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PG", "iso_a3": "PNG", "iso_n3": "598", "un_a3": "598", "wb_a2": "PG", "wb_a3": "PNG", "woe_id": -99, "adm0_a3_is": "PNG", "adm0_a3_us": "PNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 16, "long_len": 16, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 146.030273, -5.482034 ], [ 146.250000, -5.564049 ], [ 147.648010, -6.083204 ], [ 147.889709, -6.612772 ], [ 146.969604, -6.719165 ], [ 147.189331, -7.386982 ], [ 148.081970, -8.042913 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.069551 ], [ 149.265747, -9.514079 ], [ 150.037537, -9.681984 ], [ 149.738159, -9.871452 ], [ 150.801086, -10.293301 ], [ 150.688477, -10.582322 ], [ 150.026550, -10.649811 ], [ 149.782104, -10.390572 ], [ 148.922424, -10.279789 ], [ 147.911682, -10.128413 ], [ 147.134399, -9.492408 ], [ 146.565857, -8.942053 ], [ 146.250000, -8.407168 ], [ 146.046753, -8.067388 ], [ 146.030273, -8.059230 ], [ 146.030273, -5.482034 ] ] ], [ [ [ 154.651794, -5.041699 ], [ 154.758911, -5.339848 ], [ 155.061035, -5.566783 ], [ 155.547180, -6.200629 ], [ 156.019592, -6.539103 ], [ 155.879517, -6.817353 ], [ 155.599365, -6.918247 ], [ 155.165405, -6.533645 ], [ 154.728699, -5.900189 ], [ 154.511719, -5.137450 ], [ 154.651794, -5.041699 ] ] ], [ [ [ 152.135925, -4.146461 ], [ 152.336426, -4.310808 ], [ 152.317200, -4.866574 ], [ 151.982117, -5.476566 ], [ 151.457520, -5.558582 ], [ 151.300964, -5.840081 ], [ 150.754395, -6.083204 ], [ 150.240784, -6.315299 ], [ 149.707947, -6.315299 ], [ 148.889465, -6.025848 ], [ 148.318176, -5.744441 ], [ 148.400574, -5.435554 ], [ 149.295959, -5.583184 ], [ 149.845276, -5.503906 ], [ 149.993591, -5.025283 ], [ 150.139160, -5.000658 ], [ 150.235291, -5.531244 ], [ 150.806580, -5.454693 ], [ 151.089478, -5.112830 ], [ 151.647034, -4.754361 ], [ 151.537170, -4.165637 ], [ 152.135925, -4.146461 ] ] ], [ [ [ 150.938416, -2.498597 ], [ 151.479492, -2.778451 ], [ 151.817322, -2.997899 ], [ 152.237549, -3.239240 ], [ 152.638550, -3.658705 ], [ 153.017578, -3.979341 ], [ 153.138428, -4.499762 ], [ 152.825317, -4.765310 ], [ 152.638550, -4.173855 ], [ 152.405090, -3.787522 ], [ 151.951904, -3.461333 ], [ 151.383362, -3.033555 ], [ 150.661011, -2.740044 ], [ 150.938416, -2.498597 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Solomon Islands", "sov_a3": "SLB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Solomon Islands", "adm0_a3": "SLB", "geou_dif": 0, "geounit": "Solomon Islands", "gu_a3": "SLB", "su_dif": 0, "subunit": "Solomon Islands", "su_a3": "SLB", "brk_diff": 0, "name": "Solomon Is.", "name_long": "Solomon Islands", "brk_a3": "SLB", "brk_name": "Solomon Is.", "abbrev": "S. Is.", "postal": "SB", "name_sort": "Solomon Islands", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 595613, "gdp_md_est": 1078, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SB", "iso_a3": "SLB", "iso_n3": "090", "un_a3": "090", "wb_a2": "SB", "wb_a3": "SLB", "woe_id": -99, "adm0_a3_is": "SLB", "adm0_a3_us": "SLB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 15, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 156.541443, -6.599131 ], [ 157.137451, -7.019120 ], [ 157.500000, -7.316158 ], [ 157.535706, -7.346123 ], [ 157.500000, -7.357019 ], [ 157.337952, -7.403324 ], [ 156.901245, -7.174476 ], [ 156.489258, -6.765534 ], [ 156.541443, -6.599131 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 157.719727, 55.899956 ], [ 157.719727, 51.614606 ], [ 157.500000, 51.472830 ], [ 156.788635, 51.012027 ], [ 156.417847, 51.701502 ], [ 155.989380, 53.159947 ], [ 155.431824, 55.382231 ], [ 155.566406, 55.776573 ], [ 155.610352, 55.899956 ], [ 157.719727, 55.899956 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 157.719727, 61.567189 ], [ 157.500000, 61.538406 ], [ 156.719971, 61.434828 ], [ 154.217834, 59.759162 ], [ 155.041809, 59.144952 ], [ 152.811584, 58.884781 ], [ 151.265259, 58.781015 ], [ 151.336670, 59.505061 ], [ 149.782104, 59.656642 ], [ 148.543396, 59.164668 ], [ 146.250000, 59.293942 ], [ 146.030273, 59.306562 ], [ 146.030273, 61.710706 ], [ 157.719727, 61.710706 ], [ 157.719727, 61.567189 ] ] ], [ [ [ 157.719727, 57.964417 ], [ 157.719727, 55.652798 ], [ 155.525208, 55.652798 ], [ 155.566406, 55.776573 ], [ 155.912476, 56.769283 ], [ 156.755676, 57.365052 ], [ 156.807861, 57.833055 ], [ 157.500000, 57.932351 ], [ 157.719727, 57.964417 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 157.719727, 66.600676 ], [ 157.719727, 61.567189 ], [ 157.228088, 61.501734 ], [ 146.030273, 61.501734 ], [ 146.030273, 66.600676 ], [ 157.719727, 66.600676 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 157.719727, 70.685421 ], [ 157.719727, 66.425537 ], [ 146.030273, 66.425537 ], [ 146.030273, 70.685421 ], [ 157.719727, 70.685421 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 146.030273, 72.452932 ], [ 146.250000, 72.437192 ], [ 149.499207, 72.200284 ], [ 150.350647, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.032142 ], [ 157.500000, 70.991033 ], [ 157.719727, 70.973133 ], [ 157.719727, 70.539543 ], [ 146.030273, 70.539543 ], [ 146.030273, 72.452932 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 146.357117, 75.497157 ], [ 148.222046, 75.346451 ], [ 150.729675, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.250000, 75.145707 ], [ 146.118164, 75.173143 ], [ 146.250000, 75.351314 ], [ 146.357117, 75.497157 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 168.969727, -83.956169 ], [ 168.969727, -85.070048 ], [ 157.280273, -85.070048 ], [ 157.280273, -83.956169 ], [ 168.969727, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 164.819641, -82.648222 ], [ 164.945984, -82.676285 ], [ 165.094299, -82.708774 ], [ 166.602173, -83.022216 ], [ 168.750000, -83.316176 ], [ 168.895569, -83.335967 ], [ 168.969727, -83.409506 ], [ 168.969727, -84.002262 ], [ 157.280273, -84.002262 ], [ 157.280273, -82.648222 ], [ 164.819641, -82.648222 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 29 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 160.235596, -81.059130 ], [ 160.372925, -81.093214 ], [ 161.119995, -81.278386 ], [ 161.628113, -81.689909 ], [ 162.490540, -82.062067 ], [ 163.704529, -82.395157 ], [ 164.945984, -82.676285 ], [ 165.072327, -82.704241 ], [ 157.280273, -82.704241 ], [ 157.280273, -81.059130 ], [ 160.235596, -81.059130 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 28 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 163.328247, -79.129976 ], [ 161.765442, -79.162043 ], [ 161.751709, -79.171335 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200709 ], [ 160.315247, -80.572647 ], [ 159.787903, -80.945299 ], [ 160.372925, -81.093214 ], [ 160.507507, -81.127169 ], [ 157.280273, -81.127169 ], [ 157.280273, -79.129976 ], [ 163.328247, -79.129976 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 27 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 163.473816, -76.790701 ], [ 163.476562, -76.840816 ], [ 163.487549, -77.065265 ], [ 164.056091, -77.457084 ], [ 164.273071, -77.829694 ], [ 164.742737, -78.182400 ], [ 166.602173, -78.319421 ], [ 166.994934, -78.750659 ], [ 165.193176, -78.907100 ], [ 163.666077, -79.122722 ], [ 161.765442, -79.162043 ], [ 161.751709, -79.171335 ], [ 161.691284, -79.212538 ], [ 157.280273, -79.212538 ], [ 157.280273, -76.790701 ], [ 163.473816, -76.790701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 26 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 167.731018, -73.958939 ], [ 167.632141, -74.019543 ], [ 167.384949, -74.164835 ], [ 166.094055, -74.380731 ], [ 165.643616, -74.772236 ], [ 164.956970, -75.145003 ], [ 164.231873, -75.458589 ], [ 163.822632, -75.869999 ], [ 163.567200, -76.241939 ], [ 163.468323, -76.693067 ], [ 163.476562, -76.840816 ], [ 163.479309, -76.890745 ], [ 157.280273, -76.890745 ], [ 157.280273, -73.958939 ], [ 167.731018, -73.958939 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 161.482544, -70.539543 ], [ 161.570435, -70.578852 ], [ 161.803894, -70.612614 ], [ 162.685547, -70.736230 ], [ 163.841858, -70.716285 ], [ 164.918518, -70.775156 ], [ 166.113281, -70.755250 ], [ 167.308044, -70.833855 ], [ 168.423157, -70.971342 ], [ 168.750000, -71.044637 ], [ 168.969727, -71.094535 ], [ 168.969727, -73.693467 ], [ 168.750000, -73.719666 ], [ 167.972717, -73.812574 ], [ 167.632141, -74.019543 ], [ 167.530518, -74.079925 ], [ 157.280273, -74.079925 ], [ 157.280273, -70.539543 ], [ 161.482544, -70.539543 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 24 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 157.280273, -69.421864 ], [ 157.500000, -69.439234 ], [ 158.024597, -69.481635 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.991475 ], [ 160.804138, -70.226028 ], [ 161.570435, -70.578852 ], [ 161.803894, -70.612614 ], [ 162.322998, -70.685421 ], [ 157.280273, -70.685421 ], [ 157.280273, -69.421864 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 20 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "New Zealand", "sov_a3": "NZ1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "New Zealand", "adm0_a3": "NZL", "geou_dif": 0, "geounit": "New Zealand", "gu_a3": "NZL", "su_dif": 0, "subunit": "New Zealand", "su_a3": "NZL", "brk_diff": 0, "name": "New Zealand", "name_long": "New Zealand", "brk_a3": "NZL", "brk_name": "New Zealand", "abbrev": "N.Z.", "postal": "NZ", "formal_en": "New Zealand", "name_sort": "New Zealand", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 4213418, "gdp_md_est": 116700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NZ", "iso_a3": "NZL", "iso_n3": "554", "un_a3": "554", "wb_a2": "NZ", "wb_a3": "NZL", "woe_id": -99, "adm0_a3_is": "NZL", "adm0_a3_us": "NZL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 168.969727, -43.923615 ], [ 168.969727, -46.632465 ], [ 168.750000, -46.626806 ], [ 168.409424, -46.619261 ], [ 167.761230, -46.290020 ], [ 166.676331, -46.219752 ], [ 166.508789, -45.851760 ], [ 167.044373, -45.110362 ], [ 168.302307, -44.123085 ], [ 168.750000, -43.992815 ], [ 168.947754, -43.935484 ], [ 168.969727, -43.923615 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 18 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "New Caledonia", "adm0_a3": "NCL", "geou_dif": 0, "geounit": "New Caledonia", "gu_a3": "NCL", "su_dif": 0, "subunit": "New Caledonia", "su_a3": "NCL", "brk_diff": 0, "name": "New Caledonia", "name_long": "New Caledonia", "brk_a3": "NCL", "brk_name": "New Caledonia", "abbrev": "New C.", "postal": "NC", "formal_en": "New Caledonia", "formal_fr": "Nouvelle-Calédonie", "note_adm0": "Fr.", "name_sort": "New Caledonia", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 227436, "gdp_md_est": 3158, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "NC", "iso_a3": "NCL", "iso_n3": "540", "un_a3": "540", "wb_a2": "NC", "wb_a3": "NCL", "woe_id": -99, "adm0_a3_is": "NCL", "adm0_a3_us": "NCL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 166.643372, -21.739091 ], [ 166.874084, -21.943046 ], [ 167.118530, -22.159427 ], [ 166.739502, -22.398332 ], [ 166.187439, -22.128899 ], [ 165.890808, -21.943046 ], [ 165.566711, -21.739091 ], [ 166.643372, -21.739091 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 17 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Vanuatu", "sov_a3": "VUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vanuatu", "adm0_a3": "VUT", "geou_dif": 0, "geounit": "Vanuatu", "gu_a3": "VUT", "su_dif": 0, "subunit": "Vanuatu", "su_a3": "VUT", "brk_diff": 0, "name": "Vanuatu", "name_long": "Vanuatu", "brk_a3": "VUT", "brk_name": "Vanuatu", "abbrev": "Van.", "postal": "VU", "formal_en": "Republic of Vanuatu", "name_sort": "Vanuatu", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 218519, "gdp_md_est": 988.5, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VU", "iso_a3": "VUT", "iso_n3": "548", "un_a3": "548", "wb_a2": "VU", "wb_a3": "VUT", "woe_id": -99, "adm0_a3_is": "VUT", "adm0_a3_us": "VUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": 2, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.214661, -15.890018 ], [ 167.843628, -16.465061 ], [ 167.514038, -16.596714 ], [ 167.178955, -16.159283 ], [ 167.214661, -15.890018 ] ] ], [ [ [ 166.626892, -14.626109 ], [ 167.107544, -14.931516 ], [ 167.269592, -15.739388 ], [ 167.000427, -15.612456 ], [ 166.791687, -15.667999 ], [ 166.648865, -15.390136 ], [ 166.626892, -14.626109 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "New Caledonia", "adm0_a3": "NCL", "geou_dif": 0, "geounit": "New Caledonia", "gu_a3": "NCL", "su_dif": 0, "subunit": "New Caledonia", "su_a3": "NCL", "brk_diff": 0, "name": "New Caledonia", "name_long": "New Caledonia", "brk_a3": "NCL", "brk_name": "New Caledonia", "abbrev": "New C.", "postal": "NC", "formal_en": "New Caledonia", "formal_fr": "Nouvelle-Calédonie", "note_adm0": "Fr.", "name_sort": "New Caledonia", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 227436, "gdp_md_est": 3158, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "NC", "iso_a3": "NCL", "iso_n3": "540", "un_a3": "540", "wb_a2": "NC", "wb_a3": "NCL", "woe_id": -99, "adm0_a3_is": "NCL", "adm0_a3_us": "NCL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.028625, -20.104944 ], [ 164.459839, -20.117840 ], [ 165.017395, -20.457896 ], [ 165.459595, -20.799769 ], [ 165.778198, -21.079375 ], [ 166.599426, -21.698265 ], [ 166.874084, -21.943046 ], [ 167.104797, -22.146708 ], [ 166.223145, -22.146708 ], [ 166.187439, -22.128899 ], [ 165.890808, -21.943046 ], [ 165.473328, -21.677848 ], [ 164.827881, -21.148554 ], [ 164.165955, -20.442455 ], [ 164.028625, -20.104944 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 16 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Solomon Islands", "sov_a3": "SLB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Solomon Islands", "adm0_a3": "SLB", "geou_dif": 0, "geounit": "Solomon Islands", "gu_a3": "SLB", "su_dif": 0, "subunit": "Solomon Islands", "su_a3": "SLB", "brk_diff": 0, "name": "Solomon Is.", "name_long": "Solomon Islands", "brk_a3": "SLB", "brk_name": "Solomon Is.", "abbrev": "S. Is.", "postal": "SB", "name_sort": "Solomon Islands", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 595613, "gdp_md_est": 1078, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SB", "iso_a3": "SLB", "iso_n3": "090", "un_a3": "090", "wb_a2": "SB", "wb_a3": "SLB", "woe_id": -99, "adm0_a3_is": "SLB", "adm0_a3_us": "SLB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 15, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.317749, -10.204110 ], [ 161.916504, -10.444598 ], [ 162.117004, -10.482410 ], [ 162.397156, -10.825213 ], [ 161.699524, -10.819818 ], [ 161.317749, -10.204110 ] ] ], [ [ [ 159.702759, -9.240382 ], [ 160.361938, -9.400291 ], [ 160.686035, -9.608874 ], [ 160.850830, -9.871452 ], [ 160.460815, -9.893099 ], [ 159.848328, -9.792971 ], [ 159.639587, -9.638661 ], [ 159.702759, -9.240382 ] ] ], [ [ [ 160.919495, -8.317495 ], [ 161.279297, -9.118368 ], [ 161.677551, -9.598042 ], [ 161.529236, -9.782145 ], [ 160.787659, -8.914920 ], [ 160.578918, -8.317495 ], [ 160.919495, -8.317495 ] ] ], [ [ [ 158.359680, -7.318882 ], [ 158.818359, -7.558547 ], [ 159.639587, -8.018436 ], [ 159.873047, -8.336518 ], [ 159.916992, -8.537565 ], [ 159.131470, -8.113615 ], [ 158.584900, -7.754537 ], [ 158.208618, -7.419666 ], [ 158.359680, -7.318882 ] ] ], [ [ [ 157.280273, -7.136323 ], [ 157.500000, -7.316158 ], [ 157.535706, -7.346123 ], [ 157.500000, -7.357019 ], [ 157.337952, -7.403324 ], [ 157.280273, -7.373362 ], [ 157.280273, -7.136323 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 162.012634, 55.899956 ], [ 161.949463, 55.776573 ], [ 161.699524, 55.286937 ], [ 162.117004, 54.856059 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.529968, 52.960221 ], [ 158.230591, 51.944265 ], [ 157.500000, 51.472830 ], [ 157.280273, 51.330612 ], [ 157.280273, 55.899956 ], [ 162.012634, 55.899956 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 168.969727, 61.710706 ], [ 168.969727, 60.541074 ], [ 168.898315, 60.574825 ], [ 168.750000, 60.528915 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.874573, 59.732869 ], [ 163.536987, 59.869641 ], [ 163.215637, 59.211094 ], [ 162.015381, 58.244500 ], [ 162.051086, 57.840365 ], [ 163.190918, 57.615992 ], [ 163.056335, 56.159318 ], [ 162.127991, 56.122591 ], [ 161.949463, 55.776573 ], [ 161.886292, 55.652798 ], [ 157.280273, 55.652798 ], [ 157.280273, 57.900256 ], [ 157.500000, 57.932351 ], [ 158.362427, 58.056085 ], [ 160.150452, 59.314973 ], [ 161.869812, 60.343260 ], [ 163.668823, 61.141910 ], [ 163.929749, 61.606396 ], [ 163.990173, 61.710706 ], [ 168.969727, 61.710706 ] ] ], [ [ [ 162.704773, 61.710706 ], [ 162.655334, 61.642945 ], [ 162.572937, 61.606396 ], [ 160.120239, 60.545126 ], [ 159.414368, 61.606396 ], [ 159.342957, 61.710706 ], [ 162.704773, 61.710706 ] ] ], [ [ [ 158.818359, 61.710706 ], [ 158.024597, 61.606396 ], [ 157.500000, 61.538406 ], [ 157.280273, 61.509596 ], [ 157.280273, 61.710706 ], [ 158.818359, 61.710706 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 168.969727, 66.600676 ], [ 168.969727, 61.501734 ], [ 163.869324, 61.501734 ], [ 163.929749, 61.606396 ], [ 164.470825, 62.551591 ], [ 163.256836, 62.466646 ], [ 162.655334, 61.642945 ], [ 162.572937, 61.606396 ], [ 162.325745, 61.501734 ], [ 159.485779, 61.501734 ], [ 159.414368, 61.606396 ], [ 159.301758, 61.774422 ], [ 158.024597, 61.606396 ], [ 157.280273, 61.509596 ], [ 157.280273, 66.600676 ], [ 168.969727, 66.600676 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 159.364929, 70.685421 ], [ 159.510498, 70.612614 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.722867 ], [ 160.938721, 69.437305 ], [ 162.279053, 69.642759 ], [ 164.050598, 69.668541 ], [ 165.940247, 69.472005 ], [ 167.835388, 69.583438 ], [ 168.750000, 69.121485 ], [ 168.969727, 69.008627 ], [ 168.969727, 66.425537 ], [ 157.280273, 66.425537 ], [ 157.280273, 70.685421 ], [ 159.364929, 70.685421 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 157.280273, 71.008917 ], [ 157.500000, 70.991033 ], [ 158.996887, 70.867191 ], [ 159.510498, 70.612614 ], [ 159.656067, 70.539543 ], [ 157.280273, 70.539543 ], [ 157.280273, 71.008917 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 171.131287, -83.956169 ], [ 171.441650, -83.979259 ], [ 172.282104, -84.041167 ], [ 172.474365, -84.117659 ], [ 173.221436, -84.413700 ], [ 175.984497, -84.158893 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.000000, -85.070048 ], [ 168.530273, -85.070048 ], [ 168.530273, -83.956169 ], [ 171.131287, -83.956169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 30 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 168.530273, -83.286701 ], [ 168.750000, -83.316176 ], [ 168.895569, -83.335967 ], [ 169.403687, -83.825811 ], [ 171.441650, -83.979259 ], [ 171.752014, -84.002262 ], [ 168.530273, -84.002262 ], [ 168.530273, -83.286701 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 168.530273, -70.994611 ], [ 168.750000, -71.044637 ], [ 169.461365, -71.206344 ], [ 170.499573, -71.401793 ], [ 171.205444, -71.696469 ], [ 171.087341, -72.088277 ], [ 170.559998, -72.440507 ], [ 170.109558, -72.891378 ], [ 169.755249, -73.244129 ], [ 169.285583, -73.655637 ], [ 168.750000, -73.719666 ], [ 168.530273, -73.746594 ], [ 168.530273, -70.994611 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 20 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "New Zealand", "sov_a3": "NZ1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "New Zealand", "adm0_a3": "NZL", "geou_dif": 0, "geounit": "New Zealand", "gu_a3": "NZL", "su_dif": 0, "subunit": "New Zealand", "su_a3": "NZL", "brk_diff": 0, "name": "New Zealand", "name_long": "New Zealand", "brk_a3": "NZL", "brk_name": "New Zealand", "abbrev": "N.Z.", "postal": "NZ", "formal_en": "New Zealand", "name_sort": "New Zealand", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 4213418, "gdp_md_est": 116700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NZ", "iso_a3": "NZL", "iso_n3": "554", "un_a3": "554", "wb_a2": "NZ", "wb_a3": "NZL", "woe_id": -99, "adm0_a3_is": "NZL", "adm0_a3_us": "NZL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.963257, -40.813809 ], [ 173.051147, -40.979898 ], [ 173.246155, -41.331451 ], [ 173.864136, -40.979898 ], [ 173.957520, -40.925965 ], [ 173.993225, -40.979898 ], [ 174.245911, -41.347948 ], [ 174.245911, -41.769263 ], [ 173.875122, -42.232585 ], [ 173.221436, -42.968482 ], [ 172.710571, -43.371116 ], [ 173.078613, -43.852355 ], [ 172.306824, -43.864238 ], [ 171.452637, -44.241264 ], [ 171.183472, -44.896741 ], [ 170.614929, -45.907211 ], [ 169.332275, -46.640008 ], [ 168.750000, -46.626806 ], [ 168.530273, -46.621147 ], [ 168.530273, -44.057986 ], [ 168.750000, -43.992815 ], [ 168.947754, -43.935484 ], [ 169.667358, -43.554520 ], [ 170.524292, -43.030753 ], [ 171.123047, -42.512602 ], [ 171.567993, -41.767215 ], [ 171.947021, -41.512691 ], [ 172.089844, -40.979898 ], [ 172.095337, -40.955011 ], [ 172.312317, -40.813809 ], [ 172.963257, -40.813809 ] ] ], [ [ [ 176.355286, -40.813809 ], [ 176.237183, -40.979898 ], [ 176.011963, -41.288126 ], [ 175.237427, -41.687271 ], [ 175.067139, -41.424194 ], [ 174.649658, -41.279871 ], [ 174.861145, -40.979898 ], [ 174.979248, -40.813809 ], [ 176.355286, -40.813809 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 19 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "New Zealand", "sov_a3": "NZ1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "New Zealand", "adm0_a3": "NZL", "geou_dif": 0, "geounit": "New Zealand", "gu_a3": "NZL", "su_dif": 0, "subunit": "New Zealand", "su_a3": "NZL", "brk_diff": 0, "name": "New Zealand", "name_long": "New Zealand", "brk_a3": "NZL", "brk_name": "New Zealand", "abbrev": "N.Z.", "postal": "NZ", "formal_en": "New Zealand", "name_sort": "New Zealand", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 4213418, "gdp_md_est": 116700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NZ", "iso_a3": "NZL", "iso_n3": "554", "un_a3": "554", "wb_a2": "NZ", "wb_a3": "NZL", "woe_id": -99, "adm0_a3_is": "NZL", "adm0_a3_us": "NZL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.798462, -40.492915 ], [ 173.018188, -40.917664 ], [ 173.051147, -40.979898 ], [ 173.144531, -41.145570 ], [ 172.045898, -41.145570 ], [ 172.089844, -40.979898 ], [ 172.095337, -40.955011 ], [ 172.798462, -40.492915 ] ] ], [ [ [ 173.004456, -34.449954 ], [ 173.551025, -35.005253 ], [ 174.328308, -35.263562 ], [ 174.611206, -36.155618 ], [ 175.336304, -37.208457 ], [ 175.355530, -36.525088 ], [ 175.808716, -36.798289 ], [ 175.957031, -37.553288 ], [ 176.761780, -37.879189 ], [ 177.437439, -37.959358 ], [ 178.008728, -37.579413 ], [ 178.516846, -37.694688 ], [ 178.272400, -38.582526 ], [ 177.970276, -39.166271 ], [ 177.206726, -39.144973 ], [ 176.937561, -39.448919 ], [ 177.030945, -39.878127 ], [ 176.885376, -40.065461 ], [ 176.506348, -40.603527 ], [ 176.237183, -40.979898 ], [ 176.116333, -41.145570 ], [ 174.745789, -41.145570 ], [ 174.861145, -40.979898 ], [ 175.226440, -40.457397 ], [ 174.899597, -39.907629 ], [ 173.822937, -39.508279 ], [ 173.850403, -39.144973 ], [ 174.572754, -38.796908 ], [ 174.743042, -38.026459 ], [ 174.696350, -37.381070 ], [ 174.289856, -36.710265 ], [ 174.317322, -36.533916 ], [ 173.839417, -36.120128 ], [ 173.053894, -35.236646 ], [ 172.633667, -34.526924 ], [ 173.004456, -34.449954 ] ] ], [ [ [ 173.993225, -40.979898 ], [ 174.105835, -41.145570 ], [ 173.572998, -41.145570 ], [ 173.864136, -40.979898 ], [ 173.957520, -40.925965 ], [ 173.993225, -40.979898 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 17 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Fiji", "sov_a3": "FJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Fiji", "adm0_a3": "FJI", "geou_dif": 0, "geounit": "Fiji", "gu_a3": "FJI", "su_dif": 0, "subunit": "Fiji", "su_a3": "FJI", "brk_diff": 0, "name": "Fiji", "name_long": "Fiji", "brk_a3": "FJI", "brk_name": "Fiji", "abbrev": "Fiji", "postal": "FJ", "formal_en": "Republic of Fiji", "name_sort": "Fiji", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 944720, "gdp_md_est": 3579, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "FJ", "iso_a3": "FJI", "iso_n3": "242", "un_a3": "242", "wb_a2": "FJ", "wb_a3": "FJI", "woe_id": -99, "adm0_a3_is": "FJI", "adm0_a3_us": "FJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.371277, -17.337530 ], [ 178.717346, -17.628317 ], [ 178.552551, -18.148462 ], [ 177.931824, -18.286734 ], [ 177.379761, -18.164121 ], [ 177.283630, -17.722526 ], [ 177.668152, -17.379474 ], [ 178.124084, -17.502628 ], [ 178.371277, -17.337530 ] ] ], [ [ [ 180.000000, -16.066929 ], [ 180.000000, -16.554594 ], [ 179.362793, -16.799282 ], [ 178.722839, -17.009515 ], [ 178.596497, -16.638823 ], [ 179.096375, -16.433451 ], [ 179.412231, -16.378121 ], [ 180.000000, -16.066929 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 174.122314, 61.710706 ], [ 173.680115, 61.653379 ], [ 173.575745, 61.606396 ], [ 172.147522, 60.950443 ], [ 170.697327, 60.336464 ], [ 170.329285, 59.882047 ], [ 168.898315, 60.574825 ], [ 168.750000, 60.528915 ], [ 168.530273, 60.463988 ], [ 168.530273, 61.710706 ], [ 174.122314, 61.710706 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 180.000000, 66.600676 ], [ 180.000000, 64.980521 ], [ 179.991760, 64.974712 ], [ 178.706360, 64.535453 ], [ 177.409973, 64.608571 ], [ 178.310852, 64.077003 ], [ 178.906860, 63.252175 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.569310 ], [ 179.228210, 62.304964 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.769226 ], [ 173.680115, 61.653379 ], [ 173.575745, 61.606396 ], [ 173.347778, 61.501734 ], [ 168.530273, 61.501734 ], [ 168.530273, 66.600676 ], [ 180.000000, 66.600676 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 170.452881, 70.097399 ], [ 173.641663, 69.817839 ], [ 175.723572, 69.877452 ], [ 178.599243, 69.400615 ], [ 180.000000, 68.964307 ], [ 180.000000, 66.425537 ], [ 168.530273, 66.425537 ], [ 168.530273, 69.232789 ], [ 168.750000, 69.121485 ], [ 169.576721, 68.694509 ], [ 170.815430, 69.014530 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 180.000000, 71.516203 ], [ 180.000000, 70.832953 ], [ 178.901367, 70.781486 ], [ 178.722839, 71.098984 ], [ 180.000000, 71.516203 ] ] ] } } +] } +] } +] } 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 new file mode 100644 index 0000000..7a14669 --- /dev/null +++ b/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-smallest-as-needed.json @@ -0,0 +1,5074 @@ +{ "type": "FeatureCollection", "properties": { +"bounds": "-180.000000,-85.051129,180.000000,83.645130", +"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", +"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\"} } ] }", +"maxzoom": "5", +"minzoom": "0", +"name": "tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-smallest-as-needed.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": { "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": [ [ [ [ -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 ], [ -84.111328, 69.809309 ], [ -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 ], [ -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 ], [ -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 ], [ -67.851562, 45.706179 ], [ -67.851562, 47.100045 ], [ -68.291016, 47.398349 ], [ -68.906250, 47.219568 ], [ -69.257812, 47.457809 ], [ -70.048828, 46.739861 ], [ -70.312500, 45.951150 ], [ -70.664062, 45.460131 ], [ -71.455078, 45.274886 ], [ -71.542969, 45.026950 ], [ -74.882812, 45.026950 ], [ -75.322266, 44.840291 ], [ -76.552734, 44.024422 ], [ -76.904297, 43.644026 ], [ -78.750000, 43.644026 ], [ -79.189453, 43.516689 ], [ -79.013672, 42.875964 ], [ -80.332031, 42.423457 ], [ -81.298828, 42.228517 ], [ -82.441406, 41.705729 ], [ -82.705078, 41.705729 ], [ -83.056641, 41.836828 ], [ -83.144531, 42.098222 ], [ -82.441406, 43.004647 ], [ -82.177734, 43.580391 ], [ -82.617188, 45.398450 ], [ -83.671875, 45.828799 ], [ -83.496094, 46.012224 ], [ -83.671875, 46.134170 ], [ -83.935547, 46.134170 ], [ -84.111328, 46.316584 ], [ -84.199219, 46.558860 ], [ -84.375000, 46.437857 ], [ -84.638672, 46.498392 ], [ -84.550781, 46.558860 ], [ -84.814453, 46.679594 ], [ -84.902344, 46.920255 ], [ -88.417969, 48.341646 ], [ -89.296875, 48.048710 ], [ -89.648438, 48.048710 ], [ -90.878906, 48.283193 ], [ -91.669922, 48.166085 ], [ -92.636719, 48.458352 ], [ -94.394531, 48.690960 ], [ -94.658203, 48.864715 ], [ -94.833984, 49.439557 ], [ -95.185547, 49.439557 ], [ -95.185547, 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 ], [ -129.990234, 55.329144 ], [ -130.078125, 55.924586 ], [ -131.748047, 56.559482 ], [ -133.417969, 58.447733 ], [ -135.000000, 59.310768 ], [ -135.527344, 59.800634 ], [ -136.494141, 59.489726 ], [ -137.460938, 58.950008 ], [ -139.042969, 60.020952 ], [ -140.097656, 60.283408 ], [ -141.064453, 60.326948 ], [ -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 ] ] ], [ [ [ -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 ] ] ], [ [ [ -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 ] ] ], [ [ [ -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 ] ] ], [ [ [ -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 ] ] ], [ [ [ -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.187500, 52.643063 ], [ -132.626953, 53.120405 ], [ -133.066406, 53.435719 ], [ -133.242188, 53.852527 ], [ -133.242188, 54.213861 ] ] ], [ [ [ -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 ] ] ], [ [ [ -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 ] ] ], [ [ [ -85.957031, 65.766727 ], [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.550781, 65.403445 ], [ -83.935547, 65.146115 ], [ -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 ] ] ], [ [ [ -75.937500, 68.301905 ], [ -75.146484, 68.040461 ], [ -75.146484, 67.609221 ], [ -75.234375, 67.474922 ], [ -75.937500, 67.169955 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.609221 ], [ -76.816406, 68.171555 ], [ -75.937500, 68.301905 ] ] ], [ [ [ -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 ] ] ], [ [ [ -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 ] ] ], [ [ [ -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 ] ] ], [ [ [ -105.292969, 73.652545 ], [ -104.501953, 73.428424 ], [ -105.380859, 72.764065 ], [ -106.962891, 73.478485 ], [ -106.611328, 73.602996 ], [ -105.292969, 73.652545 ] ] ], [ [ [ -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 ] ] ], [ [ [ -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 ] ] ], [ [ [ -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.812500, 75.408854 ], [ -92.900391, 75.888091 ], [ -93.955078, 76.331142 ], [ -95.976562, 76.455203 ], [ -97.207031, 76.760541 ], [ -96.767578, 77.176684 ] ] ], [ [ [ -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 ] ] ], [ [ [ -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 ] ] ], [ [ [ -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 ] ] ], [ [ [ -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 ] ] ], [ [ [ -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 ] ] ], [ [ [ -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 ] ] ], [ [ [ -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 ] ] ], [ [ [ -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 ] ] ], [ [ [ -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 ], [ -96.064453, 80.604086 ], [ -95.361328, 80.914558 ], [ -94.306641, 80.983688 ], [ -94.746094, 81.214853 ], [ -92.460938, 81.268385 ] ] ], [ [ [ -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 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.917969, 20.303418 ], [ -155.302734, 20.055931 ], [ -154.863281, 19.559790 ], [ -155.566406, 19.145168 ], [ -155.742188, 18.979026 ], [ -156.005859, 19.062118 ], [ -156.093750, 19.725342 ], [ -155.917969, 20.055931 ], [ -155.917969, 20.303418 ] ] ], [ [ [ -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 ] ] ], [ [ [ -157.324219, 21.289374 ], [ -156.796875, 21.207459 ], [ -156.796875, 21.125498 ], [ -157.412109, 21.125498 ], [ -157.324219, 21.289374 ] ] ], [ [ [ -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 ] ] ], [ [ [ -94.833984, 49.439557 ], [ -94.658203, 48.864715 ], [ -94.394531, 48.690960 ], [ -92.636719, 48.458352 ], [ -91.669922, 48.166085 ], [ -90.878906, 48.283193 ], [ -89.648438, 48.048710 ], [ -89.296875, 48.048710 ], [ -88.417969, 48.341646 ], [ -84.902344, 46.920255 ], [ -84.814453, 46.679594 ], [ -84.550781, 46.558860 ], [ -84.638672, 46.498392 ], [ -84.375000, 46.437857 ], [ -84.199219, 46.558860 ], [ -84.111328, 46.316584 ], [ -83.935547, 46.134170 ], [ -83.671875, 46.134170 ], [ -83.496094, 46.012224 ], [ -83.671875, 45.828799 ], [ -82.617188, 45.398450 ], [ -82.177734, 43.580391 ], [ -82.441406, 43.004647 ], [ -83.144531, 42.098222 ], [ -83.056641, 41.836828 ], [ -82.705078, 41.705729 ], [ -82.441406, 41.705729 ], [ -81.298828, 42.228517 ], [ -80.332031, 42.423457 ], [ -79.013672, 42.875964 ], [ -79.189453, 43.516689 ], [ -78.750000, 43.644026 ], [ -76.904297, 43.644026 ], [ -76.552734, 44.024422 ], [ -75.322266, 44.840291 ], [ -74.882812, 45.026950 ], [ -71.542969, 45.026950 ], [ -71.455078, 45.274886 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.951150 ], [ -70.048828, 46.739861 ], [ -69.257812, 47.457809 ], [ -68.906250, 47.219568 ], [ -68.291016, 47.398349 ], [ -67.851562, 47.100045 ], [ -67.851562, 45.706179 ], [ -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 ], [ -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.322266, 39.027719 ], [ -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.332031, 32.546813 ], [ -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.880859, 27.916767 ], [ -82.705078, 28.613459 ], [ -82.968750, 29.152161 ], [ -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.745610 ], [ -97.207031, 25.878994 ], [ -97.558594, 25.878994 ], [ -98.261719, 26.115986 ], [ -99.052734, 26.431228 ], [ -99.580078, 27.605671 ], [ -100.195312, 28.149503 ], [ -100.986328, 29.382175 ], [ -101.689453, 29.840644 ], [ -102.480469, 29.764377 ], [ -103.183594, 28.998532 ], [ -103.974609, 29.305561 ], [ -104.501953, 29.611670 ], [ -105.117188, 30.675715 ], [ -106.523438, 31.802893 ], [ -108.281250, 31.802893 ], [ -108.281250, 31.353637 ], [ -111.093750, 31.353637 ], [ -114.873047, 32.546813 ], [ -114.785156, 32.768800 ], [ -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 ], [ -95.185547, 49.037868 ], [ -95.185547, 49.439557 ], [ -94.833984, 49.439557 ] ] ], [ [ [ -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 ], [ -141.064453, 60.326948 ], [ -140.097656, 60.283408 ], [ -139.042969, 60.020952 ], [ -137.460938, 58.950008 ], [ -136.494141, 59.489726 ], [ -135.527344, 59.800634 ], [ -135.000000, 59.310768 ], [ -133.417969, 58.447733 ], [ -131.748047, 56.559482 ], [ -130.078125, 55.924586 ], [ -129.990234, 55.329144 ], [ -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 ] ] ], [ [ [ -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 ] ] ], [ [ [ -166.552734, 60.413852 ], [ -165.761719, 60.326948 ], [ -165.585938, 59.933000 ], [ -166.201172, 59.756395 ], [ -167.519531, 60.239811 ], [ -166.552734, 60.413852 ] ] ], [ [ [ -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.683594, 63.391522 ], [ -171.562500, 63.352129 ], [ -171.826172, 63.430860 ], [ -171.738281, 63.821288 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -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 ], [ -55.371094, 72.971189 ], [ -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 ] ] ] } } +, +{ "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": [ [ [ [ 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 ], [ 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 ], [ 152.753906, 58.904646 ], [ 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.605469, 42.423457 ], [ 130.605469, 42.940339 ], [ 131.132812, 42.940339 ], [ 131.220703, 44.150681 ], [ 130.957031, 45.026950 ], [ 131.835938, 45.336702 ], [ 133.066406, 45.151053 ], [ 133.769531, 46.134170 ], [ 134.033203, 47.219568 ], [ 134.472656, 47.635784 ], [ 135.000000, 48.516604 ], [ 133.330078, 48.224673 ], [ 132.451172, 47.813155 ], [ 130.957031, 47.813155 ], [ 130.517578, 48.748945 ], [ 129.375000, 49.496675 ], [ 127.617188, 49.781264 ], [ 127.265625, 50.792047 ], [ 125.859375, 52.802761 ], [ 124.980469, 53.173119 ], [ 123.486328, 53.488046 ], [ 122.167969, 53.435719 ], [ 120.937500, 53.278353 ], [ 120.146484, 52.802761 ], [ 120.673828, 52.536273 ], [ 120.673828, 51.998410 ], [ 120.146484, 51.672555 ], [ 119.267578, 50.625073 ], [ 119.267578, 50.176898 ], [ 117.861328, 49.553726 ], [ 116.630859, 49.894634 ], [ 115.400391, 49.837982 ], [ 114.960938, 50.176898 ], [ 114.345703, 50.289339 ], [ 112.851562, 49.553726 ], [ 111.533203, 49.382373 ], [ 110.654297, 49.152970 ], [ 109.335938, 49.325122 ], [ 108.457031, 49.325122 ], [ 107.841797, 49.837982 ], [ 106.875000, 50.289339 ], [ 105.820312, 50.457504 ], [ 103.623047, 50.120578 ], [ 102.216797, 50.513427 ], [ 102.041016, 51.289406 ], [ 99.931641, 51.672555 ], [ 98.789062, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.173828, 50.457504 ], [ 97.207031, 49.781264 ], [ 95.800781, 50.007739 ], [ 94.746094, 50.064192 ], [ 94.130859, 50.513427 ], [ 93.076172, 50.513427 ], [ 92.197266, 50.847573 ], [ 90.703125, 50.345460 ], [ 88.769531, 49.496675 ], [ 87.275391, 49.267805 ], [ 86.748047, 49.837982 ], [ 85.517578, 49.724479 ], [ 85.078125, 50.120578 ], [ 84.375000, 50.345460 ], [ 83.847656, 50.903033 ], [ 83.320312, 51.124213 ], [ 81.914062, 50.847573 ], [ 80.507812, 51.399206 ], [ 79.980469, 50.903033 ], [ 77.783203, 53.435719 ], [ 76.464844, 54.213861 ], [ 76.816406, 54.521081 ], [ 74.355469, 53.592505 ], [ 73.388672, 53.540307 ], [ 73.476562, 54.059388 ], [ 72.158203, 54.418930 ], [ 71.103516, 54.162434 ], [ 70.839844, 55.178868 ], [ 68.994141, 55.429013 ], [ 68.115234, 54.977614 ], [ 65.654297, 54.622978 ], [ 65.126953, 54.367759 ], [ 61.435547, 54.007769 ], [ 60.908203, 53.696706 ], [ 61.699219, 53.014783 ], [ 60.732422, 52.749594 ], [ 60.908203, 52.482780 ], [ 59.941406, 51.998410 ], [ 61.523438, 51.289406 ], [ 61.259766, 50.847573 ], [ 59.853516, 50.847573 ], [ 59.589844, 50.569283 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.069017 ], [ 55.634766, 50.625073 ], [ 52.294922, 51.727028 ], [ 50.712891, 51.727028 ], [ 48.691406, 50.625073 ], [ 48.515625, 49.894634 ], [ 47.548828, 50.457504 ], [ 46.669922, 49.382373 ], [ 47.021484, 49.152970 ], [ 46.406250, 48.400032 ], [ 47.285156, 47.754098 ], [ 47.988281, 47.754098 ], [ 48.691406, 47.100045 ], [ 48.515625, 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 ], [ 47.900391, 41.442726 ], [ 47.812500, 41.178654 ], [ 47.373047, 41.244772 ], [ 46.669922, 41.836828 ], [ 45.703125, 42.098222 ], [ 45.439453, 42.553080 ], [ 44.472656, 42.747012 ], [ 43.857422, 42.617791 ], [ 43.681641, 42.747012 ], [ 42.363281, 43.261206 ], [ 39.990234, 43.580391 ], [ 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 ], [ 38.232422, 47.576526 ], [ 38.759766, 47.872144 ], [ 39.726562, 47.931066 ], [ 39.814453, 48.283193 ], [ 39.638672, 48.806863 ], [ 40.078125, 49.325122 ], [ 39.990234, 49.610710 ], [ 38.583984, 49.951220 ], [ 37.968750, 49.951220 ], [ 37.353516, 50.401515 ], [ 36.562500, 50.233152 ], [ 35.332031, 50.625073 ], [ 35.332031, 50.792047 ], [ 34.980469, 51.234407 ], [ 34.189453, 51.289406 ], [ 34.101562, 51.618017 ], [ 34.365234, 51.781436 ], [ 33.750000, 52.375599 ], [ 32.695312, 52.268157 ], [ 32.343750, 52.321911 ], [ 32.080078, 52.106505 ], [ 31.728516, 52.106505 ], [ 31.289062, 53.120405 ], [ 31.464844, 53.173119 ], [ 32.255859, 53.173119 ], [ 32.607422, 53.383328 ], [ 32.343750, 53.644638 ], [ 31.728516, 53.800651 ], [ 31.728516, 54.007769 ], [ 31.376953, 54.162434 ], [ 30.673828, 54.826008 ], [ 30.937500, 55.128649 ], [ 30.849609, 55.578345 ], [ 29.882812, 55.825973 ], [ 29.355469, 55.677584 ], [ 29.179688, 55.924586 ], [ 28.125000, 56.170023 ], [ 27.773438, 56.800878 ], [ 27.685547, 57.279043 ], [ 27.246094, 57.515823 ], [ 27.685547, 57.797944 ], [ 27.333984, 58.768200 ], [ 28.125000, 59.310768 ], [ 27.949219, 59.489726 ], [ 29.091797, 60.064840 ], [ 28.037109, 60.543775 ], [ 31.113281, 62.390369 ], [ 31.464844, 62.875188 ], [ 29.970703, 63.587675 ], [ 30.410156, 64.206377 ], [ 29.531250, 64.960766 ], [ 30.146484, 65.838776 ], [ 29.003906, 66.964476 ], [ 29.970703, 67.709445 ], [ 28.388672, 68.366801 ], [ 28.564453, 69.068563 ], [ 29.355469, 69.162558 ], [ 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 ] ] ], [ [ [ 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.943359, 47.813155 ], [ 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 ] ] ], [ [ [ 21.181641, 55.229023 ], [ 22.236328, 55.028022 ], [ 22.675781, 54.876607 ], [ 22.587891, 54.622978 ], [ 22.675781, 54.367759 ], [ 20.830078, 54.316523 ], [ 19.599609, 54.470038 ], [ 19.863281, 54.876607 ], [ 21.181641, 55.229023 ] ] ], [ [ [ -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 ], [ -180.000000, 68.974164 ] ] ], [ [ [ 68.115234, 76.940488 ], [ 68.818359, 76.557743 ], [ 68.115234, 76.247817 ], [ 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 ] ] ], [ [ [ 180.000000, 71.524909 ], [ 180.000000, 70.844673 ], [ 178.857422, 70.786910 ], [ 178.681641, 71.102543 ], [ 180.000000, 71.524909 ] ] ], [ [ [ -179.033203, 71.580532 ], [ -177.626953, 71.272595 ], [ -177.714844, 71.159391 ], [ -178.769531, 70.902268 ], [ -180.000000, 70.844673 ], [ -180.000000, 71.524909 ], [ -179.912109, 71.580532 ], [ -179.033203, 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 ] ] ], [ [ [ 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 ] ] ], [ [ [ 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 ] ] ], [ [ [ 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 ] ] ], [ [ [ 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 ] ] ], [ [ [ 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 ] ] ] ] } } +, +{ "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": [ [ [ [ 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 ] ] ], [ [ [ 123.486328, 53.488046 ], [ 124.980469, 53.173119 ], [ 125.859375, 52.802761 ], [ 127.265625, 50.792047 ], [ 127.617188, 49.781264 ], [ 129.375000, 49.496675 ], [ 130.517578, 48.748945 ], [ 130.957031, 47.813155 ], [ 132.451172, 47.813155 ], [ 133.330078, 48.224673 ], [ 135.000000, 48.516604 ], [ 134.472656, 47.635784 ], [ 134.033203, 47.219568 ], [ 133.769531, 46.134170 ], [ 133.066406, 45.151053 ], [ 131.835938, 45.336702 ], [ 130.957031, 45.026950 ], [ 131.220703, 44.150681 ], [ 131.132812, 42.940339 ], [ 130.605469, 42.940339 ], [ 130.605469, 42.423457 ], [ 129.990234, 43.004647 ], [ 129.550781, 42.488302 ], [ 127.968750, 42.032974 ], [ 128.144531, 41.508577 ], [ 127.265625, 41.508577 ], [ 126.826172, 41.836828 ], [ 126.123047, 41.112469 ], [ 125.068359, 40.580585 ], [ 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.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.962891, 21.861499 ], [ 106.523438, 22.268764 ], [ 106.699219, 22.836946 ], [ 105.732422, 22.998852 ], [ 105.292969, 23.402765 ], [ 104.414062, 22.836946 ], [ 102.656250, 22.755921 ], [ 101.601562, 22.350076 ], [ 101.777344, 21.207459 ], [ 101.250000, 21.207459 ], [ 101.074219, 21.861499 ], [ 100.371094, 21.616579 ], [ 99.228516, 22.187405 ], [ 99.492188, 22.998852 ], [ 98.876953, 23.160563 ], [ 98.613281, 24.126702 ], [ 97.558594, 23.966176 ], [ 97.646484, 25.085599 ], [ 98.613281, 25.958045 ], [ 98.613281, 27.527758 ], [ 98.173828, 27.761330 ], [ 97.910156, 28.381735 ], [ 97.294922, 28.304381 ], [ 96.240234, 28.459033 ], [ 96.503906, 28.844674 ], [ 96.064453, 29.458731 ], [ 95.361328, 29.075375 ], [ 94.482422, 29.305561 ], [ 93.339844, 28.690588 ], [ 92.460938, 27.916767 ], [ 91.669922, 27.839076 ], [ 91.230469, 28.071980 ], [ 90.703125, 28.071980 ], [ 90.000000, 28.304381 ], [ 89.472656, 28.071980 ], [ 88.769531, 27.371767 ], [ 88.681641, 28.149503 ], [ 88.066406, 27.916767 ], [ 85.781250, 28.226970 ], [ 84.990234, 28.690588 ], [ 84.199219, 28.844674 ], [ 83.847656, 29.382175 ], [ 83.320312, 29.535230 ], [ 82.265625, 30.145127 ], [ 81.474609, 30.448674 ], [ 81.035156, 30.221102 ], [ 78.662109, 31.578535 ], [ 78.398438, 32.620870 ], [ 79.101562, 32.546813 ], [ 79.189453, 33.063924 ], [ 78.750000, 33.578015 ], [ 78.837891, 34.379713 ], [ 77.783203, 35.532226 ], [ 76.113281, 35.960223 ], [ 75.849609, 36.668419 ], [ 75.146484, 37.160317 ], [ 74.970703, 37.439974 ], [ 74.794922, 38.410558 ], [ 74.179688, 38.616870 ], [ 73.916016, 38.548165 ], [ 73.652344, 39.436193 ], [ 73.916016, 39.707187 ], [ 73.740234, 39.909736 ], [ 74.707031, 40.380028 ], [ 75.410156, 40.580585 ], [ 76.464844, 40.446947 ], [ 76.904297, 41.112469 ], [ 78.134766, 41.244772 ], [ 78.486328, 41.640078 ], [ 80.068359, 42.163403 ], [ 80.244141, 42.358544 ], [ 80.156250, 42.940339 ], [ 80.859375, 43.197167 ], [ 79.892578, 44.964798 ], [ 81.914062, 45.336702 ], [ 82.441406, 45.583290 ], [ 83.144531, 47.338823 ], [ 85.078125, 47.040182 ], [ 85.693359, 47.457809 ], [ 85.693359, 48.458352 ], [ 86.572266, 48.574790 ], [ 87.275391, 49.267805 ], [ 87.714844, 49.325122 ], [ 87.978516, 48.632909 ], [ 88.769531, 48.107431 ], [ 90.263672, 47.694974 ], [ 90.966797, 46.920255 ], [ 90.527344, 45.767523 ], [ 90.878906, 45.336702 ], [ 93.427734, 45.026950 ], [ 94.658203, 44.402392 ], [ 95.273438, 44.276671 ], [ 95.712891, 43.325178 ], [ 96.328125, 42.747012 ], [ 97.382812, 42.811522 ], [ 99.492188, 42.553080 ], [ 100.810547, 42.682435 ], [ 101.777344, 42.553080 ], [ 103.271484, 41.967659 ], [ 104.501953, 41.967659 ], [ 104.941406, 41.640078 ], [ 106.083984, 42.163403 ], [ 107.666016, 42.488302 ], [ 109.160156, 42.553080 ], [ 110.390625, 42.875964 ], [ 111.093750, 43.452919 ], [ 111.796875, 43.771094 ], [ 111.269531, 44.465151 ], [ 111.796875, 45.151053 ], [ 113.378906, 44.840291 ], [ 114.433594, 45.398450 ], [ 115.927734, 45.767523 ], [ 116.630859, 46.437857 ], [ 117.333984, 46.679594 ], [ 118.828125, 46.860191 ], [ 119.619141, 46.739861 ], [ 119.707031, 47.100045 ], [ 118.828125, 47.754098 ], [ 118.037109, 48.107431 ], [ 117.246094, 47.754098 ], [ 116.279297, 47.872144 ], [ 115.664062, 47.754098 ], [ 115.400391, 48.166085 ], [ 116.630859, 49.894634 ], [ 117.861328, 49.553726 ], [ 119.267578, 50.176898 ], [ 119.267578, 50.625073 ], [ 120.146484, 51.672555 ], [ 120.673828, 51.998410 ], [ 120.673828, 52.536273 ], [ 120.146484, 52.802761 ], [ 120.937500, 53.278353 ], [ 122.167969, 53.435719 ], [ 123.486328, 53.488046 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -51.064453, 3.513421 ], [ -50.537109, 1.933227 ], [ -50.009766, 1.757537 ], [ -49.965820, 1.054628 ], [ -50.712891, 0.263671 ], [ -50.493164, 0.000000 ], [ -50.405273, -0.043945 ], [ -48.647461, -0.219726 ], [ -48.603516, -1.230374 ], [ -47.856445, -0.571280 ], [ -46.582031, -0.922812 ], [ -44.912109, -1.537901 ], [ -44.428711, -2.108899 ], [ -44.604492, -2.679687 ], [ -43.461914, -2.372369 ], [ -41.484375, -2.899153 ], [ -39.990234, -2.855263 ], [ -38.540039, -3.688855 ], [ -37.265625, -4.784469 ], [ -36.474609, -5.090944 ], [ -35.639648, -5.134715 ], [ -35.244141, -5.441022 ], [ -34.760742, -7.318882 ], [ -35.156250, -8.971897 ], [ -35.639648, -9.622414 ], [ -37.089844, -11.005904 ], [ -37.705078, -12.168226 ], [ -38.452148, -13.025966 ], [ -38.715820, -13.025966 ], [ -38.979492, -13.752725 ], [ -38.891602, -15.665354 ], [ -39.287109, -17.853290 ], [ -39.594727, -18.229351 ], [ -39.770508, -19.559790 ], [ -40.781250, -20.879343 ], [ -40.957031, -21.902278 ], [ -41.791992, -22.350076 ], [ -42.011719, -22.958393 ], [ -43.110352, -22.958393 ], [ -44.648438, -23.322080 ], [ -45.395508, -23.765237 ], [ -46.494141, -24.086589 ], [ -47.680664, -24.846565 ], [ -48.515625, -25.839449 ], [ -48.647461, -26.588527 ], [ -48.515625, -27.137368 ], [ -48.691406, -28.149503 ], [ -48.911133, -28.652031 ], [ -49.614258, -29.190533 ], [ -50.712891, -30.977609 ], [ -51.591797, -31.765537 ], [ -52.294922, -32.212801 ], [ -52.734375, -33.174342 ], [ -53.393555, -33.760882 ], [ -53.657227, -33.174342 ], [ -53.217773, -32.694866 ], [ -53.789062, -32.026706 ], [ -55.634766, -30.826781 ], [ -55.986328, -30.864510 ], [ -56.997070, -30.107118 ], [ -57.656250, -30.183122 ], [ -56.293945, -28.844674 ], [ -55.195312, -27.877928 ], [ -53.657227, -26.902477 ], [ -53.657227, -26.115986 ], [ -54.140625, -25.522615 ], [ -54.667969, -25.720735 ], [ -54.316406, -24.567108 ], [ -54.316406, -24.006326 ], [ -54.667969, -23.805450 ], [ -55.063477, -23.966176 ], [ -55.415039, -23.926013 ], [ -55.546875, -23.563987 ], [ -55.634766, -22.634293 ], [ -55.810547, -22.350076 ], [ -56.513672, -22.065278 ], [ -56.909180, -22.268764 ], [ -57.963867, -22.065278 ], [ -57.875977, -20.715015 ], [ -58.183594, -20.138470 ], [ -57.875977, -19.932041 ], [ -57.963867, -19.394068 ], [ -57.700195, -18.937464 ], [ -57.524414, -18.145852 ], [ -57.744141, -17.518344 ], [ -58.315430, -17.266728 ], [ -58.403320, -16.846605 ], [ -58.271484, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.556641, -15.072124 ], [ -60.292969, -15.072124 ], [ -60.292969, -14.604847 ], [ -60.468750, -14.349548 ], [ -60.512695, -13.752725 ], [ -61.127930, -13.453737 ], [ -61.743164, -13.453737 ], [ -62.138672, -13.197165 ], [ -62.841797, -12.983148 ], [ -63.237305, -12.597455 ], [ -64.335938, -12.425848 ], [ -65.434570, -11.566144 ], [ -65.346680, -10.876465 ], [ -65.478516, -10.487812 ], [ -65.346680, -9.752370 ], [ -66.665039, -9.925566 ], [ -67.192383, -10.271681 ], [ -68.071289, -10.703792 ], [ -68.291016, -11.005904 ], [ -68.818359, -11.005904 ], [ -69.565430, -10.919618 ], [ -70.136719, -11.092166 ], [ -70.576172, -11.005904 ], [ -70.488281, -9.449062 ], [ -71.323242, -10.055403 ], [ -72.202148, -10.012130 ], [ -72.597656, -9.492408 ], [ -73.256836, -9.449062 ], [ -73.037109, -9.015302 ], [ -73.608398, -8.407168 ], [ -74.003906, -7.493196 ], [ -73.740234, -7.318882 ], [ -73.740234, -6.882800 ], [ -73.125000, -6.620957 ], [ -73.256836, -6.053161 ], [ -72.993164, -5.703448 ], [ -72.905273, -5.266008 ], [ -71.762695, -4.565474 ], [ -70.971680, -4.390229 ], [ -70.795898, -4.214943 ], [ -69.916992, -4.258768 ], [ -69.433594, -1.098565 ], [ -69.609375, -0.527336 ], [ -70.048828, -0.175781 ], [ -70.048828, 0.571280 ], [ -69.477539, 0.747049 ], [ -69.257812, 0.615223 ], [ -69.257812, 1.010690 ], [ -69.829102, 1.098565 ], [ -69.829102, 1.757537 ], [ -67.895508, 1.713612 ], [ -67.543945, 2.064982 ], [ -67.280273, 1.757537 ], [ -67.104492, 1.142502 ], [ -66.884766, 1.274309 ], [ -66.357422, 0.747049 ], [ -65.566406, 0.790990 ], [ -65.390625, 1.098565 ], [ -64.204102, 1.493971 ], [ -64.116211, 1.933227 ], [ -63.369141, 2.240640 ], [ -63.457031, 2.416276 ], [ -64.291992, 2.504085 ], [ -64.423828, 3.162456 ], [ -64.423828, 3.513421 ], [ -59.853516, 3.513421 ], [ -59.985352, 2.767478 ], [ -59.721680, 2.284551 ], [ -59.677734, 1.801461 ], [ -59.062500, 1.318243 ], [ -58.579102, 1.274309 ], [ -58.447266, 1.493971 ], [ -58.139648, 1.537901 ], [ -57.700195, 1.713612 ], [ -57.348633, 1.977147 ], [ -56.030273, 1.845384 ], [ -55.942383, 2.064982 ], [ -56.074219, 2.240640 ], [ -55.986328, 2.547988 ], [ -55.590820, 2.460181 ], [ -55.107422, 2.547988 ], [ -54.096680, 2.108899 ], [ -53.789062, 2.416276 ], [ -53.569336, 2.372369 ], [ -53.437500, 2.064982 ], [ -52.954102, 2.152814 ], [ -52.558594, 2.547988 ], [ -52.075195, 3.513421 ], [ -51.064453, 3.513421 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.642578, -52.616390 ], [ -68.291016, -53.094024 ], [ -67.763672, -53.826597 ], [ -66.489258, -54.444492 ], [ -65.083008, -54.699234 ], [ -65.522461, -55.178868 ], [ -66.489258, -55.229023 ], [ -66.972656, -54.876607 ], [ -68.642578, -54.851315 ], [ -68.642578, -52.616390 ] ] ], [ [ [ -66.313477, -21.820708 ], [ -64.995117, -22.065278 ], [ -64.379883, -22.796439 ], [ -64.028320, -21.983801 ], [ -62.885742, -22.024546 ], [ -62.709961, -22.228090 ], [ -60.864258, -23.845650 ], [ -60.029297, -24.006326 ], [ -58.842773, -24.766785 ], [ -57.788086, -25.125393 ], [ -57.656250, -25.601902 ], [ -58.623047, -27.098254 ], [ -57.612305, -27.371767 ], [ -56.513672, -27.527758 ], [ -55.722656, -27.371767 ], [ -54.799805, -26.588527 ], [ -54.667969, -25.720735 ], [ -54.140625, -25.522615 ], [ -53.657227, -26.115986 ], [ -53.657227, -26.902477 ], [ -55.195312, -27.877928 ], [ -56.293945, -28.844674 ], [ -57.656250, -30.183122 ], [ -58.183594, -32.026706 ], [ -58.139648, -33.027088 ], [ -58.359375, -33.247876 ], [ -58.535156, -34.415973 ], [ -57.260742, -35.281501 ], [ -57.392578, -35.960223 ], [ -56.777344, -36.385913 ], [ -56.821289, -36.879621 ], [ -57.788086, -38.169114 ], [ -59.238281, -38.719805 ], [ -61.259766, -38.925229 ], [ -62.358398, -38.822591 ], [ -62.138672, -39.402244 ], [ -62.358398, -40.145289 ], [ -62.182617, -40.647304 ], [ -62.753906, -41.013066 ], [ -63.808594, -41.145570 ], [ -64.775391, -40.780541 ], [ -65.126953, -41.046217 ], [ -64.995117, -42.032974 ], [ -64.335938, -42.358544 ], [ -63.764648, -42.032974 ], [ -63.500977, -42.553080 ], [ -64.379883, -42.843751 ], [ -65.214844, -43.484812 ], [ -65.346680, -44.496505 ], [ -65.566406, -45.026950 ], [ -66.533203, -45.026950 ], [ -67.324219, -45.521744 ], [ -67.587891, -46.286224 ], [ -66.621094, -47.010226 ], [ -65.654297, -47.219568 ], [ -66.005859, -48.107431 ], [ -67.192383, -48.690960 ], [ -67.851562, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.169922, -50.708634 ], [ -68.818359, -51.754240 ], [ -68.159180, -52.348763 ], [ -69.521484, -52.133488 ], [ -71.938477, -51.998410 ], [ -72.333984, -51.399206 ], [ -72.333984, -50.652943 ], [ -72.993164, -50.736455 ], [ -73.344727, -50.373496 ], [ -73.432617, -49.296472 ], [ -72.685547, -48.864715 ], [ -72.333984, -48.224673 ], [ -72.465820, -47.724545 ], [ -71.938477, -46.860191 ], [ -71.586914, -45.552525 ], [ -71.674805, -44.964798 ], [ -71.235352, -44.777936 ], [ -71.367188, -44.402392 ], [ -71.806641, -44.182204 ], [ -71.499023, -43.771094 ], [ -71.938477, -43.389082 ], [ -72.158203, -42.228517 ], [ -71.762695, -42.032974 ], [ -71.938477, -40.813809 ], [ -71.455078, -38.891033 ], [ -70.839844, -38.548165 ], [ -71.147461, -37.544577 ], [ -71.147461, -36.633162 ], [ -70.400391, -35.995785 ], [ -70.400391, -35.137879 ], [ -69.829102, -34.161818 ], [ -69.829102, -33.247876 ], [ -70.092773, -33.063924 ], [ -70.576172, -31.353637 ], [ -69.960938, -30.334954 ], [ -70.048828, -29.343875 ], [ -69.697266, -28.459033 ], [ -69.038086, -27.488781 ], [ -68.334961, -26.863281 ], [ -68.598633, -26.470573 ], [ -68.422852, -26.155438 ], [ -68.422852, -24.487149 ], [ -67.368164, -24.006326 ], [ -67.016602, -22.958393 ], [ -67.148438, -22.715390 ], [ -66.313477, -21.820708 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -95.229492, 71.924528 ], [ -93.911133, 71.760191 ], [ -92.900391, 71.328950 ], [ -91.538086, 70.199994 ], [ -92.416992, 69.702868 ], [ -90.571289, 69.503765 ], [ -90.571289, 68.479926 ], [ -89.252930, 69.271709 ], [ -88.022461, 68.624544 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.925140 ], [ -85.605469, 68.800041 ], [ -85.561523, 69.885010 ], [ -84.111328, 69.809309 ], [ -82.661133, 69.672358 ], [ -81.298828, 69.162558 ], [ -81.254883, 68.672544 ], [ -82.001953, 68.138852 ], [ -81.298828, 67.609221 ], [ -81.386719, 67.118748 ], [ -83.364258, 66.425537 ], [ -84.770508, 66.266856 ], [ -85.781250, 66.565747 ], [ -86.088867, 66.071546 ], [ -87.055664, 65.219894 ], [ -87.363281, 64.792848 ], [ -88.505859, 64.110602 ], [ -89.956055, 64.033744 ], [ -90.747070, 63.626745 ], [ -90.791016, 62.975198 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.042138 ], [ -94.262695, 60.909073 ], [ -94.658203, 60.130564 ], [ -94.702148, 58.950008 ], [ -93.251953, 58.790978 ], [ -92.768555, 57.868132 ], [ -92.329102, 57.088515 ], [ -90.922852, 57.302790 ], [ -89.077148, 56.872996 ], [ -88.066406, 56.486762 ], [ -87.363281, 56.022948 ], [ -86.088867, 55.727110 ], [ -85.034180, 55.304138 ], [ -83.364258, 55.254077 ], [ -82.309570, 55.153766 ], [ -82.441406, 54.290882 ], [ -82.133789, 53.278353 ], [ -81.430664, 52.160455 ], [ -79.936523, 51.234407 ], [ -79.145508, 51.536086 ], [ -78.618164, 52.562995 ], [ -79.145508, 54.162434 ], [ -79.848633, 54.673831 ], [ -78.266602, 55.153766 ], [ -77.124023, 55.850650 ], [ -76.552734, 56.535258 ], [ -76.640625, 57.207710 ], [ -77.343750, 58.054632 ], [ -78.530273, 58.813742 ], [ -77.343750, 59.866883 ], [ -77.783203, 60.759160 ], [ -78.134766, 62.329208 ], [ -77.431641, 62.552857 ], [ -75.717773, 62.288365 ], [ -74.707031, 62.186014 ], [ -73.872070, 62.451406 ], [ -72.949219, 62.124436 ], [ -71.718750, 61.543641 ], [ -71.411133, 61.143235 ], [ -69.609375, 61.079544 ], [ -69.653320, 60.239811 ], [ -69.301758, 58.972667 ], [ -68.378906, 58.813742 ], [ -67.675781, 58.217025 ], [ -66.225586, 58.768200 ], [ -65.258789, 59.888937 ], [ -64.599609, 60.348696 ], [ -63.808594, 59.445075 ], [ -61.435547, 56.968936 ], [ -61.831055, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.229023 ], [ -58.007812, 54.952386 ], [ -57.348633, 54.648413 ], [ -56.953125, 53.800651 ], [ -56.162109, 53.670680 ], [ -55.766602, 53.278353 ], [ -55.722656, 52.160455 ], [ -57.128906, 51.426614 ], [ -58.798828, 51.069017 ], [ -60.073242, 50.261254 ], [ -61.743164, 50.092393 ], [ -63.896484, 50.317408 ], [ -65.390625, 50.317408 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.525208 ], [ -68.554688, 49.095452 ], [ -69.960938, 47.754098 ], [ -71.147461, 46.830134 ], [ -70.268555, 47.010226 ], [ -68.686523, 48.312428 ], [ -66.577148, 49.152970 ], [ -65.083008, 49.239121 ], [ -64.204102, 48.748945 ], [ -65.126953, 48.078079 ], [ -64.819336, 47.010226 ], [ -64.511719, 46.255847 ], [ -63.193359, 45.767523 ], [ -61.523438, 45.890008 ], [ -60.556641, 47.010226 ], [ -60.468750, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.274886 ], [ -63.281250, 44.684277 ], [ -64.248047, 44.276671 ], [ -65.390625, 43.548548 ], [ -66.137695, 43.644026 ], [ -66.181641, 44.465151 ], [ -64.467773, 45.305803 ], [ -66.049805, 45.274886 ], [ -67.148438, 45.151053 ], [ -67.807617, 45.706179 ], [ -67.807617, 47.070122 ], [ -68.247070, 47.368594 ], [ -68.906250, 47.189712 ], [ -69.257812, 47.457809 ], [ -70.004883, 46.709736 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.103516, 45.305803 ], [ -71.411133, 45.274886 ], [ -71.542969, 45.026950 ], [ -74.882812, 45.026950 ], [ -75.322266, 44.840291 ], [ -76.508789, 44.024422 ], [ -76.860352, 43.644026 ], [ -78.750000, 43.644026 ], [ -79.189453, 43.484812 ], [ -79.013672, 43.293200 ], [ -78.969727, 42.875964 ], [ -80.288086, 42.391009 ], [ -81.298828, 42.228517 ], [ -82.441406, 41.705729 ], [ -82.705078, 41.705729 ], [ -83.056641, 41.836828 ], [ -83.144531, 42.000325 ], [ -83.144531, 42.098222 ], [ -82.441406, 43.004647 ], [ -82.177734, 43.580391 ], [ -82.573242, 45.367584 ], [ -83.627930, 45.828799 ], [ -83.496094, 46.012224 ], [ -83.627930, 46.134170 ], [ -83.891602, 46.134170 ], [ -84.111328, 46.286224 ], [ -84.155273, 46.528635 ], [ -84.375000, 46.437857 ], [ -84.638672, 46.468133 ], [ -84.550781, 46.558860 ], [ -84.814453, 46.649436 ], [ -84.902344, 46.920255 ], [ -88.417969, 48.312428 ], [ -89.296875, 48.048710 ], [ -89.604492, 48.019324 ], [ -90.834961, 48.283193 ], [ -91.669922, 48.166085 ], [ -92.636719, 48.458352 ], [ -94.350586, 48.690960 ], [ -94.658203, 48.864715 ], [ -94.833984, 49.410973 ], [ -95.185547, 49.410973 ], [ -95.185547, 49.009051 ], [ -123.002930, 49.009051 ], [ -124.936523, 50.007739 ], [ -125.639648, 50.429518 ], [ -127.441406, 50.847573 ], [ -128.012695, 51.727028 ], [ -127.880859, 52.348763 ], [ -129.155273, 52.776186 ], [ -129.331055, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.561523, 54.826008 ], [ -129.990234, 55.304138 ], [ -130.034180, 55.924586 ], [ -131.748047, 56.559482 ], [ -133.374023, 58.424730 ], [ -134.296875, 58.881942 ], [ -134.956055, 59.288332 ], [ -135.483398, 59.800634 ], [ -136.494141, 59.467408 ], [ -137.460938, 58.927334 ], [ -138.383789, 59.578851 ], [ -139.042969, 60.020952 ], [ -140.053711, 60.283408 ], [ -141.020508, 60.326948 ], [ -141.020508, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 69.005675 ], [ -136.538086, 68.911005 ], [ -135.659180, 69.318320 ], [ -134.428711, 69.641804 ], [ -132.934570, 69.519147 ], [ -131.440430, 69.945375 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.794136 ], [ -128.364258, 70.020587 ], [ -128.144531, 70.495574 ], [ -127.485352, 70.377854 ], [ -125.771484, 69.488372 ], [ -124.453125, 70.170201 ], [ -124.321289, 69.411242 ], [ -123.090820, 69.565226 ], [ -122.695312, 69.869892 ], [ -121.508789, 69.809309 ], [ -119.970703, 69.380313 ], [ -117.641602, 69.021414 ], [ -116.235352, 68.847665 ], [ -115.268555, 68.911005 ], [ -113.906250, 68.399180 ], [ -115.312500, 67.908619 ], [ -113.510742, 67.692771 ], [ -110.830078, 67.809245 ], [ -109.951172, 67.991108 ], [ -108.896484, 67.390599 ], [ -107.797852, 67.892086 ], [ -108.852539, 68.318146 ], [ -108.193359, 68.656555 ], [ -106.962891, 68.704486 ], [ -106.171875, 68.800041 ], [ -105.380859, 68.576441 ], [ -104.370117, 68.024022 ], [ -103.227539, 68.106102 ], [ -101.469727, 67.659386 ], [ -99.931641, 67.809245 ], [ -98.481445, 67.792641 ], [ -98.569336, 68.415352 ], [ -97.690430, 68.592487 ], [ -96.152344, 68.253111 ], [ -96.152344, 67.305976 ], [ -95.493164, 68.106102 ], [ -94.702148, 68.073305 ], [ -94.262695, 69.084257 ], [ -95.317383, 69.687618 ], [ -96.503906, 70.095529 ], [ -96.416016, 71.201920 ], [ -95.229492, 71.924528 ] ] ], [ [ [ -55.898438, 51.645294 ], [ -55.415039, 51.590723 ], [ -56.162109, 50.708634 ], [ -56.821289, 49.837982 ], [ -56.162109, 50.176898 ], [ -55.502930, 49.951220 ], [ -55.854492, 49.610710 ], [ -54.975586, 49.325122 ], [ -54.492188, 49.582226 ], [ -53.481445, 49.267805 ], [ -53.789062, 48.545705 ], [ -53.129883, 48.690960 ], [ -52.998047, 48.166085 ], [ -52.690430, 47.546872 ], [ -53.085938, 46.679594 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.830134 ], [ -53.964844, 47.635784 ], [ -54.272461, 47.754098 ], [ -55.415039, 46.890232 ], [ -56.030273, 46.920255 ], [ -55.327148, 47.398349 ], [ -56.293945, 47.635784 ], [ -57.348633, 47.576526 ], [ -59.282227, 47.606163 ], [ -59.458008, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.545705 ], [ -58.403320, 49.152970 ], [ -57.392578, 50.736455 ], [ -56.777344, 51.289406 ], [ -55.898438, 51.645294 ] ] ], [ [ [ -64.028320, 47.040182 ], [ -63.676758, 46.558860 ], [ -62.973633, 46.437857 ], [ -62.050781, 46.468133 ], [ -62.534180, 46.042736 ], [ -62.885742, 45.981695 ], [ -64.160156, 46.407564 ], [ -64.423828, 46.739861 ], [ -64.028320, 47.040182 ] ] ], [ [ [ -128.364258, 50.792047 ], [ -126.738281, 50.401515 ], [ -125.771484, 50.317408 ], [ -124.936523, 49.496675 ], [ -123.925781, 49.066668 ], [ -123.530273, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.683594, 48.835797 ], [ -125.991211, 49.181703 ], [ -126.870117, 49.553726 ], [ -127.045898, 49.837982 ], [ -128.100586, 50.007739 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.792047 ] ] ], [ [ [ -64.204102, 49.979488 ], [ -62.885742, 49.724479 ], [ -61.875000, 49.296472 ], [ -61.831055, 49.124219 ], [ -62.314453, 49.095452 ], [ -63.632812, 49.410973 ], [ -64.555664, 49.894634 ], [ -64.204102, 49.979488 ] ] ], [ [ [ -133.198242, 54.188155 ], [ -132.714844, 54.059388 ], [ -131.791992, 54.136696 ], [ -132.055664, 52.988337 ], [ -131.220703, 52.187405 ], [ -131.616211, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.583008, 53.120405 ], [ -133.066406, 53.435719 ], [ -133.242188, 53.852527 ], [ -133.198242, 54.188155 ] ] ], [ [ [ -85.869141, 73.812574 ], [ -86.572266, 73.163173 ], [ -85.781250, 72.541319 ], [ -84.858398, 73.340461 ], [ -82.353516, 73.751205 ], [ -80.639648, 72.724958 ], [ -80.771484, 72.073911 ], [ -78.793945, 72.355789 ], [ -77.827148, 72.751039 ], [ -75.629883, 72.248917 ], [ -74.267578, 71.773941 ], [ -74.135742, 71.343013 ], [ -72.246094, 71.566641 ], [ -71.235352, 70.931004 ], [ -68.818359, 70.539543 ], [ -67.939453, 70.125430 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -66.489258, 68.073305 ], [ -64.863281, 67.858985 ], [ -63.457031, 66.930060 ], [ -61.875000, 66.878345 ], [ -62.182617, 66.160511 ], [ -63.940430, 65.016506 ], [ -65.170898, 65.440002 ], [ -66.752930, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.159180, 65.694476 ], [ -67.104492, 65.109148 ], [ -65.742188, 64.661517 ], [ -65.346680, 64.396938 ], [ -64.687500, 63.411198 ], [ -65.039062, 62.694310 ], [ -66.313477, 62.955223 ], [ -68.818359, 63.763065 ], [ -66.357422, 62.288365 ], [ -66.181641, 61.938950 ], [ -68.906250, 62.349609 ], [ -71.059570, 62.915233 ], [ -72.246094, 63.411198 ], [ -71.894531, 63.685248 ], [ -74.838867, 64.680318 ], [ -74.838867, 64.396938 ], [ -77.739258, 64.244595 ], [ -78.574219, 64.586185 ], [ -77.915039, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.311523, 65.820782 ], [ -73.959961, 66.319861 ], [ -72.685547, 67.289015 ], [ -72.949219, 67.742759 ], [ -73.344727, 68.073305 ], [ -74.882812, 68.560384 ], [ -76.904297, 68.895187 ], [ -76.245117, 69.162558 ], [ -77.299805, 69.778952 ], [ -78.178711, 69.839622 ], [ -78.969727, 70.170201 ], [ -79.497070, 69.885010 ], [ -81.342773, 69.748551 ], [ -84.946289, 69.975493 ], [ -87.099609, 70.274290 ], [ -88.725586, 70.422079 ], [ -89.516602, 70.772443 ], [ -88.505859, 71.230221 ], [ -89.912109, 71.230221 ], [ -90.219727, 72.235514 ], [ -89.472656, 73.137697 ], [ -88.417969, 73.540855 ], [ -85.869141, 73.812574 ] ] ], [ [ [ -79.936523, 62.390369 ], [ -79.541016, 62.369996 ], [ -79.277344, 62.165502 ], [ -79.672852, 61.648162 ], [ -80.112305, 61.731526 ], [ -80.375977, 62.021528 ], [ -79.936523, 62.390369 ] ] ], [ [ [ -81.914062, 62.915233 ], [ -81.914062, 62.714462 ], [ -83.100586, 62.165502 ], [ -83.803711, 62.186014 ], [ -84.023438, 62.471724 ], [ -83.276367, 62.915233 ], [ -81.914062, 62.915233 ] ] ], [ [ [ -85.913086, 65.748683 ], [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.506836, 65.385147 ], [ -83.891602, 65.127638 ], [ -82.792969, 64.774125 ], [ -81.650391, 64.472794 ], [ -81.562500, 63.995235 ], [ -80.859375, 64.072200 ], [ -80.112305, 63.743631 ], [ -80.991211, 63.430860 ], [ -82.573242, 63.665760 ], [ -83.144531, 64.110602 ], [ -84.111328, 63.587675 ], [ -85.561523, 63.054959 ], [ -85.869141, 63.646259 ], [ -87.231445, 63.548552 ], [ -86.396484, 64.052978 ], [ -86.264648, 64.830254 ], [ -85.913086, 65.748683 ] ] ], [ [ [ -75.937500, 68.301905 ], [ -75.146484, 68.024022 ], [ -75.146484, 67.592475 ], [ -75.234375, 67.458082 ], [ -75.893555, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.592475 ], [ -76.816406, 68.155209 ], [ -75.937500, 68.301905 ] ] ], [ [ [ -98.261719, 70.155288 ], [ -96.591797, 69.687618 ], [ -95.668945, 69.115611 ], [ -96.284180, 68.768235 ], [ -97.646484, 69.068563 ], [ -98.437500, 68.958391 ], [ -99.799805, 69.411242 ], [ -98.920898, 69.718107 ], [ -98.261719, 70.155288 ] ] ], [ [ [ -115.224609, 73.315246 ], [ -114.169922, 73.124945 ], [ -114.697266, 72.659588 ], [ -112.456055, 72.958315 ], [ -111.093750, 72.462039 ], [ -109.951172, 72.971189 ], [ -109.028320, 72.633374 ], [ -108.193359, 71.663663 ], [ -107.709961, 72.073911 ], [ -108.413086, 73.099413 ], [ -107.534180, 73.239377 ], [ -106.523438, 73.086633 ], [ -105.424805, 72.672681 ], [ -104.809570, 71.705093 ], [ -104.501953, 71.002660 ], [ -102.788086, 70.510241 ], [ -100.986328, 70.035597 ], [ -101.118164, 69.595890 ], [ -102.744141, 69.519147 ], [ -102.128906, 69.131271 ], [ -102.436523, 68.768235 ], [ -104.282227, 68.911005 ], [ -105.996094, 69.193800 ], [ -107.138672, 69.131271 ], [ -109.028320, 68.784144 ], [ -113.334961, 68.544315 ], [ -113.862305, 69.021414 ], [ -115.224609, 69.287257 ], [ -116.147461, 69.178184 ], [ -117.377930, 69.960439 ], [ -116.674805, 70.080562 ], [ -115.136719, 70.244604 ], [ -113.730469, 70.199994 ], [ -112.456055, 70.377854 ], [ -114.389648, 70.612614 ], [ -116.499023, 70.524897 ], [ -117.905273, 70.554179 ], [ -118.432617, 70.916641 ], [ -116.147461, 71.314877 ], [ -117.685547, 71.300793 ], [ -119.443359, 71.566641 ], [ -118.564453, 72.315785 ], [ -117.905273, 72.711903 ], [ -115.224609, 73.315246 ] ] ], [ [ [ -121.552734, 74.449358 ], [ -120.146484, 74.247813 ], [ -117.597656, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.532227, 73.478485 ], [ -116.806641, 73.226700 ], [ -119.223633, 72.528130 ], [ -120.498047, 71.828840 ], [ -120.498047, 71.385142 ], [ -123.134766, 70.902268 ], [ -123.662109, 71.343013 ], [ -125.947266, 71.869909 ], [ -124.848633, 73.022592 ], [ -123.969727, 73.689611 ], [ -124.936523, 74.295463 ], [ -121.552734, 74.449358 ] ] ], [ [ [ -100.371094, 73.849286 ], [ -99.184570, 73.640171 ], [ -97.382812, 73.763497 ], [ -97.163086, 73.478485 ], [ -98.085938, 72.996909 ], [ -96.547852, 72.567668 ], [ -96.723633, 71.663663 ], [ -98.393555, 71.286699 ], [ -99.360352, 71.357067 ], [ -100.019531, 71.746432 ], [ -102.524414, 72.514931 ], [ -102.480469, 72.842021 ], [ -100.458984, 72.711903 ], [ -101.557617, 73.365639 ], [ -100.371094, 73.849286 ] ] ], [ [ [ -94.526367, 74.140084 ], [ -92.460938, 74.104015 ], [ -90.527344, 73.861506 ], [ -92.021484, 72.971189 ], [ -93.208008, 72.777081 ], [ -94.306641, 72.033289 ], [ -95.449219, 72.073911 ], [ -96.064453, 72.945431 ], [ -96.020508, 73.440953 ], [ -95.537109, 73.873717 ], [ -94.526367, 74.140084 ] ] ], [ [ [ -80.375977, 73.763497 ], [ -78.090820, 73.652545 ], [ -76.376953, 73.112184 ], [ -76.289062, 72.829052 ], [ -78.398438, 72.880871 ], [ -79.497070, 72.751039 ], [ -79.804688, 72.803086 ], [ -80.903320, 73.340461 ], [ -80.859375, 73.701948 ], [ -80.375977, 73.763497 ] ] ], [ [ [ -105.292969, 73.640171 ], [ -104.501953, 73.428424 ], [ -105.380859, 72.764065 ], [ -106.962891, 73.465984 ], [ -106.611328, 73.602996 ], [ -105.292969, 73.640171 ] ] ], [ [ [ -109.599609, 76.800739 ], [ -108.588867, 76.679785 ], [ -108.237305, 76.205967 ], [ -107.841797, 75.855911 ], [ -106.962891, 76.016094 ], [ -105.908203, 75.973553 ], [ -105.732422, 75.486148 ], [ -106.347656, 75.016306 ], [ -109.731445, 74.856413 ], [ -112.236328, 74.425777 ], [ -113.774414, 74.402163 ], [ -113.906250, 74.729615 ], [ -111.796875, 75.163300 ], [ -116.323242, 75.050354 ], [ -117.729492, 75.230667 ], [ -116.367188, 76.205967 ], [ -115.444336, 76.486046 ], [ -112.631836, 76.142958 ], [ -110.830078, 75.552081 ], [ -109.072266, 75.475131 ], [ -110.522461, 76.434604 ], [ -109.599609, 76.800739 ] ] ], [ [ [ -96.767578, 77.166927 ], [ -94.702148, 77.098423 ], [ -93.603516, 76.780655 ], [ -91.625977, 76.780655 ], [ -90.747070, 76.455203 ], [ -91.010742, 76.079668 ], [ -89.824219, 75.855911 ], [ -89.208984, 75.617721 ], [ -87.846680, 75.573993 ], [ -86.396484, 75.486148 ], [ -84.814453, 75.704786 ], [ -82.792969, 75.791336 ], [ -81.166992, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.848633, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.449358 ], [ -83.232422, 74.566736 ], [ -86.132812, 74.413974 ], [ -88.154297, 74.402163 ], [ -89.780273, 74.519889 ], [ -92.460938, 74.844929 ], [ -92.768555, 75.397779 ], [ -92.900391, 75.888091 ], [ -93.911133, 76.320754 ], [ -95.976562, 76.444907 ], [ -97.163086, 76.760541 ], [ -96.767578, 77.166927 ] ] ], [ [ [ -94.877930, 75.650431 ], [ -93.999023, 75.297735 ], [ -93.647461, 74.982183 ], [ -94.174805, 74.601781 ], [ -95.625000, 74.671638 ], [ -96.855469, 74.936567 ], [ -96.328125, 75.386696 ], [ -94.877930, 75.650431 ] ] ], [ [ [ -98.525391, 76.720223 ], [ -97.778320, 76.258260 ], [ -97.734375, 75.748125 ], [ -98.173828, 75.004940 ], [ -99.843750, 74.902266 ], [ -100.898438, 75.061686 ], [ -100.898438, 75.650431 ], [ -102.524414, 75.573993 ], [ -102.568359, 76.341523 ], [ -101.513672, 76.310358 ], [ -100.019531, 76.649377 ], [ -98.613281, 76.598545 ], [ -98.525391, 76.720223 ] ] ], [ [ [ -116.235352, 77.645947 ], [ -116.367188, 76.880775 ], [ -117.114258, 76.537296 ], [ -118.081055, 76.486046 ], [ -119.926758, 76.058508 ], [ -121.508789, 75.909504 ], [ -122.871094, 76.121893 ], [ -121.201172, 76.870796 ], [ -119.135742, 77.513624 ], [ -117.597656, 77.504119 ], [ -116.235352, 77.645947 ] ] ], [ [ [ -72.861328, 83.236426 ], [ -68.510742, 83.111071 ], [ -65.830078, 83.031552 ], [ -63.720703, 82.902419 ], [ -61.875000, 82.631333 ], [ -61.918945, 82.367483 ], [ -64.335938, 81.929358 ], [ -66.796875, 81.729511 ], [ -67.675781, 81.505299 ], [ -65.522461, 81.511788 ], [ -67.851562, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.191406, 79.804527 ], [ -73.256836, 79.639874 ], [ -73.916016, 79.432371 ], [ -76.948242, 79.327084 ], [ -75.541992, 79.204309 ], [ -76.245117, 79.021712 ], [ -75.410156, 78.534311 ], [ -76.376953, 78.188586 ], [ -77.915039, 77.906466 ], [ -78.398438, 77.513624 ], [ -79.760742, 77.215640 ], [ -79.628906, 76.990046 ], [ -77.915039, 77.029559 ], [ -77.915039, 76.780655 ], [ -80.595703, 76.184995 ], [ -83.188477, 76.455203 ], [ -86.132812, 76.299953 ], [ -87.626953, 76.424292 ], [ -89.516602, 76.475773 ], [ -89.648438, 76.960334 ], [ -87.802734, 77.186434 ], [ -88.286133, 77.906466 ], [ -87.670898, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.352539, 78.188586 ], [ -87.978516, 78.376004 ], [ -87.187500, 78.759229 ], [ -85.385742, 79.004962 ], [ -85.122070, 79.351472 ], [ -86.528320, 79.742109 ], [ -86.967773, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.452148, 80.103470 ], [ -81.870117, 80.466790 ], [ -84.111328, 80.582539 ], [ -87.626953, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.219727, 81.261711 ], [ -91.406250, 81.557074 ], [ -91.625977, 81.898451 ], [ -90.131836, 82.088196 ], [ -88.945312, 82.118384 ], [ -87.011719, 82.285331 ], [ -85.517578, 82.653843 ], [ -84.287109, 82.603099 ], [ -83.188477, 82.320646 ], [ -82.441406, 82.864308 ], [ -81.123047, 83.020881 ], [ -79.321289, 83.132123 ], [ -76.289062, 83.174035 ], [ -75.761719, 83.068774 ], [ -72.861328, 83.236426 ] ] ], [ [ [ -111.269531, 78.161570 ], [ -109.863281, 77.998190 ], [ -110.214844, 77.702234 ], [ -112.060547, 77.418254 ], [ -113.554688, 77.739618 ], [ -112.763672, 78.052896 ], [ -111.269531, 78.161570 ] ] ], [ [ [ -96.459961, 77.841848 ], [ -94.438477, 77.823323 ], [ -93.735352, 77.636542 ], [ -93.867188, 77.523122 ], [ -94.306641, 77.494607 ], [ -96.196289, 77.561042 ], [ -96.459961, 77.841848 ] ] ], [ [ [ -98.657227, 78.878528 ], [ -97.338867, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.581055, 78.420193 ], [ -95.844727, 78.061989 ], [ -97.338867, 77.851100 ], [ -98.129883, 78.089229 ], [ -98.569336, 78.464217 ], [ -98.657227, 78.878528 ] ] ], [ [ [ -105.512695, 79.302640 ], [ -103.535156, 79.171335 ], [ -100.854492, 78.801980 ], [ -100.063477, 78.331648 ], [ -99.711914, 77.915669 ], [ -101.337891, 78.025574 ], [ -102.963867, 78.349411 ], [ -105.205078, 78.384855 ], [ -104.238281, 78.681870 ], [ -105.424805, 78.920832 ], [ -105.512695, 79.302640 ] ] ], [ [ [ -92.416992, 81.261711 ], [ -91.142578, 80.725269 ], [ -89.472656, 80.510360 ], [ -87.846680, 80.320120 ], [ -87.055664, 79.663556 ], [ -85.825195, 79.343349 ], [ -87.231445, 79.046790 ], [ -89.077148, 78.296044 ], [ -90.834961, 78.215541 ], [ -92.900391, 78.349411 ], [ -93.955078, 78.759229 ], [ -93.955078, 79.121686 ], [ -93.164062, 79.383905 ], [ -95.009766, 79.375806 ], [ -96.108398, 79.710759 ], [ -96.723633, 80.163710 ], [ -96.020508, 80.604086 ], [ -95.361328, 80.907616 ], [ -94.306641, 80.983688 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.261711 ] ] ], [ [ [ -111.533203, 78.853070 ], [ -111.005859, 78.810511 ], [ -109.687500, 78.603986 ], [ -110.917969, 78.411369 ], [ -112.543945, 78.411369 ], [ -112.543945, 78.551769 ], [ -111.533203, 78.853070 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.874023, 20.303418 ], [ -155.258789, 20.014645 ], [ -154.819336, 19.518375 ], [ -155.566406, 19.103648 ], [ -155.698242, 18.937464 ], [ -155.961914, 19.062118 ], [ -155.917969, 19.352611 ], [ -156.093750, 19.725342 ], [ -155.874023, 20.014645 ], [ -155.961914, 20.179724 ], [ -155.874023, 20.303418 ] ] ], [ [ [ -156.621094, 21.043491 ], [ -156.269531, 20.920397 ], [ -156.005859, 20.797201 ], [ -156.093750, 20.673905 ], [ -156.445312, 20.591652 ], [ -156.752930, 20.961440 ], [ -156.621094, 21.043491 ] ] ], [ [ [ -157.280273, 21.248422 ], [ -156.796875, 21.207459 ], [ -156.796875, 21.084500 ], [ -157.368164, 21.125498 ], [ -157.280273, 21.248422 ] ] ], [ [ [ -158.027344, 21.739091 ], [ -157.675781, 21.330315 ], [ -157.719727, 21.289374 ], [ -158.159180, 21.330315 ], [ -158.334961, 21.616579 ], [ -158.027344, 21.739091 ] ] ], [ [ [ -159.609375, 22.268764 ], [ -159.389648, 22.228090 ], [ -159.345703, 21.983801 ], [ -159.477539, 21.902278 ], [ -159.829102, 22.105999 ], [ -159.609375, 22.268764 ] ] ], [ [ [ -94.833984, 49.410973 ], [ -94.658203, 48.864715 ], [ -94.350586, 48.690960 ], [ -92.636719, 48.458352 ], [ -91.669922, 48.166085 ], [ -90.834961, 48.283193 ], [ -89.604492, 48.019324 ], [ -89.296875, 48.048710 ], [ -88.417969, 48.312428 ], [ -84.902344, 46.920255 ], [ -84.814453, 46.649436 ], [ -84.550781, 46.558860 ], [ -84.638672, 46.468133 ], [ -84.375000, 46.437857 ], [ -84.155273, 46.528635 ], [ -84.111328, 46.286224 ], [ -83.891602, 46.134170 ], [ -83.627930, 46.134170 ], [ -83.496094, 46.012224 ], [ -83.627930, 45.828799 ], [ -82.573242, 45.367584 ], [ -82.177734, 43.580391 ], [ -82.441406, 43.004647 ], [ -83.144531, 42.098222 ], [ -83.144531, 42.000325 ], [ -83.056641, 41.836828 ], [ -82.705078, 41.705729 ], [ -82.441406, 41.705729 ], [ -81.298828, 42.228517 ], [ -80.288086, 42.391009 ], [ -78.969727, 42.875964 ], [ -79.013672, 43.293200 ], [ -79.189453, 43.484812 ], [ -78.750000, 43.644026 ], [ -76.860352, 43.644026 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.840291 ], [ -74.882812, 45.026950 ], [ -71.542969, 45.026950 ], [ -71.411133, 45.274886 ], [ -71.103516, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.709736 ], [ -69.257812, 47.457809 ], [ -68.906250, 47.189712 ], [ -68.247070, 47.368594 ], [ -67.807617, 47.070122 ], [ -67.807617, 45.706179 ], [ -67.148438, 45.151053 ], [ -66.972656, 44.840291 ], [ -68.071289, 44.339565 ], [ -70.136719, 43.707594 ], [ -70.839844, 42.875964 ], [ -70.839844, 42.358544 ], [ -70.532227, 41.836828 ], [ -70.092773, 41.804078 ], [ -70.224609, 42.163403 ], [ -69.916992, 41.934977 ], [ -70.004883, 41.640078 ], [ -70.664062, 41.475660 ], [ -71.147461, 41.508577 ], [ -71.894531, 41.343825 ], [ -72.905273, 41.244772 ], [ -73.740234, 40.946714 ], [ -72.246094, 41.145570 ], [ -71.982422, 40.946714 ], [ -73.388672, 40.647304 ], [ -74.003906, 40.647304 ], [ -73.959961, 40.780541 ], [ -74.267578, 40.480381 ], [ -74.003906, 40.446947 ], [ -74.179688, 39.740986 ], [ -74.926758, 38.959409 ], [ -75.014648, 39.198205 ], [ -75.234375, 39.266284 ], [ -75.541992, 39.504041 ], [ -75.322266, 38.993572 ], [ -75.102539, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.981445, 37.230328 ], [ -76.069336, 37.265310 ], [ -75.761719, 37.961523 ], [ -76.245117, 38.341656 ], [ -76.376953, 39.164141 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.099983 ], [ -76.992188, 38.272689 ], [ -76.333008, 37.926868 ], [ -76.289062, 36.985003 ], [ -75.981445, 36.914764 ], [ -75.761719, 35.567980 ], [ -76.376953, 34.813803 ], [ -77.431641, 34.524661 ], [ -78.090820, 33.943360 ], [ -78.574219, 33.870416 ], [ -79.101562, 33.504759 ], [ -79.233398, 33.174342 ], [ -80.332031, 32.509762 ], [ -80.903320, 32.063956 ], [ -81.342773, 31.466154 ], [ -81.518555, 30.751278 ], [ -81.342773, 30.069094 ], [ -80.991211, 29.190533 ], [ -80.551758, 28.497661 ], [ -80.551758, 28.071980 ], [ -80.068359, 26.902477 ], [ -80.156250, 25.839449 ], [ -80.419922, 25.244696 ], [ -80.683594, 25.085599 ], [ -81.210938, 25.204941 ], [ -81.342773, 25.641526 ], [ -81.738281, 25.878994 ], [ -82.749023, 27.527758 ], [ -82.880859, 27.916767 ], [ -82.661133, 28.574874 ], [ -82.968750, 29.113775 ], [ -83.715820, 29.954935 ], [ -84.111328, 30.107118 ], [ -85.122070, 29.649869 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.183122 ], [ -86.440430, 30.410782 ], [ -87.539062, 30.297018 ], [ -88.417969, 30.410782 ], [ -89.208984, 30.334954 ], [ -89.604492, 30.183122 ], [ -89.428711, 29.916852 ], [ -89.472656, 29.496988 ], [ -89.252930, 29.305561 ], [ -89.428711, 29.190533 ], [ -89.780273, 29.343875 ], [ -90.175781, 29.152161 ], [ -90.922852, 29.152161 ], [ -91.669922, 29.688053 ], [ -92.504883, 29.573457 ], [ -93.251953, 29.802518 ], [ -93.867188, 29.726222 ], [ -94.702148, 29.496988 ], [ -95.625000, 28.767659 ], [ -96.635742, 28.343065 ], [ -97.163086, 27.839076 ], [ -97.382812, 27.410786 ], [ -97.382812, 26.706360 ], [ -97.338867, 26.234302 ], [ -97.163086, 25.878994 ], [ -97.558594, 25.878994 ], [ -98.261719, 26.076521 ], [ -99.052734, 26.391870 ], [ -99.316406, 26.863281 ], [ -99.536133, 27.566721 ], [ -100.151367, 28.110749 ], [ -100.986328, 29.382175 ], [ -101.689453, 29.802518 ], [ -102.480469, 29.764377 ], [ -103.139648, 28.998532 ], [ -103.974609, 29.305561 ], [ -104.458008, 29.573457 ], [ -105.073242, 30.675715 ], [ -106.171875, 31.428663 ], [ -106.523438, 31.765537 ], [ -108.281250, 31.765537 ], [ -108.281250, 31.353637 ], [ -111.049805, 31.353637 ], [ -114.829102, 32.546813 ], [ -114.741211, 32.731841 ], [ -117.158203, 32.546813 ], [ -117.333984, 33.063924 ], [ -117.949219, 33.651208 ], [ -118.432617, 33.760882 ], [ -118.520508, 34.052659 ], [ -119.091797, 34.089061 ], [ -119.443359, 34.379713 ], [ -120.410156, 34.452218 ], [ -120.629883, 34.633208 ], [ -120.761719, 35.173808 ], [ -121.728516, 36.173357 ], [ -122.563477, 37.579413 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.134557 ], [ -123.750000, 38.959409 ], [ -123.881836, 39.774769 ], [ -124.409180, 40.346544 ], [ -124.189453, 41.145570 ], [ -124.233398, 42.000325 ], [ -124.541016, 42.779275 ], [ -124.145508, 43.739352 ], [ -123.925781, 45.552525 ], [ -124.101562, 46.890232 ], [ -124.409180, 47.724545 ], [ -124.716797, 48.195387 ], [ -124.584961, 48.400032 ], [ -123.134766, 48.048710 ], [ -122.607422, 47.100045 ], [ -122.343750, 47.368594 ], [ -122.519531, 48.195387 ], [ -122.871094, 49.009051 ], [ -95.185547, 49.009051 ], [ -95.185547, 49.410973 ], [ -94.833984, 49.410973 ] ] ], [ [ [ -156.621094, 71.371109 ], [ -155.083008, 71.159391 ], [ -154.379883, 70.699951 ], [ -153.940430, 70.902268 ], [ -152.226562, 70.830248 ], [ -152.270508, 70.612614 ], [ -150.776367, 70.436799 ], [ -149.721680, 70.539543 ], [ -147.656250, 70.214875 ], [ -145.722656, 70.125430 ], [ -144.931641, 69.990535 ], [ -143.613281, 70.155288 ], [ -142.075195, 69.854762 ], [ -141.020508, 69.718107 ], [ -141.020508, 60.326948 ], [ -140.053711, 60.283408 ], [ -139.042969, 60.020952 ], [ -138.383789, 59.578851 ], [ -137.460938, 58.927334 ], [ -136.494141, 59.467408 ], [ -135.483398, 59.800634 ], [ -134.956055, 59.288332 ], [ -134.296875, 58.881942 ], [ -133.374023, 58.424730 ], [ -131.748047, 56.559482 ], [ -130.034180, 55.924586 ], [ -129.990234, 55.304138 ], [ -130.561523, 54.826008 ], [ -131.088867, 55.203953 ], [ -131.967773, 55.503750 ], [ -132.275391, 56.389584 ], [ -133.549805, 57.183902 ], [ -134.121094, 58.124320 ], [ -135.043945, 58.193871 ], [ -136.669922, 58.217025 ], [ -137.812500, 58.516652 ], [ -139.877930, 59.556592 ], [ -142.602539, 60.086763 ], [ -143.964844, 60.020952 ], [ -145.942383, 60.478879 ], [ -147.128906, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.051758, 59.998986 ], [ -148.579102, 59.933000 ], [ -149.765625, 59.712097 ], [ -150.644531, 59.377988 ], [ -151.743164, 59.175928 ], [ -151.875000, 59.756395 ], [ -151.435547, 60.737686 ], [ -150.380859, 61.037012 ], [ -150.644531, 61.291349 ], [ -151.918945, 60.737686 ], [ -152.622070, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.325195, 58.881942 ], [ -154.248047, 58.147519 ], [ -155.346680, 57.751076 ], [ -156.313477, 57.444949 ], [ -156.577148, 56.992883 ], [ -158.159180, 56.486762 ], [ -158.466797, 55.998381 ], [ -159.609375, 55.578345 ], [ -160.312500, 55.652798 ], [ -162.246094, 55.028022 ], [ -163.081055, 54.699234 ], [ -164.794922, 54.418930 ], [ -164.970703, 54.597528 ], [ -163.872070, 55.053203 ], [ -162.905273, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.576172, 56.022948 ], [ -160.092773, 56.438204 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.231503 ], [ -157.763672, 57.586559 ], [ -157.587891, 58.332567 ], [ -157.060547, 58.927334 ], [ -158.203125, 58.631217 ], [ -158.554688, 58.790978 ], [ -159.082031, 58.424730 ], [ -159.741211, 58.950008 ], [ -160.004883, 58.585436 ], [ -160.356445, 59.085739 ], [ -161.367188, 58.676938 ], [ -161.982422, 58.676938 ], [ -162.070312, 59.288332 ], [ -161.894531, 59.645540 ], [ -162.553711, 59.998986 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.283408 ], [ -165.366211, 60.522158 ], [ -165.366211, 61.079544 ], [ -166.157227, 61.501734 ], [ -165.761719, 62.083315 ], [ -164.926758, 62.633770 ], [ -164.575195, 63.154355 ], [ -163.784180, 63.233627 ], [ -163.081055, 63.074866 ], [ -162.290039, 63.548552 ], [ -161.542969, 63.470145 ], [ -160.795898, 63.782486 ], [ -160.971680, 64.225493 ], [ -161.542969, 64.415921 ], [ -160.795898, 64.792848 ], [ -161.411133, 64.792848 ], [ -162.465820, 64.567319 ], [ -162.773438, 64.339908 ], [ -163.564453, 64.567319 ], [ -164.970703, 64.453849 ], [ -166.464844, 64.699105 ], [ -166.860352, 65.090646 ], [ -168.134766, 65.676381 ], [ -166.728516, 66.089364 ], [ -164.487305, 66.583217 ], [ -163.696289, 66.583217 ], [ -163.828125, 66.089364 ], [ -161.718750, 66.124962 ], [ -162.509766, 66.739902 ], [ -163.740234, 67.118748 ], [ -164.443359, 67.625954 ], [ -165.410156, 68.056889 ], [ -166.772461, 68.366801 ], [ -166.245117, 68.895187 ], [ -164.443359, 68.926811 ], [ -163.168945, 69.380313 ], [ -162.949219, 69.869892 ], [ -161.938477, 70.333533 ], [ -160.971680, 70.451508 ], [ -159.082031, 70.902268 ], [ -158.159180, 70.830248 ], [ -156.621094, 71.371109 ] ] ], [ [ [ -153.237305, 57.984808 ], [ -152.578125, 57.914848 ], [ -152.182617, 57.610107 ], [ -153.017578, 57.136239 ], [ -154.028320, 56.752723 ], [ -154.555664, 56.992883 ], [ -154.687500, 57.468589 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.984808 ] ] ], [ [ [ -166.508789, 60.392148 ], [ -165.717773, 60.305185 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.860352, 59.955010 ], [ -167.475586, 60.217991 ], [ -166.508789, 60.392148 ] ] ], [ [ [ -171.738281, 63.801894 ], [ -171.123047, 63.607217 ], [ -170.507812, 63.704722 ], [ -169.716797, 63.450509 ], [ -168.706055, 63.312683 ], [ -168.793945, 63.194018 ], [ -169.541016, 62.995158 ], [ -170.332031, 63.213830 ], [ -170.683594, 63.391522 ], [ -171.562500, 63.332413 ], [ -171.826172, 63.411198 ], [ -171.738281, 63.801894 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.741211, 32.731841 ], [ -114.829102, 32.546813 ], [ -111.049805, 31.353637 ], [ -108.281250, 31.353637 ], [ -108.281250, 31.765537 ], [ -106.523438, 31.765537 ], [ -106.171875, 31.428663 ], [ -105.073242, 30.675715 ], [ -104.458008, 29.573457 ], [ -103.974609, 29.305561 ], [ -103.139648, 28.998532 ], [ -102.480469, 29.764377 ], [ -101.689453, 29.802518 ], [ -100.986328, 29.382175 ], [ -100.151367, 28.110749 ], [ -99.536133, 27.566721 ], [ -99.316406, 26.863281 ], [ -99.052734, 26.391870 ], [ -97.558594, 25.878994 ], [ -97.163086, 25.878994 ], [ -97.558594, 25.005973 ], [ -97.734375, 24.287027 ], [ -97.778320, 22.958393 ], [ -97.910156, 22.471955 ], [ -97.734375, 21.902278 ], [ -97.426758, 21.412162 ], [ -97.207031, 20.673905 ], [ -96.547852, 19.932041 ], [ -96.328125, 19.352611 ], [ -95.932617, 18.854310 ], [ -94.877930, 18.562947 ], [ -94.438477, 18.145852 ], [ -93.559570, 18.437925 ], [ -92.812500, 18.562947 ], [ -91.450195, 18.895893 ], [ -90.791016, 19.311143 ], [ -90.571289, 19.890723 ], [ -90.483398, 20.715015 ], [ -90.307617, 21.002471 ], [ -89.604492, 21.289374 ], [ -88.549805, 21.493964 ], [ -87.670898, 21.493964 ], [ -87.055664, 21.575719 ], [ -86.835938, 21.371244 ], [ -86.879883, 20.879343 ], [ -87.407227, 20.262197 ], [ -87.626953, 19.683970 ], [ -87.451172, 19.476950 ], [ -87.846680, 18.271086 ], [ -88.110352, 18.521283 ], [ -88.505859, 18.521283 ], [ -88.857422, 17.895114 ], [ -89.033203, 18.020528 ], [ -89.165039, 17.978733 ], [ -89.165039, 17.811456 ], [ -91.010742, 17.853290 ], [ -91.010742, 17.266728 ], [ -91.494141, 17.266728 ], [ -90.747070, 16.720385 ], [ -90.615234, 16.509833 ], [ -90.439453, 16.425548 ], [ -90.483398, 16.088042 ], [ -91.757812, 16.088042 ], [ -92.241211, 15.284185 ], [ -92.109375, 15.072124 ], [ -92.241211, 14.859850 ], [ -92.241211, 14.562318 ], [ -93.383789, 15.623037 ], [ -93.911133, 15.961329 ], [ -94.702148, 16.214675 ], [ -95.273438, 16.130262 ], [ -96.064453, 15.792254 ], [ -96.591797, 15.665354 ], [ -98.041992, 16.130262 ], [ -98.964844, 16.594081 ], [ -99.711914, 16.720385 ], [ -100.854492, 17.182779 ], [ -101.689453, 17.685895 ], [ -101.953125, 17.936929 ], [ -102.480469, 17.978733 ], [ -103.535156, 18.312811 ], [ -103.930664, 18.771115 ], [ -105.029297, 19.352611 ], [ -105.512695, 19.973349 ], [ -105.732422, 20.468189 ], [ -105.424805, 20.550509 ], [ -105.512695, 20.838278 ], [ -105.292969, 21.084500 ], [ -105.292969, 21.453069 ], [ -105.644531, 21.902278 ], [ -105.732422, 22.309426 ], [ -106.040039, 22.796439 ], [ -106.918945, 23.805450 ], [ -107.929688, 24.567108 ], [ -108.413086, 25.204941 ], [ -109.291992, 25.601902 ], [ -109.467773, 25.839449 ], [ -109.291992, 26.470573 ], [ -109.819336, 26.706360 ], [ -110.434570, 27.176469 ], [ -110.654297, 27.877928 ], [ -111.181641, 27.955591 ], [ -112.236328, 28.960089 ], [ -112.280273, 29.267233 ], [ -112.851562, 30.031055 ], [ -113.203125, 30.789037 ], [ -113.159180, 31.203405 ], [ -113.906250, 31.578535 ], [ -114.213867, 31.541090 ], [ -114.785156, 31.802893 ], [ -114.960938, 31.428663 ], [ -114.785156, 30.939924 ], [ -114.697266, 30.183122 ], [ -113.466797, 28.844674 ], [ -113.291016, 28.767659 ], [ -113.159180, 28.420391 ], [ -112.983398, 28.459033 ], [ -112.763672, 27.800210 ], [ -112.500000, 27.527758 ], [ -112.280273, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.313477, 25.760320 ], [ -110.742188, 24.846565 ], [ -110.698242, 24.327077 ], [ -110.214844, 24.287027 ], [ -109.423828, 23.402765 ], [ -109.467773, 23.200961 ], [ -109.863281, 22.836946 ], [ -110.039062, 22.836946 ], [ -110.302734, 23.443089 ], [ -110.961914, 24.006326 ], [ -111.708984, 24.487149 ], [ -112.192383, 24.766785 ], [ -112.192383, 25.482951 ], [ -112.324219, 26.037042 ], [ -113.466797, 26.784847 ], [ -113.598633, 26.667096 ], [ -113.862305, 26.902477 ], [ -114.477539, 27.176469 ], [ -115.092773, 27.761330 ], [ -115.004883, 27.800210 ], [ -114.609375, 27.761330 ], [ -114.213867, 28.149503 ], [ -114.169922, 28.574874 ], [ -114.960938, 29.305561 ], [ -115.532227, 29.573457 ], [ -116.762695, 31.653381 ], [ -117.158203, 32.546813 ], [ -114.741211, 32.731841 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.112305, 83.647837 ], [ -27.114258, 83.520162 ], [ -20.874023, 82.732092 ], [ -22.719727, 82.344100 ], [ -26.542969, 82.303009 ], [ -31.904297, 82.202302 ], [ -31.420898, 82.027475 ], [ -27.861328, 82.136441 ], [ -24.873047, 81.792486 ], [ -22.939453, 82.094243 ], [ -22.104492, 81.735830 ], [ -23.203125, 81.154241 ], [ -20.654297, 81.524751 ], [ -15.776367, 81.917010 ], [ -12.788086, 81.723188 ], [ -12.216797, 81.295029 ], [ -16.303711, 80.582539 ], [ -16.875000, 80.356995 ], [ -20.083008, 80.178713 ], [ -17.753906, 80.133635 ], [ -18.940430, 79.400085 ], [ -19.731445, 78.759229 ], [ -19.687500, 77.645947 ], [ -18.500977, 76.990046 ], [ -20.039062, 76.950415 ], [ -21.708984, 76.629067 ], [ -19.863281, 76.100796 ], [ -19.599609, 75.253057 ], [ -20.698242, 75.163300 ], [ -19.379883, 74.307353 ], [ -21.621094, 74.223935 ], [ -20.434570, 73.824820 ], [ -20.786133, 73.465984 ], [ -22.192383, 73.315246 ], [ -23.598633, 73.315246 ], [ -22.324219, 72.633374 ], [ -22.324219, 72.195246 ], [ -24.301758, 72.607120 ], [ -24.829102, 72.342464 ], [ -23.466797, 72.087432 ], [ -22.148438, 71.469124 ], [ -21.796875, 70.670881 ], [ -23.554688, 70.480896 ], [ -25.576172, 71.441171 ], [ -25.224609, 70.757966 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.368164, 70.140364 ], [ -25.048828, 69.271709 ], [ -27.773438, 68.479926 ], [ -30.673828, 68.138852 ], [ -31.816406, 68.122482 ], [ -32.827148, 67.742759 ], [ -34.233398, 66.687784 ], [ -36.386719, 65.982270 ], [ -37.045898, 65.946472 ], [ -39.814453, 65.476508 ], [ -40.693359, 64.848937 ], [ -40.693359, 64.148952 ], [ -41.220703, 63.489767 ], [ -42.846680, 62.694310 ], [ -42.451172, 61.918271 ], [ -43.417969, 60.108670 ], [ -44.824219, 60.042904 ], [ -46.274414, 60.866312 ], [ -48.295898, 60.866312 ], [ -49.262695, 61.417750 ], [ -49.921875, 62.390369 ], [ -51.635742, 63.646259 ], [ -52.163086, 64.282760 ], [ -52.294922, 65.183030 ], [ -53.701172, 66.107170 ], [ -53.305664, 66.843807 ], [ -54.008789, 67.204032 ], [ -52.998047, 68.366801 ], [ -51.503906, 68.736383 ], [ -51.108398, 69.162558 ], [ -50.888672, 69.930300 ], [ -52.558594, 69.426691 ], [ -53.481445, 69.287257 ], [ -54.711914, 69.611206 ], [ -54.755859, 70.303933 ], [ -54.360352, 70.830248 ], [ -53.437500, 70.844673 ], [ -51.416016, 70.583418 ], [ -54.008789, 71.552741 ], [ -55.019531, 71.413177 ], [ -55.854492, 71.663663 ], [ -54.755859, 72.593979 ], [ -55.327148, 72.971189 ], [ -57.348633, 74.718037 ], [ -58.623047, 75.106932 ], [ -58.623047, 75.519151 ], [ -61.303711, 76.111348 ], [ -63.413086, 76.184995 ], [ -66.093750, 76.142958 ], [ -68.510742, 76.069092 ], [ -69.697266, 76.382969 ], [ -71.411133, 77.009817 ], [ -68.818359, 77.331809 ], [ -66.796875, 77.379906 ], [ -71.059570, 77.636542 ], [ -73.300781, 78.052896 ], [ -73.168945, 78.437823 ], [ -69.389648, 78.920832 ], [ -65.742188, 79.400085 ], [ -65.346680, 79.765560 ], [ -68.027344, 80.118564 ], [ -67.192383, 80.517603 ], [ -63.720703, 81.214853 ], [ -62.270508, 81.321593 ], [ -62.666016, 81.773644 ], [ -60.292969, 82.039656 ], [ -57.216797, 82.196337 ], [ -54.140625, 82.202302 ], [ -53.085938, 81.892256 ], [ -50.405273, 82.442987 ], [ -48.032227, 82.070028 ], [ -46.625977, 81.990821 ], [ -44.560547, 81.666057 ], [ -46.933594, 82.202302 ], [ -46.801758, 82.631333 ], [ -43.417969, 83.226067 ], [ -39.902344, 83.184473 ], [ -38.627930, 83.549851 ], [ -35.112305, 83.647837 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ -60.249023, 5.266008 ], [ -59.985352, 5.047171 ], [ -60.117188, 4.609278 ], [ -59.809570, 4.434044 ], [ -59.545898, 3.995781 ], [ -59.853516, 3.645000 ], [ -59.985352, 2.767478 ], [ -59.721680, 2.284551 ], [ -59.677734, 1.801461 ], [ -59.062500, 1.318243 ], [ -58.579102, 1.274309 ], [ -58.447266, 1.493971 ], [ -58.139648, 1.537901 ], [ -57.700195, 1.713612 ], [ -57.348633, 1.977147 ], [ -56.030273, 1.845384 ], [ -55.942383, 2.064982 ], [ -56.074219, 2.240640 ], [ -55.986328, 2.547988 ], [ -55.590820, 2.460181 ], [ -55.107422, 2.547988 ], [ -54.096680, 2.108899 ], [ -53.789062, 2.416276 ], [ -53.569336, 2.372369 ], [ -53.437500, 2.064982 ], [ -52.954102, 2.152814 ], [ -52.558594, 2.547988 ], [ -52.250977, 3.250209 ], [ -51.679688, 4.171115 ], [ -51.328125, 4.214943 ], [ -51.108398, 3.688855 ], [ -50.537109, 1.933227 ], [ -50.009766, 1.757537 ], [ -49.965820, 1.054628 ], [ -50.712891, 0.263671 ], [ -50.493164, 0.000000 ], [ -50.405273, -0.043945 ], [ -48.647461, -0.219726 ], [ -48.603516, -1.230374 ], [ -47.856445, -0.571280 ], [ -46.582031, -0.922812 ], [ -44.912109, -1.537901 ], [ -44.428711, -2.108899 ], [ -44.604492, -2.679687 ], [ -43.461914, -2.372369 ], [ -41.484375, -2.899153 ], [ -39.990234, -2.855263 ], [ -38.847656, -3.513421 ], [ -69.785156, -3.513421 ], [ -69.433594, -1.098565 ], [ -69.609375, -0.527336 ], [ -70.048828, -0.175781 ], [ -70.048828, 0.571280 ], [ -69.477539, 0.747049 ], [ -69.257812, 0.615223 ], [ -69.257812, 1.010690 ], [ -69.829102, 1.098565 ], [ -69.829102, 1.757537 ], [ -67.895508, 1.713612 ], [ -67.543945, 2.064982 ], [ -67.280273, 1.757537 ], [ -67.104492, 1.142502 ], [ -66.884766, 1.274309 ], [ -66.357422, 0.747049 ], [ -65.566406, 0.790990 ], [ -65.390625, 1.098565 ], [ -64.204102, 1.493971 ], [ -64.116211, 1.933227 ], [ -63.369141, 2.240640 ], [ -63.457031, 2.416276 ], [ -64.291992, 2.504085 ], [ -64.423828, 3.162456 ], [ -64.379883, 3.820408 ], [ -64.819336, 4.083453 ], [ -64.643555, 4.171115 ], [ -63.896484, 4.039618 ], [ -63.105469, 3.776559 ], [ -62.841797, 4.039618 ], [ -62.094727, 4.171115 ], [ -60.996094, 4.565474 ], [ -60.644531, 4.959615 ], [ -60.776367, 5.222247 ], [ -60.249023, 5.266008 ] ] ] } } +, +{ "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": [ [ [ [ -180.000000, 68.974164 ], [ -177.583008, 68.204212 ], [ -174.946289, 67.221053 ], [ -175.034180, 66.600676 ], [ -174.375000, 66.337505 ], [ -174.594727, 67.067433 ], [ -171.870117, 66.930060 ], [ -169.936523, 65.982270 ], [ -170.903320, 65.549367 ], [ -172.573242, 65.440002 ], [ -172.573242, 64.472794 ], [ -172.968750, 64.263684 ], [ -173.935547, 64.282760 ], [ -174.682617, 64.642704 ], [ -176.000977, 64.923542 ], [ -176.220703, 65.366837 ], [ -177.231445, 65.531171 ], [ -178.374023, 65.403445 ], [ -178.945312, 65.748683 ], [ -178.725586, 66.124962 ], [ -179.912109, 65.874725 ], [ -179.472656, 65.421730 ], [ -180.000000, 64.997939 ], [ -180.000000, 68.974164 ] ] ], [ [ [ -179.033203, 71.566641 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.145195 ], [ -178.725586, 70.902268 ], [ -180.000000, 70.844673 ], [ -180.000000, 71.524909 ], [ -179.912109, 71.566641 ], [ -179.033203, 71.566641 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 36.809285 ], [ 3.515625, 19.103648 ], [ 3.120117, 19.062118 ], [ 3.120117, 19.725342 ], [ 2.021484, 20.179724 ], [ 1.801758, 20.632784 ], [ 0.000000, 21.820708 ], [ -8.701172, 27.410786 ], [ -8.701172, 28.844674 ], [ -7.075195, 29.611670 ], [ -6.064453, 29.764377 ], [ -5.273438, 30.031055 ], [ -4.877930, 30.524413 ], [ -3.691406, 30.902225 ], [ -3.691406, 31.653381 ], [ -3.076172, 31.728167 ], [ -2.636719, 32.101190 ], [ -1.318359, 32.287133 ], [ -1.142578, 32.657876 ], [ -1.406250, 32.879587 ], [ -1.757812, 33.943360 ], [ -1.801758, 34.560859 ], [ -2.197266, 35.173808 ], [ -1.230469, 35.746512 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.995785 ], [ 0.483398, 36.315125 ], [ 1.450195, 36.633162 ], [ 3.515625, 36.809285 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.805664, 3.513421 ], [ 30.761719, 2.372369 ], [ 31.157227, 2.240640 ], [ 30.849609, 1.889306 ], [ 30.454102, 1.625758 ], [ 30.058594, 1.098565 ], [ 29.838867, 0.615223 ], [ 29.794922, 0.000000 ], [ 29.794922, -0.175781 ], [ 29.575195, -0.571280 ], [ 29.575195, -1.318243 ], [ 29.267578, -1.581830 ], [ 29.223633, -2.196727 ], [ 29.091797, -2.284551 ], [ 29.003906, -2.811371 ], [ 29.267578, -3.250209 ], [ 29.311523, -4.477856 ], [ 29.487305, -5.397273 ], [ 29.399414, -5.922045 ], [ 29.619141, -6.489983 ], [ 30.190430, -7.057282 ], [ 30.717773, -8.320212 ], [ 30.322266, -8.233237 ], [ 28.959961, -8.363693 ], [ 28.696289, -8.494105 ], [ 28.432617, -9.145486 ], [ 28.652344, -9.579084 ], [ 28.344727, -11.781325 ], [ 29.311523, -12.340002 ], [ 29.575195, -12.168226 ], [ 29.663086, -13.239945 ], [ 28.916016, -13.239945 ], [ 28.125000, -12.254128 ], [ 27.377930, -12.125264 ], [ 27.158203, -11.566144 ], [ 26.542969, -11.910354 ], [ 25.751953, -11.781325 ], [ 25.400391, -11.307708 ], [ 24.741211, -11.221510 ], [ 24.301758, -11.221510 ], [ 24.213867, -10.919618 ], [ 23.422852, -10.833306 ], [ 22.807617, -11.005904 ], [ 22.368164, -10.962764 ], [ 22.148438, -11.049038 ], [ 22.192383, -9.882275 ], [ 21.840820, -9.492408 ], [ 21.796875, -8.885072 ], [ 21.928711, -8.276727 ], [ 21.708984, -7.885147 ], [ 21.708984, -7.275292 ], [ 20.478516, -7.275292 ], [ 20.566406, -6.926427 ], [ 20.083008, -6.926427 ], [ 19.995117, -7.100893 ], [ 19.379883, -7.144499 ], [ 18.984375, -7.972198 ], [ 18.457031, -7.841615 ], [ 18.105469, -7.972198 ], [ 17.446289, -8.059230 ], [ 16.831055, -7.188101 ], [ 16.567383, -6.620957 ], [ 16.303711, -5.834616 ], [ 13.359375, -5.834616 ], [ 12.304688, -6.096860 ], [ 12.172852, -5.747174 ], [ 12.436523, -5.659719 ], [ 12.436523, -5.222247 ], [ 12.612305, -4.959615 ], [ 12.963867, -4.740675 ], [ 13.227539, -4.872048 ], [ 13.579102, -4.477856 ], [ 14.106445, -4.477856 ], [ 14.194336, -4.784469 ], [ 14.545898, -4.959615 ], [ 15.161133, -4.302591 ], [ 15.732422, -3.820408 ], [ 15.996094, -3.513421 ], [ 15.952148, -2.679687 ], [ 16.391602, -1.713612 ], [ 16.831055, -1.186439 ], [ 17.490234, -0.703107 ], [ 17.666016, 0.000000 ], [ 17.797852, 0.307616 ], [ 17.753906, 0.878872 ], [ 17.885742, 1.757537 ], [ 18.061523, 2.372369 ], [ 18.369141, 2.943041 ], [ 18.413086, 3.513421 ], [ 30.805664, 3.513421 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.711914, -40.680638 ], [ 145.371094, -40.780541 ], [ 146.337891, -41.112469 ], [ 147.656250, -40.780541 ], [ 148.271484, -40.847060 ], [ 148.359375, -42.032974 ], [ 148.007812, -42.391009 ], [ 147.875977, -43.197167 ], [ 147.524414, -42.908160 ], [ 146.865234, -43.612217 ], [ 146.645508, -43.580391 ], [ 146.030273, -43.548548 ], [ 145.415039, -42.682435 ], [ 145.283203, -42.032974 ], [ 144.711914, -41.145570 ], [ 144.711914, -40.680638 ] ] ], [ [ [ 142.514648, -10.660608 ], [ 142.778320, -11.135287 ], [ 142.866211, -11.781325 ], [ 143.085938, -11.867351 ], [ 143.129883, -12.297068 ], [ 143.481445, -12.811801 ], [ 143.569336, -13.368243 ], [ 143.525391, -13.752725 ], [ 143.920898, -14.519780 ], [ 144.536133, -14.136576 ], [ 144.887695, -14.562318 ], [ 145.371094, -14.944785 ], [ 145.239258, -15.411319 ], [ 145.458984, -16.256867 ], [ 145.634766, -16.762468 ], [ 145.854492, -16.888660 ], [ 146.118164, -17.727759 ], [ 146.030273, -18.271086 ], [ 146.381836, -18.937464 ], [ 147.436523, -19.476950 ], [ 148.842773, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.282227, -21.248422 ], [ 149.677734, -22.309426 ], [ 150.073242, -22.105999 ], [ 150.468750, -22.553147 ], [ 150.688477, -22.390714 ], [ 150.864258, -23.443089 ], [ 152.050781, -24.447150 ], [ 152.841797, -25.244696 ], [ 153.105469, -26.037042 ], [ 153.149414, -26.627818 ], [ 153.061523, -27.254630 ], [ 153.544922, -28.071980 ], [ 153.500977, -28.960089 ], [ 153.061523, -30.334954 ], [ 153.061523, -30.902225 ], [ 152.885742, -31.615966 ], [ 152.446289, -32.546813 ], [ 151.699219, -33.027088 ], [ 151.303711, -33.797409 ], [ 150.996094, -34.307144 ], [ 150.688477, -35.137879 ], [ 150.292969, -35.639441 ], [ 150.073242, -36.385913 ], [ 149.941406, -37.090240 ], [ 149.985352, -37.405074 ], [ 149.414062, -37.753344 ], [ 148.271484, -37.788081 ], [ 147.348633, -38.203655 ], [ 146.293945, -39.027719 ], [ 145.458984, -38.582526 ], [ 144.843750, -38.410558 ], [ 145.019531, -37.892196 ], [ 144.448242, -38.065392 ], [ 143.569336, -38.788345 ], [ 142.163086, -38.376115 ], [ 141.591797, -38.307181 ], [ 140.625000, -37.996163 ], [ 139.965820, -37.370157 ], [ 139.790039, -36.633162 ], [ 139.570312, -36.137875 ], [ 139.042969, -35.710838 ], [ 138.120117, -35.603719 ], [ 138.427734, -35.101934 ], [ 138.164062, -34.379713 ], [ 137.680664, -35.065973 ], [ 136.801758, -35.245619 ], [ 137.329102, -34.705493 ], [ 137.460938, -34.125448 ], [ 137.856445, -33.614619 ], [ 137.768555, -32.879587 ], [ 136.977539, -33.724340 ], [ 136.362305, -34.089061 ], [ 135.966797, -34.885931 ], [ 135.175781, -34.452218 ], [ 135.219727, -33.943360 ], [ 134.604492, -33.211116 ], [ 134.077148, -32.842674 ], [ 134.252930, -32.583849 ], [ 132.978516, -31.989442 ], [ 132.275391, -31.952162 ], [ 131.308594, -31.466154 ], [ 129.506836, -31.578535 ], [ 127.089844, -32.249974 ], [ 126.123047, -32.212801 ], [ 125.068359, -32.694866 ], [ 124.189453, -32.953368 ], [ 124.013672, -33.468108 ], [ 123.618164, -33.870416 ], [ 122.783203, -33.906896 ], [ 122.167969, -33.979809 ], [ 121.289062, -33.797409 ], [ 119.882812, -33.943360 ], [ 119.267578, -34.488448 ], [ 119.003906, -34.452218 ], [ 117.993164, -35.029996 ], [ 116.586914, -34.994004 ], [ 115.532227, -34.379713 ], [ 115.004883, -34.161818 ], [ 115.004883, -33.614619 ], [ 115.532227, -33.468108 ], [ 115.708008, -33.247876 ], [ 115.664062, -32.879587 ], [ 115.795898, -32.175612 ], [ 115.664062, -31.578535 ], [ 115.136719, -30.600094 ], [ 114.960938, -29.993002 ], [ 115.004883, -29.458731 ], [ 114.609375, -28.806174 ], [ 114.609375, -28.497661 ], [ 114.169922, -28.110749 ], [ 114.038086, -27.332735 ], [ 113.466797, -26.509905 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.509905 ], [ 113.422852, -25.601902 ], [ 113.906250, -25.878994 ], [ 114.213867, -26.273714 ], [ 114.213867, -25.760320 ], [ 113.686523, -24.966140 ], [ 113.598633, -24.647017 ], [ 113.378906, -24.367114 ], [ 113.466797, -23.805450 ], [ 113.686523, -23.523700 ], [ 113.818359, -23.039298 ], [ 113.730469, -22.471955 ], [ 114.125977, -21.739091 ], [ 114.213867, -22.512557 ], [ 114.609375, -21.820708 ], [ 115.444336, -21.493964 ], [ 115.927734, -21.043491 ], [ 116.674805, -20.673905 ], [ 117.158203, -20.591652 ], [ 117.421875, -20.715015 ], [ 118.212891, -20.344627 ], [ 118.828125, -20.262197 ], [ 118.959961, -20.014645 ], [ 119.223633, -19.932041 ], [ 119.794922, -19.973349 ], [ 120.849609, -19.642588 ], [ 121.376953, -19.228177 ], [ 121.640625, -18.687879 ], [ 122.211914, -18.187607 ], [ 122.299805, -17.224758 ], [ 123.002930, -16.383391 ], [ 123.398438, -17.266728 ], [ 123.837891, -17.056785 ], [ 123.486328, -16.594081 ], [ 123.793945, -16.088042 ], [ 124.233398, -16.299051 ], [ 124.365234, -15.538376 ], [ 124.892578, -15.072124 ], [ 125.156250, -14.647368 ], [ 125.639648, -14.477234 ], [ 125.683594, -14.221789 ], [ 126.123047, -14.306969 ], [ 126.123047, -14.093957 ], [ 127.045898, -13.795406 ], [ 127.792969, -14.264383 ], [ 128.320312, -14.859850 ], [ 128.979492, -14.859850 ], [ 129.594727, -14.944785 ], [ 129.375000, -14.392118 ], [ 129.858398, -13.581921 ], [ 130.297852, -13.325485 ], [ 130.166016, -13.068777 ], [ 130.605469, -12.511665 ], [ 131.220703, -12.168226 ], [ 131.704102, -12.297068 ], [ 132.539062, -12.082296 ], [ 132.539062, -11.566144 ], [ 131.791992, -11.264612 ], [ 132.319336, -11.092166 ], [ 132.978516, -11.350797 ], [ 133.549805, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.648438, -11.910354 ], [ 135.263672, -12.211180 ], [ 135.878906, -11.953349 ], [ 136.230469, -12.039321 ], [ 136.450195, -11.824341 ], [ 136.933594, -12.340002 ], [ 136.669922, -12.854649 ], [ 136.274414, -13.282719 ], [ 135.922852, -13.282719 ], [ 136.054688, -13.710035 ], [ 135.395508, -14.689881 ], [ 135.483398, -14.987240 ], [ 136.274414, -15.538376 ], [ 137.021484, -15.834536 ], [ 138.295898, -16.804541 ], [ 138.559570, -16.804541 ], [ 139.086914, -17.056785 ], [ 139.218750, -17.350638 ], [ 140.185547, -17.685895 ], [ 140.844727, -17.350638 ], [ 141.240234, -16.383391 ], [ 141.372070, -15.834536 ], [ 141.679688, -15.029686 ], [ 141.547852, -14.519780 ], [ 141.591797, -14.264383 ], [ 141.503906, -13.667338 ], [ 141.635742, -12.940322 ], [ 141.811523, -12.726084 ], [ 141.679688, -12.382928 ], [ 142.075195, -11.307708 ], [ 142.119141, -11.005904 ], [ 142.514648, -10.660608 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 104.326172, 77.702234 ], [ 106.040039, 77.379906 ], [ 104.677734, 77.127825 ], [ 106.962891, 76.980149 ], [ 107.226562, 76.486046 ], [ 108.149414, 76.730314 ], [ 111.049805, 76.710125 ], [ 113.291016, 76.226907 ], [ 114.125977, 75.855911 ], [ 113.862305, 75.331158 ], [ 112.763672, 75.039013 ], [ 110.126953, 74.484662 ], [ 109.379883, 74.188052 ], [ 110.610352, 74.043723 ], [ 112.104492, 73.788054 ], [ 112.983398, 73.983207 ], [ 113.510742, 73.340461 ], [ 113.950195, 73.602996 ], [ 115.532227, 73.763497 ], [ 118.740234, 73.590586 ], [ 119.003906, 73.124945 ], [ 123.178711, 72.984054 ], [ 123.222656, 73.738905 ], [ 125.375977, 73.565739 ], [ 126.958008, 73.565739 ], [ 128.583984, 73.048236 ], [ 129.023438, 72.408992 ], [ 128.452148, 71.992578 ], [ 129.682617, 71.201920 ], [ 131.264648, 70.801366 ], [ 132.231445, 71.842539 ], [ 133.857422, 71.399165 ], [ 135.527344, 71.663663 ], [ 137.460938, 71.357067 ], [ 138.208008, 71.635993 ], [ 139.833984, 71.497037 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.854981 ], [ 149.458008, 72.208678 ], [ 150.336914, 71.608283 ], [ 152.929688, 70.844673 ], [ 156.972656, 71.045529 ], [ 158.994141, 70.873491 ], [ 159.829102, 70.466207 ], [ 159.697266, 69.733334 ], [ 160.927734, 69.442128 ], [ 162.246094, 69.657086 ], [ 164.047852, 69.672358 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.595890 ], [ 169.541016, 68.704486 ], [ 170.815430, 69.021414 ], [ 169.980469, 69.657086 ], [ 170.419922, 70.110485 ], [ 173.627930, 69.824471 ], [ 175.693359, 69.885010 ], [ 178.593750, 69.411242 ], [ 180.000000, 68.974164 ], [ 180.000000, 64.997939 ], [ 178.681641, 64.548440 ], [ 177.407227, 64.623877 ], [ 178.286133, 64.091408 ], [ 178.901367, 63.253412 ], [ 179.340820, 62.995158 ], [ 179.472656, 62.573106 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.532594 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.669024 ], [ 172.133789, 60.951777 ], [ 170.683594, 60.348696 ], [ 170.288086, 59.888937 ], [ 168.881836, 60.586967 ], [ 166.289062, 59.800634 ], [ 165.805664, 60.174306 ], [ 164.838867, 59.734253 ], [ 163.520508, 59.888937 ], [ 163.212891, 59.220934 ], [ 161.982422, 58.263287 ], [ 162.026367, 57.844751 ], [ 163.168945, 57.633640 ], [ 163.037109, 56.170023 ], [ 162.114258, 56.145550 ], [ 161.674805, 55.304138 ], [ 162.114258, 54.876607 ], [ 160.356445, 54.367759 ], [ 160.004883, 53.225768 ], [ 158.510742, 52.961875 ], [ 158.203125, 51.944265 ], [ 156.752930, 51.013755 ], [ 156.401367, 51.727028 ], [ 155.961914, 53.173119 ], [ 155.390625, 55.404070 ], [ 155.874023, 56.776808 ], [ 156.752930, 57.373938 ], [ 156.796875, 57.844751 ], [ 158.334961, 58.077876 ], [ 160.136719, 59.333189 ], [ 161.850586, 60.348696 ], [ 163.652344, 61.143235 ], [ 164.443359, 62.552857 ], [ 163.256836, 62.471724 ], [ 162.641602, 61.648162 ], [ 160.092773, 60.565379 ], [ 159.301758, 61.793900 ], [ 156.708984, 61.438767 ], [ 154.204102, 59.778522 ], [ 155.039062, 59.153403 ], [ 152.797852, 58.904646 ], [ 151.259766, 58.790978 ], [ 151.303711, 59.512029 ], [ 149.765625, 59.667741 ], [ 148.535156, 59.175928 ], [ 145.458984, 59.355596 ], [ 142.163086, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.087891, 54.749991 ], [ 136.669922, 54.622978 ], [ 137.153320, 53.981935 ], [ 138.164062, 53.774689 ], [ 138.779297, 54.265224 ], [ 139.877930, 54.213861 ], [ 141.328125, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.581055, 51.261915 ], [ 140.493164, 50.064192 ], [ 140.053711, 48.458352 ], [ 138.515625, 47.010226 ], [ 138.208008, 46.316584 ], [ 134.868164, 43.421009 ], [ 133.505859, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.293200 ], [ 130.913086, 42.553080 ], [ 130.737305, 42.228517 ], [ 130.605469, 42.423457 ], [ 130.605469, 42.908160 ], [ 131.132812, 42.940339 ], [ 131.264648, 44.119142 ], [ 131.000977, 44.995883 ], [ 131.879883, 45.336702 ], [ 133.066406, 45.151053 ], [ 133.769531, 46.134170 ], [ 134.077148, 47.219568 ], [ 134.472656, 47.606163 ], [ 135.000000, 48.487486 ], [ 133.330078, 48.195387 ], [ 132.495117, 47.813155 ], [ 130.957031, 47.813155 ], [ 130.561523, 48.748945 ], [ 129.375000, 49.468124 ], [ 127.617188, 49.781264 ], [ 127.265625, 50.764259 ], [ 126.914062, 51.371780 ], [ 126.562500, 51.808615 ], [ 125.903320, 52.802761 ], [ 125.024414, 53.173119 ], [ 123.530273, 53.461890 ], [ 122.211914, 53.435719 ], [ 120.981445, 53.252069 ], [ 120.146484, 52.776186 ], [ 120.717773, 52.536273 ], [ 120.717773, 51.971346 ], [ 120.146484, 51.645294 ], [ 119.267578, 50.597186 ], [ 119.267578, 50.148746 ], [ 117.861328, 49.525208 ], [ 116.674805, 49.894634 ], [ 115.444336, 49.809632 ], [ 114.960938, 50.148746 ], [ 114.345703, 50.261254 ], [ 112.895508, 49.553726 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.152970 ], [ 109.379883, 49.296472 ], [ 108.457031, 49.296472 ], [ 107.841797, 49.809632 ], [ 106.875000, 50.289339 ], [ 105.864258, 50.429518 ], [ 104.589844, 50.289339 ], [ 103.666992, 50.092393 ], [ 102.216797, 50.513427 ], [ 102.041016, 51.261915 ], [ 100.854492, 51.536086 ], [ 99.975586, 51.645294 ], [ 98.833008, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.217773, 50.429518 ], [ 97.250977, 49.752880 ], [ 95.800781, 49.979488 ], [ 94.790039, 50.035974 ], [ 94.130859, 50.485474 ], [ 93.076172, 50.513427 ], [ 92.197266, 50.819818 ], [ 90.703125, 50.345460 ], [ 88.769531, 49.496675 ], [ 87.319336, 49.239121 ], [ 86.791992, 49.837982 ], [ 85.517578, 49.696062 ], [ 85.078125, 50.120578 ], [ 84.375000, 50.317408 ], [ 83.891602, 50.903033 ], [ 83.364258, 51.096623 ], [ 81.914062, 50.819818 ], [ 80.551758, 51.399206 ], [ 80.024414, 50.875311 ], [ 77.783203, 53.409532 ], [ 76.508789, 54.188155 ], [ 76.860352, 54.495568 ], [ 74.355469, 53.566414 ], [ 73.388672, 53.514185 ], [ 73.476562, 54.059388 ], [ 72.202148, 54.393352 ], [ 71.147461, 54.136696 ], [ 70.839844, 55.178868 ], [ 69.038086, 55.404070 ], [ 68.159180, 54.977614 ], [ 65.654297, 54.622978 ], [ 65.170898, 54.367759 ], [ 61.435547, 54.007769 ], [ 60.952148, 53.670680 ], [ 61.699219, 52.988337 ], [ 60.732422, 52.722986 ], [ 60.908203, 52.456009 ], [ 59.941406, 51.971346 ], [ 61.567383, 51.289406 ], [ 61.303711, 50.819818 ], [ 59.897461, 50.847573 ], [ 59.633789, 50.569283 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.069017 ], [ 55.678711, 50.625073 ], [ 52.294922, 51.727028 ], [ 50.756836, 51.699800 ], [ 48.691406, 50.625073 ], [ 48.559570, 49.894634 ], [ 47.548828, 50.457504 ], [ 46.713867, 49.382373 ], [ 47.021484, 49.152970 ], [ 46.450195, 48.400032 ], [ 47.285156, 47.724545 ], [ 48.032227, 47.754098 ], [ 48.691406, 47.100045 ], [ 48.559570, 46.589069 ], [ 49.086914, 46.407564 ], [ 48.603516, 45.828799 ], [ 47.636719, 45.644768 ], [ 46.669922, 44.621754 ], [ 47.548828, 43.675818 ], [ 47.460938, 43.004647 ], [ 48.559570, 41.836828 ], [ 47.944336, 41.409776 ], [ 47.812500, 41.178654 ], [ 47.373047, 41.244772 ], [ 46.669922, 41.836828 ], [ 46.362305, 41.869561 ], [ 45.747070, 42.098222 ], [ 45.439453, 42.520700 ], [ 44.516602, 42.714732 ], [ 43.901367, 42.585444 ], [ 43.725586, 42.747012 ], [ 42.363281, 43.229195 ], [ 40.913086, 43.389082 ], [ 40.034180, 43.580391 ], [ 39.946289, 43.452919 ], [ 38.671875, 44.308127 ], [ 37.529297, 44.684277 ], [ 36.650391, 45.274886 ], [ 37.397461, 45.429299 ], [ 38.232422, 46.255847 ], [ 37.661133, 46.649436 ], [ 39.111328, 47.070122 ], [ 39.111328, 47.279229 ], [ 38.188477, 47.129951 ], [ 38.232422, 47.546872 ], [ 38.759766, 47.842658 ], [ 39.726562, 47.901614 ], [ 39.858398, 48.253941 ], [ 39.638672, 48.806863 ], [ 40.078125, 49.325122 ], [ 40.034180, 49.610710 ], [ 38.583984, 49.951220 ], [ 37.968750, 49.922935 ], [ 37.353516, 50.401515 ], [ 36.606445, 50.233152 ], [ 35.332031, 50.597186 ], [ 35.375977, 50.792047 ], [ 34.980469, 51.234407 ], [ 34.189453, 51.261915 ], [ 34.101562, 51.590723 ], [ 34.365234, 51.781436 ], [ 33.750000, 52.348763 ], [ 32.695312, 52.241256 ], [ 32.387695, 52.295042 ], [ 32.124023, 52.079506 ], [ 31.772461, 52.106505 ], [ 31.508789, 52.749594 ], [ 31.289062, 53.094024 ], [ 31.464844, 53.173119 ], [ 32.299805, 53.146770 ], [ 32.651367, 53.357109 ], [ 32.387695, 53.618579 ], [ 31.728516, 53.800651 ], [ 31.772461, 53.981935 ], [ 31.376953, 54.162434 ], [ 30.717773, 54.826008 ], [ 30.937500, 55.103516 ], [ 30.849609, 55.553495 ], [ 29.882812, 55.801281 ], [ 29.355469, 55.677584 ], [ 29.223633, 55.924586 ], [ 28.168945, 56.170023 ], [ 27.817383, 56.776808 ], [ 27.729492, 57.255281 ], [ 27.246094, 57.492214 ], [ 27.685547, 57.797944 ], [ 27.377930, 58.745407 ], [ 28.125000, 59.310768 ], [ 27.949219, 59.489726 ], [ 29.091797, 60.042904 ], [ 28.037109, 60.522158 ], [ 31.113281, 62.369996 ], [ 31.508789, 62.875188 ], [ 30.014648, 63.568120 ], [ 30.410156, 64.206377 ], [ 29.531250, 64.960766 ], [ 30.190430, 65.820782 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.709445 ], [ 28.432617, 68.366801 ], [ 28.564453, 69.068563 ], [ 29.399414, 69.162558 ], [ 31.069336, 69.565226 ], [ 32.124023, 69.915214 ], [ 33.750000, 69.302794 ], [ 36.474609, 69.068563 ], [ 40.253906, 67.941650 ], [ 41.044922, 67.458082 ], [ 41.088867, 66.791909 ], [ 39.990234, 66.266856 ], [ 38.364258, 66.000150 ], [ 33.881836, 66.774586 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.910623 ], [ 34.936523, 64.415921 ], [ 36.210938, 64.110602 ], [ 37.001953, 63.860036 ], [ 37.133789, 64.339908 ], [ 36.518555, 64.774125 ], [ 37.133789, 65.146115 ], [ 39.550781, 64.529548 ], [ 40.429688, 64.774125 ], [ 39.726562, 65.512963 ], [ 42.055664, 66.478208 ], [ 42.978516, 66.425537 ], [ 43.945312, 66.071546 ], [ 44.516602, 66.757250 ], [ 43.681641, 67.356785 ], [ 44.165039, 67.958148 ], [ 43.417969, 68.576441 ], [ 46.230469, 68.253111 ], [ 46.801758, 67.692771 ], [ 45.527344, 67.575717 ], [ 45.527344, 67.016009 ], [ 46.318359, 66.670387 ], [ 47.856445, 66.895596 ], [ 48.120117, 67.525373 ], [ 50.185547, 68.007571 ], [ 53.701172, 68.863517 ], [ 54.448242, 68.815927 ], [ 53.481445, 68.204212 ], [ 54.711914, 68.106102 ], [ 55.415039, 68.447662 ], [ 57.304688, 68.479926 ], [ 58.798828, 68.895187 ], [ 59.941406, 68.285651 ], [ 61.040039, 68.942607 ], [ 60.029297, 69.534518 ], [ 60.512695, 69.854762 ], [ 63.500977, 69.549877 ], [ 64.863281, 69.240579 ], [ 68.510742, 68.106102 ], [ 69.169922, 68.624544 ], [ 68.159180, 69.146920 ], [ 68.115234, 69.364831 ], [ 66.928711, 69.457554 ], [ 67.236328, 69.930300 ], [ 66.708984, 70.714471 ], [ 66.665039, 71.031249 ], [ 68.510742, 71.938158 ], [ 69.169922, 72.854981 ], [ 69.916992, 73.048236 ], [ 72.553711, 72.777081 ], [ 72.773438, 72.222101 ], [ 71.806641, 71.413177 ], [ 72.465820, 71.102543 ], [ 72.773438, 70.392606 ], [ 72.553711, 69.021414 ], [ 73.652344, 68.415352 ], [ 73.212891, 67.742759 ], [ 71.279297, 66.337505 ], [ 72.421875, 66.178266 ], [ 72.817383, 66.548263 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.289015 ], [ 75.014648, 67.776025 ], [ 74.443359, 68.334376 ], [ 74.926758, 68.989925 ], [ 73.828125, 69.084257 ], [ 73.564453, 69.641804 ], [ 74.399414, 70.641769 ], [ 73.081055, 71.455153 ], [ 74.882812, 72.127936 ], [ 74.619141, 72.842021 ], [ 75.146484, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.343013 ], [ 76.333008, 71.159391 ], [ 75.893555, 71.883578 ], [ 77.563477, 72.275693 ], [ 79.628906, 72.329130 ], [ 81.474609, 71.760191 ], [ 80.595703, 72.593979 ], [ 80.507812, 73.652545 ], [ 82.221680, 73.861506 ], [ 84.638672, 73.812574 ], [ 86.791992, 73.946791 ], [ 86.000977, 74.461134 ], [ 87.143555, 75.118222 ], [ 88.286133, 75.152043 ], [ 90.219727, 75.650431 ], [ 92.900391, 75.780545 ], [ 93.208008, 76.047916 ], [ 95.844727, 76.142958 ], [ 96.635742, 75.920199 ], [ 98.920898, 76.455203 ], [ 100.722656, 76.434604 ], [ 101.030273, 76.870796 ], [ 101.953125, 77.293202 ], [ 104.326172, 77.702234 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.217773, 52.749594 ], [ 143.217773, 51.781436 ], [ 143.613281, 50.764259 ], [ 144.624023, 48.980217 ], [ 143.173828, 49.325122 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.860191 ], [ 143.481445, 46.164614 ], [ 142.734375, 46.769968 ], [ 142.075195, 45.981695 ], [ 141.899414, 46.830134 ], [ 141.987305, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.119141, 49.639177 ], [ 142.163086, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.774689 ], [ 142.207031, 54.239551 ], [ 142.646484, 54.367759 ] ] ], [ [ [ 21.225586, 55.203953 ], [ 22.280273, 55.028022 ], [ 22.719727, 54.876607 ], [ 22.631836, 54.597528 ], [ 22.719727, 54.342149 ], [ 20.874023, 54.316523 ], [ 19.643555, 54.444492 ], [ 19.863281, 54.876607 ], [ 21.225586, 55.203953 ] ] ], [ [ [ 68.115234, 76.940488 ], [ 68.818359, 76.547523 ], [ 68.159180, 76.237366 ], [ 64.599609, 75.748125 ], [ 61.567383, 75.264239 ], [ 58.447266, 74.319235 ], [ 56.953125, 73.340461 ], [ 55.415039, 72.382410 ], [ 55.590820, 71.552741 ], [ 57.524414, 70.728979 ], [ 56.909180, 70.641769 ], [ 53.657227, 70.772443 ], [ 53.393555, 71.216075 ], [ 51.591797, 71.483086 ], [ 51.416016, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.426758, 72.777081 ], [ 54.404297, 73.627789 ], [ 53.481445, 73.751205 ], [ 55.898438, 74.636748 ], [ 55.590820, 75.084326 ], [ 57.832031, 75.617721 ], [ 61.127930, 76.258260 ], [ 64.467773, 76.444907 ], [ 66.181641, 76.810769 ], [ 68.115234, 76.940488 ] ] ], [ [ [ 180.000000, 71.524909 ], [ 180.000000, 70.844673 ], [ 178.901367, 70.786910 ], [ 178.681641, 71.102543 ], [ 180.000000, 71.524909 ] ] ], [ [ [ 142.031250, 73.861506 ], [ 143.481445, 73.478485 ], [ 143.569336, 73.214013 ], [ 142.075195, 73.214013 ], [ 140.009766, 73.327858 ], [ 139.833984, 73.378215 ], [ 140.800781, 73.775780 ], [ 142.031250, 73.861506 ] ] ], [ [ [ 138.823242, 76.142958 ], [ 141.459961, 76.100796 ], [ 145.063477, 75.563041 ], [ 144.272461, 74.821934 ], [ 140.581055, 74.856413 ], [ 138.955078, 74.613445 ], [ 136.933594, 75.264239 ], [ 137.504883, 75.952235 ], [ 138.823242, 76.142958 ] ] ], [ [ [ 146.337891, 75.497157 ], [ 148.183594, 75.353398 ], [ 150.688477, 75.084326 ], [ 149.545898, 74.694854 ], [ 147.963867, 74.787379 ], [ 146.118164, 75.174549 ], [ 146.337891, 75.497157 ] ] ], [ [ [ 102.084961, 79.351472 ], [ 102.832031, 79.286313 ], [ 105.336914, 78.716316 ], [ 105.073242, 78.313860 ], [ 99.404297, 77.924866 ], [ 101.250000, 79.237185 ], [ 102.084961, 79.351472 ] ] ], [ [ [ 95.932617, 81.255032 ], [ 97.866211, 80.753556 ], [ 100.151367, 79.781164 ], [ 99.931641, 78.887002 ], [ 97.734375, 78.759229 ], [ 94.965820, 79.046790 ], [ 93.295898, 79.432371 ], [ 92.504883, 80.148684 ], [ 91.142578, 80.342262 ], [ 93.735352, 81.024916 ], [ 95.932617, 81.255032 ] ] ], [ [ [ 50.009766, 80.921494 ], [ 51.503906, 80.703997 ], [ 51.108398, 80.553733 ], [ 48.867188, 80.342262 ], [ 48.735352, 80.178713 ], [ 47.548828, 80.012423 ], [ 46.494141, 80.253391 ], [ 47.065430, 80.560943 ], [ 44.824219, 80.596909 ], [ 46.757812, 80.774716 ], [ 48.295898, 80.788795 ], [ 48.515625, 80.517603 ], [ 49.086914, 80.760615 ], [ 50.009766, 80.921494 ] ] ] ] } } +, +{ "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": [ [ [ [ 28.125000, 71.187754 ], [ 31.289062, 70.466207 ], [ 29.970703, 70.199994 ], [ 31.069336, 69.565226 ], [ 29.399414, 69.162558 ], [ 28.564453, 69.068563 ], [ 29.003906, 69.778952 ], [ 27.729492, 70.170201 ], [ 26.147461, 69.839622 ], [ 25.664062, 69.099940 ], [ 24.697266, 68.656555 ], [ 23.642578, 68.895187 ], [ 22.324219, 68.847665 ], [ 21.225586, 69.380313 ], [ 20.610352, 69.115611 ], [ 19.995117, 69.068563 ], [ 19.863281, 68.415352 ], [ 17.973633, 68.576441 ], [ 17.709961, 68.024022 ], [ 16.743164, 68.024022 ], [ 15.073242, 66.196009 ], [ 13.535156, 64.792848 ], [ 13.886719, 64.453849 ], [ 13.535156, 64.052978 ], [ 12.568359, 64.072200 ], [ 11.909180, 63.134503 ], [ 11.953125, 61.814664 ], [ 12.612305, 61.312452 ], [ 12.260742, 60.130564 ], [ 11.425781, 59.445075 ], [ 10.986328, 58.859224 ], [ 10.327148, 59.489726 ], [ 8.349609, 58.332567 ], [ 7.031250, 58.101105 ], [ 5.625000, 58.608334 ], [ 5.273438, 59.667741 ], [ 4.965820, 61.980267 ], [ 5.888672, 62.633770 ], [ 8.525391, 63.470145 ], [ 10.502930, 64.491725 ], [ 12.348633, 65.892680 ], [ 14.721680, 67.825836 ], [ 16.435547, 68.576441 ], [ 19.160156, 69.824471 ], [ 21.357422, 70.259452 ], [ 22.983398, 70.214875 ], [ 24.521484, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.125000, 71.187754 ] ] ], [ [ [ 16.962891, 80.058050 ], [ 18.237305, 79.702907 ], [ 21.533203, 78.962976 ], [ 18.984375, 78.569201 ], [ 18.457031, 77.832589 ], [ 17.578125, 77.645947 ], [ 17.094727, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.389504 ], [ 14.633789, 77.739618 ], [ 13.139648, 78.025574 ], [ 11.206055, 78.870048 ], [ 10.415039, 79.655668 ], [ 13.139648, 80.012423 ], [ 13.710938, 79.663556 ], [ 15.117188, 79.679314 ], [ 15.512695, 80.020042 ], [ 16.962891, 80.058050 ] ] ], [ [ [ 22.851562, 78.455425 ], [ 23.247070, 78.080156 ], [ 24.697266, 77.860345 ], [ 22.456055, 77.446940 ], [ 20.698242, 77.683500 ], [ 21.401367, 77.943238 ], [ 20.786133, 78.260332 ], [ 22.851562, 78.455425 ] ] ], [ [ [ 22.895508, 80.661308 ], [ 25.444336, 80.408388 ], [ 27.377930, 80.058050 ], [ 25.883789, 79.520657 ], [ 22.983398, 79.400085 ], [ 20.039062, 79.568506 ], [ 19.863281, 79.843346 ], [ 18.457031, 79.866568 ], [ 17.358398, 80.320120 ], [ 20.434570, 80.604086 ], [ 21.884766, 80.364354 ], [ 22.895508, 80.661308 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.294922, 37.125286 ], [ 7.734375, 36.914764 ], [ 8.393555, 36.949892 ], [ 8.217773, 36.456636 ], [ 8.349609, 35.496456 ], [ 8.129883, 34.669359 ], [ 7.514648, 34.125448 ], [ 7.602539, 33.358062 ], [ 8.393555, 32.768800 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.138409 ], [ 9.448242, 30.334954 ], [ 9.799805, 29.458731 ], [ 9.843750, 28.960089 ], [ 9.667969, 28.149503 ], [ 9.755859, 27.722436 ], [ 9.624023, 27.176469 ], [ 9.711914, 26.549223 ], [ 9.316406, 26.115986 ], [ 9.887695, 25.403585 ], [ 9.931641, 24.966140 ], [ 10.283203, 24.407138 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.126702 ], [ 11.997070, 23.483401 ], [ 8.569336, 21.575719 ], [ 5.668945, 19.642588 ], [ 4.262695, 19.186678 ], [ 3.120117, 19.062118 ], [ 3.120117, 19.725342 ], [ 2.021484, 20.179724 ], [ 1.801758, 20.632784 ], [ 0.000000, 21.820708 ], [ -3.515625, 24.086589 ], [ -3.515625, 31.690782 ], [ -3.076172, 31.728167 ], [ -2.636719, 32.101190 ], [ -1.318359, 32.287133 ], [ -1.142578, 32.657876 ], [ -1.406250, 32.879587 ], [ -1.757812, 33.943360 ], [ -1.801758, 34.560859 ], [ -2.197266, 35.173808 ], [ -1.230469, 35.746512 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.995785 ], [ 0.483398, 36.315125 ], [ 1.450195, 36.633162 ], [ 3.120117, 36.809285 ], [ 4.790039, 36.879621 ], [ 5.317383, 36.738884 ], [ 6.240234, 37.125286 ], [ 7.294922, 37.125286 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.038086, 55.404070 ], [ 70.839844, 55.178868 ], [ 71.147461, 54.136696 ], [ 72.202148, 54.393352 ], [ 73.476562, 54.059388 ], [ 73.388672, 53.514185 ], [ 74.355469, 53.566414 ], [ 76.860352, 54.495568 ], [ 76.508789, 54.188155 ], [ 77.783203, 53.409532 ], [ 80.024414, 50.875311 ], [ 80.551758, 51.399206 ], [ 81.914062, 50.819818 ], [ 83.364258, 51.096623 ], [ 83.891602, 50.903033 ], [ 84.375000, 50.317408 ], [ 85.078125, 50.120578 ], [ 85.517578, 49.696062 ], [ 86.791992, 49.837982 ], [ 87.319336, 49.239121 ], [ 86.572266, 48.574790 ], [ 85.737305, 48.458352 ], [ 85.693359, 47.457809 ], [ 85.122070, 47.010226 ], [ 83.144531, 47.338823 ], [ 82.441406, 45.552525 ], [ 81.914062, 45.336702 ], [ 79.936523, 44.933696 ], [ 80.859375, 43.197167 ], [ 80.156250, 42.940339 ], [ 80.244141, 42.358544 ], [ 79.628906, 42.520700 ], [ 79.101562, 42.875964 ], [ 77.651367, 42.972502 ], [ 75.981445, 43.004647 ], [ 75.629883, 42.908160 ], [ 74.179688, 43.325178 ], [ 73.608398, 43.100983 ], [ 73.476562, 42.520700 ], [ 71.806641, 42.875964 ], [ 71.147461, 42.714732 ], [ 70.927734, 42.293564 ], [ 70.356445, 42.098222 ], [ 69.038086, 41.409776 ], [ 68.598633, 40.680638 ], [ 68.247070, 40.680638 ], [ 67.983398, 41.145570 ], [ 66.708984, 41.178654 ], [ 66.489258, 42.000325 ], [ 66.005859, 42.000325 ], [ 66.093750, 43.004647 ], [ 64.863281, 43.739352 ], [ 63.149414, 43.675818 ], [ 62.006836, 43.516689 ], [ 61.040039, 44.433780 ], [ 58.491211, 45.614037 ], [ 55.898438, 44.995883 ], [ 55.942383, 41.310824 ], [ 55.415039, 41.277806 ], [ 54.711914, 42.065607 ], [ 54.052734, 42.326062 ], [ 52.910156, 42.130821 ], [ 52.470703, 41.804078 ], [ 52.426758, 42.032974 ], [ 52.690430, 42.455888 ], [ 52.470703, 42.811522 ], [ 51.328125, 43.133061 ], [ 50.888672, 44.056012 ], [ 50.317383, 44.308127 ], [ 50.273438, 44.621754 ], [ 51.240234, 44.527843 ], [ 51.284180, 45.274886 ], [ 52.163086, 45.429299 ], [ 52.998047, 45.274886 ], [ 53.217773, 46.255847 ], [ 53.041992, 46.860191 ], [ 52.031250, 46.830134 ], [ 51.152344, 47.070122 ], [ 50.009766, 46.619261 ], [ 49.086914, 46.407564 ], [ 48.559570, 46.589069 ], [ 48.691406, 47.100045 ], [ 48.032227, 47.754098 ], [ 47.285156, 47.724545 ], [ 46.450195, 48.400032 ], [ 47.021484, 49.152970 ], [ 46.713867, 49.382373 ], [ 47.548828, 50.457504 ], [ 48.559570, 49.894634 ], [ 48.691406, 50.625073 ], [ 50.756836, 51.699800 ], [ 52.294922, 51.727028 ], [ 55.678711, 50.625073 ], [ 56.777344, 51.069017 ], [ 58.359375, 51.069017 ], [ 59.633789, 50.569283 ], [ 59.897461, 50.847573 ], [ 61.303711, 50.819818 ], [ 61.567383, 51.289406 ], [ 59.941406, 51.971346 ], [ 60.908203, 52.456009 ], [ 60.732422, 52.722986 ], [ 61.699219, 52.988337 ], [ 60.952148, 53.670680 ], [ 61.435547, 54.007769 ], [ 65.170898, 54.367759 ], [ 65.654297, 54.622978 ], [ 68.159180, 54.977614 ], [ 69.038086, 55.404070 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 39.155273, 32.175612 ], [ 40.385742, 31.914868 ], [ 41.879883, 31.203405 ], [ 44.692383, 29.190533 ], [ 46.538086, 29.113775 ], [ 47.416992, 29.036961 ], [ 47.680664, 28.536275 ], [ 48.383789, 28.574874 ], [ 48.779297, 27.722436 ], [ 49.262695, 27.488781 ], [ 49.438477, 27.137368 ], [ 50.141602, 26.706360 ], [ 50.185547, 26.313113 ], [ 50.097656, 25.958045 ], [ 50.229492, 25.641526 ], [ 50.493164, 25.363882 ], [ 50.800781, 24.766785 ], [ 51.108398, 24.567108 ], [ 51.372070, 24.647017 ], [ 51.987305, 23.039298 ], [ 54.975586, 22.512557 ], [ 55.195312, 22.715390 ], [ 55.634766, 22.024546 ], [ 54.975586, 20.014645 ], [ 51.987305, 19.020577 ], [ 49.086914, 18.646245 ], [ 48.164062, 18.187607 ], [ 47.460938, 17.140790 ], [ 46.977539, 16.972741 ], [ 46.713867, 17.308688 ], [ 46.362305, 17.266728 ], [ 45.395508, 17.350638 ], [ 45.175781, 17.434511 ], [ 44.033203, 17.434511 ], [ 43.769531, 17.350638 ], [ 43.374023, 17.602139 ], [ 43.110352, 17.098792 ], [ 43.198242, 16.678293 ], [ 42.758789, 16.383391 ], [ 42.626953, 16.804541 ], [ 42.319336, 17.098792 ], [ 42.231445, 17.476432 ], [ 41.748047, 17.853290 ], [ 41.220703, 18.687879 ], [ 40.913086, 19.518375 ], [ 40.209961, 20.179724 ], [ 39.770508, 20.344627 ], [ 39.111328, 21.330315 ], [ 39.023438, 22.024546 ], [ 39.023438, 22.593726 ], [ 38.452148, 23.725012 ], [ 38.012695, 24.086589 ], [ 37.441406, 24.287027 ], [ 37.133789, 24.886436 ], [ 37.177734, 25.085599 ], [ 36.914062, 25.641526 ], [ 36.606445, 25.839449 ], [ 36.210938, 26.588527 ], [ 35.112305, 28.071980 ], [ 34.628906, 28.071980 ], [ 34.936523, 29.382175 ], [ 36.035156, 29.228890 ], [ 36.474609, 29.535230 ], [ 36.738281, 29.878755 ], [ 37.485352, 30.031055 ], [ 37.661133, 30.372875 ], [ 37.968750, 30.524413 ], [ 37.001953, 31.541090 ], [ 38.979492, 32.026706 ], [ 39.155273, 32.175612 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.827148, 35.496456 ], [ 78.881836, 34.343436 ], [ 78.793945, 33.541395 ], [ 79.189453, 33.027088 ], [ 79.145508, 32.509762 ], [ 78.442383, 32.620870 ], [ 78.706055, 31.541090 ], [ 79.716797, 30.902225 ], [ 81.079102, 30.221102 ], [ 80.463867, 29.764377 ], [ 80.068359, 28.806174 ], [ 81.035156, 28.420391 ], [ 81.958008, 27.955591 ], [ 83.276367, 27.371767 ], [ 84.638672, 27.254630 ], [ 85.209961, 26.745610 ], [ 87.187500, 26.431228 ], [ 88.022461, 26.431228 ], [ 88.154297, 26.824071 ], [ 88.022461, 27.449790 ], [ 88.110352, 27.877928 ], [ 88.725586, 28.110749 ], [ 88.813477, 27.137368 ], [ 89.736328, 26.745610 ], [ 90.351562, 26.902477 ], [ 91.186523, 26.824071 ], [ 92.021484, 26.863281 ], [ 92.065430, 27.488781 ], [ 91.669922, 27.800210 ], [ 92.460938, 27.916767 ], [ 93.383789, 28.652031 ], [ 94.526367, 29.305561 ], [ 95.361328, 29.036961 ], [ 96.108398, 29.458731 ], [ 96.547852, 28.844674 ], [ 96.240234, 28.420391 ], [ 97.294922, 28.265682 ], [ 97.382812, 27.916767 ], [ 97.031250, 27.722436 ], [ 97.119141, 27.098254 ], [ 96.416016, 27.293689 ], [ 95.097656, 26.588527 ], [ 95.141602, 26.037042 ], [ 94.570312, 25.165173 ], [ 94.526367, 24.686952 ], [ 94.086914, 23.885838 ], [ 93.295898, 24.086589 ], [ 93.251953, 23.079732 ], [ 93.032227, 22.715390 ], [ 93.164062, 22.309426 ], [ 92.636719, 22.065278 ], [ 92.109375, 23.644524 ], [ 91.845703, 23.644524 ], [ 91.669922, 22.998852 ], [ 91.142578, 23.523700 ], [ 91.450195, 24.086589 ], [ 91.889648, 24.166802 ], [ 92.373047, 25.005973 ], [ 91.757812, 25.165173 ], [ 90.834961, 25.165173 ], [ 89.912109, 25.284438 ], [ 89.824219, 25.997550 ], [ 89.340820, 26.037042 ], [ 88.549805, 26.470573 ], [ 88.198242, 25.799891 ], [ 88.901367, 25.244696 ], [ 88.286133, 24.886436 ], [ 88.066406, 24.527135 ], [ 88.681641, 24.246965 ], [ 88.505859, 23.644524 ], [ 88.857422, 22.917923 ], [ 88.989258, 22.065278 ], [ 88.857422, 21.698265 ], [ 88.198242, 21.739091 ], [ 86.967773, 21.534847 ], [ 87.011719, 20.756114 ], [ 86.484375, 20.179724 ], [ 85.034180, 19.518375 ], [ 83.935547, 18.312811 ], [ 83.188477, 17.685895 ], [ 82.177734, 17.056785 ], [ 82.177734, 16.594081 ], [ 80.771484, 15.961329 ], [ 80.288086, 15.919074 ], [ 80.024414, 15.156974 ], [ 80.200195, 13.838080 ], [ 80.244141, 13.025966 ], [ 79.848633, 12.082296 ], [ 79.848633, 10.358151 ], [ 79.321289, 10.314919 ], [ 78.881836, 9.579084 ], [ 79.189453, 9.232249 ], [ 78.266602, 8.971897 ], [ 77.915039, 8.276727 ], [ 77.519531, 7.972198 ], [ 76.552734, 8.928487 ], [ 75.717773, 11.350797 ], [ 75.366211, 11.781325 ], [ 74.838867, 12.768946 ], [ 74.443359, 14.647368 ], [ 73.520508, 16.003576 ], [ 72.817383, 19.228177 ], [ 72.817383, 20.427013 ], [ 72.597656, 21.371244 ], [ 71.147461, 20.797201 ], [ 70.444336, 20.879343 ], [ 69.125977, 22.105999 ], [ 69.609375, 22.471955 ], [ 69.345703, 22.877440 ], [ 68.159180, 23.725012 ], [ 68.818359, 24.367114 ], [ 71.015625, 24.367114 ], [ 70.839844, 25.244696 ], [ 70.268555, 25.760320 ], [ 70.136719, 26.509905 ], [ 69.477539, 26.941660 ], [ 70.576172, 27.994401 ], [ 71.762695, 27.916767 ], [ 72.817383, 28.998532 ], [ 73.432617, 29.993002 ], [ 74.399414, 31.015279 ], [ 74.399414, 31.728167 ], [ 75.234375, 32.287133 ], [ 74.443359, 32.768800 ], [ 73.740234, 34.343436 ], [ 74.223633, 34.777716 ], [ 75.717773, 34.524661 ], [ 76.860352, 34.669359 ], [ 77.827148, 35.496456 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.833008, 52.052490 ], [ 99.975586, 51.645294 ], [ 100.854492, 51.536086 ], [ 102.041016, 51.261915 ], [ 102.216797, 50.513427 ], [ 103.666992, 50.092393 ], [ 104.589844, 50.289339 ], [ 105.864258, 50.429518 ], [ 106.875000, 50.289339 ], [ 107.841797, 49.809632 ], [ 108.457031, 49.296472 ], [ 109.379883, 49.296472 ], [ 110.654297, 49.152970 ], [ 111.577148, 49.382373 ], [ 112.895508, 49.553726 ], [ 114.345703, 50.261254 ], [ 114.960938, 50.148746 ], [ 115.444336, 49.809632 ], [ 116.674805, 49.894634 ], [ 115.444336, 48.136767 ], [ 115.708008, 47.754098 ], [ 116.279297, 47.872144 ], [ 117.290039, 47.724545 ], [ 118.037109, 48.078079 ], [ 118.828125, 47.754098 ], [ 119.750977, 47.070122 ], [ 119.663086, 46.709736 ], [ 118.872070, 46.830134 ], [ 117.377930, 46.679594 ], [ 116.674805, 46.407564 ], [ 115.971680, 45.736860 ], [ 114.433594, 45.367584 ], [ 113.422852, 44.809122 ], [ 111.840820, 45.120053 ], [ 111.313477, 44.465151 ], [ 111.665039, 44.087585 ], [ 111.796875, 43.771094 ], [ 111.093750, 43.421009 ], [ 110.390625, 42.875964 ], [ 109.204102, 42.520700 ], [ 107.709961, 42.488302 ], [ 106.127930, 42.163403 ], [ 104.941406, 41.607228 ], [ 104.501953, 41.934977 ], [ 103.271484, 41.934977 ], [ 101.821289, 42.520700 ], [ 100.810547, 42.682435 ], [ 99.492188, 42.553080 ], [ 97.426758, 42.779275 ], [ 96.328125, 42.747012 ], [ 95.756836, 43.325178 ], [ 95.273438, 44.245199 ], [ 94.658203, 44.370987 ], [ 93.471680, 44.995883 ], [ 90.922852, 45.305803 ], [ 90.571289, 45.736860 ], [ 90.966797, 46.890232 ], [ 90.263672, 47.694974 ], [ 88.813477, 48.078079 ], [ 87.978516, 48.603858 ], [ 87.714844, 49.325122 ], [ 88.769531, 49.496675 ], [ 90.703125, 50.345460 ], [ 92.197266, 50.819818 ], [ 93.076172, 50.513427 ], [ 94.130859, 50.485474 ], [ 94.790039, 50.035974 ], [ 95.800781, 49.979488 ], [ 97.250977, 49.752880 ], [ 98.217773, 50.429518 ], [ 97.822266, 51.013755 ], [ 98.833008, 52.052490 ] ] ] } } +, +{ "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": [ [ [ [ 110.170898, 20.138470 ], [ 110.786133, 20.097206 ], [ 111.005859, 19.725342 ], [ 110.566406, 19.269665 ], [ 110.302734, 18.687879 ], [ 109.467773, 18.229351 ], [ 108.632812, 18.521283 ], [ 108.588867, 19.394068 ], [ 109.116211, 19.849394 ], [ 110.170898, 20.138470 ] ] ], [ [ [ 123.530273, 53.461890 ], [ 125.024414, 53.173119 ], [ 125.903320, 52.802761 ], [ 126.562500, 51.808615 ], [ 126.914062, 51.371780 ], [ 127.265625, 50.764259 ], [ 127.617188, 49.781264 ], [ 129.375000, 49.468124 ], [ 130.561523, 48.748945 ], [ 130.957031, 47.813155 ], [ 132.495117, 47.813155 ], [ 133.330078, 48.195387 ], [ 135.000000, 48.487486 ], [ 134.472656, 47.606163 ], [ 134.077148, 47.219568 ], [ 133.769531, 46.134170 ], [ 133.066406, 45.151053 ], [ 131.879883, 45.336702 ], [ 131.000977, 44.995883 ], [ 131.264648, 44.119142 ], [ 131.132812, 42.940339 ], [ 130.605469, 42.908160 ], [ 130.605469, 42.423457 ], [ 129.990234, 43.004647 ], [ 129.594727, 42.455888 ], [ 128.012695, 42.000325 ], [ 128.188477, 41.475660 ], [ 127.309570, 41.508577 ], [ 126.826172, 41.836828 ], [ 126.166992, 41.112469 ], [ 125.068359, 40.580585 ], [ 124.233398, 39.943436 ], [ 122.827148, 39.639538 ], [ 122.124023, 39.198205 ], [ 121.025391, 38.925229 ], [ 121.552734, 39.368279 ], [ 121.333008, 39.774769 ], [ 122.167969, 40.446947 ], [ 121.596680, 40.946714 ], [ 120.761719, 40.613952 ], [ 119.619141, 39.909736 ], [ 119.003906, 39.266284 ], [ 118.037109, 39.232253 ], [ 117.509766, 38.754083 ], [ 118.037109, 38.065392 ], [ 118.872070, 37.926868 ], [ 118.872070, 37.474858 ], [ 119.663086, 37.160317 ], [ 120.805664, 37.892196 ], [ 121.684570, 37.509726 ], [ 122.343750, 37.474858 ], [ 122.519531, 36.949892 ], [ 121.069336, 36.668419 ], [ 120.629883, 36.137875 ], [ 119.663086, 35.639441 ], [ 119.135742, 34.921971 ], [ 120.190430, 34.379713 ], [ 120.585938, 33.394759 ], [ 121.201172, 32.472695 ], [ 121.904297, 31.728167 ], [ 121.860352, 30.977609 ], [ 121.245117, 30.713504 ], [ 121.464844, 30.145127 ], [ 122.080078, 29.840644 ], [ 121.904297, 29.036961 ], [ 121.640625, 28.226970 ], [ 121.113281, 28.149503 ], [ 119.575195, 25.760320 ], [ 118.652344, 24.567108 ], [ 115.883789, 22.796439 ], [ 114.741211, 22.674847 ], [ 114.125977, 22.228090 ], [ 113.774414, 22.553147 ], [ 113.203125, 22.065278 ], [ 111.840820, 21.575719 ], [ 110.742188, 21.412162 ], [ 110.434570, 20.344627 ], [ 109.863281, 20.303418 ], [ 109.599609, 21.043491 ], [ 109.863281, 21.412162 ], [ 108.500977, 21.739091 ], [ 108.017578, 21.575719 ], [ 107.006836, 21.820708 ], [ 106.523438, 22.228090 ], [ 106.699219, 22.796439 ], [ 105.776367, 22.998852 ], [ 105.292969, 23.362429 ], [ 104.458008, 22.836946 ], [ 103.491211, 22.715390 ], [ 102.700195, 22.715390 ], [ 102.128906, 22.471955 ], [ 101.645508, 22.350076 ], [ 101.777344, 21.207459 ], [ 101.250000, 21.207459 ], [ 101.162109, 21.453069 ], [ 101.118164, 21.861499 ], [ 100.415039, 21.575719 ], [ 99.228516, 22.146708 ], [ 99.492188, 22.958393 ], [ 98.876953, 23.160563 ], [ 98.657227, 24.086589 ], [ 97.602539, 23.926013 ], [ 97.690430, 25.085599 ], [ 98.657227, 25.958045 ], [ 98.657227, 27.527758 ], [ 98.217773, 27.761330 ], [ 97.910156, 28.343065 ], [ 97.294922, 28.265682 ], [ 96.240234, 28.420391 ], [ 96.547852, 28.844674 ], [ 96.108398, 29.458731 ], [ 95.361328, 29.036961 ], [ 94.526367, 29.305561 ], [ 93.383789, 28.652031 ], [ 92.460938, 27.916767 ], [ 91.669922, 27.800210 ], [ 91.230469, 28.071980 ], [ 90.703125, 28.071980 ], [ 90.000000, 28.304381 ], [ 89.472656, 28.071980 ], [ 88.813477, 27.332735 ], [ 88.725586, 28.110749 ], [ 88.110352, 27.877928 ], [ 86.923828, 27.994401 ], [ 85.781250, 28.226970 ], [ 84.990234, 28.652031 ], [ 84.199219, 28.844674 ], [ 83.891602, 29.343875 ], [ 83.320312, 29.496988 ], [ 82.309570, 30.145127 ], [ 81.518555, 30.448674 ], [ 81.079102, 30.221102 ], [ 79.716797, 30.902225 ], [ 78.706055, 31.541090 ], [ 78.442383, 32.620870 ], [ 79.145508, 32.509762 ], [ 79.189453, 33.027088 ], [ 78.793945, 33.541395 ], [ 78.881836, 34.343436 ], [ 77.827148, 35.496456 ], [ 76.157227, 35.924645 ], [ 75.893555, 36.668419 ], [ 75.146484, 37.160317 ], [ 74.970703, 37.439974 ], [ 74.794922, 37.996163 ], [ 74.838867, 38.410558 ], [ 74.223633, 38.616870 ], [ 73.916016, 38.513788 ], [ 73.652344, 39.436193 ], [ 73.959961, 39.673370 ], [ 73.784180, 39.909736 ], [ 74.750977, 40.380028 ], [ 75.454102, 40.580585 ], [ 76.508789, 40.446947 ], [ 76.904297, 41.079351 ], [ 78.178711, 41.211722 ], [ 78.530273, 41.607228 ], [ 80.112305, 42.130821 ], [ 80.244141, 42.358544 ], [ 80.156250, 42.940339 ], [ 80.859375, 43.197167 ], [ 79.936523, 44.933696 ], [ 81.914062, 45.336702 ], [ 82.441406, 45.552525 ], [ 83.144531, 47.338823 ], [ 85.122070, 47.010226 ], [ 85.693359, 47.457809 ], [ 85.737305, 48.458352 ], [ 86.572266, 48.574790 ], [ 87.319336, 49.239121 ], [ 87.714844, 49.325122 ], [ 87.978516, 48.603858 ], [ 88.813477, 48.078079 ], [ 90.263672, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.571289, 45.736860 ], [ 90.922852, 45.305803 ], [ 93.471680, 44.995883 ], [ 94.658203, 44.370987 ], [ 95.273438, 44.245199 ], [ 95.756836, 43.325178 ], [ 96.328125, 42.747012 ], [ 97.426758, 42.779275 ], [ 99.492188, 42.553080 ], [ 100.810547, 42.682435 ], [ 101.821289, 42.520700 ], [ 103.271484, 41.934977 ], [ 104.501953, 41.934977 ], [ 104.941406, 41.607228 ], [ 106.127930, 42.163403 ], [ 107.709961, 42.488302 ], [ 109.204102, 42.520700 ], [ 110.390625, 42.875964 ], [ 111.093750, 43.421009 ], [ 111.796875, 43.771094 ], [ 111.665039, 44.087585 ], [ 111.313477, 44.465151 ], [ 111.840820, 45.120053 ], [ 113.422852, 44.809122 ], [ 114.433594, 45.367584 ], [ 115.971680, 45.736860 ], [ 116.674805, 46.407564 ], [ 117.377930, 46.679594 ], [ 118.872070, 46.830134 ], [ 119.663086, 46.709736 ], [ 119.750977, 47.070122 ], [ 118.828125, 47.754098 ], [ 118.037109, 48.078079 ], [ 117.290039, 47.724545 ], [ 116.279297, 47.872144 ], [ 115.708008, 47.754098 ], [ 115.444336, 48.136767 ], [ 116.674805, 49.894634 ], [ 117.861328, 49.525208 ], [ 119.267578, 50.148746 ], [ 119.267578, 50.597186 ], [ 120.146484, 51.645294 ], [ 120.717773, 51.971346 ], [ 120.717773, 52.536273 ], [ 120.146484, 52.776186 ], [ 120.981445, 53.252069 ], [ 122.211914, 53.435719 ], [ 123.530273, 53.461890 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.333984, 5.266008 ], [ 27.949219, 4.434044 ], [ 28.388672, 4.302591 ], [ 28.696289, 4.477856 ], [ 29.135742, 4.390229 ], [ 29.707031, 4.609278 ], [ 29.926758, 4.214943 ], [ 30.805664, 3.513421 ], [ 30.761719, 2.372369 ], [ 31.157227, 2.240640 ], [ 30.849609, 1.889306 ], [ 30.454102, 1.625758 ], [ 30.058594, 1.098565 ], [ 29.838867, 0.615223 ], [ 29.794922, 0.000000 ], [ 29.794922, -0.175781 ], [ 29.575195, -0.571280 ], [ 29.575195, -1.318243 ], [ 29.267578, -1.581830 ], [ 29.223633, -2.196727 ], [ 29.091797, -2.284551 ], [ 29.003906, -2.811371 ], [ 29.267578, -3.250209 ], [ 29.267578, -3.513421 ], [ 15.996094, -3.513421 ], [ 15.952148, -2.679687 ], [ 16.391602, -1.713612 ], [ 16.831055, -1.186439 ], [ 17.490234, -0.703107 ], [ 17.666016, 0.000000 ], [ 17.797852, 0.307616 ], [ 17.753906, 0.878872 ], [ 17.885742, 1.757537 ], [ 18.061523, 2.372369 ], [ 18.369141, 2.943041 ], [ 18.500977, 4.214943 ], [ 18.896484, 4.740675 ], [ 19.467773, 5.047171 ], [ 20.258789, 4.696879 ], [ 20.917969, 4.346411 ], [ 21.621094, 4.258768 ], [ 22.368164, 4.039618 ], [ 22.675781, 4.653080 ], [ 22.807617, 4.740675 ], [ 23.291016, 4.653080 ], [ 24.389648, 5.134715 ], [ 24.785156, 4.915833 ], [ 25.092773, 4.959615 ], [ 25.268555, 5.178482 ], [ 25.620117, 5.266008 ], [ 27.026367, 5.134715 ], [ 27.333984, 5.266008 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -88.242188, 67.204032 ], [ -88.242188, 64.244595 ], [ -88.483887, 64.101007 ], [ -89.934082, 64.033744 ], [ -90.000000, 63.995235 ], [ -90.725098, 63.616982 ], [ -90.791016, 62.965212 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.031835 ], [ -94.262695, 60.909073 ], [ -94.636230, 60.119619 ], [ -94.702148, 58.950008 ], [ -93.229980, 58.790978 ], [ -92.768555, 57.856443 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.290918 ], [ -90.000000, 57.076575 ], [ -89.055176, 56.860986 ], [ -88.242188, 56.559482 ], [ -88.242188, 48.253941 ], [ -88.395996, 48.312428 ], [ -89.274902, 48.034019 ], [ -89.604492, 48.019324 ], [ -90.000000, 48.107431 ], [ -90.834961, 48.283193 ], [ -91.647949, 48.151428 ], [ -92.614746, 48.458352 ], [ -93.647461, 48.618385 ], [ -94.350586, 48.676454 ], [ -94.658203, 48.850258 ], [ -94.833984, 49.396675 ], [ -95.163574, 49.396675 ], [ -95.163574, 49.009051 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.993615 ], [ -125.639648, 50.429518 ], [ -127.441406, 50.833698 ], [ -128.012695, 51.727028 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.762892 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.813348 ], [ -129.990234, 55.291628 ], [ -130.012207, 55.924586 ], [ -131.726074, 56.559482 ], [ -133.374023, 58.413223 ], [ -134.274902, 58.870585 ], [ -134.956055, 59.277108 ], [ -135.483398, 59.789580 ], [ -136.494141, 59.467408 ], [ -137.460938, 58.915992 ], [ -138.361816, 59.567723 ], [ -139.042969, 60.009971 ], [ -140.031738, 60.283408 ], [ -140.998535, 60.316068 ], [ -140.998535, 67.204032 ], [ -88.242188, 67.204032 ] ] ], [ [ [ -128.364258, 50.778155 ], [ -127.309570, 50.555325 ], [ -126.716309, 50.401515 ], [ -125.771484, 50.303376 ], [ -124.936523, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.530273, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.835797 ], [ -125.969238, 49.181703 ], [ -126.870117, 49.539469 ], [ -127.045898, 49.823809 ], [ -128.078613, 50.007739 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.778155 ] ] ], [ [ [ -133.198242, 54.175297 ], [ -132.714844, 54.046489 ], [ -131.770020, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.198730, 52.187405 ], [ -131.594238, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.561035, 53.107217 ], [ -133.066406, 53.422628 ], [ -133.242188, 53.852527 ], [ -133.198242, 54.175297 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.874023, 20.282809 ], [ -155.236816, 19.993998 ], [ -155.083008, 19.870060 ], [ -154.819336, 19.518375 ], [ -154.841309, 19.456234 ], [ -155.544434, 19.103648 ], [ -155.698242, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.917969, 19.352611 ], [ -156.093750, 19.704658 ], [ -156.027832, 19.828725 ], [ -155.852051, 19.993998 ], [ -155.939941, 20.179724 ], [ -155.874023, 20.282809 ] ] ], [ [ [ -156.621094, 21.022983 ], [ -156.269531, 20.920397 ], [ -156.005859, 20.776659 ], [ -156.093750, 20.653346 ], [ -156.423340, 20.591652 ], [ -156.599121, 20.797201 ], [ -156.708984, 20.879343 ], [ -156.730957, 20.940920 ], [ -156.621094, 21.022983 ] ] ], [ [ [ -157.258301, 21.227942 ], [ -156.774902, 21.186973 ], [ -156.796875, 21.084500 ], [ -157.346191, 21.105000 ], [ -157.258301, 21.227942 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.653809, 21.330315 ], [ -157.719727, 21.268900 ], [ -158.137207, 21.330315 ], [ -158.312988, 21.596151 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.609375, 22.248429 ], [ -159.367676, 22.228090 ], [ -159.345703, 21.983801 ], [ -159.477539, 21.902278 ], [ -159.807129, 22.085640 ], [ -159.763184, 22.146708 ], [ -159.609375, 22.248429 ] ] ], [ [ [ -94.833984, 49.396675 ], [ -94.658203, 48.850258 ], [ -94.350586, 48.676454 ], [ -93.647461, 48.618385 ], [ -92.614746, 48.458352 ], [ -91.647949, 48.151428 ], [ -90.834961, 48.283193 ], [ -90.000000, 48.107431 ], [ -89.604492, 48.019324 ], [ -89.274902, 48.034019 ], [ -88.395996, 48.312428 ], [ -88.242188, 48.253941 ], [ -88.242188, 30.372875 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.428711, 29.897806 ], [ -89.450684, 29.496988 ], [ -89.230957, 29.305561 ], [ -89.428711, 29.171349 ], [ -89.780273, 29.324720 ], [ -90.000000, 29.209713 ], [ -90.175781, 29.132970 ], [ -90.900879, 29.152161 ], [ -91.647949, 29.688053 ], [ -92.504883, 29.554345 ], [ -93.229980, 29.802518 ], [ -93.867188, 29.726222 ], [ -94.702148, 29.496988 ], [ -95.603027, 28.748397 ], [ -96.613770, 28.323725 ], [ -97.141113, 27.839076 ], [ -97.382812, 27.391278 ], [ -97.382812, 26.706360 ], [ -97.338867, 26.214591 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.859224 ], [ -98.261719, 26.076521 ], [ -99.030762, 26.372185 ], [ -99.316406, 26.843677 ], [ -99.536133, 27.547242 ], [ -100.129395, 28.110749 ], [ -100.458984, 28.709861 ], [ -100.964355, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.117676, 28.979312 ], [ -103.952637, 29.286399 ], [ -104.458008, 29.573457 ], [ -104.721680, 30.126124 ], [ -105.051270, 30.656816 ], [ -105.644531, 31.090574 ], [ -106.149902, 31.409912 ], [ -106.523438, 31.765537 ], [ -108.259277, 31.765537 ], [ -108.259277, 31.353637 ], [ -111.027832, 31.334871 ], [ -114.829102, 32.528289 ], [ -114.741211, 32.731841 ], [ -117.136230, 32.546813 ], [ -117.312012, 33.063924 ], [ -117.949219, 33.632916 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.034453 ], [ -119.091797, 34.089061 ], [ -119.443359, 34.361576 ], [ -120.388184, 34.452218 ], [ -120.629883, 34.615127 ], [ -120.761719, 35.173808 ], [ -121.728516, 36.173357 ], [ -122.563477, 37.561997 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.117272 ], [ -123.728027, 38.959409 ], [ -123.881836, 39.774769 ], [ -124.409180, 40.329796 ], [ -124.189453, 41.145570 ], [ -124.233398, 42.000325 ], [ -124.541016, 42.779275 ], [ -124.145508, 43.723475 ], [ -123.903809, 45.537137 ], [ -124.101562, 46.875213 ], [ -124.409180, 47.724545 ], [ -124.694824, 48.195387 ], [ -124.584961, 48.385442 ], [ -123.134766, 48.048710 ], [ -122.607422, 47.100045 ], [ -122.343750, 47.368594 ], [ -122.519531, 48.180739 ], [ -122.849121, 49.009051 ], [ -95.163574, 49.009051 ], [ -95.163574, 49.396675 ], [ -94.833984, 49.396675 ] ] ], [ [ [ -140.998535, 67.204032 ], [ -140.998535, 60.316068 ], [ -140.031738, 60.283408 ], [ -139.042969, 60.009971 ], [ -138.361816, 59.567723 ], [ -137.460938, 58.915992 ], [ -136.494141, 59.467408 ], [ -135.483398, 59.789580 ], [ -134.956055, 59.277108 ], [ -134.274902, 58.870585 ], [ -133.374023, 58.413223 ], [ -131.726074, 56.559482 ], [ -130.012207, 55.924586 ], [ -129.990234, 55.291628 ], [ -130.539551, 54.813348 ], [ -131.088867, 55.191412 ], [ -131.967773, 55.503750 ], [ -132.253418, 56.377419 ], [ -133.549805, 57.183902 ], [ -134.099121, 58.124320 ], [ -135.043945, 58.193871 ], [ -136.647949, 58.217025 ], [ -137.812500, 58.505175 ], [ -139.877930, 59.545457 ], [ -142.580566, 60.086763 ], [ -143.964844, 60.009971 ], [ -145.942383, 60.468050 ], [ -147.128906, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.029785, 59.987998 ], [ -148.579102, 59.921990 ], [ -149.743652, 59.712097 ], [ -150.622559, 59.377988 ], [ -151.721191, 59.164668 ], [ -151.875000, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.358887, 61.037012 ], [ -150.622559, 61.291349 ], [ -151.896973, 60.737686 ], [ -152.600098, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.303223, 58.870585 ], [ -154.248047, 58.147519 ], [ -155.324707, 57.739350 ], [ -156.313477, 57.433124 ], [ -156.577148, 56.980911 ], [ -158.137207, 56.474628 ], [ -158.444824, 55.998381 ], [ -159.609375, 55.578345 ], [ -160.290527, 55.652798 ], [ -161.235352, 55.366625 ], [ -162.246094, 55.028022 ], [ -163.081055, 54.699234 ], [ -164.794922, 54.406143 ], [ -164.948730, 54.584797 ], [ -163.850098, 55.040614 ], [ -162.883301, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.576172, 56.010666 ], [ -160.070801, 56.426054 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.219608 ], [ -157.741699, 57.574779 ], [ -157.565918, 58.332567 ], [ -157.060547, 58.927334 ], [ -158.203125, 58.619777 ], [ -158.532715, 58.790978 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.938673 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.074448 ], [ -161.367188, 58.676938 ], [ -161.982422, 58.676938 ], [ -162.070312, 59.277108 ], [ -161.894531, 59.634435 ], [ -162.531738, 59.998986 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.272515 ], [ -165.366211, 60.511343 ], [ -165.366211, 61.079544 ], [ -166.135254, 61.501734 ], [ -165.739746, 62.083315 ], [ -164.926758, 62.633770 ], [ -164.575195, 63.154355 ], [ -163.762207, 63.223730 ], [ -163.081055, 63.064914 ], [ -162.268066, 63.548552 ], [ -161.542969, 63.460329 ], [ -160.773926, 63.772777 ], [ -160.971680, 64.225493 ], [ -161.520996, 64.406431 ], [ -160.795898, 64.792848 ], [ -161.411133, 64.783488 ], [ -162.465820, 64.567319 ], [ -162.773438, 64.339908 ], [ -163.564453, 64.567319 ], [ -164.970703, 64.453849 ], [ -166.442871, 64.689713 ], [ -166.860352, 65.090646 ], [ -168.112793, 65.676381 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.487305, 66.583217 ], [ -163.674316, 66.583217 ], [ -163.674316, 66.513260 ], [ -163.806152, 66.080457 ], [ -161.696777, 66.124962 ], [ -162.202148, 66.513260 ], [ -162.509766, 66.739902 ], [ -163.740234, 67.118748 ], [ -163.850098, 67.204032 ], [ -140.998535, 67.204032 ] ] ], [ [ [ -153.237305, 57.973157 ], [ -152.578125, 57.903174 ], [ -152.160645, 57.598335 ], [ -153.017578, 57.124314 ], [ -154.006348, 56.740674 ], [ -154.533691, 56.992883 ], [ -154.687500, 57.468589 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.973157 ] ] ], [ [ [ -166.486816, 60.392148 ], [ -165.695801, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.860352, 59.944007 ], [ -167.475586, 60.217991 ], [ -166.486816, 60.392148 ] ] ], [ [ [ -171.738281, 63.792191 ], [ -171.123047, 63.597448 ], [ -170.507812, 63.694987 ], [ -169.694824, 63.440686 ], [ -168.706055, 63.302813 ], [ -168.771973, 63.194018 ], [ -169.541016, 62.985180 ], [ -170.310059, 63.203926 ], [ -170.683594, 63.381679 ], [ -171.562500, 63.322549 ], [ -171.804199, 63.411198 ], [ -171.738281, 63.792191 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.741211, 32.731841 ], [ -114.829102, 32.528289 ], [ -111.027832, 31.334871 ], [ -108.259277, 31.353637 ], [ -108.259277, 31.765537 ], [ -106.523438, 31.765537 ], [ -106.149902, 31.409912 ], [ -105.644531, 31.090574 ], [ -105.051270, 30.656816 ], [ -104.721680, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.952637, 29.286399 ], [ -103.117676, 28.979312 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.964355, 29.382175 ], [ -100.458984, 28.709861 ], [ -100.129395, 28.110749 ], [ -99.536133, 27.547242 ], [ -99.316406, 26.843677 ], [ -99.030762, 26.372185 ], [ -98.261719, 26.076521 ], [ -97.536621, 25.859224 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.005973 ], [ -97.712402, 24.287027 ], [ -97.778320, 22.938160 ], [ -97.888184, 22.451649 ], [ -97.712402, 21.902278 ], [ -97.404785, 21.412162 ], [ -97.207031, 20.653346 ], [ -96.525879, 19.911384 ], [ -96.306152, 19.331878 ], [ -95.910645, 18.833515 ], [ -94.855957, 18.562947 ], [ -94.438477, 18.145852 ], [ -93.559570, 18.437925 ], [ -92.790527, 18.542117 ], [ -91.428223, 18.895893 ], [ -90.791016, 19.290406 ], [ -90.549316, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -90.000000, 21.125498 ], [ -89.604492, 21.268900 ], [ -88.549805, 21.493964 ], [ -88.242188, 21.493964 ], [ -88.242188, 18.521283 ], [ -88.505859, 18.500447 ], [ -88.857422, 17.895114 ], [ -89.033203, 18.020528 ], [ -89.165039, 17.957832 ], [ -89.165039, 17.811456 ], [ -90.000000, 17.832374 ], [ -91.010742, 17.832374 ], [ -91.010742, 17.266728 ], [ -91.472168, 17.266728 ], [ -91.098633, 16.930705 ], [ -90.725098, 16.699340 ], [ -90.615234, 16.488765 ], [ -90.439453, 16.425548 ], [ -90.483398, 16.088042 ], [ -91.757812, 16.066929 ], [ -92.241211, 15.262989 ], [ -92.087402, 15.072124 ], [ -92.219238, 14.838612 ], [ -92.241211, 14.541050 ], [ -93.361816, 15.623037 ], [ -93.889160, 15.940202 ], [ -94.702148, 16.214675 ], [ -95.251465, 16.130262 ], [ -96.064453, 15.771109 ], [ -96.569824, 15.665354 ], [ -97.272949, 15.919074 ], [ -98.020020, 16.109153 ], [ -98.964844, 16.573023 ], [ -99.711914, 16.720385 ], [ -100.832520, 17.182779 ], [ -101.667480, 17.664960 ], [ -101.931152, 17.936929 ], [ -102.480469, 17.978733 ], [ -103.513184, 18.312811 ], [ -103.930664, 18.750310 ], [ -105.007324, 19.331878 ], [ -105.512695, 19.952696 ], [ -105.732422, 20.447602 ], [ -105.402832, 20.550509 ], [ -105.512695, 20.817741 ], [ -105.270996, 21.084500 ], [ -105.270996, 21.432617 ], [ -105.622559, 21.881890 ], [ -105.710449, 22.289096 ], [ -106.040039, 22.776182 ], [ -106.918945, 23.785345 ], [ -107.929688, 24.567108 ], [ -108.413086, 25.185059 ], [ -109.270020, 25.582085 ], [ -109.445801, 25.839449 ], [ -109.291992, 26.450902 ], [ -109.819336, 26.686730 ], [ -110.412598, 27.176469 ], [ -110.654297, 27.877928 ], [ -111.181641, 27.955591 ], [ -111.774902, 28.478349 ], [ -112.236328, 28.960089 ], [ -112.280273, 29.267233 ], [ -112.829590, 30.031055 ], [ -113.181152, 30.789037 ], [ -113.159180, 31.184609 ], [ -113.884277, 31.578535 ], [ -114.213867, 31.541090 ], [ -114.785156, 31.802893 ], [ -114.938965, 31.409912 ], [ -114.785156, 30.921076 ], [ -114.675293, 30.164126 ], [ -114.345703, 29.764377 ], [ -113.598633, 29.075375 ], [ -113.444824, 28.844674 ], [ -113.291016, 28.767659 ], [ -113.159180, 28.420391 ], [ -112.983398, 28.439714 ], [ -112.763672, 27.780772 ], [ -112.478027, 27.527758 ], [ -112.258301, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.291504, 25.740529 ], [ -110.720215, 24.826625 ], [ -110.676270, 24.307053 ], [ -110.192871, 24.266997 ], [ -109.423828, 23.382598 ], [ -109.445801, 23.200961 ], [ -109.863281, 22.836946 ], [ -110.039062, 22.836946 ], [ -110.302734, 23.443089 ], [ -110.961914, 24.006326 ], [ -111.687012, 24.487149 ], [ -112.192383, 24.746831 ], [ -112.170410, 25.482951 ], [ -112.302246, 26.017298 ], [ -113.466797, 26.784847 ], [ -113.598633, 26.647459 ], [ -113.862305, 26.902477 ], [ -114.477539, 27.156920 ], [ -115.070801, 27.741885 ], [ -114.982910, 27.800210 ], [ -114.587402, 27.741885 ], [ -114.213867, 28.130128 ], [ -114.169922, 28.574874 ], [ -114.938965, 29.286399 ], [ -115.532227, 29.573457 ], [ -116.740723, 31.653381 ], [ -117.136230, 32.546813 ], [ -114.741211, 32.731841 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ -174.946289, 67.204032 ], [ -175.034180, 66.591948 ], [ -174.836426, 66.513260 ], [ -174.353027, 66.337505 ], [ -174.396973, 66.513260 ], [ -174.572754, 67.067433 ], [ -171.870117, 66.921449 ], [ -171.013184, 66.513260 ], [ -169.914551, 65.982270 ], [ -170.903320, 65.549367 ], [ -172.551270, 65.440002 ], [ -172.573242, 64.463323 ], [ -172.968750, 64.254141 ], [ -173.913574, 64.282760 ], [ -174.660645, 64.633292 ], [ -176.000977, 64.923542 ], [ -176.220703, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.374023, 65.394298 ], [ -178.923340, 65.748683 ], [ -178.703613, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.450684, 65.412589 ], [ -180.000000, 64.988651 ], [ -180.000000, 67.204032 ], [ -174.946289, 67.204032 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -95.229492, 71.924528 ], [ -93.911133, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.538086, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.503765 ], [ -90.571289, 68.479926 ], [ -90.000000, 68.807986 ], [ -89.230957, 69.263930 ], [ -88.242188, 68.736383 ], [ -88.242188, 68.065098 ], [ -88.330078, 67.875541 ], [ -88.242188, 67.825836 ], [ -88.242188, 65.802776 ], [ -140.998535, 65.802776 ], [ -140.998535, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.997802 ], [ -136.516113, 68.903097 ], [ -135.637207, 69.318320 ], [ -134.428711, 69.634158 ], [ -132.934570, 69.511457 ], [ -131.440430, 69.945375 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.786545 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.488236 ], [ -127.463379, 70.377854 ], [ -125.771484, 69.480672 ], [ -124.431152, 70.162746 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.695312, 69.862328 ], [ -121.486816, 69.801724 ], [ -119.948730, 69.380313 ], [ -117.619629, 69.013546 ], [ -116.235352, 68.847665 ], [ -115.268555, 68.911005 ], [ -113.906250, 68.399180 ], [ -115.312500, 67.908619 ], [ -113.510742, 67.692771 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.896484, 67.382150 ], [ -107.797852, 67.892086 ], [ -108.830566, 68.318146 ], [ -108.171387, 68.656555 ], [ -106.962891, 68.704486 ], [ -106.171875, 68.800041 ], [ -105.358887, 68.568414 ], [ -104.348145, 68.024022 ], [ -103.227539, 68.097907 ], [ -101.469727, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.459473, 67.784335 ], [ -98.569336, 68.407268 ], [ -97.690430, 68.584465 ], [ -96.130371, 68.244968 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.097907 ], [ -94.702148, 68.065098 ], [ -94.240723, 69.076412 ], [ -95.317383, 69.687618 ], [ -96.481934, 70.095529 ], [ -96.394043, 71.194838 ], [ -95.229492, 71.924528 ] ] ], [ [ [ -88.242188, 73.559522 ], [ -88.242188, 70.370474 ], [ -88.703613, 70.414714 ], [ -89.516602, 70.765206 ], [ -88.483887, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.587473 ], [ -90.219727, 72.235514 ], [ -90.000000, 72.481891 ], [ -89.450684, 73.131322 ], [ -88.417969, 73.540855 ], [ -88.242188, 73.559522 ] ] ], [ [ [ -98.239746, 70.147827 ], [ -97.163086, 69.862328 ], [ -96.569824, 69.687618 ], [ -95.668945, 69.107777 ], [ -96.284180, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.958391 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.239746, 70.147827 ] ] ], [ [ [ -115.202637, 73.315246 ], [ -114.169922, 73.124945 ], [ -114.675293, 72.653038 ], [ -112.456055, 72.958315 ], [ -111.071777, 72.455416 ], [ -109.929199, 72.964753 ], [ -109.028320, 72.633374 ], [ -108.193359, 71.656749 ], [ -107.687988, 72.067147 ], [ -108.413086, 73.093024 ], [ -107.534180, 73.239377 ], [ -106.523438, 73.080239 ], [ -105.402832, 72.672681 ], [ -104.787598, 71.705093 ], [ -104.479980, 70.995506 ], [ -102.788086, 70.502908 ], [ -100.986328, 70.028094 ], [ -101.096191, 69.588228 ], [ -102.744141, 69.511457 ], [ -102.106934, 69.123443 ], [ -102.436523, 68.760276 ], [ -104.260254, 68.911005 ], [ -105.974121, 69.185993 ], [ -107.138672, 69.123443 ], [ -109.006348, 68.784144 ], [ -113.334961, 68.536276 ], [ -113.862305, 69.013546 ], [ -115.224609, 69.287257 ], [ -116.125488, 69.170373 ], [ -117.355957, 69.960439 ], [ -116.674805, 70.073075 ], [ -115.136719, 70.244604 ], [ -113.730469, 70.192550 ], [ -112.434082, 70.370474 ], [ -114.367676, 70.605319 ], [ -116.499023, 70.524897 ], [ -117.905273, 70.546862 ], [ -118.432617, 70.909456 ], [ -116.125488, 71.314877 ], [ -117.663574, 71.300793 ], [ -119.421387, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.883301, 72.711903 ], [ -115.202637, 73.315246 ] ] ], [ [ [ -121.552734, 74.449358 ], [ -120.124512, 74.241846 ], [ -117.575684, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.532227, 73.478485 ], [ -116.784668, 73.226700 ], [ -119.223633, 72.521532 ], [ -120.476074, 71.821986 ], [ -120.476074, 71.385142 ], [ -123.112793, 70.902268 ], [ -123.640137, 71.343013 ], [ -125.947266, 71.869909 ], [ -125.507812, 72.295750 ], [ -124.826660, 73.022592 ], [ -123.947754, 73.683439 ], [ -124.936523, 74.295463 ], [ -121.552734, 74.449358 ] ] ], [ [ [ -100.371094, 73.849286 ], [ -99.184570, 73.633981 ], [ -97.382812, 73.763497 ], [ -97.141113, 73.472235 ], [ -98.063965, 72.996909 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.663663 ], [ -98.371582, 71.279648 ], [ -99.338379, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.514931 ], [ -102.480469, 72.835538 ], [ -100.458984, 72.711903 ], [ -101.557617, 73.365639 ], [ -100.371094, 73.849286 ] ] ], [ [ [ -94.504395, 74.140084 ], [ -92.438965, 74.104015 ], [ -90.527344, 73.861506 ], [ -92.021484, 72.971189 ], [ -93.208008, 72.777081 ], [ -94.284668, 72.026510 ], [ -95.427246, 72.067147 ], [ -96.042480, 72.945431 ], [ -96.020508, 73.440953 ], [ -95.515137, 73.867612 ], [ -94.504395, 74.140084 ] ] ], [ [ [ -105.270996, 73.640171 ], [ -104.501953, 73.422156 ], [ -105.380859, 72.764065 ], [ -106.940918, 73.465984 ], [ -106.611328, 73.602996 ], [ -105.270996, 73.640171 ] ] ], [ [ [ -109.599609, 76.795721 ], [ -108.566895, 76.679785 ], [ -108.215332, 76.205967 ], [ -107.819824, 75.850541 ], [ -106.940918, 76.016094 ], [ -105.886230, 75.973553 ], [ -105.710449, 75.480640 ], [ -106.325684, 75.010624 ], [ -109.709473, 74.850672 ], [ -112.236328, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.884277, 74.723827 ], [ -111.796875, 75.163300 ], [ -116.323242, 75.044684 ], [ -117.729492, 75.225065 ], [ -116.367188, 76.200727 ], [ -115.422363, 76.480910 ], [ -112.609863, 76.142958 ], [ -110.830078, 75.552081 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.434604 ], [ -109.599609, 76.795721 ] ] ], [ [ [ -96.745605, 77.162046 ], [ -94.702148, 77.098423 ], [ -93.581543, 76.780655 ], [ -91.625977, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.988770, 76.074381 ], [ -90.000000, 75.888091 ], [ -89.824219, 75.850541 ], [ -89.208984, 75.612262 ], [ -88.242188, 75.579466 ], [ -88.242188, 74.402163 ], [ -89.780273, 74.519889 ], [ -90.000000, 74.549185 ], [ -92.438965, 74.839183 ], [ -92.768555, 75.392239 ], [ -92.900391, 75.882732 ], [ -93.911133, 76.320754 ], [ -95.976562, 76.444907 ], [ -97.141113, 76.755508 ], [ -96.745605, 77.162046 ] ] ], [ [ [ -94.855957, 75.650431 ], [ -93.999023, 75.297735 ], [ -93.625488, 74.982183 ], [ -94.174805, 74.595946 ], [ -95.625000, 74.671638 ], [ -96.833496, 74.930855 ], [ -96.306152, 75.381152 ], [ -94.855957, 75.650431 ] ] ], [ [ [ -98.503418, 76.720223 ], [ -97.756348, 76.258260 ], [ -97.712402, 75.748125 ], [ -98.173828, 75.004940 ], [ -99.821777, 74.902266 ], [ -100.898438, 75.061686 ], [ -100.876465, 75.644984 ], [ -102.502441, 75.568518 ], [ -102.568359, 76.341523 ], [ -101.491699, 76.310358 ], [ -99.997559, 76.649377 ], [ -98.591309, 76.593451 ], [ -98.503418, 76.720223 ] ] ], [ [ [ -116.213379, 77.645947 ], [ -116.345215, 76.880775 ], [ -117.114258, 76.532180 ], [ -118.059082, 76.486046 ], [ -119.904785, 76.058508 ], [ -121.508789, 75.904154 ], [ -122.871094, 76.116622 ], [ -121.179199, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.213379, 77.645947 ] ] ], [ [ [ -88.242188, 80.643463 ], [ -89.384766, 80.858875 ], [ -90.000000, 81.167746 ], [ -90.219727, 81.261711 ], [ -91.384277, 81.553847 ], [ -91.604004, 81.895354 ], [ -90.109863, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.945312, 82.118384 ], [ -88.242188, 82.175425 ], [ -88.242188, 80.643463 ] ] ], [ [ [ -111.269531, 78.157062 ], [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.413467 ], [ -113.554688, 77.734951 ], [ -112.741699, 78.052896 ], [ -111.269531, 78.157062 ] ] ], [ [ [ -96.437988, 77.837219 ], [ -94.438477, 77.823323 ], [ -93.735352, 77.636542 ], [ -93.845215, 77.523122 ], [ -94.306641, 77.494607 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.837219 ] ] ], [ [ [ -98.635254, 78.874289 ], [ -97.338867, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.581055, 78.420193 ], [ -95.844727, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.569336, 78.459822 ], [ -98.635254, 78.874289 ] ] ], [ [ [ -105.512695, 79.302640 ], [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.327204 ], [ -99.689941, 77.911068 ], [ -101.315918, 78.021014 ], [ -102.963867, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.920832 ], [ -105.512695, 79.302640 ] ] ], [ [ [ -92.416992, 81.258372 ], [ -91.142578, 80.725269 ], [ -90.000000, 80.582539 ], [ -89.450684, 80.510360 ], [ -88.242188, 80.371707 ], [ -88.242188, 78.617003 ], [ -89.055176, 78.291586 ], [ -90.000000, 78.251387 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.754945 ], [ -93.955078, 79.117538 ], [ -93.164062, 79.383905 ], [ -94.987793, 79.375806 ], [ -96.086426, 79.706834 ], [ -96.723633, 80.159956 ], [ -96.020508, 80.604086 ], [ -95.339355, 80.907616 ], [ -94.306641, 80.980244 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ] ] ], [ [ [ -111.511230, 78.853070 ], [ -110.983887, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.895996, 78.406954 ], [ -112.543945, 78.411369 ], [ -112.543945, 78.551769 ], [ -111.511230, 78.853070 ] ] ], [ [ [ -88.242188, 77.122930 ], [ -88.242188, 76.439756 ], [ -89.494629, 76.475773 ], [ -89.626465, 76.955375 ], [ -88.242188, 77.122930 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -156.599121, 71.364089 ], [ -155.083008, 71.152294 ], [ -154.357910, 70.699951 ], [ -153.918457, 70.895078 ], [ -152.226562, 70.830248 ], [ -152.270508, 70.605319 ], [ -150.754395, 70.436799 ], [ -149.721680, 70.532222 ], [ -147.634277, 70.214875 ], [ -145.700684, 70.125430 ], [ -144.931641, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.998535, 69.718107 ], [ -140.998535, 65.802776 ], [ -167.673340, 65.802776 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.487305, 66.583217 ], [ -163.674316, 66.583217 ], [ -163.674316, 66.513260 ], [ -163.806152, 66.080457 ], [ -161.696777, 66.124962 ], [ -162.202148, 66.513260 ], [ -162.509766, 66.739902 ], [ -163.740234, 67.118748 ], [ -164.443359, 67.617589 ], [ -165.410156, 68.048677 ], [ -166.772461, 68.366801 ], [ -166.223145, 68.887274 ], [ -164.443359, 68.918910 ], [ -163.168945, 69.372573 ], [ -162.949219, 69.862328 ], [ -161.916504, 70.333533 ], [ -160.949707, 70.451508 ], [ -159.060059, 70.895078 ], [ -158.137207, 70.830248 ], [ -156.599121, 71.364089 ] ] ] } } +, +{ "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": [ [ [ [ -180.000000, 68.966279 ], [ -177.561035, 68.204212 ], [ -174.946289, 67.212544 ], [ -175.034180, 66.591948 ], [ -174.836426, 66.513260 ], [ -174.353027, 66.337505 ], [ -174.396973, 66.513260 ], [ -174.572754, 67.067433 ], [ -171.870117, 66.921449 ], [ -171.013184, 66.513260 ], [ -169.914551, 65.982270 ], [ -170.310059, 65.802776 ], [ -178.879395, 65.802776 ], [ -178.703613, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.824219, 65.802776 ], [ -180.000000, 65.802776 ], [ -180.000000, 68.966279 ] ] ], [ [ [ -179.033203, 71.559692 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.138093 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.837461 ], [ -180.000000, 71.517945 ], [ -179.890137, 71.559692 ], [ -179.033203, 71.559692 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.509535 ], [ -68.642578, -52.629729 ], [ -68.642578, -54.863963 ], [ -67.565918, -54.863963 ], [ -66.972656, -54.889246 ], [ -67.302246, -55.291628 ], [ -68.159180, -55.603178 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.491304 ], [ -69.960938, -55.191412 ], [ -71.015625, -55.053203 ], [ -72.268066, -54.482805 ], [ -73.300781, -53.956086 ], [ -74.663086, -52.829321 ], [ -73.850098, -53.041213 ], [ -72.443848, -53.709714 ], [ -71.125488, -54.072283 ], [ -70.598145, -53.605544 ], [ -70.268555, -52.922151 ], [ -69.345703, -52.509535 ] ] ], [ [ [ -69.609375, -17.560247 ], [ -69.104004, -18.250220 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.394068 ], [ -68.774414, -20.365228 ], [ -68.225098, -21.493964 ], [ -67.829590, -22.857195 ], [ -67.126465, -22.735657 ], [ -66.994629, -22.978624 ], [ -67.346191, -24.006326 ], [ -68.422852, -24.507143 ], [ -68.400879, -26.175159 ], [ -68.598633, -26.490240 ], [ -68.312988, -26.882880 ], [ -69.016113, -27.508271 ], [ -69.675293, -28.459033 ], [ -70.026855, -29.363027 ], [ -69.938965, -30.334954 ], [ -70.554199, -31.353637 ], [ -70.092773, -33.082337 ], [ -69.829102, -33.266250 ], [ -69.829102, -34.179998 ], [ -70.400391, -35.155846 ], [ -70.378418, -35.995785 ], [ -71.125488, -36.650793 ], [ -71.125488, -37.561997 ], [ -70.817871, -38.548165 ], [ -71.433105, -38.908133 ], [ -71.696777, -39.791655 ], [ -71.916504, -40.830437 ], [ -71.762695, -42.049293 ], [ -72.158203, -42.244785 ], [ -71.916504, -43.405047 ], [ -71.477051, -43.786958 ], [ -71.806641, -44.197959 ], [ -71.345215, -44.402392 ], [ -71.235352, -44.777936 ], [ -71.674805, -44.964798 ], [ -71.564941, -45.552525 ], [ -71.938477, -46.875213 ], [ -72.465820, -47.724545 ], [ -72.333984, -48.239309 ], [ -72.663574, -48.864715 ], [ -73.432617, -49.310799 ], [ -73.344727, -50.373496 ], [ -72.993164, -50.736455 ], [ -72.312012, -50.666872 ], [ -72.333984, -51.412912 ], [ -71.916504, -51.998410 ], [ -69.499512, -52.133488 ], [ -68.576660, -52.295042 ], [ -69.477539, -52.281602 ], [ -69.960938, -52.536273 ], [ -70.861816, -52.895649 ], [ -71.015625, -53.826597 ], [ -71.433105, -53.852527 ], [ -72.575684, -53.527248 ], [ -73.718262, -52.829321 ], [ -74.948730, -52.254709 ], [ -75.278320, -51.618017 ], [ -74.992676, -51.041394 ], [ -75.498047, -50.373496 ], [ -75.629883, -48.661943 ], [ -75.190430, -47.709762 ], [ -74.135742, -46.935261 ], [ -75.651855, -46.634351 ], [ -74.707031, -45.752193 ], [ -74.355469, -44.087585 ], [ -73.256836, -44.449468 ], [ -72.729492, -42.374778 ], [ -73.410645, -42.114524 ], [ -73.718262, -43.357138 ], [ -74.333496, -43.213183 ], [ -74.025879, -41.787697 ], [ -73.696289, -39.926588 ], [ -73.234863, -39.249271 ], [ -73.520508, -38.272689 ], [ -73.608398, -37.142803 ], [ -73.168945, -37.107765 ], [ -72.553711, -35.496456 ], [ -71.872559, -33.906896 ], [ -71.455078, -32.417066 ], [ -71.674805, -30.902225 ], [ -71.389160, -30.088108 ], [ -71.499023, -28.844674 ], [ -70.905762, -27.625140 ], [ -70.729980, -25.700938 ], [ -70.092773, -21.391705 ], [ -70.180664, -19.746024 ], [ -70.378418, -18.333669 ], [ -69.873047, -18.083201 ], [ -69.609375, -17.560247 ] ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ -49.987793, 1.757537 ], [ -49.965820, 1.054628 ], [ -50.712891, 0.241699 ], [ -50.405273, -0.065918 ], [ -48.625488, -0.219726 ], [ -48.603516, -1.230374 ], [ -47.834473, -0.571280 ], [ -46.582031, -0.922812 ], [ -44.912109, -1.537901 ], [ -44.428711, -2.130856 ], [ -44.582520, -2.679687 ], [ -43.439941, -2.372369 ], [ -41.484375, -2.899153 ], [ -39.990234, -2.855263 ], [ -38.518066, -3.688855 ], [ -37.243652, -4.806365 ], [ -36.474609, -5.090944 ], [ -35.617676, -5.134715 ], [ -35.244141, -5.462896 ], [ -34.738770, -7.340675 ], [ -35.134277, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.067871, -11.027472 ], [ -37.705078, -12.168226 ], [ -38.430176, -13.025966 ], [ -38.693848, -13.047372 ], [ -38.957520, -13.774066 ], [ -38.891602, -15.665354 ], [ -39.287109, -17.853290 ], [ -39.594727, -18.250220 ], [ -39.770508, -19.580493 ], [ -40.781250, -20.899871 ], [ -40.957031, -21.922663 ], [ -41.770020, -22.370396 ], [ -41.989746, -22.958393 ], [ -43.088379, -22.958393 ], [ -44.648438, -23.342256 ], [ -45.373535, -23.785345 ], [ -46.472168, -24.086589 ], [ -47.658691, -24.866503 ], [ -48.515625, -25.859224 ], [ -48.647461, -26.608174 ], [ -48.493652, -27.156920 ], [ -48.669434, -28.168875 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.209713 ], [ -50.712891, -30.977609 ], [ -51.591797, -31.765537 ], [ -52.272949, -32.231390 ], [ -52.712402, -33.192731 ], [ -53.393555, -33.760882 ], [ -53.657227, -33.192731 ], [ -53.217773, -32.713355 ], [ -53.789062, -32.045333 ], [ -54.580078, -31.484893 ], [ -55.612793, -30.845647 ], [ -55.986328, -30.864510 ], [ -56.997070, -30.107118 ], [ -57.634277, -30.202114 ], [ -56.293945, -28.844674 ], [ -55.173340, -27.877928 ], [ -53.657227, -26.922070 ], [ -53.635254, -26.115986 ], [ -54.140625, -25.542441 ], [ -54.645996, -25.720735 ], [ -54.448242, -25.145285 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.006326 ], [ -54.667969, -23.825551 ], [ -55.041504, -23.986253 ], [ -55.415039, -23.946096 ], [ -55.524902, -23.563987 ], [ -55.612793, -22.654572 ], [ -55.810547, -22.350076 ], [ -56.491699, -22.085640 ], [ -56.887207, -22.268764 ], [ -57.941895, -22.085640 ], [ -57.875977, -20.715015 ], [ -58.183594, -20.159098 ], [ -57.854004, -19.952696 ], [ -57.963867, -19.394068 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.166730 ], [ -57.744141, -17.539297 ], [ -58.293457, -17.266728 ], [ -58.403320, -16.867634 ], [ -58.249512, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.556641, -15.093339 ], [ -60.270996, -15.072124 ], [ -60.270996, -14.626109 ], [ -60.468750, -14.349548 ], [ -60.512695, -13.774066 ], [ -61.105957, -13.475106 ], [ -61.721191, -13.475106 ], [ -62.138672, -13.197165 ], [ -62.819824, -12.983148 ], [ -63.215332, -12.618897 ], [ -64.335938, -12.447305 ], [ -65.412598, -11.566144 ], [ -65.324707, -10.876465 ], [ -65.456543, -10.509417 ], [ -65.346680, -9.752370 ], [ -66.665039, -9.925566 ], [ -67.192383, -10.293301 ], [ -68.049316, -10.703792 ], [ -68.291016, -11.005904 ], [ -68.796387, -11.027472 ], [ -69.543457, -10.941192 ], [ -70.114746, -11.113727 ], [ -70.554199, -11.005904 ], [ -70.488281, -9.470736 ], [ -71.323242, -10.077037 ], [ -72.202148, -10.033767 ], [ -72.575684, -9.514079 ], [ -73.234863, -9.449062 ], [ -73.037109, -9.015302 ], [ -73.586426, -8.407168 ], [ -74.003906, -7.514981 ], [ -73.740234, -7.340675 ], [ -73.740234, -6.904614 ], [ -73.125000, -6.620957 ], [ -73.234863, -6.075011 ], [ -72.971191, -5.725311 ], [ -72.905273, -5.266008 ], [ -71.762695, -4.587376 ], [ -70.949707, -4.390229 ], [ -70.795898, -4.236856 ], [ -69.895020, -4.280680 ], [ -69.455566, -1.537901 ], [ -69.433594, -1.120534 ], [ -69.587402, -0.549308 ], [ -70.026855, -0.175781 ], [ -70.026855, 0.549308 ], [ -69.455566, 0.725078 ], [ -69.257812, 0.615223 ], [ -69.235840, 0.988720 ], [ -69.807129, 1.098565 ], [ -69.829102, 1.735574 ], [ -67.873535, 1.713612 ], [ -67.807617, 1.757537 ], [ -67.302246, 1.757537 ], [ -67.082520, 1.142502 ], [ -66.884766, 1.274309 ], [ -66.335449, 0.725078 ], [ -65.566406, 0.790990 ], [ -65.368652, 1.098565 ], [ -64.204102, 1.493971 ], [ -64.138184, 1.757537 ], [ -59.611816, 1.757537 ], [ -59.040527, 1.318243 ], [ -58.557129, 1.274309 ], [ -58.447266, 1.472006 ], [ -58.117676, 1.515936 ], [ -57.678223, 1.691649 ], [ -57.590332, 1.757537 ], [ -49.987793, 1.757537 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.642578, -52.629729 ], [ -68.269043, -53.094024 ], [ -67.763672, -53.839564 ], [ -66.467285, -54.444492 ], [ -65.061035, -54.699234 ], [ -65.500488, -55.191412 ], [ -66.467285, -55.241552 ], [ -66.972656, -54.889246 ], [ -67.565918, -54.863963 ], [ -68.642578, -54.863963 ], [ -68.642578, -52.629729 ] ] ], [ [ [ -66.291504, -21.820708 ], [ -64.973145, -22.065278 ], [ -64.379883, -22.796439 ], [ -64.006348, -21.983801 ], [ -62.863770, -22.024546 ], [ -62.687988, -22.248429 ], [ -60.864258, -23.865745 ], [ -60.029297, -24.026397 ], [ -58.820801, -24.766785 ], [ -57.788086, -25.145285 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.117813 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.371767 ], [ -54.799805, -26.608174 ], [ -54.645996, -25.720735 ], [ -54.140625, -25.542441 ], [ -53.635254, -26.115986 ], [ -53.657227, -26.922070 ], [ -55.173340, -27.877928 ], [ -56.293945, -28.844674 ], [ -57.634277, -30.202114 ], [ -57.875977, -31.015279 ], [ -58.161621, -32.026706 ], [ -58.139648, -33.027088 ], [ -58.359375, -33.247876 ], [ -58.513184, -34.415973 ], [ -57.238770, -35.281501 ], [ -57.370605, -35.960223 ], [ -56.755371, -36.403600 ], [ -56.799316, -36.897194 ], [ -57.766113, -38.169114 ], [ -59.238281, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.822591 ], [ -62.138672, -39.419221 ], [ -62.336426, -40.162083 ], [ -62.160645, -40.663973 ], [ -62.753906, -41.013066 ], [ -63.786621, -41.162114 ], [ -64.753418, -40.797177 ], [ -65.126953, -41.062786 ], [ -64.995117, -42.049293 ], [ -64.313965, -42.358544 ], [ -63.764648, -42.032974 ], [ -63.479004, -42.553080 ], [ -64.379883, -42.859860 ], [ -65.192871, -43.484812 ], [ -65.346680, -44.496505 ], [ -65.566406, -45.026950 ], [ -66.511230, -45.026950 ], [ -67.302246, -45.537137 ], [ -67.587891, -46.301406 ], [ -66.599121, -47.025206 ], [ -65.654297, -47.234490 ], [ -66.005859, -48.122101 ], [ -67.170410, -48.690960 ], [ -67.829590, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.147949, -50.722547 ], [ -68.818359, -51.767840 ], [ -68.159180, -52.348763 ], [ -68.576660, -52.295042 ], [ -69.499512, -52.133488 ], [ -71.916504, -51.998410 ], [ -72.333984, -51.412912 ], [ -72.312012, -50.666872 ], [ -72.993164, -50.736455 ], [ -73.344727, -50.373496 ], [ -73.432617, -49.310799 ], [ -72.663574, -48.864715 ], [ -72.333984, -48.239309 ], [ -72.465820, -47.724545 ], [ -71.938477, -46.875213 ], [ -71.564941, -45.552525 ], [ -71.674805, -44.964798 ], [ -71.235352, -44.777936 ], [ -71.345215, -44.402392 ], [ -71.806641, -44.197959 ], [ -71.477051, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.158203, -42.244785 ], [ -71.762695, -42.049293 ], [ -71.916504, -40.830437 ], [ -71.696777, -39.791655 ], [ -71.433105, -38.908133 ], [ -70.817871, -38.548165 ], [ -71.125488, -37.561997 ], [ -71.125488, -36.650793 ], [ -70.378418, -35.995785 ], [ -70.400391, -35.155846 ], [ -69.829102, -34.179998 ], [ -69.829102, -33.266250 ], [ -70.092773, -33.082337 ], [ -70.554199, -31.353637 ], [ -69.938965, -30.334954 ], [ -70.026855, -29.363027 ], [ -69.675293, -28.459033 ], [ -69.016113, -27.508271 ], [ -68.312988, -26.882880 ], [ -68.598633, -26.490240 ], [ -68.400879, -26.175159 ], [ -68.422852, -24.507143 ], [ -67.346191, -24.006326 ], [ -66.994629, -22.978624 ], [ -67.126465, -22.735657 ], [ -66.291504, -21.820708 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -91.757812, 57.171992 ], [ -90.900879, 57.290918 ], [ -90.000000, 57.076575 ], [ -89.055176, 56.860986 ], [ -88.044434, 56.474628 ], [ -87.341309, 56.010666 ], [ -86.088867, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.254077 ], [ -82.287598, 55.153766 ], [ -82.441406, 54.290882 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.220647 ], [ -79.145508, 51.536086 ], [ -78.618164, 52.562995 ], [ -79.145508, 54.149567 ], [ -79.848633, 54.673831 ], [ -78.244629, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.552734, 56.535258 ], [ -76.640625, 57.207710 ], [ -77.321777, 58.054632 ], [ -78.530273, 58.813742 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.329208 ], [ -77.431641, 62.552857 ], [ -75.717773, 62.288365 ], [ -74.685059, 62.186014 ], [ -73.850098, 62.451406 ], [ -72.927246, 62.114161 ], [ -71.696777, 61.533170 ], [ -71.389160, 61.143235 ], [ -69.609375, 61.068917 ], [ -69.631348, 60.228903 ], [ -69.301758, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.258789, 59.877912 ], [ -64.599609, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.413574, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.216490 ], [ -57.985840, 54.952386 ], [ -57.348633, 54.635697 ], [ -56.953125, 53.787672 ], [ -56.162109, 53.657661 ], [ -55.766602, 53.278353 ], [ -55.700684, 52.146973 ], [ -57.128906, 51.426614 ], [ -58.776855, 51.069017 ], [ -60.051270, 50.247205 ], [ -61.743164, 50.092393 ], [ -63.874512, 50.303376 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.525208 ], [ -68.532715, 49.081062 ], [ -69.960938, 47.754098 ], [ -71.125488, 46.830134 ], [ -70.268555, 46.995241 ], [ -68.664551, 48.312428 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.182129, 48.748945 ], [ -65.126953, 48.078079 ], [ -64.819336, 46.995241 ], [ -64.489746, 46.240652 ], [ -63.193359, 45.752193 ], [ -61.523438, 45.890008 ], [ -60.534668, 47.010226 ], [ -60.468750, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.274886 ], [ -63.259277, 44.684277 ], [ -64.248047, 44.276671 ], [ -65.368652, 43.548548 ], [ -66.137695, 43.628123 ], [ -66.181641, 44.465151 ], [ -64.445801, 45.305803 ], [ -66.027832, 45.259422 ], [ -67.148438, 45.151053 ], [ -67.807617, 45.706179 ], [ -67.807617, 47.070122 ], [ -68.247070, 47.368594 ], [ -68.906250, 47.189712 ], [ -69.257812, 47.457809 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.103516, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.520996, 45.011419 ], [ -74.882812, 45.011419 ], [ -75.322266, 44.824708 ], [ -76.508789, 44.024422 ], [ -76.838379, 43.644026 ], [ -78.728027, 43.628123 ], [ -79.189453, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.875964 ], [ -80.266113, 42.374778 ], [ -81.298828, 42.212245 ], [ -82.441406, 41.689322 ], [ -82.705078, 41.689322 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.983994 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.439674 ], [ -82.441406, 42.988576 ], [ -82.155762, 43.580391 ], [ -82.551270, 45.352145 ], [ -83.605957, 45.828799 ], [ -83.474121, 45.996962 ], [ -83.627930, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.111328, 46.286224 ], [ -84.155273, 46.513516 ], [ -84.353027, 46.422713 ], [ -84.616699, 46.452997 ], [ -84.550781, 46.543750 ], [ -84.792480, 46.649436 ], [ -84.880371, 46.905246 ], [ -88.395996, 48.312428 ], [ -89.274902, 48.034019 ], [ -89.604492, 48.019324 ], [ -90.000000, 48.107431 ], [ -90.834961, 48.283193 ], [ -91.647949, 48.151428 ], [ -91.757812, 48.180739 ], [ -91.757812, 57.171992 ] ] ], [ [ [ -55.876465, 51.645294 ], [ -55.415039, 51.590723 ], [ -55.612793, 51.330612 ], [ -56.140137, 50.694718 ], [ -56.799316, 49.823809 ], [ -56.162109, 50.162824 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.596470 ], [ -54.953613, 49.325122 ], [ -54.492188, 49.567978 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.531157 ], [ -53.107910, 48.690960 ], [ -52.976074, 48.166085 ], [ -52.668457, 47.546872 ], [ -53.085938, 46.664517 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.815099 ], [ -53.964844, 47.635784 ], [ -54.250488, 47.754098 ], [ -55.415039, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.305176, 47.398349 ], [ -56.271973, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.282227, 47.606163 ], [ -59.436035, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.531157 ], [ -58.403320, 49.138597 ], [ -57.370605, 50.722547 ], [ -56.755371, 51.289406 ], [ -55.876465, 51.645294 ] ] ], [ [ [ -64.028320, 47.040182 ], [ -63.676758, 46.558860 ], [ -62.951660, 46.422713 ], [ -62.028809, 46.452997 ], [ -62.512207, 46.042736 ], [ -62.885742, 45.981695 ], [ -64.160156, 46.407564 ], [ -64.401855, 46.739861 ], [ -64.028320, 47.040182 ] ] ], [ [ [ -64.182129, 49.965356 ], [ -62.863770, 49.710273 ], [ -61.853027, 49.296472 ], [ -61.809082, 49.109838 ], [ -62.314453, 49.095452 ], [ -63.610840, 49.410973 ], [ -64.533691, 49.880478 ], [ -64.182129, 49.965356 ] ] ], [ [ [ -63.852539, 67.204032 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.869715 ], [ -62.028809, 66.513260 ], [ -62.182617, 66.160511 ], [ -63.918457, 65.007224 ], [ -65.148926, 65.430867 ], [ -66.730957, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.159180, 65.694476 ], [ -67.104492, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.687500, 63.401361 ], [ -65.017090, 62.684228 ], [ -66.291504, 62.945231 ], [ -68.796387, 63.753350 ], [ -67.390137, 62.885205 ], [ -66.335449, 62.288365 ], [ -66.181641, 61.938950 ], [ -68.884277, 62.339411 ], [ -71.037598, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.685248 ], [ -74.838867, 64.680318 ], [ -74.838867, 64.396938 ], [ -77.717285, 64.235045 ], [ -78.574219, 64.576754 ], [ -77.915039, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.311523, 65.811781 ], [ -73.959961, 66.311035 ], [ -73.696289, 66.513260 ], [ -72.773438, 67.204032 ], [ -63.852539, 67.204032 ] ] ], [ [ [ -79.936523, 62.390369 ], [ -79.541016, 62.369996 ], [ -79.277344, 62.165502 ], [ -79.672852, 61.637726 ], [ -80.112305, 61.721118 ], [ -80.375977, 62.021528 ], [ -80.332031, 62.093600 ], [ -79.936523, 62.390369 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.892090, 62.905227 ], [ -81.914062, 62.714462 ], [ -83.078613, 62.165502 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.461567 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.484863, 65.375994 ], [ -83.891602, 65.118395 ], [ -82.792969, 64.774125 ], [ -81.650391, 64.463323 ], [ -81.562500, 63.985600 ], [ -80.837402, 64.062591 ], [ -80.112305, 63.733909 ], [ -80.991211, 63.421031 ], [ -82.551270, 63.656011 ], [ -83.122559, 64.110602 ], [ -84.111328, 63.577900 ], [ -85.539551, 63.054959 ], [ -85.869141, 63.646259 ], [ -87.231445, 63.548552 ], [ -86.374512, 64.043363 ], [ -86.242676, 64.830254 ], [ -85.891113, 65.739656 ] ] ], [ [ [ -75.761719, 67.204032 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.058105, 67.204032 ], [ -75.761719, 67.204032 ] ] ], [ [ [ -91.757812, 62.855146 ], [ -91.757812, 67.204032 ], [ -81.364746, 67.204032 ], [ -81.386719, 67.118748 ], [ -83.078613, 66.513260 ], [ -83.364258, 66.416748 ], [ -84.748535, 66.258011 ], [ -85.627441, 66.513260 ], [ -85.781250, 66.565747 ], [ -85.803223, 66.513260 ], [ -86.088867, 66.062633 ], [ -87.033691, 65.219894 ], [ -87.341309, 64.783488 ], [ -88.483887, 64.101007 ], [ -89.934082, 64.033744 ], [ -90.000000, 63.995235 ], [ -90.725098, 63.616982 ], [ -90.791016, 62.965212 ], [ -91.757812, 62.855146 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.395996, 48.312428 ], [ -84.880371, 46.905246 ], [ -84.792480, 46.649436 ], [ -84.550781, 46.543750 ], [ -84.616699, 46.452997 ], [ -84.353027, 46.422713 ], [ -84.155273, 46.513516 ], [ -84.111328, 46.286224 ], [ -83.891602, 46.118942 ], [ -83.627930, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.605957, 45.828799 ], [ -82.551270, 45.352145 ], [ -82.155762, 43.580391 ], [ -82.441406, 42.988576 ], [ -82.902832, 42.439674 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.983994 ], [ -83.034668, 41.836828 ], [ -82.705078, 41.689322 ], [ -82.441406, 41.689322 ], [ -81.298828, 42.212245 ], [ -80.266113, 42.374778 ], [ -78.947754, 42.875964 ], [ -78.925781, 42.972502 ], [ -79.013672, 43.277205 ], [ -79.189453, 43.468868 ], [ -78.728027, 43.628123 ], [ -76.838379, 43.644026 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.824708 ], [ -74.882812, 45.011419 ], [ -71.520996, 45.011419 ], [ -71.411133, 45.259422 ], [ -71.103516, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.694667 ], [ -69.257812, 47.457809 ], [ -68.906250, 47.189712 ], [ -68.247070, 47.368594 ], [ -67.807617, 47.070122 ], [ -67.807617, 45.706179 ], [ -67.148438, 45.151053 ], [ -66.972656, 44.824708 ], [ -68.049316, 44.339565 ], [ -69.060059, 43.992815 ], [ -70.136719, 43.691708 ], [ -70.817871, 42.875964 ], [ -70.839844, 42.342305 ], [ -70.510254, 41.820455 ], [ -70.092773, 41.787697 ], [ -70.202637, 42.147114 ], [ -69.895020, 41.934977 ], [ -69.982910, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.508577 ], [ -71.872559, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.718262, 40.946714 ], [ -72.246094, 41.129021 ], [ -71.960449, 40.930115 ], [ -73.366699, 40.630630 ], [ -74.003906, 40.630630 ], [ -73.959961, 40.763901 ], [ -74.267578, 40.480381 ], [ -73.981934, 40.430224 ], [ -74.179688, 39.724089 ], [ -74.926758, 38.942321 ], [ -74.992676, 39.198205 ], [ -75.212402, 39.249271 ], [ -75.541992, 39.504041 ], [ -75.322266, 38.976492 ], [ -75.080566, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.388184, 38.030786 ], [ -75.959473, 37.230328 ], [ -76.047363, 37.265310 ], [ -75.739746, 37.944198 ], [ -76.245117, 38.324420 ], [ -76.354980, 39.164141 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.099983 ], [ -76.992188, 38.255436 ], [ -76.311035, 37.926868 ], [ -76.267090, 36.967449 ], [ -75.981445, 36.914764 ], [ -75.871582, 36.562600 ], [ -75.739746, 35.567980 ], [ -76.376953, 34.813803 ], [ -77.409668, 34.524661 ], [ -78.068848, 33.943360 ], [ -78.574219, 33.870416 ], [ -79.079590, 33.504759 ], [ -79.211426, 33.174342 ], [ -80.310059, 32.509762 ], [ -80.881348, 32.045333 ], [ -81.342773, 31.447410 ], [ -81.496582, 30.732393 ], [ -81.320801, 30.050077 ], [ -80.991211, 29.190533 ], [ -80.551758, 28.478349 ], [ -80.551758, 28.052591 ], [ -80.068359, 26.882880 ], [ -80.134277, 25.819672 ], [ -80.397949, 25.224820 ], [ -80.683594, 25.085599 ], [ -81.188965, 25.204941 ], [ -81.342773, 25.641526 ], [ -81.716309, 25.878994 ], [ -82.727051, 27.508271 ], [ -82.858887, 27.897349 ], [ -82.661133, 28.555576 ], [ -82.946777, 29.113775 ], [ -83.715820, 29.954935 ], [ -84.111328, 30.107118 ], [ -85.122070, 29.649869 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.164126 ], [ -86.418457, 30.410782 ], [ -87.539062, 30.278044 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.428711, 29.897806 ], [ -89.450684, 29.496988 ], [ -89.230957, 29.305561 ], [ -89.428711, 29.171349 ], [ -89.780273, 29.324720 ], [ -90.000000, 29.209713 ], [ -90.175781, 29.132970 ], [ -90.900879, 29.152161 ], [ -91.647949, 29.688053 ], [ -91.757812, 29.668963 ], [ -91.757812, 48.180739 ], [ -91.647949, 48.151428 ], [ -90.834961, 48.283193 ], [ -90.000000, 48.107431 ], [ -89.604492, 48.019324 ], [ -89.274902, 48.034019 ], [ -88.395996, 48.312428 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.055664, 21.555284 ], [ -86.813965, 21.350781 ], [ -86.857910, 20.858812 ], [ -87.385254, 20.262197 ], [ -87.626953, 19.663280 ], [ -87.451172, 19.476950 ], [ -87.846680, 18.271086 ], [ -88.110352, 18.521283 ], [ -88.505859, 18.500447 ], [ -88.857422, 17.895114 ], [ -89.033203, 18.020528 ], [ -89.165039, 17.957832 ], [ -89.165039, 17.811456 ], [ -90.000000, 17.832374 ], [ -91.010742, 17.832374 ], [ -91.010742, 17.266728 ], [ -91.472168, 17.266728 ], [ -91.098633, 16.930705 ], [ -90.725098, 16.699340 ], [ -90.615234, 16.488765 ], [ -90.439453, 16.425548 ], [ -90.483398, 16.088042 ], [ -91.757812, 16.066929 ], [ -91.757812, 18.791918 ], [ -91.428223, 18.895893 ], [ -90.791016, 19.290406 ], [ -90.549316, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -90.000000, 21.125498 ], [ -89.604492, 21.268900 ], [ -88.549805, 21.493964 ], [ -87.670898, 21.473518 ], [ -87.055664, 21.555284 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.530273, 67.204032 ], [ -34.211426, 66.687784 ], [ -34.738770, 66.513260 ], [ -36.364746, 65.982270 ], [ -37.045898, 65.946472 ], [ -38.386230, 65.694476 ], [ -39.814453, 65.467386 ], [ -40.671387, 64.848937 ], [ -40.693359, 64.139369 ], [ -41.198730, 63.489767 ], [ -42.824707, 62.684228 ], [ -42.429199, 61.907926 ], [ -43.395996, 60.108670 ], [ -44.802246, 60.042904 ], [ -46.274414, 60.855613 ], [ -48.273926, 60.866312 ], [ -49.240723, 61.407236 ], [ -49.921875, 62.390369 ], [ -51.635742, 63.636504 ], [ -52.141113, 64.282760 ], [ -52.294922, 65.183030 ], [ -53.679199, 66.107170 ], [ -53.481445, 66.513260 ], [ -53.305664, 66.843807 ], [ -53.986816, 67.195518 ], [ -53.964844, 67.204032 ], [ -33.530273, 67.204032 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ -60.227051, 5.266008 ], [ -59.985352, 5.025283 ], [ -60.117188, 4.587376 ], [ -59.787598, 4.434044 ], [ -59.545898, 3.973861 ], [ -59.831543, 3.623071 ], [ -59.985352, 2.767478 ], [ -59.721680, 2.262595 ], [ -59.655762, 1.801461 ], [ -59.040527, 1.318243 ], [ -58.557129, 1.274309 ], [ -58.447266, 1.472006 ], [ -58.117676, 1.515936 ], [ -57.678223, 1.691649 ], [ -57.348633, 1.955187 ], [ -56.799316, 1.867345 ], [ -56.557617, 1.911267 ], [ -56.008301, 1.823423 ], [ -55.920410, 2.043024 ], [ -56.074219, 2.240640 ], [ -55.986328, 2.526037 ], [ -55.590820, 2.438229 ], [ -55.107422, 2.526037 ], [ -54.536133, 2.328460 ], [ -54.096680, 2.108899 ], [ -53.789062, 2.394322 ], [ -53.569336, 2.350415 ], [ -53.437500, 2.064982 ], [ -52.954102, 2.130856 ], [ -52.558594, 2.526037 ], [ -52.250977, 3.250209 ], [ -51.679688, 4.171115 ], [ -51.328125, 4.214943 ], [ -51.086426, 3.666928 ], [ -50.515137, 1.911267 ], [ -49.987793, 1.757537 ], [ -49.965820, 1.054628 ], [ -50.712891, 0.241699 ], [ -50.405273, -0.065918 ], [ -48.625488, -0.219726 ], [ -48.603516, -1.230374 ], [ -47.834473, -0.571280 ], [ -46.582031, -0.922812 ], [ -44.912109, -1.537901 ], [ -44.736328, -1.757537 ], [ -69.477539, -1.757537 ], [ -69.433594, -1.120534 ], [ -69.587402, -0.549308 ], [ -70.026855, -0.175781 ], [ -70.026855, 0.549308 ], [ -69.455566, 0.725078 ], [ -69.257812, 0.615223 ], [ -69.235840, 0.988720 ], [ -69.807129, 1.098565 ], [ -69.829102, 1.735574 ], [ -67.873535, 1.713612 ], [ -67.543945, 2.043024 ], [ -67.280273, 1.735574 ], [ -67.082520, 1.142502 ], [ -66.884766, 1.274309 ], [ -66.335449, 0.725078 ], [ -65.566406, 0.790990 ], [ -65.368652, 1.098565 ], [ -64.204102, 1.493971 ], [ -64.094238, 1.933227 ], [ -63.369141, 2.218684 ], [ -63.435059, 2.416276 ], [ -64.270020, 2.504085 ], [ -64.423828, 3.140516 ], [ -64.379883, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.643555, 4.149201 ], [ -63.896484, 4.039618 ], [ -63.105469, 3.776559 ], [ -62.819824, 4.017699 ], [ -62.094727, 4.171115 ], [ -60.974121, 4.543570 ], [ -60.622559, 4.937724 ], [ -60.754395, 5.200365 ], [ -60.227051, 5.266008 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.757812, 36.650793 ], [ 1.757812, 20.673905 ], [ 0.000000, 21.800308 ], [ -4.943848, 24.986058 ], [ -8.701172, 27.410786 ], [ -8.679199, 28.844674 ], [ -7.075195, 29.592565 ], [ -6.064453, 29.745302 ], [ -5.251465, 30.012031 ], [ -4.877930, 30.505484 ], [ -3.691406, 30.902225 ], [ -3.669434, 31.653381 ], [ -3.076172, 31.728167 ], [ -2.636719, 32.101190 ], [ -1.318359, 32.268555 ], [ -1.142578, 32.657876 ], [ -1.406250, 32.879587 ], [ -1.735840, 33.925130 ], [ -1.801758, 34.542762 ], [ -2.175293, 35.173808 ], [ -1.230469, 35.728677 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.483398, 36.315125 ], [ 1.450195, 36.615528 ], [ 1.757812, 36.650793 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -91.757812, 69.634158 ], [ -90.549316, 69.503765 ], [ -90.571289, 68.479926 ], [ -90.000000, 68.807986 ], [ -89.230957, 69.263930 ], [ -88.022461, 68.616534 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.925140 ], [ -85.583496, 68.792094 ], [ -85.539551, 69.885010 ], [ -84.111328, 69.809309 ], [ -82.639160, 69.664723 ], [ -81.298828, 69.162558 ], [ -81.232910, 68.672544 ], [ -81.979980, 68.138852 ], [ -81.276855, 67.600849 ], [ -81.386719, 67.118748 ], [ -83.078613, 66.513260 ], [ -83.364258, 66.416748 ], [ -84.748535, 66.258011 ], [ -85.627441, 66.513260 ], [ -85.781250, 66.565747 ], [ -85.803223, 66.513260 ], [ -86.088867, 66.062633 ], [ -86.374512, 65.802776 ], [ -91.757812, 65.802776 ], [ -91.757812, 69.634158 ] ] ], [ [ [ -85.847168, 73.806447 ], [ -86.572266, 73.163173 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.331543, 73.751205 ], [ -80.617676, 72.718432 ], [ -80.749512, 72.067147 ], [ -78.771973, 72.355789 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.248917 ], [ -74.245605, 71.773941 ], [ -74.113770, 71.335983 ], [ -72.246094, 71.559692 ], [ -71.213379, 70.923824 ], [ -68.796387, 70.532222 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -66.467285, 68.073305 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.869715 ], [ -62.028809, 66.513260 ], [ -62.182617, 66.160511 ], [ -62.731934, 65.802776 ], [ -65.764160, 65.802776 ], [ -66.730957, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.137207, 65.802776 ], [ -74.289551, 65.802776 ], [ -73.959961, 66.311035 ], [ -73.696289, 66.513260 ], [ -72.663574, 67.289015 ], [ -72.927246, 67.734435 ], [ -73.322754, 68.073305 ], [ -74.860840, 68.560384 ], [ -76.882324, 68.895187 ], [ -76.245117, 69.154740 ], [ -77.299805, 69.771356 ], [ -78.178711, 69.832048 ], [ -78.969727, 70.170201 ], [ -79.497070, 69.877452 ], [ -81.320801, 69.748551 ], [ -84.946289, 69.967967 ], [ -87.077637, 70.266872 ], [ -88.703613, 70.414714 ], [ -89.516602, 70.765206 ], [ -88.483887, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.587473 ], [ -90.219727, 72.235514 ], [ -90.000000, 72.481891 ], [ -89.450684, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.847168, 73.806447 ] ] ], [ [ [ -75.915527, 68.293779 ], [ -75.124512, 68.015798 ], [ -75.124512, 67.584098 ], [ -75.234375, 67.449657 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.592475 ], [ -76.816406, 68.155209 ], [ -75.915527, 68.293779 ] ] ], [ [ [ -80.354004, 73.763497 ], [ -78.068848, 73.652545 ], [ -76.354980, 73.105800 ], [ -76.267090, 72.829052 ], [ -78.398438, 72.880871 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.763497 ] ] ], [ [ [ -91.757812, 74.019543 ], [ -90.527344, 73.861506 ], [ -91.757812, 73.118566 ], [ -91.757812, 74.019543 ] ] ], [ [ [ -91.625977, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.988770, 76.074381 ], [ -90.000000, 75.888091 ], [ -89.824219, 75.850541 ], [ -89.208984, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.396484, 75.486148 ], [ -84.792480, 75.699360 ], [ -82.770996, 75.785942 ], [ -81.145020, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.848633, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.110840, 74.413974 ], [ -88.154297, 74.396253 ], [ -89.780273, 74.519889 ], [ -90.000000, 74.549185 ], [ -91.757812, 74.758524 ], [ -91.757812, 76.780655 ], [ -91.625977, 76.780655 ] ] ], [ [ [ -72.839355, 83.233838 ], [ -68.510742, 83.108435 ], [ -65.830078, 83.028886 ], [ -63.698730, 82.902419 ], [ -61.853027, 82.631333 ], [ -61.896973, 82.364564 ], [ -64.335938, 81.929358 ], [ -66.774902, 81.726350 ], [ -67.675781, 81.502052 ], [ -65.500488, 81.508544 ], [ -67.851562, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.191406, 79.800637 ], [ -73.256836, 79.635922 ], [ -73.894043, 79.432371 ], [ -76.926270, 79.327084 ], [ -75.541992, 79.200193 ], [ -76.223145, 79.021712 ], [ -75.410156, 78.529943 ], [ -76.354980, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.376465, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.024626 ], [ -77.893066, 76.780655 ], [ -80.573730, 76.179748 ], [ -83.188477, 76.455203 ], [ -86.132812, 76.299953 ], [ -87.604980, 76.424292 ], [ -89.494629, 76.475773 ], [ -89.626465, 76.955375 ], [ -87.780762, 77.181560 ], [ -88.264160, 77.901861 ], [ -87.670898, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.352539, 78.184088 ], [ -87.978516, 78.376004 ], [ -87.165527, 78.759229 ], [ -85.385742, 79.000771 ], [ -85.100098, 79.347411 ], [ -86.528320, 79.738196 ], [ -86.945801, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.430176, 80.103470 ], [ -81.870117, 80.466790 ], [ -84.111328, 80.582539 ], [ -87.604980, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.000000, 81.167746 ], [ -90.219727, 81.261711 ], [ -91.384277, 81.553847 ], [ -91.604004, 81.895354 ], [ -90.109863, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.945312, 82.118384 ], [ -86.989746, 82.282381 ], [ -85.517578, 82.653843 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.441406, 82.861578 ], [ -81.101074, 83.020881 ], [ -79.321289, 83.132123 ], [ -76.267090, 83.174035 ], [ -75.739746, 83.066122 ], [ -72.839355, 83.233838 ] ] ], [ [ [ -91.757812, 80.990573 ], [ -91.142578, 80.725269 ], [ -90.000000, 80.582539 ], [ -89.450684, 80.510360 ], [ -87.824707, 80.320120 ], [ -87.033691, 79.663556 ], [ -85.825195, 79.339285 ], [ -87.209473, 79.042615 ], [ -89.055176, 78.291586 ], [ -90.000000, 78.251387 ], [ -90.812988, 78.215541 ], [ -91.757812, 78.278201 ], [ -91.757812, 80.990573 ] ] ], [ [ [ -91.757812, 70.065585 ], [ -91.757812, 70.399978 ], [ -91.538086, 70.192550 ], [ -91.757812, 70.065585 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.090332, 83.645406 ], [ -27.114258, 83.520162 ], [ -20.852051, 82.729312 ], [ -22.697754, 82.344100 ], [ -26.520996, 82.300066 ], [ -31.904297, 82.202302 ], [ -31.398926, 82.024427 ], [ -27.861328, 82.133435 ], [ -24.851074, 81.789349 ], [ -22.917480, 82.094243 ], [ -22.082520, 81.735830 ], [ -23.181152, 81.154241 ], [ -20.632324, 81.524751 ], [ -15.776367, 81.913920 ], [ -12.788086, 81.720024 ], [ -12.216797, 81.291703 ], [ -16.303711, 80.582539 ], [ -16.853027, 80.353314 ], [ -20.061035, 80.178713 ], [ -17.731934, 80.129870 ], [ -18.918457, 79.400085 ], [ -19.709473, 78.754945 ], [ -19.687500, 77.641245 ], [ -18.479004, 76.990046 ], [ -20.039062, 76.945452 ], [ -21.687012, 76.629067 ], [ -19.841309, 76.100796 ], [ -19.599609, 75.253057 ], [ -20.676270, 75.157673 ], [ -19.379883, 74.301409 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.818698 ], [ -20.764160, 73.465984 ], [ -22.192383, 73.315246 ], [ -23.576660, 73.308936 ], [ -22.324219, 72.633374 ], [ -22.302246, 72.188526 ], [ -24.279785, 72.600551 ], [ -24.807129, 72.335798 ], [ -23.444824, 72.080673 ], [ -22.148438, 71.469124 ], [ -21.774902, 70.670881 ], [ -23.554688, 70.473553 ], [ -25.554199, 71.434176 ], [ -25.202637, 70.757966 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.368164, 70.132898 ], [ -25.048828, 69.263930 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.130668 ], [ -31.794434, 68.122482 ], [ -32.827148, 67.742759 ], [ -34.211426, 66.687784 ], [ -34.738770, 66.513260 ], [ -36.364746, 65.982270 ], [ -37.045898, 65.946472 ], [ -37.792969, 65.802776 ], [ -53.217773, 65.802776 ], [ -53.679199, 66.107170 ], [ -53.481445, 66.513260 ], [ -53.305664, 66.843807 ], [ -53.986816, 67.195518 ], [ -52.998047, 68.358699 ], [ -51.481934, 68.736383 ], [ -51.086426, 69.154740 ], [ -50.888672, 69.930300 ], [ -52.031250, 69.580563 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.287257 ], [ -54.689941, 69.611206 ], [ -54.755859, 70.296526 ], [ -54.360352, 70.823031 ], [ -53.437500, 70.837461 ], [ -51.394043, 70.576112 ], [ -53.129883, 71.208999 ], [ -54.008789, 71.552741 ], [ -55.019531, 71.413177 ], [ -55.854492, 71.656749 ], [ -54.733887, 72.587405 ], [ -55.327148, 72.964753 ], [ -56.140137, 73.652545 ], [ -57.326660, 74.712244 ], [ -58.601074, 75.101283 ], [ -58.601074, 75.519151 ], [ -61.281738, 76.106073 ], [ -63.413086, 76.179748 ], [ -66.071777, 76.137695 ], [ -68.510742, 76.063801 ], [ -69.675293, 76.382969 ], [ -71.411133, 77.009817 ], [ -68.796387, 77.326990 ], [ -66.774902, 77.379906 ], [ -71.059570, 77.636542 ], [ -73.300781, 78.048346 ], [ -73.168945, 78.433418 ], [ -69.389648, 78.916608 ], [ -65.720215, 79.396042 ], [ -65.324707, 79.761655 ], [ -68.027344, 80.118564 ], [ -67.170410, 80.517603 ], [ -63.698730, 81.214853 ], [ -62.248535, 81.321593 ], [ -62.666016, 81.770499 ], [ -60.292969, 82.036613 ], [ -57.216797, 82.193353 ], [ -54.140625, 82.202302 ], [ -53.063965, 81.889156 ], [ -50.405273, 82.440097 ], [ -48.010254, 82.066996 ], [ -46.604004, 81.987759 ], [ -44.538574, 81.662872 ], [ -46.911621, 82.202302 ], [ -46.779785, 82.628514 ], [ -43.417969, 83.226067 ], [ -39.902344, 83.181865 ], [ -38.627930, 83.549851 ], [ -35.090332, 83.645406 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.717773, 1.757537 ], [ 30.454102, 1.603794 ], [ 30.080566, 1.076597 ], [ 29.860840, 0.615223 ], [ 29.816895, 0.000000 ], [ 29.816895, -0.197754 ], [ 29.575195, -0.571280 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.603794 ], [ 29.245605, -2.196727 ], [ 29.113770, -2.284551 ], [ 29.003906, -2.833317 ], [ 29.267578, -3.272146 ], [ 29.333496, -4.499762 ], [ 29.509277, -5.419148 ], [ 29.399414, -5.922045 ], [ 29.619141, -6.511815 ], [ 30.190430, -7.079088 ], [ 30.739746, -8.320212 ], [ 30.344238, -8.233237 ], [ 28.981934, -8.385431 ], [ 28.718262, -8.515836 ], [ 28.432617, -9.145486 ], [ 28.652344, -9.600750 ], [ 28.366699, -11.781325 ], [ 29.333496, -12.340002 ], [ 29.597168, -12.168226 ], [ 29.685059, -13.239945 ], [ 28.916016, -13.239945 ], [ 28.520508, -12.683215 ], [ 28.146973, -12.254128 ], [ 27.377930, -12.125264 ], [ 27.158203, -11.587669 ], [ 26.542969, -11.910354 ], [ 25.751953, -11.781325 ], [ 25.400391, -11.329253 ], [ 24.763184, -11.221510 ], [ 24.301758, -11.243062 ], [ 24.235840, -10.941192 ], [ 23.444824, -10.854886 ], [ 22.829590, -11.005904 ], [ 22.390137, -10.984335 ], [ 22.148438, -11.070603 ], [ 22.192383, -9.882275 ], [ 21.862793, -9.514079 ], [ 21.796875, -8.906780 ], [ 21.928711, -8.298470 ], [ 21.730957, -7.906912 ], [ 21.708984, -7.275292 ], [ 20.500488, -7.297088 ], [ 20.588379, -6.926427 ], [ 20.083008, -6.926427 ], [ 20.017090, -7.100893 ], [ 19.401855, -7.144499 ], [ 19.160156, -7.732765 ], [ 19.006348, -7.972198 ], [ 18.457031, -7.841615 ], [ 18.127441, -7.972198 ], [ 17.468262, -8.059230 ], [ 16.853027, -7.209900 ], [ 16.567383, -6.620957 ], [ 16.325684, -5.856475 ], [ 13.359375, -5.856475 ], [ 13.007812, -5.965754 ], [ 12.722168, -5.943900 ], [ 12.304688, -6.096860 ], [ 12.172852, -5.769036 ], [ 12.436523, -5.681584 ], [ 12.458496, -5.244128 ], [ 12.612305, -4.981505 ], [ 12.985840, -4.762573 ], [ 13.249512, -4.872048 ], [ 13.579102, -4.499762 ], [ 14.128418, -4.499762 ], [ 14.194336, -4.784469 ], [ 14.567871, -4.959615 ], [ 15.161133, -4.324501 ], [ 15.732422, -3.842332 ], [ 15.996094, -3.513421 ], [ 15.952148, -2.701635 ], [ 16.391602, -1.735574 ], [ 16.853027, -1.208406 ], [ 17.512207, -0.725078 ], [ 17.622070, -0.417477 ], [ 17.687988, 0.000000 ], [ 17.819824, 0.307616 ], [ 17.753906, 0.856902 ], [ 17.885742, 1.757537 ], [ 30.717773, 1.757537 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Africa", "sov_a3": "ZAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Africa", "adm0_a3": "ZAF", "geou_dif": 0, "geounit": "South Africa", "gu_a3": "ZAF", "su_dif": 0, "subunit": "South Africa", "su_a3": "ZAF", "brk_diff": 0, "name": "South Africa", "name_long": "South Africa", "brk_a3": "ZAF", "brk_name": "South Africa", "abbrev": "S.Af.", "postal": "ZA", "formal_en": "Republic of South Africa", "name_sort": "South Africa", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 49052489, "gdp_md_est": 491000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ZA", "iso_a3": "ZAF", "iso_n3": "710", "un_a3": "710", "wb_a2": "ZA", "wb_a3": "ZAF", "woe_id": -99, "adm0_a3_is": "ZAF", "adm0_a3_us": "ZAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.838867, -22.085640 ], [ 30.322266, -22.268764 ], [ 30.651855, -22.146708 ], [ 31.179199, -22.248429 ], [ 31.926270, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.816406, -25.839449 ], [ 31.333008, -25.641526 ], [ 31.025391, -25.720735 ], [ 30.937500, -26.017298 ], [ 30.673828, -26.391870 ], [ 30.673828, -26.725987 ], [ 31.267090, -27.274161 ], [ 31.860352, -27.176469 ], [ 32.058105, -26.725987 ], [ 32.827148, -26.725987 ], [ 32.563477, -27.469287 ], [ 32.453613, -28.285033 ], [ 32.189941, -28.748397 ], [ 31.508789, -29.248063 ], [ 31.311035, -29.401320 ], [ 30.893555, -29.897806 ], [ 30.607910, -30.410782 ], [ 30.036621, -31.128199 ], [ 28.212891, -32.768800 ], [ 27.443848, -33.211116 ], [ 26.411133, -33.614619 ], [ 25.905762, -33.651208 ], [ 25.773926, -33.943360 ], [ 25.158691, -33.779147 ], [ 24.675293, -33.979809 ], [ 23.576660, -33.779147 ], [ 22.983398, -33.906896 ], [ 22.565918, -33.852170 ], [ 21.533203, -34.252676 ], [ 20.676270, -34.415973 ], [ 20.061035, -34.777716 ], [ 19.599609, -34.813803 ], [ 19.182129, -34.452218 ], [ 18.852539, -34.434098 ], [ 18.413086, -33.979809 ], [ 18.369141, -34.125448 ], [ 18.237305, -33.852170 ], [ 18.237305, -33.266250 ], [ 17.907715, -32.602362 ], [ 18.237305, -32.417066 ], [ 18.215332, -31.653381 ], [ 17.556152, -30.713504 ], [ 16.325684, -28.574874 ], [ 16.809082, -28.071980 ], [ 17.204590, -28.343065 ], [ 17.380371, -28.767659 ], [ 17.819824, -28.844674 ], [ 18.457031, -29.036961 ], [ 18.984375, -28.960089 ], [ 19.885254, -28.459033 ], [ 19.885254, -24.766785 ], [ 20.148926, -24.906367 ], [ 20.742188, -25.859224 ], [ 20.654297, -26.470573 ], [ 20.874023, -26.824071 ], [ 21.599121, -26.725987 ], [ 22.104492, -26.273714 ], [ 22.565918, -25.977799 ], [ 22.807617, -25.482951 ], [ 23.291016, -25.264568 ], [ 23.730469, -25.383735 ], [ 24.191895, -25.661333 ], [ 25.004883, -25.700938 ], [ 25.664062, -25.482951 ], [ 25.927734, -24.686952 ], [ 26.477051, -24.607069 ], [ 26.784668, -24.226929 ], [ 27.114258, -23.563987 ], [ 28.015137, -22.816694 ], [ 29.421387, -22.085640 ], [ 29.838867, -22.085640 ] ], [ [ 28.520508, -28.632747 ], [ 28.059082, -28.844674 ], [ 27.531738, -29.228890 ], [ 26.982422, -29.859701 ], [ 27.729492, -30.637912 ], [ 28.103027, -30.543339 ], [ 28.278809, -30.221102 ], [ 28.828125, -30.069094 ], [ 29.311523, -29.248063 ], [ 28.959961, -28.940862 ], [ 28.520508, -28.632747 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 91.757812, 67.204032 ], [ 91.757812, 50.666872 ], [ 90.703125, 50.345460 ], [ 90.000000, 50.021858 ], [ 88.791504, 49.482401 ], [ 87.341309, 49.224773 ], [ 86.813965, 49.837982 ], [ 85.539551, 49.696062 ], [ 85.100098, 50.120578 ], [ 84.396973, 50.317408 ], [ 83.913574, 50.903033 ], [ 83.364258, 51.082822 ], [ 81.936035, 50.819818 ], [ 80.551758, 51.399206 ], [ 80.024414, 50.875311 ], [ 77.783203, 53.409532 ], [ 76.508789, 54.188155 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.410645, 53.501117 ], [ 73.498535, 54.046489 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.178868 ], [ 69.060059, 55.391592 ], [ 68.159180, 54.977614 ], [ 65.654297, 54.610255 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.988337 ], [ 60.732422, 52.722986 ], [ 60.908203, 52.456009 ], [ 59.963379, 51.971346 ], [ 61.567383, 51.275662 ], [ 61.325684, 50.805935 ], [ 59.919434, 50.847573 ], [ 59.633789, 50.555325 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.055207 ], [ 55.700684, 50.625073 ], [ 54.514160, 51.027576 ], [ 52.316895, 51.727028 ], [ 50.756836, 51.699800 ], [ 48.691406, 50.611132 ], [ 48.559570, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.735840, 49.368066 ], [ 47.043457, 49.152970 ], [ 46.450195, 48.400032 ], [ 47.307129, 47.724545 ], [ 48.054199, 47.754098 ], [ 48.691406, 47.085085 ], [ 48.581543, 46.573967 ], [ 49.086914, 46.407564 ], [ 48.625488, 45.813486 ], [ 47.658691, 45.644768 ], [ 46.669922, 44.621754 ], [ 47.570801, 43.675818 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.820455 ], [ 47.966309, 41.409776 ], [ 47.812500, 41.162114 ], [ 47.373047, 41.228249 ], [ 46.669922, 41.836828 ], [ 46.384277, 41.869561 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.516602, 42.714732 ], [ 43.923340, 42.569264 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.229195 ], [ 40.913086, 43.389082 ], [ 40.056152, 43.564472 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.292401 ], [ 37.529297, 44.668653 ], [ 36.672363, 45.259422 ], [ 37.397461, 45.413876 ], [ 38.232422, 46.255847 ], [ 37.661133, 46.649436 ], [ 39.133301, 47.055154 ], [ 39.111328, 47.264320 ], [ 38.210449, 47.115000 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.726562, 47.901614 ], [ 39.880371, 48.239309 ], [ 39.660645, 48.792390 ], [ 40.078125, 49.310799 ], [ 40.056152, 49.610710 ], [ 38.583984, 49.937080 ], [ 37.990723, 49.922935 ], [ 37.375488, 50.387508 ], [ 36.606445, 50.233152 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.002441, 51.220647 ], [ 34.211426, 51.261915 ], [ 34.123535, 51.577070 ], [ 34.387207, 51.781436 ], [ 33.750000, 52.335339 ], [ 32.695312, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.145996, 52.066000 ], [ 31.772461, 52.106505 ], [ 31.530762, 52.749594 ], [ 31.289062, 53.080827 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.673340, 53.357109 ], [ 32.387695, 53.618579 ], [ 31.728516, 53.800651 ], [ 31.772461, 53.981935 ], [ 31.376953, 54.162434 ], [ 30.739746, 54.813348 ], [ 30.959473, 55.090944 ], [ 30.871582, 55.553495 ], [ 29.882812, 55.801281 ], [ 29.355469, 55.677584 ], [ 29.223633, 55.924586 ], [ 28.168945, 56.170023 ], [ 27.839355, 56.764768 ], [ 27.751465, 57.255281 ], [ 27.268066, 57.480403 ], [ 27.707520, 57.797944 ], [ 27.399902, 58.734005 ], [ 28.125000, 59.310768 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.511343 ], [ 30.190430, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.875188 ], [ 30.014648, 63.558338 ], [ 30.432129, 64.206377 ], [ 29.531250, 64.951465 ], [ 30.212402, 65.811781 ], [ 29.487305, 66.513260 ], [ 29.047852, 66.947274 ], [ 29.355469, 67.204032 ], [ 41.066895, 67.204032 ], [ 41.110840, 66.791909 ], [ 40.517578, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.364258, 66.000150 ], [ 35.375977, 66.513260 ], [ 33.903809, 66.765919 ], [ 33.178711, 66.635556 ], [ 33.442383, 66.513260 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.210938, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.339908 ], [ 36.518555, 64.764759 ], [ 37.155762, 65.146115 ], [ 39.572754, 64.529548 ], [ 40.429688, 64.764759 ], [ 39.748535, 65.503854 ], [ 42.077637, 66.478208 ], [ 43.000488, 66.425537 ], [ 43.945312, 66.071546 ], [ 44.318848, 66.513260 ], [ 44.516602, 66.757250 ], [ 43.901367, 67.204032 ], [ 45.549316, 67.204032 ], [ 45.549316, 67.016009 ], [ 46.340332, 66.670387 ], [ 47.878418, 66.886972 ], [ 48.010254, 67.204032 ], [ 72.465820, 67.204032 ], [ 71.520996, 66.513260 ], [ 71.279297, 66.328685 ], [ 72.421875, 66.178266 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.539517 ], [ 73.916016, 66.791909 ], [ 74.135742, 67.204032 ], [ 91.757812, 67.204032 ] ] ], [ [ [ 21.247559, 55.191412 ], [ 22.302246, 55.015426 ], [ 22.741699, 54.863963 ], [ 22.631836, 54.584797 ], [ 22.719727, 54.329338 ], [ 20.874023, 54.316523 ], [ 19.643555, 54.431713 ], [ 19.885254, 54.876607 ], [ 21.247559, 55.191412 ] ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 15.996094, 67.204032 ], [ 15.380859, 66.513260 ], [ 15.095215, 66.196009 ], [ 13.535156, 64.792848 ], [ 13.908691, 64.453849 ], [ 13.557129, 64.052978 ], [ 12.568359, 64.072200 ], [ 11.909180, 63.134503 ], [ 11.975098, 61.804284 ], [ 12.612305, 61.301902 ], [ 12.282715, 60.119619 ], [ 11.447754, 59.433903 ], [ 11.008301, 58.859224 ], [ 10.349121, 59.478569 ], [ 8.371582, 58.321030 ], [ 7.031250, 58.089493 ], [ 5.646973, 58.596887 ], [ 5.295410, 59.667741 ], [ 4.987793, 61.980267 ], [ 5.910645, 62.623668 ], [ 8.547363, 63.460329 ], [ 10.524902, 64.491725 ], [ 12.348633, 65.883704 ], [ 13.117676, 66.513260 ], [ 13.974609, 67.204032 ], [ 15.996094, 67.204032 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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": "Polygon", "coordinates": [ [ [ 23.532715, 67.204032 ], [ 23.554688, 66.513260 ], [ 23.554688, 66.399160 ], [ 23.884277, 66.009086 ], [ 22.170410, 65.730626 ], [ 21.203613, 65.035060 ], [ 21.357422, 64.415921 ], [ 19.775391, 63.616982 ], [ 17.841797, 62.754726 ], [ 17.116699, 61.344078 ], [ 17.819824, 60.640876 ], [ 18.786621, 60.086763 ], [ 17.863770, 58.961340 ], [ 16.809082, 58.722599 ], [ 16.435547, 57.052682 ], [ 15.864258, 56.108810 ], [ 14.655762, 56.206704 ], [ 14.084473, 55.416544 ], [ 12.941895, 55.366625 ], [ 12.612305, 56.316537 ], [ 11.777344, 57.444949 ], [ 11.008301, 58.859224 ], [ 11.447754, 59.433903 ], [ 12.282715, 60.119619 ], [ 12.612305, 61.301902 ], [ 11.975098, 61.804284 ], [ 11.909180, 63.134503 ], [ 12.568359, 64.072200 ], [ 13.557129, 64.052978 ], [ 13.908691, 64.453849 ], [ 13.535156, 64.792848 ], [ 15.095215, 66.196009 ], [ 15.380859, 66.513260 ], [ 15.996094, 67.204032 ], [ 23.532715, 67.204032 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.355469, 67.204032 ], [ 29.047852, 66.947274 ], [ 29.487305, 66.513260 ], [ 30.212402, 65.811781 ], [ 29.531250, 64.951465 ], [ 30.432129, 64.206377 ], [ 30.014648, 63.558338 ], [ 31.508789, 62.875188 ], [ 31.135254, 62.359805 ], [ 30.190430, 61.783513 ], [ 28.059082, 60.511343 ], [ 26.235352, 60.424699 ], [ 24.477539, 60.064840 ], [ 22.851562, 59.855851 ], [ 22.280273, 60.392148 ], [ 21.313477, 60.726944 ], [ 21.533203, 61.710706 ], [ 21.049805, 62.613562 ], [ 21.533203, 63.194018 ], [ 22.434082, 63.821288 ], [ 24.719238, 64.904910 ], [ 25.378418, 65.118395 ], [ 25.290527, 65.540270 ], [ 23.884277, 66.009086 ], [ 23.554688, 66.399160 ], [ 23.554688, 66.513260 ], [ 23.532715, 67.204032 ], [ 29.355469, 67.204032 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 33.750000, 52.335339 ], [ 34.387207, 51.781436 ], [ 34.123535, 51.577070 ], [ 34.211426, 51.261915 ], [ 35.002441, 51.220647 ], [ 35.375977, 50.778155 ], [ 35.354004, 50.583237 ], [ 36.606445, 50.233152 ], [ 37.375488, 50.387508 ], [ 37.990723, 49.922935 ], [ 38.583984, 49.937080 ], [ 40.056152, 49.610710 ], [ 40.078125, 49.310799 ], [ 39.660645, 48.792390 ], [ 39.880371, 48.239309 ], [ 39.726562, 47.901614 ], [ 38.759766, 47.827908 ], [ 38.254395, 47.546872 ], [ 38.210449, 47.115000 ], [ 37.419434, 47.025206 ], [ 36.738281, 46.709736 ], [ 35.815430, 46.649436 ], [ 34.958496, 46.286224 ], [ 35.002441, 45.660127 ], [ 35.507812, 45.413876 ], [ 36.518555, 45.475540 ], [ 36.320801, 45.120053 ], [ 35.222168, 44.949249 ], [ 33.881836, 44.370987 ], [ 33.310547, 44.574817 ], [ 33.530273, 45.042478 ], [ 32.453613, 45.336702 ], [ 32.629395, 45.521744 ], [ 33.574219, 45.859412 ], [ 33.288574, 46.088472 ], [ 31.728516, 46.346928 ], [ 31.662598, 46.709736 ], [ 30.739746, 46.589069 ], [ 30.366211, 46.042736 ], [ 29.597168, 45.305803 ], [ 29.135742, 45.475540 ], [ 28.674316, 45.305803 ], [ 28.212891, 45.490946 ], [ 28.476562, 45.598666 ], [ 28.652344, 45.951150 ], [ 28.916016, 46.271037 ], [ 28.850098, 46.452997 ], [ 29.069824, 46.528635 ], [ 29.157715, 46.392411 ], [ 29.750977, 46.362093 ], [ 30.014648, 46.437857 ], [ 29.816895, 46.528635 ], [ 29.904785, 46.679594 ], [ 29.553223, 46.935261 ], [ 29.399414, 47.353711 ], [ 29.047852, 47.517201 ], [ 29.113770, 47.857403 ], [ 28.652344, 48.122101 ], [ 28.256836, 48.166085 ], [ 27.509766, 48.472921 ], [ 26.850586, 48.370848 ], [ 26.608887, 48.224673 ], [ 26.191406, 48.224673 ], [ 25.927734, 47.989922 ], [ 25.202637, 47.901614 ], [ 24.851074, 47.739323 ], [ 24.389648, 47.989922 ], [ 23.752441, 47.989922 ], [ 23.137207, 48.107431 ], [ 22.697754, 47.886881 ], [ 22.631836, 48.151428 ], [ 22.082520, 48.429201 ], [ 22.280273, 48.835797 ], [ 22.543945, 49.095452 ], [ 22.763672, 49.037868 ], [ 22.500000, 49.482401 ], [ 23.422852, 50.317408 ], [ 23.906250, 50.429518 ], [ 24.016113, 50.708634 ], [ 23.510742, 51.590723 ], [ 23.994141, 51.618017 ], [ 24.543457, 51.890054 ], [ 25.312500, 51.917168 ], [ 26.323242, 51.835778 ], [ 27.443848, 51.604372 ], [ 28.234863, 51.577070 ], [ 28.608398, 51.440313 ], [ 28.981934, 51.604372 ], [ 29.245605, 51.371780 ], [ 30.146484, 51.426614 ], [ 30.541992, 51.330612 ], [ 30.607910, 51.835778 ], [ 30.915527, 52.052490 ], [ 31.772461, 52.106505 ], [ 32.145996, 52.066000 ], [ 32.409668, 52.295042 ], [ 32.695312, 52.241256 ], [ 33.750000, 52.335339 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.316895, 37.125286 ], [ 7.734375, 36.897194 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.438961 ], [ 8.371582, 35.496456 ], [ 8.129883, 34.669359 ], [ 7.514648, 34.107256 ], [ 7.602539, 33.358062 ], [ 8.415527, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.119801 ], [ 9.470215, 30.315988 ], [ 9.799805, 29.439598 ], [ 9.843750, 28.960089 ], [ 9.667969, 28.149503 ], [ 9.755859, 27.702984 ], [ 9.624023, 27.156920 ], [ 9.711914, 26.529565 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.383735 ], [ 9.931641, 24.946219 ], [ 10.283203, 24.387127 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.106647 ], [ 11.997070, 23.483401 ], [ 8.569336, 21.575719 ], [ 5.668945, 19.621892 ], [ 4.262695, 19.165924 ], [ 3.142090, 19.062118 ], [ 3.142090, 19.704658 ], [ 2.680664, 19.870060 ], [ 2.043457, 20.159098 ], [ 1.801758, 20.612220 ], [ 0.000000, 21.800308 ], [ -1.757812, 22.938160 ], [ -1.757812, 32.212801 ], [ -1.318359, 32.268555 ], [ -1.142578, 32.657876 ], [ -1.406250, 32.879587 ], [ -1.735840, 33.925130 ], [ -1.757812, 35.406961 ], [ -1.230469, 35.728677 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.483398, 36.315125 ], [ 1.450195, 36.615528 ], [ 3.142090, 36.791691 ], [ 4.812012, 36.879621 ], [ 5.317383, 36.721274 ], [ 6.240234, 37.125286 ], [ 7.316895, 37.125286 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 33.137551 ], [ 12.656250, 32.805745 ], [ 13.073730, 32.879587 ], [ 13.908691, 32.713355 ], [ 15.227051, 32.268555 ], [ 15.710449, 31.391158 ], [ 16.611328, 31.184609 ], [ 18.017578, 30.770159 ], [ 19.072266, 30.278044 ], [ 19.555664, 30.543339 ], [ 20.039062, 30.996446 ], [ 19.819336, 31.765537 ], [ 20.126953, 32.249974 ], [ 20.852051, 32.713355 ], [ 21.533203, 32.861132 ], [ 22.895508, 32.639375 ], [ 23.225098, 32.194209 ], [ 23.598633, 32.194209 ], [ 23.906250, 32.026706 ], [ 24.916992, 31.914868 ], [ 25.158691, 31.578535 ], [ 24.785156, 31.090574 ], [ 24.938965, 30.675715 ], [ 24.697266, 30.050077 ], [ 24.982910, 29.248063 ], [ 24.982910, 20.014645 ], [ 23.840332, 20.014645 ], [ 23.818359, 19.580493 ], [ 15.842285, 23.422928 ], [ 14.831543, 22.877440 ], [ 14.128418, 22.492257 ], [ 13.579102, 23.059516 ], [ 11.997070, 23.483401 ], [ 11.557617, 24.106647 ], [ 10.766602, 24.567108 ], [ 10.283203, 24.387127 ], [ 9.931641, 24.946219 ], [ 9.909668, 25.383735 ], [ 9.316406, 26.096255 ], [ 9.711914, 26.529565 ], [ 9.624023, 27.156920 ], [ 9.755859, 27.702984 ], [ 9.667969, 28.149503 ], [ 9.843750, 28.960089 ], [ 9.799805, 29.439598 ], [ 9.470215, 30.315988 ], [ 9.953613, 30.543339 ], [ 10.041504, 30.977609 ], [ 9.931641, 31.391158 ], [ 10.634766, 31.765537 ], [ 10.942383, 32.082575 ], [ 11.425781, 32.379961 ], [ 11.469727, 33.137551 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 36.848145, 22.004175 ], [ 37.177734, 21.022983 ], [ 36.958008, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.463379, 18.625425 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.434511 ], [ 37.155762, 17.266728 ], [ 36.848145, 16.972741 ], [ 36.738281, 16.299051 ], [ 36.320801, 14.838612 ], [ 36.408691, 14.434680 ], [ 36.254883, 13.581921 ], [ 35.859375, 12.597455 ], [ 35.244141, 12.103781 ], [ 34.826660, 11.329253 ], [ 34.716797, 10.919618 ], [ 34.255371, 10.639014 ], [ 33.947754, 9.600750 ], [ 33.947754, 9.470736 ], [ 33.815918, 9.492408 ], [ 33.837891, 9.990491 ], [ 33.706055, 10.336536 ], [ 33.200684, 10.725381 ], [ 33.068848, 11.458491 ], [ 33.200684, 12.189704 ], [ 32.739258, 12.254128 ], [ 32.673340, 12.039321 ], [ 32.058105, 11.974845 ], [ 32.299805, 11.695273 ], [ 32.387695, 11.092166 ], [ 31.838379, 10.552622 ], [ 31.333008, 9.817329 ], [ 30.827637, 9.709057 ], [ 29.992676, 10.293301 ], [ 29.597168, 10.098670 ], [ 29.509277, 9.795678 ], [ 28.981934, 9.622414 ], [ 28.959961, 9.405710 ], [ 27.949219, 9.405710 ], [ 27.817383, 9.622414 ], [ 27.092285, 9.644077 ], [ 26.740723, 9.470736 ], [ 26.477051, 9.557417 ], [ 25.949707, 10.141932 ], [ 25.773926, 10.422988 ], [ 25.048828, 10.293301 ], [ 24.785156, 9.817329 ], [ 24.521484, 8.928487 ], [ 24.191895, 8.733077 ], [ 23.884277, 8.624472 ], [ 23.444824, 8.971897 ], [ 23.378906, 9.275622 ], [ 23.554688, 9.687398 ], [ 23.532715, 10.098670 ], [ 22.961426, 10.725381 ], [ 22.851562, 11.156845 ], [ 22.873535, 11.393879 ], [ 22.500000, 11.695273 ], [ 22.478027, 12.275599 ], [ 22.280273, 12.661778 ], [ 21.928711, 12.597455 ], [ 22.016602, 12.961736 ], [ 22.280273, 13.389620 ], [ 22.170410, 13.795406 ], [ 22.500000, 14.093957 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 23.005371, 15.686510 ], [ 23.884277, 15.623037 ], [ 23.840332, 20.014645 ], [ 24.982910, 20.014645 ], [ 24.982910, 22.004175 ], [ 36.848145, 22.004175 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.060059, 55.391592 ], [ 70.861816, 55.178868 ], [ 71.169434, 54.136696 ], [ 72.224121, 54.380557 ], [ 73.498535, 54.046489 ], [ 73.410645, 53.501117 ], [ 74.377441, 53.553363 ], [ 76.882324, 54.495568 ], [ 76.508789, 54.188155 ], [ 77.783203, 53.409532 ], [ 80.024414, 50.875311 ], [ 80.551758, 51.399206 ], [ 81.936035, 50.819818 ], [ 83.364258, 51.082822 ], [ 83.913574, 50.903033 ], [ 84.396973, 50.317408 ], [ 85.100098, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.813965, 49.837982 ], [ 87.341309, 49.224773 ], [ 86.594238, 48.560250 ], [ 85.759277, 48.458352 ], [ 85.715332, 47.457809 ], [ 85.144043, 47.010226 ], [ 83.166504, 47.338823 ], [ 82.441406, 45.552525 ], [ 81.936035, 45.321254 ], [ 79.958496, 44.918139 ], [ 80.859375, 43.181147 ], [ 80.178223, 42.924252 ], [ 80.244141, 42.358544 ], [ 79.628906, 42.504503 ], [ 79.123535, 42.859860 ], [ 77.651367, 42.972502 ], [ 75.981445, 42.988576 ], [ 75.629883, 42.892064 ], [ 74.201660, 43.309191 ], [ 73.630371, 43.100983 ], [ 73.476562, 42.504503 ], [ 71.828613, 42.859860 ], [ 71.169434, 42.714732 ], [ 70.949707, 42.277309 ], [ 70.378418, 42.081917 ], [ 69.060059, 41.393294 ], [ 68.620605, 40.680638 ], [ 68.247070, 40.663973 ], [ 67.983398, 41.145570 ], [ 66.708984, 41.178654 ], [ 66.489258, 42.000325 ], [ 66.005859, 42.000325 ], [ 66.093750, 43.004647 ], [ 64.885254, 43.739352 ], [ 63.171387, 43.659924 ], [ 62.006836, 43.516689 ], [ 61.040039, 44.418088 ], [ 58.491211, 45.598666 ], [ 55.920410, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.437012, 41.261291 ], [ 54.733887, 42.049293 ], [ 54.074707, 42.326062 ], [ 52.932129, 42.130821 ], [ 52.492676, 41.787697 ], [ 52.426758, 42.032974 ], [ 52.690430, 42.455888 ], [ 52.492676, 42.795401 ], [ 51.328125, 43.133061 ], [ 50.888672, 44.040219 ], [ 50.317383, 44.292401 ], [ 50.295410, 44.621754 ], [ 51.262207, 44.527843 ], [ 51.306152, 45.259422 ], [ 52.163086, 45.413876 ], [ 53.020020, 45.259422 ], [ 53.217773, 46.240652 ], [ 53.041992, 46.860191 ], [ 52.031250, 46.815099 ], [ 51.174316, 47.055154 ], [ 50.031738, 46.619261 ], [ 49.086914, 46.407564 ], [ 48.581543, 46.573967 ], [ 48.691406, 47.085085 ], [ 48.054199, 47.754098 ], [ 47.307129, 47.724545 ], [ 46.450195, 48.400032 ], [ 47.043457, 49.152970 ], [ 46.735840, 49.368066 ], [ 47.548828, 50.457504 ], [ 48.559570, 49.880478 ], [ 48.691406, 50.611132 ], [ 50.756836, 51.699800 ], [ 52.316895, 51.727028 ], [ 54.514160, 51.027576 ], [ 55.700684, 50.625073 ], [ 56.777344, 51.055207 ], [ 58.359375, 51.069017 ], [ 59.633789, 50.555325 ], [ 59.919434, 50.847573 ], [ 61.325684, 50.805935 ], [ 61.567383, 51.275662 ], [ 59.963379, 51.971346 ], [ 60.908203, 52.456009 ], [ 60.732422, 52.722986 ], [ 61.699219, 52.988337 ], [ 60.974121, 53.670680 ], [ 61.435547, 54.007769 ], [ 65.170898, 54.354956 ], [ 65.654297, 54.610255 ], [ 68.159180, 54.977614 ], [ 69.060059, 55.391592 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.780273, 39.724089 ], [ 44.934082, 39.351290 ], [ 45.439453, 38.891033 ], [ 46.142578, 38.754083 ], [ 46.494141, 38.771216 ], [ 47.680664, 39.520992 ], [ 48.054199, 39.588757 ], [ 48.339844, 39.300299 ], [ 48.010254, 38.805470 ], [ 48.625488, 38.272689 ], [ 48.867188, 38.324420 ], [ 49.196777, 37.596824 ], [ 50.141602, 37.387617 ], [ 50.822754, 36.879621 ], [ 52.250977, 36.703660 ], [ 53.811035, 36.967449 ], [ 53.920898, 37.212832 ], [ 54.799805, 37.405074 ], [ 55.502930, 37.978845 ], [ 56.162109, 37.944198 ], [ 56.601562, 38.134557 ], [ 57.326660, 38.030786 ], [ 58.425293, 37.527154 ], [ 59.216309, 37.422526 ], [ 60.358887, 36.544949 ], [ 61.105957, 36.491973 ], [ 61.193848, 35.657296 ], [ 60.798340, 34.415973 ], [ 60.512695, 33.687782 ], [ 60.952148, 33.541395 ], [ 60.534668, 32.990236 ], [ 60.842285, 32.194209 ], [ 60.930176, 31.559815 ], [ 61.699219, 31.391158 ], [ 61.765137, 30.751278 ], [ 60.864258, 29.840644 ], [ 61.347656, 29.305561 ], [ 61.765137, 28.709861 ], [ 62.709961, 28.265682 ], [ 62.753906, 27.391278 ], [ 63.215332, 27.235095 ], [ 63.303223, 26.765231 ], [ 61.853027, 26.254010 ], [ 61.479492, 25.085599 ], [ 59.611816, 25.383735 ], [ 58.513184, 25.621716 ], [ 57.392578, 25.740529 ], [ 56.953125, 26.980829 ], [ 56.491699, 27.156920 ], [ 55.722656, 26.980829 ], [ 54.711914, 26.490240 ], [ 53.481445, 26.824071 ], [ 52.470703, 27.586198 ], [ 51.503906, 27.877928 ], [ 50.844727, 28.825425 ], [ 50.097656, 30.164126 ], [ 49.570312, 29.993002 ], [ 48.933105, 30.334954 ], [ 48.559570, 29.935895 ], [ 48.010254, 30.467614 ], [ 47.988281, 30.996446 ], [ 47.680664, 30.996446 ], [ 47.834473, 31.709476 ], [ 47.329102, 32.472695 ], [ 46.098633, 33.027088 ], [ 45.395508, 33.979809 ], [ 45.637207, 34.759666 ], [ 46.142578, 35.101934 ], [ 46.054688, 35.692995 ], [ 45.417480, 35.978006 ], [ 44.758301, 37.177826 ], [ 44.208984, 37.978845 ], [ 44.406738, 38.289937 ], [ 44.099121, 39.436193 ], [ 44.780273, 39.724089 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 39.177246, 32.175612 ], [ 40.385742, 31.896214 ], [ 41.879883, 31.203405 ], [ 44.692383, 29.190533 ], [ 46.560059, 29.113775 ], [ 47.438965, 29.017748 ], [ 47.702637, 28.536275 ], [ 48.405762, 28.555576 ], [ 48.801270, 27.702984 ], [ 49.284668, 27.469287 ], [ 49.460449, 27.117813 ], [ 50.141602, 26.706360 ], [ 50.207520, 26.293415 ], [ 50.097656, 25.958045 ], [ 50.229492, 25.621716 ], [ 50.515137, 25.344026 ], [ 50.646973, 25.005973 ], [ 50.800781, 24.766785 ], [ 51.108398, 24.567108 ], [ 51.372070, 24.647017 ], [ 51.569824, 24.246965 ], [ 51.613770, 24.026397 ], [ 51.987305, 23.019076 ], [ 54.997559, 22.512557 ], [ 55.195312, 22.715390 ], [ 55.656738, 22.004175 ], [ 54.997559, 20.014645 ], [ 51.987305, 19.020577 ], [ 49.108887, 18.625425 ], [ 48.164062, 18.166730 ], [ 47.460938, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.735840, 17.287709 ], [ 46.362305, 17.245744 ], [ 45.395508, 17.350638 ], [ 45.197754, 17.434511 ], [ 44.055176, 17.413546 ], [ 43.791504, 17.329664 ], [ 43.374023, 17.581194 ], [ 43.110352, 17.098792 ], [ 43.198242, 16.678293 ], [ 42.758789, 16.362310 ], [ 42.648926, 16.783506 ], [ 42.341309, 17.077790 ], [ 42.253418, 17.476432 ], [ 41.748047, 17.853290 ], [ 41.220703, 18.687879 ], [ 40.935059, 19.497664 ], [ 40.231934, 20.179724 ], [ 39.792480, 20.344627 ], [ 39.133301, 21.309846 ], [ 39.023438, 22.004175 ], [ 39.045410, 22.593726 ], [ 38.474121, 23.704895 ], [ 38.012695, 24.086589 ], [ 37.463379, 24.287027 ], [ 37.133789, 24.866503 ], [ 37.199707, 25.085599 ], [ 36.914062, 25.621716 ], [ 36.628418, 25.839449 ], [ 36.232910, 26.588527 ], [ 35.112305, 28.071980 ], [ 34.628906, 28.071980 ], [ 34.782715, 28.613459 ], [ 34.826660, 28.960089 ], [ 34.936523, 29.363027 ], [ 36.057129, 29.209713 ], [ 36.496582, 29.516110 ], [ 36.738281, 29.878755 ], [ 37.485352, 30.012031 ], [ 37.661133, 30.353916 ], [ 37.990723, 30.524413 ], [ 37.001953, 31.522361 ], [ 39.001465, 32.026706 ], [ 39.177246, 32.175612 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 91.757812, 26.843677 ], [ 91.757812, 25.165173 ], [ 90.856934, 25.145285 ], [ 90.000000, 25.264568 ], [ 89.912109, 25.284438 ], [ 89.824219, 25.977799 ], [ 89.340820, 26.017298 ], [ 88.549805, 26.450902 ], [ 88.198242, 25.780107 ], [ 88.923340, 25.244696 ], [ 88.286133, 24.866503 ], [ 88.066406, 24.507143 ], [ 88.681641, 24.246965 ], [ 88.527832, 23.644524 ], [ 88.857422, 22.897683 ], [ 89.011230, 22.065278 ], [ 88.879395, 21.698265 ], [ 88.198242, 21.718680 ], [ 86.967773, 21.514407 ], [ 87.011719, 20.756114 ], [ 86.484375, 20.159098 ], [ 85.056152, 19.497664 ], [ 83.935547, 18.312811 ], [ 83.188477, 17.685895 ], [ 82.177734, 17.035777 ], [ 82.177734, 16.573023 ], [ 81.672363, 16.320139 ], [ 80.771484, 15.961329 ], [ 80.310059, 15.919074 ], [ 80.024414, 15.156974 ], [ 80.222168, 13.838080 ], [ 80.266113, 13.025966 ], [ 79.848633, 12.060809 ], [ 79.848633, 10.358151 ], [ 79.321289, 10.314919 ], [ 78.881836, 9.557417 ], [ 79.189453, 9.232249 ], [ 78.266602, 8.950193 ], [ 77.937012, 8.254983 ], [ 77.519531, 7.972198 ], [ 76.574707, 8.906780 ], [ 76.113281, 10.314919 ], [ 75.739746, 11.329253 ], [ 75.388184, 11.781325 ], [ 74.860840, 12.747516 ], [ 74.597168, 14.008696 ], [ 74.443359, 14.626109 ], [ 73.520508, 16.003576 ], [ 72.817383, 19.228177 ], [ 72.817383, 20.427013 ], [ 72.619629, 21.371244 ], [ 71.169434, 20.776659 ], [ 70.466309, 20.879343 ], [ 69.147949, 22.105999 ], [ 69.631348, 22.451649 ], [ 69.345703, 22.857195 ], [ 68.159180, 23.704895 ], [ 68.840332, 24.367114 ], [ 71.037598, 24.367114 ], [ 70.839844, 25.224820 ], [ 70.268555, 25.740529 ], [ 70.158691, 26.509905 ], [ 69.499512, 26.941660 ], [ 70.598145, 27.994401 ], [ 71.762695, 27.916767 ], [ 72.817383, 28.979312 ], [ 73.432617, 29.993002 ], [ 74.399414, 30.996446 ], [ 74.399414, 31.709476 ], [ 75.256348, 32.287133 ], [ 74.443359, 32.768800 ], [ 74.091797, 33.449777 ], [ 73.740234, 34.325292 ], [ 74.223633, 34.759666 ], [ 75.739746, 34.506557 ], [ 76.860352, 34.669359 ], [ 77.827148, 35.496456 ], [ 78.903809, 34.325292 ], [ 78.793945, 33.523079 ], [ 79.189453, 33.008663 ], [ 79.167480, 32.491230 ], [ 78.442383, 32.620870 ], [ 78.728027, 31.522361 ], [ 79.716797, 30.883369 ], [ 81.101074, 30.202114 ], [ 80.463867, 29.745302 ], [ 80.068359, 28.806174 ], [ 81.057129, 28.420391 ], [ 81.979980, 27.936181 ], [ 83.298340, 27.371767 ], [ 84.660645, 27.235095 ], [ 85.231934, 26.745610 ], [ 86.022949, 26.647459 ], [ 87.209473, 26.411551 ], [ 88.044434, 26.431228 ], [ 88.154297, 26.824071 ], [ 88.022461, 27.449790 ], [ 88.110352, 27.877928 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.117813 ], [ 89.736328, 26.725987 ], [ 90.000000, 26.784847 ], [ 90.351562, 26.882880 ], [ 91.208496, 26.824071 ], [ 91.757812, 26.843677 ] ] ], [ [ [ 91.757812, 24.126702 ], [ 91.757812, 23.200961 ], [ 91.691895, 22.998852 ], [ 91.142578, 23.503552 ], [ 91.450195, 24.086589 ], [ 91.757812, 24.126702 ] ] ], [ [ [ 91.757812, 27.741885 ], [ 91.691895, 27.780772 ], [ 91.757812, 27.800210 ], [ 91.757812, 27.741885 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.757812, 50.666872 ], [ 91.757812, 45.182037 ], [ 90.944824, 45.290347 ], [ 90.571289, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.263672, 47.694974 ], [ 90.000000, 47.768868 ], [ 88.835449, 48.078079 ], [ 88.000488, 48.603858 ], [ 87.736816, 49.310799 ], [ 88.791504, 49.482401 ], [ 90.000000, 50.021858 ], [ 90.703125, 50.345460 ], [ 91.757812, 50.666872 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 87.736816, 49.310799 ], [ 88.000488, 48.603858 ], [ 88.835449, 48.078079 ], [ 90.000000, 47.768868 ], [ 90.263672, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.571289, 45.721522 ], [ 90.944824, 45.290347 ], [ 91.757812, 45.182037 ], [ 91.757812, 27.800210 ], [ 91.691895, 27.780772 ], [ 91.252441, 28.052591 ], [ 90.725098, 28.071980 ], [ 90.000000, 28.304381 ], [ 89.472656, 28.052591 ], [ 88.813477, 27.313214 ], [ 88.725586, 28.091366 ], [ 88.110352, 27.877928 ], [ 86.945801, 27.974998 ], [ 85.803223, 28.207609 ], [ 84.990234, 28.652031 ], [ 84.221191, 28.844674 ], [ 83.891602, 29.324720 ], [ 83.320312, 29.477861 ], [ 82.309570, 30.126124 ], [ 81.518555, 30.429730 ], [ 81.101074, 30.202114 ], [ 79.716797, 30.883369 ], [ 78.728027, 31.522361 ], [ 78.442383, 32.620870 ], [ 79.167480, 32.491230 ], [ 79.189453, 33.008663 ], [ 78.793945, 33.523079 ], [ 78.903809, 34.325292 ], [ 77.827148, 35.496456 ], [ 76.179199, 35.906849 ], [ 75.893555, 36.668419 ], [ 75.146484, 37.142803 ], [ 74.970703, 37.422526 ], [ 74.816895, 37.996163 ], [ 74.860840, 38.393339 ], [ 74.245605, 38.616870 ], [ 73.916016, 38.513788 ], [ 73.674316, 39.436193 ], [ 73.959961, 39.673370 ], [ 73.806152, 39.909736 ], [ 74.772949, 40.380028 ], [ 75.454102, 40.563895 ], [ 76.508789, 40.430224 ], [ 76.904297, 41.079351 ], [ 78.178711, 41.195190 ], [ 78.530273, 41.590797 ], [ 80.112305, 42.130821 ], [ 80.244141, 42.358544 ], [ 80.178223, 42.924252 ], [ 80.859375, 43.181147 ], [ 79.958496, 44.918139 ], [ 81.936035, 45.321254 ], [ 82.441406, 45.552525 ], [ 83.166504, 47.338823 ], [ 85.144043, 47.010226 ], [ 85.715332, 47.457809 ], [ 85.759277, 48.458352 ], [ 86.594238, 48.560250 ], [ 87.341309, 49.224773 ], [ 87.736816, 49.310799 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.642090, 5.266008 ], [ 26.389160, 5.156599 ], [ 27.026367, 5.134715 ], [ 27.355957, 5.244128 ], [ 27.971191, 4.412137 ], [ 28.410645, 4.302591 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.707031, 4.609278 ], [ 29.948730, 4.193030 ], [ 30.827637, 3.513421 ], [ 30.761719, 2.350415 ], [ 31.157227, 2.218684 ], [ 30.849609, 1.867345 ], [ 30.454102, 1.603794 ], [ 30.080566, 1.076597 ], [ 29.860840, 0.615223 ], [ 29.816895, 0.000000 ], [ 29.816895, -0.197754 ], [ 29.575195, -0.571280 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.603794 ], [ 29.267578, -1.757537 ], [ 16.391602, -1.757537 ], [ 16.853027, -1.208406 ], [ 17.512207, -0.725078 ], [ 17.622070, -0.417477 ], [ 17.687988, 0.000000 ], [ 17.819824, 0.307616 ], [ 17.753906, 0.856902 ], [ 17.885742, 1.757537 ], [ 18.083496, 2.372369 ], [ 18.391113, 2.921097 ], [ 18.522949, 4.214943 ], [ 18.918457, 4.718778 ], [ 19.467773, 5.047171 ], [ 20.280762, 4.696879 ], [ 20.917969, 4.324501 ], [ 21.643066, 4.236856 ], [ 22.390137, 4.039618 ], [ 22.697754, 4.653080 ], [ 22.829590, 4.718778 ], [ 23.291016, 4.631179 ], [ 24.389648, 5.112830 ], [ 24.785156, 4.915833 ], [ 25.114746, 4.937724 ], [ 25.268555, 5.178482 ], [ 25.642090, 5.266008 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.496582, 69.068563 ], [ 40.275879, 67.933397 ], [ 41.044922, 67.458082 ], [ 41.110840, 66.791909 ], [ 40.517578, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.364258, 66.000150 ], [ 35.375977, 66.513260 ], [ 33.903809, 66.765919 ], [ 33.178711, 66.635556 ], [ 33.442383, 66.513260 ], [ 34.804688, 65.901653 ], [ 34.826660, 65.802776 ], [ 30.212402, 65.802776 ], [ 29.487305, 66.513260 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.432617, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.162558 ], [ 31.091309, 69.565226 ], [ 32.124023, 69.907667 ] ] ], [ [ [ 91.757812, 65.802776 ], [ 40.473633, 65.802776 ], [ 42.077637, 66.478208 ], [ 43.000488, 66.425537 ], [ 43.945312, 66.071546 ], [ 44.318848, 66.513260 ], [ 44.516602, 66.757250 ], [ 43.681641, 67.356785 ], [ 44.187012, 67.958148 ], [ 43.439941, 68.576441 ], [ 46.230469, 68.253111 ], [ 46.801758, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.549316, 67.016009 ], [ 46.340332, 66.670387 ], [ 47.878418, 66.886972 ], [ 48.120117, 67.525373 ], [ 50.207520, 67.999341 ], [ 53.701172, 68.863517 ], [ 54.470215, 68.815927 ], [ 53.481445, 68.204212 ], [ 54.711914, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.304688, 68.471864 ], [ 58.798828, 68.887274 ], [ 59.941406, 68.285651 ], [ 61.062012, 68.942607 ], [ 60.029297, 69.526834 ], [ 60.534668, 69.854762 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.240579 ], [ 68.510742, 68.097907 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.115234, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.708984, 70.714471 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.938158 ], [ 69.191895, 72.848502 ], [ 69.938965, 73.041829 ], [ 72.575684, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.828613, 71.413177 ], [ 72.465820, 71.095425 ], [ 72.773438, 70.392606 ], [ 72.553711, 69.021414 ], [ 73.652344, 68.415352 ], [ 73.234863, 67.742759 ], [ 71.520996, 66.513260 ], [ 71.279297, 66.328685 ], [ 72.421875, 66.178266 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.539517 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.289015 ], [ 75.036621, 67.767713 ], [ 74.465332, 68.334376 ], [ 74.926758, 68.989925 ], [ 73.828125, 69.076412 ], [ 73.586426, 69.634158 ], [ 74.399414, 70.634484 ], [ 73.081055, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.641113, 72.835538 ], [ 75.146484, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.159391 ], [ 75.893555, 71.876745 ], [ 77.563477, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.595703, 72.587405 ], [ 80.507812, 73.652545 ], [ 82.243652, 73.855397 ], [ 84.638672, 73.806447 ], [ 86.813965, 73.940714 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.000000, 75.579466 ], [ 90.241699, 75.644984 ], [ 91.757812, 75.721054 ], [ 91.757812, 65.802776 ] ] ], [ [ [ 68.137207, 76.940488 ], [ 68.840332, 76.547523 ], [ 68.159180, 76.237366 ], [ 64.621582, 75.742715 ], [ 61.567383, 75.264239 ], [ 58.469238, 74.313295 ], [ 56.975098, 73.334161 ], [ 55.415039, 72.375758 ], [ 55.612793, 71.545787 ], [ 57.524414, 70.721726 ], [ 56.931152, 70.634484 ], [ 53.657227, 70.765206 ], [ 53.393555, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.437988, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.426758, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.630926 ], [ 55.612793, 75.084326 ], [ 57.854004, 75.612262 ], [ 61.149902, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.137207, 76.940488 ] ] ], [ [ [ 50.031738, 80.921494 ], [ 51.503906, 80.700447 ], [ 51.130371, 80.550126 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.342262 ], [ 48.735352, 80.178713 ], [ 47.570801, 80.012423 ], [ 46.494141, 80.249670 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.593319 ], [ 46.779785, 80.774716 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.517603 ], [ 49.086914, 80.757086 ], [ 50.031738, 80.921494 ] ] ], [ [ [ 91.757812, 80.499486 ], [ 91.757812, 80.260828 ], [ 91.164551, 80.342262 ], [ 91.757812, 80.499486 ] ] ] ] } } +, +{ "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": [ [ [ [ 28.146973, 71.187754 ], [ 31.289062, 70.458859 ], [ 29.992676, 70.192550 ], [ 31.091309, 69.565226 ], [ 29.399414, 69.162558 ], [ 28.586426, 69.068563 ], [ 29.003906, 69.771356 ], [ 27.729492, 70.170201 ], [ 26.169434, 69.832048 ], [ 25.686035, 69.099940 ], [ 24.719238, 68.656555 ], [ 23.642578, 68.895187 ], [ 22.346191, 68.847665 ], [ 21.225586, 69.372573 ], [ 20.632324, 69.107777 ], [ 20.017090, 69.068563 ], [ 19.863281, 68.407268 ], [ 17.973633, 68.568414 ], [ 17.709961, 68.015798 ], [ 16.765137, 68.015798 ], [ 15.380859, 66.513260 ], [ 15.095215, 66.196009 ], [ 14.655762, 65.802776 ], [ 12.238770, 65.802776 ], [ 13.117676, 66.513260 ], [ 14.743652, 67.817542 ], [ 16.435547, 68.568414 ], [ 19.182129, 69.824471 ], [ 21.357422, 70.259452 ], [ 23.005371, 70.207436 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.146973, 71.187754 ] ] ], [ [ [ 16.984863, 80.054255 ], [ 18.237305, 79.702907 ], [ 21.533203, 78.958769 ], [ 19.006348, 78.564845 ], [ 18.457031, 77.827957 ], [ 17.578125, 77.641245 ], [ 17.116699, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.384706 ], [ 14.655762, 77.739618 ], [ 13.161621, 78.025574 ], [ 11.206055, 78.870048 ], [ 10.437012, 79.655668 ], [ 13.161621, 80.012423 ], [ 13.710938, 79.663556 ], [ 15.139160, 79.675377 ], [ 15.512695, 80.016233 ], [ 16.984863, 80.054255 ] ] ], [ [ [ 22.873535, 78.455425 ], [ 23.269043, 78.080156 ], [ 24.719238, 77.855723 ], [ 22.478027, 77.446940 ], [ 20.720215, 77.678812 ], [ 21.401367, 77.938647 ], [ 20.808105, 78.255861 ], [ 22.873535, 78.455425 ] ] ], [ [ [ 22.917480, 80.657741 ], [ 25.444336, 80.408388 ], [ 27.399902, 80.058050 ], [ 25.905762, 79.520657 ], [ 23.005371, 79.400085 ], [ 20.061035, 79.568506 ], [ 19.885254, 79.843346 ], [ 18.457031, 79.862701 ], [ 17.358398, 80.320120 ], [ 20.434570, 80.600499 ], [ 21.906738, 80.360675 ], [ 22.917480, 80.657741 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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": "Polygon", "coordinates": [ [ [ 20.632324, 69.107777 ], [ 21.972656, 68.624544 ], [ 23.532715, 67.941650 ], [ 23.554688, 66.513260 ], [ 23.554688, 66.399160 ], [ 23.884277, 66.009086 ], [ 22.653809, 65.802776 ], [ 14.655762, 65.802776 ], [ 15.095215, 66.196009 ], [ 15.380859, 66.513260 ], [ 16.765137, 68.015798 ], [ 17.709961, 68.015798 ], [ 17.973633, 68.568414 ], [ 19.863281, 68.407268 ], [ 20.017090, 69.068563 ], [ 20.632324, 69.107777 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.729492, 70.170201 ], [ 29.003906, 69.771356 ], [ 28.586426, 69.068563 ], [ 28.432617, 68.366801 ], [ 29.970703, 67.701110 ], [ 29.047852, 66.947274 ], [ 29.487305, 66.513260 ], [ 30.212402, 65.802776 ], [ 24.499512, 65.802776 ], [ 23.884277, 66.009086 ], [ 23.554688, 66.399160 ], [ 23.554688, 66.513260 ], [ 23.532715, 67.941650 ], [ 21.972656, 68.624544 ], [ 20.632324, 69.107777 ], [ 21.225586, 69.372573 ], [ 22.346191, 68.847665 ], [ 23.642578, 68.895187 ], [ 24.719238, 68.656555 ], [ 25.686035, 69.099940 ], [ 26.169434, 69.832048 ], [ 27.729492, 70.170201 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.958496, -8.885072 ], [ 125.068359, -9.080400 ], [ 125.068359, -9.384032 ], [ 124.431152, -10.120302 ], [ 123.574219, -10.358151 ], [ 123.442383, -10.228437 ], [ 123.530273, -9.882275 ], [ 123.969727, -9.275622 ], [ 124.958496, -8.885072 ] ] ], [ [ [ 119.882812, -9.340672 ], [ 120.410156, -9.665738 ], [ 120.761719, -9.968851 ], [ 120.695801, -10.228437 ], [ 120.278320, -10.250060 ], [ 118.959961, -9.557417 ], [ 119.882812, -9.340672 ] ] ], [ [ [ 132.363281, -0.351560 ], [ 133.967285, -0.769020 ], [ 134.143066, -1.142502 ], [ 134.406738, -2.767478 ], [ 135.439453, -3.359889 ], [ 136.274414, -2.306506 ], [ 137.438965, -1.691649 ], [ 138.317871, -1.691649 ], [ 139.174805, -2.043024 ], [ 139.921875, -2.394322 ], [ 140.998535, -2.591889 ], [ 141.020508, -9.102097 ], [ 140.141602, -8.276727 ], [ 139.108887, -8.080985 ], [ 138.867188, -8.363693 ], [ 137.592773, -8.407168 ], [ 138.032227, -7.580328 ], [ 138.647461, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.375398 ], [ 135.988770, -4.543570 ], [ 135.153809, -4.455951 ], [ 133.659668, -3.535352 ], [ 133.352051, -4.017699 ], [ 132.978516, -4.105369 ], [ 132.736816, -3.732708 ], [ 132.736816, -3.294082 ], [ 131.989746, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.231445, -2.196727 ], [ 131.835938, -1.603794 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.922812 ], [ 131.857910, -0.681136 ], [ 132.363281, -0.351560 ] ] ], [ [ [ 117.883301, -8.080985 ], [ 118.256836, -8.341953 ], [ 118.872070, -8.276727 ], [ 119.113770, -8.689639 ], [ 117.268066, -9.037003 ], [ 116.718750, -9.015302 ], [ 117.070312, -8.450639 ], [ 117.619629, -8.428904 ], [ 117.883301, -8.080985 ] ] ], [ [ [ 122.893066, -8.080985 ], [ 122.739258, -8.646196 ], [ 121.245117, -8.928487 ], [ 119.904785, -8.798225 ], [ 119.904785, -8.428904 ], [ 120.695801, -8.233237 ], [ 121.333008, -8.515836 ], [ 121.992188, -8.450639 ], [ 122.893066, -8.080985 ] ] ], [ [ [ 106.040039, -5.878332 ], [ 107.248535, -5.943900 ], [ 108.061523, -6.337137 ], [ 108.479004, -6.402648 ], [ 108.610840, -6.773716 ], [ 110.522461, -6.860985 ], [ 110.742188, -6.446318 ], [ 112.609863, -6.926427 ], [ 112.961426, -7.580328 ], [ 114.477539, -7.776309 ], [ 115.686035, -8.363693 ], [ 114.543457, -8.733077 ], [ 113.444824, -8.341953 ], [ 112.543945, -8.363693 ], [ 111.511230, -8.298470 ], [ 110.566406, -8.102739 ], [ 109.423828, -7.732765 ], [ 108.676758, -7.623887 ], [ 108.259277, -7.754537 ], [ 106.435547, -7.340675 ], [ 106.259766, -6.904614 ], [ 105.358887, -6.839170 ], [ 106.040039, -5.878332 ] ] ], [ [ [ 134.494629, -5.441022 ], [ 134.714355, -5.725311 ], [ 134.714355, -6.206090 ], [ 134.208984, -6.882800 ], [ 134.099121, -6.140555 ], [ 134.494629, -5.441022 ] ] ], [ [ [ 102.041016, 1.757537 ], [ 102.480469, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.820801, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.425293, -0.703107 ], [ 103.996582, -1.054628 ], [ 104.348145, -1.076597 ], [ 104.523926, -1.779499 ], [ 104.875488, -2.328460 ], [ 105.600586, -2.416276 ], [ 106.105957, -3.052754 ], [ 105.842285, -4.302591 ], [ 105.798340, -5.834616 ], [ 104.699707, -5.856475 ], [ 103.864746, -5.025283 ], [ 102.568359, -4.214943 ], [ 102.150879, -3.601142 ], [ 101.381836, -2.789425 ], [ 100.898438, -2.043024 ], [ 100.129395, -0.637194 ], [ 99.448242, 0.000000 ], [ 99.250488, 0.197754 ], [ 98.964844, 1.054628 ], [ 98.613281, 1.757537 ], [ 102.041016, 1.757537 ] ] ], [ [ [ 125.046387, 1.647722 ], [ 125.222168, 1.428075 ], [ 124.431152, 0.439449 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.395505 ], [ 120.168457, 0.241699 ], [ 120.124512, 0.000000 ], [ 120.036621, -0.505365 ], [ 120.915527, -1.406109 ], [ 121.464844, -0.944781 ], [ 123.332520, -0.615223 ], [ 123.244629, -1.054628 ], [ 122.805176, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.486816, -1.889306 ], [ 122.453613, -3.184394 ], [ 122.255859, -3.513421 ], [ 123.156738, -4.674980 ], [ 123.156738, -5.331644 ], [ 122.607422, -5.615986 ], [ 122.233887, -5.266008 ], [ 122.717285, -4.455951 ], [ 121.728516, -4.850154 ], [ 121.486816, -4.565474 ], [ 121.618652, -4.171115 ], [ 120.893555, -3.601142 ], [ 120.959473, -2.613839 ], [ 120.300293, -2.921097 ], [ 120.388184, -4.083453 ], [ 120.410156, -5.506640 ], [ 119.794922, -5.659719 ], [ 119.355469, -5.375398 ], [ 119.641113, -4.455951 ], [ 119.487305, -3.491489 ], [ 119.069824, -3.469557 ], [ 118.762207, -2.789425 ], [ 119.179688, -2.130856 ], [ 119.311523, -1.340210 ], [ 119.772949, 0.000000 ], [ 120.014648, 0.571280 ], [ 120.871582, 1.318243 ], [ 121.662598, 1.032659 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.046387, 1.647722 ] ] ], [ [ [ 117.949219, 1.757537 ], [ 118.981934, 0.922812 ], [ 117.795410, 0.790990 ], [ 117.465820, 0.109863 ], [ 117.465820, 0.000000 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.472006 ], [ 116.520996, -2.482133 ], [ 116.147461, -3.995781 ], [ 115.993652, -3.645000 ], [ 114.851074, -4.105369 ], [ 114.455566, -3.491489 ], [ 113.752441, -3.425692 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.687012, -2.986927 ], [ 111.027832, -3.030812 ], [ 110.214844, -2.921097 ], [ 110.061035, -1.581830 ], [ 109.555664, -1.296276 ], [ 109.072266, -0.439449 ], [ 109.006348, 0.000000 ], [ 108.940430, 0.417477 ], [ 109.050293, 1.362176 ], [ 109.423828, 1.757537 ], [ 109.709473, 1.757537 ], [ 109.819336, 1.340210 ], [ 110.500488, 0.790990 ], [ 111.137695, 0.988720 ], [ 111.796875, 0.922812 ], [ 112.368164, 1.428075 ], [ 112.851562, 1.515936 ], [ 113.796387, 1.230374 ], [ 114.609375, 1.450040 ], [ 114.741211, 1.757537 ], [ 117.949219, 1.757537 ] ] ], [ [ [ 129.353027, -2.789425 ], [ 130.451660, -3.074695 ], [ 130.825195, -3.842332 ], [ 129.990234, -3.425692 ], [ 129.133301, -3.359889 ], [ 128.583984, -3.425692 ], [ 127.880859, -3.381824 ], [ 128.122559, -2.833317 ], [ 129.353027, -2.789425 ] ] ], [ [ [ 126.979980, -3.118576 ], [ 127.243652, -3.447625 ], [ 126.870117, -3.776559 ], [ 126.166992, -3.601142 ], [ 125.969238, -3.162456 ], [ 126.979980, -3.118576 ] ] ], [ [ [ 127.968750, 1.757537 ], [ 127.990723, 1.647722 ], [ 128.583984, 1.559866 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.373533 ], [ 128.012695, 0.000000 ], [ 127.946777, -0.241699 ], [ 128.364258, -0.769020 ], [ 128.078613, -0.878872 ], [ 127.683105, -0.263671 ], [ 127.617188, 0.000000 ], [ 127.397461, 1.032659 ], [ 127.573242, 1.757537 ], [ 127.968750, 1.757537 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.733887, -40.697299 ], [ 145.393066, -40.780541 ], [ 146.359863, -41.129021 ], [ 147.678223, -40.797177 ], [ 148.271484, -40.863680 ], [ 148.359375, -42.049293 ], [ 148.007812, -42.391009 ], [ 147.897949, -43.197167 ], [ 147.546387, -42.924252 ], [ 146.865234, -43.628123 ], [ 146.645508, -43.580391 ], [ 146.030273, -43.548548 ], [ 145.415039, -42.682435 ], [ 145.283203, -42.032974 ], [ 144.711914, -41.162114 ], [ 144.733887, -40.697299 ] ] ], [ [ [ 142.514648, -10.660608 ], [ 142.778320, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.107910, -11.888853 ], [ 143.151855, -12.318536 ], [ 143.503418, -12.833226 ], [ 143.591309, -13.389620 ], [ 143.547363, -13.752725 ], [ 143.920898, -14.541050 ], [ 144.558105, -14.157882 ], [ 144.887695, -14.583583 ], [ 145.371094, -14.966013 ], [ 145.261230, -15.411319 ], [ 145.480957, -16.277960 ], [ 145.634766, -16.783506 ], [ 145.876465, -16.888660 ], [ 146.140137, -17.748687 ], [ 146.052246, -18.271086 ], [ 146.381836, -18.958246 ], [ 147.458496, -19.476950 ], [ 148.842773, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.282227, -21.248422 ], [ 149.677734, -22.329752 ], [ 150.073242, -22.105999 ], [ 150.468750, -22.553147 ], [ 150.710449, -22.390714 ], [ 150.886230, -23.443089 ], [ 152.072754, -24.447150 ], [ 152.841797, -25.264568 ], [ 153.127441, -26.056783 ], [ 153.149414, -26.627818 ], [ 153.083496, -27.254630 ], [ 153.566895, -28.091366 ], [ 153.500977, -28.979312 ], [ 153.061523, -30.334954 ], [ 153.083496, -30.921076 ], [ 152.885742, -31.634676 ], [ 152.446289, -32.546813 ], [ 151.699219, -33.027088 ], [ 151.325684, -33.815666 ], [ 150.996094, -34.307144 ], [ 150.710449, -35.155846 ], [ 150.314941, -35.657296 ], [ 150.073242, -36.403600 ], [ 149.941406, -37.107765 ], [ 149.985352, -37.422526 ], [ 149.414062, -37.770715 ], [ 148.293457, -37.805444 ], [ 147.370605, -38.203655 ], [ 146.909180, -38.599700 ], [ 146.315918, -39.027719 ], [ 145.480957, -38.582526 ], [ 144.865723, -38.410558 ], [ 145.019531, -37.892196 ], [ 144.470215, -38.082690 ], [ 143.591309, -38.805470 ], [ 142.163086, -38.376115 ], [ 141.591797, -38.307181 ], [ 140.625000, -38.013476 ], [ 139.987793, -37.387617 ], [ 139.790039, -36.633162 ], [ 139.570312, -36.137875 ], [ 139.064941, -35.728677 ], [ 138.120117, -35.603719 ], [ 138.427734, -35.119909 ], [ 138.186035, -34.379713 ], [ 137.702637, -35.065973 ], [ 136.823730, -35.245619 ], [ 137.351074, -34.705493 ], [ 137.482910, -34.125448 ], [ 137.878418, -33.632916 ], [ 137.790527, -32.898038 ], [ 136.977539, -33.742613 ], [ 136.362305, -34.089061 ], [ 135.988770, -34.885931 ], [ 135.197754, -34.470335 ], [ 135.219727, -33.943360 ], [ 134.604492, -33.211116 ], [ 134.077148, -32.842674 ], [ 134.252930, -32.602362 ], [ 132.978516, -32.008076 ], [ 132.275391, -31.970804 ], [ 131.308594, -31.484893 ], [ 129.528809, -31.578535 ], [ 127.089844, -32.268555 ], [ 126.145020, -32.212801 ], [ 125.068359, -32.713355 ], [ 124.211426, -32.953368 ], [ 124.013672, -33.468108 ], [ 123.640137, -33.888658 ], [ 122.805176, -33.906896 ], [ 122.167969, -33.998027 ], [ 121.289062, -33.815666 ], [ 120.563965, -33.925130 ], [ 119.882812, -33.961586 ], [ 119.289551, -34.506557 ], [ 119.003906, -34.452218 ], [ 118.498535, -34.741612 ], [ 118.015137, -35.047987 ], [ 117.290039, -35.012002 ], [ 116.608887, -35.012002 ], [ 115.554199, -34.379713 ], [ 115.004883, -34.179998 ], [ 115.026855, -33.614619 ], [ 115.532227, -33.486435 ], [ 115.708008, -33.247876 ], [ 115.664062, -32.898038 ], [ 115.795898, -32.194209 ], [ 115.686035, -31.597253 ], [ 115.158691, -30.600094 ], [ 114.982910, -30.012031 ], [ 115.026855, -29.458731 ], [ 114.631348, -28.806174 ], [ 114.609375, -28.497661 ], [ 114.169922, -28.110749 ], [ 114.038086, -27.332735 ], [ 113.466797, -26.529565 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.529565 ], [ 113.422852, -25.601902 ], [ 113.928223, -25.898762 ], [ 114.213867, -26.293415 ], [ 114.213867, -25.780107 ], [ 113.708496, -24.986058 ], [ 113.620605, -24.666986 ], [ 113.378906, -24.367114 ], [ 113.488770, -23.805450 ], [ 113.686523, -23.543845 ], [ 113.840332, -23.059516 ], [ 113.730469, -22.471955 ], [ 114.147949, -21.739091 ], [ 114.213867, -22.512557 ], [ 114.631348, -21.820708 ], [ 115.444336, -21.493964 ], [ 115.927734, -21.063997 ], [ 116.696777, -20.694462 ], [ 117.158203, -20.612220 ], [ 117.421875, -20.735566 ], [ 118.212891, -20.365228 ], [ 118.828125, -20.262197 ], [ 118.981934, -20.035290 ], [ 119.245605, -19.952696 ], [ 119.794922, -19.973349 ], [ 120.849609, -19.663280 ], [ 121.398926, -19.228177 ], [ 121.640625, -18.687879 ], [ 122.233887, -18.187607 ], [ 122.299805, -17.245744 ], [ 123.002930, -16.404470 ], [ 123.420410, -17.266728 ], [ 123.837891, -17.056785 ], [ 123.486328, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.320139 ], [ 124.365234, -15.559544 ], [ 124.914551, -15.072124 ], [ 125.156250, -14.668626 ], [ 125.661621, -14.498508 ], [ 125.683594, -14.221789 ], [ 126.123047, -14.328260 ], [ 126.123047, -14.093957 ], [ 127.045898, -13.816744 ], [ 127.792969, -14.264383 ], [ 128.342285, -14.859850 ], [ 128.979492, -14.859850 ], [ 129.616699, -14.966013 ], [ 129.396973, -14.413400 ], [ 129.880371, -13.603278 ], [ 130.319824, -13.346865 ], [ 130.166016, -13.090179 ], [ 130.605469, -12.533115 ], [ 131.220703, -12.168226 ], [ 131.726074, -12.297068 ], [ 132.561035, -12.103781 ], [ 132.539062, -11.587669 ], [ 131.813965, -11.264612 ], [ 132.341309, -11.113727 ], [ 133.000488, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.670410, -11.931852 ], [ 135.285645, -12.232655 ], [ 135.878906, -11.953349 ], [ 136.252441, -12.039321 ], [ 136.472168, -11.845847 ], [ 136.933594, -12.340002 ], [ 136.669922, -12.876070 ], [ 136.296387, -13.282719 ], [ 135.944824, -13.304103 ], [ 136.076660, -13.710035 ], [ 135.769043, -14.221789 ], [ 135.417480, -14.711135 ], [ 135.483398, -14.987240 ], [ 136.274414, -15.538376 ], [ 137.043457, -15.855674 ], [ 137.570801, -16.214675 ], [ 138.295898, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.086914, -17.056785 ], [ 139.240723, -17.350638 ], [ 140.207520, -17.706828 ], [ 140.866699, -17.350638 ], [ 141.262207, -16.383391 ], [ 141.394043, -15.834536 ], [ 141.701660, -15.029686 ], [ 141.547852, -14.541050 ], [ 141.613770, -14.264383 ], [ 141.503906, -13.688688 ], [ 141.635742, -12.940322 ], [ 141.833496, -12.726084 ], [ 141.679688, -12.404389 ], [ 141.921387, -11.867351 ], [ 142.097168, -11.307708 ], [ 142.141113, -11.027472 ], [ 142.514648, -10.660608 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 180.000000, 67.204032 ], [ 180.000000, 64.988651 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.614459 ], [ 178.308105, 64.081805 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.472656, 62.573106 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.658595 ], [ 172.133789, 60.951777 ], [ 170.683594, 60.337823 ], [ 170.310059, 59.888937 ], [ 168.881836, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.827637, 60.163376 ], [ 164.860840, 59.734253 ], [ 163.520508, 59.877912 ], [ 163.212891, 59.220934 ], [ 162.004395, 58.251727 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.621875 ], [ 163.037109, 56.170023 ], [ 162.114258, 56.133307 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.863963 ], [ 160.356445, 54.354956 ], [ 160.004883, 53.212612 ], [ 158.510742, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.774902, 51.013755 ], [ 156.401367, 51.713416 ], [ 155.983887, 53.159947 ], [ 155.412598, 55.391592 ], [ 155.895996, 56.776808 ], [ 156.752930, 57.373938 ], [ 156.796875, 57.833055 ], [ 158.356934, 58.066256 ], [ 160.136719, 59.321981 ], [ 161.850586, 60.348696 ], [ 163.652344, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.471724 ], [ 162.641602, 61.648162 ], [ 160.114746, 60.554579 ], [ 159.301758, 61.783513 ], [ 156.708984, 61.438767 ], [ 154.204102, 59.767460 ], [ 155.039062, 59.153403 ], [ 152.797852, 58.893296 ], [ 151.259766, 58.790978 ], [ 151.325684, 59.512029 ], [ 149.765625, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.344395 ], [ 142.185059, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.109863, 54.737308 ], [ 136.691895, 54.610255 ], [ 137.175293, 53.981935 ], [ 138.164062, 53.761702 ], [ 138.801270, 54.265224 ], [ 139.899902, 54.201010 ], [ 141.328125, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.581055, 51.248163 ], [ 140.493164, 50.050085 ], [ 140.053711, 48.458352 ], [ 138.537598, 47.010226 ], [ 138.208008, 46.316584 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.293200 ], [ 130.935059, 42.553080 ], [ 130.759277, 42.228517 ], [ 130.627441, 42.407235 ], [ 130.627441, 42.908160 ], [ 131.132812, 42.940339 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.980342 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.099121, 47.219568 ], [ 134.494629, 47.591346 ], [ 135.021973, 48.487486 ], [ 133.352051, 48.195387 ], [ 132.495117, 47.798397 ], [ 130.979004, 47.798397 ], [ 130.561523, 48.734455 ], [ 129.396973, 49.453843 ], [ 127.639160, 49.767074 ], [ 127.265625, 50.750359 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.795027 ], [ 125.925293, 52.802761 ], [ 125.046387, 53.173119 ], [ 123.552246, 53.461890 ], [ 122.233887, 53.435719 ], [ 120.981445, 53.252069 ], [ 120.168457, 52.762892 ], [ 120.717773, 52.522906 ], [ 120.717773, 51.971346 ], [ 120.168457, 51.645294 ], [ 119.267578, 50.583237 ], [ 119.267578, 50.148746 ], [ 117.861328, 49.525208 ], [ 116.674805, 49.894634 ], [ 115.466309, 49.809632 ], [ 114.960938, 50.148746 ], [ 114.345703, 50.261254 ], [ 112.895508, 49.553726 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.138597 ], [ 109.401855, 49.296472 ], [ 108.457031, 49.296472 ], [ 107.863770, 49.795450 ], [ 106.875000, 50.275299 ], [ 105.886230, 50.415519 ], [ 104.611816, 50.289339 ], [ 103.666992, 50.092393 ], [ 102.238770, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.876465, 51.522416 ], [ 99.975586, 51.645294 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.217773, 50.429518 ], [ 97.250977, 49.738682 ], [ 95.800781, 49.979488 ], [ 94.812012, 50.021858 ], [ 94.130859, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.219238, 50.805935 ], [ 90.703125, 50.345460 ], [ 90.000000, 50.021858 ], [ 88.791504, 49.482401 ], [ 88.242188, 49.382373 ], [ 88.242188, 67.204032 ], [ 180.000000, 67.204032 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.239746, 52.749594 ], [ 143.217773, 51.767840 ], [ 143.635254, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.845164 ], [ 143.503418, 46.149394 ], [ 142.734375, 46.754917 ], [ 142.075195, 45.981695 ], [ 141.899414, 46.815099 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.119141, 49.624946 ], [ 142.163086, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.774689 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 88.242188, 25.839449 ], [ 88.242188, 27.936181 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.117813 ], [ 89.736328, 26.725987 ], [ 90.000000, 26.784847 ], [ 90.351562, 26.882880 ], [ 91.208496, 26.824071 ], [ 92.021484, 26.843677 ], [ 92.087402, 27.469287 ], [ 91.691895, 27.780772 ], [ 92.482910, 27.897349 ], [ 93.405762, 28.652031 ], [ 94.548340, 29.286399 ], [ 95.383301, 29.036961 ], [ 96.108398, 29.458731 ], [ 96.569824, 28.844674 ], [ 96.240234, 28.420391 ], [ 97.316895, 28.265682 ], [ 97.382812, 27.897349 ], [ 97.031250, 27.702984 ], [ 97.119141, 27.098254 ], [ 96.416016, 27.274161 ], [ 95.119629, 26.588527 ], [ 95.141602, 26.017298 ], [ 94.592285, 25.165173 ], [ 94.548340, 24.686952 ], [ 94.086914, 23.865745 ], [ 93.317871, 24.086589 ], [ 93.273926, 23.059516 ], [ 93.054199, 22.715390 ], [ 93.164062, 22.289096 ], [ 92.658691, 22.044913 ], [ 92.131348, 23.644524 ], [ 91.867676, 23.624395 ], [ 91.691895, 22.998852 ], [ 91.142578, 23.503552 ], [ 91.450195, 24.086589 ], [ 91.911621, 24.146754 ], [ 92.373047, 24.986058 ], [ 91.779785, 25.165173 ], [ 90.856934, 25.145285 ], [ 90.000000, 25.264568 ], [ 89.912109, 25.284438 ], [ 89.824219, 25.977799 ], [ 89.340820, 26.017298 ], [ 88.549805, 26.450902 ], [ 88.242188, 25.839449 ] ] ], [ [ [ 88.242188, 24.447150 ], [ 88.681641, 24.246965 ], [ 88.527832, 23.644524 ], [ 88.857422, 22.897683 ], [ 89.011230, 22.065278 ], [ 88.879395, 21.698265 ], [ 88.242188, 21.718680 ], [ 88.242188, 24.447150 ] ] ], [ [ [ 88.242188, 25.760320 ], [ 88.923340, 25.244696 ], [ 88.286133, 24.866503 ], [ 88.242188, 24.766785 ], [ 88.242188, 25.760320 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.854980, 52.052490 ], [ 99.975586, 51.645294 ], [ 100.876465, 51.522416 ], [ 102.062988, 51.261915 ], [ 102.238770, 50.513427 ], [ 103.666992, 50.092393 ], [ 104.611816, 50.289339 ], [ 105.886230, 50.415519 ], [ 106.875000, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.457031, 49.296472 ], [ 109.401855, 49.296472 ], [ 110.654297, 49.138597 ], [ 111.577148, 49.382373 ], [ 112.895508, 49.553726 ], [ 114.345703, 50.261254 ], [ 114.960938, 50.148746 ], [ 115.466309, 49.809632 ], [ 116.674805, 49.894634 ], [ 116.191406, 49.138597 ], [ 115.466309, 48.136767 ], [ 115.729980, 47.739323 ], [ 116.301270, 47.857403 ], [ 117.290039, 47.709762 ], [ 118.059082, 48.078079 ], [ 118.850098, 47.754098 ], [ 119.750977, 47.055154 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.815099 ], [ 117.399902, 46.679594 ], [ 116.696777, 46.392411 ], [ 115.971680, 45.736860 ], [ 114.455566, 45.352145 ], [ 113.444824, 44.809122 ], [ 111.862793, 45.104546 ], [ 111.335449, 44.465151 ], [ 111.665039, 44.087585 ], [ 111.818848, 43.755225 ], [ 111.115723, 43.421009 ], [ 110.390625, 42.875964 ], [ 109.226074, 42.520700 ], [ 107.731934, 42.488302 ], [ 106.127930, 42.147114 ], [ 104.963379, 41.607228 ], [ 104.501953, 41.918629 ], [ 103.293457, 41.918629 ], [ 101.821289, 42.520700 ], [ 100.832520, 42.666281 ], [ 99.514160, 42.536892 ], [ 97.448730, 42.763146 ], [ 96.328125, 42.730874 ], [ 95.756836, 43.325178 ], [ 95.295410, 44.245199 ], [ 94.680176, 44.355278 ], [ 93.471680, 44.980342 ], [ 92.131348, 45.120053 ], [ 90.944824, 45.290347 ], [ 90.571289, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.263672, 47.694974 ], [ 90.000000, 47.768868 ], [ 88.835449, 48.078079 ], [ 88.242188, 48.458352 ], [ 88.242188, 49.382373 ], [ 88.791504, 49.482401 ], [ 90.000000, 50.021858 ], [ 90.703125, 50.345460 ], [ 92.219238, 50.805935 ], [ 93.098145, 50.499452 ], [ 94.130859, 50.485474 ], [ 94.812012, 50.021858 ], [ 95.800781, 49.979488 ], [ 97.250977, 49.738682 ], [ 98.217773, 50.429518 ], [ 97.822266, 51.013755 ], [ 98.854980, 52.052490 ] ] ] } } +, +{ "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": [ [ [ [ 110.192871, 20.117840 ], [ 110.786133, 20.097206 ], [ 111.005859, 19.704658 ], [ 110.566406, 19.269665 ], [ 110.324707, 18.687879 ], [ 109.467773, 18.208480 ], [ 108.654785, 18.521283 ], [ 108.610840, 19.373341 ], [ 109.116211, 19.828725 ], [ 110.192871, 20.117840 ] ] ], [ [ [ 123.552246, 53.461890 ], [ 125.046387, 53.173119 ], [ 125.925293, 52.802761 ], [ 126.562500, 51.795027 ], [ 126.936035, 51.358062 ], [ 127.265625, 50.750359 ], [ 127.639160, 49.767074 ], [ 129.396973, 49.453843 ], [ 130.561523, 48.734455 ], [ 130.979004, 47.798397 ], [ 132.495117, 47.798397 ], [ 133.352051, 48.195387 ], [ 135.021973, 48.487486 ], [ 134.494629, 47.591346 ], [ 134.099121, 47.219568 ], [ 133.769531, 46.118942 ], [ 133.088379, 45.151053 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.980342 ], [ 131.286621, 44.119142 ], [ 131.132812, 42.940339 ], [ 130.627441, 42.908160 ], [ 130.627441, 42.407235 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.439674 ], [ 128.034668, 42.000325 ], [ 128.188477, 41.475660 ], [ 127.331543, 41.508577 ], [ 126.848145, 41.820455 ], [ 126.166992, 41.112469 ], [ 125.068359, 40.580585 ], [ 124.255371, 39.943436 ], [ 122.849121, 39.639538 ], [ 122.124023, 39.181175 ], [ 121.047363, 38.908133 ], [ 121.574707, 39.368279 ], [ 121.354980, 39.757880 ], [ 122.167969, 40.430224 ], [ 121.618652, 40.946714 ], [ 120.761719, 40.597271 ], [ 119.619141, 39.909736 ], [ 119.003906, 39.266284 ], [ 118.037109, 39.215231 ], [ 117.531738, 38.754083 ], [ 118.059082, 38.065392 ], [ 118.872070, 37.909534 ], [ 118.894043, 37.457418 ], [ 119.685059, 37.160317 ], [ 120.805664, 37.874853 ], [ 121.706543, 37.492294 ], [ 122.343750, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.091309, 36.668419 ], [ 120.629883, 36.120128 ], [ 119.663086, 35.621582 ], [ 119.135742, 34.921971 ], [ 120.212402, 34.361576 ], [ 120.607910, 33.394759 ], [ 121.223145, 32.472695 ], [ 121.904297, 31.709476 ], [ 121.882324, 30.958769 ], [ 121.245117, 30.694612 ], [ 121.486816, 30.145127 ], [ 122.080078, 29.840644 ], [ 121.926270, 29.036961 ], [ 121.662598, 28.226970 ], [ 121.113281, 28.149503 ], [ 120.388184, 27.059126 ], [ 119.575195, 25.760320 ], [ 118.652344, 24.567108 ], [ 117.268066, 23.644524 ], [ 115.883789, 22.796439 ], [ 114.763184, 22.674847 ], [ 114.147949, 22.228090 ], [ 113.796387, 22.553147 ], [ 113.225098, 22.065278 ], [ 111.840820, 21.555284 ], [ 110.764160, 21.412162 ], [ 110.434570, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.621582, 21.022983 ], [ 109.863281, 21.412162 ], [ 108.500977, 21.718680 ], [ 108.039551, 21.555284 ], [ 107.028809, 21.820708 ], [ 106.545410, 22.228090 ], [ 106.721191, 22.796439 ], [ 105.798340, 22.978624 ], [ 105.314941, 23.362429 ], [ 104.458008, 22.836946 ], [ 103.491211, 22.715390 ], [ 102.700195, 22.715390 ], [ 102.150879, 22.471955 ], [ 101.645508, 22.329752 ], [ 101.799316, 21.186973 ], [ 101.250000, 21.207459 ], [ 101.162109, 21.453069 ], [ 101.140137, 21.861499 ], [ 100.415039, 21.575719 ], [ 99.228516, 22.126355 ], [ 99.514160, 22.958393 ], [ 98.876953, 23.160563 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.905927 ], [ 97.712402, 25.085599 ], [ 98.657227, 25.938287 ], [ 98.701172, 26.745610 ], [ 98.679199, 27.527758 ], [ 98.239746, 27.761330 ], [ 97.910156, 28.343065 ], [ 97.316895, 28.265682 ], [ 96.240234, 28.420391 ], [ 96.569824, 28.844674 ], [ 96.108398, 29.458731 ], [ 95.383301, 29.036961 ], [ 94.548340, 29.286399 ], [ 93.405762, 28.652031 ], [ 92.482910, 27.897349 ], [ 91.691895, 27.780772 ], [ 91.252441, 28.052591 ], [ 90.725098, 28.071980 ], [ 90.000000, 28.304381 ], [ 89.472656, 28.052591 ], [ 88.813477, 27.313214 ], [ 88.725586, 28.091366 ], [ 88.242188, 27.936181 ], [ 88.242188, 48.458352 ], [ 88.835449, 48.078079 ], [ 90.000000, 47.768868 ], [ 90.263672, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.571289, 45.721522 ], [ 90.944824, 45.290347 ], [ 92.131348, 45.120053 ], [ 93.471680, 44.980342 ], [ 94.680176, 44.355278 ], [ 95.295410, 44.245199 ], [ 95.756836, 43.325178 ], [ 96.328125, 42.730874 ], [ 97.448730, 42.763146 ], [ 99.514160, 42.536892 ], [ 100.832520, 42.666281 ], [ 101.821289, 42.520700 ], [ 103.293457, 41.918629 ], [ 104.501953, 41.918629 ], [ 104.963379, 41.607228 ], [ 106.127930, 42.147114 ], [ 107.731934, 42.488302 ], [ 109.226074, 42.520700 ], [ 110.390625, 42.875964 ], [ 111.115723, 43.421009 ], [ 111.818848, 43.755225 ], [ 111.665039, 44.087585 ], [ 111.335449, 44.465151 ], [ 111.862793, 45.104546 ], [ 113.444824, 44.809122 ], [ 114.455566, 45.352145 ], [ 115.971680, 45.736860 ], [ 116.696777, 46.392411 ], [ 117.399902, 46.679594 ], [ 118.872070, 46.815099 ], [ 119.663086, 46.694667 ], [ 119.750977, 47.055154 ], [ 118.850098, 47.754098 ], [ 118.059082, 48.078079 ], [ 117.290039, 47.709762 ], [ 116.301270, 47.857403 ], [ 115.729980, 47.739323 ], [ 115.466309, 48.136767 ], [ 116.191406, 49.138597 ], [ 116.674805, 49.894634 ], [ 117.861328, 49.525208 ], [ 119.267578, 50.148746 ], [ 119.267578, 50.583237 ], [ 120.168457, 51.645294 ], [ 120.717773, 51.971346 ], [ 120.717773, 52.522906 ], [ 120.168457, 52.762892 ], [ 120.981445, 53.252069 ], [ 122.233887, 53.435719 ], [ 123.552246, 53.461890 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.363281, -0.351560 ], [ 133.967285, -0.769020 ], [ 134.143066, -1.142502 ], [ 134.230957, -1.757537 ], [ 131.923828, -1.757537 ], [ 131.835938, -1.603794 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.922812 ], [ 131.857910, -0.681136 ], [ 132.363281, -0.351560 ] ] ], [ [ [ 125.046387, 1.647722 ], [ 125.222168, 1.428075 ], [ 124.431152, 0.439449 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.395505 ], [ 120.168457, 0.241699 ], [ 120.124512, 0.000000 ], [ 120.036621, -0.505365 ], [ 120.915527, -1.406109 ], [ 121.464844, -0.944781 ], [ 123.332520, -0.615223 ], [ 123.244629, -1.054628 ], [ 122.805176, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.838379, -1.757537 ], [ 119.245605, -1.757537 ], [ 119.311523, -1.340210 ], [ 119.772949, 0.000000 ], [ 120.014648, 0.571280 ], [ 120.871582, 1.318243 ], [ 121.662598, 1.032659 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.046387, 1.647722 ] ] ], [ [ [ 117.004395, 4.324501 ], [ 117.861328, 4.149201 ], [ 117.312012, 3.250209 ], [ 118.037109, 2.306506 ], [ 117.861328, 1.845384 ], [ 118.981934, 0.922812 ], [ 117.795410, 0.790990 ], [ 117.465820, 0.109863 ], [ 117.465820, 0.000000 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.472006 ], [ 116.542969, -1.757537 ], [ 110.083008, -1.757537 ], [ 110.061035, -1.581830 ], [ 109.555664, -1.296276 ], [ 109.072266, -0.439449 ], [ 109.006348, 0.000000 ], [ 108.940430, 0.417477 ], [ 109.050293, 1.362176 ], [ 109.643555, 2.021065 ], [ 109.819336, 1.340210 ], [ 110.500488, 0.790990 ], [ 111.137695, 0.988720 ], [ 111.796875, 0.922812 ], [ 112.368164, 1.428075 ], [ 112.851562, 1.515936 ], [ 113.796387, 1.230374 ], [ 114.609375, 1.450040 ], [ 115.114746, 2.833317 ], [ 115.510254, 3.184394 ], [ 115.861816, 4.324501 ], [ 117.004395, 4.324501 ] ] ], [ [ [ 95.273438, 5.484768 ], [ 95.932617, 5.441022 ], [ 97.470703, 5.266008 ], [ 98.349609, 4.280680 ], [ 99.140625, 3.601142 ], [ 99.689941, 3.184394 ], [ 100.634766, 2.108899 ], [ 101.645508, 2.086941 ], [ 102.480469, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.820801, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.425293, -0.703107 ], [ 103.996582, -1.054628 ], [ 104.348145, -1.076597 ], [ 104.523926, -1.757537 ], [ 100.722656, -1.757537 ], [ 100.129395, -0.637194 ], [ 99.448242, 0.000000 ], [ 99.250488, 0.197754 ], [ 98.964844, 1.054628 ], [ 98.591309, 1.845384 ], [ 97.690430, 2.460181 ], [ 97.163086, 3.316018 ], [ 96.416016, 3.886177 ], [ 95.361328, 4.981505 ], [ 95.273438, 5.484768 ] ] ], [ [ [ 138.449707, -1.757537 ], [ 137.329102, -1.757537 ], [ 137.438965, -1.691649 ], [ 138.317871, -1.691649 ], [ 138.449707, -1.757537 ] ] ], [ [ [ 127.924805, 2.174771 ], [ 127.990723, 1.647722 ], [ 128.583984, 1.559866 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.373533 ], [ 128.012695, 0.000000 ], [ 127.946777, -0.241699 ], [ 128.364258, -0.769020 ], [ 128.078613, -0.878872 ], [ 127.683105, -0.263671 ], [ 127.617188, 0.000000 ], [ 127.397461, 1.032659 ], [ 127.595215, 1.823423 ], [ 127.924805, 2.174771 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 104.348145, 77.702234 ], [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.226562, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.312988, 76.226907 ], [ 114.125977, 75.850541 ], [ 113.884277, 75.331158 ], [ 112.763672, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.379883, 74.182063 ], [ 110.632324, 74.043723 ], [ 112.104492, 73.788054 ], [ 113.005371, 73.977144 ], [ 113.510742, 73.340461 ], [ 113.950195, 73.596792 ], [ 115.554199, 73.757352 ], [ 118.762207, 73.590586 ], [ 119.003906, 73.124945 ], [ 123.178711, 72.977623 ], [ 123.244629, 73.738905 ], [ 125.375977, 73.565739 ], [ 126.958008, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.402350 ], [ 128.452148, 71.985784 ], [ 129.704590, 71.194838 ], [ 131.286621, 70.794139 ], [ 132.253418, 71.842539 ], [ 133.857422, 71.392155 ], [ 135.549316, 71.656749 ], [ 137.482910, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.855957, 71.490063 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.854981 ], [ 149.479980, 72.201963 ], [ 150.336914, 71.608283 ], [ 152.951660, 70.844673 ], [ 156.994629, 71.038390 ], [ 158.994141, 70.873491 ], [ 159.829102, 70.458859 ], [ 159.697266, 69.725722 ], [ 160.927734, 69.442128 ], [ 162.268066, 69.649446 ], [ 164.047852, 69.672358 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.588228 ], [ 169.562988, 68.696505 ], [ 170.815430, 69.021414 ], [ 170.002441, 69.657086 ], [ 170.441895, 70.103008 ], [ 173.627930, 69.824471 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 65.802776 ], [ 88.242188, 65.802776 ], [ 88.242188, 75.146412 ], [ 88.308105, 75.146412 ], [ 90.000000, 75.579466 ], [ 90.241699, 75.644984 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.844727, 76.142958 ], [ 96.657715, 75.920199 ], [ 98.920898, 76.450056 ], [ 100.744629, 76.434604 ], [ 101.030273, 76.865804 ], [ 101.975098, 77.288368 ], [ 104.348145, 77.702234 ] ] ], [ [ [ 180.000000, 71.517945 ], [ 180.000000, 70.837461 ], [ 178.901367, 70.786910 ], [ 178.703613, 71.102543 ], [ 180.000000, 71.517945 ] ] ], [ [ [ 142.053223, 73.861506 ], [ 143.481445, 73.478485 ], [ 143.591309, 73.214013 ], [ 142.075195, 73.207666 ], [ 140.031738, 73.321553 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.769640 ], [ 142.053223, 73.861506 ] ] ], [ [ [ 138.823242, 76.137695 ], [ 141.459961, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.850672 ], [ 138.955078, 74.613445 ], [ 136.955566, 75.264239 ], [ 137.504883, 75.952235 ], [ 138.823242, 76.137695 ] ] ], [ [ [ 146.337891, 75.497157 ], [ 148.205566, 75.347841 ], [ 150.710449, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.963867, 74.781612 ], [ 146.118164, 75.174549 ], [ 146.337891, 75.497157 ] ] ], [ [ [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ], [ 105.358887, 78.716316 ], [ 105.073242, 78.309408 ], [ 99.426270, 77.924866 ], [ 101.250000, 79.237185 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.932617, 81.251691 ], [ 97.866211, 80.750025 ], [ 100.173340, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.759229 ], [ 94.965820, 79.046790 ], [ 93.295898, 79.428340 ], [ 92.526855, 80.144924 ], [ 91.164551, 80.342262 ], [ 93.757324, 81.024916 ], [ 95.932617, 81.251691 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.272503 ], [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.072021, 19.859727 ], [ -154.808350, 19.518375 ], [ -154.841309, 19.456234 ], [ -155.544434, 19.093267 ], [ -155.698242, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.917969, 19.342245 ], [ -156.082764, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.983674 ], [ -155.928955, 20.179724 ], [ -155.863037, 20.272503 ] ] ], [ [ [ -156.621094, 21.012727 ], [ -156.258545, 20.920397 ], [ -156.005859, 20.766387 ], [ -156.082764, 20.653346 ], [ -156.423340, 20.581367 ], [ -156.588135, 20.786931 ], [ -156.708984, 20.869078 ], [ -156.719971, 20.930659 ], [ -156.621094, 21.012727 ] ] ], [ [ [ -157.258301, 21.227942 ], [ -156.763916, 21.186973 ], [ -156.796875, 21.074249 ], [ -157.335205, 21.105000 ], [ -157.258301, 21.227942 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.950439, 21.657428 ], [ -157.653809, 21.330315 ], [ -157.708740, 21.268900 ], [ -158.137207, 21.320081 ], [ -158.258057, 21.545066 ], [ -158.302002, 21.585935 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.892084 ], [ -159.807129, 22.075459 ], [ -159.752197, 22.146708 ], [ -159.598389, 22.238260 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -134.121094, 66.861082 ], [ -134.121094, 58.790978 ], [ -134.274902, 58.864905 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.327585 ], [ -135.483398, 59.789580 ], [ -136.483154, 59.467408 ], [ -137.460938, 58.910319 ], [ -138.350830, 59.562158 ], [ -139.042969, 60.004479 ], [ -140.020752, 60.277962 ], [ -140.998535, 60.310627 ], [ -140.998535, 66.861082 ], [ -134.121094, 66.861082 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -140.998535, 66.861082 ], [ -140.998535, 60.310627 ], [ -140.020752, 60.277962 ], [ -139.042969, 60.004479 ], [ -138.350830, 59.562158 ], [ -137.460938, 58.910319 ], [ -136.483154, 59.467408 ], [ -135.483398, 59.789580 ], [ -135.000000, 59.327585 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.864905 ], [ -134.121094, 58.790978 ], [ -134.121094, 58.130121 ], [ -135.000000, 58.188080 ], [ -136.636963, 58.217025 ], [ -137.801514, 58.505175 ], [ -139.877930, 59.539888 ], [ -142.580566, 60.086763 ], [ -143.964844, 60.004479 ], [ -145.931396, 60.462634 ], [ -147.117920, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.982502 ], [ -148.579102, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.372391 ], [ -151.721191, 59.159036 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.037012 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.732315 ], [ -152.589111, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.313721, 57.733485 ], [ -156.313477, 57.427210 ], [ -156.566162, 56.980911 ], [ -158.126221, 56.468560 ], [ -158.433838, 55.998381 ], [ -159.609375, 55.572134 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.246094, 55.028022 ], [ -163.070068, 54.692884 ], [ -164.794922, 54.406143 ], [ -164.948730, 54.578430 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.219608 ], [ -157.730713, 57.574779 ], [ -157.554932, 58.332567 ], [ -157.049561, 58.921664 ], [ -158.203125, 58.619777 ], [ -158.521729, 58.790978 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.074448 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.676938 ], [ -162.059326, 59.271495 ], [ -161.883545, 59.634435 ], [ -162.520752, 59.993492 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.272515 ], [ -165.355225, 60.511343 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.078171 ], [ -164.926758, 62.633770 ], [ -164.564209, 63.149393 ], [ -163.762207, 63.223730 ], [ -163.070068, 63.059937 ], [ -162.268066, 63.543658 ], [ -161.542969, 63.460329 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.225493 ], [ -161.520996, 64.406431 ], [ -160.784912, 64.792848 ], [ -161.400146, 64.778807 ], [ -162.454834, 64.562601 ], [ -162.762451, 64.339908 ], [ -163.553467, 64.562601 ], [ -164.970703, 64.449111 ], [ -166.431885, 64.689713 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.578851 ], [ -163.663330, 66.578851 ], [ -163.674316, 66.513260 ], [ -163.795166, 66.080457 ], [ -161.685791, 66.120515 ], [ -162.202148, 66.513260 ], [ -162.498779, 66.739902 ], [ -162.894287, 66.861082 ], [ -140.998535, 66.861082 ] ] ], [ [ [ -153.237305, 57.973157 ], [ -152.567139, 57.903174 ], [ -152.149658, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.740674 ], [ -154.522705, 56.992883 ], [ -154.676514, 57.462681 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.973157 ] ] ], [ [ [ -166.475830, 60.386720 ], [ -165.684814, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.464600, 60.217991 ], [ -166.475830, 60.386720 ] ] ], [ [ [ -171.738281, 63.787339 ], [ -171.123047, 63.592562 ], [ -170.496826, 63.694987 ], [ -169.683838, 63.435774 ], [ -168.695068, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.980189 ], [ -170.299072, 63.198973 ], [ -170.672607, 63.376756 ], [ -171.562500, 63.322549 ], [ -171.793213, 63.406280 ], [ -171.738281, 63.787339 ] ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ -171.749268, 66.861082 ], [ -171.013184, 66.513260 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.544819 ], [ -172.540283, 65.440002 ], [ -172.562256, 64.463323 ], [ -172.957764, 64.254141 ], [ -173.902588, 64.282760 ], [ -174.660645, 64.633292 ], [ -175.989990, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.363037, 65.394298 ], [ -178.912354, 65.744170 ], [ -178.692627, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.439697, 65.408017 ], [ -180.000000, 64.984005 ], [ -180.000000, 66.861082 ], [ -174.979248, 66.861082 ], [ -175.023193, 66.587583 ], [ -174.825439, 66.513260 ], [ -174.342041, 66.337505 ], [ -174.396973, 66.513260 ], [ -174.517822, 66.861082 ], [ -171.749268, 66.861082 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -140.987549, 69.714298 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.993864 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.318320 ], [ -135.000000, 69.480672 ], [ -134.417725, 69.630335 ], [ -134.121094, 69.603549 ], [ -134.121094, 66.160511 ], [ -140.998535, 66.160511 ], [ -140.998535, 66.513260 ], [ -140.987549, 69.714298 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.663330, 66.578851 ], [ -163.674316, 66.513260 ], [ -163.773193, 66.160511 ], [ -166.387939, 66.160511 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.578851 ], [ -163.663330, 66.578851 ] ] ], [ [ [ -155.072021, 71.148745 ], [ -154.346924, 70.699951 ], [ -153.907471, 70.891482 ], [ -152.215576, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.433120 ], [ -149.721680, 70.532222 ], [ -147.623291, 70.214875 ], [ -145.700684, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.987549, 69.714298 ], [ -140.998535, 66.513260 ], [ -140.998535, 66.160511 ], [ -161.740723, 66.160511 ], [ -162.202148, 66.513260 ], [ -162.498779, 66.739902 ], [ -163.729248, 67.118748 ], [ -164.432373, 67.617589 ], [ -165.399170, 68.044569 ], [ -166.772461, 68.362750 ], [ -166.212158, 68.883316 ], [ -164.432373, 68.918910 ], [ -163.168945, 69.372573 ], [ -162.938232, 69.858546 ], [ -161.916504, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.049072, 70.895078 ], [ -158.126221, 70.826640 ], [ -156.588135, 71.360578 ], [ -155.072021, 71.148745 ] ] ] ] } } +, +{ "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": [ [ [ [ -180.000000, 68.966279 ], [ -177.550049, 68.200133 ], [ -174.935303, 67.208289 ], [ -175.023193, 66.587583 ], [ -174.825439, 66.513260 ], [ -174.342041, 66.337505 ], [ -174.396973, 66.513260 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.917142 ], [ -171.013184, 66.513260 ], [ -170.288086, 66.160511 ], [ -180.000000, 66.160511 ], [ -180.000000, 68.966279 ] ] ], [ [ [ -179.879150, 71.559692 ], [ -179.033203, 71.556217 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.134540 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.517945 ], [ -179.879150, 71.559692 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 41.640078 ], [ -89.121094, 30.325471 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.439697, 29.496988 ], [ -89.219971, 29.295981 ], [ -89.417725, 29.161756 ], [ -89.780273, 29.315141 ], [ -90.000000, 29.200123 ], [ -90.164795, 29.123373 ], [ -90.889893, 29.152161 ], [ -91.636963, 29.678508 ], [ -92.504883, 29.554345 ], [ -93.229980, 29.792984 ], [ -93.856201, 29.716681 ], [ -94.691162, 29.487425 ], [ -95.603027, 28.738764 ], [ -96.602783, 28.314053 ], [ -97.141113, 27.839076 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.696545 ], [ -97.338867, 26.214591 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.849337 ], [ -98.250732, 26.066652 ], [ -99.030762, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.547242 ], [ -100.118408, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.964355, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.117676, 28.979312 ], [ -103.941650, 29.276816 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.090574 ], [ -106.149902, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.248291, 31.756196 ], [ -108.248291, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.312988, 32.045333 ], [ -114.818115, 32.528289 ], [ -114.730225, 32.722599 ], [ -115.993652, 32.620870 ], [ -117.136230, 32.537552 ], [ -117.301025, 33.054716 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.034453 ], [ -119.091797, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.377197, 34.452218 ], [ -120.629883, 34.615127 ], [ -120.750732, 35.164828 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.117272 ], [ -123.728027, 38.959409 ], [ -123.870850, 39.774769 ], [ -124.398193, 40.321420 ], [ -124.222412, 40.979898 ], [ -124.189453, 41.145570 ], [ -124.200439, 41.640078 ], [ -89.121094, 41.640078 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.730225, 32.722599 ], [ -114.818115, 32.528289 ], [ -113.312988, 32.045333 ], [ -111.027832, 31.334871 ], [ -108.248291, 31.344254 ], [ -108.248291, 31.756196 ], [ -106.512451, 31.756196 ], [ -106.149902, 31.400535 ], [ -105.633545, 31.090574 ], [ -105.040283, 30.647364 ], [ -104.710693, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.276816 ], [ -103.117676, 28.979312 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.964355, 29.382175 ], [ -100.458984, 28.700225 ], [ -100.118408, 28.110749 ], [ -99.525146, 27.547242 ], [ -99.305420, 26.843677 ], [ -99.030762, 26.372185 ], [ -98.250732, 26.066652 ], [ -97.536621, 25.849337 ], [ -97.141113, 25.878994 ], [ -97.536621, 24.996016 ], [ -97.712402, 24.277012 ], [ -97.778320, 22.938160 ], [ -97.877197, 22.451649 ], [ -97.701416, 21.902278 ], [ -97.393799, 21.412162 ], [ -97.196045, 20.643066 ], [ -96.525879, 19.901054 ], [ -96.295166, 19.321511 ], [ -95.910645, 18.833515 ], [ -94.844971, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.559570, 18.427502 ], [ -92.790527, 18.531700 ], [ -92.043457, 18.708692 ], [ -91.417236, 18.885498 ], [ -90.780029, 19.290406 ], [ -90.538330, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -90.000000, 21.115249 ], [ -89.604492, 21.268900 ], [ -89.121094, 21.371244 ], [ -89.121094, 17.968283 ], [ -89.154053, 17.957832 ], [ -89.154053, 17.811456 ], [ -90.000000, 17.821916 ], [ -91.010742, 17.821916 ], [ -91.010742, 17.256236 ], [ -91.461182, 17.256236 ], [ -91.087646, 16.920195 ], [ -90.714111, 16.688817 ], [ -90.604248, 16.478230 ], [ -90.439453, 16.415009 ], [ -90.472412, 16.077486 ], [ -91.757812, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.072124 ], [ -92.208252, 14.838612 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.623037 ], [ -93.878174, 15.940202 ], [ -94.702148, 16.204125 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.760536 ], [ -96.558838, 15.654776 ], [ -97.272949, 15.919074 ], [ -98.020020, 16.109153 ], [ -98.953857, 16.573023 ], [ -99.700928, 16.709863 ], [ -100.832520, 17.172283 ], [ -101.667480, 17.654491 ], [ -101.920166, 17.926476 ], [ -102.480469, 17.978733 ], [ -103.502197, 18.302381 ], [ -103.919678, 18.750310 ], [ -104.996338, 19.321511 ], [ -105.501709, 19.952696 ], [ -105.732422, 20.437308 ], [ -105.402832, 20.540221 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.084500 ], [ -105.270996, 21.422390 ], [ -105.611572, 21.871695 ], [ -105.699463, 22.278931 ], [ -106.029053, 22.776182 ], [ -106.918945, 23.775291 ], [ -107.918701, 24.557116 ], [ -108.402100, 25.175117 ], [ -109.270020, 25.582085 ], [ -109.445801, 25.829561 ], [ -109.291992, 26.450902 ], [ -109.808350, 26.676913 ], [ -110.401611, 27.166695 ], [ -110.643311, 27.868217 ], [ -111.181641, 27.945886 ], [ -111.763916, 28.468691 ], [ -112.236328, 28.960089 ], [ -112.280273, 29.267233 ], [ -112.818604, 30.021544 ], [ -113.170166, 30.789037 ], [ -113.159180, 31.175210 ], [ -113.873291, 31.569175 ], [ -114.213867, 31.531726 ], [ -114.785156, 31.802893 ], [ -114.938965, 31.400535 ], [ -114.774170, 30.921076 ], [ -114.675293, 30.164126 ], [ -114.334717, 29.754840 ], [ -113.598633, 29.065773 ], [ -113.433838, 28.835050 ], [ -113.280029, 28.758028 ], [ -113.148193, 28.420391 ], [ -112.972412, 28.430053 ], [ -112.763672, 27.780772 ], [ -112.467041, 27.527758 ], [ -112.247314, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.291504, 25.740529 ], [ -110.994873, 25.304304 ], [ -110.720215, 24.826625 ], [ -110.665283, 24.307053 ], [ -110.181885, 24.266997 ], [ -109.775391, 23.815501 ], [ -109.412842, 23.372514 ], [ -109.434814, 23.190863 ], [ -109.863281, 22.826820 ], [ -110.039062, 22.826820 ], [ -110.302734, 23.433009 ], [ -110.950928, 24.006326 ], [ -111.676025, 24.487149 ], [ -112.192383, 24.746831 ], [ -112.159424, 25.473033 ], [ -112.302246, 26.017298 ], [ -113.466797, 26.775039 ], [ -113.598633, 26.647459 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.147145 ], [ -115.059814, 27.732161 ], [ -114.982910, 27.800210 ], [ -114.576416, 27.741885 ], [ -114.202881, 28.120439 ], [ -114.169922, 28.574874 ], [ -114.938965, 29.286399 ], [ -115.521240, 29.563902 ], [ -116.729736, 31.644029 ], [ -117.136230, 32.537552 ], [ -115.993652, 32.620870 ], [ -114.730225, 32.722599 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -89.121094, 66.861082 ], [ -89.121094, 64.072200 ], [ -89.923096, 64.033744 ], [ -90.000000, 63.990418 ], [ -90.714111, 63.612100 ], [ -90.780029, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.026682 ], [ -94.251709, 60.903731 ], [ -94.636230, 60.114145 ], [ -94.691162, 58.950008 ], [ -93.218994, 58.785285 ], [ -92.768555, 57.850598 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.284981 ], [ -90.000000, 57.076575 ], [ -89.121094, 56.872996 ], [ -89.121094, 48.070738 ], [ -89.274902, 48.026672 ], [ -89.604492, 48.011975 ], [ -90.000000, 48.100095 ], [ -90.834961, 48.275882 ], [ -91.647949, 48.144098 ], [ -92.614746, 48.451066 ], [ -93.636475, 48.611122 ], [ -94.339600, 48.676454 ], [ -94.647217, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.163574, 49.389524 ], [ -95.163574, 49.001844 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.422519 ], [ -127.441406, 50.833698 ], [ -128.001709, 51.720223 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.807017 ], [ -129.990234, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.715088, 56.553428 ], [ -132.736816, 57.698277 ], [ -133.363037, 58.413223 ], [ -134.274902, 58.864905 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.327585 ], [ -135.483398, 59.789580 ], [ -135.878906, 59.662192 ], [ -135.878906, 66.861082 ], [ -89.121094, 66.861082 ] ] ], [ [ [ -128.364258, 50.771208 ], [ -127.309570, 50.555325 ], [ -126.705322, 50.401515 ], [ -125.760498, 50.296358 ], [ -124.925537, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.519287, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.859131, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.067627, 50.000678 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.771208 ] ] ], [ [ [ -133.187256, 54.175297 ], [ -132.714844, 54.040038 ], [ -131.759033, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.187744, 52.180669 ], [ -131.583252, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.416080 ], [ -133.242188, 53.852527 ], [ -133.187256, 54.175297 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -94.822998, 49.389524 ], [ -94.647217, 48.843028 ], [ -94.339600, 48.676454 ], [ -93.636475, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.647949, 48.144098 ], [ -90.834961, 48.275882 ], [ -90.000000, 48.100095 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.026672 ], [ -89.121094, 48.070738 ], [ -89.121094, 40.313043 ], [ -124.398193, 40.313043 ], [ -124.222412, 40.979898 ], [ -124.189453, 41.145570 ], [ -124.222412, 42.000325 ], [ -124.541016, 42.771211 ], [ -124.145508, 43.715535 ], [ -123.903809, 45.529441 ], [ -124.090576, 46.867703 ], [ -124.398193, 47.724545 ], [ -124.694824, 48.188063 ], [ -124.573975, 48.385442 ], [ -123.123779, 48.041365 ], [ -122.596436, 47.100045 ], [ -122.343750, 47.361153 ], [ -122.508545, 48.180739 ], [ -122.849121, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.163574, 49.389524 ], [ -94.822998, 49.389524 ] ] ], [ [ [ -135.483398, 59.789580 ], [ -135.000000, 59.327585 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.864905 ], [ -133.363037, 58.413223 ], [ -132.736816, 57.698277 ], [ -131.715088, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.990234, 55.285372 ], [ -130.539551, 54.807017 ], [ -131.088867, 55.185141 ], [ -131.967773, 55.503750 ], [ -132.253418, 56.371335 ], [ -133.549805, 57.183902 ], [ -134.088135, 58.124320 ], [ -135.000000, 58.188080 ], [ -135.043945, 58.188080 ], [ -135.878906, 58.205450 ], [ -135.878906, 59.662192 ], [ -135.483398, 59.789580 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -95.218506, 71.921119 ], [ -93.900146, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.527100, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.499918 ], [ -90.560303, 68.475895 ], [ -90.000000, 68.804014 ], [ -89.219971, 69.260040 ], [ -89.121094, 69.209404 ], [ -89.121094, 66.160511 ], [ -135.878906, 66.160511 ], [ -135.878906, 69.197702 ], [ -135.626221, 69.318320 ], [ -135.000000, 69.480672 ], [ -134.417725, 69.630335 ], [ -132.934570, 69.507612 ], [ -131.440430, 69.945375 ], [ -129.803467, 70.196272 ], [ -129.111328, 69.782749 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.484566 ], [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.431152, 70.159017 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.684326, 69.858546 ], [ -121.475830, 69.797930 ], [ -119.948730, 69.380313 ], [ -117.608643, 69.013546 ], [ -116.235352, 68.843700 ], [ -115.257568, 68.907051 ], [ -113.906250, 68.399180 ], [ -115.312500, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.819580, 68.314087 ], [ -108.171387, 68.656555 ], [ -106.951904, 68.700496 ], [ -106.160889, 68.800041 ], [ -105.347900, 68.564399 ], [ -104.348145, 68.019910 ], [ -103.227539, 68.097907 ], [ -101.458740, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.448486, 67.784335 ], [ -98.569336, 68.407268 ], [ -97.679443, 68.580453 ], [ -96.130371, 68.240896 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.093808 ], [ -94.691162, 68.065098 ], [ -94.240723, 69.072488 ], [ -95.306396, 69.687618 ], [ -96.481934, 70.091788 ], [ -96.394043, 71.194838 ], [ -95.218506, 71.921119 ] ] ], [ [ [ -98.228760, 70.144096 ], [ -97.163086, 69.862328 ], [ -96.558838, 69.683804 ], [ -95.657959, 69.107777 ], [ -96.273193, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.954446 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.228760, 70.144096 ] ] ], [ [ [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ], [ -114.675293, 72.653038 ], [ -112.445068, 72.958315 ], [ -111.060791, 72.452104 ], [ -109.929199, 72.961534 ], [ -109.017334, 72.633374 ], [ -108.193359, 71.653291 ], [ -107.687988, 72.067147 ], [ -108.402100, 73.089829 ], [ -107.523193, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.701644 ], [ -104.468994, 70.995506 ], [ -102.788086, 70.499241 ], [ -100.986328, 70.024341 ], [ -101.096191, 69.588228 ], [ -102.733154, 69.507612 ], [ -102.095947, 69.123443 ], [ -102.436523, 68.756296 ], [ -104.249268, 68.911005 ], [ -105.963135, 69.182089 ], [ -107.127686, 69.119527 ], [ -109.006348, 68.780168 ], [ -111.544189, 68.632551 ], [ -113.323975, 68.536276 ], [ -113.862305, 69.009611 ], [ -115.224609, 69.283371 ], [ -116.114502, 69.170373 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.069330 ], [ -115.136719, 70.240890 ], [ -113.730469, 70.192550 ], [ -112.423096, 70.366783 ], [ -114.356689, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.543203 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.311357 ], [ -117.663574, 71.297270 ], [ -119.410400, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.872314, 72.708638 ], [ -115.191650, 73.315246 ] ] ], [ [ [ -89.121094, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.587473 ], [ -90.208740, 72.235514 ], [ -90.000000, 72.478584 ], [ -89.439697, 73.131322 ], [ -89.121094, 73.258376 ], [ -89.121094, 71.223149 ] ] ], [ [ [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ], [ -117.564697, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.521240, 73.475361 ], [ -116.773682, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.821986 ], [ -120.465088, 71.385142 ], [ -123.101807, 70.902268 ], [ -123.629150, 71.343013 ], [ -125.936279, 71.869909 ], [ -125.507812, 72.292409 ], [ -124.815674, 73.022592 ], [ -123.947754, 73.680352 ], [ -124.925537, 74.295463 ], [ -121.541748, 74.449358 ] ] ], [ [ [ -100.360107, 73.846230 ], [ -99.173584, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.130127, 73.472235 ], [ -98.063965, 72.993696 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.276122 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.832295 ], [ -100.447998, 72.708638 ], [ -101.546631, 73.362494 ], [ -100.360107, 73.846230 ] ] ], [ [ [ -94.504395, 74.137081 ], [ -92.427979, 74.101006 ], [ -90.516357, 73.858452 ], [ -92.010498, 72.967971 ], [ -93.197021, 72.773828 ], [ -94.273682, 72.026510 ], [ -95.416260, 72.063764 ], [ -96.042480, 72.942209 ], [ -96.020508, 73.437821 ], [ -95.504150, 73.864559 ], [ -94.504395, 74.137081 ] ] ], [ [ [ -105.260010, 73.640171 ], [ -104.501953, 73.422156 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.462857 ], [ -106.600342, 73.602996 ], [ -105.260010, 73.640171 ] ] ], [ [ [ -109.588623, 76.795721 ], [ -108.555908, 76.679785 ], [ -108.215332, 76.203347 ], [ -107.819824, 75.847855 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.970890 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.007782 ], [ -109.709473, 74.850672 ], [ -112.225342, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.718506, 75.222263 ], [ -116.356201, 76.200727 ], [ -115.411377, 76.480910 ], [ -112.598877, 76.142958 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.432026 ], [ -109.588623, 76.795721 ] ] ], [ [ [ -96.745605, 77.162046 ], [ -94.691162, 77.098423 ], [ -93.581543, 76.778142 ], [ -91.614990, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.977783, 76.074381 ], [ -90.000000, 75.885412 ], [ -89.824219, 75.847855 ], [ -89.197998, 75.612262 ], [ -89.121094, 75.609532 ], [ -89.121094, 74.467020 ], [ -89.769287, 74.516956 ], [ -90.000000, 74.546258 ], [ -92.427979, 74.839183 ], [ -92.768555, 75.389468 ], [ -92.900391, 75.882732 ], [ -93.900146, 76.320754 ], [ -95.965576, 76.442332 ], [ -97.130127, 76.752991 ], [ -96.745605, 77.162046 ] ] ], [ [ [ -94.855957, 75.647708 ], [ -93.988037, 75.297735 ], [ -93.614502, 74.982183 ], [ -94.163818, 74.593027 ], [ -95.614014, 74.668733 ], [ -96.822510, 74.927999 ], [ -96.295166, 75.378379 ], [ -94.855957, 75.647708 ] ] ], [ [ [ -98.503418, 76.720223 ], [ -97.745361, 76.258260 ], [ -97.712402, 75.745421 ], [ -98.162842, 75.002097 ], [ -99.810791, 74.899404 ], [ -100.887451, 75.058854 ], [ -100.865479, 75.642260 ], [ -102.502441, 75.565780 ], [ -102.568359, 76.338929 ], [ -101.491699, 76.307757 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.590904 ], [ -98.503418, 76.720223 ] ] ], [ [ [ -116.202393, 77.645947 ], [ -116.345215, 76.878281 ], [ -117.114258, 76.532180 ], [ -118.048096, 76.483478 ], [ -119.904785, 76.055861 ], [ -121.508789, 75.901478 ], [ -122.860107, 76.116622 ], [ -121.168213, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.202393, 77.645947 ] ] ], [ [ [ -89.121094, 77.014755 ], [ -89.121094, 76.462920 ], [ -89.494629, 76.473203 ], [ -89.626465, 76.952895 ], [ -89.121094, 77.014755 ] ] ], [ [ [ -111.269531, 78.154807 ], [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.411073 ], [ -113.543701, 77.732617 ], [ -112.730713, 78.052896 ], [ -111.269531, 78.154807 ] ] ], [ [ [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ], [ -93.724365, 77.636542 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.834904 ] ] ], [ [ [ -98.635254, 78.872169 ], [ -97.338867, 78.833938 ], [ -96.756592, 78.767792 ], [ -95.570068, 78.420193 ], [ -95.833740, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.558350, 78.459822 ], [ -98.635254, 78.872169 ] ] ], [ [ [ -105.501709, 79.302640 ], [ -103.623047, 79.171335 ], [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.324981 ], [ -99.678955, 77.908767 ], [ -101.304932, 78.021014 ], [ -102.952881, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.468750, 79.171335 ], [ -105.501709, 79.302640 ] ] ], [ [ [ -89.121094, 79.335219 ], [ -89.121094, 78.284896 ], [ -90.000000, 78.249150 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.752802 ], [ -93.944092, 79.115464 ], [ -93.768311, 79.171335 ], [ -93.284912, 79.335219 ], [ -89.121094, 79.335219 ] ] ], [ [ [ -111.500244, 78.850946 ], [ -110.972900, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.409162 ], [ -112.532959, 78.551769 ], [ -111.500244, 78.850946 ] ] ], [ [ [ -89.121094, 70.934593 ], [ -89.121094, 70.598021 ], [ -89.516602, 70.765206 ], [ -89.121094, 70.934593 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -105.501709, 79.302640 ], [ -103.623047, 79.171335 ], [ -103.535156, 79.167206 ], [ -102.337646, 79.004962 ], [ -105.446777, 79.004962 ], [ -105.468750, 79.171335 ], [ -105.501709, 79.302640 ] ] ], [ [ [ -92.416992, 81.258372 ], [ -91.142578, 80.723498 ], [ -90.000000, 80.580741 ], [ -89.450684, 80.510360 ], [ -89.121094, 80.472247 ], [ -89.121094, 79.004962 ], [ -93.944092, 79.004962 ], [ -93.944092, 79.115464 ], [ -93.768311, 79.171335 ], [ -93.153076, 79.381881 ], [ -94.976807, 79.373780 ], [ -96.086426, 79.706834 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.604086 ], [ -95.328369, 80.907616 ], [ -94.306641, 80.978522 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ] ] ], [ [ [ -89.121094, 82.112355 ], [ -89.121094, 80.809875 ], [ -89.373779, 80.857129 ], [ -90.000000, 81.166059 ], [ -90.208740, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.593018, 81.895354 ], [ -90.109863, 82.085171 ], [ -89.121094, 82.112355 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.516221 ], [ -68.642578, -52.629729 ], [ -68.642578, -54.863963 ], [ -67.565918, -54.863963 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.297884 ], [ -68.159180, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.497527 ], [ -69.960938, -55.197683 ], [ -71.015625, -55.053203 ], [ -72.268066, -54.489187 ], [ -73.289795, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.041213 ], [ -72.443848, -53.709714 ], [ -71.114502, -54.072283 ], [ -70.598145, -53.612062 ], [ -70.268555, -52.928775 ], [ -69.345703, -52.516221 ] ] ], [ [ [ -71.806641, -40.313043 ], [ -71.916504, -40.830437 ], [ -71.905518, -40.979898 ], [ -71.751709, -42.049293 ], [ -72.158203, -42.252918 ], [ -71.916504, -43.405047 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.334229, -44.402392 ], [ -71.224365, -44.777936 ], [ -71.663818, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.927490, -46.882723 ], [ -72.454834, -47.731934 ], [ -72.333984, -48.239309 ], [ -72.652588, -48.871941 ], [ -73.421631, -49.317961 ], [ -73.333740, -50.373496 ], [ -72.982178, -50.736455 ], [ -72.312012, -50.673835 ], [ -72.333984, -51.419764 ], [ -71.916504, -52.005174 ], [ -69.499512, -52.140231 ], [ -68.576660, -52.295042 ], [ -69.466553, -52.288323 ], [ -69.949951, -52.536273 ], [ -70.850830, -52.895649 ], [ -71.015625, -53.833081 ], [ -71.433105, -53.852527 ], [ -72.564697, -53.527248 ], [ -73.707275, -52.829321 ], [ -74.948730, -52.261434 ], [ -75.267334, -51.624837 ], [ -74.981689, -51.041394 ], [ -75.487061, -50.373496 ], [ -75.618896, -48.669199 ], [ -75.190430, -47.709762 ], [ -74.135742, -46.935261 ], [ -75.651855, -46.641894 ], [ -74.696045, -45.759859 ], [ -74.355469, -44.095476 ], [ -73.245850, -44.449468 ], [ -72.718506, -42.382894 ], [ -73.399658, -42.114524 ], [ -73.707275, -43.365126 ], [ -74.333496, -43.221190 ], [ -74.025879, -41.787697 ], [ -73.872070, -40.979898 ], [ -73.751221, -40.313043 ], [ -71.806641, -40.313043 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.642578, -52.629729 ], [ -68.258057, -53.094024 ], [ -67.752686, -53.846046 ], [ -66.456299, -54.444492 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.197683 ], [ -66.456299, -55.247815 ], [ -66.961670, -54.895565 ], [ -67.565918, -54.863963 ], [ -68.642578, -54.863963 ], [ -68.642578, -52.629729 ] ] ], [ [ [ -62.281494, -40.313043 ], [ -62.149658, -40.672306 ], [ -62.666016, -40.979898 ], [ -62.753906, -41.021355 ], [ -63.775635, -41.162114 ], [ -64.270020, -40.979898 ], [ -64.742432, -40.797177 ], [ -64.995117, -40.979898 ], [ -65.126953, -41.062786 ], [ -64.984131, -42.057450 ], [ -64.313965, -42.358544 ], [ -63.764648, -42.041134 ], [ -63.468018, -42.561173 ], [ -64.379883, -42.867912 ], [ -65.181885, -43.492783 ], [ -65.335693, -44.496505 ], [ -65.566406, -45.034715 ], [ -66.511230, -45.034715 ], [ -67.302246, -45.544831 ], [ -67.587891, -46.301406 ], [ -66.599121, -47.032695 ], [ -65.643311, -47.234490 ], [ -65.994873, -48.129434 ], [ -67.170410, -48.690960 ], [ -67.818604, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.147949, -50.729502 ], [ -68.818359, -51.767840 ], [ -68.159180, -52.348763 ], [ -68.576660, -52.295042 ], [ -69.499512, -52.140231 ], [ -71.916504, -52.005174 ], [ -72.333984, -51.419764 ], [ -72.312012, -50.673835 ], [ -72.982178, -50.736455 ], [ -73.333740, -50.373496 ], [ -73.421631, -49.317961 ], [ -72.652588, -48.871941 ], [ -72.333984, -48.239309 ], [ -72.454834, -47.731934 ], [ -71.927490, -46.882723 ], [ -71.553955, -45.560218 ], [ -71.663818, -44.972571 ], [ -71.224365, -44.777936 ], [ -71.334229, -44.402392 ], [ -71.795654, -44.205835 ], [ -71.466064, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.158203, -42.252918 ], [ -71.751709, -42.049293 ], [ -71.905518, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.806641, -40.313043 ], [ -62.281494, -40.313043 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.235840, 0.878872 ], [ -69.257812, 0.604237 ], [ -69.455566, 0.714093 ], [ -70.015869, 0.549308 ], [ -70.026855, 0.000000 ], [ -70.026855, -0.175781 ], [ -69.587402, -0.549308 ], [ -69.422607, -1.120534 ], [ -69.444580, -1.548884 ], [ -69.895020, -4.291636 ], [ -70.400391, -3.765597 ], [ -70.697021, -3.732708 ], [ -70.048828, -2.723583 ], [ -70.817871, -2.251617 ], [ -71.422119, -2.339438 ], [ -71.784668, -2.163792 ], [ -72.333984, -2.427252 ], [ -73.081055, -2.306506 ], [ -73.663330, -1.252342 ], [ -74.124756, -0.999705 ], [ -74.443359, -0.527336 ], [ -75.113525, -0.054932 ], [ -75.377197, -0.142822 ], [ -75.651855, 0.000000 ], [ -75.805664, 0.087891 ], [ -76.300049, 0.417477 ], [ -76.585693, 0.263671 ], [ -77.431641, 0.406491 ], [ -77.673340, 0.834931 ], [ -77.860107, 0.812961 ], [ -77.980957, 0.878872 ], [ -69.235840, 0.878872 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Venezuela", "sov_a3": "VEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Venezuela", "adm0_a3": "VEN", "geou_dif": 0, "geounit": "Venezuela", "gu_a3": "VEN", "su_dif": 0, "subunit": "Venezuela", "su_a3": "VEN", "brk_diff": 0, "name": "Venezuela", "name_long": "Venezuela", "brk_a3": "VEN", "brk_name": "Venezuela", "abbrev": "Ven.", "postal": "VE", "formal_en": "Bolivarian Republic of Venezuela", "formal_fr": "República Bolivariana de Venezuela", "name_sort": "Venezuela, RB", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 26814843, "gdp_md_est": 357400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "VE", "iso_a3": "VEN", "iso_n3": "862", "un_a3": "862", "wb_a2": "VE", "wb_a3": "VEN", "woe_id": -99, "adm0_a3_is": "VEN", "adm0_a3_us": "VEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.500488, 0.878872 ], [ -65.555420, 0.790990 ], [ -66.335449, 0.725078 ], [ -66.489258, 0.878872 ], [ -65.500488, 0.878872 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Peru", "sov_a3": "PER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Peru", "adm0_a3": "PER", "geou_dif": 0, "geounit": "Peru", "gu_a3": "PER", "su_dif": 0, "subunit": "Peru", "su_a3": "PER", "brk_diff": 0, "name": "Peru", "name_long": "Peru", "brk_a3": "PER", "brk_name": "Peru", "abbrev": "Peru", "postal": "PE", "formal_en": "Republic of Peru", "name_sort": "Peru", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 11, "pop_est": 29546963, "gdp_md_est": 247300, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PE", "iso_a3": "PER", "iso_n3": "604", "un_a3": "604", "wb_a2": "PE", "wb_a3": "PER", "woe_id": -99, "adm0_a3_is": "PER", "adm0_a3_us": "PER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.113525, -0.054932 ], [ -74.443359, -0.527336 ], [ -74.124756, -0.999705 ], [ -73.663330, -1.252342 ], [ -73.081055, -2.306506 ], [ -72.333984, -2.427252 ], [ -71.784668, -2.163792 ], [ -71.422119, -2.339438 ], [ -70.817871, -2.251617 ], [ -70.048828, -2.723583 ], [ -70.697021, -3.732708 ], [ -70.400391, -3.765597 ], [ -69.895020, -4.291636 ], [ -70.795898, -4.247812 ], [ -70.938721, -4.401183 ], [ -71.751709, -4.587376 ], [ -72.894287, -5.266008 ], [ -72.971191, -5.736243 ], [ -73.223877, -6.085936 ], [ -73.125000, -6.620957 ], [ -73.729248, -6.915521 ], [ -73.729248, -7.340675 ], [ -73.992920, -7.514981 ], [ -73.575439, -8.418036 ], [ -73.026123, -9.026153 ], [ -73.234863, -9.459899 ], [ -72.564697, -9.514079 ], [ -72.191162, -10.044585 ], [ -71.312256, -10.077037 ], [ -70.488281, -9.481572 ], [ -70.554199, -11.005904 ], [ -70.103760, -11.113727 ], [ -69.532471, -10.941192 ], [ -68.675537, -12.554564 ], [ -68.884277, -12.897489 ], [ -68.939209, -13.592600 ], [ -68.950195, -14.445319 ], [ -69.345703, -14.944785 ], [ -69.169922, -15.315976 ], [ -69.400635, -15.654776 ], [ -68.961182, -16.499299 ], [ -69.598389, -17.570721 ], [ -69.862061, -18.083201 ], [ -70.378418, -18.344098 ], [ -71.378174, -17.769612 ], [ -71.466064, -17.361125 ], [ -73.454590, -16.351768 ], [ -75.245361, -15.262989 ], [ -76.014404, -14.647368 ], [ -76.431885, -13.816744 ], [ -76.267090, -13.528519 ], [ -77.113037, -12.221918 ], [ -78.101807, -10.368958 ], [ -79.046631, -8.385431 ], [ -79.453125, -7.928675 ], [ -79.760742, -7.188101 ], [ -80.540771, -6.533645 ], [ -81.254883, -6.129631 ], [ -80.936279, -5.681584 ], [ -81.419678, -4.729727 ], [ -81.101074, -4.028659 ], [ -80.310059, -3.403758 ], [ -80.189209, -3.820408 ], [ -80.474854, -4.050577 ], [ -80.452881, -4.423090 ], [ -80.035400, -4.335456 ], [ -79.628906, -4.444997 ], [ -79.211426, -4.948670 ], [ -78.640137, -4.543570 ], [ -78.453369, -3.864255 ], [ -77.838135, -2.997899 ], [ -76.640625, -2.602864 ], [ -75.552979, -1.559866 ], [ -75.234375, -0.900842 ], [ -75.377197, -0.142822 ], [ -75.113525, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.598389, -17.570721 ], [ -69.104004, -18.250220 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.404430 ], [ -68.763428, -20.365228 ], [ -68.225098, -21.493964 ], [ -67.829590, -22.867318 ], [ -67.115479, -22.735657 ], [ -66.994629, -22.978624 ], [ -67.335205, -24.016362 ], [ -68.422852, -24.517139 ], [ -68.389893, -26.175159 ], [ -68.598633, -26.500073 ], [ -68.302002, -26.892679 ], [ -69.005127, -27.518015 ], [ -69.664307, -28.459033 ], [ -70.015869, -29.363027 ], [ -69.927979, -30.334954 ], [ -70.543213, -31.363018 ], [ -70.081787, -33.082337 ], [ -69.818115, -33.266250 ], [ -69.818115, -34.189086 ], [ -70.389404, -35.164828 ], [ -70.367432, -36.004673 ], [ -71.125488, -36.650793 ], [ -71.125488, -37.570705 ], [ -70.817871, -38.548165 ], [ -71.422119, -38.908133 ], [ -71.685791, -39.800096 ], [ -71.916504, -40.830437 ], [ -71.905518, -40.979898 ], [ -71.806641, -41.640078 ], [ -73.992920, -41.640078 ], [ -73.872070, -40.979898 ], [ -73.685303, -39.935013 ], [ -73.223877, -39.257778 ], [ -73.509521, -38.281313 ], [ -73.597412, -37.151561 ], [ -73.168945, -37.116526 ], [ -72.553711, -35.505400 ], [ -71.872559, -33.906896 ], [ -71.444092, -32.417066 ], [ -71.674805, -30.911651 ], [ -71.378174, -30.088108 ], [ -71.499023, -28.854296 ], [ -70.905762, -27.634874 ], [ -70.729980, -25.700938 ], [ -70.411377, -23.624395 ], [ -70.092773, -21.391705 ], [ -70.169678, -19.756364 ], [ -70.378418, -18.344098 ], [ -69.862061, -18.083201 ], [ -69.598389, -17.570721 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.346680, -9.752370 ], [ -65.445557, -10.509417 ], [ -65.324707, -10.887254 ], [ -65.412598, -11.566144 ], [ -64.324951, -12.458033 ], [ -63.204346, -12.618897 ], [ -62.808838, -12.993853 ], [ -62.127686, -13.197165 ], [ -61.721191, -13.485790 ], [ -61.094971, -13.475106 ], [ -60.512695, -13.774066 ], [ -60.468750, -14.349548 ], [ -60.270996, -14.636739 ], [ -60.260010, -15.072124 ], [ -60.545654, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.249512, -16.299051 ], [ -58.392334, -16.867634 ], [ -58.282471, -17.266728 ], [ -57.744141, -17.549772 ], [ -57.502441, -18.166730 ], [ -57.678223, -18.958246 ], [ -57.952881, -19.394068 ], [ -57.854004, -19.963023 ], [ -58.172607, -20.169411 ], [ -58.183594, -19.859727 ], [ -59.117432, -19.352611 ], [ -60.051270, -19.342245 ], [ -61.787109, -19.632240 ], [ -62.270508, -20.509355 ], [ -62.292480, -21.043491 ], [ -62.687988, -22.248429 ], [ -62.852783, -22.034730 ], [ -63.995361, -21.983801 ], [ -64.379883, -22.796439 ], [ -64.973145, -22.075459 ], [ -66.280518, -21.830907 ], [ -67.115479, -22.735657 ], [ -67.829590, -22.867318 ], [ -68.225098, -21.493964 ], [ -68.763428, -20.365228 ], [ -68.444824, -19.404430 ], [ -68.972168, -18.979026 ], [ -69.104004, -18.250220 ], [ -69.598389, -17.570721 ], [ -68.961182, -16.499299 ], [ -69.400635, -15.654776 ], [ -69.169922, -15.315976 ], [ -69.345703, -14.944785 ], [ -68.950195, -14.445319 ], [ -68.939209, -13.592600 ], [ -68.884277, -12.897489 ], [ -68.675537, -12.554564 ], [ -69.532471, -10.941192 ], [ -68.796387, -11.027472 ], [ -68.280029, -11.005904 ], [ -68.049316, -10.703792 ], [ -67.181396, -10.304110 ], [ -66.654053, -9.925566 ], [ -65.346680, -9.752370 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ -50.108643, 0.878872 ], [ -50.701904, 0.230712 ], [ -50.394287, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.592529, -1.230374 ], [ -47.834473, -0.571280 ], [ -46.571045, -0.933797 ], [ -45.000000, -1.515936 ], [ -44.912109, -1.548884 ], [ -44.417725, -2.130856 ], [ -44.582520, -2.690661 ], [ -44.121094, -2.558963 ], [ -44.121094, -23.221155 ], [ -44.648438, -23.342256 ], [ -45.000000, -23.574057 ], [ -45.362549, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.658691, -24.876470 ], [ -48.504639, -25.869109 ], [ -48.647461, -26.617997 ], [ -48.482666, -27.166695 ], [ -48.669434, -28.178560 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.219302 ], [ -50.701904, -30.977609 ], [ -51.580811, -31.774878 ], [ -52.261963, -32.240683 ], [ -52.712402, -33.192731 ], [ -53.382568, -33.760882 ], [ -53.657227, -33.201924 ], [ -53.217773, -32.722599 ], [ -53.789062, -32.045333 ], [ -54.580078, -31.494262 ], [ -55.601807, -30.845647 ], [ -55.975342, -30.873940 ], [ -56.986084, -30.107118 ], [ -57.634277, -30.211608 ], [ -56.293945, -28.844674 ], [ -55.162354, -27.877928 ], [ -54.492188, -27.469287 ], [ -53.657227, -26.922070 ], [ -53.635254, -26.115986 ], [ -54.140625, -25.542441 ], [ -54.635010, -25.730633 ], [ -54.437256, -25.155229 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.016362 ], [ -54.656982, -23.835601 ], [ -55.030518, -23.996290 ], [ -55.404053, -23.956136 ], [ -55.524902, -23.563987 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.350076 ], [ -56.480713, -22.085640 ], [ -56.887207, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.875977, -20.725291 ], [ -58.172607, -20.169411 ], [ -57.854004, -19.963023 ], [ -57.952881, -19.394068 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.166730 ], [ -57.744141, -17.549772 ], [ -58.282471, -17.266728 ], [ -58.392334, -16.867634 ], [ -58.249512, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.260010, -15.072124 ], [ -60.270996, -14.636739 ], [ -60.468750, -14.349548 ], [ -60.512695, -13.774066 ], [ -61.094971, -13.475106 ], [ -61.721191, -13.485790 ], [ -62.127686, -13.197165 ], [ -62.808838, -12.993853 ], [ -63.204346, -12.618897 ], [ -64.324951, -12.458033 ], [ -65.412598, -11.566144 ], [ -65.324707, -10.887254 ], [ -65.445557, -10.509417 ], [ -65.346680, -9.752370 ], [ -66.654053, -9.925566 ], [ -67.181396, -10.304110 ], [ -68.049316, -10.703792 ], [ -68.280029, -11.005904 ], [ -68.796387, -11.027472 ], [ -69.532471, -10.941192 ], [ -70.103760, -11.113727 ], [ -70.554199, -11.005904 ], [ -70.488281, -9.481572 ], [ -71.312256, -10.077037 ], [ -72.191162, -10.044585 ], [ -72.564697, -9.514079 ], [ -73.234863, -9.459899 ], [ -73.026123, -9.026153 ], [ -73.575439, -8.418036 ], [ -73.992920, -7.514981 ], [ -73.729248, -7.340675 ], [ -73.729248, -6.915521 ], [ -73.125000, -6.620957 ], [ -73.223877, -6.085936 ], [ -72.971191, -5.736243 ], [ -72.894287, -5.266008 ], [ -71.751709, -4.587376 ], [ -70.938721, -4.401183 ], [ -70.795898, -4.247812 ], [ -69.895020, -4.291636 ], [ -69.444580, -1.548884 ], [ -69.422607, -1.120534 ], [ -69.587402, -0.549308 ], [ -70.026855, -0.175781 ], [ -70.026855, 0.000000 ], [ -70.015869, 0.549308 ], [ -69.455566, 0.714093 ], [ -69.257812, 0.604237 ], [ -69.235840, 0.878872 ], [ -66.489258, 0.878872 ], [ -66.335449, 0.725078 ], [ -65.555420, 0.790990 ], [ -65.500488, 0.878872 ], [ -50.108643, 0.878872 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.280518, -21.830907 ], [ -64.973145, -22.075459 ], [ -64.379883, -22.796439 ], [ -63.995361, -21.983801 ], [ -62.852783, -22.034730 ], [ -62.687988, -22.248429 ], [ -60.853271, -23.875792 ], [ -60.029297, -24.026397 ], [ -58.809814, -24.766785 ], [ -57.788086, -25.155229 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.117813 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.381523 ], [ -54.788818, -26.617997 ], [ -54.635010, -25.730633 ], [ -54.140625, -25.542441 ], [ -53.635254, -26.115986 ], [ -53.657227, -26.922070 ], [ -54.492188, -27.469287 ], [ -55.162354, -27.877928 ], [ -56.293945, -28.844674 ], [ -57.634277, -30.211608 ], [ -57.875977, -31.015279 ], [ -58.150635, -32.036020 ], [ -58.139648, -33.036298 ], [ -58.359375, -33.257063 ], [ -58.502197, -34.425036 ], [ -57.227783, -35.281501 ], [ -57.370605, -35.969115 ], [ -56.744385, -36.412442 ], [ -56.788330, -36.897194 ], [ -57.755127, -38.177751 ], [ -59.238281, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.822591 ], [ -62.127686, -39.419221 ], [ -62.336426, -40.170479 ], [ -62.149658, -40.672306 ], [ -62.666016, -40.979898 ], [ -62.753906, -41.021355 ], [ -63.775635, -41.162114 ], [ -64.270020, -40.979898 ], [ -64.742432, -40.797177 ], [ -64.995117, -40.979898 ], [ -65.126953, -41.062786 ], [ -65.039062, -41.640078 ], [ -71.806641, -41.640078 ], [ -71.905518, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.685791, -39.800096 ], [ -71.422119, -38.908133 ], [ -70.817871, -38.548165 ], [ -71.125488, -37.570705 ], [ -71.125488, -36.650793 ], [ -70.367432, -36.004673 ], [ -70.389404, -35.164828 ], [ -69.818115, -34.189086 ], [ -69.818115, -33.266250 ], [ -70.081787, -33.082337 ], [ -70.543213, -31.363018 ], [ -69.927979, -30.334954 ], [ -70.015869, -29.363027 ], [ -69.664307, -28.459033 ], [ -69.005127, -27.518015 ], [ -68.302002, -26.892679 ], [ -68.598633, -26.500073 ], [ -68.389893, -26.175159 ], [ -68.422852, -24.517139 ], [ -67.335205, -24.016362 ], [ -66.994629, -22.978624 ], [ -67.115479, -22.735657 ], [ -66.280518, -21.830907 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.971924, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.500350 ], [ -71.861572, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.575439, 40.979898 ], [ -73.718262, 40.938415 ], [ -73.333740, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.026367, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.355713, 40.630630 ], [ -73.992920, 40.630630 ], [ -73.959961, 40.755580 ], [ -74.267578, 40.480381 ], [ -73.970947, 40.430224 ], [ -74.179688, 39.715638 ], [ -74.915771, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.504041 ], [ -75.322266, 38.967951 ], [ -75.080566, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.388184, 38.022131 ], [ -75.948486, 37.221580 ], [ -76.036377, 37.265310 ], [ -75.728760, 37.944198 ], [ -76.234131, 38.324420 ], [ -76.354980, 39.155622 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.091337 ], [ -76.992188, 38.246809 ], [ -76.311035, 37.918201 ], [ -76.267090, 36.967449 ], [ -75.981445, 36.905980 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.559043 ], [ -76.365967, 34.813803 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.934245 ], [ -78.563232, 33.870416 ], [ -79.068604, 33.495598 ], [ -79.211426, 33.165145 ], [ -80.310059, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.342773, 31.447410 ], [ -81.496582, 30.732393 ], [ -81.320801, 30.040566 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.478349 ], [ -80.540771, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.214591 ], [ -80.134277, 25.819672 ], [ -80.386963, 25.214881 ], [ -80.683594, 25.085599 ], [ -81.177979, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.716309, 25.878994 ], [ -82.716064, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.555576 ], [ -82.935791, 29.104177 ], [ -83.715820, 29.945415 ], [ -84.100342, 30.097613 ], [ -85.111084, 29.640320 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.154627 ], [ -86.407471, 30.401307 ], [ -87.539062, 30.278044 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.439697, 29.496988 ], [ -89.219971, 29.295981 ], [ -89.417725, 29.161756 ], [ -89.780273, 29.315141 ], [ -90.000000, 29.200123 ], [ -90.164795, 29.123373 ], [ -90.878906, 29.152161 ], [ -90.878906, 41.640078 ], [ -69.971924, 41.640078 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.878906, 17.821916 ], [ -90.878906, 19.217803 ], [ -90.780029, 19.290406 ], [ -90.538330, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -90.000000, 21.115249 ], [ -89.604492, 21.268900 ], [ -88.549805, 21.493964 ], [ -87.659912, 21.463293 ], [ -87.055664, 21.545066 ], [ -86.813965, 21.340548 ], [ -86.846924, 20.858812 ], [ -87.385254, 20.262197 ], [ -87.626953, 19.652934 ], [ -87.440186, 19.476950 ], [ -87.846680, 18.260653 ], [ -88.099365, 18.521283 ], [ -88.494873, 18.490029 ], [ -88.857422, 17.884659 ], [ -89.033203, 18.010080 ], [ -89.154053, 17.957832 ], [ -89.154053, 17.811456 ], [ -90.000000, 17.821916 ], [ -90.878906, 17.821916 ] ] ], [ [ [ -90.878906, 16.794024 ], [ -90.714111, 16.688817 ], [ -90.604248, 16.478230 ], [ -90.439453, 16.415009 ], [ -90.472412, 16.077486 ], [ -90.878906, 16.077486 ], [ -90.878906, 16.794024 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.762695, 12.447305 ], [ -71.400146, 12.382928 ], [ -71.147461, 12.114523 ], [ -71.334229, 11.781325 ], [ -71.982422, 11.609193 ], [ -72.235107, 11.113727 ], [ -72.619629, 10.822515 ], [ -72.916260, 10.455402 ], [ -73.037109, 9.741542 ], [ -73.311768, 9.156333 ], [ -72.795410, 9.091249 ], [ -72.663574, 8.635334 ], [ -72.443848, 8.407168 ], [ -72.366943, 8.004837 ], [ -72.487793, 7.634776 ], [ -72.454834, 7.427837 ], [ -72.202148, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.675049, 7.089990 ], [ -70.103760, 6.970049 ], [ -69.389648, 6.107784 ], [ -68.994141, 6.217012 ], [ -68.269043, 6.162401 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.521973, 5.561315 ], [ -67.752686, 5.222247 ], [ -67.829590, 4.510714 ], [ -67.631836, 3.842332 ], [ -67.346191, 3.546318 ], [ -67.313232, 3.326986 ], [ -67.818604, 2.822344 ], [ -67.456055, 2.602864 ], [ -67.181396, 2.251617 ], [ -66.884766, 1.263325 ], [ -67.071533, 1.131518 ], [ -67.269287, 1.724593 ], [ -67.543945, 2.043024 ], [ -67.873535, 1.702630 ], [ -69.818115, 1.724593 ], [ -69.807129, 1.098565 ], [ -69.224854, 0.988720 ], [ -69.257812, 0.604237 ], [ -69.455566, 0.714093 ], [ -70.015869, 0.549308 ], [ -70.026855, 0.000000 ], [ -70.026855, -0.175781 ], [ -69.587402, -0.549308 ], [ -69.488525, -0.878872 ], [ -74.212646, -0.878872 ], [ -74.443359, -0.527336 ], [ -75.113525, -0.054932 ], [ -75.377197, -0.142822 ], [ -75.651855, 0.000000 ], [ -75.805664, 0.087891 ], [ -76.300049, 0.417477 ], [ -76.585693, 0.263671 ], [ -77.431641, 0.406491 ], [ -77.673340, 0.834931 ], [ -77.860107, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.768518 ], [ -78.673096, 2.273573 ], [ -78.431396, 2.635789 ], [ -77.937012, 2.701635 ], [ -77.519531, 3.326986 ], [ -77.135010, 3.853293 ], [ -77.497559, 4.094411 ], [ -77.310791, 4.674980 ], [ -77.541504, 5.583184 ], [ -77.321777, 5.845545 ], [ -77.486572, 6.697343 ], [ -77.882080, 7.231699 ], [ -77.761230, 7.710992 ], [ -77.431641, 7.645665 ], [ -77.244873, 7.939556 ], [ -77.475586, 8.526701 ], [ -77.354736, 8.678779 ], [ -76.838379, 8.646196 ], [ -76.091309, 9.340672 ], [ -75.684814, 9.449062 ], [ -75.673828, 9.774025 ], [ -75.487061, 10.628216 ], [ -74.915771, 11.092166 ], [ -74.278564, 11.102947 ], [ -74.201660, 11.318481 ], [ -73.421631, 11.232286 ], [ -72.630615, 11.738302 ], [ -72.246094, 11.964097 ], [ -71.762695, 12.447305 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Venezuela", "sov_a3": "VEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Venezuela", "adm0_a3": "VEN", "geou_dif": 0, "geounit": "Venezuela", "gu_a3": "VEN", "su_dif": 0, "subunit": "Venezuela", "su_a3": "VEN", "brk_diff": 0, "name": "Venezuela", "name_long": "Venezuela", "brk_a3": "VEN", "brk_name": "Venezuela", "abbrev": "Ven.", "postal": "VE", "formal_en": "Bolivarian Republic of Venezuela", "formal_fr": "República Bolivariana de Venezuela", "name_sort": "Venezuela, RB", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 26814843, "gdp_md_est": 357400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "VE", "iso_a3": "VEN", "iso_n3": "862", "un_a3": "862", "wb_a2": "VE", "wb_a3": "VEN", "woe_id": -99, "adm0_a3_is": "VEN", "adm0_a3_us": "VEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.949951, 12.168226 ], [ -69.587402, 11.469258 ], [ -68.884277, 11.447723 ], [ -68.236084, 10.887254 ], [ -68.203125, 10.563422 ], [ -67.302246, 10.552622 ], [ -66.236572, 10.649811 ], [ -65.665283, 10.206813 ], [ -64.896240, 10.087854 ], [ -64.335938, 10.390572 ], [ -64.324951, 10.649811 ], [ -63.083496, 10.703792 ], [ -61.885986, 10.725381 ], [ -62.731934, 10.422988 ], [ -62.391357, 9.958030 ], [ -61.589355, 9.882275 ], [ -60.831299, 9.384032 ], [ -60.677490, 8.581021 ], [ -60.150146, 8.613610 ], [ -59.765625, 8.374562 ], [ -60.556641, 7.787194 ], [ -60.644531, 7.416942 ], [ -60.303955, 7.046379 ], [ -60.545654, 6.860985 ], [ -61.160889, 6.697343 ], [ -61.149902, 6.238855 ], [ -61.413574, 5.965754 ], [ -60.743408, 5.200365 ], [ -60.611572, 4.926779 ], [ -60.974121, 4.543570 ], [ -62.094727, 4.171115 ], [ -62.808838, 4.017699 ], [ -63.094482, 3.776559 ], [ -63.896484, 4.028659 ], [ -64.632568, 4.149201 ], [ -64.819336, 4.061536 ], [ -64.368896, 3.798484 ], [ -64.412842, 3.129546 ], [ -64.270020, 2.504085 ], [ -63.424072, 2.416276 ], [ -63.369141, 2.207705 ], [ -64.083252, 1.922247 ], [ -64.204102, 1.493971 ], [ -64.621582, 1.329226 ], [ -65.357666, 1.098565 ], [ -65.555420, 0.790990 ], [ -66.335449, 0.725078 ], [ -66.884766, 1.263325 ], [ -67.181396, 2.251617 ], [ -67.456055, 2.602864 ], [ -67.818604, 2.822344 ], [ -67.313232, 3.326986 ], [ -67.346191, 3.546318 ], [ -67.631836, 3.842332 ], [ -67.829590, 4.510714 ], [ -67.752686, 5.222247 ], [ -67.521973, 5.561315 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -68.269043, 6.162401 ], [ -68.994141, 6.217012 ], [ -69.389648, 6.107784 ], [ -70.103760, 6.970049 ], [ -70.675049, 7.089990 ], [ -71.960449, 6.991859 ], [ -72.202148, 7.340675 ], [ -72.454834, 7.427837 ], [ -72.487793, 7.634776 ], [ -72.366943, 8.004837 ], [ -72.443848, 8.407168 ], [ -72.663574, 8.635334 ], [ -72.795410, 9.091249 ], [ -73.311768, 9.156333 ], [ -73.037109, 9.741542 ], [ -72.916260, 10.455402 ], [ -72.619629, 10.822515 ], [ -72.235107, 11.113727 ], [ -71.982422, 11.609193 ], [ -71.334229, 11.781325 ], [ -71.367188, 11.544616 ], [ -71.949463, 11.426187 ], [ -71.630859, 10.973550 ], [ -71.641846, 10.455402 ], [ -72.081299, 9.871452 ], [ -71.696777, 9.080400 ], [ -71.268311, 9.145486 ], [ -71.048584, 9.860628 ], [ -71.356201, 10.217625 ], [ -71.411133, 10.973550 ], [ -70.158691, 11.383109 ], [ -70.301514, 11.856599 ], [ -69.949951, 12.168226 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.964844, 5.758105 ], [ -52.888184, 5.419148 ], [ -51.833496, 4.576425 ], [ -51.668701, 4.160158 ], [ -52.250977, 3.250209 ], [ -52.558594, 2.515061 ], [ -52.943115, 2.130856 ], [ -53.426514, 2.054003 ], [ -53.558350, 2.339438 ], [ -53.789062, 2.383346 ], [ -54.096680, 2.108899 ], [ -54.525146, 2.317483 ], [ -54.272461, 2.745531 ], [ -54.184570, 3.195364 ], [ -54.019775, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.481201, 4.904887 ], [ -53.964844, 5.758105 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Peru", "sov_a3": "PER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Peru", "adm0_a3": "PER", "geou_dif": 0, "geounit": "Peru", "gu_a3": "PER", "su_dif": 0, "subunit": "Peru", "su_a3": "PER", "brk_diff": 0, "name": "Peru", "name_long": "Peru", "brk_a3": "PER", "brk_name": "Peru", "abbrev": "Peru", "postal": "PE", "formal_en": "Republic of Peru", "name_sort": "Peru", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 11, "pop_est": 29546963, "gdp_md_est": 247300, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PE", "iso_a3": "PER", "iso_n3": "604", "un_a3": "604", "wb_a2": "PE", "wb_a3": "PER", "woe_id": -99, "adm0_a3_is": "PER", "adm0_a3_us": "PER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.113525, -0.054932 ], [ -74.443359, -0.527336 ], [ -74.212646, -0.878872 ], [ -75.245361, -0.878872 ], [ -75.377197, -0.142822 ], [ -75.113525, -0.054932 ] ] ] } } +, +{ "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": [ [ [ [ -60.216064, 5.255068 ], [ -59.985352, 5.014339 ], [ -60.117188, 4.576425 ], [ -59.776611, 4.434044 ], [ -59.545898, 3.962901 ], [ -59.820557, 3.612107 ], [ -59.985352, 2.756504 ], [ -59.721680, 2.251617 ], [ -59.655762, 1.790480 ], [ -59.040527, 1.318243 ], [ -58.546143, 1.274309 ], [ -58.436279, 1.472006 ], [ -58.117676, 1.515936 ], [ -57.667236, 1.691649 ], [ -57.337646, 1.955187 ], [ -56.788330, 1.867345 ], [ -56.546631, 1.900286 ], [ -55.997314, 1.823423 ], [ -55.909424, 2.032045 ], [ -56.074219, 2.229662 ], [ -55.975342, 2.515061 ], [ -55.579834, 2.427252 ], [ -55.107422, 2.526037 ], [ -54.525146, 2.317483 ], [ -54.096680, 2.108899 ], [ -53.789062, 2.383346 ], [ -53.558350, 2.339438 ], [ -53.426514, 2.054003 ], [ -52.943115, 2.130856 ], [ -52.558594, 2.515061 ], [ -52.250977, 3.250209 ], [ -51.668701, 4.160158 ], [ -51.328125, 4.203986 ], [ -51.075439, 3.655964 ], [ -50.515137, 1.911267 ], [ -49.976807, 1.746556 ], [ -49.954834, 1.054628 ], [ -50.701904, 0.230712 ], [ -50.394287, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.603516, -0.878872 ], [ -69.488525, -0.878872 ], [ -69.587402, -0.549308 ], [ -70.026855, -0.175781 ], [ -70.026855, 0.000000 ], [ -70.015869, 0.549308 ], [ -69.455566, 0.714093 ], [ -69.257812, 0.604237 ], [ -69.224854, 0.988720 ], [ -69.807129, 1.098565 ], [ -69.818115, 1.724593 ], [ -67.873535, 1.702630 ], [ -67.543945, 2.043024 ], [ -67.269287, 1.724593 ], [ -67.071533, 1.131518 ], [ -66.884766, 1.263325 ], [ -66.335449, 0.725078 ], [ -65.555420, 0.790990 ], [ -65.357666, 1.098565 ], [ -64.621582, 1.329226 ], [ -64.204102, 1.493971 ], [ -64.083252, 1.922247 ], [ -63.369141, 2.207705 ], [ -63.424072, 2.416276 ], [ -64.270020, 2.504085 ], [ -64.412842, 3.129546 ], [ -64.368896, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.632568, 4.149201 ], [ -63.896484, 4.028659 ], [ -63.094482, 3.776559 ], [ -62.808838, 4.017699 ], [ -62.094727, 4.171115 ], [ -60.974121, 4.543570 ], [ -60.611572, 4.926779 ], [ -60.743408, 5.200365 ], [ -60.216064, 5.255068 ] ] ], [ [ [ -46.790771, -0.878872 ], [ -48.175049, -0.878872 ], [ -47.834473, -0.571280 ], [ -46.790771, -0.878872 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -90.878906, 57.284981 ], [ -90.000000, 57.076575 ], [ -89.044189, 56.854979 ], [ -88.044434, 56.474628 ], [ -87.330322, 56.004524 ], [ -86.077881, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.153766 ], [ -82.441406, 54.284469 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.213766 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.134521, 54.143132 ], [ -79.837646, 54.673831 ], [ -78.233643, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.629639, 57.207710 ], [ -77.310791, 58.054632 ], [ -78.519287, 58.808052 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.324106 ], [ -77.420654, 62.552857 ], [ -75.706787, 62.283256 ], [ -74.674072, 62.186014 ], [ -73.850098, 62.446324 ], [ -72.916260, 62.109022 ], [ -71.685791, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.598389, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.402588, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.578857, 55.210222 ], [ -57.985840, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.651150 ], [ -55.766602, 53.271783 ], [ -55.689697, 52.146973 ], [ -56.414795, 51.774638 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.069017 ], [ -60.040283, 50.247205 ], [ -61.732178, 50.085344 ], [ -63.863525, 50.296358 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.518076 ], [ -68.521729, 49.073866 ], [ -69.960938, 47.746711 ], [ -71.114502, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.305121 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.171143, 48.748945 ], [ -65.115967, 48.078079 ], [ -64.808350, 46.995241 ], [ -64.478760, 46.240652 ], [ -63.182373, 45.744527 ], [ -61.523438, 45.890008 ], [ -60.523682, 47.010226 ], [ -60.457764, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.676466 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.170654, 44.465151 ], [ -64.434814, 45.298075 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.143305 ], [ -67.796631, 45.706179 ], [ -67.796631, 47.070122 ], [ -68.236084, 47.361153 ], [ -68.906250, 47.189712 ], [ -69.246826, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.092529, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.508789, 44.024422 ], [ -76.827393, 43.636075 ], [ -78.728027, 43.628123 ], [ -79.178467, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.867912 ], [ -80.255127, 42.366662 ], [ -81.287842, 42.212245 ], [ -82.441406, 41.681118 ], [ -82.694092, 41.681118 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.144775, 43.572432 ], [ -82.551270, 45.352145 ], [ -83.594971, 45.821143 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.100342, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.415139 ], [ -84.605713, 46.445427 ], [ -84.550781, 46.543750 ], [ -84.781494, 46.641894 ], [ -84.880371, 46.905246 ], [ -86.462402, 47.554287 ], [ -88.385010, 48.305121 ], [ -89.274902, 48.026672 ], [ -89.604492, 48.011975 ], [ -90.000000, 48.100095 ], [ -90.834961, 48.275882 ], [ -90.878906, 48.268569 ], [ -90.878906, 57.284981 ] ] ], [ [ [ -55.876465, 51.638476 ], [ -55.415039, 51.590723 ], [ -55.601807, 51.323747 ], [ -56.140137, 50.687758 ], [ -56.799316, 49.816721 ], [ -56.151123, 50.155786 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.589349 ], [ -54.942627, 49.317961 ], [ -54.481201, 49.560852 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.523881 ], [ -53.096924, 48.690960 ], [ -52.965088, 48.158757 ], [ -52.657471, 47.539455 ], [ -53.074951, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.250488, 47.754098 ], [ -55.404053, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.260986, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.271240, 47.606163 ], [ -59.425049, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.523881 ], [ -58.392334, 49.131408 ], [ -57.359619, 50.722547 ], [ -56.744385, 51.289406 ], [ -55.876465, 51.638476 ] ] ], [ [ [ -64.017334, 47.040182 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.422713 ], [ -62.017822, 46.445427 ], [ -62.512207, 46.035109 ], [ -62.874756, 45.974060 ], [ -64.149170, 46.399988 ], [ -64.401855, 46.732331 ], [ -64.017334, 47.040182 ] ] ], [ [ [ -64.182129, 49.958288 ], [ -62.863770, 49.710273 ], [ -61.842041, 49.289306 ], [ -61.809082, 49.109838 ], [ -62.303467, 49.088258 ], [ -63.599854, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.182129, 49.958288 ] ] ], [ [ [ -61.853027, 66.861082 ], [ -62.017822, 66.513260 ], [ -62.171631, 66.160511 ], [ -63.918457, 65.002582 ], [ -65.148926, 65.426299 ], [ -66.730957, 66.390361 ], [ -68.016357, 66.266856 ], [ -68.148193, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.676514, 63.396442 ], [ -65.017090, 62.679186 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.748491 ], [ -67.379150, 62.885205 ], [ -66.335449, 62.283256 ], [ -66.170654, 61.933782 ], [ -68.884277, 62.334310 ], [ -71.026611, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.680377 ], [ -74.838867, 64.680318 ], [ -74.827881, 64.392190 ], [ -77.717285, 64.230269 ], [ -78.563232, 64.576754 ], [ -77.904053, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.300537, 65.811781 ], [ -73.948975, 66.311035 ], [ -73.685303, 66.513260 ], [ -73.223877, 66.861082 ], [ -61.853027, 66.861082 ] ] ], [ [ [ -79.936523, 62.390369 ], [ -79.530029, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.637726 ], [ -80.101318, 61.721118 ], [ -80.364990, 62.021528 ], [ -80.321045, 62.088458 ], [ -79.936523, 62.390369 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ], [ -81.903076, 62.714462 ], [ -83.078613, 62.160372 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.456487 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.979248, 65.219894 ], [ -84.473877, 65.375994 ], [ -83.891602, 65.113772 ], [ -82.792969, 64.769443 ], [ -81.650391, 64.458587 ], [ -81.562500, 63.980781 ], [ -80.826416, 64.057785 ], [ -80.112305, 63.729047 ], [ -80.991211, 63.416115 ], [ -82.551270, 63.656011 ], [ -83.111572, 64.105805 ], [ -84.111328, 63.573010 ], [ -85.528564, 63.054959 ], [ -85.869141, 63.641382 ], [ -87.231445, 63.543658 ], [ -86.363525, 64.038554 ], [ -86.231689, 64.825581 ], [ -85.891113, 65.739656 ] ] ], [ [ [ -90.878906, 62.950227 ], [ -90.878906, 66.861082 ], [ -82.100830, 66.861082 ], [ -83.067627, 66.513260 ], [ -83.353271, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.561377 ], [ -85.803223, 66.513260 ], [ -86.077881, 66.058175 ], [ -87.033691, 65.215289 ], [ -87.330322, 64.778807 ], [ -88.483887, 64.101007 ], [ -89.923096, 64.033744 ], [ -90.000000, 63.990418 ], [ -90.714111, 63.612100 ], [ -90.780029, 62.960218 ], [ -90.878906, 62.950227 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.385010, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.905246 ], [ -84.781494, 46.641894 ], [ -84.550781, 46.543750 ], [ -84.605713, 46.445427 ], [ -84.342041, 46.415139 ], [ -84.144287, 46.513516 ], [ -84.100342, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.821143 ], [ -82.551270, 45.352145 ], [ -82.144775, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.681118 ], [ -82.441406, 41.681118 ], [ -81.287842, 42.212245 ], [ -80.255127, 42.366662 ], [ -78.947754, 42.867912 ], [ -78.925781, 42.972502 ], [ -79.013672, 43.277205 ], [ -79.178467, 43.468868 ], [ -78.728027, 43.628123 ], [ -76.827393, 43.636075 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.411133, 45.259422 ], [ -71.092529, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.694667 ], [ -69.246826, 47.450380 ], [ -68.906250, 47.189712 ], [ -68.236084, 47.361153 ], [ -67.796631, 47.070122 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.143305 ], [ -66.972656, 44.816916 ], [ -68.038330, 44.331707 ], [ -69.060059, 43.984910 ], [ -70.125732, 43.691708 ], [ -70.653076, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.342305 ], [ -70.499268, 41.812267 ], [ -70.081787, 41.787697 ], [ -70.191650, 42.147114 ], [ -69.895020, 41.926803 ], [ -69.971924, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.500350 ], [ -71.861572, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.575439, 40.979898 ], [ -73.718262, 40.938415 ], [ -73.333740, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.026367, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.355713, 40.630630 ], [ -73.992920, 40.630630 ], [ -73.959961, 40.755580 ], [ -74.267578, 40.480381 ], [ -73.970947, 40.430224 ], [ -74.003906, 40.313043 ], [ -90.878906, 40.313043 ], [ -90.878906, 48.268569 ], [ -90.834961, 48.275882 ], [ -90.000000, 48.100095 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.026672 ], [ -88.385010, 48.305121 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.121094, 66.861082 ], [ -44.121094, 60.070322 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.157910 ], [ -46.274414, 60.855613 ], [ -48.273926, 60.860963 ], [ -49.240723, 61.407236 ], [ -49.910889, 62.385277 ], [ -51.635742, 63.631625 ], [ -52.141113, 64.282760 ], [ -52.283936, 65.178418 ], [ -53.668213, 66.102719 ], [ -53.470459, 66.513260 ], [ -53.305664, 66.839487 ], [ -53.349609, 66.861082 ], [ -44.121094, 66.861082 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -85.528564, 69.885010 ], [ -84.111328, 69.805516 ], [ -82.628174, 69.660905 ], [ -81.287842, 69.162558 ], [ -81.221924, 68.668547 ], [ -81.968994, 68.134760 ], [ -81.265869, 67.600849 ], [ -81.386719, 67.114476 ], [ -83.067627, 66.513260 ], [ -83.353271, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.561377 ], [ -85.803223, 66.513260 ], [ -86.011963, 66.160511 ], [ -90.878906, 66.160511 ], [ -90.878906, 69.534518 ], [ -90.549316, 69.499918 ], [ -90.560303, 68.475895 ], [ -90.000000, 68.804014 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.319092, 67.875541 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.925140 ], [ -85.583496, 68.788119 ], [ -85.528564, 69.885010 ] ] ], [ [ [ -85.836182, 73.806447 ], [ -86.572266, 73.159991 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.606689, 72.718432 ], [ -80.749512, 72.063764 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.245567 ], [ -74.234619, 71.770505 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.559692 ], [ -71.202393, 70.920233 ], [ -68.796387, 70.528560 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.189897 ], [ -68.807373, 68.720441 ], [ -66.456299, 68.069202 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.865399 ], [ -62.017822, 66.513260 ], [ -62.171631, 66.160511 ], [ -66.346436, 66.160511 ], [ -66.730957, 66.390361 ], [ -68.016357, 66.266856 ], [ -68.038330, 66.160511 ], [ -74.058838, 66.160511 ], [ -73.948975, 66.311035 ], [ -73.685303, 66.513260 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.730272 ], [ -73.311768, 68.073305 ], [ -74.849854, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.150831 ], [ -77.288818, 69.771356 ], [ -78.178711, 69.828260 ], [ -78.958740, 70.170201 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.066650, 70.263162 ], [ -88.692627, 70.411031 ], [ -89.516602, 70.765206 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.587473 ], [ -90.208740, 72.235514 ], [ -90.000000, 72.478584 ], [ -89.439697, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.836182, 73.806447 ] ] ], [ [ [ -75.904541, 68.289716 ], [ -75.124512, 68.011685 ], [ -75.113525, 67.584098 ], [ -75.223389, 67.445443 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.244873, 67.588287 ], [ -76.816406, 68.151121 ], [ -75.904541, 68.289716 ] ] ], [ [ [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ], [ -76.343994, 73.105800 ], [ -76.256104, 72.829052 ], [ -77.321777, 72.858219 ], [ -78.398438, 72.877637 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.760425 ] ] ], [ [ [ -90.878906, 73.904204 ], [ -90.516357, 73.858452 ], [ -90.878906, 73.643266 ], [ -90.878906, 73.904204 ] ] ], [ [ [ -90.878906, 76.058508 ], [ -90.000000, 75.885412 ], [ -89.824219, 75.847855 ], [ -89.197998, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.385498, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.760010, 75.785942 ], [ -81.134033, 75.715633 ], [ -80.068359, 75.339502 ], [ -79.837646, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -90.000000, 74.546258 ], [ -90.878906, 74.654203 ], [ -90.878906, 76.058508 ] ] ], [ [ [ -76.574707, 79.335219 ], [ -76.915283, 79.325049 ], [ -75.531006, 79.198134 ], [ -75.640869, 79.171335 ], [ -76.223145, 79.019620 ], [ -75.399170, 78.527758 ], [ -76.343994, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.179748 ], [ -83.177490, 76.455203 ], [ -86.121826, 76.299953 ], [ -87.604980, 76.421713 ], [ -89.494629, 76.473203 ], [ -89.626465, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.901861 ], [ -87.659912, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.181838 ], [ -87.967529, 78.373790 ], [ -87.154541, 78.759229 ], [ -85.385742, 78.998674 ], [ -85.242920, 79.171335 ], [ -85.111084, 79.335219 ], [ -76.574707, 79.335219 ] ] ], [ [ [ -85.825195, 79.335219 ], [ -86.583252, 79.171335 ], [ -87.198486, 79.040526 ], [ -89.044189, 78.289356 ], [ -90.000000, 78.249150 ], [ -90.812988, 78.215541 ], [ -90.878906, 78.220028 ], [ -90.878906, 79.335219 ], [ -85.825195, 79.335219 ] ] ], [ [ [ -90.878906, 76.226907 ], [ -90.878906, 76.504005 ], [ -90.747070, 76.450056 ], [ -90.878906, 76.226907 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.121094, 79.335219 ], [ -44.121094, 66.160511 ], [ -53.635254, 66.160511 ], [ -53.470459, 66.513260 ], [ -53.305664, 66.839487 ], [ -53.975830, 67.191259 ], [ -52.987061, 68.358699 ], [ -51.481934, 68.732399 ], [ -51.086426, 69.150831 ], [ -50.877686, 69.930300 ], [ -52.020264, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.287257 ], [ -54.689941, 69.611206 ], [ -54.755859, 70.292822 ], [ -54.360352, 70.823031 ], [ -53.437500, 70.837461 ], [ -51.394043, 70.572458 ], [ -53.118896, 71.205460 ], [ -54.008789, 71.549264 ], [ -55.008545, 71.409675 ], [ -55.843506, 71.656749 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.961534 ], [ -56.129150, 73.652545 ], [ -57.326660, 74.712244 ], [ -58.601074, 75.101283 ], [ -58.590088, 75.519151 ], [ -61.270752, 76.103435 ], [ -63.402100, 76.177123 ], [ -66.071777, 76.135063 ], [ -68.510742, 76.063801 ], [ -69.675293, 76.380383 ], [ -71.411133, 77.009817 ], [ -68.785400, 77.324579 ], [ -66.774902, 77.377506 ], [ -71.048584, 77.636542 ], [ -73.300781, 78.046071 ], [ -73.168945, 78.433418 ], [ -69.378662, 78.914496 ], [ -67.434082, 79.171335 ], [ -66.170654, 79.335219 ], [ -44.121094, 79.335219 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -90.878906, 80.691566 ], [ -90.000000, 80.580741 ], [ -89.450684, 80.510360 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.661584 ], [ -85.825195, 79.337252 ], [ -86.583252, 79.171335 ], [ -87.198486, 79.040526 ], [ -87.275391, 79.004962 ], [ -90.878906, 79.004962 ], [ -90.878906, 80.691566 ] ] ], [ [ [ -72.839355, 83.233838 ], [ -68.510742, 83.107117 ], [ -65.830078, 83.028886 ], [ -63.687744, 82.901061 ], [ -61.853027, 82.629924 ], [ -61.896973, 82.363104 ], [ -64.335938, 81.927816 ], [ -66.763916, 81.726350 ], [ -67.664795, 81.502052 ], [ -65.489502, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.635922 ], [ -73.883057, 79.430356 ], [ -76.915283, 79.325049 ], [ -75.531006, 79.198134 ], [ -75.640869, 79.171335 ], [ -76.223145, 79.019620 ], [ -76.201172, 79.004962 ], [ -85.374756, 79.004962 ], [ -85.242920, 79.171335 ], [ -85.100098, 79.347411 ], [ -86.517334, 79.738196 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.419189, 80.101581 ], [ -81.859131, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.604980, 80.517603 ], [ -89.373779, 80.857129 ], [ -90.000000, 81.166059 ], [ -90.208740, 81.260042 ], [ -90.878906, 81.431957 ], [ -90.878906, 81.986228 ], [ -90.109863, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.934326, 82.118384 ], [ -86.978760, 82.280906 ], [ -85.506592, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.430420, 82.860213 ], [ -81.101074, 83.020881 ], [ -79.310303, 83.130809 ], [ -76.256104, 83.172729 ], [ -75.728760, 83.064796 ], [ -72.839355, 83.233838 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.121094, 83.103160 ], [ -44.121094, 79.004962 ], [ -68.697510, 79.004962 ], [ -67.434082, 79.171335 ], [ -65.720215, 79.396042 ], [ -65.324707, 79.759702 ], [ -68.027344, 80.118564 ], [ -67.159424, 80.517603 ], [ -63.698730, 81.214853 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.292969, 82.035091 ], [ -57.216797, 82.191861 ], [ -54.140625, 82.200811 ], [ -53.052979, 81.889156 ], [ -50.394287, 82.440097 ], [ -48.010254, 82.065480 ], [ -46.604004, 81.986228 ], [ -45.000000, 81.737409 ], [ -44.527588, 81.661279 ], [ -45.000000, 81.772072 ], [ -46.911621, 82.200811 ], [ -46.768799, 82.628514 ], [ -45.000000, 82.948424 ], [ -44.121094, 83.103160 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -45.878906, -1.186439 ], [ -44.912109, -1.548884 ], [ -44.417725, -2.130856 ], [ -44.582520, -2.690661 ], [ -43.428955, -2.372369 ], [ -41.473389, -2.910125 ], [ -39.979248, -2.866235 ], [ -38.507080, -3.699819 ], [ -37.232666, -4.817312 ], [ -36.463623, -5.101887 ], [ -35.606689, -5.145657 ], [ -35.244141, -5.462896 ], [ -34.738770, -7.340675 ], [ -35.134277, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.056885, -11.038255 ], [ -37.694092, -12.168226 ], [ -38.430176, -13.036669 ], [ -38.682861, -13.047372 ], [ -38.957520, -13.784737 ], [ -38.891602, -15.665354 ], [ -39.276123, -17.863747 ], [ -39.583740, -18.260653 ], [ -39.770508, -19.590844 ], [ -40.781250, -20.899871 ], [ -40.946045, -21.932855 ], [ -41.759033, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.958393 ], [ -44.648438, -23.342256 ], [ -45.000000, -23.574057 ], [ -45.362549, -23.795398 ], [ -45.878906, -23.926013 ], [ -45.878906, -1.186439 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 41.640078 ], [ 0.878906, 41.029643 ], [ 0.802002, 41.021355 ], [ 0.714111, 40.680638 ], [ 0.098877, 40.128491 ], [ 0.000000, 39.901309 ], [ -0.285645, 39.317300 ], [ 0.000000, 38.908133 ], [ 0.109863, 38.745515 ], [ 0.000000, 38.659778 ], [ -0.472412, 38.298559 ], [ -0.692139, 37.649034 ], [ -1.439209, 37.448697 ], [ -2.153320, 36.677231 ], [ -3.416748, 36.659606 ], [ -4.372559, 36.686041 ], [ -4.998779, 36.332828 ], [ -5.383301, 35.951330 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.525879, 36.949892 ], [ -7.459717, 37.099003 ], [ -7.547607, 37.431251 ], [ -7.174072, 37.805444 ], [ -7.031250, 38.082690 ], [ -7.382812, 38.376115 ], [ -7.108154, 39.036253 ], [ -7.503662, 39.631077 ], [ -7.075195, 39.715638 ], [ -7.031250, 40.187267 ], [ -6.866455, 40.338170 ], [ -6.855469, 40.979898 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.385052 ], [ -6.536865, 41.640078 ], [ 0.878906, 41.640078 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.932617, 35.764343 ], [ -5.196533, 35.755428 ], [ -4.592285, 35.335293 ], [ -3.647461, 35.406961 ], [ -2.614746, 35.182788 ], [ -2.175293, 35.173808 ], [ -1.801758, 34.533712 ], [ -1.735840, 33.925130 ], [ -1.395264, 32.870360 ], [ -1.131592, 32.657876 ], [ -1.318359, 32.268555 ], [ -2.625732, 32.101190 ], [ -3.076172, 31.728167 ], [ -3.658447, 31.644029 ], [ -3.691406, 30.902225 ], [ -4.866943, 30.505484 ], [ -5.251465, 30.002517 ], [ -6.064453, 29.735762 ], [ -7.064209, 29.583012 ], [ -8.679199, 28.844674 ], [ -8.668213, 27.664069 ], [ -8.822021, 27.664069 ], [ -8.800049, 27.127591 ], [ -9.415283, 27.098254 ], [ -9.744873, 26.863281 ], [ -10.195312, 26.863281 ], [ -10.557861, 27.000408 ], [ -11.392822, 26.892679 ], [ -11.722412, 26.106121 ], [ -12.041016, 26.037042 ], [ -12.502441, 24.776760 ], [ -13.897705, 23.694835 ], [ -14.227295, 22.319589 ], [ -14.633789, 21.861499 ], [ -14.754639, 21.504186 ], [ -17.028809, 21.422390 ], [ -16.973877, 21.892084 ], [ -16.589355, 22.167058 ], [ -16.270752, 22.684984 ], [ -16.336670, 23.019076 ], [ -15.985107, 23.725012 ], [ -15.435791, 24.367114 ], [ -15.095215, 24.527135 ], [ -14.831543, 25.105497 ], [ -14.809570, 25.641526 ], [ -14.447021, 26.263862 ], [ -13.776855, 26.627818 ], [ -13.150635, 27.644606 ], [ -12.623291, 28.042895 ], [ -11.689453, 28.149503 ], [ -10.909424, 28.835050 ], [ -10.404053, 29.104177 ], [ -9.569092, 29.935895 ], [ -9.821777, 31.184609 ], [ -9.437256, 32.045333 ], [ -9.305420, 32.565333 ], [ -8.668213, 33.247876 ], [ -7.657471, 33.706063 ], [ -6.921387, 34.116352 ], [ -6.251221, 35.146863 ], [ -5.932617, 35.764343 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.690186, 27.401032 ], [ -4.932861, 24.976099 ], [ -6.459961, 24.966140 ], [ -5.493164, 16.330683 ], [ -5.317383, 16.204125 ], [ -5.548096, 15.506619 ], [ -9.558105, 15.496032 ], [ -9.700928, 15.273587 ], [ -10.096436, 15.337167 ], [ -10.656738, 15.135764 ], [ -11.359863, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.843262, 14.806749 ], [ -12.172852, 14.626109 ], [ -12.832031, 15.305380 ], [ -13.436279, 16.045813 ], [ -14.106445, 16.309596 ], [ -14.578857, 16.604610 ], [ -15.139160, 16.594081 ], [ -15.633545, 16.372851 ], [ -16.127930, 16.457159 ], [ -16.468506, 16.140816 ], [ -16.556396, 16.678293 ], [ -16.270752, 17.172283 ], [ -16.149902, 18.114529 ], [ -16.259766, 19.103648 ], [ -16.380615, 19.601194 ], [ -16.281738, 20.097206 ], [ -16.545410, 20.571082 ], [ -17.072754, 21.002471 ], [ -16.853027, 21.340548 ], [ -12.930908, 21.330315 ], [ -13.128662, 22.776182 ], [ -12.875977, 23.291811 ], [ -11.942139, 23.382598 ], [ -11.975098, 25.938287 ], [ -8.690186, 25.888879 ], [ -8.690186, 27.401032 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.932861, 24.976099 ], [ 0.000000, 21.800308 ], [ 0.878906, 21.227942 ], [ 0.878906, 14.966013 ], [ 0.373535, 14.934170 ], [ -0.274658, 14.934170 ], [ -0.516357, 15.125159 ], [ -1.076660, 14.976627 ], [ -2.010498, 14.562318 ], [ -2.197266, 14.253735 ], [ -2.977295, 13.806075 ], [ -3.109131, 13.549881 ], [ -3.526611, 13.346865 ], [ -4.010010, 13.475106 ], [ -4.284668, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.229492, 11.716788 ], [ -5.207520, 11.383109 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.379765 ], [ -5.822754, 10.228437 ], [ -6.053467, 10.098670 ], [ -6.207275, 10.531020 ], [ -6.503906, 10.412183 ], [ -6.668701, 10.433793 ], [ -6.855469, 10.141932 ], [ -7.624512, 10.152746 ], [ -7.910156, 10.304110 ], [ -8.031006, 10.206813 ], [ -8.338623, 10.498614 ], [ -8.283691, 10.800933 ], [ -8.415527, 10.919618 ], [ -8.624268, 10.811724 ], [ -8.591309, 11.146066 ], [ -8.382568, 11.393879 ], [ -8.789062, 11.813588 ], [ -8.909912, 12.093039 ], [ -9.129639, 12.318536 ], [ -9.338379, 12.340002 ], [ -9.569092, 12.200442 ], [ -9.898682, 12.060809 ], [ -10.173340, 11.845847 ], [ -10.601807, 11.931852 ], [ -10.876465, 12.178965 ], [ -11.041260, 12.221918 ], [ -11.304932, 12.082296 ], [ -11.458740, 12.082296 ], [ -11.524658, 12.447305 ], [ -11.469727, 12.758232 ], [ -11.557617, 13.143678 ], [ -11.931152, 13.432367 ], [ -12.128906, 13.998037 ], [ -12.172852, 14.626109 ], [ -11.843262, 14.806749 ], [ -11.667480, 15.390136 ], [ -11.359863, 15.411319 ], [ -10.656738, 15.135764 ], [ -10.096436, 15.337167 ], [ -9.700928, 15.273587 ], [ -9.558105, 15.496032 ], [ -5.548096, 15.506619 ], [ -5.317383, 16.204125 ], [ -5.493164, 16.330683 ], [ -6.459961, 24.966140 ], [ -4.932861, 24.976099 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 36.421282 ], [ 0.878906, 21.227942 ], [ 0.000000, 21.800308 ], [ -4.932861, 24.976099 ], [ -8.690186, 27.401032 ], [ -8.668213, 27.595935 ], [ -8.679199, 28.844674 ], [ -7.064209, 29.583012 ], [ -6.064453, 29.735762 ], [ -5.251465, 30.002517 ], [ -4.866943, 30.505484 ], [ -3.691406, 30.902225 ], [ -3.658447, 31.644029 ], [ -3.076172, 31.728167 ], [ -2.625732, 32.101190 ], [ -1.318359, 32.268555 ], [ -1.131592, 32.657876 ], [ -1.395264, 32.870360 ], [ -1.735840, 33.925130 ], [ -1.801758, 34.533712 ], [ -2.175293, 35.173808 ], [ -1.219482, 35.719758 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.494385, 36.306272 ], [ 0.878906, 36.421282 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 14.966013 ], [ 0.878906, 13.475106 ], [ 0.428467, 13.998037 ], [ 0.285645, 14.445319 ], [ 0.373535, 14.934170 ], [ 0.878906, 14.966013 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.969727, 66.861082 ], [ -34.211426, 66.683436 ], [ -34.727783, 66.513260 ], [ -36.353760, 65.982270 ], [ -37.045898, 65.941993 ], [ -38.375244, 65.694476 ], [ -39.814453, 65.462824 ], [ -40.671387, 64.844268 ], [ -40.693359, 64.139369 ], [ -41.198730, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.385010, 60.103195 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.157910 ], [ -45.878906, 60.646262 ], [ -45.878906, 66.861082 ], [ -33.969727, 66.861082 ] ] ] } } +, +{ "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": [ [ [ [ -3.010254, 58.636935 ], [ -4.075928, 57.557102 ], [ -3.065186, 57.692406 ], [ -1.966553, 57.686533 ], [ -2.230225, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.120605, 54.629338 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.677188 ], [ 0.175781, 53.330873 ], [ 0.461426, 52.935397 ], [ 0.878906, 52.869130 ], [ 0.878906, 50.958427 ], [ 0.549316, 50.771208 ], [ 0.000000, 50.771208 ], [ -0.791016, 50.778155 ], [ -2.493896, 50.506440 ], [ -2.966309, 50.701677 ], [ -3.625488, 50.233152 ], [ -4.548340, 50.345460 ], [ -5.251465, 49.965356 ], [ -5.778809, 50.162824 ], [ -4.317627, 51.213766 ], [ -3.416748, 51.426614 ], [ -4.987793, 51.597548 ], [ -5.273438, 51.991646 ], [ -4.229736, 52.301761 ], [ -4.779053, 52.842595 ], [ -4.581299, 53.501117 ], [ -3.098145, 53.409532 ], [ -2.955322, 53.988395 ], [ -3.636475, 54.616617 ], [ -4.844971, 54.794352 ], [ -5.086670, 55.065787 ], [ -4.724121, 55.509971 ], [ -5.053711, 55.788929 ], [ -5.592041, 55.316643 ], [ -5.646973, 56.279961 ], [ -6.152344, 56.788845 ], [ -5.789795, 57.821355 ], [ -5.020752, 58.631217 ], [ -4.218750, 58.551061 ], [ -3.010254, 58.636935 ] ] ], [ [ [ -6.734619, 55.178868 ], [ -5.668945, 54.559323 ], [ -6.207275, 53.871963 ], [ -6.954346, 54.078729 ], [ -7.580566, 54.065836 ], [ -7.371826, 54.597528 ], [ -7.580566, 55.134930 ], [ -6.734619, 55.178868 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 49.979488 ], [ 0.878906, 42.730874 ], [ 0.692139, 42.803462 ], [ 0.329590, 42.585444 ], [ 0.000000, 42.666281 ], [ -1.505127, 43.036776 ], [ -1.911621, 43.428988 ], [ -1.384277, 44.024422 ], [ -1.197510, 46.019853 ], [ -2.230225, 47.070122 ], [ -2.966309, 47.576526 ], [ -4.493408, 47.960502 ], [ -4.603271, 48.690960 ], [ -3.295898, 48.908059 ], [ -1.625977, 48.647428 ], [ -1.933594, 49.781264 ], [ -0.999756, 49.353756 ], [ 0.000000, 49.681847 ], [ 0.878906, 49.979488 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.987061, 43.755225 ], [ -6.756592, 43.572432 ], [ -5.416260, 43.580391 ], [ -4.350586, 43.405047 ], [ -3.526611, 43.460894 ], [ -1.911621, 43.428988 ], [ -1.505127, 43.036776 ], [ 0.000000, 42.666281 ], [ 0.329590, 42.585444 ], [ 0.692139, 42.803462 ], [ 0.878906, 42.730874 ], [ 0.878906, 41.029643 ], [ 0.802002, 41.021355 ], [ 0.714111, 40.680638 ], [ 0.307617, 40.313043 ], [ -6.888428, 40.313043 ], [ -6.866455, 40.338170 ], [ -6.855469, 40.979898 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.385052 ], [ -6.668701, 41.885921 ], [ -7.261963, 41.918629 ], [ -7.426758, 41.795888 ], [ -8.020020, 41.795888 ], [ -8.272705, 42.285437 ], [ -8.679199, 42.138968 ], [ -9.041748, 41.885921 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.028745 ], [ -7.987061, 43.755225 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -18.984375, 79.335219 ], [ -19.193115, 79.171335 ], [ -19.709473, 78.752802 ], [ -19.676514, 77.638894 ], [ -18.479004, 76.987572 ], [ -20.039062, 76.945452 ], [ -21.687012, 76.629067 ], [ -19.841309, 76.098157 ], [ -19.599609, 75.250260 ], [ -20.676270, 75.157673 ], [ -19.379883, 74.298436 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.818698 ], [ -20.764160, 73.465984 ], [ -22.181396, 73.312091 ], [ -23.576660, 73.308936 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.600551 ], [ -24.796143, 72.332464 ], [ -23.444824, 72.080673 ], [ -22.137451, 71.469124 ], [ -21.763916, 70.667244 ], [ -23.543701, 70.473553 ], [ -24.312744, 70.859087 ], [ -25.554199, 71.434176 ], [ -25.202637, 70.754345 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.357178, 70.132898 ], [ -25.037842, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.783447, 68.122482 ], [ -32.816162, 67.738597 ], [ -34.211426, 66.683436 ], [ -34.727783, 66.513260 ], [ -35.804443, 66.160511 ], [ -45.878906, 66.160511 ], [ -45.878906, 79.335219 ], [ -18.984375, 79.335219 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ], [ -20.852051, 82.727921 ], [ -22.697754, 82.342636 ], [ -26.520996, 82.298593 ], [ -31.904297, 82.200811 ], [ -31.398926, 82.022903 ], [ -27.861328, 82.131931 ], [ -24.851074, 81.787779 ], [ -22.906494, 82.094243 ], [ -22.082520, 81.735830 ], [ -23.170166, 81.154241 ], [ -20.632324, 81.524751 ], [ -15.776367, 81.913920 ], [ -12.777100, 81.720024 ], [ -12.216797, 81.291703 ], [ -16.292725, 80.580741 ], [ -16.853027, 80.351473 ], [ -20.050049, 80.178713 ], [ -17.731934, 80.129870 ], [ -18.907471, 79.400085 ], [ -19.193115, 79.171335 ], [ -19.401855, 79.004962 ], [ -45.878906, 79.004962 ], [ -45.878906, 81.875194 ], [ -45.000000, 81.737409 ], [ -44.527588, 81.661279 ], [ -45.000000, 81.772072 ], [ -45.878906, 81.973965 ], [ -45.878906, 82.791612 ], [ -45.000000, 82.948424 ], [ -43.406982, 83.226067 ], [ -39.902344, 83.180561 ], [ -38.627930, 83.549851 ], [ -35.090332, 83.645406 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.992676, 0.878872 ], [ 29.871826, 0.604237 ], [ 29.827881, 0.000000 ], [ 29.816895, -0.197754 ], [ 29.586182, -0.582265 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.614776 ], [ 29.245605, -2.207705 ], [ 29.113770, -2.284551 ], [ 29.014893, -2.833317 ], [ 29.267578, -3.283114 ], [ 29.333496, -4.499762 ], [ 29.509277, -5.419148 ], [ 29.410400, -5.932972 ], [ 29.619141, -6.511815 ], [ 30.190430, -7.079088 ], [ 30.739746, -8.331083 ], [ 30.344238, -8.233237 ], [ 28.992920, -8.396300 ], [ 28.729248, -8.515836 ], [ 28.443604, -9.156333 ], [ 28.663330, -9.600750 ], [ 28.487549, -10.779348 ], [ 28.366699, -11.792080 ], [ 28.641357, -11.964097 ], [ 29.333496, -12.350734 ], [ 29.608154, -12.168226 ], [ 29.696045, -13.250640 ], [ 28.927002, -13.239945 ], [ 28.520508, -12.693933 ], [ 28.146973, -12.264864 ], [ 27.377930, -12.125264 ], [ 27.158203, -11.598432 ], [ 26.542969, -11.921103 ], [ 25.751953, -11.781325 ], [ 25.411377, -11.329253 ], [ 24.774170, -11.232286 ], [ 24.312744, -11.253837 ], [ 24.246826, -10.951978 ], [ 23.906250, -10.919618 ], [ 23.455811, -10.865676 ], [ 22.829590, -11.016689 ], [ 22.401123, -10.984335 ], [ 22.148438, -11.081385 ], [ 22.203369, -9.893099 ], [ 21.873779, -9.514079 ], [ 21.796875, -8.906780 ], [ 21.939697, -8.298470 ], [ 21.741943, -7.917793 ], [ 21.719971, -7.286190 ], [ 20.511475, -7.297088 ], [ 20.599365, -6.937333 ], [ 20.083008, -6.937333 ], [ 20.028076, -7.111795 ], [ 19.412842, -7.155400 ], [ 19.160156, -7.732765 ], [ 19.006348, -7.983078 ], [ 18.457031, -7.841615 ], [ 18.127441, -7.983078 ], [ 17.468262, -8.059230 ], [ 16.853027, -7.220800 ], [ 16.567383, -6.620957 ], [ 16.325684, -5.867403 ], [ 13.370361, -5.856475 ], [ 13.018799, -5.976680 ], [ 12.733154, -5.954827 ], [ 12.315674, -6.096860 ], [ 12.172852, -5.779966 ], [ 12.436523, -5.681584 ], [ 12.458496, -5.244128 ], [ 12.623291, -4.981505 ], [ 12.985840, -4.773521 ], [ 13.249512, -4.872048 ], [ 13.590088, -4.499762 ], [ 14.139404, -4.499762 ], [ 14.205322, -4.784469 ], [ 14.578857, -4.959615 ], [ 15.161133, -4.335456 ], [ 15.743408, -3.853293 ], [ 15.996094, -3.524387 ], [ 15.963135, -2.701635 ], [ 16.402588, -1.735574 ], [ 16.864014, -1.219390 ], [ 17.523193, -0.736064 ], [ 17.633057, -0.417477 ], [ 17.655029, -0.054932 ], [ 17.687988, 0.000000 ], [ 17.819824, 0.296630 ], [ 17.775879, 0.878872 ], [ 29.992676, 0.878872 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.370361, -5.856475 ], [ 16.325684, -5.867403 ], [ 16.567383, -6.620957 ], [ 16.853027, -7.220800 ], [ 17.468262, -8.059230 ], [ 18.127441, -7.983078 ], [ 18.457031, -7.841615 ], [ 19.006348, -7.983078 ], [ 19.160156, -7.732765 ], [ 19.412842, -7.155400 ], [ 20.028076, -7.111795 ], [ 20.083008, -6.937333 ], [ 20.599365, -6.937333 ], [ 20.511475, -7.297088 ], [ 21.719971, -7.286190 ], [ 21.741943, -7.917793 ], [ 21.939697, -8.298470 ], [ 21.796875, -8.906780 ], [ 21.873779, -9.514079 ], [ 22.203369, -9.893099 ], [ 22.148438, -11.081385 ], [ 22.401123, -10.984335 ], [ 22.829590, -11.016689 ], [ 23.455811, -10.865676 ], [ 23.906250, -10.919618 ], [ 24.016113, -11.232286 ], [ 23.895264, -11.716788 ], [ 24.071045, -12.189704 ], [ 23.928223, -12.565287 ], [ 24.016113, -12.908198 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.077486 ], [ 22.554932, -16.888660 ], [ 23.214111, -17.518344 ], [ 21.368408, -17.926476 ], [ 18.951416, -17.780074 ], [ 18.259277, -17.308688 ], [ 14.205322, -17.350638 ], [ 14.051514, -17.413546 ], [ 13.458252, -16.962233 ], [ 12.810059, -16.941215 ], [ 12.205811, -17.109293 ], [ 11.733398, -17.298199 ], [ 11.634521, -16.667769 ], [ 11.777344, -15.792254 ], [ 12.117920, -14.870469 ], [ 12.172852, -14.445319 ], [ 12.491455, -13.539201 ], [ 12.733154, -13.132979 ], [ 13.304443, -12.479487 ], [ 13.623047, -12.028576 ], [ 13.732910, -11.296934 ], [ 13.677979, -10.725381 ], [ 13.381348, -10.368958 ], [ 12.864990, -9.156333 ], [ 12.919922, -8.950193 ], [ 13.227539, -8.559294 ], [ 12.722168, -6.926427 ], [ 12.216797, -6.293459 ], [ 12.315674, -6.096860 ], [ 12.733154, -5.954827 ], [ 13.018799, -5.976680 ], [ 13.370361, -5.856475 ] ] ], [ [ [ 12.612305, -4.434044 ], [ 12.985840, -4.773521 ], [ 12.623291, -4.981505 ], [ 12.458496, -5.244128 ], [ 12.436523, -5.681584 ], [ 12.172852, -5.779966 ], [ 11.909180, -5.036227 ], [ 12.315674, -4.598327 ], [ 12.612305, -4.434044 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Namibia", "sov_a3": "NAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Namibia", "adm0_a3": "NAM", "geou_dif": 0, "geounit": "Namibia", "gu_a3": "NAM", "su_dif": 0, "subunit": "Namibia", "su_a3": "NAM", "brk_diff": 0, "name": "Namibia", "name_long": "Namibia", "brk_a3": "NAM", "brk_name": "Namibia", "abbrev": "Nam.", "postal": "NA", "formal_en": "Republic of Namibia", "name_sort": "Namibia", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 2108665, "gdp_md_est": 13250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "NA", "iso_a3": "NAM", "iso_n3": "516", "un_a3": "516", "wb_a2": "NA", "wb_a3": "NAM", "woe_id": -99, "adm0_a3_is": "NAM", "adm0_a3_us": "NAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.810059, -16.941215 ], [ 13.458252, -16.962233 ], [ 14.051514, -17.413546 ], [ 14.205322, -17.350638 ], [ 18.259277, -17.308688 ], [ 18.951416, -17.780074 ], [ 21.368408, -17.926476 ], [ 23.214111, -17.518344 ], [ 24.027100, -17.287709 ], [ 24.675293, -17.350638 ], [ 25.070801, -17.570721 ], [ 25.081787, -17.654491 ], [ 24.510498, -17.884659 ], [ 24.213867, -17.884659 ], [ 23.576660, -18.271086 ], [ 23.192139, -17.863747 ], [ 21.654053, -18.218916 ], [ 20.906982, -18.250220 ], [ 20.874023, -21.810508 ], [ 19.885254, -21.841105 ], [ 19.885254, -28.459033 ], [ 18.995361, -28.969701 ], [ 18.457031, -29.036961 ], [ 17.830811, -28.854296 ], [ 17.380371, -28.777289 ], [ 17.215576, -28.352734 ], [ 16.820068, -28.081674 ], [ 16.336670, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.205078, -27.088473 ], [ 14.985352, -26.115986 ], [ 14.732666, -25.383735 ], [ 14.403076, -23.845650 ], [ 14.381104, -22.654572 ], [ 14.249268, -22.105999 ], [ 13.864746, -21.698265 ], [ 13.348389, -20.869078 ], [ 12.821045, -19.663280 ], [ 12.601318, -19.041349 ], [ 11.788330, -18.062312 ], [ 11.733398, -17.298199 ], [ 12.205811, -17.109293 ], [ 12.810059, -16.941215 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.344238, -8.233237 ], [ 30.739746, -8.331083 ], [ 31.157227, -8.591884 ], [ 31.552734, -8.754795 ], [ 32.189941, -8.928487 ], [ 32.750244, -9.221405 ], [ 33.222656, -9.676569 ], [ 33.475342, -10.520219 ], [ 33.310547, -10.790141 ], [ 33.112793, -11.598432 ], [ 33.299561, -12.425848 ], [ 32.980957, -12.779661 ], [ 32.684326, -13.710035 ], [ 33.211670, -13.966054 ], [ 30.179443, -14.785505 ], [ 30.267334, -15.506619 ], [ 29.509277, -15.644197 ], [ 28.937988, -16.035255 ], [ 28.817139, -16.383391 ], [ 28.465576, -16.467695 ], [ 27.597656, -17.287709 ], [ 27.037354, -17.936929 ], [ 26.696777, -17.957832 ], [ 26.378174, -17.842833 ], [ 25.257568, -17.727759 ], [ 25.081787, -17.654491 ], [ 25.070801, -17.570721 ], [ 24.675293, -17.350638 ], [ 24.027100, -17.287709 ], [ 23.214111, -17.518344 ], [ 22.554932, -16.888660 ], [ 21.884766, -16.077486 ], [ 21.928711, -12.897489 ], [ 24.016113, -12.908198 ], [ 23.928223, -12.565287 ], [ 24.071045, -12.189704 ], [ 23.895264, -11.716788 ], [ 24.016113, -11.232286 ], [ 23.906250, -10.919618 ], [ 24.246826, -10.951978 ], [ 24.312744, -11.253837 ], [ 24.774170, -11.232286 ], [ 25.411377, -11.329253 ], [ 25.751953, -11.781325 ], [ 26.542969, -11.921103 ], [ 27.158203, -11.598432 ], [ 27.377930, -12.125264 ], [ 28.146973, -12.264864 ], [ 28.520508, -12.693933 ], [ 28.927002, -13.239945 ], [ 29.696045, -13.250640 ], [ 29.608154, -12.168226 ], [ 29.333496, -12.350734 ], [ 28.641357, -11.964097 ], [ 28.366699, -11.792080 ], [ 28.487549, -10.779348 ], [ 28.663330, -9.600750 ], [ 28.443604, -9.156333 ], [ 28.729248, -8.515836 ], [ 28.992920, -8.396300 ], [ 30.344238, -8.233237 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "United Republic of Tanzania", "sov_a3": "TZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Republic of Tanzania", "adm0_a3": "TZA", "geou_dif": 0, "geounit": "Tanzania", "gu_a3": "TZA", "su_dif": 0, "subunit": "Tanzania", "su_a3": "TZA", "brk_diff": 0, "name": "Tanzania", "name_long": "Tanzania", "brk_a3": "TZA", "brk_name": "Tanzania", "abbrev": "Tanz.", "postal": "TZ", "formal_en": "United Republic of Tanzania", "name_sort": "Tanzania", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 41048532, "gdp_md_est": 54250, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TZ", "iso_a3": "TZA", "iso_n3": "834", "un_a3": "834", "wb_a2": "TZ", "wb_a3": "TZA", "woe_id": -99, "adm0_a3_is": "TZA", "adm0_a3_us": "TZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.892822, -0.944781 ], [ 34.068604, -1.054628 ], [ 37.694092, -3.096636 ], [ 37.760010, -3.666928 ], [ 39.199219, -4.674980 ], [ 38.737793, -5.900189 ], [ 38.792725, -6.468151 ], [ 39.429932, -6.839170 ], [ 39.462891, -7.089990 ], [ 39.188232, -7.700105 ], [ 39.243164, -8.004837 ], [ 39.177246, -8.483239 ], [ 39.528809, -9.102097 ], [ 39.946289, -10.087854 ], [ 40.308838, -10.314919 ], [ 39.517822, -10.887254 ], [ 38.419189, -11.275387 ], [ 37.825928, -11.264612 ], [ 37.463379, -11.566144 ], [ 36.771240, -11.587669 ], [ 36.507568, -11.716788 ], [ 35.310059, -11.436955 ], [ 34.552002, -11.512322 ], [ 34.277344, -10.152746 ], [ 33.739014, -9.416548 ], [ 32.750244, -9.221405 ], [ 32.189941, -8.928487 ], [ 31.552734, -8.754795 ], [ 31.157227, -8.591884 ], [ 30.739746, -8.331083 ], [ 30.190430, -7.079088 ], [ 29.619141, -6.511815 ], [ 29.410400, -5.932972 ], [ 29.509277, -5.419148 ], [ 29.333496, -4.499762 ], [ 29.750977, -4.444997 ], [ 30.113525, -4.083453 ], [ 30.498047, -3.568248 ], [ 30.750732, -3.348922 ], [ 30.739746, -3.030812 ], [ 30.520020, -2.800398 ], [ 30.465088, -2.405299 ], [ 30.750732, -2.284551 ], [ 30.805664, -1.691649 ], [ 30.410156, -1.131518 ], [ 30.761719, -1.010690 ], [ 31.860352, -1.021674 ], [ 33.892822, -0.944781 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mozambique", "sov_a3": "MOZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mozambique", "adm0_a3": "MOZ", "geou_dif": 0, "geounit": "Mozambique", "gu_a3": "MOZ", "su_dif": 0, "subunit": "Mozambique", "su_a3": "MOZ", "brk_diff": 0, "name": "Mozambique", "name_long": "Mozambique", "brk_a3": "MOZ", "brk_name": "Mozambique", "abbrev": "Moz.", "postal": "MZ", "formal_en": "Republic of Mozambique", "name_sort": "Mozambique", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 21669278, "gdp_md_est": 18940, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MZ", "iso_a3": "MOZ", "iso_n3": "508", "un_a3": "508", "wb_a2": "MZ", "wb_a3": "MOZ", "woe_id": -99, "adm0_a3_is": "MOZ", "adm0_a3_us": "MOZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.308838, -10.314919 ], [ 40.473633, -10.757763 ], [ 40.429688, -11.759815 ], [ 40.550537, -12.629618 ], [ 40.594482, -14.200488 ], [ 40.770264, -14.689881 ], [ 40.473633, -15.400728 ], [ 40.089111, -16.098598 ], [ 39.451904, -16.720385 ], [ 37.408447, -17.581194 ], [ 36.276855, -18.656654 ], [ 35.892334, -18.833515 ], [ 35.189209, -19.549437 ], [ 34.782715, -19.777042 ], [ 34.694824, -20.488773 ], [ 35.167236, -21.248422 ], [ 35.364990, -21.830907 ], [ 35.375977, -22.136532 ], [ 35.551758, -22.085640 ], [ 35.529785, -23.069624 ], [ 35.364990, -23.533773 ], [ 35.606689, -23.704895 ], [ 35.452881, -24.116675 ], [ 35.035400, -24.477150 ], [ 34.211426, -24.806681 ], [ 33.002930, -25.353955 ], [ 32.574463, -25.720735 ], [ 32.651367, -26.145576 ], [ 32.915039, -26.214591 ], [ 32.827148, -26.735799 ], [ 32.069092, -26.725987 ], [ 31.981201, -26.283565 ], [ 31.827393, -25.839449 ], [ 31.750488, -25.482951 ], [ 31.926270, -24.367114 ], [ 31.190186, -22.248429 ], [ 32.244873, -21.115249 ], [ 32.508545, -20.385825 ], [ 32.651367, -20.303418 ], [ 32.772217, -19.715000 ], [ 32.607422, -19.414792 ], [ 32.651367, -18.667063 ], [ 32.849121, -17.978733 ], [ 32.838135, -16.709863 ], [ 32.321777, -16.383391 ], [ 31.849365, -16.309596 ], [ 31.629639, -16.066929 ], [ 31.168213, -15.855674 ], [ 30.333252, -15.876809 ], [ 30.179443, -14.785505 ], [ 33.211670, -13.966054 ], [ 33.782959, -14.445319 ], [ 34.057617, -14.349548 ], [ 34.453125, -14.604847 ], [ 34.508057, -15.008464 ], [ 34.299316, -15.474857 ], [ 34.376221, -16.183024 ], [ 35.024414, -16.794024 ], [ 35.332031, -16.098598 ], [ 35.771484, -15.887376 ], [ 35.683594, -14.604847 ], [ 35.266113, -13.880746 ], [ 34.903564, -13.560562 ], [ 34.552002, -13.571242 ], [ 34.277344, -12.275599 ], [ 34.552002, -11.512322 ], [ 35.310059, -11.436955 ], [ 36.507568, -11.716788 ], [ 36.771240, -11.587669 ], [ 37.463379, -11.566144 ], [ 37.825928, -11.264612 ], [ 38.419189, -11.275387 ], [ 39.517822, -10.887254 ], [ 40.308838, -10.314919 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 25.081787, -17.654491 ], [ 25.257568, -17.727759 ], [ 25.642090, -18.531700 ], [ 25.839844, -18.708692 ], [ 26.158447, -19.290406 ], [ 27.290039, -20.385825 ], [ 27.718506, -20.488773 ], [ 27.718506, -20.848545 ], [ 28.015137, -21.483741 ], [ 28.784180, -21.637005 ], [ 29.421387, -22.085640 ], [ 28.015137, -22.826820 ], [ 27.114258, -23.574057 ], [ 26.784668, -24.236947 ], [ 26.477051, -24.607069 ], [ 25.938721, -24.686952 ], [ 25.664062, -25.482951 ], [ 25.015869, -25.710837 ], [ 24.202881, -25.661333 ], [ 23.730469, -25.383735 ], [ 23.302002, -25.264568 ], [ 22.818604, -25.492868 ], [ 22.576904, -25.977799 ], [ 22.104492, -26.273714 ], [ 21.599121, -26.725987 ], [ 20.885010, -26.824071 ], [ 20.665283, -26.470573 ], [ 20.753174, -25.859224 ], [ 20.159912, -24.916331 ], [ 19.885254, -24.766785 ], [ 19.885254, -21.841105 ], [ 20.874023, -21.810508 ], [ 20.906982, -18.250220 ], [ 21.654053, -18.218916 ], [ 23.192139, -17.863747 ], [ 23.576660, -18.271086 ], [ 24.213867, -17.884659 ], [ 24.510498, -17.884659 ], [ 25.081787, -17.654491 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Africa", "sov_a3": "ZAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Africa", "adm0_a3": "ZAF", "geou_dif": 0, "geounit": "South Africa", "gu_a3": "ZAF", "su_dif": 0, "subunit": "South Africa", "su_a3": "ZAF", "brk_diff": 0, "name": "South Africa", "name_long": "South Africa", "brk_a3": "ZAF", "brk_name": "South Africa", "abbrev": "S.Af.", "postal": "ZA", "formal_en": "Republic of South Africa", "name_sort": "South Africa", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 49052489, "gdp_md_est": 491000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ZA", "iso_a3": "ZAF", "iso_n3": "710", "un_a3": "710", "wb_a2": "ZA", "wb_a3": "ZAF", "woe_id": -99, "adm0_a3_is": "ZAF", "adm0_a3_us": "ZAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.421387, -22.085640 ], [ 29.838867, -22.095820 ], [ 30.322266, -22.268764 ], [ 30.651855, -22.146708 ], [ 31.190186, -22.248429 ], [ 31.926270, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.827393, -25.839449 ], [ 31.333008, -25.651430 ], [ 31.036377, -25.730633 ], [ 30.948486, -26.017298 ], [ 30.673828, -26.391870 ], [ 30.684814, -26.735799 ], [ 31.278076, -27.283926 ], [ 31.860352, -27.176469 ], [ 32.069092, -26.725987 ], [ 32.827148, -26.735799 ], [ 32.574463, -27.469287 ], [ 32.453613, -28.294707 ], [ 32.200928, -28.748397 ], [ 31.519775, -29.248063 ], [ 31.322021, -29.401320 ], [ 30.893555, -29.907329 ], [ 30.618896, -30.420256 ], [ 30.047607, -31.137603 ], [ 28.916016, -32.166313 ], [ 28.212891, -32.768800 ], [ 27.454834, -33.220308 ], [ 26.411133, -33.614619 ], [ 25.905762, -33.660353 ], [ 25.773926, -33.943360 ], [ 25.169678, -33.788279 ], [ 24.675293, -33.979809 ], [ 23.587646, -33.788279 ], [ 22.983398, -33.916013 ], [ 22.565918, -33.861293 ], [ 21.533203, -34.252676 ], [ 20.687256, -34.415973 ], [ 20.061035, -34.786739 ], [ 19.610596, -34.813803 ], [ 19.193115, -34.461277 ], [ 18.852539, -34.443159 ], [ 18.424072, -33.988918 ], [ 18.369141, -34.134542 ], [ 18.237305, -33.861293 ], [ 18.248291, -33.275435 ], [ 17.918701, -32.602362 ], [ 18.237305, -32.426340 ], [ 18.215332, -31.653381 ], [ 17.556152, -30.722949 ], [ 17.061768, -29.869229 ], [ 16.336670, -28.574874 ], [ 16.820068, -28.081674 ], [ 17.215576, -28.352734 ], [ 17.380371, -28.777289 ], [ 17.830811, -28.854296 ], [ 18.457031, -29.036961 ], [ 18.995361, -28.969701 ], [ 19.885254, -28.459033 ], [ 19.885254, -24.766785 ], [ 20.159912, -24.916331 ], [ 20.753174, -25.859224 ], [ 20.665283, -26.470573 ], [ 20.885010, -26.824071 ], [ 21.599121, -26.725987 ], [ 22.104492, -26.273714 ], [ 22.576904, -25.977799 ], [ 22.818604, -25.492868 ], [ 23.302002, -25.264568 ], [ 23.730469, -25.383735 ], [ 24.202881, -25.661333 ], [ 25.015869, -25.710837 ], [ 25.664062, -25.482951 ], [ 25.938721, -24.686952 ], [ 26.477051, -24.607069 ], [ 26.784668, -24.236947 ], [ 27.114258, -23.574057 ], [ 28.015137, -22.826820 ], [ 29.421387, -22.085640 ] ], [ [ 28.531494, -28.642389 ], [ 28.070068, -28.844674 ], [ 27.531738, -29.238477 ], [ 26.993408, -29.869229 ], [ 27.740479, -30.637912 ], [ 28.103027, -30.543339 ], [ 28.289795, -30.221102 ], [ 28.839111, -30.069094 ], [ 29.014893, -29.735762 ], [ 29.322510, -29.248063 ], [ 28.970947, -28.950476 ], [ 28.531494, -28.642389 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Madagascar", "sov_a3": "MDG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Madagascar", "adm0_a3": "MDG", "geou_dif": 0, "geounit": "Madagascar", "gu_a3": "MDG", "su_dif": 0, "subunit": "Madagascar", "su_a3": "MDG", "brk_diff": 0, "name": "Madagascar", "name_long": "Madagascar", "brk_a3": "MDG", "brk_name": "Madagascar", "abbrev": "Mad.", "postal": "MG", "formal_en": "Republic of Madagascar", "name_sort": "Madagascar", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 20653556, "gdp_md_est": 20130, "pop_year": -99, "lastcensus": 1993, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MG", "iso_a3": "MDG", "iso_n3": "450", "un_a3": "450", "wb_a2": "MG", "wb_a3": "MDG", "woe_id": -99, "adm0_a3_is": "MDG", "adm0_a3_us": "MDG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, -15.792254 ], [ 45.878906, -25.373809 ], [ 45.406494, -25.591994 ], [ 45.000000, -25.413509 ], [ 44.033203, -24.986058 ], [ 43.758545, -24.457151 ], [ 43.692627, -23.574057 ], [ 43.341064, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.428955, -21.330315 ], [ 43.890381, -21.156238 ], [ 43.890381, -20.828010 ], [ 44.373779, -20.066251 ], [ 44.461670, -19.425154 ], [ 44.230957, -18.958246 ], [ 44.033203, -18.323240 ], [ 43.956299, -17.403063 ], [ 44.307861, -16.846605 ], [ 44.439697, -16.214675 ], [ 44.934082, -16.172473 ], [ 45.000000, -16.151369 ], [ 45.494385, -15.971892 ], [ 45.878906, -15.792254 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.338379, 41.640078 ], [ 9.228516, 41.385052 ], [ 8.767090, 41.590797 ], [ 8.756104, 41.640078 ], [ 9.338379, 41.640078 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.669678, 41.640078 ], [ 2.087402, 41.228249 ], [ 0.802002, 41.021355 ], [ 0.791016, 40.979898 ], [ 0.714111, 40.680638 ], [ 0.098877, 40.128491 ], [ 0.000000, 39.901309 ], [ -0.285645, 39.317300 ], [ 0.000000, 38.908133 ], [ 0.109863, 38.745515 ], [ 0.000000, 38.659778 ], [ -0.472412, 38.298559 ], [ -0.692139, 37.649034 ], [ -0.878906, 37.596824 ], [ -0.878906, 41.640078 ], [ 2.669678, 41.640078 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.878906, 22.370396 ], [ 0.000000, 21.800308 ], [ 1.812744, 20.612220 ], [ 2.054443, 20.148785 ], [ 2.680664, 19.859727 ], [ 3.142090, 19.694314 ], [ 3.153076, 19.062118 ], [ 4.262695, 19.155547 ], [ 4.262695, 16.857120 ], [ 3.713379, 16.193575 ], [ 3.636475, 15.570128 ], [ 2.746582, 15.411319 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.976627 ], [ 0.373535, 14.934170 ], [ -0.274658, 14.934170 ], [ -0.516357, 15.125159 ], [ -0.878906, 15.029686 ], [ -0.878906, 22.370396 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.327881, 37.125286 ], [ 7.734375, 36.888408 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.438961 ], [ 8.371582, 35.487511 ], [ 8.140869, 34.660322 ], [ 7.514648, 34.098159 ], [ 7.602539, 33.348885 ], [ 8.426514, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.110496 ], [ 9.481201, 30.315988 ], [ 9.799805, 29.430029 ], [ 9.854736, 28.960089 ], [ 9.678955, 28.149503 ], [ 9.755859, 27.693256 ], [ 9.624023, 27.147145 ], [ 9.711914, 26.519735 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.373809 ], [ 9.942627, 24.946219 ], [ 10.294189, 24.387127 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.106647 ], [ 11.997070, 23.473324 ], [ 8.569336, 21.575719 ], [ 5.668945, 19.611544 ], [ 4.262695, 19.155547 ], [ 3.153076, 19.062118 ], [ 3.142090, 19.694314 ], [ 2.680664, 19.859727 ], [ 2.054443, 20.148785 ], [ 1.812744, 20.612220 ], [ 0.000000, 21.800308 ], [ -0.878906, 22.370396 ], [ -0.878906, 35.773258 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.494385, 36.306272 ], [ 1.461182, 36.606709 ], [ 3.153076, 36.791691 ], [ 4.812012, 36.870832 ], [ 5.317383, 36.721274 ], [ 6.251221, 37.116526 ], [ 7.327881, 37.125286 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.480713, 33.137551 ], [ 12.656250, 32.796510 ], [ 13.073730, 32.879587 ], [ 13.908691, 32.713355 ], [ 15.238037, 32.268555 ], [ 15.710449, 31.381779 ], [ 16.611328, 31.184609 ], [ 18.017578, 30.770159 ], [ 19.083252, 30.268556 ], [ 19.566650, 30.533877 ], [ 20.050049, 30.987028 ], [ 19.819336, 31.756196 ], [ 20.126953, 32.240683 ], [ 20.852051, 32.713355 ], [ 21.533203, 32.851903 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.194209 ], [ 23.598633, 32.194209 ], [ 23.917236, 32.017392 ], [ 24.916992, 31.905541 ], [ 25.158691, 31.569175 ], [ 24.796143, 31.090574 ], [ 24.949951, 30.666266 ], [ 24.697266, 30.050077 ], [ 24.993896, 29.248063 ], [ 24.993896, 20.004322 ], [ 23.840332, 20.004322 ], [ 23.829346, 19.580493 ], [ 19.841309, 21.504186 ], [ 15.853271, 23.412847 ], [ 14.842529, 22.867318 ], [ 14.139404, 22.492257 ], [ 13.579102, 23.049407 ], [ 11.997070, 23.473324 ], [ 11.557617, 24.106647 ], [ 10.766602, 24.567108 ], [ 10.294189, 24.387127 ], [ 9.942627, 24.946219 ], [ 9.909668, 25.373809 ], [ 9.316406, 26.096255 ], [ 9.711914, 26.519735 ], [ 9.624023, 27.147145 ], [ 9.755859, 27.693256 ], [ 9.678955, 28.149503 ], [ 9.854736, 28.960089 ], [ 9.799805, 29.430029 ], [ 9.481201, 30.315988 ], [ 9.964600, 30.543339 ], [ 10.052490, 30.968189 ], [ 9.942627, 31.381779 ], [ 10.634766, 31.765537 ], [ 10.942383, 32.082575 ], [ 11.425781, 32.370683 ], [ 11.480713, 33.137551 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.997070, 23.473324 ], [ 13.579102, 23.049407 ], [ 14.139404, 22.492257 ], [ 14.842529, 22.867318 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.053744 ], [ 15.479736, 20.735566 ], [ 15.897217, 20.396123 ], [ 15.677490, 19.963023 ], [ 15.292969, 17.936929 ], [ 15.238037, 16.636192 ], [ 13.963623, 15.686510 ], [ 13.535156, 14.370834 ], [ 13.952637, 13.998037 ], [ 13.952637, 13.357554 ], [ 14.589844, 13.336175 ], [ 14.490967, 12.865360 ], [ 14.205322, 12.811801 ], [ 14.172363, 12.490214 ], [ 13.985596, 12.468760 ], [ 13.315430, 13.560562 ], [ 13.073730, 13.603278 ], [ 12.293701, 13.047372 ], [ 11.524658, 13.336175 ], [ 10.986328, 13.389620 ], [ 10.700684, 13.250640 ], [ 10.107422, 13.282719 ], [ 9.514160, 12.854649 ], [ 9.008789, 12.833226 ], [ 7.800293, 13.346865 ], [ 7.327881, 13.100880 ], [ 6.811523, 13.122280 ], [ 6.437988, 13.496473 ], [ 5.438232, 13.870080 ], [ 4.361572, 13.752725 ], [ 4.097900, 13.539201 ], [ 3.966064, 12.961736 ], [ 3.680420, 12.554564 ], [ 3.603516, 11.662996 ], [ 2.845459, 12.243392 ], [ 2.482910, 12.243392 ], [ 2.153320, 11.942601 ], [ 2.175293, 12.629618 ], [ 1.021729, 12.854649 ], [ 0.988770, 13.336175 ], [ 0.428467, 13.998037 ], [ 0.285645, 14.445319 ], [ 0.373535, 14.934170 ], [ 1.010742, 14.976627 ], [ 1.384277, 15.326572 ], [ 2.746582, 15.411319 ], [ 3.636475, 15.570128 ], [ 3.713379, 16.193575 ], [ 4.262695, 16.857120 ], [ 4.262695, 19.155547 ], [ 5.668945, 19.611544 ], [ 8.569336, 21.575719 ], [ 11.997070, 23.473324 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.438232, 13.870080 ], [ 6.437988, 13.496473 ], [ 6.811523, 13.122280 ], [ 7.327881, 13.100880 ], [ 7.800293, 13.346865 ], [ 9.008789, 12.833226 ], [ 9.514160, 12.854649 ], [ 10.107422, 13.282719 ], [ 10.700684, 13.250640 ], [ 10.986328, 13.389620 ], [ 11.524658, 13.336175 ], [ 12.293701, 13.047372 ], [ 13.073730, 13.603278 ], [ 13.315430, 13.560562 ], [ 13.985596, 12.468760 ], [ 14.172363, 12.490214 ], [ 14.567871, 12.093039 ], [ 14.458008, 11.910354 ], [ 14.414062, 11.576907 ], [ 13.568115, 10.800933 ], [ 13.304443, 10.163560 ], [ 13.161621, 9.644077 ], [ 12.952881, 9.427387 ], [ 12.744141, 8.722218 ], [ 12.216797, 8.309341 ], [ 12.062988, 7.808963 ], [ 11.832275, 7.406048 ], [ 11.744385, 6.991859 ], [ 11.052246, 6.653695 ], [ 10.491943, 7.057282 ], [ 10.107422, 7.046379 ], [ 9.514160, 6.457234 ], [ 9.228516, 6.446318 ], [ 8.756104, 5.484768 ], [ 8.492432, 4.773521 ], [ 7.459717, 4.412137 ], [ 7.075195, 4.466904 ], [ 6.690674, 4.247812 ], [ 5.888672, 4.269724 ], [ 5.361328, 4.893941 ], [ 5.031738, 5.615986 ], [ 4.317627, 6.271618 ], [ 2.691650, 6.260697 ], [ 2.746582, 7.874265 ], [ 2.713623, 8.515836 ], [ 2.911377, 9.145486 ], [ 3.218994, 9.449062 ], [ 3.702393, 10.066220 ], [ 3.592529, 10.336536 ], [ 3.790283, 10.736175 ], [ 3.570557, 11.329253 ], [ 3.680420, 12.554564 ], [ 3.966064, 12.961736 ], [ 4.097900, 13.539201 ], [ 4.361572, 13.752725 ], [ 5.438232, 13.870080 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.853271, 23.412847 ], [ 19.841309, 21.504186 ], [ 23.829346, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.016357, 15.686510 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.510986, 14.093957 ], [ 22.181396, 13.795406 ], [ 22.291260, 13.378932 ], [ 22.027588, 12.961736 ], [ 21.928711, 12.597455 ], [ 22.280273, 12.651058 ], [ 22.489014, 12.264864 ], [ 22.500000, 11.684514 ], [ 22.873535, 11.393879 ], [ 22.862549, 11.146066 ], [ 22.225342, 10.973550 ], [ 21.719971, 10.574222 ], [ 20.994873, 9.481572 ], [ 20.050049, 9.015302 ], [ 19.083252, 9.080400 ], [ 18.808594, 8.993600 ], [ 18.907471, 8.635334 ], [ 18.380127, 8.287599 ], [ 17.962646, 7.896030 ], [ 16.699219, 7.514981 ], [ 16.446533, 7.743651 ], [ 16.281738, 7.754537 ], [ 16.105957, 7.504089 ], [ 15.270996, 7.427837 ], [ 15.435791, 7.700105 ], [ 15.117188, 8.385431 ], [ 14.974365, 8.798225 ], [ 14.534912, 8.971897 ], [ 13.952637, 9.557417 ], [ 14.161377, 10.022948 ], [ 14.622803, 9.925566 ], [ 14.908447, 10.001310 ], [ 15.457764, 9.990491 ], [ 14.919434, 10.898042 ], [ 14.952393, 11.566144 ], [ 14.886475, 12.221918 ], [ 14.490967, 12.865360 ], [ 14.589844, 13.336175 ], [ 13.952637, 13.357554 ], [ 13.952637, 13.998037 ], [ 13.535156, 14.370834 ], [ 13.963623, 15.686510 ], [ 15.238037, 16.636192 ], [ 15.292969, 17.936929 ], [ 15.677490, 19.963023 ], [ 15.897217, 20.396123 ], [ 15.479736, 20.735566 ], [ 15.468750, 21.053744 ], [ 15.095215, 21.309846 ], [ 14.842529, 22.867318 ], [ 15.853271, 23.412847 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.488037, 31.587894 ], [ 27.454834, 31.325487 ], [ 28.443604, 31.034108 ], [ 28.905029, 30.873940 ], [ 29.674072, 31.194008 ], [ 30.091553, 31.475524 ], [ 30.970459, 31.559815 ], [ 31.684570, 31.438037 ], [ 31.959229, 30.939924 ], [ 32.189941, 31.269161 ], [ 32.991943, 31.024694 ], [ 33.771973, 30.968189 ], [ 34.255371, 31.222197 ], [ 34.914551, 29.506549 ], [ 34.639893, 29.104177 ], [ 34.420166, 28.352734 ], [ 34.145508, 27.829361 ], [ 33.914795, 27.654338 ], [ 33.134766, 28.420391 ], [ 32.420654, 29.859701 ], [ 32.310791, 29.764377 ], [ 32.728271, 28.709861 ], [ 33.343506, 27.702984 ], [ 34.101562, 26.145576 ], [ 34.464111, 25.601902 ], [ 34.793701, 25.035839 ], [ 35.683594, 23.936055 ], [ 35.485840, 23.755182 ], [ 35.518799, 23.110049 ], [ 36.683350, 22.207749 ], [ 36.859131, 22.004175 ], [ 24.993896, 22.004175 ], [ 24.993896, 29.248063 ], [ 24.697266, 30.050077 ], [ 24.949951, 30.666266 ], [ 24.796143, 31.090574 ], [ 25.158691, 31.569175 ], [ 26.488037, 31.587894 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.156006, 41.640078 ], [ 36.903076, 41.335576 ], [ 38.221436, 40.979898 ], [ 38.342285, 40.955011 ], [ 38.583984, 40.979898 ], [ 39.506836, 41.104191 ], [ 40.363770, 41.021355 ], [ 41.550293, 41.541478 ], [ 42.615967, 41.590797 ], [ 43.571777, 41.095912 ], [ 43.626709, 40.979898 ], [ 43.747559, 40.747257 ], [ 43.648682, 40.254377 ], [ 44.395752, 40.010787 ], [ 44.791260, 39.715638 ], [ 44.099121, 39.436193 ], [ 44.417725, 38.281313 ], [ 44.219971, 37.978845 ], [ 44.769287, 37.177826 ], [ 44.285889, 37.002553 ], [ 43.934326, 37.256566 ], [ 42.769775, 37.387617 ], [ 42.341309, 37.230328 ], [ 41.209717, 37.081476 ], [ 40.671387, 37.099003 ], [ 39.517822, 36.721274 ], [ 38.693848, 36.721274 ], [ 38.166504, 36.905980 ], [ 37.056885, 36.624345 ], [ 36.738281, 36.818080 ], [ 36.683350, 36.261992 ], [ 36.145020, 35.826721 ], [ 35.771484, 36.279707 ], [ 36.156006, 36.650793 ], [ 35.540771, 36.571424 ], [ 34.705811, 36.800488 ], [ 34.024658, 36.226550 ], [ 32.508545, 36.111253 ], [ 31.695557, 36.650793 ], [ 30.618896, 36.686041 ], [ 30.388184, 36.270850 ], [ 29.696045, 36.146747 ], [ 28.729248, 36.677231 ], [ 27.630615, 36.659606 ], [ 27.048340, 37.657732 ], [ 26.312256, 38.212288 ], [ 26.795654, 38.993572 ], [ 26.169434, 39.470125 ], [ 27.279053, 40.421860 ], [ 28.817139, 40.463666 ], [ 29.102783, 40.979898 ], [ 29.234619, 41.228249 ], [ 31.135254, 41.087632 ], [ 32.167969, 41.640078 ], [ 36.156006, 41.640078 ] ] ], [ [ [ 28.103027, 41.640078 ], [ 28.114014, 41.623655 ], [ 28.981934, 41.302571 ], [ 28.806152, 41.062786 ], [ 27.608643, 41.004775 ], [ 27.586670, 40.979898 ], [ 27.191162, 40.697299 ], [ 26.356201, 40.153687 ], [ 26.037598, 40.622292 ], [ 26.048584, 40.830437 ], [ 26.290283, 40.938415 ], [ 26.312256, 40.979898 ], [ 26.597900, 41.566142 ], [ 26.455078, 41.640078 ], [ 28.103027, 41.640078 ] ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 36.859131, 22.004175 ], [ 37.177734, 21.022983 ], [ 36.968994, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.474365, 18.615013 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.434511 ], [ 37.166748, 17.266728 ], [ 36.848145, 16.962233 ], [ 36.749268, 16.299051 ], [ 36.320801, 14.827991 ], [ 36.419678, 14.424040 ], [ 36.265869, 13.571242 ], [ 35.859375, 12.586732 ], [ 35.255127, 12.093039 ], [ 34.826660, 11.329253 ], [ 34.727783, 10.919618 ], [ 34.255371, 10.639014 ], [ 33.958740, 9.589917 ], [ 33.958740, 9.470736 ], [ 33.815918, 9.492408 ], [ 33.837891, 9.990491 ], [ 33.717041, 10.325728 ], [ 33.200684, 10.725381 ], [ 33.079834, 11.447723 ], [ 33.200684, 12.189704 ], [ 32.739258, 12.254128 ], [ 32.673340, 12.028576 ], [ 32.069092, 11.974845 ], [ 32.310791, 11.684514 ], [ 32.398682, 11.081385 ], [ 31.849365, 10.541821 ], [ 31.343994, 9.817329 ], [ 30.827637, 9.709057 ], [ 29.992676, 10.293301 ], [ 29.608154, 10.087854 ], [ 29.509277, 9.795678 ], [ 28.992920, 9.611582 ], [ 28.959961, 9.405710 ], [ 27.960205, 9.405710 ], [ 27.828369, 9.611582 ], [ 27.103271, 9.644077 ], [ 26.751709, 9.470736 ], [ 26.477051, 9.557417 ], [ 25.960693, 10.141932 ], [ 25.784912, 10.412183 ], [ 25.059814, 10.282491 ], [ 24.785156, 9.817329 ], [ 24.532471, 8.917634 ], [ 24.191895, 8.733077 ], [ 23.884277, 8.624472 ], [ 23.796387, 8.667918 ], [ 23.455811, 8.961045 ], [ 23.389893, 9.275622 ], [ 23.554688, 9.687398 ], [ 23.543701, 10.098670 ], [ 22.972412, 10.714587 ], [ 22.862549, 11.146066 ], [ 22.873535, 11.393879 ], [ 22.500000, 11.684514 ], [ 22.489014, 12.264864 ], [ 22.280273, 12.651058 ], [ 21.928711, 12.597455 ], [ 22.027588, 12.961736 ], [ 22.291260, 13.378932 ], [ 22.181396, 13.795406 ], [ 22.510986, 14.093957 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 23.016357, 15.686510 ], [ 23.884277, 15.612456 ], [ 23.829346, 19.580493 ], [ 23.840332, 20.004322 ], [ 24.993896, 20.004322 ], [ 24.993896, 22.004175 ], [ 36.859131, 22.004175 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.739258, 12.254128 ], [ 33.200684, 12.189704 ], [ 33.079834, 11.447723 ], [ 33.200684, 10.725381 ], [ 33.717041, 10.325728 ], [ 33.837891, 9.990491 ], [ 33.815918, 9.492408 ], [ 33.958740, 9.470736 ], [ 33.969727, 8.689639 ], [ 33.815918, 8.385431 ], [ 33.288574, 8.363693 ], [ 32.947998, 7.787194 ], [ 33.563232, 7.721878 ], [ 34.068604, 7.231699 ], [ 34.244385, 6.828261 ], [ 34.705811, 6.599131 ], [ 35.288086, 5.506640 ], [ 34.002686, 4.258768 ], [ 33.387451, 3.798484 ], [ 32.684326, 3.798484 ], [ 31.871338, 3.568248 ], [ 31.245117, 3.787522 ], [ 30.827637, 3.513421 ], [ 29.948730, 4.182073 ], [ 29.707031, 4.609278 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.421631, 4.291636 ], [ 27.971191, 4.412137 ], [ 27.366943, 5.244128 ], [ 27.213135, 5.561315 ], [ 26.455078, 5.954827 ], [ 26.213379, 6.555475 ], [ 25.795898, 6.980954 ], [ 25.114746, 7.504089 ], [ 25.114746, 7.830731 ], [ 24.565430, 8.233237 ], [ 23.884277, 8.624472 ], [ 24.191895, 8.733077 ], [ 24.532471, 8.917634 ], [ 24.785156, 9.817329 ], [ 25.059814, 10.282491 ], [ 25.784912, 10.412183 ], [ 25.960693, 10.141932 ], [ 26.477051, 9.557417 ], [ 26.751709, 9.470736 ], [ 27.103271, 9.644077 ], [ 27.828369, 9.611582 ], [ 27.960205, 9.405710 ], [ 28.959961, 9.405710 ], [ 28.992920, 9.611582 ], [ 29.509277, 9.795678 ], [ 29.608154, 10.087854 ], [ 29.992676, 10.293301 ], [ 30.827637, 9.709057 ], [ 31.343994, 9.817329 ], [ 31.849365, 10.541821 ], [ 32.398682, 11.081385 ], [ 32.310791, 11.684514 ], [ 32.069092, 11.974845 ], [ 32.673340, 12.028576 ], [ 32.739258, 12.254128 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.902832, 14.966013 ], [ 38.507080, 14.509144 ], [ 39.089355, 14.743011 ], [ 39.331055, 14.541050 ], [ 40.023193, 14.519780 ], [ 40.891113, 14.125922 ], [ 41.154785, 13.774066 ], [ 41.594238, 13.453737 ], [ 42.000732, 12.876070 ], [ 42.341309, 12.543840 ], [ 41.989746, 12.103781 ], [ 41.660156, 11.641476 ], [ 41.737061, 11.361568 ], [ 41.748047, 11.059821 ], [ 42.308350, 11.038255 ], [ 42.550049, 11.113727 ], [ 42.769775, 10.930405 ], [ 42.550049, 10.574222 ], [ 42.923584, 10.022948 ], [ 43.286133, 9.546583 ], [ 43.670654, 9.188870 ], [ 45.000000, 8.711359 ], [ 45.878906, 8.396300 ], [ 45.878906, 5.976680 ], [ 45.000000, 5.047171 ], [ 44.956055, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.758789, 4.258768 ], [ 42.121582, 4.236856 ], [ 41.846924, 3.919060 ], [ 41.165771, 3.930020 ], [ 40.759277, 4.258768 ], [ 39.847412, 3.842332 ], [ 39.550781, 3.425692 ], [ 38.891602, 3.502455 ], [ 38.660889, 3.623071 ], [ 38.430176, 3.590178 ], [ 38.111572, 3.601142 ], [ 36.848145, 4.455951 ], [ 36.156006, 4.455951 ], [ 35.815430, 4.784469 ], [ 35.815430, 5.342583 ], [ 35.288086, 5.506640 ], [ 34.705811, 6.599131 ], [ 34.244385, 6.828261 ], [ 34.068604, 7.231699 ], [ 33.563232, 7.721878 ], [ 32.947998, 7.787194 ], [ 33.288574, 8.363693 ], [ 33.815918, 8.385431 ], [ 33.969727, 8.689639 ], [ 33.958740, 9.589917 ], [ 34.255371, 10.639014 ], [ 34.727783, 10.919618 ], [ 34.826660, 11.329253 ], [ 35.255127, 12.093039 ], [ 35.859375, 12.586732 ], [ 36.265869, 13.571242 ], [ 36.419678, 14.424040 ], [ 37.584229, 14.221789 ], [ 37.902832, 14.966013 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.878906, 35.773258 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.756490 ], [ 44.769287, 37.177826 ], [ 44.219971, 37.978845 ], [ 44.417725, 38.281313 ], [ 44.099121, 39.436193 ], [ 44.791260, 39.715638 ], [ 44.945068, 39.342794 ], [ 45.000000, 39.300299 ], [ 45.450439, 38.882481 ], [ 45.878906, 38.796908 ], [ 45.878906, 35.773258 ] ] ], [ [ [ 45.878906, 34.912962 ], [ 45.878906, 33.339707 ], [ 45.406494, 33.970698 ], [ 45.648193, 34.750640 ], [ 45.878906, 34.912962 ] ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 39.188232, 32.166313 ], [ 40.396729, 31.896214 ], [ 41.879883, 31.194008 ], [ 44.703369, 29.180941 ], [ 45.000000, 29.171349 ], [ 45.878906, 29.132970 ], [ 45.878906, 17.287709 ], [ 45.395508, 17.340152 ], [ 45.208740, 17.434511 ], [ 45.000000, 17.434511 ], [ 44.055176, 17.413546 ], [ 43.791504, 17.329664 ], [ 43.374023, 17.581194 ], [ 43.110352, 17.098792 ], [ 43.209229, 16.667769 ], [ 42.769775, 16.351768 ], [ 42.648926, 16.783506 ], [ 42.341309, 17.077790 ], [ 42.264404, 17.476432 ], [ 41.748047, 17.842833 ], [ 41.220703, 18.677471 ], [ 40.935059, 19.487308 ], [ 40.242920, 20.179724 ], [ 39.792480, 20.344627 ], [ 39.133301, 21.299611 ], [ 39.023438, 21.993989 ], [ 39.056396, 22.583583 ], [ 38.485107, 23.694835 ], [ 38.023682, 24.086589 ], [ 37.474365, 24.287027 ], [ 37.144775, 24.866503 ], [ 37.199707, 25.085599 ], [ 36.925049, 25.611810 ], [ 36.639404, 25.829561 ], [ 36.243896, 26.578702 ], [ 35.123291, 28.071980 ], [ 34.628906, 28.062286 ], [ 34.782715, 28.613459 ], [ 34.826660, 28.960089 ], [ 34.947510, 29.363027 ], [ 36.068115, 29.200123 ], [ 36.496582, 29.506549 ], [ 36.738281, 29.869229 ], [ 37.496338, 30.012031 ], [ 37.661133, 30.344436 ], [ 37.990723, 30.514949 ], [ 37.001953, 31.512996 ], [ 39.001465, 32.017392 ], [ 39.188232, 32.166313 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.642090, 5.266008 ], [ 26.400146, 5.156599 ], [ 27.037354, 5.134715 ], [ 27.366943, 5.244128 ], [ 27.971191, 4.412137 ], [ 28.421631, 4.291636 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.707031, 4.609278 ], [ 29.948730, 4.182073 ], [ 30.827637, 3.513421 ], [ 30.772705, 2.350415 ], [ 31.168213, 2.207705 ], [ 30.849609, 1.856365 ], [ 30.465088, 1.592812 ], [ 30.080566, 1.065612 ], [ 29.871826, 0.604237 ], [ 29.827881, 0.000000 ], [ 29.816895, -0.197754 ], [ 29.586182, -0.582265 ], [ 29.575195, -0.878872 ], [ 17.336426, -0.878872 ], [ 17.523193, -0.736064 ], [ 17.633057, -0.417477 ], [ 17.655029, -0.054932 ], [ 17.687988, 0.000000 ], [ 17.819824, 0.296630 ], [ 17.764893, 0.856902 ], [ 17.896729, 1.746556 ], [ 18.083496, 2.372369 ], [ 18.391113, 2.910125 ], [ 18.533936, 4.203986 ], [ 18.929443, 4.718778 ], [ 19.467773, 5.036227 ], [ 20.280762, 4.696879 ], [ 20.917969, 4.324501 ], [ 21.654053, 4.225900 ], [ 22.401123, 4.039618 ], [ 22.697754, 4.642130 ], [ 22.840576, 4.718778 ], [ 23.291016, 4.620229 ], [ 24.400635, 5.112830 ], [ 24.796143, 4.904887 ], [ 25.125732, 4.937724 ], [ 25.268555, 5.178482 ], [ 25.642090, 5.266008 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -0.878906, 54.572062 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.677188 ], [ 0.175781, 53.330873 ], [ 0.461426, 52.935397 ], [ 1.680908, 52.742943 ], [ 1.549072, 52.106505 ], [ 1.043701, 51.808615 ], [ 1.439209, 51.296276 ], [ 0.549316, 50.771208 ], [ 0.000000, 50.771208 ], [ -0.791016, 50.778155 ], [ -0.878906, 50.764259 ], [ -0.878906, 54.572062 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.382324, 43.012681 ], [ 9.558105, 42.155259 ], [ 9.228516, 41.385052 ], [ 8.767090, 41.590797 ], [ 8.536377, 42.261049 ], [ 8.745117, 42.633959 ], [ 9.382324, 43.012681 ] ] ], [ [ [ 2.504883, 51.151786 ], [ 2.647705, 50.798991 ], [ 3.120117, 50.785102 ], [ 3.581543, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.790039, 49.986552 ], [ 5.668945, 49.532339 ], [ 5.888672, 49.446700 ], [ 6.185303, 49.468124 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.023461 ], [ 7.591553, 48.334343 ], [ 7.459717, 47.620975 ], [ 7.185059, 47.450380 ], [ 6.734619, 47.546872 ], [ 6.767578, 47.294134 ], [ 6.031494, 46.732331 ], [ 6.020508, 46.278631 ], [ 6.492920, 46.430285 ], [ 6.833496, 45.996962 ], [ 6.800537, 45.713851 ], [ 7.086182, 45.336702 ], [ 6.745605, 45.034715 ], [ 6.998291, 44.260937 ], [ 7.547607, 44.134913 ], [ 7.426758, 43.699651 ], [ 6.525879, 43.133061 ], [ 4.548340, 43.405047 ], [ 3.098145, 43.076913 ], [ 2.977295, 42.480200 ], [ 1.823730, 42.350425 ], [ 0.692139, 42.803462 ], [ 0.329590, 42.585444 ], [ 0.000000, 42.666281 ], [ -0.878906, 42.884015 ], [ -0.878906, 49.389524 ], [ 0.000000, 49.681847 ], [ 1.329346, 50.127622 ], [ 1.636963, 50.951506 ], [ 2.504883, 51.151786 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.878906, 42.884015 ], [ 0.000000, 42.666281 ], [ 0.329590, 42.585444 ], [ 0.692139, 42.803462 ], [ 1.823730, 42.350425 ], [ 2.977295, 42.480200 ], [ 3.032227, 41.894100 ], [ 2.087402, 41.228249 ], [ 0.802002, 41.021355 ], [ 0.791016, 40.979898 ], [ 0.714111, 40.680638 ], [ 0.307617, 40.313043 ], [ -0.878906, 40.313043 ], [ -0.878906, 42.884015 ] ] ] } } +, +{ "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": [ [ [ [ 45.878906, 66.861082 ], [ 45.878906, 42.057450 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 45.000000, 42.609706 ], [ 44.527588, 42.714732 ], [ 43.923340, 42.561173 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.221190 ], [ 40.913086, 43.389082 ], [ 40.067139, 43.556510 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.284537 ], [ 37.529297, 44.660839 ], [ 36.672363, 45.251688 ], [ 37.397461, 45.406164 ], [ 38.232422, 46.248250 ], [ 37.672119, 46.641894 ], [ 39.144287, 47.047669 ], [ 39.111328, 47.264320 ], [ 38.221436, 47.107523 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.239309 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.930008 ], [ 38.001709, 49.915862 ], [ 37.386475, 50.387508 ], [ 36.617432, 50.226124 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.013428, 51.213766 ], [ 34.222412, 51.261915 ], [ 34.134521, 51.570241 ], [ 34.387207, 51.774638 ], [ 33.750000, 52.335339 ], [ 32.706299, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.156982, 52.066000 ], [ 31.783447, 52.106505 ], [ 31.530762, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.684326, 53.357109 ], [ 32.398682, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.783447, 53.975474 ], [ 31.376953, 54.162434 ], [ 30.750732, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.795105 ], [ 29.366455, 55.671389 ], [ 29.223633, 55.918430 ], [ 28.168945, 56.170023 ], [ 27.850342, 56.764768 ], [ 27.762451, 57.249338 ], [ 27.279053, 57.480403 ], [ 27.707520, 57.792089 ], [ 27.410889, 58.728302 ], [ 28.125000, 59.305160 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.505935 ], [ 30.201416, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.870179 ], [ 30.025635, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.951465 ], [ 30.212402, 65.807279 ], [ 29.498291, 66.513260 ], [ 29.135742, 66.861082 ], [ 41.110840, 66.861082 ], [ 41.121826, 66.791909 ], [ 40.528564, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.375244, 66.000150 ], [ 35.375977, 66.513260 ], [ 33.914795, 66.761585 ], [ 33.178711, 66.635556 ], [ 33.442383, 66.513260 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.221924, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.335150 ], [ 36.529541, 64.764759 ], [ 37.166748, 65.146115 ], [ 39.583740, 64.524823 ], [ 40.429688, 64.764759 ], [ 39.759521, 65.499298 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.421143 ], [ 43.945312, 66.071546 ], [ 44.318848, 66.513260 ], [ 44.527588, 66.757250 ], [ 44.384766, 66.861082 ], [ 45.878906, 66.861082 ] ] ], [ [ [ 21.258545, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.642822, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.885010, 54.316523 ], [ 19.654541, 54.431713 ], [ 19.885254, 54.870285 ], [ 21.258545, 55.191412 ] ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 15.699463, 66.861082 ], [ 15.391846, 66.513260 ], [ 15.106201, 66.196009 ], [ 13.546143, 64.788168 ], [ 13.919678, 64.449111 ], [ 13.568115, 64.052978 ], [ 12.579346, 64.067396 ], [ 11.920166, 63.129538 ], [ 11.986084, 61.804284 ], [ 12.623291, 61.296626 ], [ 12.293701, 60.119619 ], [ 11.458740, 59.433903 ], [ 11.019287, 58.859224 ], [ 10.349121, 59.472989 ], [ 8.371582, 58.315260 ], [ 7.042236, 58.083685 ], [ 5.657959, 58.591162 ], [ 5.306396, 59.667741 ], [ 4.987793, 61.975106 ], [ 5.910645, 62.618615 ], [ 8.547363, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.348633, 65.883704 ], [ 13.117676, 66.513260 ], [ 13.546143, 66.861082 ], [ 15.699463, 66.861082 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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": "Polygon", "coordinates": [ [ [ 23.554688, 66.861082 ], [ 23.554688, 66.513260 ], [ 23.565674, 66.399160 ], [ 23.895264, 66.009086 ], [ 22.181396, 65.726110 ], [ 21.203613, 65.030423 ], [ 21.368408, 64.415921 ], [ 19.775391, 63.612100 ], [ 17.841797, 62.749696 ], [ 17.116699, 61.344078 ], [ 17.830811, 60.640876 ], [ 18.786621, 60.086763 ], [ 17.863770, 58.955674 ], [ 16.820068, 58.722599 ], [ 16.446533, 57.046706 ], [ 15.875244, 56.108810 ], [ 14.655762, 56.206704 ], [ 14.095459, 55.410307 ], [ 12.941895, 55.366625 ], [ 12.623291, 56.310443 ], [ 11.777344, 57.444949 ], [ 11.019287, 58.859224 ], [ 11.458740, 59.433903 ], [ 12.293701, 60.119619 ], [ 12.623291, 61.296626 ], [ 11.986084, 61.804284 ], [ 11.920166, 63.129538 ], [ 12.579346, 64.067396 ], [ 13.568115, 64.052978 ], [ 13.919678, 64.449111 ], [ 13.546143, 64.788168 ], [ 15.106201, 66.196009 ], [ 15.391846, 66.513260 ], [ 15.699463, 66.861082 ], [ 23.554688, 66.861082 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.920654, 54.983918 ], [ 9.931641, 54.597528 ], [ 10.942383, 54.367759 ], [ 10.931396, 54.014225 ], [ 11.953125, 54.201010 ], [ 12.513428, 54.476422 ], [ 13.645020, 54.078729 ], [ 14.117432, 53.761702 ], [ 14.348145, 53.252069 ], [ 14.073486, 52.981723 ], [ 14.436035, 52.629729 ], [ 14.677734, 52.093008 ], [ 14.600830, 51.747439 ], [ 15.007324, 51.110420 ], [ 14.567871, 51.006842 ], [ 14.304199, 51.117317 ], [ 14.051514, 50.930738 ], [ 13.337402, 50.736455 ], [ 12.963867, 50.485474 ], [ 12.238770, 50.268277 ], [ 12.414551, 49.972422 ], [ 12.513428, 49.553726 ], [ 13.029785, 49.310799 ], [ 13.590088, 48.879167 ], [ 13.238525, 48.421910 ], [ 12.875977, 48.290503 ], [ 13.018799, 47.643186 ], [ 12.930908, 47.472663 ], [ 12.612305, 47.672786 ], [ 12.139893, 47.709762 ], [ 11.425781, 47.524620 ], [ 10.535889, 47.569114 ], [ 10.393066, 47.309034 ], [ 9.887695, 47.583937 ], [ 9.591064, 47.532038 ], [ 8.514404, 47.835283 ], [ 8.316650, 47.620975 ], [ 7.459717, 47.620975 ], [ 7.591553, 48.334343 ], [ 8.096924, 49.023461 ], [ 6.657715, 49.203243 ], [ 6.185303, 49.468124 ], [ 6.240234, 49.908787 ], [ 6.042480, 50.134664 ], [ 6.152344, 50.805935 ], [ 5.987549, 51.856139 ], [ 6.580811, 51.856139 ], [ 6.833496, 52.234528 ], [ 7.086182, 53.146770 ], [ 6.899414, 53.488046 ], [ 7.097168, 53.696706 ], [ 7.932129, 53.748711 ], [ 8.118896, 53.533778 ], [ 8.800049, 54.027133 ], [ 8.569336, 54.399748 ], [ 8.525391, 54.965002 ], [ 9.272461, 54.832336 ], [ 9.920654, 54.983918 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Poland", "sov_a3": "POL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Poland", "adm0_a3": "POL", "geou_dif": 0, "geounit": "Poland", "gu_a3": "POL", "su_dif": 0, "subunit": "Poland", "su_a3": "POL", "brk_diff": 0, "name": "Poland", "name_long": "Poland", "brk_a3": "POL", "brk_name": "Poland", "abbrev": "Pol.", "postal": "PL", "formal_en": "Republic of Poland", "name_sort": "Poland", "mapcolor7": 3, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 38482919, "gdp_md_est": 667900, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PL", "iso_a3": "POL", "iso_n3": "616", "un_a3": "616", "wb_a2": "PL", "wb_a3": "POL", "woe_id": -99, "adm0_a3_is": "POL", "adm0_a3_us": "POL", "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": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.622070, 54.857640 ], [ 18.610840, 54.686534 ], [ 18.687744, 54.444492 ], [ 19.654541, 54.431713 ], [ 20.885010, 54.316523 ], [ 22.730713, 54.329338 ], [ 23.236084, 54.226708 ], [ 23.477783, 53.917281 ], [ 23.521729, 53.474970 ], [ 23.796387, 53.094024 ], [ 23.796387, 52.696361 ], [ 23.192139, 52.489470 ], [ 23.499756, 52.025459 ], [ 23.521729, 51.583897 ], [ 24.027100, 50.708634 ], [ 23.917236, 50.429518 ], [ 23.422852, 50.310392 ], [ 22.510986, 49.482401 ], [ 22.774658, 49.030665 ], [ 22.554932, 49.088258 ], [ 21.599121, 49.475263 ], [ 20.885010, 49.332282 ], [ 20.412598, 49.432413 ], [ 19.819336, 49.217597 ], [ 19.313965, 49.575102 ], [ 18.907471, 49.439557 ], [ 18.391113, 49.993615 ], [ 17.644043, 50.050085 ], [ 17.545166, 50.366489 ], [ 16.864014, 50.478483 ], [ 16.710205, 50.219095 ], [ 16.171875, 50.429518 ], [ 16.237793, 50.701677 ], [ 15.490723, 50.785102 ], [ 15.007324, 51.110420 ], [ 14.600830, 51.747439 ], [ 14.677734, 52.093008 ], [ 14.436035, 52.629729 ], [ 14.073486, 52.981723 ], [ 14.348145, 53.252069 ], [ 14.117432, 53.761702 ], [ 14.798584, 54.052939 ], [ 16.358643, 54.514704 ], [ 17.622070, 54.857640 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.135742, 66.861082 ], [ 29.498291, 66.513260 ], [ 30.212402, 65.807279 ], [ 29.542236, 64.951465 ], [ 30.443115, 64.206377 ], [ 30.025635, 63.553446 ], [ 31.508789, 62.870179 ], [ 31.135254, 62.359805 ], [ 30.201416, 61.783513 ], [ 28.059082, 60.505935 ], [ 26.246338, 60.424699 ], [ 24.488525, 60.059358 ], [ 22.862549, 59.850333 ], [ 22.280273, 60.392148 ], [ 21.313477, 60.721571 ], [ 21.544189, 61.705499 ], [ 21.049805, 62.608508 ], [ 21.533203, 63.194018 ], [ 22.434082, 63.821288 ], [ 24.730225, 64.904910 ], [ 25.389404, 65.113772 ], [ 25.290527, 65.535721 ], [ 23.895264, 66.009086 ], [ 23.565674, 66.399160 ], [ 23.554688, 66.513260 ], [ 23.554688, 66.861082 ], [ 29.135742, 66.861082 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 33.750000, 52.335339 ], [ 34.387207, 51.774638 ], [ 34.134521, 51.570241 ], [ 34.222412, 51.261915 ], [ 35.013428, 51.213766 ], [ 35.375977, 50.778155 ], [ 35.354004, 50.583237 ], [ 36.617432, 50.226124 ], [ 37.386475, 50.387508 ], [ 38.001709, 49.915862 ], [ 38.594971, 49.930008 ], [ 40.067139, 49.603591 ], [ 40.078125, 49.310799 ], [ 39.671631, 48.785152 ], [ 39.891357, 48.239309 ], [ 39.737549, 47.901614 ], [ 38.759766, 47.827908 ], [ 38.254395, 47.546872 ], [ 38.221436, 47.107523 ], [ 37.419434, 47.025206 ], [ 36.749268, 46.702202 ], [ 35.815430, 46.649436 ], [ 34.958496, 46.278631 ], [ 35.013428, 45.652448 ], [ 35.507812, 45.413876 ], [ 36.529541, 45.475540 ], [ 36.331787, 45.120053 ], [ 35.233154, 44.941473 ], [ 33.881836, 44.363133 ], [ 33.321533, 44.566991 ], [ 33.541260, 45.042478 ], [ 32.453613, 45.328979 ], [ 32.629395, 45.521744 ], [ 33.585205, 45.851760 ], [ 33.288574, 46.080852 ], [ 31.739502, 46.339343 ], [ 31.673584, 46.709736 ], [ 30.739746, 46.589069 ], [ 30.377197, 46.035109 ], [ 29.597168, 45.298075 ], [ 29.146729, 45.467836 ], [ 28.674316, 45.305803 ], [ 28.223877, 45.490946 ], [ 28.476562, 45.598666 ], [ 28.652344, 45.943511 ], [ 28.927002, 46.263443 ], [ 28.861084, 46.445427 ], [ 29.069824, 46.521076 ], [ 29.168701, 46.384833 ], [ 29.750977, 46.354511 ], [ 30.014648, 46.430285 ], [ 29.827881, 46.528635 ], [ 29.904785, 46.679594 ], [ 29.553223, 46.935261 ], [ 29.410400, 47.353711 ], [ 29.047852, 47.517201 ], [ 29.113770, 47.850031 ], [ 28.663330, 48.122101 ], [ 28.256836, 48.158757 ], [ 27.520752, 48.472921 ], [ 26.850586, 48.370848 ], [ 26.608887, 48.224673 ], [ 26.191406, 48.224673 ], [ 25.938721, 47.989922 ], [ 25.202637, 47.894248 ], [ 24.862061, 47.739323 ], [ 24.400635, 47.982568 ], [ 23.752441, 47.989922 ], [ 23.137207, 48.100095 ], [ 22.708740, 47.886881 ], [ 22.631836, 48.151428 ], [ 22.082520, 48.429201 ], [ 22.280273, 48.828566 ], [ 22.554932, 49.088258 ], [ 22.774658, 49.030665 ], [ 22.510986, 49.482401 ], [ 23.422852, 50.310392 ], [ 23.917236, 50.429518 ], [ 24.027100, 50.708634 ], [ 23.521729, 51.583897 ], [ 23.994141, 51.618017 ], [ 24.543457, 51.890054 ], [ 25.323486, 51.917168 ], [ 26.334229, 51.835778 ], [ 27.443848, 51.597548 ], [ 28.234863, 51.577070 ], [ 28.608398, 51.433464 ], [ 28.981934, 51.604372 ], [ 29.245605, 51.371780 ], [ 30.146484, 51.419764 ], [ 30.552979, 51.323747 ], [ 30.618896, 51.828988 ], [ 30.926514, 52.045734 ], [ 31.783447, 52.106505 ], [ 32.156982, 52.066000 ], [ 32.409668, 52.295042 ], [ 32.706299, 52.241256 ], [ 33.750000, 52.335339 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.167236, 42.041134 ], [ 36.903076, 41.335576 ], [ 38.221436, 40.979898 ], [ 38.342285, 40.955011 ], [ 38.583984, 40.979898 ], [ 39.506836, 41.104191 ], [ 40.363770, 41.021355 ], [ 41.550293, 41.541478 ], [ 42.615967, 41.590797 ], [ 43.571777, 41.095912 ], [ 43.626709, 40.979898 ], [ 43.747559, 40.747257 ], [ 43.659668, 40.313043 ], [ 27.147217, 40.313043 ], [ 27.279053, 40.421860 ], [ 28.817139, 40.463666 ], [ 29.102783, 40.979898 ], [ 29.234619, 41.228249 ], [ 31.135254, 41.087632 ], [ 32.343750, 41.738528 ], [ 33.508301, 42.024814 ], [ 35.167236, 42.041134 ] ] ], [ [ [ 27.125244, 42.147114 ], [ 27.993164, 42.008489 ], [ 28.114014, 41.623655 ], [ 28.981934, 41.302571 ], [ 28.806152, 41.062786 ], [ 27.608643, 41.004775 ], [ 27.586670, 40.979898 ], [ 27.191162, 40.697299 ], [ 26.597900, 40.313043 ], [ 26.246338, 40.313043 ], [ 26.037598, 40.622292 ], [ 26.048584, 40.830437 ], [ 26.290283, 40.938415 ], [ 26.312256, 40.979898 ], [ 26.597900, 41.566142 ], [ 26.114502, 41.828642 ], [ 27.125244, 42.147114 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 39.364014, 66.160511 ], [ 37.441406, 66.160511 ], [ 35.375977, 66.513260 ], [ 33.914795, 66.761585 ], [ 33.178711, 66.635556 ], [ 33.442383, 66.513260 ], [ 34.233398, 66.160511 ], [ 29.860840, 66.160511 ], [ 29.498291, 66.513260 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.443604, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.158650 ], [ 31.091309, 69.561390 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.507568, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.528564, 66.513260 ], [ 40.012207, 66.266856 ], [ 39.364014, 66.160511 ] ] ], [ [ [ 45.000000, 68.395135 ], [ 45.878906, 68.293779 ], [ 45.878906, 67.600849 ], [ 45.549316, 67.567334 ], [ 45.560303, 67.011719 ], [ 45.878906, 66.874030 ], [ 45.878906, 66.160511 ], [ 44.022217, 66.160511 ], [ 44.318848, 66.513260 ], [ 44.527588, 66.757250 ], [ 43.692627, 67.352555 ], [ 44.187012, 67.954025 ], [ 43.450928, 68.572428 ], [ 45.000000, 68.395135 ] ] ], [ [ [ 41.330566, 66.160511 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.421143 ], [ 43.703613, 66.160511 ], [ 41.330566, 66.160511 ] ] ] ] } } +, +{ "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": [ [ [ [ 28.157959, 71.187754 ], [ 31.289062, 70.455184 ], [ 30.003662, 70.188827 ], [ 31.091309, 69.561390 ], [ 29.399414, 69.158650 ], [ 28.586426, 69.068563 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.166473 ], [ 26.169434, 69.828260 ], [ 25.686035, 69.096020 ], [ 24.730225, 68.652556 ], [ 23.653564, 68.895187 ], [ 22.346191, 68.843700 ], [ 21.236572, 69.372573 ], [ 20.643311, 69.107777 ], [ 20.017090, 69.068563 ], [ 19.874268, 68.407268 ], [ 17.984619, 68.568414 ], [ 17.720947, 68.011685 ], [ 16.765137, 68.015798 ], [ 15.391846, 66.513260 ], [ 15.062256, 66.160511 ], [ 12.689209, 66.160511 ], [ 13.117676, 66.513260 ], [ 14.754639, 67.813394 ], [ 16.435547, 68.564399 ], [ 19.182129, 69.820681 ], [ 21.368408, 70.255741 ], [ 23.016357, 70.203715 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.157959, 71.187754 ] ] ], [ [ [ 19.896240, 79.335219 ], [ 20.610352, 79.171335 ], [ 21.533203, 78.956665 ], [ 19.017334, 78.562667 ], [ 18.468018, 77.827957 ], [ 17.589111, 77.638894 ], [ 17.116699, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.382306 ], [ 14.666748, 77.737285 ], [ 13.161621, 78.025574 ], [ 11.217041, 78.870048 ], [ 10.755615, 79.335219 ], [ 19.896240, 79.335219 ] ] ], [ [ [ 22.873535, 78.455425 ], [ 23.280029, 78.080156 ], [ 24.719238, 77.855723 ], [ 22.489014, 77.446940 ], [ 20.720215, 77.678812 ], [ 21.412354, 77.936352 ], [ 20.808105, 78.255861 ], [ 22.873535, 78.455425 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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": "Polygon", "coordinates": [ [ [ 20.643311, 69.107777 ], [ 21.972656, 68.620539 ], [ 23.532715, 67.937524 ], [ 23.554688, 66.513260 ], [ 23.565674, 66.399160 ], [ 23.763428, 66.160511 ], [ 15.062256, 66.160511 ], [ 15.391846, 66.513260 ], [ 16.765137, 68.015798 ], [ 17.720947, 68.011685 ], [ 17.984619, 68.568414 ], [ 19.874268, 68.407268 ], [ 20.017090, 69.068563 ], [ 20.643311, 69.107777 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.729492, 70.166473 ], [ 29.014893, 69.767557 ], [ 28.586426, 69.068563 ], [ 28.443604, 68.366801 ], [ 29.970703, 67.701110 ], [ 29.047852, 66.947274 ], [ 29.498291, 66.513260 ], [ 29.860840, 66.160511 ], [ 23.763428, 66.160511 ], [ 23.565674, 66.399160 ], [ 23.554688, 66.513260 ], [ 23.532715, 67.937524 ], [ 21.972656, 68.620539 ], [ 20.643311, 69.107777 ], [ 21.236572, 69.372573 ], [ 22.346191, 68.843700 ], [ 23.653564, 68.895187 ], [ 24.730225, 68.652556 ], [ 25.686035, 69.096020 ], [ 26.169434, 69.828260 ], [ 27.729492, 70.166473 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 45.878906, 80.688011 ], [ 45.878906, 80.577145 ], [ 45.000000, 80.587930 ], [ 44.846191, 80.591523 ], [ 45.000000, 80.605880 ], [ 45.878906, 80.688011 ] ] ] } } +, +{ "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": [ [ [ [ 16.984863, 80.052358 ], [ 18.248291, 79.702907 ], [ 20.610352, 79.171335 ], [ 21.324463, 79.004962 ], [ 11.085205, 79.004962 ], [ 10.920410, 79.171335 ], [ 10.437012, 79.653695 ], [ 13.161621, 80.010518 ], [ 13.710938, 79.661584 ], [ 15.139160, 79.675377 ], [ 15.512695, 80.016233 ], [ 16.984863, 80.052358 ] ] ], [ [ [ 22.917480, 80.657741 ], [ 25.444336, 80.408388 ], [ 27.399902, 80.058050 ], [ 25.916748, 79.518659 ], [ 23.016357, 79.400085 ], [ 20.072021, 79.568506 ], [ 19.896240, 79.843346 ], [ 18.457031, 79.860768 ], [ 17.358398, 80.320120 ], [ 20.445557, 80.598704 ], [ 21.906738, 80.358836 ], [ 22.917480, 80.657741 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Madagascar", "sov_a3": "MDG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Madagascar", "adm0_a3": "MDG", "geou_dif": 0, "geounit": "Madagascar", "gu_a3": "MDG", "su_dif": 0, "subunit": "Madagascar", "su_a3": "MDG", "brk_diff": 0, "name": "Madagascar", "name_long": "Madagascar", "brk_a3": "MDG", "brk_name": "Madagascar", "abbrev": "Mad.", "postal": "MG", "formal_en": "Republic of Madagascar", "name_sort": "Madagascar", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 20653556, "gdp_md_est": 20130, "pop_year": -99, "lastcensus": 1993, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MG", "iso_a3": "MDG", "iso_n3": "450", "un_a3": "450", "wb_a2": "MG", "wb_a3": "MDG", "woe_id": -99, "adm0_a3_is": "MDG", "adm0_a3_us": "MDG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.185791, -12.039321 ], [ 49.537354, -12.468760 ], [ 49.801025, -12.886780 ], [ 50.053711, -13.549881 ], [ 50.207520, -14.753635 ], [ 50.471191, -15.220589 ], [ 50.372314, -15.697086 ], [ 50.196533, -15.993015 ], [ 49.855957, -15.411319 ], [ 49.669189, -15.707663 ], [ 49.855957, -16.446622 ], [ 49.768066, -16.867634 ], [ 49.493408, -17.098792 ], [ 49.427490, -17.947381 ], [ 48.537598, -20.488773 ], [ 47.922363, -22.390714 ], [ 47.537842, -23.775291 ], [ 47.087402, -24.936257 ], [ 46.274414, -25.175117 ], [ 45.406494, -25.591994 ], [ 45.000000, -25.413509 ], [ 44.121094, -25.015929 ], [ 44.121094, -20.468189 ], [ 44.373779, -20.066251 ], [ 44.461670, -19.425154 ], [ 44.230957, -18.958246 ], [ 44.121094, -18.583776 ], [ 44.121094, -17.151288 ], [ 44.307861, -16.846605 ], [ 44.439697, -16.214675 ], [ 44.934082, -16.172473 ], [ 45.000000, -16.151369 ], [ 45.494385, -15.971892 ], [ 45.867920, -15.792254 ], [ 46.307373, -15.771109 ], [ 46.878662, -15.209988 ], [ 47.702637, -14.594216 ], [ 47.999268, -14.083301 ], [ 47.867432, -13.656663 ], [ 48.284912, -13.774066 ], [ 48.834229, -13.079478 ], [ 48.856201, -12.479487 ], [ 49.185791, -12.039321 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 48.328857, 41.640078 ], [ 47.977295, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.889648, 41.640078 ], [ 48.328857, 41.640078 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 44.121094, 39.385264 ], [ 44.417725, 38.281313 ], [ 44.219971, 37.978845 ], [ 44.769287, 37.177826 ], [ 44.285889, 37.002553 ], [ 44.121094, 37.134045 ], [ 44.121094, 39.385264 ] ] ], [ [ [ 44.121094, 39.436193 ], [ 44.121094, 40.103286 ], [ 44.395752, 40.010787 ], [ 44.791260, 39.715638 ], [ 44.121094, 39.436193 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.121094, 9.026153 ], [ 45.000000, 8.711359 ], [ 46.944580, 8.004837 ], [ 47.779541, 8.004837 ], [ 45.000000, 5.047171 ], [ 44.956055, 5.003394 ], [ 44.121094, 4.981505 ], [ 44.121094, 9.026153 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 69.543457, 41.640078 ], [ 69.060059, 41.385052 ], [ 68.818359, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 66.708984, 41.170384 ], [ 66.588135, 41.640078 ], [ 69.543457, 41.640078 ] ] ], [ [ [ 55.964355, 41.640078 ], [ 55.964355, 41.310824 ], [ 55.447998, 41.261291 ], [ 55.107422, 41.640078 ], [ 55.964355, 41.640078 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 70.565186, 41.640078 ], [ 70.411377, 41.525030 ], [ 71.147461, 41.145570 ], [ 71.861572, 41.393294 ], [ 72.795410, 40.979898 ], [ 73.048096, 40.871988 ], [ 71.773682, 40.153687 ], [ 71.004639, 40.245992 ], [ 70.598145, 40.220830 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.323730, 40.730608 ], [ 69.005127, 40.086477 ], [ 68.532715, 39.537940 ], [ 67.697754, 39.588757 ], [ 67.434082, 39.147103 ], [ 68.170166, 38.908133 ], [ 68.389893, 38.160476 ], [ 67.829590, 37.151561 ], [ 67.071533, 37.361426 ], [ 66.511230, 37.370157 ], [ 66.544189, 37.978845 ], [ 65.214844, 38.410558 ], [ 64.160156, 38.899583 ], [ 63.511963, 39.368279 ], [ 62.369385, 40.061257 ], [ 61.929932, 40.979898 ], [ 61.875000, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.457764, 41.228249 ], [ 60.073242, 41.426253 ], [ 60.051270, 41.640078 ], [ 66.588135, 41.640078 ], [ 66.708984, 41.170384 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 68.818359, 40.979898 ], [ 69.060059, 41.385052 ], [ 69.543457, 41.640078 ], [ 70.565186, 41.640078 ] ] ], [ [ [ 56.986084, 41.640078 ], [ 57.095947, 41.327326 ], [ 55.964355, 41.310824 ], [ 55.964355, 41.640078 ], [ 56.986084, 41.640078 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.791260, 39.715638 ], [ 44.945068, 39.342794 ], [ 45.000000, 39.300299 ], [ 45.450439, 38.882481 ], [ 46.142578, 38.745515 ], [ 46.505127, 38.771216 ], [ 47.680664, 39.512517 ], [ 48.054199, 39.588757 ], [ 48.350830, 39.291797 ], [ 48.010254, 38.796908 ], [ 48.625488, 38.272689 ], [ 48.878174, 38.324420 ], [ 49.196777, 37.588119 ], [ 50.141602, 37.378888 ], [ 50.833740, 36.879621 ], [ 52.261963, 36.703660 ], [ 53.822021, 36.967449 ], [ 53.920898, 37.204082 ], [ 54.799805, 37.396346 ], [ 55.502930, 37.970185 ], [ 56.173096, 37.935533 ], [ 56.612549, 38.125915 ], [ 57.326660, 38.030786 ], [ 58.425293, 37.527154 ], [ 59.227295, 37.413800 ], [ 60.369873, 36.536123 ], [ 61.116943, 36.491973 ], [ 61.204834, 35.657296 ], [ 60.798340, 34.406910 ], [ 60.523682, 33.678640 ], [ 60.963135, 33.532237 ], [ 60.534668, 32.990236 ], [ 60.853271, 32.184911 ], [ 60.941162, 31.550453 ], [ 61.699219, 31.381779 ], [ 61.776123, 30.741836 ], [ 60.864258, 29.831114 ], [ 61.358643, 29.305561 ], [ 61.765137, 28.700225 ], [ 62.720947, 28.265682 ], [ 62.753906, 27.381523 ], [ 63.226318, 27.225326 ], [ 63.314209, 26.765231 ], [ 61.864014, 26.244156 ], [ 61.490479, 25.085599 ], [ 59.611816, 25.383735 ], [ 58.524170, 25.611810 ], [ 57.392578, 25.740529 ], [ 56.964111, 26.971038 ], [ 56.491699, 27.147145 ], [ 55.722656, 26.971038 ], [ 54.711914, 26.490240 ], [ 53.492432, 26.814266 ], [ 52.481689, 27.586198 ], [ 51.514893, 27.868217 ], [ 50.844727, 28.815800 ], [ 50.108643, 30.154627 ], [ 49.570312, 29.993002 ], [ 48.933105, 30.325471 ], [ 48.559570, 29.935895 ], [ 48.010254, 30.458144 ], [ 47.999268, 30.987028 ], [ 47.680664, 30.987028 ], [ 47.845459, 31.709476 ], [ 47.329102, 32.472695 ], [ 46.098633, 33.017876 ], [ 45.406494, 33.970698 ], [ 45.648193, 34.750640 ], [ 46.142578, 35.101934 ], [ 46.065674, 35.684072 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.756490 ], [ 44.769287, 37.177826 ], [ 44.219971, 37.978845 ], [ 44.417725, 38.281313 ], [ 44.121094, 39.385264 ], [ 44.121094, 39.436193 ], [ 44.791260, 39.715638 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 44.121094, 29.602118 ], [ 44.703369, 29.180941 ], [ 45.000000, 29.171349 ], [ 46.560059, 29.104177 ], [ 47.449951, 29.008140 ], [ 47.702637, 28.526622 ], [ 48.405762, 28.555576 ], [ 48.801270, 27.693256 ], [ 49.295654, 27.469287 ], [ 49.460449, 27.117813 ], [ 50.141602, 26.696545 ], [ 50.207520, 26.283565 ], [ 50.108643, 25.948166 ], [ 50.229492, 25.611810 ], [ 50.526123, 25.334097 ], [ 50.657959, 25.005973 ], [ 50.800781, 24.756808 ], [ 51.108398, 24.557116 ], [ 51.383057, 24.637031 ], [ 51.569824, 24.246965 ], [ 51.613770, 24.016362 ], [ 51.998291, 23.008964 ], [ 54.997559, 22.502407 ], [ 55.206299, 22.715390 ], [ 55.656738, 22.004175 ], [ 54.997559, 20.004322 ], [ 51.998291, 19.010190 ], [ 49.108887, 18.625425 ], [ 48.175049, 18.166730 ], [ 47.460938, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.746826, 17.287709 ], [ 46.362305, 17.235252 ], [ 45.395508, 17.340152 ], [ 45.208740, 17.434511 ], [ 45.000000, 17.434511 ], [ 44.121094, 17.413546 ], [ 44.121094, 29.602118 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 60.051270, 41.640078 ], [ 60.073242, 41.426253 ], [ 60.457764, 41.228249 ], [ 61.545410, 41.269550 ], [ 61.875000, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.369385, 40.061257 ], [ 63.511963, 39.368279 ], [ 64.160156, 38.899583 ], [ 65.214844, 38.410558 ], [ 66.544189, 37.978845 ], [ 66.511230, 37.370157 ], [ 66.214600, 37.396346 ], [ 65.742188, 37.666429 ], [ 65.588379, 37.309014 ], [ 64.742432, 37.116526 ], [ 64.544678, 36.315125 ], [ 63.973389, 36.013561 ], [ 63.193359, 35.862344 ], [ 62.984619, 35.406961 ], [ 62.226562, 35.272532 ], [ 61.204834, 35.657296 ], [ 61.116943, 36.491973 ], [ 60.369873, 36.536123 ], [ 59.227295, 37.413800 ], [ 58.425293, 37.527154 ], [ 57.326660, 38.030786 ], [ 56.612549, 38.125915 ], [ 56.173096, 37.935533 ], [ 55.502930, 37.970185 ], [ 54.799805, 37.396346 ], [ 53.920898, 37.204082 ], [ 53.734131, 37.909534 ], [ 53.876953, 38.959409 ], [ 53.096924, 39.291797 ], [ 53.349609, 39.977120 ], [ 52.690430, 40.036027 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.638967 ], [ 54.733887, 40.955011 ], [ 54.700928, 40.979898 ], [ 53.997803, 41.557922 ], [ 53.953857, 41.640078 ], [ 55.107422, 41.640078 ], [ 55.447998, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.095947, 41.327326 ], [ 56.986084, 41.640078 ], [ 60.051270, 41.640078 ] ] ], [ [ [ 52.877197, 41.640078 ], [ 52.811279, 41.137296 ], [ 52.569580, 41.640078 ], [ 52.877197, 41.640078 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.795898, 38.487995 ], [ 71.345215, 38.264063 ], [ 71.235352, 37.961523 ], [ 71.531982, 37.909534 ], [ 71.444092, 37.072710 ], [ 71.839600, 36.738884 ], [ 72.191162, 36.949892 ], [ 72.630615, 37.055177 ], [ 73.256836, 37.501010 ], [ 73.937988, 37.422526 ], [ 74.970703, 37.422526 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.028869 ], [ 74.058838, 36.844461 ], [ 72.916260, 36.721274 ], [ 71.839600, 36.518466 ], [ 71.257324, 36.075742 ], [ 71.488037, 35.657296 ], [ 71.608887, 35.155846 ], [ 71.114502, 34.741612 ], [ 71.147461, 34.352507 ], [ 70.872803, 33.988918 ], [ 69.927979, 34.025348 ], [ 70.323486, 33.367237 ], [ 69.686279, 33.109948 ], [ 69.257812, 32.509762 ], [ 69.312744, 31.905541 ], [ 68.917236, 31.625321 ], [ 68.554688, 31.718822 ], [ 67.785645, 31.587894 ], [ 67.675781, 31.306715 ], [ 66.928711, 31.306715 ], [ 66.379395, 30.741836 ], [ 66.346436, 29.888281 ], [ 65.039062, 29.477861 ], [ 64.346924, 29.563902 ], [ 64.138184, 29.343875 ], [ 63.544922, 29.477861 ], [ 62.545166, 29.324720 ], [ 60.864258, 29.831114 ], [ 61.776123, 30.741836 ], [ 61.699219, 31.381779 ], [ 60.941162, 31.550453 ], [ 60.853271, 32.184911 ], [ 60.534668, 32.990236 ], [ 60.963135, 33.532237 ], [ 60.523682, 33.678640 ], [ 60.798340, 34.406910 ], [ 61.204834, 35.657296 ], [ 62.226562, 35.272532 ], [ 62.984619, 35.406961 ], [ 63.193359, 35.862344 ], [ 63.973389, 36.013561 ], [ 64.544678, 36.315125 ], [ 64.742432, 37.116526 ], [ 65.588379, 37.309014 ], [ 65.742188, 37.666429 ], [ 66.214600, 37.396346 ], [ 66.511230, 37.370157 ], [ 67.071533, 37.361426 ], [ 67.829590, 37.151561 ], [ 68.126221, 37.028869 ], [ 68.851318, 37.352693 ], [ 69.191895, 37.151561 ], [ 69.510498, 37.614231 ], [ 70.114746, 37.596824 ], [ 70.268555, 37.735969 ], [ 70.367432, 38.143198 ], [ 70.795898, 38.487995 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.157471, 37.134045 ], [ 75.893555, 36.668419 ], [ 76.190186, 35.906849 ], [ 77.827148, 35.496456 ], [ 76.871338, 34.660322 ], [ 75.750732, 34.506557 ], [ 74.234619, 34.750640 ], [ 73.740234, 34.325292 ], [ 74.102783, 33.449777 ], [ 74.443359, 32.768800 ], [ 75.256348, 32.277845 ], [ 74.399414, 31.700130 ], [ 74.410400, 30.987028 ], [ 73.443604, 29.983487 ], [ 72.817383, 28.969701 ], [ 71.773682, 27.916767 ], [ 70.609131, 27.994401 ], [ 69.510498, 26.941660 ], [ 70.158691, 26.500073 ], [ 70.279541, 25.730633 ], [ 70.839844, 25.224820 ], [ 71.037598, 24.357105 ], [ 68.840332, 24.367114 ], [ 68.170166, 23.694835 ], [ 67.434082, 23.946096 ], [ 67.137451, 24.666986 ], [ 66.368408, 25.433353 ], [ 64.522705, 25.244696 ], [ 62.896729, 25.224820 ], [ 61.490479, 25.085599 ], [ 61.864014, 26.244156 ], [ 63.314209, 26.765231 ], [ 63.226318, 27.225326 ], [ 62.753906, 27.381523 ], [ 62.720947, 28.265682 ], [ 61.765137, 28.700225 ], [ 61.358643, 29.305561 ], [ 60.864258, 29.831114 ], [ 62.545166, 29.324720 ], [ 63.544922, 29.477861 ], [ 64.138184, 29.343875 ], [ 64.346924, 29.563902 ], [ 65.039062, 29.477861 ], [ 66.346436, 29.888281 ], [ 66.379395, 30.741836 ], [ 66.928711, 31.306715 ], [ 67.675781, 31.306715 ], [ 67.785645, 31.587894 ], [ 68.554688, 31.718822 ], [ 68.917236, 31.625321 ], [ 69.312744, 31.905541 ], [ 69.257812, 32.509762 ], [ 69.686279, 33.109948 ], [ 70.323486, 33.367237 ], [ 69.927979, 34.025348 ], [ 70.872803, 33.988918 ], [ 71.147461, 34.352507 ], [ 71.114502, 34.741612 ], [ 71.608887, 35.155846 ], [ 71.488037, 35.657296 ], [ 71.257324, 36.075742 ], [ 71.839600, 36.518466 ], [ 72.916260, 36.721274 ], [ 74.058838, 36.844461 ], [ 74.575195, 37.028869 ], [ 75.157471, 37.134045 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.827148, 35.496456 ], [ 78.903809, 34.325292 ], [ 78.804932, 33.513919 ], [ 79.200439, 32.999450 ], [ 79.167480, 32.491230 ], [ 78.453369, 32.620870 ], [ 78.728027, 31.522361 ], [ 79.716797, 30.883369 ], [ 81.101074, 30.192618 ], [ 80.474854, 29.735762 ], [ 80.079346, 28.796546 ], [ 81.057129, 28.420391 ], [ 81.990967, 27.926474 ], [ 83.298340, 27.371767 ], [ 84.671631, 27.235095 ], [ 85.242920, 26.735799 ], [ 86.022949, 26.637639 ], [ 87.220459, 26.401711 ], [ 88.055420, 26.421390 ], [ 88.165283, 26.814266 ], [ 88.033447, 27.449790 ], [ 88.110352, 27.877928 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.108034 ], [ 89.736328, 26.725987 ], [ 90.000000, 26.784847 ], [ 90.362549, 26.882880 ], [ 90.878906, 26.843677 ], [ 90.878906, 25.135339 ], [ 90.000000, 25.264568 ], [ 89.912109, 25.274504 ], [ 89.824219, 25.967922 ], [ 89.351807, 26.017298 ], [ 88.560791, 26.450902 ], [ 88.209229, 25.770214 ], [ 88.923340, 25.244696 ], [ 88.297119, 24.866503 ], [ 88.077393, 24.507143 ], [ 88.692627, 24.236947 ], [ 88.527832, 23.634460 ], [ 88.868408, 22.887562 ], [ 89.022217, 22.065278 ], [ 88.879395, 21.698265 ], [ 88.198242, 21.708473 ], [ 86.967773, 21.504186 ], [ 87.022705, 20.745840 ], [ 86.495361, 20.159098 ], [ 85.056152, 19.487308 ], [ 83.935547, 18.302381 ], [ 83.188477, 17.675428 ], [ 82.188721, 17.025273 ], [ 82.188721, 16.562493 ], [ 81.683350, 16.320139 ], [ 80.782471, 15.961329 ], [ 80.321045, 15.908508 ], [ 80.024414, 15.146369 ], [ 80.233154, 13.838080 ], [ 80.277100, 13.015262 ], [ 79.859619, 12.060809 ], [ 79.848633, 10.358151 ], [ 79.332275, 10.314919 ], [ 78.881836, 9.546583 ], [ 79.189453, 9.221405 ], [ 78.277588, 8.939340 ], [ 77.937012, 8.254983 ], [ 77.530518, 7.972198 ], [ 76.585693, 8.906780 ], [ 76.124268, 10.304110 ], [ 75.739746, 11.318481 ], [ 75.388184, 11.781325 ], [ 74.860840, 12.747516 ], [ 74.608154, 13.998037 ], [ 74.443359, 14.626109 ], [ 73.531494, 15.993015 ], [ 73.114014, 17.936929 ], [ 72.817383, 19.217803 ], [ 72.817383, 20.427013 ], [ 72.619629, 21.361013 ], [ 71.169434, 20.766387 ], [ 70.466309, 20.879343 ], [ 69.158936, 22.095820 ], [ 69.642334, 22.451649 ], [ 69.345703, 22.847071 ], [ 68.170166, 23.694835 ], [ 68.840332, 24.367114 ], [ 71.037598, 24.357105 ], [ 70.839844, 25.224820 ], [ 70.279541, 25.730633 ], [ 70.158691, 26.500073 ], [ 69.510498, 26.941660 ], [ 70.609131, 27.994401 ], [ 71.773682, 27.916767 ], [ 72.817383, 28.969701 ], [ 73.443604, 29.983487 ], [ 74.410400, 30.987028 ], [ 74.399414, 31.700130 ], [ 75.256348, 32.277845 ], [ 74.443359, 32.768800 ], [ 74.102783, 33.449777 ], [ 73.740234, 34.325292 ], [ 74.234619, 34.750640 ], [ 75.750732, 34.506557 ], [ 76.871338, 34.660322 ], [ 77.827148, 35.496456 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 90.878906, 41.640078 ], [ 90.878906, 28.062286 ], [ 90.725098, 28.071980 ], [ 90.010986, 28.304381 ], [ 90.000000, 28.294707 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.110352, 27.877928 ], [ 86.945801, 27.974998 ], [ 85.814209, 28.207609 ], [ 85.001221, 28.652031 ], [ 84.232178, 28.844674 ], [ 83.891602, 29.324720 ], [ 83.331299, 29.468297 ], [ 82.320557, 30.116622 ], [ 81.518555, 30.429730 ], [ 81.101074, 30.192618 ], [ 79.716797, 30.883369 ], [ 78.728027, 31.522361 ], [ 78.453369, 32.620870 ], [ 79.167480, 32.491230 ], [ 79.200439, 32.999450 ], [ 78.804932, 33.513919 ], [ 78.903809, 34.325292 ], [ 77.827148, 35.496456 ], [ 76.190186, 35.906849 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.970703, 37.422526 ], [ 74.827881, 37.996163 ], [ 74.860840, 38.384728 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.513788 ], [ 73.674316, 39.436193 ], [ 73.959961, 39.664914 ], [ 73.817139, 39.901309 ], [ 74.772949, 40.371659 ], [ 75.465088, 40.563895 ], [ 76.519775, 40.430224 ], [ 76.904297, 41.071069 ], [ 78.178711, 41.186922 ], [ 78.541260, 41.582580 ], [ 78.706055, 41.640078 ], [ 90.878906, 41.640078 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 90.878906, 66.861082 ], [ 90.878906, 50.387508 ], [ 90.703125, 50.338449 ], [ 90.000000, 50.014799 ], [ 88.802490, 49.475263 ], [ 87.747803, 49.303636 ], [ 87.352295, 49.217597 ], [ 86.824951, 49.830896 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.407959, 50.317408 ], [ 83.924561, 50.896104 ], [ 83.375244, 51.075920 ], [ 81.936035, 50.812877 ], [ 80.562744, 51.392351 ], [ 80.035400, 50.868378 ], [ 77.794189, 53.409532 ], [ 76.519775, 54.181727 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.421631, 53.494582 ], [ 73.498535, 54.040038 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.172594 ], [ 69.060059, 55.385352 ], [ 68.159180, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.981723 ], [ 60.732422, 52.722986 ], [ 60.919189, 52.449314 ], [ 59.963379, 51.964577 ], [ 61.578369, 51.275662 ], [ 61.336670, 50.805935 ], [ 59.930420, 50.847573 ], [ 59.633789, 50.548344 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.048301 ], [ 55.711670, 50.625073 ], [ 54.525146, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.756836, 51.692990 ], [ 48.691406, 50.611132 ], [ 48.570557, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.360912 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.400032 ], [ 47.307129, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.566414 ], [ 49.097900, 46.399988 ], [ 48.636475, 45.813486 ], [ 47.669678, 45.644768 ], [ 46.680908, 44.613934 ], [ 47.581787, 43.667872 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.977295, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.395264, 41.861379 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 45.000000, 42.609706 ], [ 44.527588, 42.714732 ], [ 44.121094, 42.609706 ], [ 44.121094, 66.275698 ], [ 44.527588, 66.757250 ], [ 44.384766, 66.861082 ], [ 45.900879, 66.861082 ], [ 46.340332, 66.670387 ], [ 47.724609, 66.861082 ], [ 72.004395, 66.861082 ], [ 71.531982, 66.513260 ], [ 71.279297, 66.324274 ], [ 72.421875, 66.173828 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.535143 ], [ 73.916016, 66.791909 ], [ 73.948975, 66.861082 ], [ 90.878906, 66.861082 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.060059, 55.385352 ], [ 70.861816, 55.172594 ], [ 71.169434, 54.136696 ], [ 72.224121, 54.380557 ], [ 73.498535, 54.040038 ], [ 73.421631, 53.494582 ], [ 74.377441, 53.553363 ], [ 76.882324, 54.495568 ], [ 76.519775, 54.181727 ], [ 77.794189, 53.409532 ], [ 80.035400, 50.868378 ], [ 80.562744, 51.392351 ], [ 81.936035, 50.812877 ], [ 83.375244, 51.075920 ], [ 83.924561, 50.896104 ], [ 84.407959, 50.317408 ], [ 85.111084, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.824951, 49.830896 ], [ 87.352295, 49.217597 ], [ 86.594238, 48.552978 ], [ 85.759277, 48.458352 ], [ 85.715332, 47.457809 ], [ 85.155029, 47.002734 ], [ 83.177490, 47.331377 ], [ 82.452393, 45.544831 ], [ 81.947021, 45.321254 ], [ 79.958496, 44.918139 ], [ 80.859375, 43.181147 ], [ 80.178223, 42.924252 ], [ 80.255127, 42.350425 ], [ 79.639893, 42.504503 ], [ 79.134521, 42.859860 ], [ 77.651367, 42.964463 ], [ 75.992432, 42.988576 ], [ 75.629883, 42.884015 ], [ 74.212646, 43.301196 ], [ 73.641357, 43.092961 ], [ 73.487549, 42.504503 ], [ 71.839600, 42.851806 ], [ 71.180420, 42.706660 ], [ 70.960693, 42.269179 ], [ 70.378418, 42.081917 ], [ 69.060059, 41.385052 ], [ 68.818359, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 66.708984, 41.170384 ], [ 66.500244, 41.992160 ], [ 66.016846, 42.000325 ], [ 66.093750, 43.004647 ], [ 64.896240, 43.731414 ], [ 63.182373, 43.651975 ], [ 62.006836, 43.508721 ], [ 61.051025, 44.410240 ], [ 58.502197, 45.590978 ], [ 55.920410, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.447998, 41.261291 ], [ 54.744873, 42.049293 ], [ 54.074707, 42.326062 ], [ 52.943115, 42.122673 ], [ 52.492676, 41.787697 ], [ 52.437744, 42.032974 ], [ 52.690430, 42.447781 ], [ 52.492676, 42.795401 ], [ 51.339111, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.328369, 44.284537 ], [ 50.295410, 44.613934 ], [ 51.273193, 44.520010 ], [ 51.306152, 45.251688 ], [ 52.163086, 45.413876 ], [ 53.031006, 45.259422 ], [ 53.217773, 46.240652 ], [ 53.041992, 46.860191 ], [ 52.031250, 46.807580 ], [ 51.185303, 47.055154 ], [ 50.031738, 46.611715 ], [ 49.097900, 46.399988 ], [ 48.592529, 46.566414 ], [ 48.691406, 47.077604 ], [ 48.054199, 47.746711 ], [ 47.307129, 47.717154 ], [ 46.461182, 48.400032 ], [ 47.043457, 49.152970 ], [ 46.746826, 49.360912 ], [ 47.548828, 50.457504 ], [ 48.570557, 49.880478 ], [ 48.691406, 50.611132 ], [ 50.756836, 51.692990 ], [ 52.327881, 51.720223 ], [ 54.525146, 51.027576 ], [ 55.711670, 50.625073 ], [ 56.777344, 51.048301 ], [ 58.359375, 51.069017 ], [ 59.633789, 50.548344 ], [ 59.930420, 50.847573 ], [ 61.336670, 50.805935 ], [ 61.578369, 51.275662 ], [ 59.963379, 51.964577 ], [ 60.919189, 52.449314 ], [ 60.732422, 52.722986 ], [ 61.699219, 52.981723 ], [ 60.974121, 53.670680 ], [ 61.435547, 54.007769 ], [ 65.170898, 54.354956 ], [ 65.665283, 54.603892 ], [ 68.159180, 54.971308 ], [ 69.060059, 55.385352 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.502197, 45.590978 ], [ 61.051025, 44.410240 ], [ 62.006836, 43.508721 ], [ 63.182373, 43.651975 ], [ 64.896240, 43.731414 ], [ 66.093750, 43.004647 ], [ 66.016846, 42.000325 ], [ 66.500244, 41.992160 ], [ 66.708984, 41.170384 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 68.818359, 40.979898 ], [ 69.060059, 41.385052 ], [ 70.378418, 42.081917 ], [ 70.960693, 42.269179 ], [ 71.257324, 42.171546 ], [ 70.411377, 41.525030 ], [ 71.147461, 41.145570 ], [ 71.861572, 41.393294 ], [ 72.795410, 40.979898 ], [ 73.048096, 40.871988 ], [ 72.070312, 40.313043 ], [ 70.543213, 40.313043 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.323730, 40.730608 ], [ 69.114990, 40.313043 ], [ 62.248535, 40.313043 ], [ 61.929932, 40.979898 ], [ 61.875000, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.457764, 41.228249 ], [ 60.073242, 41.426253 ], [ 59.974365, 42.228517 ], [ 58.623047, 42.755080 ], [ 57.777100, 42.171546 ], [ 56.931152, 41.828642 ], [ 57.095947, 41.327326 ], [ 55.964355, 41.310824 ], [ 55.920410, 44.995883 ], [ 58.502197, 45.590978 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.623047, 42.755080 ], [ 59.974365, 42.228517 ], [ 60.073242, 41.426253 ], [ 60.457764, 41.228249 ], [ 61.545410, 41.269550 ], [ 61.875000, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.248535, 40.313043 ], [ 52.756348, 40.313043 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.638967 ], [ 54.733887, 40.955011 ], [ 54.700928, 40.979898 ], [ 53.997803, 41.557922 ], [ 53.712158, 42.130821 ], [ 52.910156, 41.869561 ], [ 52.811279, 41.137296 ], [ 52.492676, 41.787697 ], [ 52.943115, 42.122673 ], [ 54.074707, 42.326062 ], [ 54.744873, 42.049293 ], [ 55.447998, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.095947, 41.327326 ], [ 56.931152, 41.828642 ], [ 57.777100, 42.171546 ], [ 58.623047, 42.755080 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 90.878906, 47.002734 ], [ 90.274658, 47.694974 ], [ 90.000000, 47.768868 ], [ 88.846436, 48.070738 ], [ 88.011475, 48.603858 ], [ 87.747803, 49.303636 ], [ 88.802490, 49.475263 ], [ 90.000000, 50.014799 ], [ 90.703125, 50.338449 ], [ 90.878906, 50.387508 ], [ 90.878906, 47.002734 ] ] ], [ [ [ 90.878906, 46.611715 ], [ 90.878906, 45.367584 ], [ 90.582275, 45.721522 ], [ 90.878906, 46.611715 ] ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 87.747803, 49.303636 ], [ 88.011475, 48.603858 ], [ 88.846436, 48.070738 ], [ 90.000000, 47.768868 ], [ 90.274658, 47.694974 ], [ 90.878906, 47.002734 ], [ 90.878906, 46.611715 ], [ 90.582275, 45.721522 ], [ 90.878906, 45.367584 ], [ 90.878906, 40.313043 ], [ 74.663086, 40.313043 ], [ 74.772949, 40.371659 ], [ 75.465088, 40.563895 ], [ 76.519775, 40.430224 ], [ 76.904297, 41.071069 ], [ 78.178711, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.112305, 42.130821 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.924252 ], [ 80.859375, 43.181147 ], [ 79.958496, 44.918139 ], [ 81.947021, 45.321254 ], [ 82.452393, 45.544831 ], [ 83.177490, 47.331377 ], [ 85.155029, 47.002734 ], [ 85.715332, 47.457809 ], [ 85.759277, 48.458352 ], [ 86.594238, 48.552978 ], [ 87.352295, 49.217597 ], [ 87.747803, 49.303636 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 90.878906, 75.672197 ], [ 90.878906, 66.160511 ], [ 44.121094, 66.160511 ], [ 44.121094, 66.275698 ], [ 44.527588, 66.757250 ], [ 44.121094, 67.054588 ], [ 44.121094, 67.871403 ], [ 44.187012, 67.954025 ], [ 44.121094, 68.011685 ], [ 44.121094, 68.496040 ], [ 45.000000, 68.395135 ], [ 46.241455, 68.253111 ], [ 46.812744, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.340332, 66.670387 ], [ 47.889404, 66.886972 ], [ 48.131104, 67.525373 ], [ 50.218506, 67.999341 ], [ 53.712158, 68.859555 ], [ 54.470215, 68.811957 ], [ 53.481445, 68.204212 ], [ 54.722900, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.883316 ], [ 59.941406, 68.281586 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.522991 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.126221, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.710842 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.934751 ], [ 69.191895, 72.845262 ], [ 69.938965, 73.041829 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.839600, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.784424, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.411310 ], [ 73.234863, 67.742759 ], [ 71.531982, 66.513260 ], [ 71.279297, 66.324274 ], [ 72.421875, 66.173828 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.535143 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.284773 ], [ 75.047607, 67.763556 ], [ 74.465332, 68.330320 ], [ 74.926758, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.630335 ], [ 74.399414, 70.634484 ], [ 73.092041, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.652100, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.155843 ], [ 75.893555, 71.876745 ], [ 77.574463, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.243652, 73.852342 ], [ 84.649658, 73.806447 ], [ 86.813965, 73.937674 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.000000, 75.576730 ], [ 90.252686, 75.642260 ], [ 90.878906, 75.672197 ] ] ], [ [ [ 68.148193, 76.940488 ], [ 68.851318, 76.544967 ], [ 68.170166, 76.234752 ], [ 64.632568, 75.740009 ], [ 61.578369, 75.261444 ], [ 58.469238, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.612793, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.668213, 70.765206 ], [ 53.404541, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.448975, 72.016337 ], [ 52.470703, 72.232161 ], [ 52.437744, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.628014 ], [ 55.623779, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.160889, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.148193, 76.940488 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 50.031738, 80.919761 ], [ 51.514893, 80.700447 ], [ 51.130371, 80.548322 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.746338, 80.176839 ], [ 47.581787, 80.010518 ], [ 46.494141, 80.247810 ], [ 47.065430, 80.560943 ], [ 45.000000, 80.587930 ], [ 44.846191, 80.591523 ], [ 45.000000, 80.605880 ], [ 46.790771, 80.772954 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.515792 ], [ 49.086914, 80.755321 ], [ 50.031738, 80.919761 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.958496, -8.885072 ], [ 125.068359, -9.080400 ], [ 125.079346, -9.384032 ], [ 124.431152, -10.131117 ], [ 123.574219, -10.358151 ], [ 123.453369, -10.239249 ], [ 123.541260, -9.893099 ], [ 123.969727, -9.286465 ], [ 124.958496, -8.885072 ] ] ], [ [ [ 119.893799, -9.351513 ], [ 120.421143, -9.665738 ], [ 120.772705, -9.968851 ], [ 120.706787, -10.239249 ], [ 120.289307, -10.250060 ], [ 118.959961, -9.557417 ], [ 119.893799, -9.351513 ] ] ], [ [ [ 117.894287, -8.091862 ], [ 118.256836, -8.352823 ], [ 118.872070, -8.276727 ], [ 119.124756, -8.700499 ], [ 117.268066, -9.037003 ], [ 116.729736, -9.026153 ], [ 117.081299, -8.450639 ], [ 117.630615, -8.439772 ], [ 117.894287, -8.091862 ] ] ], [ [ [ 122.893066, -8.091862 ], [ 122.750244, -8.646196 ], [ 121.245117, -8.928487 ], [ 119.915771, -8.809082 ], [ 119.915771, -8.439772 ], [ 120.706787, -8.233237 ], [ 121.333008, -8.526701 ], [ 122.003174, -8.450639 ], [ 122.893066, -8.091862 ] ] ], [ [ [ 106.051025, -5.889261 ], [ 107.259521, -5.954827 ], [ 108.061523, -6.337137 ], [ 108.479004, -6.413566 ], [ 108.621826, -6.773716 ], [ 110.533447, -6.871893 ], [ 110.753174, -6.457234 ], [ 112.609863, -6.937333 ], [ 112.972412, -7.591218 ], [ 114.477539, -7.776309 ], [ 115.697021, -8.363693 ], [ 114.554443, -8.743936 ], [ 113.455811, -8.341953 ], [ 112.554932, -8.374562 ], [ 111.511230, -8.298470 ], [ 110.577393, -8.113615 ], [ 109.423828, -7.732765 ], [ 108.687744, -7.634776 ], [ 108.270264, -7.765423 ], [ 106.446533, -7.351571 ], [ 106.270752, -6.915521 ], [ 105.358887, -6.850078 ], [ 106.051025, -5.889261 ] ] ], [ [ [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ], [ 134.714355, -6.206090 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ] ] ], [ [ [ 102.854004, 0.878872 ], [ 103.073730, 0.571280 ], [ 103.831787, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.436279, -0.703107 ], [ 104.007568, -1.054628 ], [ 104.359131, -1.076597 ], [ 104.534912, -1.779499 ], [ 104.886475, -2.339438 ], [ 105.611572, -2.427252 ], [ 106.105957, -3.052754 ], [ 105.853271, -4.302591 ], [ 105.809326, -5.845545 ], [ 104.699707, -5.867403 ], [ 103.864746, -5.036227 ], [ 102.579346, -4.214943 ], [ 102.150879, -3.612107 ], [ 101.392822, -2.789425 ], [ 100.898438, -2.043024 ], [ 100.140381, -0.648180 ], [ 99.448242, 0.000000 ], [ 99.261475, 0.186767 ], [ 99.019775, 0.878872 ], [ 102.854004, 0.878872 ] ] ], [ [ [ 124.793701, 0.878872 ], [ 124.431152, 0.428463 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.135498, 0.000000 ], [ 120.036621, -0.516350 ], [ 120.926514, -1.406109 ], [ 121.464844, -0.955766 ], [ 123.332520, -0.615223 ], [ 123.255615, -1.065612 ], [ 122.816162, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.497803, -1.900286 ], [ 122.453613, -3.184394 ], [ 122.266846, -3.524387 ], [ 123.167725, -4.674980 ], [ 123.156738, -5.331644 ], [ 122.618408, -5.626919 ], [ 122.233887, -5.276948 ], [ 122.717285, -4.455951 ], [ 121.728516, -4.850154 ], [ 121.486816, -4.565474 ], [ 121.618652, -4.182073 ], [ 120.893555, -3.601142 ], [ 120.970459, -2.624814 ], [ 120.300293, -2.921097 ], [ 120.388184, -4.094411 ], [ 120.421143, -5.517575 ], [ 119.794922, -5.670651 ], [ 119.366455, -5.375398 ], [ 119.652100, -4.455951 ], [ 119.498291, -3.491489 ], [ 119.069824, -3.480523 ], [ 118.762207, -2.800398 ], [ 119.179688, -2.141835 ], [ 119.322510, -1.351193 ], [ 119.772949, 0.000000 ], [ 119.816895, 0.164795 ], [ 120.025635, 0.571280 ], [ 120.388184, 0.878872 ], [ 124.793701, 0.878872 ] ] ], [ [ [ 132.374268, -0.362546 ], [ 133.978271, -0.780005 ], [ 134.143066, -1.142502 ], [ 134.417725, -2.767478 ], [ 135.000000, -3.096636 ], [ 135.450439, -3.359889 ], [ 135.878906, -2.822344 ], [ 135.878906, -4.532618 ], [ 135.153809, -4.455951 ], [ 135.000000, -4.357366 ], [ 133.659668, -3.535352 ], [ 133.363037, -4.017699 ], [ 132.978516, -4.105369 ], [ 132.747803, -3.743671 ], [ 132.747803, -3.305050 ], [ 131.989746, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.471157 ], [ 133.692627, -2.207705 ], [ 132.231445, -2.207705 ], [ 131.835938, -1.614776 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.933797 ], [ 131.857910, -0.692122 ], [ 132.374268, -0.362546 ] ] ], [ [ [ 118.762207, 0.878872 ], [ 117.806396, 0.790990 ], [ 117.476807, 0.109863 ], [ 117.476807, 0.000000 ], [ 117.520752, -0.801976 ], [ 116.553955, -1.482989 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.006740 ], [ 115.993652, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.491489 ], [ 113.752441, -3.436658 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.697998, -2.986927 ], [ 111.038818, -3.041783 ], [ 110.214844, -2.932069 ], [ 110.061035, -1.592812 ], [ 109.566650, -1.307260 ], [ 109.083252, -0.450435 ], [ 109.017334, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.006348, 0.878872 ], [ 110.379639, 0.878872 ], [ 110.511475, 0.780005 ], [ 110.841064, 0.878872 ], [ 118.762207, 0.878872 ] ] ], [ [ [ 129.364014, -2.800398 ], [ 130.462646, -3.085666 ], [ 130.825195, -3.853293 ], [ 129.990234, -3.436658 ], [ 129.144287, -3.359889 ], [ 128.583984, -3.425692 ], [ 127.891846, -3.392791 ], [ 128.133545, -2.833317 ], [ 129.364014, -2.800398 ] ] ], [ [ [ 126.990967, -3.118576 ], [ 127.243652, -3.458591 ], [ 126.870117, -3.787522 ], [ 126.177979, -3.601142 ], [ 125.980225, -3.173425 ], [ 126.990967, -3.118576 ] ] ], [ [ [ 128.671875, 0.878872 ], [ 128.627930, 0.263671 ], [ 128.111572, 0.362546 ], [ 128.023682, 0.000000 ], [ 127.957764, -0.241699 ], [ 128.375244, -0.769020 ], [ 128.089600, -0.889857 ], [ 127.694092, -0.263671 ], [ 127.628174, 0.000000 ], [ 127.419434, 0.878872 ], [ 128.671875, 0.878872 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 132.352295, -11.124507 ], [ 133.011475, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.670410, -11.931852 ], [ 135.000000, -12.093039 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.964097 ], [ 135.878906, -14.061988 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.494385, -14.987240 ], [ 135.878906, -15.252389 ], [ 135.878906, -34.831841 ], [ 135.197754, -34.470335 ], [ 135.230713, -33.943360 ], [ 135.000000, -33.669497 ], [ 134.604492, -33.220308 ], [ 134.077148, -32.842674 ], [ 134.263916, -32.611616 ], [ 132.989502, -32.008076 ], [ 132.286377, -31.980123 ], [ 131.319580, -31.494262 ], [ 129.528809, -31.587894 ], [ 128.232422, -31.942840 ], [ 127.100830, -32.277845 ], [ 126.145020, -32.212801 ], [ 125.079346, -32.722599 ], [ 124.211426, -32.953368 ], [ 124.024658, -33.477272 ], [ 123.651123, -33.888658 ], [ 122.805176, -33.906896 ], [ 122.178955, -33.998027 ], [ 121.289062, -33.815666 ], [ 120.574951, -33.925130 ], [ 119.882812, -33.970698 ], [ 119.289551, -34.506557 ], [ 119.003906, -34.461277 ], [ 118.498535, -34.741612 ], [ 118.015137, -35.056980 ], [ 117.290039, -35.021000 ], [ 116.619873, -35.021000 ], [ 115.554199, -34.379713 ], [ 115.015869, -34.189086 ], [ 115.037842, -33.614619 ], [ 115.543213, -33.486435 ], [ 115.708008, -33.257063 ], [ 115.675049, -32.898038 ], [ 115.795898, -32.203505 ], [ 115.686035, -31.606610 ], [ 115.158691, -30.600094 ], [ 114.993896, -30.021544 ], [ 115.037842, -29.458731 ], [ 114.631348, -28.806174 ], [ 114.609375, -28.507316 ], [ 114.169922, -28.110749 ], [ 114.038086, -27.332735 ], [ 113.466797, -26.539394 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.539394 ], [ 113.433838, -25.611810 ], [ 113.928223, -25.908644 ], [ 114.224854, -26.293415 ], [ 114.213867, -25.780107 ], [ 113.719482, -24.996016 ], [ 113.620605, -24.676970 ], [ 113.389893, -24.377121 ], [ 113.499756, -23.805450 ], [ 113.697510, -23.553917 ], [ 113.840332, -23.059516 ], [ 113.730469, -22.471955 ], [ 114.147949, -21.749296 ], [ 114.224854, -22.512557 ], [ 114.642334, -21.820708 ], [ 115.455322, -21.493964 ], [ 115.938721, -21.063997 ], [ 116.707764, -20.694462 ], [ 117.158203, -20.622502 ], [ 117.432861, -20.745840 ], [ 118.223877, -20.365228 ], [ 118.828125, -20.262197 ], [ 118.981934, -20.035290 ], [ 119.245605, -19.952696 ], [ 119.794922, -19.973349 ], [ 120.849609, -19.673626 ], [ 121.398926, -19.238550 ], [ 121.651611, -18.698285 ], [ 122.233887, -18.187607 ], [ 122.277832, -17.790535 ], [ 122.310791, -17.245744 ], [ 123.002930, -16.404470 ], [ 123.431396, -17.266728 ], [ 123.848877, -17.067287 ], [ 123.497314, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.320139 ], [ 124.376221, -15.559544 ], [ 124.925537, -15.072124 ], [ 125.167236, -14.679254 ], [ 125.661621, -14.509144 ], [ 125.683594, -14.221789 ], [ 126.123047, -14.338904 ], [ 126.134033, -14.093957 ], [ 127.056885, -13.816744 ], [ 127.803955, -14.275030 ], [ 128.353271, -14.859850 ], [ 128.979492, -14.870469 ], [ 129.616699, -14.966013 ], [ 129.407959, -14.413400 ], [ 129.880371, -13.613956 ], [ 130.330811, -13.346865 ], [ 130.177002, -13.100880 ], [ 130.616455, -12.533115 ], [ 131.220703, -12.178965 ], [ 131.726074, -12.297068 ], [ 132.572021, -12.103781 ], [ 132.550049, -11.598432 ], [ 131.813965, -11.264612 ], [ 132.352295, -11.124507 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.108398, 29.458731 ], [ 96.580811, 28.835050 ], [ 96.240234, 28.420391 ], [ 97.316895, 28.265682 ], [ 97.393799, 27.887639 ], [ 97.042236, 27.702984 ], [ 97.130127, 27.088473 ], [ 96.416016, 27.274161 ], [ 95.119629, 26.578702 ], [ 95.152588, 26.007424 ], [ 94.592285, 25.165173 ], [ 94.548340, 24.676970 ], [ 94.097900, 23.855698 ], [ 93.317871, 24.086589 ], [ 93.284912, 23.049407 ], [ 93.054199, 22.705255 ], [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.142334, 23.634460 ], [ 91.867676, 23.624395 ], [ 91.702881, 22.988738 ], [ 91.153564, 23.503552 ], [ 91.461182, 24.076559 ], [ 91.911621, 24.136728 ], [ 92.373047, 24.986058 ], [ 91.790771, 25.155229 ], [ 90.867920, 25.135339 ], [ 90.000000, 25.264568 ], [ 89.912109, 25.274504 ], [ 89.824219, 25.967922 ], [ 89.351807, 26.017298 ], [ 89.121094, 26.145576 ], [ 89.121094, 26.980829 ], [ 89.736328, 26.725987 ], [ 90.000000, 26.784847 ], [ 90.362549, 26.882880 ], [ 91.208496, 26.814266 ], [ 92.032471, 26.843677 ], [ 92.098389, 27.459539 ], [ 91.691895, 27.780772 ], [ 92.493896, 27.897349 ], [ 93.405762, 28.642389 ], [ 94.559326, 29.286399 ], [ 95.394287, 29.036961 ], [ 96.108398, 29.458731 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.051270, 41.640078 ], [ 104.963379, 41.599013 ], [ 104.897461, 41.640078 ], [ 105.051270, 41.640078 ] ] ] } } +, +{ "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": [ [ [ [ 110.203857, 20.107523 ], [ 110.786133, 20.086889 ], [ 111.005859, 19.704658 ], [ 110.566406, 19.259294 ], [ 110.335693, 18.687879 ], [ 109.467773, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.621826, 19.373341 ], [ 109.116211, 19.828725 ], [ 110.203857, 20.107523 ] ] ], [ [ [ 126.694336, 41.640078 ], [ 126.177979, 41.112469 ], [ 125.914307, 40.979898 ], [ 125.079346, 40.572240 ], [ 124.255371, 39.935013 ], [ 122.860107, 39.639538 ], [ 122.124023, 39.172659 ], [ 121.047363, 38.899583 ], [ 121.585693, 39.368279 ], [ 121.365967, 39.757880 ], [ 122.167969, 40.430224 ], [ 121.629639, 40.946714 ], [ 120.761719, 40.597271 ], [ 119.630127, 39.901309 ], [ 119.014893, 39.257778 ], [ 118.037109, 39.206719 ], [ 117.531738, 38.745515 ], [ 118.059082, 38.065392 ], [ 118.872070, 37.900865 ], [ 118.905029, 37.448697 ], [ 119.696045, 37.160317 ], [ 120.816650, 37.874853 ], [ 121.706543, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.659606 ], [ 120.629883, 36.120128 ], [ 119.663086, 35.612651 ], [ 119.146729, 34.912962 ], [ 120.223389, 34.361576 ], [ 120.618896, 33.385586 ], [ 121.223145, 32.463426 ], [ 121.904297, 31.700130 ], [ 121.882324, 30.958769 ], [ 121.256104, 30.685164 ], [ 121.497803, 30.145127 ], [ 122.091064, 29.840644 ], [ 121.937256, 29.027355 ], [ 121.673584, 28.226970 ], [ 121.124268, 28.139816 ], [ 120.388184, 27.059126 ], [ 119.575195, 25.750425 ], [ 118.652344, 24.557116 ], [ 117.279053, 23.634460 ], [ 115.883789, 22.786311 ], [ 114.763184, 22.674847 ], [ 114.147949, 22.228090 ], [ 113.796387, 22.553147 ], [ 113.236084, 22.055096 ], [ 111.840820, 21.555284 ], [ 110.775146, 21.401934 ], [ 110.434570, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.621582, 21.012727 ], [ 109.863281, 21.401934 ], [ 108.511963, 21.718680 ], [ 108.039551, 21.555284 ], [ 107.039795, 21.820708 ], [ 106.556396, 22.228090 ], [ 106.721191, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.468994, 22.826820 ], [ 103.502197, 22.705255 ], [ 102.700195, 22.715390 ], [ 102.161865, 22.471955 ], [ 101.645508, 22.319589 ], [ 101.799316, 21.176729 ], [ 101.260986, 21.207459 ], [ 101.173096, 21.442843 ], [ 101.140137, 21.851302 ], [ 100.415039, 21.565502 ], [ 99.975586, 21.749296 ], [ 99.239502, 22.126355 ], [ 99.525146, 22.958393 ], [ 98.887939, 23.150462 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.905927 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.928407 ], [ 98.701172, 26.745610 ], [ 98.679199, 27.518015 ], [ 98.239746, 27.751608 ], [ 97.910156, 28.343065 ], [ 97.316895, 28.265682 ], [ 96.240234, 28.420391 ], [ 96.580811, 28.835050 ], [ 96.108398, 29.458731 ], [ 95.394287, 29.036961 ], [ 94.559326, 29.286399 ], [ 93.405762, 28.642389 ], [ 92.493896, 27.897349 ], [ 91.691895, 27.780772 ], [ 91.252441, 28.042895 ], [ 90.725098, 28.071980 ], [ 90.010986, 28.304381 ], [ 90.000000, 28.294707 ], [ 89.472656, 28.042895 ], [ 89.121094, 27.654338 ], [ 89.121094, 41.640078 ], [ 104.897461, 41.640078 ], [ 104.963379, 41.599013 ], [ 105.051270, 41.640078 ], [ 126.694336, 41.640078 ] ] ], [ [ [ 128.155518, 41.640078 ], [ 128.199463, 41.467428 ], [ 127.342529, 41.508577 ], [ 127.133789, 41.640078 ], [ 128.155518, 41.640078 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.910156, 28.343065 ], [ 98.239746, 27.751608 ], [ 98.679199, 27.518015 ], [ 98.701172, 26.745610 ], [ 98.668213, 25.928407 ], [ 97.723389, 25.085599 ], [ 97.602539, 23.905927 ], [ 98.657227, 24.066528 ], [ 98.887939, 23.150462 ], [ 99.525146, 22.958393 ], [ 99.239502, 22.126355 ], [ 99.975586, 21.749296 ], [ 100.415039, 21.565502 ], [ 101.140137, 21.851302 ], [ 101.173096, 21.442843 ], [ 100.327148, 20.786931 ], [ 100.107422, 20.427013 ], [ 99.536133, 20.190035 ], [ 98.953857, 19.756364 ], [ 98.250732, 19.715000 ], [ 97.789307, 18.635835 ], [ 97.371826, 18.448347 ], [ 97.855225, 17.570721 ], [ 98.492432, 16.846605 ], [ 98.898926, 16.183024 ], [ 98.536377, 15.315976 ], [ 98.184814, 15.125159 ], [ 98.426514, 14.626109 ], [ 99.096680, 13.838080 ], [ 99.206543, 13.272026 ], [ 99.195557, 12.811801 ], [ 99.580078, 11.899604 ], [ 99.030762, 10.962764 ], [ 98.547363, 9.936388 ], [ 98.448486, 10.682201 ], [ 98.756104, 11.447723 ], [ 98.426514, 12.039321 ], [ 98.503418, 13.132979 ], [ 98.096924, 13.645987 ], [ 97.767334, 14.838612 ], [ 97.591553, 16.109153 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.436085 ], [ 95.361328, 15.718239 ], [ 94.801025, 15.813396 ], [ 94.185791, 16.045813 ], [ 94.526367, 17.287709 ], [ 94.317627, 18.218916 ], [ 93.537598, 19.373341 ], [ 93.658447, 19.735684 ], [ 93.076172, 19.859727 ], [ 92.362061, 20.673905 ], [ 92.296143, 21.483741 ], [ 92.647705, 21.330315 ], [ 92.669678, 22.044913 ], [ 93.164062, 22.278931 ], [ 93.054199, 22.705255 ], [ 93.284912, 23.049407 ], [ 93.317871, 24.086589 ], [ 94.097900, 23.855698 ], [ 94.548340, 24.676970 ], [ 94.592285, 25.165173 ], [ 95.152588, 26.007424 ], [ 95.119629, 26.578702 ], [ 96.416016, 27.274161 ], [ 97.130127, 27.088473 ], [ 97.042236, 27.702984 ], [ 97.393799, 27.887639 ], [ 97.316895, 28.265682 ], [ 97.910156, 28.343065 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "name_sort": "Japan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "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": [ [ [ [ 135.878906, 35.880149 ], [ 135.878906, 33.541395 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 133.330078, 34.379713 ], [ 132.154541, 33.906896 ], [ 130.979004, 33.888658 ], [ 131.989746, 33.155948 ], [ 131.330566, 31.456782 ], [ 130.682373, 31.034108 ], [ 130.198975, 31.419288 ], [ 130.440674, 32.324276 ], [ 129.814453, 32.611616 ], [ 129.407959, 33.302986 ], [ 130.352783, 33.605470 ], [ 130.869141, 34.234512 ], [ 131.879883, 34.750640 ], [ 132.615967, 35.433820 ], [ 134.604492, 35.737595 ], [ 135.000000, 35.657296 ], [ 135.670166, 35.532226 ], [ 135.878906, 35.880149 ] ] ], [ [ [ 133.901367, 34.370645 ], [ 134.637451, 34.152727 ], [ 134.758301, 33.806538 ], [ 134.197998, 33.201924 ], [ 133.791504, 33.523079 ], [ 133.275146, 33.293804 ], [ 133.011475, 32.713355 ], [ 132.352295, 32.990236 ], [ 132.363281, 33.468108 ], [ 132.923584, 34.061761 ], [ 133.483887, 33.952474 ], [ 133.901367, 34.370645 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.374268, -0.362546 ], [ 133.978271, -0.780005 ], [ 134.022217, -0.878872 ], [ 130.836182, -0.878872 ], [ 131.857910, -0.692122 ], [ 132.374268, -0.362546 ] ] ], [ [ [ 125.057373, 1.647722 ], [ 125.233154, 1.428075 ], [ 124.431152, 0.428463 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.135498, 0.000000 ], [ 120.036621, -0.516350 ], [ 120.399170, -0.878872 ], [ 119.476318, -0.878872 ], [ 119.772949, 0.000000 ], [ 119.816895, 0.164795 ], [ 120.025635, 0.571280 ], [ 120.882568, 1.318243 ], [ 121.662598, 1.021674 ], [ 122.926025, 0.878872 ], [ 124.068604, 0.922812 ], [ 125.057373, 1.647722 ] ] ], [ [ [ 127.924805, 2.174771 ], [ 128.001709, 1.636740 ], [ 128.583984, 1.548884 ], [ 128.682861, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.111572, 0.362546 ], [ 128.023682, 0.000000 ], [ 127.957764, -0.241699 ], [ 128.375244, -0.769020 ], [ 128.144531, -0.878872 ], [ 128.078613, -0.878872 ], [ 127.694092, -0.263671 ], [ 127.628174, 0.000000 ], [ 127.397461, 1.021674 ], [ 127.595215, 1.812442 ], [ 127.924805, 2.174771 ] ] ], [ [ [ 117.004395, 4.313546 ], [ 117.872314, 4.138243 ], [ 117.312012, 3.239240 ], [ 118.048096, 2.295528 ], [ 117.872314, 1.834403 ], [ 118.992920, 0.911827 ], [ 117.806396, 0.790990 ], [ 117.476807, 0.109863 ], [ 117.476807, 0.000000 ], [ 117.520752, -0.801976 ], [ 117.410889, -0.878872 ], [ 109.324951, -0.878872 ], [ 109.083252, -0.450435 ], [ 109.017334, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.061279, 1.351193 ], [ 109.654541, 2.010086 ], [ 109.819336, 1.340210 ], [ 110.511475, 0.780005 ], [ 111.148682, 0.977736 ], [ 111.796875, 0.911827 ], [ 112.379150, 1.417092 ], [ 112.851562, 1.504954 ], [ 113.796387, 1.219390 ], [ 114.620361, 1.439058 ], [ 115.125732, 2.822344 ], [ 115.510254, 3.173425 ], [ 115.861816, 4.313546 ], [ 117.004395, 4.313546 ] ] ], [ [ [ 95.284424, 5.484768 ], [ 95.932617, 5.441022 ], [ 97.481689, 5.255068 ], [ 98.360596, 4.269724 ], [ 99.140625, 3.601142 ], [ 99.689941, 3.184394 ], [ 100.634766, 2.108899 ], [ 101.656494, 2.086941 ], [ 102.491455, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.831787, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.436279, -0.703107 ], [ 103.710938, -0.878872 ], [ 100.261230, -0.878872 ], [ 100.140381, -0.648180 ], [ 99.448242, 0.000000 ], [ 99.261475, 0.186767 ], [ 98.964844, 1.043643 ], [ 98.591309, 1.834403 ], [ 97.690430, 2.460181 ], [ 97.174072, 3.316018 ], [ 96.416016, 3.875216 ], [ 95.372314, 4.981505 ], [ 95.284424, 5.484768 ] ] ], [ [ [ 123.288574, -0.878872 ], [ 121.893311, -0.878872 ], [ 123.332520, -0.615223 ], [ 123.288574, -0.878872 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 135.878906, 66.861082 ], [ 135.878906, 55.210222 ], [ 135.120850, 54.730964 ], [ 135.878906, 54.673831 ], [ 135.878906, 44.308127 ], [ 135.000000, 43.524655 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.901611, 42.803462 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.770264, 42.220382 ], [ 130.638428, 42.399122 ], [ 130.627441, 42.908160 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.972571 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.219568 ], [ 134.494629, 47.583937 ], [ 135.000000, 48.436490 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.480204 ], [ 133.363037, 48.188063 ], [ 132.506104, 47.791016 ], [ 130.979004, 47.791016 ], [ 130.572510, 48.734455 ], [ 129.396973, 49.446700 ], [ 127.650146, 49.767074 ], [ 127.276611, 50.743408 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.788232 ], [ 125.936279, 52.796119 ], [ 125.057373, 53.166534 ], [ 123.563232, 53.461890 ], [ 122.244873, 53.435719 ], [ 120.992432, 53.252069 ], [ 120.168457, 52.756243 ], [ 120.717773, 52.522906 ], [ 120.728760, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.278564, 50.148746 ], [ 117.872314, 49.518076 ], [ 116.674805, 49.894634 ], [ 115.477295, 49.809632 ], [ 114.960938, 50.141706 ], [ 114.356689, 50.254230 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.468018, 49.289306 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.611816, 50.282319 ], [ 103.666992, 50.092393 ], [ 102.249756, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.522416 ], [ 99.975586, 51.638476 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.250977, 49.731581 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.141846, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.230225, 50.805935 ], [ 90.703125, 50.338449 ], [ 90.000000, 50.014799 ], [ 89.121094, 49.617828 ], [ 89.121094, 66.861082 ], [ 135.878906, 66.861082 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.854980, 52.052490 ], [ 99.975586, 51.638476 ], [ 100.887451, 51.522416 ], [ 102.062988, 51.261915 ], [ 102.249756, 50.513427 ], [ 103.666992, 50.092393 ], [ 104.611816, 50.282319 ], [ 105.886230, 50.408518 ], [ 106.885986, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.468018, 49.289306 ], [ 109.401855, 49.296472 ], [ 110.654297, 49.131408 ], [ 111.577148, 49.382373 ], [ 112.895508, 49.546598 ], [ 114.356689, 50.254230 ], [ 114.960938, 50.141706 ], [ 115.477295, 49.809632 ], [ 116.674805, 49.894634 ], [ 116.191406, 49.138597 ], [ 115.477295, 48.136767 ], [ 115.740967, 47.731934 ], [ 116.301270, 47.857403 ], [ 117.290039, 47.702368 ], [ 118.059082, 48.070738 ], [ 118.861084, 47.754098 ], [ 119.761963, 47.055154 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.807580 ], [ 117.410889, 46.679594 ], [ 116.707764, 46.392411 ], [ 115.982666, 45.729191 ], [ 114.455566, 45.344424 ], [ 113.455811, 44.809122 ], [ 112.434082, 45.019185 ], [ 111.862793, 45.104546 ], [ 111.346436, 44.465151 ], [ 111.665039, 44.079693 ], [ 111.818848, 43.747289 ], [ 111.126709, 43.413029 ], [ 110.401611, 42.875964 ], [ 109.237061, 42.520700 ], [ 107.742920, 42.488302 ], [ 106.127930, 42.138968 ], [ 104.963379, 41.599013 ], [ 104.512939, 41.910453 ], [ 103.304443, 41.910453 ], [ 101.832275, 42.520700 ], [ 100.843506, 42.666281 ], [ 99.514160, 42.528796 ], [ 97.448730, 42.755080 ], [ 96.339111, 42.730874 ], [ 95.756836, 43.325178 ], [ 95.306396, 44.245199 ], [ 94.680176, 44.355278 ], [ 93.471680, 44.980342 ], [ 92.131348, 45.120053 ], [ 90.944824, 45.290347 ], [ 90.582275, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.274658, 47.694974 ], [ 89.121094, 48.004625 ], [ 89.121094, 49.617828 ], [ 90.000000, 50.014799 ], [ 90.703125, 50.338449 ], [ 92.230225, 50.805935 ], [ 93.098145, 50.499452 ], [ 94.141846, 50.485474 ], [ 94.812012, 50.014799 ], [ 95.811768, 49.979488 ], [ 97.250977, 49.731581 ], [ 98.228760, 50.422519 ], [ 97.822266, 51.013755 ], [ 98.854980, 52.052490 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 123.563232, 53.461890 ], [ 125.057373, 53.166534 ], [ 125.936279, 52.796119 ], [ 126.562500, 51.788232 ], [ 126.936035, 51.358062 ], [ 127.276611, 50.743408 ], [ 127.650146, 49.767074 ], [ 129.396973, 49.446700 ], [ 130.572510, 48.734455 ], [ 130.979004, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.363037, 48.188063 ], [ 135.000000, 48.480204 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.436490 ], [ 134.494629, 47.583937 ], [ 134.110107, 47.219568 ], [ 133.769531, 46.118942 ], [ 133.088379, 45.151053 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.972571 ], [ 131.286621, 44.119142 ], [ 131.143799, 42.932296 ], [ 130.627441, 42.908160 ], [ 130.638428, 42.399122 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.431566 ], [ 128.045654, 42.000325 ], [ 128.199463, 41.467428 ], [ 127.342529, 41.508577 ], [ 126.859131, 41.820455 ], [ 126.177979, 41.112469 ], [ 125.914307, 40.979898 ], [ 125.079346, 40.572240 ], [ 124.749756, 40.313043 ], [ 122.036133, 40.313043 ], [ 122.167969, 40.430224 ], [ 121.629639, 40.946714 ], [ 120.761719, 40.597271 ], [ 120.311279, 40.313043 ], [ 89.121094, 40.313043 ], [ 89.121094, 48.004625 ], [ 90.274658, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.290347 ], [ 92.131348, 45.120053 ], [ 93.471680, 44.980342 ], [ 94.680176, 44.355278 ], [ 95.306396, 44.245199 ], [ 95.756836, 43.325178 ], [ 96.339111, 42.730874 ], [ 97.448730, 42.755080 ], [ 99.514160, 42.528796 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.520700 ], [ 103.304443, 41.910453 ], [ 104.512939, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.138968 ], [ 107.742920, 42.488302 ], [ 109.237061, 42.520700 ], [ 110.401611, 42.875964 ], [ 111.126709, 43.413029 ], [ 111.818848, 43.747289 ], [ 111.665039, 44.079693 ], [ 111.346436, 44.465151 ], [ 111.862793, 45.104546 ], [ 112.434082, 45.019185 ], [ 113.455811, 44.809122 ], [ 114.455566, 45.344424 ], [ 115.982666, 45.729191 ], [ 116.707764, 46.392411 ], [ 117.410889, 46.679594 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.761963, 47.055154 ], [ 118.861084, 47.754098 ], [ 118.059082, 48.070738 ], [ 117.290039, 47.702368 ], [ 116.301270, 47.857403 ], [ 115.740967, 47.731934 ], [ 115.477295, 48.136767 ], [ 116.191406, 49.138597 ], [ 116.674805, 49.894634 ], [ 117.872314, 49.518076 ], [ 119.278564, 50.148746 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.728760, 51.964577 ], [ 120.717773, 52.522906 ], [ 120.168457, 52.756243 ], [ 120.992432, 53.252069 ], [ 122.244873, 53.435719 ], [ 123.563232, 53.461890 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 104.348145, 77.699894 ], [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.323975, 76.224292 ], [ 114.125977, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.390869, 74.182063 ], [ 110.632324, 74.040702 ], [ 112.115479, 73.788054 ], [ 113.016357, 73.977144 ], [ 113.521729, 73.337311 ], [ 113.961182, 73.596792 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.590586 ], [ 119.014893, 73.121756 ], [ 123.189697, 72.974406 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.562631 ], [ 126.968994, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.399028 ], [ 128.452148, 71.982386 ], [ 129.715576, 71.194838 ], [ 131.286621, 70.790525 ], [ 132.253418, 71.839115 ], [ 133.857422, 71.388649 ], [ 135.000000, 71.570115 ], [ 135.560303, 71.656749 ], [ 135.878906, 71.608283 ], [ 135.878906, 66.160511 ], [ 89.121094, 66.160511 ], [ 89.121094, 75.353398 ], [ 90.000000, 75.576730 ], [ 90.252686, 75.642260 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.668701, 75.917526 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.432026 ], [ 101.030273, 76.863308 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.699894 ] ] ], [ [ [ 102.205811, 79.335219 ], [ 102.832031, 79.282227 ], [ 103.337402, 79.171335 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.922567 ], [ 101.162109, 79.171335 ], [ 101.260986, 79.235133 ], [ 101.997070, 79.335219 ], [ 102.205811, 79.335219 ] ] ], [ [ [ 100.052490, 79.335219 ], [ 100.008545, 79.171335 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.757087 ], [ 94.965820, 79.046790 ], [ 94.427490, 79.171335 ], [ 93.713379, 79.335219 ], [ 100.052490, 79.335219 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ], [ 103.337402, 79.171335 ], [ 104.084473, 79.004962 ], [ 100.920410, 79.004962 ], [ 101.162109, 79.171335 ], [ 101.260986, 79.235133 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.932617, 81.251691 ], [ 97.877197, 80.748259 ], [ 100.184326, 79.781164 ], [ 100.008545, 79.171335 ], [ 99.964600, 79.004962 ], [ 95.350342, 79.004962 ], [ 94.965820, 79.046790 ], [ 94.427490, 79.171335 ], [ 93.306885, 79.428340 ], [ 92.537842, 80.144924 ], [ 91.175537, 80.342262 ], [ 93.768311, 81.024916 ], [ 95.932617, 81.251691 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.733887, -40.697299 ], [ 145.393066, -40.788860 ], [ 145.920410, -40.979898 ], [ 146.359863, -41.137296 ], [ 146.986084, -40.979898 ], [ 147.689209, -40.805494 ], [ 148.282471, -40.871988 ], [ 148.293457, -40.979898 ], [ 148.359375, -42.057450 ], [ 148.007812, -42.399122 ], [ 147.908936, -43.205176 ], [ 147.557373, -42.932296 ], [ 146.865234, -43.628123 ], [ 146.656494, -43.580391 ], [ 146.041260, -43.548548 ], [ 145.426025, -42.690511 ], [ 145.294189, -42.032974 ], [ 144.711914, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.733887, -40.697299 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.121094, -1.098565 ], [ 134.143066, -1.142502 ], [ 134.417725, -2.767478 ], [ 135.000000, -3.096636 ], [ 135.450439, -3.359889 ], [ 136.285400, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ], [ 139.174805, -2.043024 ], [ 139.921875, -2.405299 ], [ 140.998535, -2.591889 ], [ 141.031494, -9.112945 ], [ 140.141602, -8.287599 ], [ 139.119873, -8.091862 ], [ 138.878174, -8.374562 ], [ 137.603760, -8.407168 ], [ 138.032227, -7.591218 ], [ 138.658447, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.386336 ], [ 135.988770, -4.543570 ], [ 135.153809, -4.455951 ], [ 135.000000, -4.357366 ], [ 134.121094, -3.820408 ], [ 134.121094, -1.098565 ] ] ], [ [ [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ], [ 134.714355, -6.206090 ], [ 134.208984, -6.893707 ], [ 134.121094, -6.118708 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.733887, -40.697299 ], [ 145.393066, -40.788860 ], [ 145.920410, -40.979898 ], [ 146.359863, -41.137296 ], [ 146.986084, -40.979898 ], [ 147.689209, -40.805494 ], [ 148.282471, -40.871988 ], [ 148.293457, -40.979898 ], [ 148.326416, -41.640078 ], [ 145.030518, -41.640078 ], [ 144.711914, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.733887, -40.697299 ] ] ], [ [ [ 142.514648, -10.660608 ], [ 142.789307, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.107910, -11.899604 ], [ 143.151855, -12.318536 ], [ 143.514404, -12.833226 ], [ 143.591309, -13.400307 ], [ 143.558350, -13.763396 ], [ 143.920898, -14.541050 ], [ 144.558105, -14.168534 ], [ 144.887695, -14.594216 ], [ 145.371094, -14.976627 ], [ 145.261230, -15.421910 ], [ 145.480957, -16.277960 ], [ 145.634766, -16.783506 ], [ 145.887451, -16.899172 ], [ 146.151123, -17.759150 ], [ 146.063232, -18.271086 ], [ 146.381836, -18.958246 ], [ 147.469482, -19.476950 ], [ 148.842773, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.282227, -21.258661 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.116177 ], [ 150.479736, -22.553147 ], [ 150.721436, -22.400872 ], [ 150.897217, -23.453168 ], [ 152.072754, -24.457151 ], [ 152.852783, -25.264568 ], [ 153.127441, -26.066652 ], [ 153.160400, -26.637639 ], [ 153.083496, -27.254630 ], [ 153.566895, -28.101058 ], [ 153.511963, -28.988922 ], [ 153.336182, -29.449165 ], [ 153.061523, -30.344436 ], [ 153.083496, -30.921076 ], [ 152.885742, -31.634676 ], [ 152.446289, -32.546813 ], [ 151.699219, -33.036298 ], [ 151.336670, -33.815666 ], [ 151.007080, -34.307144 ], [ 150.710449, -35.164828 ], [ 150.325928, -35.666222 ], [ 150.073242, -36.412442 ], [ 149.941406, -37.107765 ], [ 149.996338, -37.422526 ], [ 149.414062, -37.770715 ], [ 148.304443, -37.805444 ], [ 147.381592, -38.212288 ], [ 146.920166, -38.599700 ], [ 146.315918, -39.027719 ], [ 145.480957, -38.591114 ], [ 144.876709, -38.410558 ], [ 145.030518, -37.892196 ], [ 144.481201, -38.082690 ], [ 143.602295, -38.805470 ], [ 142.745361, -38.530979 ], [ 142.174072, -38.376115 ], [ 141.602783, -38.307181 ], [ 140.635986, -38.013476 ], [ 139.987793, -37.396346 ], [ 139.801025, -36.641978 ], [ 139.570312, -36.137875 ], [ 139.075928, -35.728677 ], [ 138.120117, -35.603719 ], [ 138.438721, -35.119909 ], [ 138.197021, -34.379713 ], [ 137.713623, -35.074965 ], [ 136.823730, -35.254591 ], [ 137.351074, -34.705493 ], [ 137.493896, -34.125448 ], [ 137.889404, -33.632916 ], [ 137.801514, -32.898038 ], [ 136.988525, -33.751748 ], [ 136.362305, -34.089061 ], [ 135.988770, -34.885931 ], [ 135.197754, -34.470335 ], [ 135.230713, -33.943360 ], [ 135.000000, -33.669497 ], [ 134.604492, -33.220308 ], [ 134.121094, -32.870360 ], [ 134.121094, -32.796510 ], [ 134.263916, -32.611616 ], [ 134.121094, -32.537552 ], [ 134.121094, -11.953349 ], [ 134.384766, -12.039321 ], [ 134.670410, -11.931852 ], [ 135.000000, -12.093039 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.953349 ], [ 136.252441, -12.039321 ], [ 136.483154, -11.856599 ], [ 136.944580, -12.350734 ], [ 136.680908, -12.886780 ], [ 136.296387, -13.282719 ], [ 135.955811, -13.314794 ], [ 136.076660, -13.720708 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.494385, -14.987240 ], [ 136.285400, -15.548960 ], [ 137.054443, -15.866242 ], [ 137.570801, -16.214675 ], [ 138.295898, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.097900, -17.056785 ], [ 139.251709, -17.361125 ], [ 140.207520, -17.706828 ], [ 140.866699, -17.361125 ], [ 141.064453, -16.825574 ], [ 141.273193, -16.383391 ], [ 141.394043, -15.834536 ], [ 141.701660, -15.040296 ], [ 141.558838, -14.551684 ], [ 141.624756, -14.264383 ], [ 141.514893, -13.688688 ], [ 141.646729, -12.940322 ], [ 141.833496, -12.736801 ], [ 141.679688, -12.404389 ], [ 141.921387, -11.867351 ], [ 142.108154, -11.318481 ], [ 142.141113, -11.038255 ], [ 142.514648, -10.660608 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "name_sort": "Japan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "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": [ [ [ [ 134.121094, 34.307144 ], [ 134.637451, 34.152727 ], [ 134.758301, 33.806538 ], [ 134.197998, 33.201924 ], [ 134.121094, 33.266250 ], [ 134.121094, 34.307144 ] ] ], [ [ [ 141.361084, 41.385052 ], [ 141.525879, 40.979898 ], [ 141.910400, 39.993956 ], [ 141.877441, 39.181175 ], [ 140.954590, 38.177751 ], [ 140.965576, 37.142803 ], [ 140.592041, 36.350527 ], [ 140.767822, 35.844535 ], [ 140.251465, 35.146863 ], [ 138.966064, 34.669359 ], [ 137.208252, 34.615127 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 134.121094, 34.479392 ], [ 134.121094, 35.666222 ], [ 134.604492, 35.737595 ], [ 135.000000, 35.657296 ], [ 135.670166, 35.532226 ], [ 136.713867, 37.309014 ], [ 137.384033, 36.835668 ], [ 139.416504, 38.220920 ], [ 140.053711, 39.444678 ], [ 139.877930, 40.563895 ], [ 140.295410, 41.195190 ], [ 141.361084, 41.385052 ] ] ], [ [ [ 141.086426, 41.640078 ], [ 141.064453, 41.590797 ], [ 139.954834, 41.574361 ], [ 139.943848, 41.640078 ], [ 141.086426, 41.640078 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 180.000000, 66.861082 ], [ 180.000000, 64.984005 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.483643, 62.573106 ], [ 179.219971, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.561768, 61.773123 ], [ 173.671875, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.321045, 59.883425 ], [ 168.892822, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.838623, 60.163376 ], [ 164.871826, 59.734253 ], [ 163.531494, 59.872398 ], [ 163.212891, 59.215312 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.615992 ], [ 163.048096, 56.163906 ], [ 162.125244, 56.127184 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.348553 ], [ 160.015869, 53.206033 ], [ 158.521729, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.412354, 51.706608 ], [ 155.983887, 53.159947 ], [ 155.423584, 55.385352 ], [ 155.906982, 56.770788 ], [ 156.752930, 57.368015 ], [ 156.807861, 57.833055 ], [ 158.356934, 58.060444 ], [ 160.147705, 59.316375 ], [ 161.861572, 60.343260 ], [ 163.663330, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.114746, 60.549177 ], [ 159.301758, 61.778319 ], [ 156.719971, 61.438767 ], [ 154.215088, 59.761928 ], [ 155.039062, 59.147769 ], [ 152.808838, 58.887619 ], [ 151.259766, 58.785285 ], [ 151.336670, 59.506455 ], [ 149.776611, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.691895, 54.603892 ], [ 137.186279, 53.981935 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.258807 ], [ 139.899902, 54.194583 ], [ 141.339111, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.504150, 50.050085 ], [ 140.053711, 48.451066 ], [ 138.548584, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.856689, 45.151053 ], [ 135.505371, 43.992815 ], [ 135.000000, 43.524655 ], [ 134.868164, 43.405047 ], [ 134.121094, 43.076913 ], [ 134.121094, 47.227029 ], [ 134.494629, 47.583937 ], [ 135.000000, 48.436490 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.480204 ], [ 134.121094, 48.319734 ], [ 134.121094, 66.861082 ], [ 180.000000, 66.861082 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.250732, 52.742943 ], [ 143.228760, 51.761040 ], [ 143.646240, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.864774 ], [ 143.525391, 46.837650 ], [ 143.503418, 46.141783 ], [ 142.745361, 46.747389 ], [ 142.086182, 45.974060 ], [ 141.899414, 46.807580 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.130127, 49.617828 ], [ 142.174072, 50.958427 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.768196 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ] ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 135.021973, 48.480204 ], [ 135.000000, 48.436490 ], [ 134.494629, 47.583937 ], [ 134.121094, 47.227029 ], [ 134.121094, 48.319734 ], [ 135.000000, 48.480204 ], [ 135.021973, 48.480204 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "name_sort": "Japan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "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": [ [ [ [ 141.361084, 41.385052 ], [ 141.525879, 40.979898 ], [ 141.778564, 40.313043 ], [ 139.910889, 40.313043 ], [ 139.877930, 40.563895 ], [ 140.295410, 41.195190 ], [ 141.361084, 41.385052 ] ] ], [ [ [ 141.965332, 45.552525 ], [ 143.140869, 44.512176 ], [ 143.909912, 44.174325 ], [ 144.613037, 43.961191 ], [ 145.316162, 44.386692 ], [ 145.535889, 43.269206 ], [ 144.052734, 42.988576 ], [ 143.173828, 42.000325 ], [ 141.602783, 42.682435 ], [ 141.064453, 41.590797 ], [ 139.954834, 41.574361 ], [ 139.812012, 42.569264 ], [ 140.306396, 43.341160 ], [ 141.372070, 43.389082 ], [ 141.668701, 44.777936 ], [ 141.965332, 45.552525 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 140.460205, 72.851742 ], [ 149.490967, 72.201963 ], [ 150.347900, 71.608283 ], [ 152.962646, 70.844673 ], [ 157.005615, 71.034820 ], [ 158.994141, 70.869891 ], [ 159.829102, 70.455184 ], [ 159.708252, 69.725722 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.645625 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.584396 ], [ 169.573975, 68.696505 ], [ 170.815430, 69.017480 ], [ 170.002441, 69.653267 ], [ 170.452881, 70.099269 ], [ 173.638916, 69.820681 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 66.160511 ], [ 134.121094, 66.160511 ], [ 134.121094, 71.430678 ], [ 135.000000, 71.570115 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.490063 ], [ 139.141846, 72.418950 ], [ 140.460205, 72.851742 ] ] ], [ [ [ 180.000000, 71.517945 ], [ 180.000000, 70.833855 ], [ 178.901367, 70.783294 ], [ 178.714600, 71.098984 ], [ 180.000000, 71.517945 ] ] ], [ [ [ 142.053223, 73.858452 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.207666 ], [ 140.031738, 73.318400 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.766569 ], [ 142.053223, 73.858452 ] ] ], [ [ [ 138.823242, 76.137695 ], [ 141.470947, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.847801 ], [ 138.955078, 74.613445 ], [ 136.966553, 75.264239 ], [ 137.504883, 75.949568 ], [ 138.823242, 76.137695 ] ] ], [ [ [ 146.348877, 75.497157 ], [ 148.216553, 75.347841 ], [ 150.721436, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.174549 ], [ 146.348877, 75.497157 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.252808, 21.222821 ], [ -157.060547, 21.207459 ], [ -157.060547, 21.084500 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -158.131714, 21.314964 ], [ -158.258057, 21.539957 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.395142, 21.943046 ], [ -159.466553, 21.886987 ], [ -159.576416, 21.943046 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ], [ -157.840576, 21.534847 ], [ -158.252563, 21.534847 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.395142, 21.943046 ], [ -159.466553, 21.886987 ], [ -159.576416, 21.943046 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -158.417358, 56.022948 ], [ -158.433838, 55.995309 ], [ -159.032593, 55.776573 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.240601, 55.024873 ], [ -163.070068, 54.692884 ], [ -164.789429, 54.406143 ], [ -164.943237, 54.575246 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.351012 ], [ -162.037354, 55.776573 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.548706, 56.022948 ], [ -158.417358, 56.022948 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.060547, 58.915992 ], [ -157.500000, 58.799516 ], [ -158.197632, 58.616917 ], [ -158.521729, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.674082 ], [ -162.059326, 59.268688 ], [ -161.878052, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.822632, 59.800634 ], [ -164.663086, 60.269791 ], [ -165.349731, 60.508639 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.756714, 63.221255 ], [ -163.070068, 63.059937 ], [ -162.262573, 63.543658 ], [ -161.537476, 63.457874 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.223104 ], [ -161.520996, 64.404058 ], [ -160.779419, 64.790508 ], [ -161.394653, 64.778807 ], [ -162.454834, 64.560241 ], [ -162.762451, 64.339908 ], [ -163.547974, 64.560241 ], [ -164.965210, 64.449111 ], [ -166.426392, 64.687365 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.767456, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.674316, 66.513260 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.118292 ], [ -162.196655, 66.513260 ], [ -162.427368, 66.687784 ], [ -157.060547, 66.687784 ], [ -157.060547, 58.915992 ] ] ], [ [ [ -166.470337, 60.386720 ], [ -165.679321, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.195679, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.459106, 60.215262 ], [ -166.470337, 60.386720 ] ] ], [ [ [ -171.732788, 63.784913 ], [ -171.117554, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.433317 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.293579, 63.196496 ], [ -170.672607, 63.376756 ], [ -171.557007, 63.320083 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.784913 ] ] ], [ [ [ -157.060547, 58.898971 ], [ -157.060547, 56.815914 ], [ -157.500000, 56.671320 ], [ -158.120728, 56.465525 ], [ -158.433838, 55.995309 ], [ -159.032593, 55.776573 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -160.680542, 55.528631 ], [ -162.520752, 55.528631 ], [ -162.037354, 55.776573 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.219608 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.500000, 58.387318 ], [ -157.060547, 58.898971 ] ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ -171.381226, 66.687784 ], [ -171.013184, 66.513260 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.000000, 66.687784 ], [ -175.001221, 66.687784 ], [ -175.017700, 66.585400 ], [ -174.825439, 66.513260 ], [ -174.342041, 66.337505 ], [ -174.451904, 66.687784 ], [ -171.381226, 66.687784 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.657837, 66.576667 ], [ -163.674316, 66.513260 ], [ -163.718262, 66.337505 ], [ -165.574951, 66.337505 ], [ -164.767456, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ] ] ], [ [ [ -157.060547, 66.337505 ], [ -161.965942, 66.337505 ], [ -162.196655, 66.513260 ], [ -162.493286, 66.737732 ], [ -163.723755, 67.116613 ], [ -164.432373, 67.617589 ], [ -165.393677, 68.044569 ], [ -166.766968, 68.360725 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.916934 ], [ -163.168945, 69.372573 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.043579, 70.893280 ], [ -158.120728, 70.824836 ], [ -157.500000, 71.041960 ], [ -157.060547, 71.194838 ], [ -157.060547, 66.337505 ] ] ] ] } } +, +{ "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": [ [ [ [ -174.342041, 66.337505 ], [ -180.000000, 66.337505 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.825439, 66.513260 ], [ -174.342041, 66.337505 ] ] ], [ [ [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ] ] ], [ [ [ -174.342041, 66.337505 ], [ -174.396973, 66.513260 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -171.013184, 66.513260 ], [ -170.645142, 66.337505 ], [ -174.342041, 66.337505 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.066528, 19.859727 ], [ -154.808350, 19.513198 ], [ -154.835815, 19.456234 ], [ -155.225830, 19.243736 ], [ -155.544434, 19.088076 ], [ -155.692749, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.912476, 19.342245 ], [ -156.077271, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.978511 ], [ -155.923462, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.615601, 21.012727 ], [ -156.258545, 20.920397 ], [ -156.000366, 20.766387 ], [ -156.082764, 20.648206 ], [ -156.417847, 20.576225 ], [ -156.588135, 20.786931 ], [ -156.703491, 20.869078 ], [ -156.714478, 20.930659 ], [ -156.615601, 21.012727 ] ] ], [ [ [ -157.252808, 21.222821 ], [ -156.758423, 21.181851 ], [ -156.791382, 21.069123 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ] ] ], [ [ [ -157.939453, 21.652323 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -157.939453, 21.294493 ], [ -157.939453, 21.652323 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -157.939453, 21.652323 ], [ -157.840576, 21.534847 ], [ -157.939453, 21.534847 ], [ -157.939453, 21.652323 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -134.560547, 66.687784 ], [ -134.560547, 59.037729 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.324783 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.993042, 66.513260 ], [ -140.993042, 66.687784 ], [ -134.560547, 66.687784 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -140.993042, 66.687784 ], [ -140.993042, 66.513260 ], [ -140.998535, 60.307906 ], [ -140.015259, 60.277962 ], [ -139.042969, 60.001733 ], [ -138.345337, 59.562158 ], [ -137.455444, 58.907483 ], [ -136.483154, 59.464617 ], [ -135.477905, 59.789580 ], [ -135.000000, 59.324783 ], [ -134.945068, 59.271495 ], [ -134.560547, 59.037729 ], [ -134.560547, 58.156214 ], [ -135.000000, 58.185185 ], [ -136.631470, 58.214132 ], [ -137.801514, 58.502305 ], [ -139.872437, 59.539888 ], [ -140.828247, 59.728716 ], [ -142.575073, 60.086763 ], [ -143.959351, 60.001733 ], [ -145.925903, 60.459926 ], [ -147.117920, 60.885027 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.979754 ], [ -148.573608, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.369593 ], [ -151.721191, 59.156220 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.729630 ], [ -152.583618, 60.062099 ], [ -154.022827, 59.352796 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.308228, 57.730552 ], [ -156.313477, 57.424252 ], [ -156.560669, 56.980911 ], [ -157.500000, 56.671320 ], [ -157.939453, 56.523140 ], [ -157.939453, 57.468589 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.500000, 58.387318 ], [ -157.044067, 58.921664 ], [ -157.500000, 58.799516 ], [ -157.939453, 58.685504 ], [ -157.939453, 66.687784 ], [ -140.993042, 66.687784 ] ] ], [ [ [ -153.231812, 57.970244 ], [ -152.567139, 57.903174 ], [ -152.144165, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.737662 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.462681 ], [ -153.764648, 57.818429 ], [ -153.231812, 57.970244 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -135.000000, 69.478746 ], [ -134.560547, 69.590144 ], [ -134.560547, 66.337505 ], [ -140.993042, 66.337505 ], [ -140.993042, 66.513260 ], [ -140.987549, 69.712393 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -156.582642, 71.358822 ], [ -155.072021, 71.148745 ], [ -154.346924, 70.698136 ], [ -153.901978, 70.891482 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.431280 ], [ -149.721680, 70.530391 ], [ -147.617798, 70.214875 ], [ -145.695190, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.993042, 66.513260 ], [ -140.993042, 66.337505 ], [ -157.939453, 66.337505 ], [ -157.939453, 70.889683 ], [ -157.500000, 71.041960 ], [ -156.582642, 71.358822 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, 41.310824 ], [ -112.060547, 31.658057 ], [ -112.500000, 31.793555 ], [ -113.307495, 32.040677 ], [ -114.818115, 32.528289 ], [ -114.724731, 32.722599 ], [ -115.993652, 32.616243 ], [ -117.130737, 32.537552 ], [ -117.301025, 33.050112 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.086304, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.371704, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.160337 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.117272 ], [ -123.728027, 38.955137 ], [ -123.865356, 39.770548 ], [ -124.398193, 40.317232 ], [ -124.222412, 40.979898 ], [ -124.183960, 41.145570 ], [ -124.189453, 41.310824 ], [ -112.060547, 41.310824 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.724731, 32.722599 ], [ -114.818115, 32.528289 ], [ -113.307495, 32.040677 ], [ -112.500000, 31.793555 ], [ -112.060547, 31.658057 ], [ -112.060547, 28.782104 ], [ -112.230835, 28.955282 ], [ -112.274780, 29.267233 ], [ -112.500000, 29.587789 ], [ -112.813110, 30.021544 ], [ -113.164673, 30.789037 ], [ -113.153687, 31.175210 ], [ -113.873291, 31.569175 ], [ -114.208374, 31.527044 ], [ -114.779663, 31.802893 ], [ -114.938965, 31.395847 ], [ -114.774170, 30.916364 ], [ -114.675293, 30.164126 ], [ -114.334717, 29.754840 ], [ -113.593140, 29.065773 ], [ -113.428345, 28.830238 ], [ -113.274536, 28.758028 ], [ -113.142700, 28.415560 ], [ -112.966919, 28.425222 ], [ -112.763672, 27.780772 ], [ -112.500000, 27.561852 ], [ -112.461548, 27.527758 ], [ -112.247314, 27.176469 ], [ -112.060547, 27.024877 ], [ -112.060547, 24.681961 ], [ -112.186890, 24.741842 ], [ -112.153931, 25.473033 ], [ -112.302246, 26.012361 ], [ -112.500000, 26.145576 ], [ -113.466797, 26.770135 ], [ -113.598633, 26.642549 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.142257 ], [ -115.059814, 27.727298 ], [ -114.982910, 27.800210 ], [ -114.570923, 27.741885 ], [ -114.202881, 28.115594 ], [ -114.164429, 28.570050 ], [ -114.933472, 29.281608 ], [ -115.521240, 29.559123 ], [ -115.889282, 30.183122 ], [ -116.724243, 31.639352 ], [ -117.130737, 32.537552 ], [ -115.993652, 32.616243 ], [ -114.724731, 32.722599 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ] ] ], [ [ [ -112.060547, 56.022948 ], [ -112.060547, 49.001844 ], [ -112.500000, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.006714, 55.776573 ], [ -130.012207, 55.918430 ], [ -130.292358, 56.022948 ], [ -112.060547, 56.022948 ] ] ], [ [ [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -112.060547, 49.001844 ], [ -112.060547, 40.647304 ], [ -124.310303, 40.647304 ], [ -124.222412, 40.979898 ], [ -124.183960, 41.145570 ], [ -124.216919, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.145508, 43.711564 ], [ -123.903809, 45.525592 ], [ -124.085083, 46.867703 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.188063 ], [ -124.568481, 48.381794 ], [ -123.123779, 48.041365 ], [ -122.590942, 47.096305 ], [ -122.343750, 47.361153 ], [ -122.503052, 48.180739 ], [ -122.843628, 49.001844 ], [ -112.060547, 49.001844 ] ] ], [ [ [ -130.292358, 56.022948 ], [ -130.012207, 55.918430 ], [ -130.006714, 55.776573 ], [ -129.984741, 55.285372 ], [ -130.539551, 54.803851 ], [ -131.088867, 55.182004 ], [ -131.967773, 55.500639 ], [ -132.061157, 55.776573 ], [ -132.138062, 56.022948 ], [ -130.292358, 56.022948 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "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": "Polygon", "coordinates": [ [ [ -112.060547, 66.687784 ], [ -112.060547, 55.528631 ], [ -129.995728, 55.528631 ], [ -130.006714, 55.776573 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.324783 ], [ -135.439453, 59.753628 ], [ -135.439453, 66.687784 ], [ -112.060547, 66.687784 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -135.439453, 59.753628 ], [ -135.000000, 59.324783 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.695341 ], [ -131.709595, 56.553428 ], [ -130.012207, 55.918430 ], [ -130.006714, 55.776573 ], [ -129.995728, 55.528631 ], [ -131.978760, 55.528631 ], [ -132.061157, 55.776573 ], [ -132.253418, 56.371335 ], [ -133.544312, 57.180925 ], [ -134.082642, 58.124320 ], [ -135.000000, 58.185185 ], [ -135.038452, 58.188080 ], [ -135.439453, 58.196766 ], [ -135.439453, 59.753628 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -112.500000, 67.732354 ], [ -112.060547, 67.751080 ], [ -112.060547, 66.337505 ], [ -135.439453, 66.337505 ], [ -135.439453, 69.364831 ], [ -135.000000, 69.478746 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ] ] ], [ [ [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.500000, 72.948653 ], [ -112.445068, 72.956705 ], [ -112.060547, 72.819319 ], [ -112.060547, 68.602509 ], [ -112.500000, 68.580453 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.500000, 70.355706 ], [ -112.417603, 70.366783 ], [ -112.500000, 70.377854 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ] ] ], [ [ [ -117.405396, 74.140084 ], [ -116.998901, 74.019543 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.480591, 74.019543 ], [ -124.672852, 74.140084 ], [ -117.405396, 74.140084 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.998901, 74.019543 ], [ -116.592407, 73.898111 ], [ -124.288330, 73.898111 ], [ -124.480591, 74.019543 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ] ] ], [ [ [ -112.060547, 75.156266 ], [ -112.500000, 75.145003 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -112.500000, 76.112667 ], [ -112.060547, 75.968226 ], [ -112.060547, 75.156266 ] ] ], [ [ [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.054537 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ] ] ], [ [ [ -112.060547, 78.098296 ], [ -112.060547, 77.412270 ], [ -112.500000, 77.508873 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -112.500000, 78.067669 ], [ -112.060547, 78.098296 ] ] ], [ [ [ -112.060547, 78.688336 ], [ -112.060547, 78.408058 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -112.500000, 78.558309 ], [ -112.060547, 78.688336 ] ] ], [ [ [ -112.060547, 75.106932 ], [ -112.060547, 74.446412 ], [ -112.225342, 74.418402 ], [ -112.500000, 74.413974 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -112.500000, 75.014886 ], [ -112.060547, 75.106932 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.844238, 22.350076 ], [ -97.717896, 21.943046 ], [ -97.701416, 21.902278 ], [ -97.393799, 21.412162 ], [ -97.190552, 20.637925 ], [ -96.525879, 19.895888 ], [ -96.295166, 19.321511 ], [ -95.905151, 18.828316 ], [ -94.839478, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.554077, 18.427502 ], [ -92.790527, 18.526492 ], [ -92.037964, 18.708692 ], [ -91.411743, 18.880300 ], [ -90.774536, 19.285221 ], [ -90.538330, 19.870060 ], [ -90.455933, 20.709877 ], [ -90.280151, 21.002471 ], [ -90.000000, 21.110125 ], [ -89.604492, 21.263781 ], [ -89.560547, 21.274019 ], [ -89.560547, 17.816686 ], [ -90.000000, 17.821916 ], [ -91.005249, 17.821916 ], [ -91.005249, 17.256236 ], [ -91.455688, 17.256236 ], [ -91.082153, 16.920195 ], [ -90.714111, 16.688817 ], [ -90.604248, 16.472963 ], [ -90.439453, 16.415009 ], [ -90.466919, 16.072207 ], [ -91.752319, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.066819 ], [ -92.208252, 14.833302 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.617747 ], [ -93.878174, 15.940202 ], [ -94.696655, 16.204125 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.755249 ], [ -96.558838, 15.654776 ], [ -97.267456, 15.919074 ], [ -98.014526, 16.109153 ], [ -98.948364, 16.567758 ], [ -99.700928, 16.709863 ], [ -100.832520, 17.172283 ], [ -101.667480, 17.649257 ], [ -101.920166, 17.921249 ], [ -102.480469, 17.978733 ], [ -103.502197, 18.297165 ], [ -103.919678, 18.750310 ], [ -104.996338, 19.316327 ], [ -105.496216, 19.947533 ], [ -105.732422, 20.437308 ], [ -105.402832, 20.535077 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.079375 ], [ -105.270996, 21.422390 ], [ -105.606079, 21.871695 ], [ -105.622559, 21.943046 ], [ -105.693970, 22.273847 ], [ -105.748901, 22.350076 ], [ -97.844238, 22.350076 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guatemala", "sov_a3": "GTM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guatemala", "adm0_a3": "GTM", "geou_dif": 0, "geounit": "Guatemala", "gu_a3": "GTM", "su_dif": 0, "subunit": "Guatemala", "su_a3": "GTM", "brk_diff": 0, "name": "Guatemala", "name_long": "Guatemala", "brk_a3": "GTM", "brk_name": "Guatemala", "abbrev": "Guat.", "postal": "GT", "formal_en": "Republic of Guatemala", "name_sort": "Guatemala", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 13276517, "gdp_md_est": 68580, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GT", "iso_a3": "GTM", "iso_n3": "320", "un_a3": "320", "wb_a2": "GT", "wb_a3": "GTM", "woe_id": -99, "adm0_a3_is": "GTM", "adm0_a3_us": "GTM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.821916 ], [ -89.560547, 17.816686 ], [ -89.560547, 14.370834 ], [ -89.588013, 14.365513 ], [ -89.560547, 14.306969 ], [ -89.560547, 14.232438 ], [ -89.725342, 14.136576 ], [ -90.000000, 13.934067 ], [ -90.065918, 13.886079 ], [ -90.098877, 13.736717 ], [ -90.609741, 13.912740 ], [ -91.235962, 13.928736 ], [ -91.691895, 14.131249 ], [ -92.230225, 14.541050 ], [ -92.208252, 14.833302 ], [ -92.087402, 15.066819 ], [ -92.230225, 15.252389 ], [ -91.752319, 16.066929 ], [ -90.466919, 16.072207 ], [ -90.439453, 16.415009 ], [ -90.604248, 16.472963 ], [ -90.714111, 16.688817 ], [ -91.082153, 16.920195 ], [ -91.455688, 17.256236 ], [ -91.005249, 17.256236 ], [ -91.005249, 17.821916 ], [ -90.000000, 17.821916 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, 41.310824 ], [ -89.560547, 30.173625 ], [ -89.598999, 30.164126 ], [ -89.560547, 30.111870 ], [ -89.560547, 29.224096 ], [ -89.780273, 29.310351 ], [ -90.000000, 29.200123 ], [ -90.159302, 29.118574 ], [ -90.884399, 29.152161 ], [ -91.631470, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.229980, 29.788217 ], [ -93.850708, 29.716681 ], [ -94.691162, 29.482643 ], [ -95.603027, 28.738764 ], [ -96.597290, 28.309217 ], [ -97.141113, 27.834219 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.691637 ], [ -97.333374, 26.214591 ], [ -97.141113, 25.874052 ], [ -97.531128, 25.844393 ], [ -98.245239, 26.061718 ], [ -99.025269, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.542371 ], [ -100.112915, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.958862, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.112183, 28.974507 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.242798, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.027832, 31.334871 ], [ -112.500000, 31.793555 ], [ -112.939453, 31.928855 ], [ -112.939453, 41.310824 ], [ -89.560547, 41.310824 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -112.939453, 30.306503 ], [ -112.939453, 31.928855 ], [ -112.500000, 31.793555 ], [ -111.027832, 31.334871 ], [ -108.242798, 31.344254 ], [ -108.242798, 31.756196 ], [ -106.512451, 31.756196 ], [ -106.144409, 31.400535 ], [ -105.633545, 31.085870 ], [ -105.040283, 30.647364 ], [ -104.710693, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.272025 ], [ -103.112183, 28.974507 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.958862, 29.382175 ], [ -100.458984, 28.700225 ], [ -100.112915, 28.110749 ], [ -99.525146, 27.542371 ], [ -99.305420, 26.843677 ], [ -99.025269, 26.372185 ], [ -98.245239, 26.061718 ], [ -97.531128, 25.844393 ], [ -97.141113, 25.874052 ], [ -97.531128, 24.996016 ], [ -97.706909, 24.277012 ], [ -97.778320, 22.933101 ], [ -97.877197, 22.446572 ], [ -97.717896, 21.943046 ], [ -97.701416, 21.902278 ], [ -97.470703, 21.534847 ], [ -105.353394, 21.534847 ], [ -105.606079, 21.871695 ], [ -105.622559, 21.943046 ], [ -105.693970, 22.273847 ], [ -106.029053, 22.776182 ], [ -106.913452, 23.770264 ], [ -107.918701, 24.552120 ], [ -108.402100, 25.175117 ], [ -109.264526, 25.582085 ], [ -109.445801, 25.829561 ], [ -109.291992, 26.445984 ], [ -109.802856, 26.676913 ], [ -110.396118, 27.166695 ], [ -110.643311, 27.863360 ], [ -111.181641, 27.945886 ], [ -111.763916, 28.468691 ], [ -112.230835, 28.955282 ], [ -112.274780, 29.267233 ], [ -112.500000, 29.587789 ], [ -112.813110, 30.021544 ], [ -112.939453, 30.306503 ] ] ], [ [ [ -112.939453, 28.352734 ], [ -112.763672, 27.780772 ], [ -112.500000, 27.561852 ], [ -112.461548, 27.527758 ], [ -112.247314, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.286011, 25.735581 ], [ -110.989380, 25.299338 ], [ -110.714722, 24.826625 ], [ -110.659790, 24.302047 ], [ -110.176392, 24.266997 ], [ -109.775391, 23.815501 ], [ -109.412842, 23.367471 ], [ -109.434814, 23.185813 ], [ -109.857788, 22.821757 ], [ -110.033569, 22.826820 ], [ -110.297241, 23.433009 ], [ -110.950928, 24.001308 ], [ -111.676025, 24.487149 ], [ -112.186890, 24.741842 ], [ -112.153931, 25.473033 ], [ -112.302246, 26.012361 ], [ -112.500000, 26.145576 ], [ -112.939453, 26.431228 ], [ -112.939453, 28.352734 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -89.560547, 56.022948 ], [ -89.560547, 48.011975 ], [ -89.604492, 48.011975 ], [ -90.000000, 48.096426 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -112.939453, 49.001844 ], [ -112.939453, 56.022948 ], [ -89.560547, 56.022948 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.822998, 49.389524 ], [ -94.641724, 48.843028 ], [ -94.334106, 48.672826 ], [ -93.630981, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.834961, 48.272225 ], [ -90.000000, 48.096426 ], [ -89.604492, 48.011975 ], [ -89.560547, 48.011975 ], [ -89.560547, 40.647304 ], [ -112.939453, 40.647304 ], [ -112.939453, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.158081, 49.385949 ], [ -94.822998, 49.389524 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -89.560547, 66.687784 ], [ -89.560547, 64.050575 ], [ -89.917603, 64.033744 ], [ -90.000000, 63.988009 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -90.000000, 57.076575 ], [ -89.560547, 56.974924 ], [ -89.560547, 55.528631 ], [ -112.939453, 55.528631 ], [ -112.939453, 66.687784 ], [ -89.560547, 66.687784 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "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": [ [ [ [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -90.000000, 68.802028 ], [ -89.560547, 69.060712 ], [ -89.560547, 66.337505 ], [ -112.939453, 66.337505 ], [ -112.939453, 67.713612 ], [ -112.500000, 67.732354 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ] ] ], [ [ [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -112.500000, 68.580453 ], [ -112.939453, 68.556368 ], [ -112.939453, 70.298378 ], [ -112.500000, 70.355706 ], [ -112.417603, 70.366783 ], [ -112.500000, 70.377854 ], [ -112.939453, 70.431280 ], [ -112.939453, 72.888954 ], [ -112.500000, 72.948653 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ] ] ], [ [ [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ] ] ], [ [ [ -89.560547, 72.988876 ], [ -89.560547, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.587473 ], [ -90.208740, 72.235514 ], [ -90.000000, 72.478584 ], [ -89.560547, 72.988876 ] ] ], [ [ [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ] ] ], [ [ [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ], [ -91.785278, 74.019543 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.927368, 74.019543 ], [ -94.504395, 74.135580 ] ] ], [ [ [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ], [ -91.785278, 74.019543 ], [ -90.834961, 73.898111 ], [ -95.366821, 73.898111 ], [ -94.504395, 74.135580 ] ] ], [ [ [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -112.500000, 74.413974 ], [ -112.939453, 74.406593 ], [ -112.939453, 74.920855 ], [ -112.500000, 75.014886 ], [ -111.796875, 75.163300 ], [ -112.500000, 75.145003 ], [ -112.939453, 75.133733 ], [ -112.939453, 76.183684 ], [ -112.593384, 76.141643 ], [ -112.500000, 76.112667 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ] ] ], [ [ [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -90.000000, 75.884072 ], [ -89.824219, 75.847855 ], [ -89.560547, 75.750830 ], [ -89.560547, 74.500817 ], [ -89.769287, 74.516956 ], [ -90.000000, 74.544794 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ] ] ], [ [ [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ] ] ], [ [ [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ] ] ], [ [ [ -89.560547, 76.959094 ], [ -89.560547, 76.742917 ], [ -89.620972, 76.952895 ], [ -89.560547, 76.959094 ] ] ], [ [ [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -112.500000, 77.508873 ], [ -112.939453, 77.604745 ], [ -112.939453, 77.967310 ], [ -112.725220, 78.051758 ], [ -112.500000, 78.067669 ], [ -111.269531, 78.153679 ] ] ], [ [ [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ] ] ], [ [ [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ] ] ], [ [ [ -104.798584, 79.253586 ], [ -103.617554, 79.171335 ], [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.468750, 79.171335 ], [ -105.485229, 79.253586 ], [ -104.798584, 79.253586 ] ] ], [ [ [ -89.560547, 79.253586 ], [ -89.560547, 78.267036 ], [ -90.000000, 78.249150 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.768311, 79.171335 ], [ -93.526611, 79.253586 ], [ -89.560547, 79.253586 ] ] ], [ [ [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.500000, 78.408058 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -112.500000, 78.558309 ], [ -111.500244, 78.850946 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -105.496216, 79.301620 ], [ -103.617554, 79.171335 ], [ -103.529663, 79.166173 ], [ -102.952881, 79.088462 ], [ -105.452271, 79.088462 ], [ -105.468750, 79.171335 ], [ -105.496216, 79.301620 ] ] ], [ [ [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ], [ -90.000000, 80.579842 ], [ -89.560547, 80.523935 ], [ -89.560547, 79.088462 ], [ -93.938599, 79.088462 ], [ -93.938599, 79.114427 ], [ -93.768311, 79.171335 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ] ] ], [ [ [ -89.560547, 82.100285 ], [ -89.560547, 80.951780 ], [ -90.000000, 81.165215 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -90.000000, 82.088196 ], [ -89.560547, 82.100285 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.922974, -55.528631 ], [ -68.153687, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.016113, -55.528631 ], [ -67.922974, -55.528631 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.516221 ], [ -68.637085, -52.633063 ], [ -68.637085, -54.867124 ], [ -67.500000, -54.870285 ], [ -67.060547, -54.889246 ], [ -67.060547, -55.018575 ], [ -67.291260, -55.301011 ], [ -67.500000, -55.375989 ], [ -68.153687, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.497527 ], [ -69.960938, -55.197683 ], [ -71.010132, -55.053203 ], [ -72.268066, -54.492377 ], [ -73.289795, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.044516 ], [ -72.438354, -53.712965 ], [ -71.109009, -54.072283 ], [ -70.592651, -53.615321 ], [ -70.268555, -52.928775 ], [ -69.345703, -52.516221 ] ] ], [ [ [ -71.878052, -40.647304 ], [ -71.916504, -40.830437 ], [ -71.900024, -40.979898 ], [ -71.751709, -42.049293 ], [ -72.152710, -42.252918 ], [ -71.916504, -43.405047 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.334229, -44.406316 ], [ -71.224365, -44.781835 ], [ -71.663818, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.921997, -46.882723 ], [ -72.449341, -47.735629 ], [ -72.333984, -48.242967 ], [ -72.652588, -48.875554 ], [ -73.416138, -49.317961 ], [ -73.328247, -50.376999 ], [ -72.976685, -50.739932 ], [ -72.312012, -50.673835 ], [ -72.333984, -51.423189 ], [ -71.916504, -52.008555 ], [ -69.499512, -52.140231 ], [ -68.576660, -52.298402 ], [ -69.466553, -52.291683 ], [ -69.944458, -52.536273 ], [ -70.845337, -52.898962 ], [ -71.010132, -53.833081 ], [ -71.433105, -53.855767 ], [ -72.559204, -53.530513 ], [ -73.707275, -52.832640 ], [ -74.948730, -52.261434 ], [ -75.261841, -51.628248 ], [ -74.981689, -51.041394 ], [ -75.481567, -50.376999 ], [ -75.613403, -48.672826 ], [ -75.184937, -47.709762 ], [ -74.130249, -46.939012 ], [ -75.646362, -46.645665 ], [ -74.696045, -45.763691 ], [ -74.355469, -44.099421 ], [ -73.240356, -44.453389 ], [ -72.718506, -42.382894 ], [ -73.394165, -42.114524 ], [ -73.701782, -43.365126 ], [ -74.333496, -43.221190 ], [ -74.020386, -41.791793 ], [ -73.872070, -40.979898 ], [ -73.806152, -40.647304 ], [ -71.878052, -40.647304 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.637085, -52.633063 ], [ -68.252563, -53.097323 ], [ -67.752686, -53.849286 ], [ -67.500000, -53.965781 ], [ -67.060547, -54.168866 ], [ -67.060547, -54.889246 ], [ -67.500000, -54.870285 ], [ -68.637085, -54.867124 ], [ -68.637085, -52.633063 ] ] ], [ [ [ -67.060547, -40.647304 ], [ -67.060547, -45.398450 ], [ -67.296753, -45.548679 ], [ -67.500000, -46.088472 ], [ -67.582397, -46.301406 ], [ -67.500000, -46.362093 ], [ -67.060547, -46.687131 ], [ -67.060547, -48.643798 ], [ -67.170410, -48.694586 ], [ -67.500000, -49.300054 ], [ -67.818604, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.142456, -50.729502 ], [ -68.818359, -51.767840 ], [ -68.153687, -52.348763 ], [ -68.576660, -52.298402 ], [ -69.499512, -52.140231 ], [ -71.916504, -52.008555 ], [ -72.333984, -51.423189 ], [ -72.312012, -50.673835 ], [ -72.976685, -50.739932 ], [ -73.328247, -50.376999 ], [ -73.416138, -49.317961 ], [ -72.652588, -48.875554 ], [ -72.333984, -48.242967 ], [ -72.449341, -47.735629 ], [ -71.921997, -46.882723 ], [ -71.553955, -45.560218 ], [ -71.663818, -44.972571 ], [ -71.224365, -44.781835 ], [ -71.334229, -44.406316 ], [ -71.795654, -44.205835 ], [ -71.466064, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.152710, -42.252918 ], [ -71.751709, -42.049293 ], [ -71.900024, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.878052, -40.647304 ], [ -67.060547, -40.647304 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.208618, -21.534847 ], [ -68.093262, -21.943046 ], [ -67.829590, -22.872379 ], [ -67.500000, -22.806567 ], [ -67.109985, -22.735657 ], [ -67.060547, -22.826820 ], [ -67.060547, -23.211058 ], [ -67.329712, -24.021379 ], [ -67.500000, -24.101633 ], [ -68.422852, -24.517139 ], [ -68.389893, -26.180089 ], [ -68.598633, -26.504989 ], [ -68.296509, -26.897578 ], [ -69.005127, -27.518015 ], [ -69.658813, -28.459033 ], [ -70.015869, -29.367814 ], [ -69.922485, -30.334954 ], [ -70.537720, -31.363018 ], [ -70.076294, -33.086939 ], [ -69.818115, -33.270843 ], [ -69.818115, -34.189086 ], [ -70.389404, -35.169318 ], [ -70.367432, -36.004673 ], [ -71.125488, -36.655200 ], [ -71.119995, -37.575059 ], [ -70.817871, -38.552461 ], [ -71.416626, -38.912407 ], [ -71.685791, -39.804316 ], [ -71.916504, -40.830437 ], [ -71.900024, -40.979898 ], [ -71.850586, -41.310824 ], [ -73.932495, -41.310824 ], [ -73.872070, -40.979898 ], [ -73.679810, -39.939225 ], [ -73.218384, -39.257778 ], [ -73.509521, -38.281313 ], [ -73.591919, -37.155939 ], [ -73.168945, -37.120906 ], [ -72.553711, -35.505400 ], [ -71.867065, -33.906896 ], [ -71.438599, -32.417066 ], [ -71.669312, -30.916364 ], [ -71.372681, -30.092861 ], [ -71.493530, -28.859108 ], [ -70.905762, -27.639740 ], [ -70.729980, -25.705888 ], [ -70.405884, -23.624395 ], [ -70.169678, -21.943046 ], [ -70.114746, -21.534847 ], [ -68.208618, -21.534847 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -21.534847 ], [ -67.060547, -22.684984 ], [ -67.109985, -22.735657 ], [ -67.500000, -22.806567 ], [ -67.829590, -22.872379 ], [ -68.093262, -21.943046 ], [ -68.208618, -21.534847 ], [ -67.060547, -21.534847 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, -23.211058 ], [ -67.060547, -41.310824 ], [ -71.850586, -41.310824 ], [ -71.900024, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.685791, -39.804316 ], [ -71.416626, -38.912407 ], [ -70.817871, -38.552461 ], [ -71.119995, -37.575059 ], [ -71.125488, -36.655200 ], [ -70.367432, -36.004673 ], [ -70.389404, -35.169318 ], [ -69.818115, -34.189086 ], [ -69.818115, -33.270843 ], [ -70.076294, -33.086939 ], [ -70.537720, -31.363018 ], [ -69.922485, -30.334954 ], [ -70.015869, -29.367814 ], [ -69.658813, -28.459033 ], [ -69.005127, -27.518015 ], [ -68.296509, -26.897578 ], [ -68.598633, -26.504989 ], [ -68.389893, -26.180089 ], [ -68.422852, -24.517139 ], [ -67.500000, -24.101633 ], [ -67.329712, -24.021379 ], [ -67.060547, -23.211058 ] ] ], [ [ [ -67.060547, -22.826820 ], [ -67.109985, -22.735657 ], [ -67.060547, -22.684984 ], [ -67.060547, -22.826820 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.021362, 0.439449 ], [ -70.021362, -0.181274 ], [ -69.581909, -0.549308 ], [ -69.422607, -1.120534 ], [ -69.444580, -1.554375 ], [ -69.895020, -4.297113 ], [ -70.394897, -3.765597 ], [ -70.697021, -3.738190 ], [ -70.048828, -2.723583 ], [ -70.817871, -2.251617 ], [ -71.416626, -2.339438 ], [ -71.779175, -2.169281 ], [ -72.328491, -2.432740 ], [ -73.075562, -2.306506 ], [ -73.663330, -1.257834 ], [ -74.124756, -0.999705 ], [ -74.443359, -0.527336 ], [ -75.108032, -0.054932 ], [ -75.377197, -0.148315 ], [ -75.651855, 0.000000 ], [ -75.805664, 0.087891 ], [ -76.294556, 0.417477 ], [ -76.580200, 0.258178 ], [ -77.426147, 0.400998 ], [ -77.453613, 0.439449 ], [ -70.021362, 0.439449 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.453613, 0.439449 ], [ -77.426147, 0.400998 ], [ -76.580200, 0.258178 ], [ -76.294556, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.651855, 0.000000 ], [ -75.377197, -0.148315 ], [ -75.234375, -0.906334 ], [ -75.547485, -1.559866 ], [ -76.640625, -2.608352 ], [ -77.838135, -2.997899 ], [ -78.453369, -3.869735 ], [ -78.640137, -4.543570 ], [ -79.205933, -4.954142 ], [ -79.628906, -4.450474 ], [ -80.029907, -4.340934 ], [ -80.447388, -4.423090 ], [ -80.469360, -4.056056 ], [ -80.189209, -3.820408 ], [ -80.304565, -3.403758 ], [ -79.771729, -2.652251 ], [ -79.991455, -2.218684 ], [ -80.370483, -2.679687 ], [ -80.969238, -2.246129 ], [ -80.765991, -1.960677 ], [ -80.936279, -1.054628 ], [ -80.584717, -0.906334 ], [ -80.403442, -0.280150 ], [ -80.233154, 0.000000 ], [ -80.024414, 0.362546 ], [ -80.035400, 0.439449 ], [ -77.453613, 0.439449 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Peru", "sov_a3": "PER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Peru", "adm0_a3": "PER", "geou_dif": 0, "geounit": "Peru", "gu_a3": "PER", "su_dif": 0, "subunit": "Peru", "su_a3": "PER", "brk_diff": 0, "name": "Peru", "name_long": "Peru", "brk_a3": "PER", "brk_name": "Peru", "abbrev": "Peru", "postal": "PE", "formal_en": "Republic of Peru", "name_sort": "Peru", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 11, "pop_est": 29546963, "gdp_md_est": 247300, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PE", "iso_a3": "PER", "iso_n3": "604", "un_a3": "604", "wb_a2": "PE", "wb_a3": "PER", "woe_id": -99, "adm0_a3_is": "PER", "adm0_a3_us": "PER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.108032, -0.054932 ], [ -74.443359, -0.527336 ], [ -74.124756, -0.999705 ], [ -73.663330, -1.257834 ], [ -73.075562, -2.306506 ], [ -72.328491, -2.432740 ], [ -71.779175, -2.169281 ], [ -71.416626, -2.339438 ], [ -70.817871, -2.251617 ], [ -70.048828, -2.723583 ], [ -70.697021, -3.738190 ], [ -70.394897, -3.765597 ], [ -69.895020, -4.297113 ], [ -70.795898, -4.247812 ], [ -70.933228, -4.401183 ], [ -71.751709, -4.592852 ], [ -72.894287, -5.271478 ], [ -72.965698, -5.736243 ], [ -73.223877, -6.085936 ], [ -73.125000, -6.626414 ], [ -73.729248, -6.915521 ], [ -73.723755, -7.340675 ], [ -73.987427, -7.520427 ], [ -73.575439, -8.423470 ], [ -73.020630, -9.031578 ], [ -73.229370, -9.459899 ], [ -72.564697, -9.519497 ], [ -72.185669, -10.049994 ], [ -71.306763, -10.077037 ], [ -70.482788, -9.486990 ], [ -70.548706, -11.005904 ], [ -70.098267, -11.119117 ], [ -69.532471, -10.946585 ], [ -68.670044, -12.559925 ], [ -68.884277, -12.897489 ], [ -68.933716, -13.597939 ], [ -68.950195, -14.450639 ], [ -69.340210, -14.950092 ], [ -69.164429, -15.321274 ], [ -69.395142, -15.660065 ], [ -68.961182, -16.499299 ], [ -69.592896, -17.575957 ], [ -69.862061, -18.088423 ], [ -70.372925, -18.344098 ], [ -71.378174, -17.769612 ], [ -71.466064, -17.361125 ], [ -73.449097, -16.357039 ], [ -75.239868, -15.262989 ], [ -76.014404, -14.647368 ], [ -76.426392, -13.822078 ], [ -76.261597, -13.533860 ], [ -77.107544, -12.221918 ], [ -78.096313, -10.374362 ], [ -79.041138, -8.385431 ], [ -79.447632, -7.928675 ], [ -79.760742, -7.193551 ], [ -80.540771, -6.539103 ], [ -81.254883, -6.135093 ], [ -80.930786, -5.687050 ], [ -81.414185, -4.735201 ], [ -81.101074, -4.034138 ], [ -80.304565, -3.403758 ], [ -80.189209, -3.820408 ], [ -80.469360, -4.056056 ], [ -80.447388, -4.423090 ], [ -80.029907, -4.340934 ], [ -79.628906, -4.450474 ], [ -79.205933, -4.954142 ], [ -78.640137, -4.543570 ], [ -78.453369, -3.869735 ], [ -77.838135, -2.997899 ], [ -76.640625, -2.608352 ], [ -75.547485, -1.559866 ], [ -75.234375, -0.906334 ], [ -75.377197, -0.148315 ], [ -75.108032, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.592896, -17.575957 ], [ -69.104004, -18.255437 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.404430 ], [ -68.757935, -20.370377 ], [ -68.225098, -21.493964 ], [ -68.093262, -21.943046 ], [ -67.977905, -22.350076 ], [ -70.224609, -22.350076 ], [ -70.169678, -21.943046 ], [ -70.092773, -21.391705 ], [ -70.169678, -19.756364 ], [ -70.372925, -18.344098 ], [ -69.862061, -18.088423 ], [ -69.592896, -17.575957 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -10.223031 ], [ -67.060547, -22.350076 ], [ -67.977905, -22.350076 ], [ -68.093262, -21.943046 ], [ -68.225098, -21.493964 ], [ -68.757935, -20.370377 ], [ -68.444824, -19.404430 ], [ -68.972168, -18.979026 ], [ -69.104004, -18.255437 ], [ -69.592896, -17.575957 ], [ -68.961182, -16.499299 ], [ -69.395142, -15.660065 ], [ -69.164429, -15.321274 ], [ -69.340210, -14.950092 ], [ -68.950195, -14.450639 ], [ -68.933716, -13.597939 ], [ -68.884277, -12.897489 ], [ -68.670044, -12.559925 ], [ -69.532471, -10.946585 ], [ -68.790894, -11.032864 ], [ -68.274536, -11.011297 ], [ -68.049316, -10.709189 ], [ -67.500000, -10.455402 ], [ -67.175903, -10.304110 ], [ -67.060547, -10.223031 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ -67.060547, 0.439449 ], [ -67.060547, -10.223031 ], [ -67.175903, -10.304110 ], [ -67.500000, -10.455402 ], [ -68.049316, -10.709189 ], [ -68.274536, -11.011297 ], [ -68.790894, -11.032864 ], [ -69.532471, -10.946585 ], [ -70.098267, -11.119117 ], [ -70.548706, -11.005904 ], [ -70.482788, -9.486990 ], [ -71.306763, -10.077037 ], [ -72.185669, -10.049994 ], [ -72.564697, -9.519497 ], [ -73.229370, -9.459899 ], [ -73.020630, -9.031578 ], [ -73.575439, -8.423470 ], [ -73.987427, -7.520427 ], [ -73.723755, -7.340675 ], [ -73.729248, -6.915521 ], [ -73.125000, -6.626414 ], [ -73.223877, -6.085936 ], [ -72.965698, -5.736243 ], [ -72.894287, -5.271478 ], [ -71.751709, -4.592852 ], [ -70.933228, -4.401183 ], [ -70.795898, -4.247812 ], [ -69.895020, -4.297113 ], [ -69.444580, -1.554375 ], [ -69.422607, -1.120534 ], [ -69.581909, -0.549308 ], [ -70.021362, -0.181274 ], [ -70.021362, 0.439449 ], [ -67.060547, 0.439449 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.055664, 21.545066 ], [ -86.813965, 21.335432 ], [ -86.846924, 20.853679 ], [ -87.385254, 20.257044 ], [ -87.621460, 19.647761 ], [ -87.440186, 19.476950 ], [ -87.588501, 19.041349 ], [ -87.841187, 18.260653 ], [ -88.093872, 18.521283 ], [ -88.494873, 18.490029 ], [ -88.851929, 17.884659 ], [ -89.033203, 18.004856 ], [ -89.154053, 17.957832 ], [ -89.148560, 17.811456 ], [ -90.000000, 17.821916 ], [ -90.439453, 17.821916 ], [ -90.439453, 20.730428 ], [ -90.280151, 21.002471 ], [ -90.000000, 21.110125 ], [ -89.604492, 21.263781 ], [ -88.544312, 21.493964 ], [ -87.659912, 21.463293 ], [ -87.055664, 21.545066 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guatemala", "sov_a3": "GTM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guatemala", "adm0_a3": "GTM", "geou_dif": 0, "geounit": "Guatemala", "gu_a3": "GTM", "su_dif": 0, "subunit": "Guatemala", "su_a3": "GTM", "brk_diff": 0, "name": "Guatemala", "name_long": "Guatemala", "brk_a3": "GTM", "brk_name": "Guatemala", "abbrev": "Guat.", "postal": "GT", "formal_en": "Republic of Guatemala", "name_sort": "Guatemala", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 13276517, "gdp_md_est": 68580, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GT", "iso_a3": "GTM", "iso_n3": "320", "un_a3": "320", "wb_a2": "GT", "wb_a3": "GTM", "woe_id": -99, "adm0_a3_is": "GTM", "adm0_a3_us": "GTM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.821916 ], [ -89.148560, 17.811456 ], [ -89.154053, 17.020020 ], [ -89.230957, 15.887376 ], [ -88.934326, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.522339, 15.855674 ], [ -88.225708, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.159546, 15.066819 ], [ -89.225464, 14.875778 ], [ -89.148560, 14.679254 ], [ -89.357300, 14.429360 ], [ -89.588013, 14.365513 ], [ -89.538574, 14.248411 ], [ -89.725342, 14.136576 ], [ -90.000000, 13.934067 ], [ -90.065918, 13.886079 ], [ -90.098877, 13.736717 ], [ -90.439453, 13.854081 ], [ -90.439453, 17.821916 ], [ -90.000000, 17.821916 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Honduras", "sov_a3": "HND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Honduras", "adm0_a3": "HND", "geou_dif": 0, "geounit": "Honduras", "gu_a3": "HND", "su_dif": 0, "subunit": "Honduras", "su_a3": "HND", "brk_diff": 0, "name": "Honduras", "name_long": "Honduras", "brk_a3": "HND", "brk_name": "Honduras", "abbrev": "Hond.", "postal": "HN", "formal_en": "Republic of Honduras", "name_sort": "Honduras", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7792854, "gdp_md_est": 33720, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "HN", "iso_a3": "HND", "iso_n3": "340", "un_a3": "340", "wb_a2": "HN", "wb_a3": "HND", "woe_id": -99, "adm0_a3_is": "HND", "adm0_a3_us": "HND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.006470, 16.008856 ], [ -85.687866, 15.956048 ], [ -85.446167, 15.887376 ], [ -85.182495, 15.913791 ], [ -84.984741, 15.998295 ], [ -84.528809, 15.860958 ], [ -84.369507, 15.839820 ], [ -84.067383, 15.649486 ], [ -83.776245, 15.427206 ], [ -83.413696, 15.273587 ], [ -83.150024, 14.997852 ], [ -83.490601, 15.019075 ], [ -83.633423, 14.881087 ], [ -83.979492, 14.753635 ], [ -84.232178, 14.753635 ], [ -84.451904, 14.626109 ], [ -84.649658, 14.668626 ], [ -84.825439, 14.822681 ], [ -84.929810, 14.790817 ], [ -85.056152, 14.551684 ], [ -85.149536, 14.562318 ], [ -85.166016, 14.354870 ], [ -85.517578, 14.083301 ], [ -85.698853, 13.960723 ], [ -85.803223, 13.838080 ], [ -86.099854, 14.040673 ], [ -86.314087, 13.774066 ], [ -86.522827, 13.779402 ], [ -86.759033, 13.758060 ], [ -86.737061, 13.266680 ], [ -86.885376, 13.255986 ], [ -87.006226, 13.025966 ], [ -87.319336, 12.988500 ], [ -87.489624, 13.298757 ], [ -87.797241, 13.389620 ], [ -87.725830, 13.790071 ], [ -87.863159, 13.896744 ], [ -88.066406, 13.966054 ], [ -88.505859, 13.848747 ], [ -88.544312, 13.982046 ], [ -88.846436, 14.141902 ], [ -89.060669, 14.344226 ], [ -89.357300, 14.429360 ], [ -89.148560, 14.679254 ], [ -89.225464, 14.875778 ], [ -89.159546, 15.066819 ], [ -88.681641, 15.347762 ], [ -88.225708, 15.728814 ], [ -88.121338, 15.691798 ], [ -87.907104, 15.866242 ], [ -87.615967, 15.882093 ], [ -87.528076, 15.797539 ], [ -87.368774, 15.850389 ], [ -86.907349, 15.760536 ], [ -86.445923, 15.786968 ], [ -86.121826, 15.897942 ], [ -86.006470, 16.008856 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Nicaragua", "sov_a3": "NIC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nicaragua", "adm0_a3": "NIC", "geou_dif": 0, "geounit": "Nicaragua", "gu_a3": "NIC", "su_dif": 0, "subunit": "Nicaragua", "su_a3": "NIC", "brk_diff": 0, "name": "Nicaragua", "name_long": "Nicaragua", "brk_a3": "NIC", "brk_name": "Nicaragua", "abbrev": "Nic.", "postal": "NI", "formal_en": "Republic of Nicaragua", "name_sort": "Nicaragua", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 5891199, "gdp_md_est": 16790, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NI", "iso_a3": "NIC", "iso_n3": "558", "un_a3": "558", "wb_a2": "NI", "wb_a3": "NIC", "woe_id": -99, "adm0_a3_is": "NIC", "adm0_a3_us": "NIC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.490601, 15.019075 ], [ -83.150024, 14.997852 ], [ -83.237915, 14.902322 ], [ -83.287354, 14.679254 ], [ -83.182983, 14.312292 ], [ -83.413696, 13.971385 ], [ -83.523560, 13.571242 ], [ -83.556519, 13.127629 ], [ -83.501587, 12.870715 ], [ -83.474121, 12.420483 ], [ -83.627930, 12.323903 ], [ -83.721313, 11.894228 ], [ -83.655396, 11.630716 ], [ -83.858643, 11.377724 ], [ -83.809204, 11.108337 ], [ -83.660889, 10.941192 ], [ -83.897095, 10.730778 ], [ -84.193726, 10.795537 ], [ -84.358521, 11.000512 ], [ -84.677124, 11.086775 ], [ -84.907837, 10.957371 ], [ -85.567017, 11.221510 ], [ -85.715332, 11.092166 ], [ -86.061401, 11.404649 ], [ -86.528320, 11.808211 ], [ -86.748047, 12.146746 ], [ -87.171021, 12.463396 ], [ -87.670898, 12.913552 ], [ -87.561035, 13.068777 ], [ -87.396240, 12.918907 ], [ -87.319336, 12.988500 ], [ -87.006226, 13.025966 ], [ -86.885376, 13.255986 ], [ -86.737061, 13.266680 ], [ -86.759033, 13.758060 ], [ -86.522827, 13.779402 ], [ -86.314087, 13.774066 ], [ -86.099854, 14.040673 ], [ -85.803223, 13.838080 ], [ -85.698853, 13.960723 ], [ -85.517578, 14.083301 ], [ -85.166016, 14.354870 ], [ -85.149536, 14.562318 ], [ -85.056152, 14.551684 ], [ -84.929810, 14.790817 ], [ -84.825439, 14.822681 ], [ -84.649658, 14.668626 ], [ -84.451904, 14.626109 ], [ -84.232178, 14.753635 ], [ -83.979492, 14.753635 ], [ -83.633423, 14.881087 ], [ -83.490601, 15.019075 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cuba", "sov_a3": "CUB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cuba", "adm0_a3": "CUB", "geou_dif": 0, "geounit": "Cuba", "gu_a3": "CUB", "su_dif": 0, "subunit": "Cuba", "su_a3": "CUB", "brk_diff": 0, "name": "Cuba", "name_long": "Cuba", "brk_a3": "CUB", "brk_name": "Cuba", "abbrev": "Cuba", "postal": "CU", "formal_en": "Republic of Cuba", "name_sort": "Cuba", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 11451652, "gdp_md_est": 108200, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CU", "iso_a3": "CUB", "iso_n3": "192", "un_a3": "192", "wb_a2": "CU", "wb_a3": "CUB", "woe_id": -99, "adm0_a3_is": "CUB", "adm0_a3_us": "CUB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.107300, 22.350076 ], [ -77.536011, 21.943046 ], [ -76.525269, 21.207459 ], [ -76.195679, 21.222821 ], [ -75.602417, 21.017855 ], [ -75.673828, 20.735566 ], [ -74.937744, 20.694462 ], [ -74.179688, 20.287961 ], [ -74.300537, 20.050771 ], [ -74.965210, 19.926877 ], [ -75.635376, 19.875226 ], [ -76.327515, 19.957860 ], [ -77.755737, 19.859727 ], [ -77.085571, 20.416717 ], [ -77.497559, 20.673905 ], [ -78.140259, 20.740703 ], [ -78.486328, 21.033237 ], [ -78.722534, 21.601258 ], [ -79.288330, 21.560393 ], [ -80.222168, 21.830907 ], [ -80.386963, 21.943046 ], [ -80.518799, 22.039822 ], [ -81.826172, 22.192491 ], [ -82.106323, 22.350076 ], [ -78.107300, 22.350076 ] ] ], [ [ [ -83.248901, 22.350076 ], [ -83.496094, 22.172145 ], [ -83.913574, 22.156883 ], [ -84.034424, 21.943046 ], [ -84.056396, 21.912471 ], [ -84.550781, 21.805408 ], [ -84.979248, 21.897181 ], [ -84.896851, 21.943046 ], [ -84.451904, 22.207749 ], [ -84.364014, 22.350076 ], [ -83.248901, 22.350076 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.757202, 12.441941 ], [ -71.400146, 12.377563 ], [ -71.141968, 12.114523 ], [ -71.334229, 11.781325 ], [ -71.976929, 11.609193 ], [ -72.229614, 11.113727 ], [ -72.619629, 10.822515 ], [ -72.910767, 10.455402 ], [ -73.031616, 9.741542 ], [ -73.306274, 9.156333 ], [ -72.789917, 9.085824 ], [ -72.663574, 8.629903 ], [ -72.443848, 8.407168 ], [ -72.361450, 8.004837 ], [ -72.482300, 7.634776 ], [ -72.449341, 7.427837 ], [ -72.202148, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.675049, 7.089990 ], [ -70.098267, 6.964597 ], [ -69.389648, 6.102322 ], [ -68.988647, 6.211551 ], [ -68.269043, 6.156939 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.500000, 5.621453 ], [ -67.521973, 5.561315 ], [ -67.747192, 5.222247 ], [ -67.824097, 4.505238 ], [ -67.626343, 3.842332 ], [ -67.500000, 3.716264 ], [ -67.340698, 3.546318 ], [ -67.307739, 3.321502 ], [ -67.500000, 3.129546 ], [ -67.813110, 2.822344 ], [ -67.500000, 2.635789 ], [ -67.450562, 2.602864 ], [ -67.181396, 2.251617 ], [ -67.060547, 1.856365 ], [ -67.066040, 1.131518 ], [ -67.263794, 1.724593 ], [ -67.500000, 1.999106 ], [ -67.538452, 2.037534 ], [ -67.873535, 1.697139 ], [ -69.818115, 1.719102 ], [ -69.807129, 1.093073 ], [ -69.219360, 0.988720 ], [ -69.257812, 0.604237 ], [ -69.455566, 0.708600 ], [ -70.015869, 0.543815 ], [ -70.021362, 0.000000 ], [ -70.021362, -0.181274 ], [ -69.713745, -0.439449 ], [ -74.575195, -0.439449 ], [ -75.108032, -0.054932 ], [ -75.377197, -0.148315 ], [ -75.651855, 0.000000 ], [ -75.805664, 0.087891 ], [ -76.294556, 0.417477 ], [ -76.580200, 0.258178 ], [ -77.426147, 0.400998 ], [ -77.673340, 0.829439 ], [ -77.860107, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.768518 ], [ -78.667603, 2.268084 ], [ -78.431396, 2.630301 ], [ -77.937012, 2.701635 ], [ -77.514038, 3.326986 ], [ -77.129517, 3.853293 ], [ -77.497559, 4.088932 ], [ -77.310791, 4.669505 ], [ -77.536011, 5.583184 ], [ -77.321777, 5.845545 ], [ -77.481079, 6.691887 ], [ -77.882080, 7.226249 ], [ -77.755737, 7.710992 ], [ -77.431641, 7.640220 ], [ -77.244873, 7.939556 ], [ -77.475586, 8.526701 ], [ -77.354736, 8.673348 ], [ -76.838379, 8.640765 ], [ -76.091309, 9.340672 ], [ -75.679321, 9.443643 ], [ -75.668335, 9.774025 ], [ -75.481567, 10.622817 ], [ -74.910278, 11.086775 ], [ -74.278564, 11.102947 ], [ -74.201660, 11.313094 ], [ -73.416138, 11.232286 ], [ -72.630615, 11.732924 ], [ -72.240601, 11.958723 ], [ -71.757202, 12.441941 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Venezuela", "sov_a3": "VEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Venezuela", "adm0_a3": "VEN", "geou_dif": 0, "geounit": "Venezuela", "gu_a3": "VEN", "su_dif": 0, "subunit": "Venezuela", "su_a3": "VEN", "brk_diff": 0, "name": "Venezuela", "name_long": "Venezuela", "brk_a3": "VEN", "brk_name": "Venezuela", "abbrev": "Ven.", "postal": "VE", "formal_en": "Bolivarian Republic of Venezuela", "formal_fr": "República Bolivariana de Venezuela", "name_sort": "Venezuela, RB", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 26814843, "gdp_md_est": 357400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "VE", "iso_a3": "VEN", "iso_n3": "862", "un_a3": "862", "wb_a2": "VE", "wb_a3": "VEN", "woe_id": -99, "adm0_a3_is": "VEN", "adm0_a3_us": "VEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.944458, 12.162856 ], [ -69.587402, 11.463874 ], [ -68.884277, 11.447723 ], [ -68.236084, 10.887254 ], [ -68.197632, 10.558022 ], [ -67.500000, 10.552622 ], [ -67.296753, 10.547221 ], [ -67.060547, 10.568822 ], [ -67.060547, 1.856365 ], [ -67.181396, 2.251617 ], [ -67.450562, 2.602864 ], [ -67.500000, 2.635789 ], [ -67.813110, 2.822344 ], [ -67.500000, 3.129546 ], [ -67.307739, 3.321502 ], [ -67.340698, 3.546318 ], [ -67.500000, 3.716264 ], [ -67.626343, 3.842332 ], [ -67.824097, 4.505238 ], [ -67.747192, 5.222247 ], [ -67.521973, 5.561315 ], [ -67.500000, 5.621453 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -68.269043, 6.156939 ], [ -68.988647, 6.211551 ], [ -69.389648, 6.102322 ], [ -70.098267, 6.964597 ], [ -70.675049, 7.089990 ], [ -71.960449, 6.991859 ], [ -72.202148, 7.340675 ], [ -72.449341, 7.427837 ], [ -72.482300, 7.634776 ], [ -72.361450, 8.004837 ], [ -72.443848, 8.407168 ], [ -72.663574, 8.629903 ], [ -72.789917, 9.085824 ], [ -73.306274, 9.156333 ], [ -73.031616, 9.741542 ], [ -72.910767, 10.455402 ], [ -72.619629, 10.822515 ], [ -72.229614, 11.113727 ], [ -71.976929, 11.609193 ], [ -71.334229, 11.781325 ], [ -71.361694, 11.544616 ], [ -71.949463, 11.426187 ], [ -71.625366, 10.973550 ], [ -71.636353, 10.450000 ], [ -72.075806, 9.866040 ], [ -71.696777, 9.074976 ], [ -71.268311, 9.140063 ], [ -71.043091, 9.860628 ], [ -71.350708, 10.212219 ], [ -71.405640, 10.973550 ], [ -70.158691, 11.377724 ], [ -70.296021, 11.851223 ], [ -69.944458, 12.162856 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.859863, 1.384143 ], [ -77.860107, 0.812961 ], [ -77.673340, 0.829439 ], [ -77.426147, 0.400998 ], [ -76.580200, 0.258178 ], [ -76.294556, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.651855, 0.000000 ], [ -75.377197, -0.148315 ], [ -75.322266, -0.439449 ], [ -80.447388, -0.439449 ], [ -80.403442, -0.280150 ], [ -80.233154, 0.000000 ], [ -80.024414, 0.362546 ], [ -80.095825, 0.769020 ], [ -79.546509, 0.983228 ], [ -78.859863, 1.384143 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Peru", "sov_a3": "PER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Peru", "adm0_a3": "PER", "geou_dif": 0, "geounit": "Peru", "gu_a3": "PER", "su_dif": 0, "subunit": "Peru", "su_a3": "PER", "brk_diff": 0, "name": "Peru", "name_long": "Peru", "brk_a3": "PER", "brk_name": "Peru", "abbrev": "Peru", "postal": "PE", "formal_en": "Republic of Peru", "name_sort": "Peru", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 11, "pop_est": 29546963, "gdp_md_est": 247300, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PE", "iso_a3": "PER", "iso_n3": "604", "un_a3": "604", "wb_a2": "PE", "wb_a3": "PER", "woe_id": -99, "adm0_a3_is": "PER", "adm0_a3_us": "PER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.108032, -0.054932 ], [ -74.575195, -0.439449 ], [ -75.322266, -0.439449 ], [ -75.377197, -0.148315 ], [ -75.108032, -0.054932 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ -67.538452, 2.037534 ], [ -67.500000, 1.999106 ], [ -67.263794, 1.724593 ], [ -67.060547, 1.137010 ], [ -67.060547, -0.439449 ], [ -69.713745, -0.439449 ], [ -70.021362, -0.181274 ], [ -70.021362, 0.000000 ], [ -70.015869, 0.543815 ], [ -69.455566, 0.708600 ], [ -69.257812, 0.604237 ], [ -69.219360, 0.988720 ], [ -69.807129, 1.093073 ], [ -69.818115, 1.719102 ], [ -67.873535, 1.697139 ], [ -67.538452, 2.037534 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.943970, 41.310824 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.569946, 40.979898 ], [ -73.712769, 40.934265 ], [ -73.333740, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.026367, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.350220, 40.630630 ], [ -73.987427, 40.630630 ], [ -73.954468, 40.751418 ], [ -74.262085, 40.476203 ], [ -73.965454, 40.430224 ], [ -74.179688, 39.711413 ], [ -74.910278, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.499802 ], [ -75.322266, 38.963680 ], [ -75.075073, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.382690, 38.017804 ], [ -75.942993, 37.217206 ], [ -76.036377, 37.260938 ], [ -75.723267, 37.939865 ], [ -76.234131, 38.320111 ], [ -76.354980, 39.151363 ], [ -76.547241, 38.719805 ], [ -76.333008, 38.087013 ], [ -76.992188, 38.242495 ], [ -76.305542, 37.918201 ], [ -76.261597, 36.967449 ], [ -75.975952, 36.901587 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.554574 ], [ -76.365967, 34.809293 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.929688 ], [ -78.557739, 33.865854 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.304565, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.732393 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.473520 ], [ -80.535278, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.209663 ], [ -80.134277, 25.819672 ], [ -80.381470, 25.209911 ], [ -80.683594, 25.080624 ], [ -81.172485, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.874052 ], [ -82.710571, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.104177 ], [ -83.710327, 29.940655 ], [ -84.100342, 30.092861 ], [ -85.111084, 29.640320 ], [ -85.292358, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.533569, 30.278044 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.598999, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.434204, 29.492206 ], [ -89.219971, 29.291190 ], [ -89.412231, 29.161756 ], [ -89.780273, 29.310351 ], [ -90.000000, 29.200123 ], [ -90.159302, 29.118574 ], [ -90.439453, 29.132970 ], [ -90.439453, 41.310824 ], [ -71.943970, 41.310824 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.055664, 21.545066 ], [ -87.044678, 21.534847 ], [ -87.116089, 21.534847 ], [ -87.055664, 21.545066 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cuba", "sov_a3": "CUB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cuba", "adm0_a3": "CUB", "geou_dif": 0, "geounit": "Cuba", "gu_a3": "CUB", "su_dif": 0, "subunit": "Cuba", "su_a3": "CUB", "brk_diff": 0, "name": "Cuba", "name_long": "Cuba", "brk_a3": "CUB", "brk_name": "Cuba", "abbrev": "Cuba", "postal": "CU", "formal_en": "Republic of Cuba", "name_sort": "Cuba", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 11451652, "gdp_md_est": 108200, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CU", "iso_a3": "CUB", "iso_n3": "192", "un_a3": "192", "wb_a2": "CU", "wb_a3": "CUB", "woe_id": -99, "adm0_a3_is": "CUB", "adm0_a3_us": "CUB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.271118, 23.190863 ], [ -81.408691, 23.120154 ], [ -80.623169, 23.110049 ], [ -79.683838, 22.766051 ], [ -79.282837, 22.400872 ], [ -78.348999, 22.512557 ], [ -77.997437, 22.278931 ], [ -77.536011, 21.943046 ], [ -76.981201, 21.534847 ], [ -78.695068, 21.534847 ], [ -78.722534, 21.601258 ], [ -79.288330, 21.560393 ], [ -80.222168, 21.830907 ], [ -80.386963, 21.943046 ], [ -80.518799, 22.039822 ], [ -81.826172, 22.192491 ], [ -82.172241, 22.390714 ], [ -81.798706, 22.639363 ], [ -82.776489, 22.690052 ], [ -83.496094, 22.172145 ], [ -83.913574, 22.156883 ], [ -84.034424, 21.943046 ], [ -84.056396, 21.912471 ], [ -84.550781, 21.805408 ], [ -84.979248, 21.897181 ], [ -84.896851, 21.943046 ], [ -84.451904, 22.207749 ], [ -84.232178, 22.568366 ], [ -83.781738, 22.791375 ], [ -83.270874, 22.983681 ], [ -82.512817, 23.079732 ], [ -82.271118, 23.190863 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -67.060547, 56.022948 ], [ -67.060547, 49.664072 ], [ -67.236328, 49.514510 ], [ -67.500000, 49.421694 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -67.060547, 48.933326 ], [ -67.060547, 45.147179 ], [ -67.137451, 45.139430 ], [ -67.500000, 45.452424 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.000000, 48.096426 ], [ -90.439453, 48.188063 ], [ -90.439453, 56.022948 ], [ -87.363281, 56.022948 ], [ -87.324829, 56.001453 ], [ -86.314087, 55.776573 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.195435, 55.776573 ], [ -77.096558, 55.838314 ], [ -76.953735, 56.022948 ], [ -67.060547, 56.022948 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.379517, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.441642 ], [ -84.342041, 46.411352 ], [ -84.144287, 46.513516 ], [ -84.094849, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.282349, 42.212245 ], [ -80.249634, 42.366662 ], [ -78.942261, 42.863886 ], [ -78.920288, 42.968482 ], [ -79.013672, 43.273206 ], [ -79.172974, 43.468868 ], [ -78.722534, 43.628123 ], [ -76.821899, 43.632099 ], [ -76.503296, 44.020472 ], [ -76.376953, 44.099421 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.004883, 46.694667 ], [ -69.241333, 47.450380 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.357432 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.500000, 45.452424 ], [ -67.137451, 45.139430 ], [ -67.060547, 44.991998 ], [ -67.060547, 44.770137 ], [ -67.500000, 44.570904 ], [ -68.032837, 44.327778 ], [ -69.060059, 43.980958 ], [ -70.120239, 43.687736 ], [ -70.647583, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.338245 ], [ -70.499268, 41.808173 ], [ -70.081787, 41.783601 ], [ -70.186157, 42.147114 ], [ -69.889526, 41.926803 ], [ -69.966431, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.496235 ], [ -71.861572, 41.323201 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.569946, 40.979898 ], [ -73.712769, 40.934265 ], [ -73.333740, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.026367, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.267822, 40.647304 ], [ -73.981934, 40.647304 ], [ -73.954468, 40.751418 ], [ -74.069824, 40.647304 ], [ -90.439453, 40.647304 ], [ -90.439453, 48.188063 ], [ -90.000000, 48.096426 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.022998 ], [ -88.379517, 48.305121 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -90.439453, 63.753350 ], [ -90.439453, 66.687784 ], [ -82.578735, 66.687784 ], [ -83.067627, 66.513260 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.559192 ], [ -85.797729, 66.513260 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.000000, 63.988009 ], [ -90.439453, 63.753350 ] ] ], [ [ [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -67.500000, 58.271954 ], [ -67.060547, 58.439108 ], [ -67.060547, 55.528631 ], [ -77.601929, 55.528631 ], [ -77.195435, 55.776573 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ] ] ], [ [ [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ] ] ], [ [ [ -67.060547, 66.687784 ], [ -67.060547, 66.357339 ], [ -67.500000, 66.313242 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.500000, 65.337055 ], [ -67.093506, 65.109148 ], [ -67.060547, 65.099899 ], [ -67.060547, 63.198973 ], [ -67.500000, 63.339808 ], [ -68.785400, 63.746061 ], [ -67.500000, 62.965212 ], [ -67.373657, 62.885205 ], [ -67.060547, 62.706907 ], [ -67.060547, 62.065307 ], [ -67.500000, 62.129572 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -73.685303, 66.513260 ], [ -73.454590, 66.687784 ], [ -67.060547, 66.687784 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ] ] ], [ [ [ -90.439453, 57.180925 ], [ -90.000000, 57.076575 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.314087, 55.776573 ], [ -86.072388, 55.724017 ], [ -85.583496, 55.528631 ], [ -90.439453, 55.528631 ], [ -90.439453, 57.180925 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "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": [ [ [ [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.067627, 66.513260 ], [ -83.347778, 66.412352 ], [ -84.017944, 66.337505 ], [ -85.012207, 66.337505 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.559192 ], [ -85.797729, 66.513260 ], [ -85.902100, 66.337505 ], [ -90.439453, 66.337505 ], [ -90.439453, 68.542306 ], [ -90.000000, 68.802028 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ] ] ], [ [ [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -67.500000, 69.718107 ], [ -67.060547, 69.279484 ], [ -67.060547, 69.164512 ], [ -67.500000, 69.052858 ], [ -68.807373, 68.720441 ], [ -67.500000, 68.360725 ], [ -67.060547, 68.238859 ], [ -67.060547, 66.357339 ], [ -67.247314, 66.337505 ], [ -73.910522, 66.337505 ], [ -73.685303, 66.513260 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.587473 ], [ -90.208740, 72.235514 ], [ -90.000000, 72.478584 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ] ] ], [ [ [ -75.899048, 68.287684 ], [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -75.899048, 68.287684 ] ] ], [ [ [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -90.439453, 75.970890 ], [ -90.000000, 75.884072 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -90.000000, 74.544794 ], [ -90.439453, 74.598864 ], [ -90.439453, 75.970890 ] ] ], [ [ [ -76.146240, 79.253586 ], [ -75.531006, 79.198134 ], [ -75.635376, 79.171335 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.242920, 79.171335 ], [ -85.171509, 79.253586 ], [ -76.146240, 79.253586 ] ] ], [ [ [ -86.204224, 79.253586 ], [ -86.583252, 79.171335 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.439453, 78.231237 ], [ -90.439453, 79.253586 ], [ -86.204224, 79.253586 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, 77.394300 ], [ -67.500000, 77.421844 ], [ -71.043091, 77.636542 ], [ -73.300781, 78.044933 ], [ -73.163452, 78.433418 ], [ -69.378662, 78.914496 ], [ -67.500000, 79.163075 ], [ -67.060547, 79.219732 ], [ -67.060547, 77.394300 ] ] ], [ [ [ -67.060547, 77.369100 ], [ -67.060547, 76.106073 ], [ -67.500000, 76.092877 ], [ -68.505249, 76.062478 ], [ -69.669800, 76.380383 ], [ -71.405640, 77.008582 ], [ -68.779907, 77.323374 ], [ -67.500000, 77.357083 ], [ -67.060547, 77.369100 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -90.439453, 80.636316 ], [ -90.000000, 80.579842 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -86.583252, 79.171335 ], [ -86.967773, 79.088462 ], [ -90.439453, 79.088462 ], [ -90.439453, 80.636316 ] ] ], [ [ [ -67.060547, 82.732092 ], [ -67.060547, 81.650118 ], [ -67.500000, 81.540928 ], [ -67.659302, 81.502052 ], [ -67.500000, 81.502052 ], [ -67.060547, 81.502864 ], [ -67.060547, 81.105113 ], [ -67.500000, 80.990573 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -75.635376, 79.171335 ], [ -75.953979, 79.088462 ], [ -85.308838, 79.088462 ], [ -85.242920, 79.171335 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.000000, 81.165215 ], [ -90.203247, 81.260042 ], [ -90.439453, 81.321593 ], [ -90.439453, 82.041938 ], [ -90.104370, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.688599, 82.676285 ], [ -82.606201, 82.732092 ], [ -67.060547, 82.732092 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, 79.991442 ], [ -67.500000, 80.049510 ], [ -68.027344, 80.117621 ], [ -67.500000, 80.358836 ], [ -67.153931, 80.516698 ], [ -67.060547, 80.535685 ], [ -67.060547, 79.991442 ] ] ], [ [ [ -67.060547, 79.219732 ], [ -67.060547, 79.088462 ], [ -68.065796, 79.088462 ], [ -67.060547, 79.219732 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -85.501099, 82.652438 ], [ -84.737549, 82.620052 ], [ -85.632935, 82.620052 ], [ -85.501099, 82.652438 ] ] ], [ [ [ -68.505249, 83.106457 ], [ -67.500000, 83.077387 ], [ -67.060547, 83.064796 ], [ -67.060547, 82.620052 ], [ -82.765503, 82.620052 ], [ -82.688599, 82.676285 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.922974, -55.528631 ], [ -67.939453, -55.534848 ], [ -67.939453, -55.528631 ], [ -67.922974, -55.528631 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.939453, -54.867124 ], [ -67.500000, -54.870285 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.301011 ], [ -67.500000, -55.375989 ], [ -67.939453, -55.534848 ], [ -67.939453, -54.867124 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.939453, -53.566414 ], [ -67.752686, -53.849286 ], [ -67.500000, -53.965781 ], [ -66.450806, -54.447686 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.197683 ], [ -66.450806, -55.247815 ], [ -66.961670, -54.895565 ], [ -67.500000, -54.870285 ], [ -67.939453, -54.867124 ], [ -67.939453, -53.566414 ] ] ], [ [ [ -62.160645, -40.647304 ], [ -62.149658, -40.676472 ], [ -62.666016, -40.979898 ], [ -62.748413, -41.025499 ], [ -63.775635, -41.166249 ], [ -64.270020, -40.979898 ], [ -64.736938, -40.801336 ], [ -64.995117, -40.979898 ], [ -65.121460, -41.062786 ], [ -64.978638, -42.057450 ], [ -64.308472, -42.358544 ], [ -63.759155, -42.041134 ], [ -63.462524, -42.561173 ], [ -64.379883, -42.871938 ], [ -65.181885, -43.492783 ], [ -65.330200, -44.500423 ], [ -65.566406, -45.034715 ], [ -66.511230, -45.038597 ], [ -67.296753, -45.548679 ], [ -67.500000, -46.088472 ], [ -67.582397, -46.301406 ], [ -67.500000, -46.362093 ], [ -66.599121, -47.032695 ], [ -65.643311, -47.234490 ], [ -65.989380, -48.133101 ], [ -67.170410, -48.694586 ], [ -67.500000, -49.300054 ], [ -67.818604, -49.866317 ], [ -67.939453, -49.922935 ], [ -67.939453, -40.647304 ], [ -62.160645, -40.647304 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.939453, -22.482106 ], [ -67.829590, -22.872379 ], [ -67.500000, -22.806567 ], [ -67.109985, -22.735657 ], [ -66.989136, -22.983681 ], [ -67.329712, -24.021379 ], [ -67.500000, -24.101633 ], [ -67.939453, -24.302047 ], [ -67.939453, -22.482106 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.451782, -21.534847 ], [ -62.589111, -21.943046 ], [ -62.687988, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.989868, -21.988895 ], [ -64.379883, -22.796439 ], [ -64.967651, -22.075459 ], [ -65.681763, -21.943046 ], [ -66.275024, -21.830907 ], [ -66.379395, -21.943046 ], [ -67.109985, -22.735657 ], [ -67.500000, -22.806567 ], [ -67.829590, -22.872379 ], [ -67.939453, -22.482106 ], [ -67.939453, -21.534847 ], [ -62.451782, -21.534847 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ -44.560547, -21.534847 ], [ -44.560547, -23.327124 ], [ -44.648438, -23.347299 ], [ -45.000000, -23.574057 ], [ -45.357056, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.653198, -24.881453 ], [ -48.499146, -25.874052 ], [ -48.641968, -26.622908 ], [ -48.477173, -27.171582 ], [ -48.663940, -28.183402 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.224096 ], [ -50.701904, -30.982319 ], [ -51.580811, -31.774878 ], [ -52.256470, -32.245329 ], [ -52.712402, -33.192731 ], [ -53.377075, -33.765449 ], [ -53.651733, -33.201924 ], [ -53.212280, -32.727220 ], [ -53.789062, -32.045333 ], [ -54.574585, -31.494262 ], [ -55.601807, -30.850363 ], [ -55.975342, -30.878655 ], [ -56.980591, -30.107118 ], [ -57.628784, -30.211608 ], [ -56.293945, -28.849485 ], [ -55.162354, -27.877928 ], [ -54.492188, -27.474161 ], [ -53.651733, -26.922070 ], [ -53.629761, -26.120918 ], [ -54.135132, -25.547398 ], [ -54.629517, -25.735581 ], [ -54.431763, -25.160201 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.016362 ], [ -54.656982, -23.835601 ], [ -55.030518, -23.996290 ], [ -55.404053, -23.956136 ], [ -55.519409, -23.569022 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.355156 ], [ -56.475220, -22.085640 ], [ -56.881714, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.930908, -21.943046 ], [ -57.914429, -21.534847 ], [ -44.560547, -21.534847 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Paraguay", "sov_a3": "PRY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Paraguay", "adm0_a3": "PRY", "geou_dif": 0, "geounit": "Paraguay", "gu_a3": "PRY", "su_dif": 0, "subunit": "Paraguay", "su_a3": "PRY", "brk_diff": 0, "name": "Paraguay", "name_long": "Paraguay", "brk_a3": "PRY", "brk_name": "Paraguay", "abbrev": "Para.", "postal": "PY", "formal_en": "Republic of Paraguay", "name_sort": "Paraguay", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 2, "pop_est": 6995655, "gdp_md_est": 28890, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PY", "iso_a3": "PRY", "iso_n3": "600", "un_a3": "600", "wb_a2": "PY", "wb_a3": "PRY", "woe_id": -99, "adm0_a3_is": "PRY", "adm0_a3_us": "PRY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.914429, -21.534847 ], [ -57.930908, -21.943046 ], [ -57.941895, -22.085640 ], [ -56.881714, -22.278931 ], [ -56.475220, -22.085640 ], [ -55.799561, -22.355156 ], [ -55.612793, -22.654572 ], [ -55.519409, -23.569022 ], [ -55.404053, -23.956136 ], [ -55.030518, -23.996290 ], [ -54.656982, -23.835601 ], [ -54.294434, -24.016362 ], [ -54.294434, -24.567108 ], [ -54.431763, -25.160201 ], [ -54.629517, -25.735581 ], [ -54.788818, -26.617997 ], [ -55.700684, -27.386401 ], [ -56.491699, -27.547242 ], [ -57.612305, -27.391278 ], [ -58.623047, -27.122702 ], [ -57.634277, -25.601902 ], [ -57.782593, -25.160201 ], [ -58.809814, -24.766785 ], [ -60.029297, -24.031414 ], [ -60.847778, -23.875792 ], [ -62.687988, -22.248429 ], [ -62.589111, -21.943046 ], [ -62.451782, -21.534847 ], [ -57.914429, -21.534847 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.275024, -21.830907 ], [ -65.681763, -21.943046 ], [ -64.967651, -22.075459 ], [ -64.379883, -22.796439 ], [ -63.989868, -21.988895 ], [ -62.847290, -22.034730 ], [ -62.687988, -22.248429 ], [ -60.847778, -23.875792 ], [ -60.029297, -24.031414 ], [ -58.809814, -24.766785 ], [ -57.782593, -25.160201 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.122702 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.386401 ], [ -54.788818, -26.617997 ], [ -54.629517, -25.735581 ], [ -54.135132, -25.547398 ], [ -53.629761, -26.120918 ], [ -53.651733, -26.922070 ], [ -54.492188, -27.474161 ], [ -55.162354, -27.877928 ], [ -56.293945, -28.849485 ], [ -57.628784, -30.211608 ], [ -57.875977, -31.015279 ], [ -58.145142, -32.040677 ], [ -58.134155, -33.036298 ], [ -58.353882, -33.261657 ], [ -58.496704, -34.429567 ], [ -57.227783, -35.285985 ], [ -57.365112, -35.973561 ], [ -56.738892, -36.412442 ], [ -56.788330, -36.897194 ], [ -57.749634, -38.182069 ], [ -59.232788, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.826871 ], [ -62.127686, -39.423464 ], [ -62.330933, -40.170479 ], [ -62.149658, -40.676472 ], [ -62.666016, -40.979898 ], [ -62.748413, -41.025499 ], [ -63.775635, -41.166249 ], [ -64.270020, -40.979898 ], [ -64.736938, -40.801336 ], [ -64.995117, -40.979898 ], [ -65.121460, -41.062786 ], [ -65.088501, -41.310824 ], [ -67.939453, -41.310824 ], [ -67.939453, -24.302047 ], [ -67.500000, -24.101633 ], [ -67.329712, -24.021379 ], [ -66.989136, -22.983681 ], [ -67.109985, -22.735657 ], [ -66.379395, -21.943046 ], [ -66.275024, -21.830907 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Uruguay", "sov_a3": "URY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uruguay", "adm0_a3": "URY", "geou_dif": 0, "geounit": "Uruguay", "gu_a3": "URY", "su_dif": 0, "subunit": "Uruguay", "su_a3": "URY", "brk_diff": 0, "name": "Uruguay", "name_long": "Uruguay", "brk_a3": "URY", "brk_name": "Uruguay", "abbrev": "Ury.", "postal": "UY", "formal_en": "Oriental Republic of Uruguay", "name_sort": "Uruguay", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 3494382, "gdp_md_est": 43160, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "UY", "iso_a3": "URY", "iso_n3": "858", "un_a3": "858", "wb_a2": "UY", "wb_a3": "URY", "woe_id": -99, "adm0_a3_is": "URY", "adm0_a3_us": "URY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.980591, -30.107118 ], [ -55.975342, -30.878655 ], [ -55.601807, -30.850363 ], [ -54.574585, -31.494262 ], [ -53.789062, -32.045333 ], [ -53.212280, -32.727220 ], [ -53.651733, -33.201924 ], [ -53.377075, -33.765449 ], [ -53.811035, -34.393312 ], [ -54.937134, -34.948991 ], [ -55.678711, -34.750640 ], [ -56.217041, -34.858890 ], [ -57.139893, -34.429567 ], [ -57.821045, -34.461277 ], [ -58.430786, -33.906896 ], [ -58.353882, -33.261657 ], [ -58.134155, -33.036298 ], [ -58.145142, -32.040677 ], [ -57.875977, -31.015279 ], [ -57.628784, -30.211608 ], [ -56.980591, -30.107118 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.341187, -9.757784 ], [ -65.445557, -10.509417 ], [ -65.324707, -10.892648 ], [ -65.407104, -11.566144 ], [ -64.319458, -12.458033 ], [ -63.198853, -12.624258 ], [ -62.803345, -12.999205 ], [ -62.127686, -13.197165 ], [ -61.715698, -13.485790 ], [ -61.089478, -13.475106 ], [ -60.507202, -13.774066 ], [ -60.463257, -14.349548 ], [ -60.265503, -14.642054 ], [ -60.254517, -15.072124 ], [ -60.545654, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.244019, -16.299051 ], [ -58.392334, -16.872890 ], [ -58.282471, -17.266728 ], [ -57.738647, -17.549772 ], [ -57.502441, -18.171950 ], [ -57.678223, -18.958246 ], [ -57.952881, -19.399249 ], [ -57.854004, -19.968186 ], [ -58.167114, -20.174567 ], [ -58.183594, -19.864894 ], [ -59.117432, -19.352611 ], [ -60.045776, -19.342245 ], [ -61.787109, -19.632240 ], [ -62.270508, -20.509355 ], [ -62.292480, -21.048618 ], [ -62.589111, -21.943046 ], [ -62.687988, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.989868, -21.988895 ], [ -64.160156, -22.350076 ], [ -64.742432, -22.350076 ], [ -64.967651, -22.075459 ], [ -65.681763, -21.943046 ], [ -66.275024, -21.830907 ], [ -66.379395, -21.943046 ], [ -66.752930, -22.350076 ], [ -67.939453, -22.350076 ], [ -67.939453, -10.660608 ], [ -67.500000, -10.455402 ], [ -67.175903, -10.304110 ], [ -66.648560, -9.930977 ], [ -65.341187, -9.757784 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ -50.504150, 0.439449 ], [ -50.701904, 0.225219 ], [ -50.471191, 0.000000 ], [ -50.388794, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.587036, -1.235866 ], [ -47.828979, -0.576772 ], [ -46.571045, -0.939289 ], [ -45.000000, -1.515936 ], [ -44.906616, -1.548884 ], [ -44.560547, -1.966167 ], [ -44.560547, -2.619326 ], [ -44.582520, -2.690661 ], [ -44.560547, -2.685174 ], [ -44.560547, -22.350076 ], [ -55.816040, -22.350076 ], [ -56.475220, -22.085640 ], [ -56.881714, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.930908, -21.943046 ], [ -57.875977, -20.730428 ], [ -58.167114, -20.174567 ], [ -57.854004, -19.968186 ], [ -57.952881, -19.399249 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.171950 ], [ -57.738647, -17.549772 ], [ -58.282471, -17.266728 ], [ -58.392334, -16.872890 ], [ -58.244019, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.254517, -15.072124 ], [ -60.265503, -14.642054 ], [ -60.463257, -14.349548 ], [ -60.507202, -13.774066 ], [ -61.089478, -13.475106 ], [ -61.715698, -13.485790 ], [ -62.127686, -13.197165 ], [ -62.803345, -12.999205 ], [ -63.198853, -12.624258 ], [ -64.319458, -12.458033 ], [ -65.407104, -11.566144 ], [ -65.324707, -10.892648 ], [ -65.445557, -10.509417 ], [ -65.341187, -9.757784 ], [ -66.648560, -9.930977 ], [ -67.175903, -10.304110 ], [ -67.500000, -10.455402 ], [ -67.939453, -10.660608 ], [ -67.939453, 0.439449 ], [ -50.504150, 0.439449 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Paraguay", "sov_a3": "PRY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Paraguay", "adm0_a3": "PRY", "geou_dif": 0, "geounit": "Paraguay", "gu_a3": "PRY", "su_dif": 0, "subunit": "Paraguay", "su_a3": "PRY", "brk_diff": 0, "name": "Paraguay", "name_long": "Paraguay", "brk_a3": "PRY", "brk_name": "Paraguay", "abbrev": "Para.", "postal": "PY", "formal_en": "Republic of Paraguay", "name_sort": "Paraguay", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 2, "pop_est": 6995655, "gdp_md_est": 28890, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PY", "iso_a3": "PRY", "iso_n3": "600", "un_a3": "600", "wb_a2": "PY", "wb_a3": "PRY", "woe_id": -99, "adm0_a3_is": "PRY", "adm0_a3_us": "PRY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.045776, -19.342245 ], [ -59.117432, -19.352611 ], [ -58.183594, -19.864894 ], [ -58.167114, -20.174567 ], [ -57.875977, -20.730428 ], [ -57.930908, -21.943046 ], [ -57.941895, -22.085640 ], [ -56.881714, -22.278931 ], [ -56.475220, -22.085640 ], [ -55.816040, -22.350076 ], [ -62.572632, -22.350076 ], [ -62.687988, -22.248429 ], [ -62.589111, -21.943046 ], [ -62.292480, -21.048618 ], [ -62.270508, -20.509355 ], [ -61.787109, -19.632240 ], [ -60.045776, -19.342245 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -66.275024, -21.830907 ], [ -65.681763, -21.943046 ], [ -64.967651, -22.075459 ], [ -64.742432, -22.350076 ], [ -66.752930, -22.350076 ], [ -66.379395, -21.943046 ], [ -66.275024, -21.830907 ] ] ], [ [ [ -62.847290, -22.034730 ], [ -62.687988, -22.248429 ], [ -62.572632, -22.350076 ], [ -64.160156, -22.350076 ], [ -63.989868, -21.988895 ], [ -62.847290, -22.034730 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.500000, 5.621453 ], [ -67.521973, 5.561315 ], [ -67.747192, 5.222247 ], [ -67.824097, 4.505238 ], [ -67.626343, 3.842332 ], [ -67.500000, 3.716264 ], [ -67.340698, 3.546318 ], [ -67.307739, 3.321502 ], [ -67.500000, 3.129546 ], [ -67.813110, 2.822344 ], [ -67.500000, 2.635789 ], [ -67.450562, 2.602864 ], [ -67.181396, 2.251617 ], [ -66.879272, 1.257834 ], [ -67.066040, 1.131518 ], [ -67.263794, 1.724593 ], [ -67.500000, 1.999106 ], [ -67.538452, 2.037534 ], [ -67.873535, 1.697139 ], [ -67.939453, 1.697139 ], [ -67.939453, 6.222473 ], [ -67.697754, 6.271618 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Venezuela", "sov_a3": "VEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Venezuela", "adm0_a3": "VEN", "geou_dif": 0, "geounit": "Venezuela", "gu_a3": "VEN", "su_dif": 0, "subunit": "Venezuela", "su_a3": "VEN", "brk_diff": 0, "name": "Venezuela", "name_long": "Venezuela", "brk_a3": "VEN", "brk_name": "Venezuela", "abbrev": "Ven.", "postal": "VE", "formal_en": "Bolivarian Republic of Venezuela", "formal_fr": "República Bolivariana de Venezuela", "name_sort": "Venezuela, RB", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 26814843, "gdp_md_est": 357400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "VE", "iso_a3": "VEN", "iso_n3": "862", "un_a3": "862", "wb_a2": "VE", "wb_a3": "VEN", "woe_id": -99, "adm0_a3_is": "VEN", "adm0_a3_us": "VEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.885986, 10.719984 ], [ -62.731934, 10.422988 ], [ -62.391357, 9.952620 ], [ -61.589355, 9.876864 ], [ -60.831299, 9.384032 ], [ -60.671997, 8.581021 ], [ -60.150146, 8.608179 ], [ -59.760132, 8.369127 ], [ -60.551147, 7.781751 ], [ -60.639038, 7.416942 ], [ -60.298462, 7.046379 ], [ -60.545654, 6.860985 ], [ -61.160889, 6.697343 ], [ -61.144409, 6.238855 ], [ -61.413574, 5.960290 ], [ -60.737915, 5.200365 ], [ -60.606079, 4.921306 ], [ -60.968628, 4.538094 ], [ -62.089233, 4.165637 ], [ -62.808838, 4.012220 ], [ -63.094482, 3.771078 ], [ -63.890991, 4.023179 ], [ -64.632568, 4.149201 ], [ -64.819336, 4.061536 ], [ -64.368896, 3.798484 ], [ -64.412842, 3.129546 ], [ -64.270020, 2.498597 ], [ -63.424072, 2.416276 ], [ -63.369141, 2.202216 ], [ -64.083252, 1.916757 ], [ -64.204102, 1.493971 ], [ -64.616089, 1.329226 ], [ -65.357666, 1.098565 ], [ -65.549927, 0.790990 ], [ -66.329956, 0.725078 ], [ -66.879272, 1.257834 ], [ -67.181396, 2.251617 ], [ -67.450562, 2.602864 ], [ -67.500000, 2.635789 ], [ -67.813110, 2.822344 ], [ -67.500000, 3.129546 ], [ -67.307739, 3.321502 ], [ -67.340698, 3.546318 ], [ -67.500000, 3.716264 ], [ -67.626343, 3.842332 ], [ -67.824097, 4.505238 ], [ -67.747192, 5.222247 ], [ -67.521973, 5.561315 ], [ -67.500000, 5.621453 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -67.939453, 6.222473 ], [ -67.939453, 10.552622 ], [ -67.500000, 10.552622 ], [ -67.296753, 10.547221 ], [ -66.231079, 10.649811 ], [ -65.659790, 10.201407 ], [ -64.890747, 10.082446 ], [ -64.330444, 10.390572 ], [ -64.319458, 10.644412 ], [ -63.083496, 10.703792 ], [ -61.885986, 10.719984 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Guyana", "sov_a3": "GUY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guyana", "adm0_a3": "GUY", "geou_dif": 0, "geounit": "Guyana", "gu_a3": "GUY", "su_dif": 0, "subunit": "Guyana", "su_a3": "GUY", "brk_diff": 0, "name": "Guyana", "name_long": "Guyana", "brk_a3": "GUY", "brk_name": "Guyana", "abbrev": "Guy.", "postal": "GY", "formal_en": "Co-operative Republic of Guyana", "name_sort": "Guyana", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 772298, "gdp_md_est": 2966, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GY", "iso_a3": "GUY", "iso_n3": "328", "un_a3": "328", "wb_a2": "GY", "wb_a3": "GUY", "woe_id": -99, "adm0_a3_is": "GUY", "adm0_a3_us": "GUY", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.760132, 8.369127 ], [ -59.106445, 7.999397 ], [ -58.485718, 7.351571 ], [ -58.458252, 6.833716 ], [ -58.079224, 6.811898 ], [ -57.150879, 5.976680 ], [ -57.310181, 5.074529 ], [ -57.914429, 4.817312 ], [ -57.864990, 4.581901 ], [ -58.046265, 4.061536 ], [ -57.606812, 3.337954 ], [ -57.282715, 3.337954 ], [ -57.150879, 2.772965 ], [ -56.541138, 1.900286 ], [ -56.782837, 1.867345 ], [ -57.337646, 1.949697 ], [ -57.661743, 1.686158 ], [ -58.117676, 1.510445 ], [ -58.430786, 1.466515 ], [ -58.540649, 1.268817 ], [ -59.035034, 1.318243 ], [ -59.650269, 1.790480 ], [ -59.721680, 2.251617 ], [ -59.979858, 2.756504 ], [ -59.820557, 3.606625 ], [ -59.540405, 3.962901 ], [ -59.771118, 4.428567 ], [ -60.111694, 4.576425 ], [ -59.985352, 5.014339 ], [ -60.216064, 5.249598 ], [ -60.737915, 5.200365 ], [ -61.413574, 5.960290 ], [ -61.144409, 6.238855 ], [ -61.160889, 6.697343 ], [ -60.545654, 6.860985 ], [ -60.298462, 7.046379 ], [ -60.639038, 7.416942 ], [ -60.551147, 7.781751 ], [ -59.760132, 8.369127 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Suriname", "sov_a3": "SUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Suriname", "adm0_a3": "SUR", "geou_dif": 0, "geounit": "Suriname", "gu_a3": "SUR", "su_dif": 0, "subunit": "Suriname", "su_a3": "SUR", "brk_diff": 0, "name": "Suriname", "name_long": "Suriname", "brk_a3": "SUR", "brk_name": "Suriname", "abbrev": "Sur.", "postal": "SR", "formal_en": "Republic of Suriname", "name_sort": "Suriname", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 481267, "gdp_md_est": 4254, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "SR", "iso_a3": "SUR", "iso_n3": "740", "un_a3": "740", "wb_a2": "SR", "wb_a3": "SUR", "woe_id": -99, "adm0_a3_is": "SUR", "adm0_a3_us": "SUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.036011, 6.025848 ], [ -53.959351, 5.758105 ], [ -54.481201, 4.899414 ], [ -54.404297, 4.214943 ], [ -54.008789, 3.623071 ], [ -54.184570, 3.189879 ], [ -54.272461, 2.734557 ], [ -54.525146, 2.311994 ], [ -55.101929, 2.526037 ], [ -55.574341, 2.421764 ], [ -55.975342, 2.515061 ], [ -56.074219, 2.224173 ], [ -55.909424, 2.026555 ], [ -55.997314, 1.817932 ], [ -56.541138, 1.900286 ], [ -57.150879, 2.772965 ], [ -57.282715, 3.337954 ], [ -57.606812, 3.337954 ], [ -58.046265, 4.061536 ], [ -57.864990, 4.581901 ], [ -57.914429, 4.817312 ], [ -57.310181, 5.074529 ], [ -57.150879, 5.976680 ], [ -55.953369, 5.774501 ], [ -55.843506, 5.954827 ], [ -55.036011, 6.025848 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.959351, 5.758105 ], [ -52.882690, 5.413680 ], [ -51.828003, 4.570949 ], [ -51.663208, 4.160158 ], [ -52.250977, 3.244724 ], [ -52.558594, 2.509573 ], [ -52.943115, 2.125367 ], [ -53.421021, 2.054003 ], [ -53.558350, 2.339438 ], [ -53.783569, 2.377857 ], [ -54.091187, 2.108899 ], [ -54.525146, 2.311994 ], [ -54.272461, 2.740044 ], [ -54.184570, 3.195364 ], [ -54.014282, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.481201, 4.899414 ], [ -53.959351, 5.758105 ] ] ] } } +, +{ "type": "Feature", "properties": { "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": "Polygon", "coordinates": [ [ [ -60.216064, 5.249598 ], [ -59.985352, 5.014339 ], [ -60.111694, 4.576425 ], [ -59.771118, 4.428567 ], [ -59.540405, 3.962901 ], [ -59.820557, 3.606625 ], [ -59.979858, 2.756504 ], [ -59.721680, 2.251617 ], [ -59.650269, 1.790480 ], [ -59.035034, 1.318243 ], [ -58.540649, 1.268817 ], [ -58.430786, 1.466515 ], [ -58.117676, 1.510445 ], [ -57.661743, 1.686158 ], [ -57.337646, 1.949697 ], [ -56.782837, 1.867345 ], [ -56.541138, 1.900286 ], [ -55.997314, 1.817932 ], [ -55.909424, 2.026555 ], [ -56.074219, 2.224173 ], [ -55.975342, 2.515061 ], [ -55.574341, 2.421764 ], [ -55.101929, 2.526037 ], [ -54.525146, 2.311994 ], [ -54.091187, 2.108899 ], [ -53.783569, 2.377857 ], [ -53.558350, 2.339438 ], [ -53.421021, 2.054003 ], [ -52.943115, 2.125367 ], [ -52.558594, 2.509573 ], [ -52.250977, 3.244724 ], [ -51.663208, 4.160158 ], [ -51.322632, 4.203986 ], [ -51.069946, 3.650482 ], [ -50.509644, 1.905776 ], [ -49.976807, 1.741065 ], [ -49.949341, 1.049136 ], [ -50.701904, 0.225219 ], [ -50.471191, 0.000000 ], [ -50.388794, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.614502, -0.439449 ], [ -67.939453, -0.439449 ], [ -67.939453, 1.697139 ], [ -67.873535, 1.697139 ], [ -67.538452, 2.037534 ], [ -67.500000, 1.999106 ], [ -67.263794, 1.724593 ], [ -67.066040, 1.131518 ], [ -66.879272, 1.257834 ], [ -66.329956, 0.725078 ], [ -65.549927, 0.790990 ], [ -65.357666, 1.098565 ], [ -64.616089, 1.329226 ], [ -64.204102, 1.493971 ], [ -64.083252, 1.916757 ], [ -63.369141, 2.202216 ], [ -63.424072, 2.416276 ], [ -64.270020, 2.498597 ], [ -64.412842, 3.129546 ], [ -64.368896, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.632568, 4.149201 ], [ -63.890991, 4.023179 ], [ -63.094482, 3.771078 ], [ -62.808838, 4.012220 ], [ -62.089233, 4.165637 ], [ -60.968628, 4.538094 ], [ -60.606079, 4.921306 ], [ -60.737915, 5.200365 ], [ -60.216064, 5.249598 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -67.939453, 49.267805 ], [ -67.939453, 56.022948 ], [ -61.051025, 56.022948 ], [ -60.474243, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -67.500000, 49.421694 ], [ -67.939453, 49.267805 ] ] ], [ [ [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ] ] ], [ [ [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ] ] ], [ [ [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ] ] ], [ [ [ -67.939453, 48.585692 ], [ -67.500000, 48.759810 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.500000, 45.452424 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -67.939453, 47.163575 ], [ -67.939453, 48.585692 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.939453, 47.163575 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.500000, 45.452424 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.813019 ], [ -67.500000, 44.570904 ], [ -67.939453, 44.370987 ], [ -67.939453, 47.163575 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "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": [ [ [ [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.474243, 55.776573 ], [ -60.078735, 55.528631 ], [ -67.939453, 55.528631 ], [ -67.939453, 58.450607 ], [ -67.653809, 58.214132 ], [ -67.500000, 58.271954 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ] ] ], [ [ [ -67.939453, 66.271278 ], [ -67.939453, 66.687784 ], [ -61.935425, 66.687784 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -67.500000, 66.313242 ], [ -67.939453, 66.271278 ] ] ], [ [ [ -67.939453, 63.236101 ], [ -67.500000, 62.965212 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -67.500000, 62.129572 ], [ -67.939453, 62.193702 ], [ -67.939453, 63.236101 ] ] ], [ [ [ -67.939453, 65.581179 ], [ -67.500000, 65.337055 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -67.500000, 63.339808 ], [ -67.939453, 63.479957 ], [ -67.939453, 65.581179 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 66.687784 ], [ -44.560547, 60.048389 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.157910 ], [ -46.268921, 60.855613 ], [ -48.268433, 60.860963 ], [ -49.235229, 61.407236 ], [ -49.905396, 62.385277 ], [ -51.635742, 63.629185 ], [ -52.141113, 64.280376 ], [ -52.278442, 65.178418 ], [ -53.662720, 66.100494 ], [ -53.464966, 66.513260 ], [ -53.377075, 66.687784 ], [ -44.560547, 66.687784 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "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": [ [ [ [ -67.939453, 68.483955 ], [ -67.500000, 68.360725 ], [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.012329, 66.513260 ], [ -62.089233, 66.337505 ], [ -66.637573, 66.337505 ], [ -66.725464, 66.388161 ], [ -67.247314, 66.337505 ], [ -67.939453, 66.337505 ], [ -67.939453, 68.483955 ] ] ], [ [ [ -67.939453, 68.942607 ], [ -67.939453, 70.134765 ], [ -67.917480, 70.123562 ], [ -67.500000, 69.718107 ], [ -66.972656, 69.187945 ], [ -67.500000, 69.052858 ], [ -67.939453, 68.942607 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 74.140084 ], [ -44.560547, 66.337505 ], [ -53.547363, 66.337505 ], [ -53.464966, 66.513260 ], [ -53.305664, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.358699 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.148876 ], [ -50.872192, 69.930300 ], [ -52.014771, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.285314 ], [ -54.684448, 69.611206 ], [ -54.750366, 70.290969 ], [ -54.360352, 70.823031 ], [ -53.432007, 70.837461 ], [ -51.394043, 70.570631 ], [ -53.113403, 71.205460 ], [ -54.008789, 71.547525 ], [ -55.003052, 71.407923 ], [ -55.838013, 71.655020 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.959925 ], [ -56.123657, 73.650999 ], [ -56.535645, 74.019543 ], [ -56.667480, 74.140084 ], [ -44.560547, 74.140084 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 79.253586 ], [ -44.560547, 73.898111 ], [ -56.398315, 73.898111 ], [ -56.535645, 74.019543 ], [ -57.326660, 74.710796 ], [ -58.601074, 75.099871 ], [ -58.590088, 75.517778 ], [ -61.270752, 76.103435 ], [ -63.396606, 76.175811 ], [ -66.066284, 76.135063 ], [ -67.500000, 76.092877 ], [ -67.939453, 76.079668 ], [ -67.939453, 77.346257 ], [ -67.500000, 77.357083 ], [ -66.769409, 77.376305 ], [ -67.500000, 77.421844 ], [ -67.939453, 77.448134 ], [ -67.939453, 79.105086 ], [ -67.500000, 79.163075 ], [ -67.434082, 79.171335 ], [ -66.802368, 79.253586 ], [ -44.560547, 79.253586 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "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": "Polygon", "coordinates": [ [ [ -62.545166, 82.732092 ], [ -62.171631, 82.676285 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.500000, 81.540928 ], [ -67.659302, 81.502052 ], [ -67.500000, 81.502052 ], [ -65.484009, 81.506921 ], [ -67.500000, 80.990573 ], [ -67.840576, 80.900669 ], [ -67.939453, 80.883278 ], [ -67.939453, 82.732092 ], [ -62.545166, 82.732092 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -44.560547, 81.666853 ], [ -44.560547, 79.088462 ], [ -67.939453, 79.088462 ], [ -67.939453, 79.105086 ], [ -67.434082, 79.171335 ], [ -65.714722, 79.395031 ], [ -65.324707, 79.758726 ], [ -67.500000, 80.049510 ], [ -67.939453, 80.106301 ], [ -67.939453, 80.156200 ], [ -67.500000, 80.358836 ], [ -67.153931, 80.516698 ], [ -63.693237, 81.214014 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.287476, 82.034330 ], [ -57.211304, 82.191114 ], [ -54.135132, 82.200065 ], [ -53.047485, 81.888381 ], [ -50.394287, 82.439374 ], [ -48.004761, 82.065480 ], [ -46.604004, 81.986228 ], [ -45.000000, 81.736620 ], [ -44.560547, 81.666853 ] ] ], [ [ [ -44.560547, 81.670037 ], [ -45.000000, 81.772072 ], [ -46.906128, 82.200065 ], [ -46.768799, 82.628514 ], [ -46.505127, 82.676285 ], [ -46.203003, 82.732092 ], [ -44.560547, 82.732092 ], [ -44.560547, 81.670037 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "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": "Polygon", "coordinates": [ [ [ -67.939453, 83.090616 ], [ -67.500000, 83.077387 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -62.171631, 82.676285 ], [ -61.853027, 82.629219 ], [ -61.853027, 82.620052 ], [ -67.939453, 82.620052 ], [ -67.939453, 83.090616 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 83.025552 ], [ -44.560547, 82.620052 ], [ -46.768799, 82.620052 ], [ -46.768799, 82.628514 ], [ -46.505127, 82.676285 ], [ -45.000000, 82.948424 ], [ -44.560547, 83.025552 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -40.880127, -21.534847 ], [ -40.946045, -21.932855 ], [ -40.957031, -21.943046 ], [ -41.759033, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.963451 ], [ -44.648438, -23.347299 ], [ -45.000000, -23.574057 ], [ -45.357056, -23.795398 ], [ -45.439453, -23.815501 ], [ -45.439453, -21.534847 ], [ -40.880127, -21.534847 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "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": "Polygon", "coordinates": [ [ [ -45.439453, -1.351193 ], [ -45.000000, -1.515936 ], [ -44.906616, -1.548884 ], [ -44.417725, -2.136346 ], [ -44.582520, -2.690661 ], [ -43.423462, -2.377857 ], [ -41.473389, -2.910125 ], [ -39.979248, -2.871722 ], [ -38.501587, -3.699819 ], [ -37.227173, -4.817312 ], [ -36.458130, -5.107358 ], [ -35.601196, -5.145657 ], [ -35.238647, -5.462896 ], [ -34.733276, -7.340675 ], [ -35.128784, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.051392, -11.038255 ], [ -37.688599, -12.168226 ], [ -38.424683, -13.036669 ], [ -38.677368, -13.052724 ], [ -38.957520, -13.790071 ], [ -38.886108, -15.665354 ], [ -39.166260, -17.203770 ], [ -39.270630, -17.863747 ], [ -39.583740, -18.260653 ], [ -39.765015, -19.596019 ], [ -40.775757, -20.899871 ], [ -40.946045, -21.932855 ], [ -40.957031, -21.943046 ], [ -41.720581, -22.350076 ], [ -45.439453, -22.350076 ], [ -45.439453, -1.351193 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -34.194946, 66.687784 ], [ -34.205933, 66.681261 ], [ -34.722290, 66.513260 ], [ -36.353760, 65.980034 ], [ -37.045898, 65.939754 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.460542 ], [ -40.671387, 64.841932 ], [ -40.687866, 64.139369 ], [ -41.193237, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.379517, 60.100457 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.157910 ], [ -45.439453, 60.400289 ], [ -45.439453, 66.687784 ], [ -34.194946, 66.687784 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iceland", "sov_a3": "ISL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iceland", "adm0_a3": "ISL", "geou_dif": 0, "geounit": "Iceland", "gu_a3": "ISL", "su_dif": 0, "subunit": "Iceland", "su_a3": "ISL", "brk_diff": 0, "name": "Iceland", "name_long": "Iceland", "brk_a3": "ISL", "brk_name": "Iceland", "abbrev": "Iceland", "postal": "IS", "formal_en": "Republic of Iceland", "name_sort": "Iceland", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 306694, "gdp_md_est": 12710, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IS", "iso_a3": "ISL", "iso_n3": "352", "un_a3": "352", "wb_a2": "IS", "wb_a3": "ISL", "woe_id": -99, "adm0_a3_is": "ISL", "adm0_a3_us": "ISL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.060547, 64.468059 ], [ -22.500000, 64.567319 ], [ -23.955688, 64.893259 ], [ -22.500000, 65.051285 ], [ -22.186890, 65.086018 ], [ -22.230835, 65.380571 ], [ -22.500000, 65.410303 ], [ -24.329224, 65.612952 ], [ -23.653564, 66.264645 ], [ -22.500000, 66.374956 ], [ -22.137451, 66.412352 ], [ -22.060547, 66.379359 ], [ -22.060547, 64.468059 ] ] ], [ [ [ -22.060547, 64.277992 ], [ -22.060547, 63.881808 ], [ -22.500000, 63.932545 ], [ -22.763672, 63.961496 ], [ -22.500000, 64.079404 ], [ -22.060547, 64.277992 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, 74.140084 ], [ -22.060547, 73.323130 ], [ -22.175903, 73.310514 ], [ -22.500000, 73.308936 ], [ -23.571167, 73.307358 ], [ -22.500000, 72.733112 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -22.500000, 72.227132 ], [ -24.279785, 72.598908 ], [ -24.796143, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.500000, 71.642914 ], [ -22.137451, 71.469124 ], [ -22.060547, 71.318396 ], [ -22.060547, 70.630841 ], [ -22.500000, 70.583418 ], [ -23.538208, 70.471717 ], [ -24.307251, 70.857286 ], [ -25.548706, 71.432427 ], [ -25.202637, 70.752534 ], [ -26.367188, 70.227886 ], [ -23.730469, 70.185103 ], [ -22.500000, 70.136632 ], [ -22.351685, 70.131032 ], [ -22.500000, 70.082434 ], [ -25.032349, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.777954, 68.122482 ], [ -32.816162, 67.736516 ], [ -34.205933, 66.681261 ], [ -34.722290, 66.513260 ], [ -35.260620, 66.337505 ], [ -45.439453, 66.337505 ], [ -45.439453, 74.140084 ], [ -22.060547, 74.140084 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iceland", "sov_a3": "ISL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iceland", "adm0_a3": "ISL", "geou_dif": 0, "geounit": "Iceland", "gu_a3": "ISL", "su_dif": 0, "subunit": "Iceland", "su_a3": "ISL", "brk_diff": 0, "name": "Iceland", "name_long": "Iceland", "brk_a3": "ISL", "brk_name": "Iceland", "abbrev": "Iceland", "postal": "IS", "formal_en": "Republic of Iceland", "name_sort": "Iceland", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 306694, "gdp_md_est": 12710, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IS", "iso_a3": "ISL", "iso_n3": "352", "un_a3": "352", "wb_a2": "IS", "wb_a3": "ISL", "woe_id": -99, "adm0_a3_is": "ISL", "adm0_a3_us": "ISL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.137451, 66.412352 ], [ -22.060547, 66.379359 ], [ -22.060547, 66.337505 ], [ -22.884521, 66.337505 ], [ -22.137451, 66.412352 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, 79.253586 ], [ -22.060547, 73.898111 ], [ -45.439453, 73.898111 ], [ -45.439453, 79.253586 ], [ -22.060547, 79.253586 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, 82.732092 ], [ -22.060547, 82.476146 ], [ -22.500000, 82.382789 ], [ -22.692261, 82.341904 ], [ -26.520996, 82.297857 ], [ -31.904297, 82.200065 ], [ -31.398926, 82.022140 ], [ -27.861328, 82.131931 ], [ -24.845581, 81.786995 ], [ -22.906494, 82.093487 ], [ -22.500000, 81.921643 ], [ -22.077026, 81.735041 ], [ -22.500000, 81.512599 ], [ -23.170166, 81.153396 ], [ -22.500000, 81.252526 ], [ -22.060547, 81.317447 ], [ -22.060547, 79.088462 ], [ -45.439453, 79.088462 ], [ -45.439453, 81.806589 ], [ -45.000000, 81.736620 ], [ -44.527588, 81.661279 ], [ -45.000000, 81.772072 ], [ -45.439453, 81.872865 ], [ -45.439453, 82.732092 ], [ -22.060547, 82.732092 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ], [ -22.500000, 82.945726 ], [ -22.060547, 82.888151 ], [ -22.060547, 82.620052 ], [ -45.439453, 82.620052 ], [ -45.439453, 82.869765 ], [ -45.000000, 82.948424 ], [ -43.406982, 83.225420 ], [ -39.902344, 83.180561 ], [ -38.622437, 83.549234 ], [ -35.090332, 83.645406 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 7, "sovereignt": "Western Sahara", "sov_a3": "SAH", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Western Sahara", "adm0_a3": "SAH", "geou_dif": 0, "geounit": "Western Sahara", "gu_a3": "SAH", "su_dif": 0, "subunit": "Western Sahara", "su_a3": "SAH", "brk_diff": 1, "name": "W. Sahara", "name_long": "Western Sahara", "brk_a3": "B28", "brk_name": "W. Sahara", "abbrev": "W. Sah.", "postal": "WS", "formal_en": "Sahrawi Arab Democratic Republic", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Morocco", "name_sort": "Western Sahara", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 4, "mapcolor13": 4, "pop_est": -99, "gdp_md_est": -99, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "EH", "iso_a3": "ESH", "iso_n3": "732", "un_a3": "732", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "SAH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 14, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.068237, 22.350076 ], [ -12.930908, 21.330315 ], [ -16.847534, 21.335432 ], [ -17.067261, 21.002471 ], [ -17.023315, 21.422390 ], [ -14.754639, 21.504186 ], [ -14.633789, 21.861499 ], [ -14.556885, 21.943046 ], [ -14.221802, 22.314508 ], [ -14.216309, 22.350076 ], [ -13.068237, 22.350076 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.216309, 22.350076 ], [ -14.221802, 22.314508 ], [ -14.556885, 21.943046 ], [ -14.633789, 21.861499 ], [ -14.754639, 21.504186 ], [ -17.023315, 21.422390 ], [ -16.973877, 21.886987 ], [ -16.896973, 21.943046 ], [ -16.589355, 22.161971 ], [ -16.473999, 22.350076 ], [ -14.216309, 22.350076 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "name_sort": "Senegal", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.578857, 16.599346 ], [ -14.100952, 16.304323 ], [ -13.436279, 16.040534 ], [ -12.832031, 15.305380 ], [ -12.172852, 14.620794 ], [ -12.128906, 13.998037 ], [ -11.931152, 13.427024 ], [ -11.557617, 13.143678 ], [ -11.469727, 12.758232 ], [ -11.519165, 12.447305 ], [ -11.661987, 12.388294 ], [ -12.205811, 12.468760 ], [ -12.282715, 12.356100 ], [ -12.502441, 12.334636 ], [ -13.222046, 12.576010 ], [ -15.551147, 12.629618 ], [ -15.820312, 12.517028 ], [ -16.149902, 12.549202 ], [ -16.682739, 12.388294 ], [ -16.842041, 13.154376 ], [ -15.935669, 13.132979 ], [ -15.693970, 13.272026 ], [ -15.512695, 13.282719 ], [ -15.144653, 13.512497 ], [ -14.716187, 13.298757 ], [ -14.282227, 13.282719 ], [ -13.848267, 13.507155 ], [ -14.051514, 13.795406 ], [ -14.381104, 13.629972 ], [ -14.688721, 13.635310 ], [ -15.084229, 13.880746 ], [ -15.402832, 13.864747 ], [ -15.628052, 13.624633 ], [ -16.715698, 13.597939 ], [ -17.127686, 14.376155 ], [ -17.627563, 14.732386 ], [ -17.188110, 14.923554 ], [ -16.704712, 15.623037 ], [ -16.468506, 16.135539 ], [ -16.122437, 16.457159 ], [ -15.628052, 16.372851 ], [ -15.139160, 16.588817 ], [ -14.578857, 16.599346 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guinea", "sov_a3": "GIN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea", "adm0_a3": "GIN", "geou_dif": 0, "geounit": "Guinea", "gu_a3": "GIN", "su_dif": 0, "subunit": "Guinea", "su_a3": "GIN", "brk_diff": 0, "name": "Guinea", "name_long": "Guinea", "brk_a3": "GIN", "brk_name": "Guinea", "abbrev": "Gin.", "postal": "GN", "formal_en": "Republic of Guinea", "name_sort": "Guinea", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 10057975, "gdp_md_est": 10600, "pop_year": -99, "lastcensus": 1996, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GN", "iso_a3": "GIN", "iso_n3": "324", "un_a3": "324", "wb_a2": "GN", "wb_a3": "GIN", "woe_id": -99, "adm0_a3_is": "GIN", "adm0_a3_us": "GIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.705444, 12.586732 ], [ -13.222046, 12.576010 ], [ -12.502441, 12.334636 ], [ -12.282715, 12.356100 ], [ -12.205811, 12.468760 ], [ -11.661987, 12.388294 ], [ -11.519165, 12.447305 ], [ -11.458740, 12.076924 ], [ -11.299438, 12.082296 ], [ -11.041260, 12.216549 ], [ -10.870972, 12.178965 ], [ -10.596313, 11.926478 ], [ -10.167847, 11.845847 ], [ -9.893188, 12.060809 ], [ -9.569092, 12.195073 ], [ -9.332886, 12.334636 ], [ -9.129639, 12.313169 ], [ -8.909912, 12.093039 ], [ -8.789062, 11.813588 ], [ -8.377075, 11.393879 ], [ -8.585815, 11.140677 ], [ -8.624268, 10.811724 ], [ -8.410034, 10.914224 ], [ -8.283691, 10.795537 ], [ -8.338623, 10.498614 ], [ -8.031006, 10.206813 ], [ -8.234253, 10.131117 ], [ -8.311157, 9.790264 ], [ -8.080444, 9.378612 ], [ -7.833252, 8.581021 ], [ -8.206787, 8.456072 ], [ -8.300171, 8.320212 ], [ -8.223267, 8.124491 ], [ -8.283691, 7.689217 ], [ -8.442993, 7.689217 ], [ -8.723145, 7.716435 ], [ -8.926392, 7.313433 ], [ -9.212036, 7.318882 ], [ -9.404297, 7.531319 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.542998 ], [ -10.019531, 8.428904 ], [ -10.233765, 8.407168 ], [ -10.508423, 8.352823 ], [ -10.497437, 8.716789 ], [ -10.656738, 8.977323 ], [ -10.623779, 9.270201 ], [ -10.843506, 9.692813 ], [ -11.118164, 10.049994 ], [ -11.920166, 10.049994 ], [ -12.150879, 9.860628 ], [ -12.431030, 9.838979 ], [ -12.601318, 9.622414 ], [ -12.716675, 9.346092 ], [ -13.249512, 8.906780 ], [ -13.688965, 9.497826 ], [ -14.078979, 9.887687 ], [ -14.331665, 10.017539 ], [ -14.584351, 10.217625 ], [ -14.694214, 10.660608 ], [ -14.842529, 10.881859 ], [ -15.133667, 11.043647 ], [ -14.688721, 11.528470 ], [ -14.386597, 11.512322 ], [ -14.122925, 11.679135 ], [ -13.903198, 11.679135 ], [ -13.743896, 11.813588 ], [ -13.831787, 12.146746 ], [ -13.721924, 12.248760 ], [ -13.705444, 12.586732 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.163330, 22.350076 ], [ -6.119385, 21.943046 ], [ -5.493164, 16.325411 ], [ -5.317383, 16.204125 ], [ -5.542603, 15.506619 ], [ -9.552612, 15.490739 ], [ -9.700928, 15.268288 ], [ -10.090942, 15.331870 ], [ -10.651245, 15.135764 ], [ -11.354370, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.837769, 14.801439 ], [ -12.172852, 14.620794 ], [ -12.832031, 15.305380 ], [ -13.436279, 16.040534 ], [ -14.100952, 16.304323 ], [ -14.578857, 16.599346 ], [ -15.139160, 16.588817 ], [ -15.628052, 16.372851 ], [ -16.122437, 16.457159 ], [ -16.468506, 16.135539 ], [ -16.550903, 16.678293 ], [ -16.270752, 17.167034 ], [ -16.149902, 18.109308 ], [ -16.259766, 19.098458 ], [ -16.380615, 19.596019 ], [ -16.281738, 20.097206 ], [ -16.539917, 20.571082 ], [ -17.067261, 21.002471 ], [ -16.847534, 21.335432 ], [ -12.930908, 21.330315 ], [ -13.068237, 22.350076 ], [ -6.163330, 22.350076 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.862427, 22.350076 ], [ -0.230713, 21.943046 ], [ 0.000000, 21.795208 ], [ 0.439453, 21.514407 ], [ 0.439453, 14.934170 ], [ 0.000000, 14.928862 ], [ -0.269165, 14.928862 ], [ -0.516357, 15.119856 ], [ -1.071167, 14.976627 ], [ -2.005005, 14.562318 ], [ -2.197266, 14.248411 ], [ -2.971802, 13.800741 ], [ -3.109131, 13.544541 ], [ -3.526611, 13.341520 ], [ -4.010010, 13.475106 ], [ -4.284668, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.223999, 11.716788 ], [ -5.202026, 11.377724 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.374362 ], [ -5.817261, 10.223031 ], [ -6.053467, 10.098670 ], [ -6.207275, 10.525619 ], [ -6.498413, 10.412183 ], [ -6.668701, 10.433793 ], [ -6.855469, 10.141932 ], [ -7.624512, 10.147339 ], [ -7.904663, 10.298706 ], [ -8.031006, 10.206813 ], [ -8.338623, 10.498614 ], [ -8.283691, 10.795537 ], [ -8.410034, 10.914224 ], [ -8.624268, 10.811724 ], [ -8.585815, 11.140677 ], [ -8.377075, 11.393879 ], [ -8.789062, 11.813588 ], [ -8.909912, 12.093039 ], [ -9.129639, 12.313169 ], [ -9.332886, 12.334636 ], [ -9.569092, 12.195073 ], [ -9.893188, 12.060809 ], [ -10.167847, 11.845847 ], [ -10.596313, 11.926478 ], [ -10.870972, 12.178965 ], [ -11.041260, 12.216549 ], [ -11.299438, 12.082296 ], [ -11.458740, 12.076924 ], [ -11.519165, 12.447305 ], [ -11.469727, 12.758232 ], [ -11.557617, 13.143678 ], [ -11.931152, 13.427024 ], [ -12.128906, 13.998037 ], [ -12.172852, 14.620794 ], [ -11.837769, 14.801439 ], [ -11.667480, 15.390136 ], [ -11.354370, 15.411319 ], [ -10.651245, 15.135764 ], [ -10.090942, 15.331870 ], [ -9.700928, 15.268288 ], [ -9.552612, 15.490739 ], [ -5.542603, 15.506619 ], [ -5.317383, 16.204125 ], [ -5.493164, 16.325411 ], [ -6.119385, 21.943046 ], [ -6.163330, 22.350076 ], [ -0.862427, 22.350076 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.516357, 15.119856 ], [ -0.269165, 14.928862 ], [ 0.000000, 14.928862 ], [ 0.373535, 14.934170 ], [ 0.291138, 14.445319 ], [ 0.428467, 13.992706 ], [ 0.439453, 13.982046 ], [ 0.439453, 11.011297 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.102947 ], [ -0.763550, 10.941192 ], [ -1.208496, 11.011297 ], [ -2.944336, 10.962764 ], [ -2.966309, 10.395975 ], [ -2.828979, 9.644077 ], [ -3.515625, 9.903921 ], [ -3.982544, 9.866040 ], [ -4.334106, 9.611582 ], [ -4.784546, 9.822742 ], [ -4.954834, 10.152746 ], [ -5.405273, 10.374362 ], [ -5.471191, 10.951978 ], [ -5.202026, 11.377724 ], [ -5.223999, 11.716788 ], [ -4.427490, 12.543840 ], [ -4.284668, 13.229251 ], [ -4.010010, 13.475106 ], [ -3.526611, 13.341520 ], [ -3.109131, 13.544541 ], [ -2.971802, 13.800741 ], [ -2.197266, 14.248411 ], [ -2.005005, 14.562318 ], [ -1.071167, 14.976627 ], [ -0.516357, 15.119856 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ivory Coast", "sov_a3": "CIV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ivory Coast", "adm0_a3": "CIV", "geou_dif": 0, "geounit": "Ivory Coast", "gu_a3": "CIV", "su_dif": 0, "subunit": "Ivory Coast", "su_a3": "CIV", "brk_diff": 0, "name": "Côte d'Ivoire", "name_long": "Côte d'Ivoire", "brk_a3": "CIV", "brk_name": "Côte d'Ivoire", "abbrev": "I.C.", "postal": "CI", "formal_en": "Republic of Ivory Coast", "formal_fr": "Republic of Cote D'Ivoire", "name_sort": "Côte d'Ivoire", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 20617068, "gdp_md_est": 33850, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CI", "iso_a3": "CIV", "iso_n3": "384", "un_a3": "384", "wb_a2": "CI", "wb_a3": "CIV", "woe_id": -99, "adm0_a3_is": "CIV", "adm0_a3_us": "CIV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 13, "long_len": 13, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.207275, 10.525619 ], [ -6.053467, 10.098670 ], [ -5.817261, 10.223031 ], [ -5.405273, 10.374362 ], [ -4.954834, 10.152746 ], [ -4.784546, 9.822742 ], [ -4.334106, 9.611582 ], [ -3.982544, 9.866040 ], [ -3.515625, 9.903921 ], [ -2.828979, 9.644077 ], [ -2.565308, 8.222364 ], [ -2.988281, 7.384258 ], [ -3.246460, 6.255237 ], [ -2.812500, 5.391805 ], [ -2.856445, 4.997922 ], [ -3.312378, 4.986977 ], [ -4.010010, 5.183953 ], [ -4.652710, 5.173011 ], [ -5.839233, 4.997922 ], [ -6.531372, 4.707828 ], [ -7.520142, 4.340934 ], [ -7.712402, 4.368320 ], [ -7.635498, 5.189423 ], [ -7.542114, 5.315236 ], [ -7.575073, 5.708914 ], [ -7.998047, 6.129631 ], [ -8.316650, 6.195168 ], [ -8.607788, 6.468151 ], [ -8.388062, 6.915521 ], [ -8.486938, 7.400600 ], [ -8.442993, 7.689217 ], [ -8.283691, 7.689217 ], [ -8.223267, 8.124491 ], [ -8.300171, 8.320212 ], [ -8.206787, 8.456072 ], [ -7.833252, 8.581021 ], [ -8.080444, 9.378612 ], [ -8.311157, 9.790264 ], [ -8.234253, 10.131117 ], [ -8.031006, 10.206813 ], [ -7.904663, 10.298706 ], [ -7.624512, 10.147339 ], [ -6.855469, 10.141932 ], [ -6.668701, 10.433793 ], [ -6.498413, 10.412183 ], [ -6.207275, 10.525619 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.102947 ], [ 0.000000, 11.027472 ], [ 0.021973, 11.022080 ], [ 0.000000, 10.919618 ], [ -0.054932, 10.709189 ], [ 0.000000, 10.649811 ], [ 0.362549, 10.196000 ], [ 0.362549, 9.465317 ], [ 0.439453, 8.857934 ], [ 0.439453, 5.697982 ], [ 0.000000, 5.533978 ], [ -0.510864, 5.348052 ], [ -1.065674, 5.003394 ], [ -1.966553, 4.713303 ], [ -2.856445, 4.997922 ], [ -2.812500, 5.391805 ], [ -3.246460, 6.255237 ], [ -2.988281, 7.384258 ], [ -2.565308, 8.222364 ], [ -2.966309, 10.395975 ], [ -2.944336, 10.962764 ], [ -1.208496, 11.011297 ], [ -0.763550, 10.941192 ], [ -0.439453, 11.102947 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 22.350076 ], [ 0.439453, 21.514407 ], [ 0.000000, 21.795208 ], [ -0.230713, 21.943046 ], [ -0.862427, 22.350076 ], [ 0.439453, 22.350076 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 14.934170 ], [ 0.439453, 13.982046 ], [ 0.428467, 13.992706 ], [ 0.291138, 14.445319 ], [ 0.373535, 14.934170 ], [ 0.439453, 14.934170 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 7, "sovereignt": "Western Sahara", "sov_a3": "SAH", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Western Sahara", "adm0_a3": "SAH", "geou_dif": 0, "geounit": "Western Sahara", "gu_a3": "SAH", "su_dif": 0, "subunit": "Western Sahara", "su_a3": "SAH", "brk_diff": 1, "name": "W. Sahara", "name_long": "Western Sahara", "brk_a3": "B28", "brk_name": "W. Sahara", "abbrev": "W. Sah.", "postal": "WS", "formal_en": "Sahrawi Arab Democratic Republic", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Morocco", "name_sort": "Western Sahara", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 4, "mapcolor13": 4, "pop_est": -99, "gdp_md_est": -99, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "EH", "iso_a3": "ESH", "iso_n3": "732", "un_a3": "732", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "SAH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 14, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.668213, 27.659204 ], [ -8.684692, 27.396155 ], [ -8.690186, 25.883937 ], [ -11.969604, 25.938287 ], [ -11.942139, 23.377556 ], [ -12.875977, 23.286765 ], [ -13.123169, 22.776182 ], [ -13.013306, 21.943046 ], [ -12.958374, 21.534847 ], [ -14.743652, 21.534847 ], [ -14.633789, 21.861499 ], [ -14.556885, 21.943046 ], [ -14.221802, 22.314508 ], [ -13.892212, 23.694835 ], [ -12.502441, 24.771772 ], [ -12.035522, 26.032106 ], [ -11.722412, 26.106121 ], [ -11.392822, 26.887780 ], [ -10.552368, 26.995513 ], [ -10.189819, 26.863281 ], [ -9.739380, 26.863281 ], [ -9.415283, 27.093364 ], [ -8.800049, 27.122702 ], [ -8.822021, 27.659204 ], [ -8.668213, 27.659204 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Portugal", "sov_a3": "PRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Portugal", "adm0_a3": "PRT", "geou_dif": 0, "geounit": "Portugal", "gu_a3": "PRT", "su_dif": 1, "subunit": "Portugal", "su_a3": "PR1", "brk_diff": 0, "name": "Portugal", "name_long": "Portugal", "brk_a3": "PR1", "brk_name": "Portugal", "abbrev": "Port.", "postal": "P", "formal_en": "Portuguese Republic", "name_sort": "Portugal", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 10707924, "gdp_md_est": 208627, "pop_year": -99, "lastcensus": 2011, "gdp_year": 0, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PT", "iso_a3": "PRT", "iso_n3": "620", "un_a3": "620", "wb_a2": "PT", "wb_a3": "PRT", "woe_id": -99, "adm0_a3_is": "PRT", "adm0_a3_us": "PRT", "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": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.514893, 41.310824 ], [ -6.855469, 41.112469 ], [ -6.855469, 40.979898 ], [ -6.866455, 40.333983 ], [ -7.031250, 40.187267 ], [ -7.069702, 39.715638 ], [ -7.503662, 39.631077 ], [ -7.102661, 39.031986 ], [ -7.377319, 38.376115 ], [ -7.031250, 38.078366 ], [ -7.168579, 37.805444 ], [ -7.542114, 37.431251 ], [ -7.454224, 37.099003 ], [ -7.860718, 36.840065 ], [ -8.388062, 36.980615 ], [ -8.898926, 36.870832 ], [ -8.750610, 37.653383 ], [ -8.843994, 38.268376 ], [ -9.288940, 38.358888 ], [ -9.530640, 38.741231 ], [ -9.448242, 39.393755 ], [ -9.052734, 39.757880 ], [ -8.981323, 40.162083 ], [ -8.772583, 40.763901 ], [ -8.783569, 40.979898 ], [ -8.794556, 41.186922 ], [ -8.865967, 41.310824 ], [ -6.514893, 41.310824 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 41.310824 ], [ 0.439453, 40.426042 ], [ 0.104370, 40.124291 ], [ 0.000000, 39.901309 ], [ -0.280151, 39.313050 ], [ 0.000000, 38.903858 ], [ 0.109863, 38.741231 ], [ 0.000000, 38.655488 ], [ -0.472412, 38.294248 ], [ -0.686646, 37.644685 ], [ -1.439209, 37.444335 ], [ -2.147827, 36.677231 ], [ -3.416748, 36.659606 ], [ -4.372559, 36.681636 ], [ -4.998779, 36.328403 ], [ -5.377808, 35.946883 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.520386, 36.945502 ], [ -7.454224, 37.099003 ], [ -7.542114, 37.431251 ], [ -7.168579, 37.805444 ], [ -7.031250, 38.078366 ], [ -7.377319, 38.376115 ], [ -7.102661, 39.031986 ], [ -7.503662, 39.631077 ], [ -7.069702, 39.715638 ], [ -7.031250, 40.187267 ], [ -6.866455, 40.333983 ], [ -6.855469, 40.979898 ], [ -6.855469, 41.112469 ], [ -6.514893, 41.310824 ], [ 0.439453, 41.310824 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.932617, 35.764343 ], [ -5.196533, 35.755428 ], [ -4.592285, 35.330812 ], [ -3.641968, 35.402484 ], [ -2.609253, 35.182788 ], [ -2.175293, 35.169318 ], [ -1.796265, 34.529187 ], [ -1.735840, 33.920572 ], [ -1.389771, 32.865746 ], [ -1.126099, 32.653251 ], [ -1.312866, 32.263911 ], [ -2.620239, 32.096536 ], [ -3.070679, 31.728167 ], [ -3.652954, 31.639352 ], [ -3.691406, 30.897511 ], [ -4.861450, 30.505484 ], [ -5.245972, 30.002517 ], [ -6.064453, 29.735762 ], [ -7.064209, 29.583012 ], [ -8.679199, 28.844674 ], [ -8.668213, 27.659204 ], [ -8.822021, 27.659204 ], [ -8.800049, 27.122702 ], [ -9.415283, 27.093364 ], [ -9.739380, 26.863281 ], [ -10.189819, 26.863281 ], [ -10.552368, 26.995513 ], [ -11.392822, 26.887780 ], [ -11.722412, 26.106121 ], [ -12.035522, 26.032106 ], [ -12.502441, 24.771772 ], [ -13.892212, 23.694835 ], [ -14.221802, 22.314508 ], [ -14.556885, 21.943046 ], [ -14.633789, 21.861499 ], [ -14.743652, 21.534847 ], [ -17.012329, 21.534847 ], [ -16.973877, 21.886987 ], [ -16.896973, 21.943046 ], [ -16.589355, 22.161971 ], [ -16.265259, 22.679916 ], [ -16.331177, 23.019076 ], [ -15.985107, 23.725012 ], [ -15.430298, 24.362110 ], [ -15.089722, 24.522137 ], [ -14.826050, 25.105497 ], [ -14.804077, 25.636574 ], [ -14.441528, 26.258936 ], [ -13.776855, 26.622908 ], [ -13.145142, 27.644606 ], [ -12.623291, 28.042895 ], [ -11.689453, 28.149503 ], [ -10.903931, 28.835050 ], [ -10.404053, 29.099377 ], [ -9.569092, 29.935895 ], [ -9.816284, 31.179910 ], [ -9.437256, 32.040677 ], [ -9.305420, 32.565333 ], [ -8.662720, 33.243282 ], [ -7.657471, 33.701493 ], [ -6.915894, 34.111805 ], [ -6.245728, 35.146863 ], [ -5.932617, 35.764343 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.684692, 27.396155 ], [ -4.927368, 24.976099 ], [ -6.454468, 24.961160 ], [ -6.119385, 21.943046 ], [ -6.069946, 21.534847 ], [ -12.958374, 21.534847 ], [ -13.013306, 21.943046 ], [ -13.123169, 22.776182 ], [ -12.875977, 23.286765 ], [ -11.942139, 23.377556 ], [ -11.969604, 25.938287 ], [ -8.690186, 25.883937 ], [ -8.684692, 27.396155 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.927368, 24.976099 ], [ -1.554565, 22.796439 ], [ -0.230713, 21.943046 ], [ 0.395508, 21.534847 ], [ -6.069946, 21.534847 ], [ -6.119385, 21.943046 ], [ -6.454468, 24.961160 ], [ -4.927368, 24.976099 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 36.261992 ], [ 0.439453, 21.534847 ], [ 0.395508, 21.534847 ], [ -0.230713, 21.943046 ], [ -1.554565, 22.796439 ], [ -4.927368, 24.976099 ], [ -8.684692, 27.396155 ], [ -8.668213, 27.591066 ], [ -8.679199, 28.844674 ], [ -7.064209, 29.583012 ], [ -6.064453, 29.735762 ], [ -5.245972, 30.002517 ], [ -4.861450, 30.505484 ], [ -3.691406, 30.897511 ], [ -3.652954, 31.639352 ], [ -3.070679, 31.728167 ], [ -2.620239, 32.096536 ], [ -1.312866, 32.263911 ], [ -1.126099, 32.653251 ], [ -1.389771, 32.865746 ], [ -1.735840, 33.920572 ], [ -1.796265, 34.529187 ], [ -2.175293, 35.169318 ], [ -1.213989, 35.715298 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.973561 ], [ 0.439453, 36.261992 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ireland", "sov_a3": "IRL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ireland", "adm0_a3": "IRL", "geou_dif": 0, "geounit": "Ireland", "gu_a3": "IRL", "su_dif": 0, "subunit": "Ireland", "su_a3": "IRL", "brk_diff": 0, "name": "Ireland", "name_long": "Ireland", "brk_a3": "IRL", "brk_name": "Ireland", "abbrev": "Ire.", "postal": "IRL", "formal_en": "Ireland", "name_sort": "Ireland", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 4203200, "gdp_md_est": 188400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IE", "iso_a3": "IRL", "iso_n3": "372", "un_a3": "372", "wb_a2": "IE", "wb_a3": "IRL", "woe_id": -99, "adm0_a3_is": "IRL", "adm0_a3_us": "IRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.575073, 55.131790 ], [ -7.366333, 54.597528 ], [ -7.575073, 54.062612 ], [ -6.954346, 54.075506 ], [ -6.201782, 53.868725 ], [ -6.036987, 53.153359 ], [ -6.789551, 52.261434 ], [ -8.563843, 51.672555 ], [ -9.981079, 51.822198 ], [ -9.168091, 52.865814 ], [ -9.689941, 53.881679 ], [ -8.333130, 54.667478 ], [ -7.575073, 55.131790 ] ] ] } } +, +{ "type": "Feature", "properties": { "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": [ [ [ [ -3.070679, 56.022948 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.988525, 55.776573 ], [ -1.115112, 54.626158 ], [ -0.433960, 54.466845 ], [ 0.000000, 53.673934 ], [ 0.181274, 53.327592 ], [ 0.439453, 52.975108 ], [ 0.439453, 50.767734 ], [ 0.000000, 50.771208 ], [ -0.791016, 50.778155 ], [ -2.493896, 50.502946 ], [ -2.960815, 50.698197 ], [ -3.619995, 50.229638 ], [ -4.542847, 50.341955 ], [ -5.245972, 49.961822 ], [ -5.778809, 50.162824 ], [ -4.312134, 51.210325 ], [ -3.416748, 51.426614 ], [ -4.987793, 51.594135 ], [ -5.267944, 51.991646 ], [ -4.224243, 52.301761 ], [ -4.773560, 52.842595 ], [ -4.581299, 53.497850 ], [ -3.092651, 53.406257 ], [ -2.949829, 53.985165 ], [ -3.630981, 54.616617 ], [ -4.844971, 54.791185 ], [ -5.086670, 55.062641 ], [ -4.724121, 55.509971 ], [ -5.042725, 55.776573 ], [ -5.048218, 55.785840 ], [ -5.059204, 55.776573 ], [ -5.586548, 55.313517 ], [ -5.619507, 55.776573 ], [ -5.630493, 56.022948 ], [ -3.070679, 56.022948 ] ] ], [ [ [ -6.734619, 55.175731 ], [ -5.663452, 54.556137 ], [ -6.201782, 53.868725 ], [ -6.954346, 54.075506 ], [ -7.575073, 54.062612 ], [ -7.366333, 54.597528 ], [ -7.575073, 55.131790 ], [ -6.734619, 55.175731 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 49.830896 ], [ 0.439453, 42.642041 ], [ 0.335083, 42.581400 ], [ 0.000000, 42.666281 ], [ -1.505127, 43.036776 ], [ -1.906128, 43.424999 ], [ -1.384277, 44.024422 ], [ -1.197510, 46.016039 ], [ -2.230225, 47.066380 ], [ -2.966309, 47.572820 ], [ -4.493408, 47.956824 ], [ -4.597778, 48.687334 ], [ -3.295898, 48.904449 ], [ -1.620483, 48.647428 ], [ -1.933594, 49.777717 ], [ -0.994263, 49.350177 ], [ 0.000000, 49.681847 ], [ 0.439453, 49.830896 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Portugal", "sov_a3": "PRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Portugal", "adm0_a3": "PRT", "geou_dif": 0, "geounit": "Portugal", "gu_a3": "PRT", "su_dif": 1, "subunit": "Portugal", "su_a3": "PR1", "brk_diff": 0, "name": "Portugal", "name_long": "Portugal", "brk_a3": "PR1", "brk_name": "Portugal", "abbrev": "Port.", "postal": "P", "formal_en": "Portuguese Republic", "name_sort": "Portugal", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 10707924, "gdp_md_est": 208627, "pop_year": -99, "lastcensus": 2011, "gdp_year": 0, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PT", "iso_a3": "PRT", "iso_n3": "620", "un_a3": "620", "wb_a2": "PT", "wb_a3": "PRT", "woe_id": -99, "adm0_a3_is": "PRT", "adm0_a3_us": "PRT", "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": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.267212, 42.281373 ], [ -8.014526, 41.791793 ], [ -7.426758, 41.795888 ], [ -7.256470, 41.918629 ], [ -6.668701, 41.885921 ], [ -6.394043, 41.385052 ], [ -6.855469, 41.112469 ], [ -6.855469, 40.979898 ], [ -6.860962, 40.647304 ], [ -8.811035, 40.647304 ], [ -8.772583, 40.763901 ], [ -8.783569, 40.979898 ], [ -8.794556, 41.186922 ], [ -8.992310, 41.545589 ], [ -9.036255, 41.881831 ], [ -8.673706, 42.134895 ], [ -8.267212, 42.281373 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.981567, 43.751257 ], [ -6.756592, 43.568452 ], [ -5.416260, 43.576411 ], [ -4.350586, 43.405047 ], [ -3.521118, 43.456906 ], [ -1.906128, 43.424999 ], [ -1.505127, 43.036776 ], [ 0.000000, 42.666281 ], [ 0.335083, 42.581400 ], [ 0.439453, 42.642041 ], [ 0.439453, 40.647304 ], [ -6.860962, 40.647304 ], [ -6.855469, 40.979898 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.385052 ], [ -6.668701, 41.885921 ], [ -7.256470, 41.918629 ], [ -7.426758, 41.795888 ], [ -8.014526, 41.791793 ], [ -8.267212, 42.281373 ], [ -8.673706, 42.134895 ], [ -9.036255, 41.881831 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.028745 ], [ -7.981567, 43.751257 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iceland", "sov_a3": "ISL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iceland", "adm0_a3": "ISL", "geou_dif": 0, "geounit": "Iceland", "gu_a3": "ISL", "su_dif": 0, "subunit": "Iceland", "su_a3": "ISL", "brk_diff": 0, "name": "Iceland", "name_long": "Iceland", "brk_a3": "ISL", "brk_name": "Iceland", "abbrev": "Iceland", "postal": "IS", "formal_en": "Republic of Iceland", "name_sort": "Iceland", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 306694, "gdp_md_est": 12710, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IS", "iso_a3": "ISL", "iso_n3": "352", "un_a3": "352", "wb_a2": "IS", "wb_a3": "ISL", "woe_id": -99, "adm0_a3_is": "ISL", "adm0_a3_us": "ISL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.171875, 66.528580 ], [ -15.853271, 66.513260 ], [ -14.512939, 66.456275 ], [ -14.743652, 65.809530 ], [ -13.612061, 65.127638 ], [ -14.913940, 64.366061 ], [ -17.797852, 63.680377 ], [ -18.660278, 63.497122 ], [ -22.500000, 63.932545 ], [ -22.763672, 63.961496 ], [ -22.500000, 64.079404 ], [ -21.780396, 64.404058 ], [ -22.500000, 64.567319 ], [ -22.939453, 64.666219 ], [ -22.939453, 65.002582 ], [ -22.500000, 65.051285 ], [ -22.186890, 65.086018 ], [ -22.230835, 65.380571 ], [ -22.500000, 65.410303 ], [ -22.939453, 65.458261 ], [ -22.939453, 66.333095 ], [ -22.500000, 66.374956 ], [ -22.137451, 66.412352 ], [ -20.577393, 65.732884 ], [ -19.061279, 66.277908 ], [ -17.803345, 65.995681 ], [ -16.210327, 66.513260 ], [ -16.171875, 66.528580 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ -3.010254, 58.636935 ], [ -4.075928, 57.554155 ], [ -3.059692, 57.692406 ], [ -1.961060, 57.686533 ], [ -2.224731, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.988525, 55.776573 ], [ -1.796265, 55.528631 ], [ -4.746094, 55.528631 ], [ -5.042725, 55.776573 ], [ -5.048218, 55.785840 ], [ -5.059204, 55.776573 ], [ -5.344849, 55.528631 ], [ -5.603027, 55.528631 ], [ -5.619507, 55.776573 ], [ -5.646973, 56.276911 ], [ -6.152344, 56.785836 ], [ -5.789795, 57.821355 ], [ -5.015259, 58.631217 ], [ -4.213257, 58.551061 ], [ -3.010254, 58.636935 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.939453, 73.308936 ], [ -22.939453, 74.140084 ], [ -21.357422, 74.140084 ], [ -21.011353, 74.019543 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.175903, 73.310514 ], [ -22.500000, 73.308936 ], [ -22.939453, 73.308936 ] ] ], [ [ [ -22.939453, 70.153423 ], [ -22.500000, 70.136632 ], [ -22.351685, 70.131032 ], [ -22.500000, 70.082434 ], [ -22.939453, 69.941607 ], [ -22.939453, 70.153423 ] ] ], [ [ [ -22.939453, 71.847674 ], [ -22.500000, 71.642914 ], [ -22.137451, 71.469124 ], [ -21.758423, 70.665426 ], [ -22.500000, 70.583418 ], [ -22.939453, 70.535883 ], [ -22.939453, 71.847674 ] ] ], [ [ [ -22.939453, 72.971189 ], [ -22.500000, 72.733112 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -22.500000, 72.227132 ], [ -22.939453, 72.319122 ], [ -22.939453, 72.971189 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iceland", "sov_a3": "ISL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iceland", "adm0_a3": "ISL", "geou_dif": 0, "geounit": "Iceland", "gu_a3": "ISL", "su_dif": 0, "subunit": "Iceland", "su_a3": "ISL", "brk_diff": 0, "name": "Iceland", "name_long": "Iceland", "brk_a3": "ISL", "brk_name": "Iceland", "abbrev": "Iceland", "postal": "IS", "formal_en": "Republic of Iceland", "name_sort": "Iceland", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 306694, "gdp_md_est": 12710, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IS", "iso_a3": "ISL", "iso_n3": "352", "un_a3": "352", "wb_a2": "IS", "wb_a3": "ISL", "woe_id": -99, "adm0_a3_is": "ISL", "adm0_a3_us": "ISL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.137451, 66.412352 ], [ -21.967163, 66.337505 ], [ -22.884521, 66.337505 ], [ -22.137451, 66.412352 ] ] ], [ [ [ -15.853271, 66.513260 ], [ -14.512939, 66.456275 ], [ -14.551392, 66.337505 ], [ -16.754150, 66.337505 ], [ -16.210327, 66.513260 ], [ -16.171875, 66.528580 ], [ -15.853271, 66.513260 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -19.088745, 79.253586 ], [ -19.193115, 79.171335 ], [ -19.709473, 78.751731 ], [ -19.676514, 77.638894 ], [ -18.473511, 76.986335 ], [ -20.039062, 76.945452 ], [ -21.681519, 76.629067 ], [ -19.835815, 76.098157 ], [ -19.599609, 75.248861 ], [ -20.670776, 75.156266 ], [ -19.374390, 74.296950 ], [ -21.599121, 74.223935 ], [ -21.011353, 74.019543 ], [ -20.665283, 73.898111 ], [ -22.939453, 73.898111 ], [ -22.939453, 79.253586 ], [ -19.088745, 79.253586 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.939453, 81.187124 ], [ -22.500000, 81.252526 ], [ -20.626831, 81.524751 ], [ -15.770874, 81.913147 ], [ -12.771606, 81.719233 ], [ -12.211304, 81.291703 ], [ -16.287231, 80.580741 ], [ -16.853027, 80.350552 ], [ -20.050049, 80.177776 ], [ -17.731934, 80.129870 ], [ -18.901978, 79.400085 ], [ -19.193115, 79.171335 ], [ -19.297485, 79.088462 ], [ -22.939453, 79.088462 ], [ -22.939453, 81.187124 ] ] ], [ [ [ -22.939453, 82.338976 ], [ -22.939453, 82.732092 ], [ -20.890503, 82.732092 ], [ -20.846558, 82.727226 ], [ -21.093750, 82.676285 ], [ -22.500000, 82.382789 ], [ -22.692261, 82.341904 ], [ -22.939453, 82.338976 ] ] ], [ [ [ -22.939453, 82.088196 ], [ -22.906494, 82.093487 ], [ -22.500000, 81.921643 ], [ -22.077026, 81.735041 ], [ -22.500000, 81.512599 ], [ -22.939453, 81.278386 ], [ -22.939453, 82.088196 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.939453, 83.002837 ], [ -22.500000, 82.945726 ], [ -20.846558, 82.727226 ], [ -21.093750, 82.676285 ], [ -21.368408, 82.620052 ], [ -22.939453, 82.620052 ], [ -22.939453, 83.002837 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Namibia", "sov_a3": "NAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Namibia", "adm0_a3": "NAM", "geou_dif": 0, "geounit": "Namibia", "gu_a3": "NAM", "su_dif": 0, "subunit": "Namibia", "su_a3": "NAM", "brk_diff": 0, "name": "Namibia", "name_long": "Namibia", "brk_a3": "NAM", "brk_name": "Namibia", "abbrev": "Nam.", "postal": "NA", "formal_en": "Republic of Namibia", "name_sort": "Namibia", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 2108665, "gdp_md_est": 13250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "NA", "iso_a3": "NAM", "iso_n3": "516", "un_a3": "516", "wb_a2": "NA", "wb_a3": "NAM", "woe_id": -99, "adm0_a3_is": "NAM", "adm0_a3_us": "NAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.879517, -21.534847 ], [ 20.879517, -21.810508 ], [ 19.890747, -21.846204 ], [ 19.890747, -28.459033 ], [ 19.000854, -28.969701 ], [ 18.462524, -29.041763 ], [ 17.830811, -28.854296 ], [ 17.385864, -28.782104 ], [ 17.215576, -28.352734 ], [ 16.820068, -28.081674 ], [ 16.342163, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.205078, -27.088473 ], [ 14.985352, -26.115986 ], [ 14.738159, -25.388698 ], [ 14.403076, -23.850674 ], [ 14.381104, -22.654572 ], [ 14.254761, -22.111088 ], [ 14.095459, -21.943046 ], [ 13.864746, -21.698265 ], [ 13.760376, -21.534847 ], [ 20.879517, -21.534847 ] ] ] } } +, +{ "type": "Feature", "properties": { "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": "Polygon", "coordinates": [ [ [ 22.939453, -21.534847 ], [ 22.939453, -25.443275 ], [ 22.824097, -25.497827 ], [ 22.576904, -25.977799 ], [ 22.500000, -26.027170 ], [ 22.104492, -26.278640 ], [ 21.604614, -26.725987 ], [ 20.885010, -26.824071 ], [ 20.665283, -26.475490 ], [ 20.753174, -25.864167 ], [ 20.165405, -24.916331 ], [ 19.890747, -24.766785 ], [ 19.890747, -21.846204 ], [ 20.879517, -21.810508 ], [ 20.879517, -21.534847 ], [ 22.939453, -21.534847 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Africa", "sov_a3": "ZAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Africa", "adm0_a3": "ZAF", "geou_dif": 0, "geounit": "South Africa", "gu_a3": "ZAF", "su_dif": 0, "subunit": "South Africa", "su_a3": "ZAF", "brk_diff": 0, "name": "South Africa", "name_long": "South Africa", "brk_a3": "ZAF", "brk_name": "South Africa", "abbrev": "S.Af.", "postal": "ZA", "formal_en": "Republic of South Africa", "name_sort": "South Africa", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 49052489, "gdp_md_est": 491000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ZA", "iso_a3": "ZAF", "iso_n3": "710", "un_a3": "710", "wb_a2": "ZA", "wb_a3": "ZAF", "woe_id": -99, "adm0_a3_is": "ZAF", "adm0_a3_us": "ZAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.890747, -24.766785 ], [ 20.165405, -24.916331 ], [ 20.753174, -25.864167 ], [ 20.665283, -26.475490 ], [ 20.885010, -26.824071 ], [ 21.604614, -26.725987 ], [ 22.104492, -26.278640 ], [ 22.500000, -26.027170 ], [ 22.576904, -25.977799 ], [ 22.824097, -25.497827 ], [ 22.939453, -25.443275 ], [ 22.939453, -33.906896 ], [ 22.571411, -33.861293 ], [ 22.500000, -33.888658 ], [ 21.538696, -34.257216 ], [ 20.687256, -34.415973 ], [ 20.066528, -34.791250 ], [ 19.616089, -34.818313 ], [ 19.193115, -34.461277 ], [ 18.852539, -34.443159 ], [ 18.424072, -33.993473 ], [ 18.374634, -34.134542 ], [ 18.242798, -33.865854 ], [ 18.248291, -33.280028 ], [ 17.924194, -32.606989 ], [ 18.242798, -32.426340 ], [ 18.220825, -31.658057 ], [ 17.561646, -30.722949 ], [ 17.061768, -29.873992 ], [ 16.342163, -28.574874 ], [ 16.820068, -28.081674 ], [ 17.215576, -28.352734 ], [ 17.385864, -28.782104 ], [ 17.830811, -28.854296 ], [ 18.462524, -29.041763 ], [ 19.000854, -28.969701 ], [ 19.890747, -28.459033 ], [ 19.890747, -24.766785 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Gabon", "sov_a3": "GAB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gabon", "adm0_a3": "GAB", "geou_dif": 0, "geounit": "Gabon", "gu_a3": "GAB", "su_dif": 0, "subunit": "Gabon", "su_a3": "GAB", "brk_diff": 0, "name": "Gabon", "name_long": "Gabon", "brk_a3": "GAB", "brk_name": "Gabon", "abbrev": "Gabon", "postal": "GA", "formal_en": "Gabonese Republic", "name_sort": "Gabon", "mapcolor7": 6, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 1514993, "gdp_md_est": 21110, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "GA", "iso_a3": "GAB", "iso_n3": "266", "un_a3": "266", "wb_a2": "GA", "wb_a3": "GAB", "woe_id": -99, "adm0_a3_is": "GAB", "adm0_a3_us": "GAB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": 3, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.991089, 0.439449 ], [ 13.842773, 0.043945 ], [ 13.870239, 0.000000 ], [ 14.315186, -0.549308 ], [ 14.425049, -1.329226 ], [ 14.298706, -1.993616 ], [ 13.991089, -2.465669 ], [ 13.106689, -2.427252 ], [ 12.573853, -1.944207 ], [ 12.491455, -2.388834 ], [ 11.815796, -2.509573 ], [ 11.475220, -2.761991 ], [ 11.854248, -3.425692 ], [ 11.090698, -3.973861 ], [ 10.063477, -2.964984 ], [ 9.404297, -2.141835 ], [ 8.794556, -1.109550 ], [ 8.827515, -0.774513 ], [ 9.047241, -0.455928 ], [ 9.201050, 0.000000 ], [ 9.288940, 0.269164 ], [ 9.332886, 0.439449 ], [ 13.991089, 0.439449 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.808838, 0.439449 ], [ 17.825317, 0.291136 ], [ 17.687988, 0.000000 ], [ 17.660522, -0.054932 ], [ 17.638550, -0.422970 ], [ 17.523193, -0.741556 ], [ 16.864014, -1.224882 ], [ 16.402588, -1.735574 ], [ 15.968628, -2.707122 ], [ 16.001587, -3.529869 ], [ 15.748901, -3.853293 ], [ 15.166626, -4.340934 ], [ 14.578857, -4.965088 ], [ 14.205322, -4.789943 ], [ 14.144897, -4.505238 ], [ 13.595581, -4.499762 ], [ 13.255005, -4.877521 ], [ 12.991333, -4.778995 ], [ 12.617798, -4.434044 ], [ 12.315674, -4.603803 ], [ 11.914673, -5.036227 ], [ 11.090698, -3.973861 ], [ 11.854248, -3.425692 ], [ 11.475220, -2.761991 ], [ 11.815796, -2.509573 ], [ 12.491455, -2.388834 ], [ 12.573853, -1.944207 ], [ 13.106689, -2.427252 ], [ 13.991089, -2.465669 ], [ 14.298706, -1.993616 ], [ 14.425049, -1.329226 ], [ 14.315186, -0.549308 ], [ 13.870239, 0.000000 ], [ 13.842773, 0.043945 ], [ 13.991089, 0.439449 ], [ 17.808838, 0.439449 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 0.439449 ], [ 22.939453, -10.989728 ], [ 22.835083, -11.016689 ], [ 22.500000, -10.995120 ], [ 22.401123, -10.989728 ], [ 22.153931, -11.081385 ], [ 22.203369, -9.893099 ], [ 21.873779, -9.519497 ], [ 21.796875, -8.906780 ], [ 21.945190, -8.303906 ], [ 21.741943, -7.917793 ], [ 21.725464, -7.286190 ], [ 20.511475, -7.297088 ], [ 20.599365, -6.937333 ], [ 20.088501, -6.942786 ], [ 20.033569, -7.111795 ], [ 19.412842, -7.155400 ], [ 19.165649, -7.732765 ], [ 19.011841, -7.983078 ], [ 18.462524, -7.841615 ], [ 18.132935, -7.983078 ], [ 17.468262, -8.064669 ], [ 16.858521, -7.220800 ], [ 16.572876, -6.620957 ], [ 16.325684, -5.872868 ], [ 13.370361, -5.861939 ], [ 13.024292, -5.982144 ], [ 12.733154, -5.960290 ], [ 12.321167, -6.096860 ], [ 12.178345, -5.785432 ], [ 12.436523, -5.681584 ], [ 12.463989, -5.244128 ], [ 12.628784, -4.986977 ], [ 12.991333, -4.778995 ], [ 13.255005, -4.877521 ], [ 13.595581, -4.499762 ], [ 14.144897, -4.505238 ], [ 14.205322, -4.789943 ], [ 14.578857, -4.965088 ], [ 15.166626, -4.340934 ], [ 15.748901, -3.853293 ], [ 16.001587, -3.529869 ], [ 15.968628, -2.707122 ], [ 16.402588, -1.735574 ], [ 16.864014, -1.224882 ], [ 17.523193, -0.741556 ], [ 17.638550, -0.422970 ], [ 17.660522, -0.054932 ], [ 17.687988, 0.000000 ], [ 17.825317, 0.291136 ], [ 17.808838, 0.439449 ], [ 22.939453, 0.439449 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.370361, -5.861939 ], [ 16.325684, -5.872868 ], [ 16.572876, -6.620957 ], [ 16.858521, -7.220800 ], [ 17.468262, -8.064669 ], [ 18.132935, -7.983078 ], [ 18.462524, -7.841615 ], [ 19.011841, -7.983078 ], [ 19.165649, -7.732765 ], [ 19.412842, -7.155400 ], [ 20.033569, -7.111795 ], [ 20.088501, -6.942786 ], [ 20.599365, -6.937333 ], [ 20.511475, -7.297088 ], [ 21.725464, -7.286190 ], [ 21.741943, -7.917793 ], [ 21.945190, -8.303906 ], [ 21.796875, -8.906780 ], [ 21.873779, -9.519497 ], [ 22.203369, -9.893099 ], [ 22.153931, -11.081385 ], [ 22.401123, -10.989728 ], [ 22.500000, -10.995120 ], [ 22.835083, -11.016689 ], [ 22.939453, -10.989728 ], [ 22.939453, -12.902844 ], [ 22.500000, -12.897489 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.077486 ], [ 22.500000, -16.820316 ], [ 22.560425, -16.893916 ], [ 22.939453, -17.256236 ], [ 22.939453, -17.581194 ], [ 22.500000, -17.680662 ], [ 21.373901, -17.926476 ], [ 18.951416, -17.785305 ], [ 18.259277, -17.308688 ], [ 14.205322, -17.350638 ], [ 14.057007, -17.418787 ], [ 13.458252, -16.967487 ], [ 12.810059, -16.941215 ], [ 12.211304, -17.109293 ], [ 11.733398, -17.298199 ], [ 11.640015, -16.673031 ], [ 11.777344, -15.792254 ], [ 12.123413, -14.875778 ], [ 12.172852, -14.445319 ], [ 12.496948, -13.544541 ], [ 12.733154, -13.132979 ], [ 13.309937, -12.479487 ], [ 13.628540, -12.033948 ], [ 13.738403, -11.296934 ], [ 13.683472, -10.730778 ], [ 13.386841, -10.368958 ], [ 13.117676, -9.763198 ], [ 12.870483, -9.161756 ], [ 12.925415, -8.955619 ], [ 13.233032, -8.559294 ], [ 12.727661, -6.926427 ], [ 12.222290, -6.293459 ], [ 12.321167, -6.096860 ], [ 12.733154, -5.960290 ], [ 13.024292, -5.982144 ], [ 13.370361, -5.861939 ] ] ], [ [ [ 12.617798, -4.434044 ], [ 12.991333, -4.778995 ], [ 12.628784, -4.986977 ], [ 12.463989, -5.244128 ], [ 12.436523, -5.681584 ], [ 12.178345, -5.785432 ], [ 11.914673, -5.036227 ], [ 12.315674, -4.603803 ], [ 12.617798, -4.434044 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Namibia", "sov_a3": "NAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Namibia", "adm0_a3": "NAM", "geou_dif": 0, "geounit": "Namibia", "gu_a3": "NAM", "su_dif": 0, "subunit": "Namibia", "su_a3": "NAM", "brk_diff": 0, "name": "Namibia", "name_long": "Namibia", "brk_a3": "NAM", "brk_name": "Namibia", "abbrev": "Nam.", "postal": "NA", "formal_en": "Republic of Namibia", "name_sort": "Namibia", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 2108665, "gdp_md_est": 13250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "NA", "iso_a3": "NAM", "iso_n3": "516", "un_a3": "516", "wb_a2": "NA", "wb_a3": "NAM", "woe_id": -99, "adm0_a3_is": "NAM", "adm0_a3_us": "NAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.810059, -16.941215 ], [ 13.458252, -16.967487 ], [ 14.057007, -17.418787 ], [ 14.205322, -17.350638 ], [ 18.259277, -17.308688 ], [ 18.951416, -17.785305 ], [ 21.373901, -17.926476 ], [ 22.500000, -17.680662 ], [ 22.939453, -17.581194 ], [ 22.939453, -17.926476 ], [ 22.500000, -18.025751 ], [ 21.654053, -18.218916 ], [ 20.906982, -18.250220 ], [ 20.879517, -21.810508 ], [ 19.890747, -21.846204 ], [ 19.890747, -22.350076 ], [ 14.309692, -22.350076 ], [ 14.254761, -22.111088 ], [ 14.095459, -21.943046 ], [ 13.864746, -21.698265 ], [ 13.348389, -20.869078 ], [ 12.826538, -19.668453 ], [ 12.606812, -19.041349 ], [ 11.793823, -18.067535 ], [ 11.733398, -17.298199 ], [ 12.211304, -17.109293 ], [ 12.810059, -16.941215 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, -12.897489 ], [ 22.939453, -12.902844 ], [ 22.939453, -17.256236 ], [ 22.560425, -16.893916 ], [ 22.500000, -16.820316 ], [ 21.884766, -16.077486 ], [ 21.928711, -12.897489 ], [ 22.500000, -12.897489 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 22.939453, -17.926476 ], [ 22.939453, -22.350076 ], [ 19.890747, -22.350076 ], [ 19.890747, -21.846204 ], [ 20.879517, -21.810508 ], [ 20.906982, -18.250220 ], [ 21.654053, -18.218916 ], [ 22.500000, -18.025751 ], [ 22.939453, -17.926476 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 22.080550 ], [ 0.000000, 21.795208 ], [ 1.818237, 20.612220 ], [ 2.059937, 20.143628 ], [ 2.680664, 19.859727 ], [ 3.142090, 19.694314 ], [ 3.153076, 19.062118 ], [ 4.262695, 19.155547 ], [ 4.268188, 16.857120 ], [ 3.718872, 16.188300 ], [ 3.636475, 15.570128 ], [ 2.746582, 15.411319 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.971320 ], [ 0.373535, 14.934170 ], [ 0.000000, 14.928862 ], [ -0.269165, 14.928862 ], [ -0.439453, 15.061515 ], [ -0.439453, 22.080550 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 15.061515 ], [ -0.269165, 14.928862 ], [ 0.000000, 14.928862 ], [ 0.373535, 14.934170 ], [ 0.291138, 14.445319 ], [ 0.428467, 13.992706 ], [ 0.988770, 13.336175 ], [ 1.021729, 12.854649 ], [ 2.175293, 12.629618 ], [ 2.153320, 11.942601 ], [ 1.933594, 11.641476 ], [ 1.444702, 11.549998 ], [ 1.241455, 11.113727 ], [ 0.895386, 11.000512 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.102947 ], [ -0.439453, 15.061515 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.102947 ], [ 0.000000, 11.027472 ], [ 0.021973, 11.022080 ], [ 0.000000, 10.919618 ], [ -0.054932, 10.709189 ], [ 0.000000, 10.649811 ], [ 0.362549, 10.196000 ], [ 0.362549, 9.465317 ], [ 0.455933, 8.678779 ], [ 0.708618, 8.314777 ], [ 0.488892, 7.416942 ], [ 0.565796, 6.915521 ], [ 0.834961, 6.282539 ], [ 1.054688, 5.932972 ], [ 0.000000, 5.533978 ], [ -0.439453, 5.369929 ], [ -0.439453, 11.102947 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.975586, 22.350076 ], [ 9.244995, 21.943046 ], [ 8.569336, 21.570611 ], [ 5.674438, 19.606369 ], [ 4.262695, 19.155547 ], [ 3.153076, 19.062118 ], [ 3.142090, 19.694314 ], [ 2.680664, 19.859727 ], [ 2.059937, 20.143628 ], [ 1.818237, 20.612220 ], [ 0.000000, 21.795208 ], [ -0.439453, 22.080550 ], [ -0.439453, 22.350076 ], [ 9.975586, 22.350076 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 22.350076 ], [ 22.939453, 20.014645 ], [ 22.500000, 20.226120 ], [ 19.846802, 21.499075 ], [ 18.918457, 21.943046 ], [ 18.072510, 22.350076 ], [ 22.939453, 22.350076 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.930420, 22.350076 ], [ 14.996338, 21.943046 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.048618 ], [ 15.485229, 20.730428 ], [ 15.902710, 20.390974 ], [ 15.682983, 19.957860 ], [ 15.298462, 17.931702 ], [ 15.243530, 16.630929 ], [ 13.969116, 15.686510 ], [ 13.535156, 14.370834 ], [ 13.952637, 13.998037 ], [ 13.952637, 13.357554 ], [ 14.595337, 13.330830 ], [ 14.490967, 12.860004 ], [ 14.210815, 12.806445 ], [ 14.177856, 12.484850 ], [ 13.991089, 12.463396 ], [ 13.315430, 13.560562 ], [ 13.079224, 13.597939 ], [ 12.299194, 13.042021 ], [ 11.524658, 13.330830 ], [ 10.986328, 13.389620 ], [ 10.700684, 13.250640 ], [ 10.112915, 13.277373 ], [ 9.519653, 12.854649 ], [ 9.014282, 12.827870 ], [ 7.800293, 13.346865 ], [ 7.327881, 13.100880 ], [ 6.817017, 13.116930 ], [ 6.443481, 13.496473 ], [ 5.438232, 13.870080 ], [ 4.367065, 13.752725 ], [ 4.103394, 13.533860 ], [ 3.966064, 12.956383 ], [ 3.680420, 12.554564 ], [ 3.609009, 11.662996 ], [ 2.845459, 12.238023 ], [ 2.488403, 12.238023 ], [ 2.153320, 11.942601 ], [ 2.175293, 12.629618 ], [ 1.021729, 12.854649 ], [ 0.988770, 13.336175 ], [ 0.428467, 13.992706 ], [ 0.291138, 14.445319 ], [ 0.373535, 14.934170 ], [ 1.010742, 14.971320 ], [ 1.384277, 15.326572 ], [ 2.746582, 15.411319 ], [ 3.636475, 15.570128 ], [ 3.718872, 16.188300 ], [ 4.268188, 16.857120 ], [ 4.262695, 19.155547 ], [ 5.674438, 19.606369 ], [ 8.569336, 21.570611 ], [ 9.244995, 21.943046 ], [ 9.975586, 22.350076 ], [ 14.930420, 22.350076 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Benin", "sov_a3": "BEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Benin", "adm0_a3": "BEN", "geou_dif": 0, "geounit": "Benin", "gu_a3": "BEN", "su_dif": 0, "subunit": "Benin", "su_a3": "BEN", "brk_diff": 0, "name": "Benin", "name_long": "Benin", "brk_a3": "BEN", "brk_name": "Benin", "abbrev": "Benin", "postal": "BJ", "formal_en": "Republic of Benin", "name_sort": "Benin", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 8791832, "gdp_md_est": 12830, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BJ", "iso_a3": "BEN", "iso_n3": "204", "un_a3": "204", "wb_a2": "BJ", "wb_a3": "BEN", "woe_id": -99, "adm0_a3_is": "BEN", "adm0_a3_us": "BEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.845459, 12.238023 ], [ 3.609009, 11.662996 ], [ 3.570557, 11.329253 ], [ 3.795776, 10.736175 ], [ 3.598022, 10.336536 ], [ 3.702393, 10.066220 ], [ 3.218994, 9.449062 ], [ 2.911377, 9.140063 ], [ 2.719116, 8.510403 ], [ 2.746582, 7.874265 ], [ 2.691650, 6.260697 ], [ 1.862183, 6.146016 ], [ 1.614990, 6.833716 ], [ 1.664429, 9.129216 ], [ 1.461182, 9.335252 ], [ 1.422729, 9.828154 ], [ 0.769043, 10.471607 ], [ 0.895386, 11.000512 ], [ 1.241455, 11.113727 ], [ 1.444702, 11.549998 ], [ 1.933594, 11.641476 ], [ 2.153320, 11.942601 ], [ 2.488403, 12.238023 ], [ 2.845459, 12.238023 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.438232, 13.870080 ], [ 6.443481, 13.496473 ], [ 6.817017, 13.116930 ], [ 7.327881, 13.100880 ], [ 7.800293, 13.346865 ], [ 9.014282, 12.827870 ], [ 9.519653, 12.854649 ], [ 10.112915, 13.277373 ], [ 10.700684, 13.250640 ], [ 10.986328, 13.389620 ], [ 11.524658, 13.330830 ], [ 12.299194, 13.042021 ], [ 13.079224, 13.597939 ], [ 13.315430, 13.560562 ], [ 13.991089, 12.463396 ], [ 14.177856, 12.484850 ], [ 14.573364, 12.087667 ], [ 14.463501, 11.904979 ], [ 14.414062, 11.576907 ], [ 13.568115, 10.800933 ], [ 13.304443, 10.163560 ], [ 13.167114, 9.644077 ], [ 12.952881, 9.421968 ], [ 12.749634, 8.722218 ], [ 12.216797, 8.309341 ], [ 12.062988, 7.803521 ], [ 11.837769, 7.400600 ], [ 11.744385, 6.986407 ], [ 11.057739, 6.648239 ], [ 10.491943, 7.057282 ], [ 10.112915, 7.040927 ], [ 9.519653, 6.457234 ], [ 9.228516, 6.446318 ], [ 8.756104, 5.484768 ], [ 8.497925, 4.773521 ], [ 7.459717, 4.412137 ], [ 7.080688, 4.466904 ], [ 6.696167, 4.242334 ], [ 5.894165, 4.264246 ], [ 5.361328, 4.888467 ], [ 5.031738, 5.615986 ], [ 4.323120, 6.271618 ], [ 3.570557, 6.260697 ], [ 2.691650, 6.260697 ], [ 2.746582, 7.874265 ], [ 2.719116, 8.510403 ], [ 2.911377, 9.140063 ], [ 3.218994, 9.449062 ], [ 3.702393, 10.066220 ], [ 3.598022, 10.336536 ], [ 3.795776, 10.736175 ], [ 3.570557, 11.329253 ], [ 3.609009, 11.662996 ], [ 3.680420, 12.554564 ], [ 3.966064, 12.956383 ], [ 4.103394, 13.533860 ], [ 4.367065, 13.752725 ], [ 5.438232, 13.870080 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.072510, 22.350076 ], [ 18.918457, 21.943046 ], [ 22.500000, 20.226120 ], [ 22.939453, 20.014645 ], [ 22.939453, 15.543668 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.109940 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.083301 ], [ 22.181396, 13.790071 ], [ 22.291260, 13.373588 ], [ 22.033081, 12.956383 ], [ 21.934204, 12.592094 ], [ 22.285767, 12.651058 ], [ 22.494507, 12.264864 ], [ 22.500000, 12.136005 ], [ 22.505493, 11.684514 ], [ 22.873535, 11.388494 ], [ 22.862549, 11.146066 ], [ 22.500000, 11.049038 ], [ 22.230835, 10.973550 ], [ 21.719971, 10.568822 ], [ 21.000366, 9.476154 ], [ 20.055542, 9.015302 ], [ 19.088745, 9.074976 ], [ 18.808594, 8.988175 ], [ 18.907471, 8.635334 ], [ 18.385620, 8.282163 ], [ 17.962646, 7.896030 ], [ 16.704712, 7.509535 ], [ 16.452026, 7.738208 ], [ 16.287231, 7.754537 ], [ 16.105957, 7.498643 ], [ 15.276489, 7.422389 ], [ 15.435791, 7.694661 ], [ 15.117188, 8.385431 ], [ 14.979858, 8.798225 ], [ 14.540405, 8.966471 ], [ 13.952637, 9.552000 ], [ 14.166870, 10.022948 ], [ 14.622803, 9.925566 ], [ 14.908447, 9.995901 ], [ 15.463257, 9.985081 ], [ 14.919434, 10.892648 ], [ 14.957886, 11.560762 ], [ 14.891968, 12.221918 ], [ 14.490967, 12.860004 ], [ 14.595337, 13.330830 ], [ 13.952637, 13.357554 ], [ 13.952637, 13.998037 ], [ 13.535156, 14.370834 ], [ 13.969116, 15.686510 ], [ 15.243530, 16.630929 ], [ 15.298462, 17.931702 ], [ 15.682983, 19.957860 ], [ 15.902710, 20.390974 ], [ 15.485229, 20.730428 ], [ 15.468750, 21.048618 ], [ 15.095215, 21.309846 ], [ 14.996338, 21.943046 ], [ 14.930420, 22.350076 ], [ 18.072510, 22.350076 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.490967, 12.860004 ], [ 14.891968, 12.221918 ], [ 14.957886, 11.560762 ], [ 14.919434, 10.892648 ], [ 15.463257, 9.985081 ], [ 14.908447, 9.995901 ], [ 14.622803, 9.925566 ], [ 14.166870, 10.022948 ], [ 13.952637, 9.552000 ], [ 14.540405, 8.966471 ], [ 14.979858, 8.798225 ], [ 15.117188, 8.385431 ], [ 15.435791, 7.694661 ], [ 15.276489, 7.422389 ], [ 14.771118, 6.413566 ], [ 14.534912, 6.227934 ], [ 14.458008, 5.451959 ], [ 14.556885, 5.030755 ], [ 14.474487, 4.735201 ], [ 14.946899, 4.214943 ], [ 15.034790, 3.853293 ], [ 15.402832, 3.337954 ], [ 15.858765, 3.014356 ], [ 15.902710, 2.558963 ], [ 16.012573, 2.268084 ], [ 15.935669, 1.730084 ], [ 15.144653, 1.966167 ], [ 14.337158, 2.229662 ], [ 13.073730, 2.268084 ], [ 12.947388, 2.322972 ], [ 12.354126, 2.196727 ], [ 11.749878, 2.328460 ], [ 11.271973, 2.262595 ], [ 9.645996, 2.284551 ], [ 9.794312, 3.074695 ], [ 9.404297, 3.738190 ], [ 8.942871, 3.908099 ], [ 8.739624, 4.357366 ], [ 8.486938, 4.499762 ], [ 8.497925, 4.773521 ], [ 8.756104, 5.484768 ], [ 9.228516, 6.446318 ], [ 9.519653, 6.457234 ], [ 10.112915, 7.040927 ], [ 10.491943, 7.057282 ], [ 11.057739, 6.648239 ], [ 11.744385, 6.986407 ], [ 11.837769, 7.400600 ], [ 12.062988, 7.803521 ], [ 12.216797, 8.309341 ], [ 12.749634, 8.722218 ], [ 12.952881, 9.421968 ], [ 13.167114, 9.644077 ], [ 13.304443, 10.163560 ], [ 13.568115, 10.800933 ], [ 14.414062, 11.576907 ], [ 14.463501, 11.904979 ], [ 14.573364, 12.087667 ], [ 14.177856, 12.484850 ], [ 14.210815, 12.806445 ], [ 14.490967, 12.860004 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.862549, 11.146066 ], [ 22.939453, 10.860281 ], [ 22.939453, 4.691404 ], [ 22.840576, 4.713303 ], [ 22.703247, 4.636655 ], [ 22.500000, 4.225900 ], [ 22.401123, 4.034138 ], [ 21.654053, 4.225900 ], [ 20.923462, 4.324501 ], [ 20.286255, 4.696879 ], [ 19.467773, 5.036227 ], [ 18.929443, 4.713303 ], [ 18.539429, 4.203986 ], [ 18.451538, 3.507938 ], [ 17.808838, 3.562765 ], [ 17.127686, 3.732708 ], [ 16.534424, 3.200848 ], [ 16.012573, 2.268084 ], [ 15.902710, 2.558963 ], [ 15.858765, 3.014356 ], [ 15.402832, 3.337954 ], [ 15.034790, 3.853293 ], [ 14.946899, 4.214943 ], [ 14.474487, 4.735201 ], [ 14.556885, 5.030755 ], [ 14.458008, 5.451959 ], [ 14.534912, 6.227934 ], [ 14.771118, 6.413566 ], [ 15.276489, 7.422389 ], [ 16.105957, 7.498643 ], [ 16.287231, 7.754537 ], [ 16.452026, 7.738208 ], [ 16.704712, 7.509535 ], [ 17.962646, 7.896030 ], [ 18.385620, 8.282163 ], [ 18.907471, 8.635334 ], [ 18.808594, 8.988175 ], [ 19.088745, 9.074976 ], [ 20.055542, 9.015302 ], [ 21.000366, 9.476154 ], [ 21.719971, 10.568822 ], [ 22.230835, 10.973550 ], [ 22.500000, 11.049038 ], [ 22.862549, 11.146066 ] ] ] } } +, +{ "type": "Feature", "properties": { "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": "Polygon", "coordinates": [ [ [ 22.939453, 15.543668 ], [ 22.939453, 10.860281 ], [ 22.862549, 11.146066 ], [ 22.873535, 11.388494 ], [ 22.505493, 11.684514 ], [ 22.500000, 12.136005 ], [ 22.494507, 12.264864 ], [ 22.285767, 12.651058 ], [ 21.934204, 12.592094 ], [ 22.033081, 12.956383 ], [ 22.291260, 13.373588 ], [ 22.181396, 13.790071 ], [ 22.500000, 14.083301 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.109940 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 22.939453, 15.543668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Gabon", "sov_a3": "GAB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gabon", "adm0_a3": "GAB", "geou_dif": 0, "geounit": "Gabon", "gu_a3": "GAB", "su_dif": 0, "subunit": "Gabon", "su_a3": "GAB", "brk_diff": 0, "name": "Gabon", "name_long": "Gabon", "brk_a3": "GAB", "brk_name": "Gabon", "abbrev": "Gabon", "postal": "GA", "formal_en": "Gabonese Republic", "name_sort": "Gabon", "mapcolor7": 6, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 1514993, "gdp_md_est": 21110, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "GA", "iso_a3": "GAB", "iso_n3": "266", "un_a3": "266", "wb_a2": "GA", "wb_a3": "GAB", "woe_id": -99, "adm0_a3_is": "GAB", "adm0_a3_us": "GAB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": 3, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.749878, 2.328460 ], [ 12.354126, 2.196727 ], [ 12.947388, 2.322972 ], [ 13.073730, 2.268084 ], [ 13.002319, 1.834403 ], [ 13.282471, 1.318243 ], [ 14.024048, 1.400617 ], [ 14.271240, 1.197423 ], [ 13.842773, 0.043945 ], [ 13.870239, 0.000000 ], [ 14.221802, -0.439449 ], [ 9.052734, -0.439449 ], [ 9.201050, 0.000000 ], [ 9.288940, 0.269164 ], [ 9.492188, 1.010690 ], [ 9.827271, 1.071105 ], [ 11.282959, 1.060120 ], [ 11.271973, 2.262595 ], [ 11.749878, 2.328460 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.127686, 3.732708 ], [ 17.808838, 3.562765 ], [ 18.451538, 3.507938 ], [ 18.391113, 2.904639 ], [ 18.088989, 2.366880 ], [ 17.896729, 1.746556 ], [ 17.770386, 0.856902 ], [ 17.825317, 0.291136 ], [ 17.687988, 0.000000 ], [ 17.660522, -0.054932 ], [ 17.633057, -0.439449 ], [ 14.221802, -0.439449 ], [ 13.870239, 0.000000 ], [ 13.842773, 0.043945 ], [ 14.271240, 1.197423 ], [ 14.024048, 1.400617 ], [ 13.282471, 1.318243 ], [ 13.002319, 1.834403 ], [ 13.073730, 2.268084 ], [ 14.337158, 2.229662 ], [ 15.144653, 1.966167 ], [ 15.935669, 1.730084 ], [ 16.012573, 2.268084 ], [ 16.534424, 3.200848 ], [ 17.127686, 3.732708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.467773, 5.036227 ], [ 20.286255, 4.696879 ], [ 20.923462, 4.324501 ], [ 21.654053, 4.225900 ], [ 22.401123, 4.034138 ], [ 22.500000, 4.225900 ], [ 22.703247, 4.636655 ], [ 22.840576, 4.713303 ], [ 22.939453, 4.691404 ], [ 22.939453, -0.439449 ], [ 17.633057, -0.439449 ], [ 17.660522, -0.054932 ], [ 17.687988, 0.000000 ], [ 17.825317, 0.291136 ], [ 17.770386, 0.856902 ], [ 17.896729, 1.746556 ], [ 18.088989, 2.366880 ], [ 18.391113, 2.904639 ], [ 18.451538, 3.507938 ], [ 18.539429, 4.203986 ], [ 18.929443, 4.713303 ], [ 19.467773, 5.036227 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.208252, 41.310824 ], [ 2.087402, 41.228249 ], [ 0.807495, 41.017211 ], [ 0.796509, 40.979898 ], [ 0.719604, 40.680638 ], [ 0.104370, 40.124291 ], [ 0.000000, 39.901309 ], [ -0.280151, 39.313050 ], [ 0.000000, 38.903858 ], [ 0.109863, 38.741231 ], [ 0.000000, 38.655488 ], [ -0.439453, 38.315801 ], [ -0.439453, 41.310824 ], [ 2.208252, 41.310824 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 22.080550 ], [ 0.395508, 21.534847 ], [ -0.439453, 21.534847 ], [ -0.439453, 22.080550 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.518188, 38.233865 ], [ 15.155640, 37.444335 ], [ 15.309448, 37.138425 ], [ 15.095215, 36.624345 ], [ 14.331665, 36.998166 ], [ 13.826294, 37.107765 ], [ 12.425537, 37.614231 ], [ 12.568359, 38.130236 ], [ 13.738403, 38.035112 ], [ 15.518188, 38.233865 ] ] ], [ [ [ 16.457520, 41.310824 ], [ 17.265015, 40.979898 ], [ 17.517700, 40.880295 ], [ 18.374634, 40.359103 ], [ 18.479004, 40.170479 ], [ 18.292236, 39.812756 ], [ 17.737427, 40.279526 ], [ 16.869507, 40.442767 ], [ 16.446533, 39.795876 ], [ 17.166138, 39.427707 ], [ 17.050781, 38.903858 ], [ 16.633301, 38.843986 ], [ 16.100464, 37.987504 ], [ 15.682983, 37.909534 ], [ 15.682983, 38.216604 ], [ 15.891724, 38.754083 ], [ 16.105957, 38.967951 ], [ 15.715942, 39.546412 ], [ 15.408325, 40.048643 ], [ 14.996338, 40.174676 ], [ 14.699707, 40.605612 ], [ 14.057007, 40.788860 ], [ 13.848267, 40.979898 ], [ 13.623047, 41.191056 ], [ 12.886963, 41.257162 ], [ 12.788086, 41.310824 ], [ 16.457520, 41.310824 ] ] ], [ [ [ 9.206543, 41.211722 ], [ 9.404297, 40.979898 ], [ 9.805298, 40.501269 ], [ 9.667969, 39.181175 ], [ 9.212036, 39.240763 ], [ 8.805542, 38.908133 ], [ 8.426514, 39.172659 ], [ 8.388062, 40.380028 ], [ 8.157349, 40.950863 ], [ 8.706665, 40.901058 ], [ 8.838501, 40.979898 ], [ 9.206543, 41.211722 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Tunisia", "sov_a3": "TUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tunisia", "adm0_a3": "TUN", "geou_dif": 0, "geounit": "Tunisia", "gu_a3": "TUN", "su_dif": 0, "subunit": "Tunisia", "su_a3": "TUN", "brk_diff": 0, "name": "Tunisia", "name_long": "Tunisia", "brk_a3": "TUN", "brk_name": "Tunisia", "abbrev": "Tun.", "postal": "TN", "formal_en": "Republic of Tunisia", "name_sort": "Tunisia", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 10486339, "gdp_md_est": 81710, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TN", "iso_a3": "TUN", "iso_n3": "788", "un_a3": "788", "wb_a2": "TN", "wb_a3": "TUN", "woe_id": -99, "adm0_a3_is": "TUN", "adm0_a3_us": "TUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.508667, 37.352693 ], [ 10.206299, 37.230328 ], [ 10.178833, 36.725677 ], [ 11.024780, 37.094622 ], [ 11.096191, 36.901587 ], [ 10.596313, 36.412442 ], [ 10.590820, 35.951330 ], [ 10.936890, 35.701917 ], [ 10.805054, 34.836350 ], [ 10.145874, 34.334364 ], [ 10.338135, 33.788279 ], [ 10.854492, 33.770015 ], [ 11.107178, 33.293804 ], [ 11.486206, 33.137551 ], [ 11.431274, 32.370683 ], [ 10.942383, 32.082575 ], [ 10.634766, 31.765537 ], [ 9.948120, 31.377089 ], [ 10.052490, 30.963479 ], [ 9.964600, 30.543339 ], [ 9.481201, 30.311246 ], [ 9.052734, 32.105843 ], [ 8.437500, 32.509762 ], [ 8.426514, 32.750323 ], [ 7.608032, 33.344296 ], [ 7.520142, 34.098159 ], [ 8.140869, 34.655804 ], [ 8.371582, 35.483038 ], [ 8.217773, 36.434542 ], [ 8.415527, 36.949892 ], [ 9.508667, 37.352693 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.327881, 37.120906 ], [ 7.734375, 36.888408 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.434542 ], [ 8.371582, 35.483038 ], [ 8.140869, 34.655804 ], [ 7.520142, 34.098159 ], [ 7.608032, 33.344296 ], [ 8.426514, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.105843 ], [ 9.481201, 30.311246 ], [ 9.805298, 29.425245 ], [ 9.854736, 28.960089 ], [ 9.678955, 28.144660 ], [ 9.755859, 27.688392 ], [ 9.624023, 27.142257 ], [ 9.711914, 26.514820 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.368846 ], [ 9.948120, 24.941238 ], [ 10.299683, 24.382124 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.101633 ], [ 11.997070, 23.473324 ], [ 9.244995, 21.943046 ], [ 8.525391, 21.534847 ], [ 0.395508, 21.534847 ], [ -0.439453, 22.080550 ], [ -0.439453, 35.840082 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.973561 ], [ 0.499878, 36.301845 ], [ 1.466675, 36.606709 ], [ 3.158569, 36.787291 ], [ 4.812012, 36.866438 ], [ 5.317383, 36.716871 ], [ 6.256714, 37.112146 ], [ 7.327881, 37.120906 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.486206, 33.137551 ], [ 12.661743, 32.796510 ], [ 13.079224, 32.879587 ], [ 13.914185, 32.713355 ], [ 15.243530, 32.268555 ], [ 15.710449, 31.377089 ], [ 16.611328, 31.184609 ], [ 18.017578, 30.765439 ], [ 19.083252, 30.268556 ], [ 19.572144, 30.529145 ], [ 20.050049, 30.987028 ], [ 19.819336, 31.756196 ], [ 20.132446, 32.240683 ], [ 20.852051, 32.708733 ], [ 21.538696, 32.847289 ], [ 22.500000, 32.699489 ], [ 22.895508, 32.639375 ], [ 22.939453, 32.583849 ], [ 22.939453, 21.534847 ], [ 19.764404, 21.534847 ], [ 18.918457, 21.943046 ], [ 15.858765, 23.412847 ], [ 14.848022, 22.867318 ], [ 14.139404, 22.492257 ], [ 13.579102, 23.044353 ], [ 11.997070, 23.473324 ], [ 11.557617, 24.101633 ], [ 10.766602, 24.567108 ], [ 10.299683, 24.382124 ], [ 9.948120, 24.941238 ], [ 9.909668, 25.368846 ], [ 9.316406, 26.096255 ], [ 9.711914, 26.514820 ], [ 9.624023, 27.142257 ], [ 9.755859, 27.688392 ], [ 9.678955, 28.144660 ], [ 9.854736, 28.960089 ], [ 9.805298, 29.425245 ], [ 9.481201, 30.311246 ], [ 9.964600, 30.543339 ], [ 10.052490, 30.963479 ], [ 9.948120, 31.377089 ], [ 10.634766, 31.765537 ], [ 10.942383, 32.082575 ], [ 11.431274, 32.370683 ], [ 11.486206, 33.137551 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.997070, 23.473324 ], [ 13.579102, 23.044353 ], [ 14.139404, 22.492257 ], [ 14.848022, 22.867318 ], [ 14.996338, 21.943046 ], [ 15.056763, 21.534847 ], [ 8.525391, 21.534847 ], [ 9.244995, 21.943046 ], [ 11.997070, 23.473324 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.858765, 23.412847 ], [ 18.918457, 21.943046 ], [ 19.764404, 21.534847 ], [ 15.056763, 21.534847 ], [ 14.996338, 21.943046 ], [ 14.848022, 22.867318 ], [ 15.858765, 23.412847 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "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": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 41.310824 ], [ 22.939453, 40.354917 ], [ 22.813110, 40.476203 ], [ 22.620850, 40.258569 ], [ 22.846069, 39.660685 ], [ 22.939453, 39.576056 ], [ 22.939453, 37.335224 ], [ 22.774658, 37.309014 ], [ 22.939453, 36.923548 ], [ 22.939453, 36.421282 ], [ 22.500000, 36.412442 ], [ 22.489014, 36.412442 ], [ 21.665039, 36.848857 ], [ 21.291504, 37.649034 ], [ 21.115723, 38.311491 ], [ 20.725708, 38.771216 ], [ 20.214844, 39.342794 ], [ 20.148926, 39.626846 ], [ 20.610352, 40.111689 ], [ 20.670776, 40.438586 ], [ 20.994873, 40.580585 ], [ 21.016846, 40.842905 ], [ 21.670532, 40.934265 ], [ 21.758423, 40.979898 ], [ 22.055054, 41.153842 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.791138, 41.310824 ], [ 22.939453, 41.310824 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "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": "Polygon", "coordinates": [ [ [ -0.433960, 54.466845 ], [ 0.000000, 53.673934 ], [ 0.181274, 53.327592 ], [ 0.466919, 52.932086 ], [ 1.680908, 52.739618 ], [ 1.554565, 52.103131 ], [ 1.049194, 51.808615 ], [ 1.444702, 51.292841 ], [ 0.549316, 50.767734 ], [ 0.000000, 50.771208 ], [ -0.439453, 50.774682 ], [ -0.439453, 54.466845 ], [ -0.433960, 54.466845 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.387817, 43.012681 ], [ 9.558105, 42.155259 ], [ 9.228516, 41.380930 ], [ 8.772583, 41.586688 ], [ 8.541870, 42.256984 ], [ 8.745117, 42.629917 ], [ 9.387817, 43.012681 ] ] ], [ [ [ 2.510376, 51.151786 ], [ 2.653198, 50.798991 ], [ 3.120117, 50.781629 ], [ 3.587036, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.795532, 49.986552 ], [ 5.668945, 49.532339 ], [ 5.894165, 49.443129 ], [ 6.185303, 49.464554 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.019859 ], [ 7.591553, 48.334343 ], [ 7.465210, 47.620975 ], [ 7.190552, 47.450380 ], [ 6.734619, 47.543164 ], [ 6.767578, 47.290408 ], [ 6.036987, 46.728566 ], [ 6.020508, 46.274834 ], [ 6.498413, 46.430285 ], [ 6.838989, 45.993145 ], [ 6.800537, 45.710015 ], [ 7.091675, 45.336702 ], [ 6.745605, 45.030833 ], [ 7.003784, 44.257003 ], [ 7.547607, 44.130971 ], [ 7.432251, 43.695680 ], [ 6.525879, 43.129052 ], [ 4.553833, 43.401056 ], [ 3.098145, 43.076913 ], [ 2.982788, 42.476149 ], [ 1.823730, 42.346365 ], [ 0.697632, 42.799431 ], [ 0.335083, 42.581400 ], [ 0.000000, 42.666281 ], [ -0.439453, 42.775243 ], [ -0.439453, 49.535904 ], [ 0.000000, 49.681847 ], [ 1.334839, 50.127622 ], [ 1.636963, 50.948045 ], [ 2.510376, 51.151786 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.697632, 42.799431 ], [ 1.823730, 42.346365 ], [ 2.982788, 42.476149 ], [ 3.037720, 41.894100 ], [ 2.087402, 41.228249 ], [ 0.807495, 41.017211 ], [ 0.796509, 40.979898 ], [ 0.719604, 40.680638 ], [ 0.686646, 40.647304 ], [ -0.439453, 40.647304 ], [ -0.439453, 42.775243 ], [ 0.000000, 42.666281 ], [ 0.335083, 42.581400 ], [ 0.697632, 42.799431 ] ] ] } } +, +{ "type": "Feature", "properties": { "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": "Polygon", "coordinates": [ [ [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.500000, 54.949231 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 22.500000, 54.326135 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.425537, 56.022948 ], [ 12.579346, 55.776573 ], [ 12.689209, 55.612487 ], [ 12.084961, 54.800685 ], [ 11.041260, 55.366625 ], [ 10.903931, 55.776573 ], [ 10.898438, 55.782751 ], [ 11.975098, 56.022948 ], [ 12.425537, 56.022948 ] ] ], [ [ [ 10.200806, 56.022948 ], [ 9.953613, 55.776573 ], [ 9.645996, 55.472627 ], [ 9.920654, 54.983918 ], [ 9.277954, 54.832336 ], [ 8.525391, 54.965002 ], [ 8.118896, 55.519302 ], [ 8.107910, 55.776573 ], [ 8.102417, 56.022948 ], [ 10.200806, 56.022948 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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": "Polygon", "coordinates": [ [ [ 14.534912, 56.022948 ], [ 14.359131, 55.776573 ], [ 14.095459, 55.410307 ], [ 12.941895, 55.363503 ], [ 12.799072, 55.776573 ], [ 12.716675, 56.022948 ], [ 14.534912, 56.022948 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.920654, 54.983918 ], [ 9.937134, 54.597528 ], [ 10.947876, 54.364558 ], [ 10.936890, 54.010997 ], [ 11.953125, 54.197797 ], [ 12.513428, 54.473230 ], [ 13.645020, 54.078729 ], [ 14.117432, 53.758454 ], [ 14.348145, 53.248782 ], [ 14.073486, 52.981723 ], [ 14.436035, 52.626395 ], [ 14.683228, 52.093008 ], [ 14.606323, 51.747439 ], [ 15.012817, 51.106971 ], [ 14.567871, 51.003386 ], [ 14.304199, 51.117317 ], [ 14.051514, 50.927276 ], [ 13.337402, 50.736455 ], [ 12.963867, 50.485474 ], [ 12.238770, 50.268277 ], [ 12.414551, 49.972422 ], [ 12.518921, 49.550162 ], [ 13.029785, 49.307217 ], [ 13.595581, 48.879167 ], [ 13.238525, 48.418264 ], [ 12.881470, 48.290503 ], [ 13.024292, 47.639485 ], [ 12.930908, 47.468950 ], [ 12.617798, 47.672786 ], [ 12.139893, 47.706065 ], [ 11.425781, 47.524620 ], [ 10.541382, 47.569114 ], [ 10.398560, 47.305310 ], [ 9.893188, 47.580231 ], [ 9.591064, 47.528329 ], [ 8.519897, 47.831596 ], [ 8.316650, 47.617273 ], [ 7.465210, 47.620975 ], [ 7.591553, 48.334343 ], [ 8.096924, 49.019859 ], [ 6.657715, 49.203243 ], [ 6.185303, 49.464554 ], [ 6.240234, 49.905249 ], [ 6.042480, 50.131143 ], [ 6.152344, 50.805935 ], [ 5.987549, 51.852746 ], [ 6.586304, 51.852746 ], [ 6.838989, 52.231164 ], [ 7.091675, 53.146770 ], [ 6.904907, 53.484777 ], [ 7.097168, 53.696706 ], [ 7.932129, 53.748711 ], [ 8.118896, 53.530513 ], [ 8.800049, 54.023907 ], [ 8.569336, 54.396550 ], [ 8.525391, 54.965002 ], [ 9.277954, 54.832336 ], [ 9.920654, 54.983918 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Czech Republic", "sov_a3": "CZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Czech Republic", "adm0_a3": "CZE", "geou_dif": 0, "geounit": "Czech Republic", "gu_a3": "CZE", "su_dif": 0, "subunit": "Czech Republic", "su_a3": "CZE", "brk_diff": 0, "name": "Czech Rep.", "name_long": "Czech Republic", "brk_a3": "CZE", "brk_name": "Czech Rep.", "abbrev": "Cz. Rep.", "postal": "CZ", "formal_en": "Czech Republic", "name_sort": "Czech Republic", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 10211904, "gdp_md_est": 265200, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CZ", "iso_a3": "CZE", "iso_n3": "203", "un_a3": "203", "wb_a2": "CZ", "wb_a3": "CZE", "woe_id": -99, "adm0_a3_is": "CZE", "adm0_a3_us": "CZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 14, "abbrev_len": 8, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.304199, 51.117317 ], [ 14.567871, 51.003386 ], [ 15.012817, 51.106971 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.698197 ], [ 16.171875, 50.426019 ], [ 16.715698, 50.219095 ], [ 16.864014, 50.474987 ], [ 17.550659, 50.362985 ], [ 17.644043, 50.050085 ], [ 18.391113, 49.990084 ], [ 18.852539, 49.496675 ], [ 18.550415, 49.496675 ], [ 18.396606, 49.317961 ], [ 18.165894, 49.274973 ], [ 18.099976, 49.045070 ], [ 17.913208, 48.998240 ], [ 17.885742, 48.904449 ], [ 17.539673, 48.803246 ], [ 17.100220, 48.817716 ], [ 16.957397, 48.600225 ], [ 16.495972, 48.788771 ], [ 16.029053, 48.734455 ], [ 15.249023, 49.041469 ], [ 14.897461, 48.965794 ], [ 14.337158, 48.556614 ], [ 13.595581, 48.879167 ], [ 13.029785, 49.307217 ], [ 12.518921, 49.550162 ], [ 12.414551, 49.972422 ], [ 12.238770, 50.268277 ], [ 12.963867, 50.485474 ], [ 13.337402, 50.736455 ], [ 14.051514, 50.927276 ], [ 14.304199, 51.117317 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Poland", "sov_a3": "POL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Poland", "adm0_a3": "POL", "geou_dif": 0, "geounit": "Poland", "gu_a3": "POL", "su_dif": 0, "subunit": "Poland", "su_a3": "POL", "brk_diff": 0, "name": "Poland", "name_long": "Poland", "brk_a3": "POL", "brk_name": "Poland", "abbrev": "Pol.", "postal": "PL", "formal_en": "Republic of Poland", "name_sort": "Poland", "mapcolor7": 3, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 38482919, "gdp_md_est": 667900, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PL", "iso_a3": "POL", "iso_n3": "616", "un_a3": "616", "wb_a2": "PL", "wb_a3": "POL", "woe_id": -99, "adm0_a3_is": "POL", "adm0_a3_us": "POL", "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": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.622070, 54.854478 ], [ 18.616333, 54.683359 ], [ 18.693237, 54.441297 ], [ 19.660034, 54.428518 ], [ 20.890503, 54.313319 ], [ 22.500000, 54.326135 ], [ 22.730713, 54.329338 ], [ 22.939453, 54.284469 ], [ 22.939453, 49.866317 ], [ 22.516479, 49.478832 ], [ 22.774658, 49.030665 ], [ 22.554932, 49.088258 ], [ 22.500000, 49.109838 ], [ 21.604614, 49.471694 ], [ 20.885010, 49.332282 ], [ 20.412598, 49.432413 ], [ 19.824829, 49.217597 ], [ 19.319458, 49.575102 ], [ 18.907471, 49.435985 ], [ 18.391113, 49.990084 ], [ 17.644043, 50.050085 ], [ 17.550659, 50.362985 ], [ 16.864014, 50.474987 ], [ 16.715698, 50.219095 ], [ 16.171875, 50.426019 ], [ 16.237793, 50.698197 ], [ 15.490723, 50.785102 ], [ 15.012817, 51.106971 ], [ 14.606323, 51.747439 ], [ 14.683228, 52.093008 ], [ 14.436035, 52.626395 ], [ 14.073486, 52.981723 ], [ 14.348145, 53.248782 ], [ 14.117432, 53.758454 ], [ 14.798584, 54.052939 ], [ 16.358643, 54.514704 ], [ 17.622070, 54.854478 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Austria", "sov_a3": "AUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Austria", "adm0_a3": "AUT", "geou_dif": 0, "geounit": "Austria", "gu_a3": "AUT", "su_dif": 0, "subunit": "Austria", "su_a3": "AUT", "brk_diff": 0, "name": "Austria", "name_long": "Austria", "brk_a3": "AUT", "brk_name": "Austria", "abbrev": "Aust.", "postal": "A", "formal_en": "Republic of Austria", "name_sort": "Austria", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 8210281, "gdp_md_est": 329500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AT", "iso_a3": "AUT", "iso_n3": "040", "un_a3": "040", "wb_a2": "AT", "wb_a3": "AUT", "woe_id": -99, "adm0_a3_is": "AUT", "adm0_a3_us": "AUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.249023, 49.041469 ], [ 16.029053, 48.734455 ], [ 16.495972, 48.788771 ], [ 16.957397, 48.600225 ], [ 16.875000, 48.472921 ], [ 16.979370, 48.125768 ], [ 16.902466, 47.717154 ], [ 16.336670, 47.713458 ], [ 16.528931, 47.498648 ], [ 16.199341, 46.852678 ], [ 16.007080, 46.687131 ], [ 15.133667, 46.660747 ], [ 14.628296, 46.434071 ], [ 13.804321, 46.509735 ], [ 12.376099, 46.769968 ], [ 12.150879, 47.118738 ], [ 11.162109, 46.942762 ], [ 11.046753, 46.754917 ], [ 10.442505, 46.893985 ], [ 9.931641, 46.924007 ], [ 9.475708, 47.103784 ], [ 9.629517, 47.349989 ], [ 9.591064, 47.528329 ], [ 9.893188, 47.580231 ], [ 10.398560, 47.305310 ], [ 10.541382, 47.569114 ], [ 11.425781, 47.524620 ], [ 12.139893, 47.706065 ], [ 12.617798, 47.672786 ], [ 12.930908, 47.468950 ], [ 13.024292, 47.639485 ], [ 12.881470, 48.290503 ], [ 13.238525, 48.418264 ], [ 13.595581, 48.879167 ], [ 14.337158, 48.556614 ], [ 14.897461, 48.965794 ], [ 15.249023, 49.041469 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.206543, 41.211722 ], [ 9.404297, 40.979898 ], [ 9.684448, 40.647304 ], [ 8.278198, 40.647304 ], [ 8.157349, 40.950863 ], [ 8.706665, 40.901058 ], [ 8.838501, 40.979898 ], [ 9.206543, 41.211722 ] ] ], [ [ [ 12.150879, 47.118738 ], [ 12.376099, 46.769968 ], [ 13.804321, 46.509735 ], [ 13.694458, 46.019853 ], [ 13.936157, 45.594822 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.381592, 44.887012 ], [ 12.260742, 44.602202 ], [ 12.584839, 44.091531 ], [ 13.524170, 43.588349 ], [ 14.029541, 42.763146 ], [ 15.139160, 41.955405 ], [ 15.924683, 41.963575 ], [ 16.166382, 41.742627 ], [ 15.886230, 41.541478 ], [ 17.265015, 40.979898 ], [ 17.517700, 40.880295 ], [ 17.896729, 40.647304 ], [ 14.551392, 40.647304 ], [ 14.057007, 40.788860 ], [ 13.848267, 40.979898 ], [ 13.623047, 41.191056 ], [ 12.886963, 41.257162 ], [ 12.101440, 41.705729 ], [ 11.189575, 42.358544 ], [ 10.508423, 42.932296 ], [ 10.195312, 43.921637 ], [ 9.700928, 44.040219 ], [ 8.887939, 44.367060 ], [ 8.426514, 44.233393 ], [ 7.849731, 43.771094 ], [ 7.432251, 43.695680 ], [ 7.547607, 44.130971 ], [ 7.003784, 44.257003 ], [ 6.745605, 45.030833 ], [ 7.091675, 45.336702 ], [ 6.800537, 45.710015 ], [ 6.838989, 45.993145 ], [ 7.272949, 45.779017 ], [ 7.750854, 45.824971 ], [ 8.311157, 46.164614 ], [ 8.486938, 46.008409 ], [ 8.964844, 46.038923 ], [ 9.179077, 46.441642 ], [ 9.920654, 46.316584 ], [ 10.360107, 46.487047 ], [ 10.442505, 46.893985 ], [ 11.046753, 46.754917 ], [ 11.162109, 46.942762 ], [ 12.150879, 47.118738 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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": "Polygon", "coordinates": [ [ [ 16.561890, 46.505954 ], [ 16.880493, 46.381044 ], [ 17.627563, 45.954969 ], [ 18.451538, 45.759859 ], [ 18.825073, 45.909122 ], [ 19.072266, 45.521744 ], [ 19.385376, 45.240086 ], [ 19.000854, 44.863656 ], [ 18.550415, 45.085157 ], [ 17.858276, 45.069641 ], [ 17.001343, 45.236218 ], [ 16.534424, 45.213004 ], [ 16.314697, 45.007535 ], [ 15.957642, 45.236218 ], [ 15.748901, 44.820812 ], [ 16.237793, 44.351350 ], [ 16.452026, 44.044167 ], [ 16.913452, 43.667872 ], [ 17.292480, 43.448931 ], [ 17.671509, 43.028745 ], [ 18.555908, 42.650122 ], [ 18.446045, 42.480200 ], [ 17.506714, 42.851806 ], [ 16.929932, 43.213183 ], [ 16.012573, 43.508721 ], [ 15.172119, 44.245199 ], [ 15.375366, 44.319918 ], [ 14.919434, 44.738930 ], [ 14.897461, 45.077400 ], [ 14.254761, 45.236218 ], [ 13.947144, 44.805224 ], [ 13.656006, 45.139430 ], [ 13.677979, 45.487095 ], [ 13.710938, 45.502497 ], [ 14.408569, 45.467836 ], [ 14.589844, 45.637087 ], [ 14.930420, 45.475540 ], [ 15.325928, 45.452424 ], [ 15.320435, 45.733025 ], [ 15.666504, 45.836454 ], [ 15.765381, 46.240652 ], [ 16.561890, 46.505954 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Hungary", "sov_a3": "HUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Hungary", "adm0_a3": "HUN", "geou_dif": 0, "geounit": "Hungary", "gu_a3": "HUN", "su_dif": 0, "subunit": "Hungary", "su_a3": "HUN", "brk_diff": 0, "name": "Hungary", "name_long": "Hungary", "brk_a3": "HUN", "brk_name": "Hungary", "abbrev": "Hun.", "postal": "HU", "formal_en": "Republic of Hungary", "name_sort": "Hungary", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 9905596, "gdp_md_est": 196600, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "HU", "iso_a3": "HUN", "iso_n3": "348", "un_a3": "348", "wb_a2": "HU", "wb_a3": "HUN", "woe_id": -99, "adm0_a3_is": "HUN", "adm0_a3_us": "HUN", "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": "Polygon", "coordinates": [ [ [ 20.797119, 48.625647 ], [ 21.868286, 48.323387 ], [ 22.082520, 48.425555 ], [ 22.500000, 48.221013 ], [ 22.637329, 48.151428 ], [ 22.708740, 47.883197 ], [ 22.500000, 47.813155 ], [ 22.098999, 47.672786 ], [ 21.621094, 46.995241 ], [ 21.016846, 46.316584 ], [ 20.214844, 46.130363 ], [ 19.594116, 46.172223 ], [ 18.825073, 45.909122 ], [ 18.451538, 45.759859 ], [ 17.627563, 45.954969 ], [ 16.880493, 46.381044 ], [ 16.561890, 46.505954 ], [ 16.369629, 46.841407 ], [ 16.199341, 46.852678 ], [ 16.528931, 47.498648 ], [ 16.336670, 47.713458 ], [ 16.902466, 47.717154 ], [ 16.979370, 48.125768 ], [ 17.484741, 47.868459 ], [ 17.852783, 47.761484 ], [ 18.693237, 47.883197 ], [ 18.775635, 48.085419 ], [ 19.171143, 48.114767 ], [ 19.660034, 48.268569 ], [ 19.764404, 48.202710 ], [ 20.236816, 48.330691 ], [ 20.473022, 48.563885 ], [ 20.797119, 48.625647 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.319458, 49.575102 ], [ 19.824829, 49.217597 ], [ 20.412598, 49.432413 ], [ 20.885010, 49.332282 ], [ 21.604614, 49.471694 ], [ 22.500000, 49.109838 ], [ 22.554932, 49.088258 ], [ 22.500000, 49.034267 ], [ 22.280273, 48.828566 ], [ 22.082520, 48.425555 ], [ 21.868286, 48.323387 ], [ 20.797119, 48.625647 ], [ 20.473022, 48.563885 ], [ 20.236816, 48.330691 ], [ 19.764404, 48.202710 ], [ 19.660034, 48.268569 ], [ 19.171143, 48.114767 ], [ 18.775635, 48.085419 ], [ 18.693237, 47.883197 ], [ 17.852783, 47.761484 ], [ 17.484741, 47.868459 ], [ 16.979370, 48.125768 ], [ 16.875000, 48.472921 ], [ 17.100220, 48.817716 ], [ 17.539673, 48.803246 ], [ 17.885742, 48.904449 ], [ 17.913208, 48.998240 ], [ 18.099976, 49.045070 ], [ 18.165894, 49.274973 ], [ 18.396606, 49.317961 ], [ 18.550415, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.907471, 49.435985 ], [ 19.319458, 49.575102 ] ] ] } } +, +{ "type": "Feature", "properties": { "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.594116, 46.172223 ], [ 20.214844, 46.130363 ], [ 20.758667, 45.736860 ], [ 20.874023, 45.417732 ], [ 21.478271, 45.182037 ], [ 21.560669, 44.770137 ], [ 22.142944, 44.480830 ], [ 22.456055, 44.703802 ], [ 22.500000, 44.684277 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.429857 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.386692 ], [ 22.653809, 44.237328 ], [ 22.500000, 44.091531 ], [ 22.406616, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.939453, 43.253205 ], [ 22.939453, 43.173135 ], [ 22.604370, 42.900113 ], [ 22.500000, 42.702623 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.512602 ], [ 22.543945, 42.463993 ], [ 22.500000, 42.423457 ], [ 22.379150, 42.322001 ], [ 21.912231, 42.305753 ], [ 21.571655, 42.248852 ], [ 21.538696, 42.322001 ], [ 21.659546, 42.439674 ], [ 21.774902, 42.686473 ], [ 21.632080, 42.678397 ], [ 21.434326, 42.863886 ], [ 21.269531, 42.912183 ], [ 21.143188, 43.068888 ], [ 20.956421, 43.133061 ], [ 20.813599, 43.273206 ], [ 20.632324, 43.217187 ], [ 20.494995, 42.888040 ], [ 20.253296, 42.815551 ], [ 20.335693, 42.900113 ], [ 19.956665, 43.109004 ], [ 19.627075, 43.217187 ], [ 19.478760, 43.353144 ], [ 19.215088, 43.524655 ], [ 19.451294, 43.568452 ], [ 19.599609, 44.040219 ], [ 19.116211, 44.425934 ], [ 19.363403, 44.863656 ], [ 19.000854, 44.863656 ], [ 19.385376, 45.240086 ], [ 19.072266, 45.521744 ], [ 18.825073, 45.909122 ], [ 19.594116, 46.172223 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 56.022948 ], [ 22.939453, 54.284469 ], [ 22.730713, 54.329338 ], [ 22.648315, 54.584797 ], [ 22.752686, 54.857640 ], [ 22.500000, 54.949231 ], [ 22.313232, 55.015426 ], [ 21.264038, 55.191412 ], [ 21.115723, 55.776573 ], [ 21.055298, 56.022948 ], [ 22.939453, 56.022948 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "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": "Polygon", "coordinates": [ [ [ 22.939453, 47.997274 ], [ 22.939453, 43.834527 ], [ 22.653809, 44.237328 ], [ 22.500000, 44.386692 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.429857 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.684277 ], [ 22.456055, 44.703802 ], [ 22.142944, 44.480830 ], [ 21.560669, 44.770137 ], [ 21.478271, 45.182037 ], [ 20.874023, 45.417732 ], [ 20.758667, 45.736860 ], [ 20.214844, 46.130363 ], [ 21.016846, 46.316584 ], [ 21.621094, 46.995241 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.813155 ], [ 22.708740, 47.883197 ], [ 22.939453, 47.997274 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.939453, 43.173135 ], [ 22.939453, 41.459195 ], [ 22.879028, 42.000325 ], [ 22.500000, 42.244785 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.423457 ], [ 22.543945, 42.463993 ], [ 22.500000, 42.512602 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.702623 ], [ 22.604370, 42.900113 ], [ 22.939453, 43.173135 ] ] ], [ [ [ 22.939453, 43.253205 ], [ 22.500000, 43.644026 ], [ 22.406616, 44.008620 ], [ 22.500000, 44.091531 ], [ 22.653809, 44.237328 ], [ 22.939453, 43.834527 ], [ 22.939453, 43.253205 ] ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 22.939453, 49.866317 ], [ 22.939453, 47.997274 ], [ 22.708740, 47.883197 ], [ 22.637329, 48.151428 ], [ 22.500000, 48.221013 ], [ 22.082520, 48.425555 ], [ 22.280273, 48.828566 ], [ 22.500000, 49.034267 ], [ 22.554932, 49.088258 ], [ 22.774658, 49.030665 ], [ 22.516479, 49.478832 ], [ 22.939453, 49.866317 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "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": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 41.339700 ], [ 22.939453, 40.647304 ], [ 21.000366, 40.647304 ], [ 21.016846, 40.842905 ], [ 21.670532, 40.934265 ], [ 21.758423, 40.979898 ], [ 22.055054, 41.153842 ], [ 22.500000, 41.137296 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.939453, 41.339700 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "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": "Polygon", "coordinates": [ [ [ 15.545654, 66.687784 ], [ 15.391846, 66.513260 ], [ 15.106201, 66.196009 ], [ 13.551636, 64.788168 ], [ 13.919678, 64.446742 ], [ 13.568115, 64.050575 ], [ 12.579346, 64.067396 ], [ 11.925659, 63.129538 ], [ 11.991577, 61.801688 ], [ 12.628784, 61.293988 ], [ 12.299194, 60.119619 ], [ 11.464233, 59.433903 ], [ 11.024780, 58.856383 ], [ 10.354614, 59.470199 ], [ 8.377075, 58.315260 ], [ 7.047729, 58.080781 ], [ 5.663452, 58.588299 ], [ 5.306396, 59.664966 ], [ 4.987793, 61.972525 ], [ 5.910645, 62.616089 ], [ 8.552856, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.354126, 65.881460 ], [ 13.123169, 66.513260 ], [ 13.337402, 66.687784 ], [ 15.545654, 66.687784 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.370605, 56.111873 ], [ 12.579346, 55.776573 ], [ 12.689209, 55.612487 ], [ 12.628784, 55.528631 ], [ 10.986328, 55.528631 ], [ 10.903931, 55.776573 ], [ 10.898438, 55.782751 ], [ 12.370605, 56.111873 ] ] ], [ [ [ 10.579834, 57.730552 ], [ 10.541382, 57.216634 ], [ 10.244751, 56.891003 ], [ 10.365601, 56.610909 ], [ 10.909424, 56.459455 ], [ 10.667725, 56.084298 ], [ 10.365601, 56.191424 ], [ 9.953613, 55.776573 ], [ 9.706421, 55.528631 ], [ 8.118896, 55.528631 ], [ 8.107910, 55.776573 ], [ 8.085938, 56.541315 ], [ 8.256226, 56.812908 ], [ 8.541870, 57.112385 ], [ 9.420776, 57.174970 ], [ 9.772339, 57.450861 ], [ 10.579834, 57.730552 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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": "Polygon", "coordinates": [ [ [ 22.939453, 66.687784 ], [ 22.939453, 65.850015 ], [ 22.500000, 65.777998 ], [ 22.181396, 65.723852 ], [ 21.209106, 65.028104 ], [ 21.368408, 64.415921 ], [ 19.775391, 63.609658 ], [ 17.847290, 62.749696 ], [ 17.116699, 61.341444 ], [ 17.830811, 60.638183 ], [ 18.786621, 60.084023 ], [ 17.863770, 58.955674 ], [ 16.825562, 58.722599 ], [ 16.446533, 57.043718 ], [ 15.875244, 56.105747 ], [ 14.661255, 56.203649 ], [ 14.359131, 55.776573 ], [ 14.183350, 55.528631 ], [ 12.886963, 55.528631 ], [ 12.799072, 55.776573 ], [ 12.623291, 56.307396 ], [ 11.782837, 57.441993 ], [ 11.024780, 58.856383 ], [ 11.464233, 59.433903 ], [ 12.299194, 60.119619 ], [ 12.628784, 61.293988 ], [ 11.991577, 61.801688 ], [ 11.925659, 63.129538 ], [ 12.579346, 64.067396 ], [ 13.568115, 64.050575 ], [ 13.919678, 64.446742 ], [ 13.551636, 64.788168 ], [ 15.106201, 66.196009 ], [ 15.391846, 66.513260 ], [ 15.545654, 66.687784 ], [ 22.939453, 66.687784 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 64.057785 ], [ 22.939453, 59.855851 ], [ 22.868042, 59.847574 ], [ 22.500000, 60.196156 ], [ 22.285767, 60.392148 ], [ 21.318970, 60.721571 ], [ 21.544189, 61.705499 ], [ 21.055298, 62.608508 ], [ 21.533203, 63.191541 ], [ 22.439575, 63.818864 ], [ 22.500000, 63.845512 ], [ 22.939453, 64.057785 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "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": "Polygon", "coordinates": [ [ [ 22.521973, 57.754007 ], [ 22.939453, 57.365052 ], [ 22.939453, 56.310443 ], [ 22.500000, 56.328721 ], [ 22.197876, 56.337856 ], [ 21.055298, 56.032157 ], [ 21.088257, 56.785836 ], [ 21.577148, 57.412420 ], [ 22.500000, 57.745213 ], [ 22.521973, 57.754007 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.197876, 56.337856 ], [ 22.500000, 56.328721 ], [ 22.939453, 56.310443 ], [ 22.939453, 55.528631 ], [ 21.181641, 55.528631 ], [ 21.115723, 55.776573 ], [ 21.055298, 56.032157 ], [ 22.197876, 56.337856 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "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": "Polygon", "coordinates": [ [ [ 21.373901, 70.255741 ], [ 22.500000, 70.220452 ], [ 22.939453, 70.205576 ], [ 22.939453, 68.865498 ], [ 22.500000, 68.847665 ], [ 22.351685, 68.843700 ], [ 21.242065, 69.370638 ], [ 20.643311, 69.107777 ], [ 20.022583, 69.066601 ], [ 19.874268, 68.407268 ], [ 17.990112, 68.568414 ], [ 17.726440, 68.011685 ], [ 16.765137, 68.015798 ], [ 15.391846, 66.513260 ], [ 15.232544, 66.337505 ], [ 12.908936, 66.337505 ], [ 13.123169, 66.513260 ], [ 14.760132, 67.811319 ], [ 16.435547, 68.564399 ], [ 19.182129, 69.818786 ], [ 21.373901, 70.255741 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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": "Polygon", "coordinates": [ [ [ 20.643311, 69.107777 ], [ 21.978149, 68.618536 ], [ 22.500000, 68.393113 ], [ 22.939453, 68.200133 ], [ 22.939453, 66.337505 ], [ 15.232544, 66.337505 ], [ 15.391846, 66.513260 ], [ 16.765137, 68.015798 ], [ 17.726440, 68.011685 ], [ 17.990112, 68.568414 ], [ 19.874268, 68.407268 ], [ 20.022583, 69.066601 ], [ 20.643311, 69.107777 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.242065, 69.370638 ], [ 22.351685, 68.843700 ], [ 22.500000, 68.847665 ], [ 22.939453, 68.865498 ], [ 22.939453, 68.200133 ], [ 22.500000, 68.393113 ], [ 21.978149, 68.618536 ], [ 20.643311, 69.107777 ], [ 21.242065, 69.370638 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "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": [ [ [ [ 20.253296, 79.253586 ], [ 20.615845, 79.171335 ], [ 21.538696, 78.956665 ], [ 19.022827, 78.562667 ], [ 18.468018, 77.826799 ], [ 17.589111, 77.638894 ], [ 17.116699, 76.809516 ], [ 15.908203, 76.770602 ], [ 13.760376, 77.381106 ], [ 14.666748, 77.736118 ], [ 13.167114, 78.025574 ], [ 11.217041, 78.870048 ], [ 10.925903, 79.171335 ], [ 10.843506, 79.253586 ], [ 20.253296, 79.253586 ] ] ], [ [ [ 22.879028, 78.455425 ], [ 22.939453, 78.403642 ], [ 22.939453, 77.529054 ], [ 22.500000, 77.446940 ], [ 22.489014, 77.445746 ], [ 20.725708, 77.677640 ], [ 21.412354, 77.935203 ], [ 20.808105, 78.254743 ], [ 22.500000, 78.419091 ], [ 22.879028, 78.455425 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 16.990356, 80.051409 ], [ 18.248291, 79.701925 ], [ 20.615845, 79.171335 ], [ 20.972900, 79.088462 ], [ 11.008301, 79.088462 ], [ 10.925903, 79.171335 ], [ 10.442505, 79.652708 ], [ 13.167114, 80.010518 ], [ 13.716431, 79.660599 ], [ 15.139160, 79.674392 ], [ 15.518188, 80.016233 ], [ 16.990356, 80.051409 ] ] ], [ [ [ 22.917480, 80.657741 ], [ 22.939453, 80.655958 ], [ 22.939453, 79.405136 ], [ 22.500000, 79.430356 ], [ 20.072021, 79.567511 ], [ 19.896240, 79.842378 ], [ 18.457031, 79.860768 ], [ 17.363892, 80.319196 ], [ 20.451050, 80.598704 ], [ 21.906738, 80.357916 ], [ 22.500000, 80.534782 ], [ 22.917480, 80.657741 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zimbabwe", "sov_a3": "ZWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zimbabwe", "adm0_a3": "ZWE", "geou_dif": 0, "geounit": "Zimbabwe", "gu_a3": "ZWE", "su_dif": 0, "subunit": "Zimbabwe", "su_a3": "ZWE", "brk_diff": 0, "name": "Zimbabwe", "name_long": "Zimbabwe", "brk_a3": "ZWE", "brk_name": "Zimbabwe", "abbrev": "Zimb.", "postal": "ZW", "formal_en": "Republic of Zimbabwe", "name_sort": "Zimbabwe", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 12619600, "gdp_md_est": 9323, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ZW", "iso_a3": "ZWE", "iso_n3": "716", "un_a3": "716", "wb_a2": "ZW", "wb_a3": "ZWE", "woe_id": -99, "adm0_a3_is": "ZWE", "adm0_a3_us": "ZWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.854858, -21.534847 ], [ 31.475830, -21.943046 ], [ 31.190186, -22.248429 ], [ 30.657349, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.100909 ], [ 29.426880, -22.090730 ], [ 29.218140, -21.943046 ], [ 28.789673, -21.637005 ], [ 28.262329, -21.534847 ], [ 31.854858, -21.534847 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mozambique", "sov_a3": "MOZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mozambique", "adm0_a3": "MOZ", "geou_dif": 0, "geounit": "Mozambique", "gu_a3": "MOZ", "su_dif": 0, "subunit": "Mozambique", "su_a3": "MOZ", "brk_diff": 0, "name": "Mozambique", "name_long": "Mozambique", "brk_a3": "MOZ", "brk_name": "Mozambique", "abbrev": "Moz.", "postal": "MZ", "formal_en": "Republic of Mozambique", "name_sort": "Mozambique", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 21669278, "gdp_md_est": 18940, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MZ", "iso_a3": "MOZ", "iso_n3": "508", "un_a3": "508", "wb_a2": "MZ", "wb_a3": "MOZ", "woe_id": -99, "adm0_a3_is": "MOZ", "adm0_a3_us": "MOZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.266113, -21.534847 ], [ 35.370483, -21.836006 ], [ 35.375977, -21.943046 ], [ 35.381470, -22.136532 ], [ 35.557251, -22.085640 ], [ 35.529785, -23.069624 ], [ 35.370483, -23.533773 ], [ 35.606689, -23.704895 ], [ 35.458374, -24.121689 ], [ 35.035400, -24.477150 ], [ 34.211426, -24.811668 ], [ 33.008423, -25.353955 ], [ 32.574463, -25.725684 ], [ 32.656860, -26.145576 ], [ 32.915039, -26.214591 ], [ 32.827148, -26.740705 ], [ 32.069092, -26.730893 ], [ 31.981201, -26.288490 ], [ 31.832886, -25.839449 ], [ 31.750488, -25.482951 ], [ 31.926270, -24.367114 ], [ 31.668091, -23.654588 ], [ 31.190186, -22.248429 ], [ 31.475830, -21.943046 ], [ 31.854858, -21.534847 ], [ 35.266113, -21.534847 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 28.262329, -21.534847 ], [ 28.789673, -21.637005 ], [ 29.218140, -21.943046 ], [ 29.426880, -22.090730 ], [ 28.015137, -22.826820 ], [ 27.114258, -23.574057 ], [ 26.784668, -24.236947 ], [ 26.482544, -24.612063 ], [ 25.938721, -24.691943 ], [ 25.762939, -25.170145 ], [ 25.664062, -25.482951 ], [ 25.021362, -25.715786 ], [ 24.208374, -25.666285 ], [ 23.730469, -25.388698 ], [ 23.307495, -25.264568 ], [ 22.824097, -25.497827 ], [ 22.576904, -25.977799 ], [ 22.500000, -26.027170 ], [ 22.104492, -26.278640 ], [ 22.060547, -26.318037 ], [ 22.060547, -21.534847 ], [ 28.262329, -21.534847 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Africa", "sov_a3": "ZAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Africa", "adm0_a3": "ZAF", "geou_dif": 0, "geounit": "South Africa", "gu_a3": "ZAF", "su_dif": 0, "subunit": "South Africa", "su_a3": "ZAF", "brk_diff": 0, "name": "South Africa", "name_long": "South Africa", "brk_a3": "ZAF", "brk_name": "South Africa", "abbrev": "S.Af.", "postal": "ZA", "formal_en": "Republic of South Africa", "name_sort": "South Africa", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 49052489, "gdp_md_est": 491000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ZA", "iso_a3": "ZAF", "iso_n3": "710", "un_a3": "710", "wb_a2": "ZA", "wb_a3": "ZAF", "woe_id": -99, "adm0_a3_is": "ZAF", "adm0_a3_us": "ZAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.426880, -22.090730 ], [ 29.838867, -22.100909 ], [ 30.322266, -22.268764 ], [ 30.657349, -22.146708 ], [ 31.190186, -22.248429 ], [ 31.668091, -23.654588 ], [ 31.926270, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.832886, -25.839449 ], [ 31.333008, -25.656382 ], [ 31.041870, -25.730633 ], [ 30.948486, -26.022234 ], [ 30.673828, -26.396790 ], [ 30.684814, -26.740705 ], [ 31.278076, -27.283926 ], [ 31.865845, -27.176469 ], [ 32.069092, -26.730893 ], [ 32.827148, -26.740705 ], [ 32.579956, -27.469287 ], [ 32.459106, -28.299544 ], [ 32.200928, -28.748397 ], [ 31.519775, -29.252856 ], [ 31.322021, -29.401320 ], [ 30.899048, -29.907329 ], [ 30.618896, -30.420256 ], [ 30.053101, -31.137603 ], [ 28.921509, -32.170963 ], [ 28.218384, -32.768800 ], [ 27.460327, -33.224903 ], [ 26.416626, -33.614619 ], [ 25.905762, -33.664925 ], [ 25.779419, -33.943360 ], [ 25.169678, -33.792844 ], [ 24.675293, -33.984364 ], [ 23.593140, -33.792844 ], [ 22.983398, -33.916013 ], [ 22.571411, -33.861293 ], [ 22.500000, -33.888658 ], [ 22.060547, -34.057211 ], [ 22.060547, -26.318037 ], [ 22.104492, -26.278640 ], [ 22.500000, -26.027170 ], [ 22.576904, -25.977799 ], [ 22.824097, -25.497827 ], [ 23.307495, -25.264568 ], [ 23.730469, -25.388698 ], [ 24.208374, -25.666285 ], [ 25.021362, -25.715786 ], [ 25.664062, -25.482951 ], [ 25.762939, -25.170145 ], [ 25.938721, -24.691943 ], [ 26.482544, -24.612063 ], [ 26.784668, -24.236947 ], [ 27.114258, -23.574057 ], [ 28.015137, -22.826820 ], [ 29.426880, -22.090730 ] ], [ [ 28.536987, -28.647210 ], [ 28.070068, -28.849485 ], [ 27.531738, -29.238477 ], [ 26.998901, -29.873992 ], [ 27.745972, -30.642638 ], [ 28.103027, -30.543339 ], [ 28.289795, -30.225848 ], [ 28.844604, -30.069094 ], [ 29.014893, -29.740532 ], [ 29.322510, -29.252856 ], [ 28.976440, -28.955282 ], [ 28.536987, -28.647210 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Madagascar", "sov_a3": "MDG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Madagascar", "adm0_a3": "MDG", "geou_dif": 0, "geounit": "Madagascar", "gu_a3": "MDG", "su_dif": 0, "subunit": "Madagascar", "su_a3": "MDG", "brk_diff": 0, "name": "Madagascar", "name_long": "Madagascar", "brk_a3": "MDG", "brk_name": "Madagascar", "abbrev": "Mad.", "postal": "MG", "formal_en": "Republic of Madagascar", "name_sort": "Madagascar", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 20653556, "gdp_md_est": 20130, "pop_year": -99, "lastcensus": 1993, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MG", "iso_a3": "MDG", "iso_n3": "450", "un_a3": "450", "wb_a2": "MG", "wb_a3": "MDG", "woe_id": -99, "adm0_a3_is": "MDG", "adm0_a3_us": "MDG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -21.534847 ], [ 45.439453, -25.582085 ], [ 45.406494, -25.596948 ], [ 45.000000, -25.418470 ], [ 44.038696, -24.986058 ], [ 43.758545, -24.457151 ], [ 43.692627, -23.574057 ], [ 43.341064, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.280640, -21.943046 ], [ 43.379517, -21.534847 ], [ 45.439453, -21.534847 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.123535, 0.439449 ], [ 33.892822, 0.109863 ], [ 33.892822, 0.000000 ], [ 33.898315, -0.944781 ], [ 31.865845, -1.027167 ], [ 30.767212, -1.010690 ], [ 30.415649, -1.131518 ], [ 29.816895, -1.439058 ], [ 29.575195, -1.340210 ], [ 29.586182, -0.582265 ], [ 29.816895, -0.203247 ], [ 29.833374, 0.000000 ], [ 29.860840, 0.439449 ], [ 34.123535, 0.439449 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.984497, 0.439449 ], [ 40.989990, 0.000000 ], [ 40.989990, -0.856902 ], [ 41.583252, -1.680667 ], [ 40.880127, -2.081451 ], [ 40.632935, -2.498597 ], [ 40.259399, -2.569939 ], [ 40.116577, -3.277630 ], [ 39.797974, -3.677892 ], [ 39.600220, -4.346411 ], [ 39.199219, -4.674980 ], [ 37.765503, -3.672410 ], [ 37.694092, -3.096636 ], [ 34.068604, -1.054628 ], [ 33.898315, -0.944781 ], [ 33.892822, 0.000000 ], [ 33.892822, 0.109863 ], [ 34.123535, 0.439449 ], [ 40.984497, 0.439449 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.313599, 0.439449 ], [ 43.132324, 0.296630 ], [ 42.868652, 0.000000 ], [ 42.039185, -0.917319 ], [ 41.808472, -1.444549 ], [ 41.583252, -1.680667 ], [ 40.989990, -0.856902 ], [ 40.989990, 0.000000 ], [ 40.984497, 0.439449 ], [ 43.313599, 0.439449 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.860840, 0.439449 ], [ 29.833374, 0.000000 ], [ 29.816895, -0.203247 ], [ 29.586182, -0.582265 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.614776 ], [ 29.251099, -2.213195 ], [ 29.113770, -2.290039 ], [ 29.020386, -2.838804 ], [ 29.273071, -3.288598 ], [ 29.338989, -4.499762 ], [ 29.514771, -5.419148 ], [ 29.415894, -5.938436 ], [ 29.619141, -6.517272 ], [ 30.195923, -7.079088 ], [ 30.739746, -8.336518 ], [ 30.344238, -8.233237 ], [ 28.998413, -8.401734 ], [ 28.734741, -8.521268 ], [ 28.449097, -9.161756 ], [ 28.668823, -9.600750 ], [ 28.493042, -10.784745 ], [ 28.372192, -11.792080 ], [ 28.641357, -11.969471 ], [ 29.338989, -12.356100 ], [ 29.613647, -12.173595 ], [ 29.696045, -13.255986 ], [ 28.932495, -13.245293 ], [ 28.520508, -12.693933 ], [ 28.152466, -12.270231 ], [ 27.383423, -12.130635 ], [ 27.163696, -11.603813 ], [ 26.548462, -11.921103 ], [ 25.751953, -11.781325 ], [ 25.416870, -11.329253 ], [ 24.779663, -11.237674 ], [ 24.312744, -11.259225 ], [ 24.252319, -10.951978 ], [ 23.911743, -10.925011 ], [ 23.455811, -10.865676 ], [ 22.835083, -11.016689 ], [ 22.500000, -10.995120 ], [ 22.401123, -10.989728 ], [ 22.153931, -11.081385 ], [ 22.203369, -9.893099 ], [ 22.060547, -9.725300 ], [ 22.060547, 0.439449 ], [ 29.860840, 0.439449 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.060547, -12.897489 ], [ 22.060547, -9.725300 ], [ 22.203369, -9.893099 ], [ 22.153931, -11.081385 ], [ 22.401123, -10.989728 ], [ 22.500000, -10.995120 ], [ 22.835083, -11.016689 ], [ 23.455811, -10.865676 ], [ 23.911743, -10.925011 ], [ 24.016113, -11.232286 ], [ 23.900757, -11.722167 ], [ 24.076538, -12.189704 ], [ 23.928223, -12.565287 ], [ 24.016113, -12.908198 ], [ 22.500000, -12.897489 ], [ 22.060547, -12.897489 ] ] ], [ [ [ 22.060547, -16.288506 ], [ 22.500000, -16.820316 ], [ 22.560425, -16.893916 ], [ 23.214111, -17.518344 ], [ 22.500000, -17.680662 ], [ 22.060547, -17.774843 ], [ 22.060547, -16.288506 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Namibia", "sov_a3": "NAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Namibia", "adm0_a3": "NAM", "geou_dif": 0, "geounit": "Namibia", "gu_a3": "NAM", "su_dif": 0, "subunit": "Namibia", "su_a3": "NAM", "brk_diff": 0, "name": "Namibia", "name_long": "Namibia", "brk_a3": "NAM", "brk_name": "Namibia", "abbrev": "Nam.", "postal": "NA", "formal_en": "Republic of Namibia", "name_sort": "Namibia", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 2108665, "gdp_md_est": 13250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "NA", "iso_a3": "NAM", "iso_n3": "516", "un_a3": "516", "wb_a2": "NA", "wb_a3": "NAM", "woe_id": -99, "adm0_a3_is": "NAM", "adm0_a3_us": "NAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.032593, -17.292954 ], [ 24.680786, -17.350638 ], [ 25.076294, -17.575957 ], [ 25.081787, -17.659726 ], [ 24.515991, -17.884659 ], [ 24.213867, -17.884659 ], [ 23.576660, -18.276302 ], [ 23.192139, -17.868975 ], [ 22.500000, -18.025751 ], [ 22.060547, -18.124971 ], [ 22.060547, -17.774843 ], [ 22.500000, -17.680662 ], [ 23.214111, -17.518344 ], [ 24.032593, -17.292954 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.344238, -8.233237 ], [ 30.739746, -8.336518 ], [ 31.157227, -8.591884 ], [ 31.552734, -8.760224 ], [ 32.189941, -8.928487 ], [ 32.755737, -9.226827 ], [ 33.228149, -9.676569 ], [ 33.480835, -10.520219 ], [ 33.310547, -10.795537 ], [ 33.112793, -11.603813 ], [ 33.305054, -12.431212 ], [ 32.986450, -12.779661 ], [ 32.684326, -13.710035 ], [ 33.211670, -13.971385 ], [ 30.179443, -14.790817 ], [ 30.272827, -15.506619 ], [ 29.514771, -15.644197 ], [ 28.943481, -16.040534 ], [ 28.822632, -16.388661 ], [ 28.465576, -16.467695 ], [ 27.597656, -17.287709 ], [ 27.042847, -17.936929 ], [ 26.702271, -17.957832 ], [ 26.378174, -17.842833 ], [ 25.263062, -17.732991 ], [ 25.081787, -17.659726 ], [ 25.076294, -17.575957 ], [ 24.680786, -17.350638 ], [ 24.032593, -17.292954 ], [ 23.214111, -17.518344 ], [ 22.560425, -16.893916 ], [ 22.500000, -16.820316 ], [ 22.060547, -16.288506 ], [ 22.060547, -12.897489 ], [ 22.500000, -12.897489 ], [ 24.016113, -12.908198 ], [ 23.928223, -12.565287 ], [ 24.076538, -12.189704 ], [ 23.900757, -11.722167 ], [ 24.016113, -11.232286 ], [ 23.911743, -10.925011 ], [ 24.252319, -10.951978 ], [ 24.312744, -11.259225 ], [ 24.779663, -11.237674 ], [ 25.416870, -11.329253 ], [ 25.751953, -11.781325 ], [ 26.548462, -11.921103 ], [ 27.163696, -11.603813 ], [ 27.383423, -12.130635 ], [ 28.152466, -12.270231 ], [ 28.520508, -12.693933 ], [ 28.932495, -13.245293 ], [ 29.696045, -13.255986 ], [ 29.613647, -12.173595 ], [ 29.338989, -12.356100 ], [ 28.641357, -11.969471 ], [ 28.372192, -11.792080 ], [ 28.493042, -10.784745 ], [ 28.668823, -9.600750 ], [ 28.449097, -9.161756 ], [ 28.734741, -8.521268 ], [ 28.998413, -8.401734 ], [ 30.344238, -8.233237 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zimbabwe", "sov_a3": "ZWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zimbabwe", "adm0_a3": "ZWE", "geou_dif": 0, "geounit": "Zimbabwe", "gu_a3": "ZWE", "su_dif": 0, "subunit": "Zimbabwe", "su_a3": "ZWE", "brk_diff": 0, "name": "Zimbabwe", "name_long": "Zimbabwe", "brk_a3": "ZWE", "brk_name": "Zimbabwe", "abbrev": "Zimb.", "postal": "ZW", "formal_en": "Republic of Zimbabwe", "name_sort": "Zimbabwe", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 12619600, "gdp_md_est": 9323, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ZW", "iso_a3": "ZWE", "iso_n3": "716", "un_a3": "716", "wb_a2": "ZW", "wb_a3": "ZWE", "woe_id": -99, "adm0_a3_is": "ZWE", "adm0_a3_us": "ZWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.272827, -15.506619 ], [ 30.338745, -15.876809 ], [ 31.168213, -15.855674 ], [ 31.635132, -16.066929 ], [ 31.849365, -16.314868 ], [ 32.327271, -16.388661 ], [ 32.843628, -16.709863 ], [ 32.849121, -17.978733 ], [ 32.651367, -18.667063 ], [ 32.607422, -19.414792 ], [ 32.772217, -19.715000 ], [ 32.656860, -20.303418 ], [ 32.508545, -20.390974 ], [ 32.244873, -21.115249 ], [ 31.475830, -21.943046 ], [ 31.190186, -22.248429 ], [ 30.657349, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.100909 ], [ 29.426880, -22.090730 ], [ 29.218140, -21.943046 ], [ 28.789673, -21.637005 ], [ 28.020630, -21.483741 ], [ 27.723999, -20.848545 ], [ 27.723999, -20.493919 ], [ 27.295532, -20.390974 ], [ 26.163940, -19.290406 ], [ 25.845337, -18.713894 ], [ 25.647583, -18.531700 ], [ 25.263062, -17.732991 ], [ 26.378174, -17.842833 ], [ 26.702271, -17.957832 ], [ 27.042847, -17.936929 ], [ 27.597656, -17.287709 ], [ 28.465576, -16.467695 ], [ 28.822632, -16.388661 ], [ 28.943481, -16.040534 ], [ 29.514771, -15.644197 ], [ 30.272827, -15.506619 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "United Republic of Tanzania", "sov_a3": "TZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Republic of Tanzania", "adm0_a3": "TZA", "geou_dif": 0, "geounit": "Tanzania", "gu_a3": "TZA", "su_dif": 0, "subunit": "Tanzania", "su_a3": "TZA", "brk_diff": 0, "name": "Tanzania", "name_long": "Tanzania", "brk_a3": "TZA", "brk_name": "Tanzania", "abbrev": "Tanz.", "postal": "TZ", "formal_en": "United Republic of Tanzania", "name_sort": "Tanzania", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 41048532, "gdp_md_est": 54250, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TZ", "iso_a3": "TZA", "iso_n3": "834", "un_a3": "834", "wb_a2": "TZ", "wb_a3": "TZA", "woe_id": -99, "adm0_a3_is": "TZA", "adm0_a3_us": "TZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.898315, -0.944781 ], [ 34.068604, -1.054628 ], [ 37.694092, -3.096636 ], [ 37.765503, -3.672410 ], [ 39.199219, -4.674980 ], [ 38.737793, -5.905653 ], [ 38.798218, -6.473609 ], [ 39.435425, -6.839170 ], [ 39.468384, -7.095442 ], [ 39.193726, -7.700105 ], [ 39.248657, -8.004837 ], [ 39.182739, -8.483239 ], [ 39.534302, -9.107521 ], [ 39.946289, -10.093262 ], [ 40.314331, -10.314919 ], [ 39.517822, -10.892648 ], [ 38.424683, -11.280774 ], [ 37.825928, -11.264612 ], [ 37.468872, -11.566144 ], [ 36.771240, -11.593051 ], [ 36.513062, -11.716788 ], [ 35.310059, -11.436955 ], [ 34.557495, -11.517705 ], [ 34.277344, -10.158153 ], [ 33.739014, -9.416548 ], [ 32.755737, -9.226827 ], [ 32.189941, -8.928487 ], [ 31.552734, -8.760224 ], [ 31.157227, -8.591884 ], [ 30.739746, -8.336518 ], [ 30.195923, -7.079088 ], [ 29.619141, -6.517272 ], [ 29.415894, -5.938436 ], [ 29.514771, -5.419148 ], [ 29.338989, -4.499762 ], [ 29.750977, -4.450474 ], [ 30.113525, -4.088932 ], [ 30.503540, -3.568248 ], [ 30.750732, -3.354405 ], [ 30.739746, -3.030812 ], [ 30.525513, -2.805885 ], [ 30.465088, -2.410787 ], [ 30.756226, -2.284551 ], [ 30.811157, -1.697139 ], [ 30.415649, -1.131518 ], [ 30.767212, -1.010690 ], [ 31.865845, -1.027167 ], [ 33.898315, -0.944781 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.755737, -9.226827 ], [ 33.739014, -9.416548 ], [ 34.277344, -10.158153 ], [ 34.557495, -11.517705 ], [ 34.277344, -12.275599 ], [ 34.557495, -13.576581 ], [ 34.903564, -13.560562 ], [ 35.266113, -13.886079 ], [ 35.683594, -14.610163 ], [ 35.771484, -15.892659 ], [ 35.337524, -16.103876 ], [ 35.029907, -16.799282 ], [ 34.376221, -16.183024 ], [ 34.304810, -15.474857 ], [ 34.513550, -15.008464 ], [ 34.458618, -14.610163 ], [ 34.063110, -14.354870 ], [ 33.788452, -14.450639 ], [ 33.211670, -13.971385 ], [ 32.684326, -13.710035 ], [ 32.986450, -12.779661 ], [ 33.305054, -12.431212 ], [ 33.112793, -11.603813 ], [ 33.310547, -10.795537 ], [ 33.480835, -10.520219 ], [ 33.228149, -9.676569 ], [ 32.755737, -9.226827 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mozambique", "sov_a3": "MOZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mozambique", "adm0_a3": "MOZ", "geou_dif": 0, "geounit": "Mozambique", "gu_a3": "MOZ", "su_dif": 0, "subunit": "Mozambique", "su_a3": "MOZ", "brk_diff": 0, "name": "Mozambique", "name_long": "Mozambique", "brk_a3": "MOZ", "brk_name": "Mozambique", "abbrev": "Moz.", "postal": "MZ", "formal_en": "Republic of Mozambique", "name_sort": "Mozambique", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 21669278, "gdp_md_est": 18940, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MZ", "iso_a3": "MOZ", "iso_n3": "508", "un_a3": "508", "wb_a2": "MZ", "wb_a3": "MOZ", "woe_id": -99, "adm0_a3_is": "MOZ", "adm0_a3_us": "MOZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.314331, -10.314919 ], [ 40.473633, -10.763159 ], [ 40.435181, -11.759815 ], [ 40.556030, -12.634978 ], [ 40.594482, -14.200488 ], [ 40.770264, -14.689881 ], [ 40.473633, -15.406024 ], [ 40.089111, -16.098598 ], [ 39.451904, -16.720385 ], [ 38.534546, -17.098792 ], [ 37.408447, -17.581194 ], [ 36.276855, -18.656654 ], [ 35.892334, -18.838714 ], [ 35.194702, -19.549437 ], [ 34.782715, -19.782211 ], [ 34.700317, -20.493919 ], [ 35.172729, -21.253542 ], [ 35.370483, -21.836006 ], [ 35.375977, -21.943046 ], [ 35.381470, -22.136532 ], [ 35.557251, -22.085640 ], [ 35.551758, -22.350076 ], [ 31.223145, -22.350076 ], [ 31.190186, -22.248429 ], [ 31.475830, -21.943046 ], [ 32.244873, -21.115249 ], [ 32.508545, -20.390974 ], [ 32.656860, -20.303418 ], [ 32.772217, -19.715000 ], [ 32.607422, -19.414792 ], [ 32.651367, -18.667063 ], [ 32.849121, -17.978733 ], [ 32.843628, -16.709863 ], [ 32.327271, -16.388661 ], [ 31.849365, -16.314868 ], [ 31.635132, -16.066929 ], [ 31.168213, -15.855674 ], [ 30.338745, -15.876809 ], [ 30.272827, -15.506619 ], [ 30.179443, -14.790817 ], [ 33.211670, -13.971385 ], [ 33.788452, -14.450639 ], [ 34.063110, -14.354870 ], [ 34.458618, -14.610163 ], [ 34.513550, -15.008464 ], [ 34.304810, -15.474857 ], [ 34.376221, -16.183024 ], [ 35.029907, -16.799282 ], [ 35.337524, -16.103876 ], [ 35.771484, -15.892659 ], [ 35.683594, -14.610163 ], [ 35.266113, -13.886079 ], [ 34.903564, -13.560562 ], [ 34.557495, -13.576581 ], [ 34.277344, -12.275599 ], [ 34.557495, -11.517705 ], [ 35.310059, -11.436955 ], [ 36.513062, -11.716788 ], [ 36.771240, -11.593051 ], [ 37.468872, -11.566144 ], [ 37.825928, -11.264612 ], [ 38.424683, -11.280774 ], [ 39.517822, -10.892648 ], [ 40.314331, -10.314919 ] ] ] } } +, +{ "type": "Feature", "properties": { "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": "Polygon", "coordinates": [ [ [ 25.081787, -17.659726 ], [ 25.263062, -17.732991 ], [ 25.647583, -18.531700 ], [ 25.845337, -18.713894 ], [ 26.163940, -19.290406 ], [ 27.295532, -20.390974 ], [ 27.723999, -20.493919 ], [ 27.723999, -20.848545 ], [ 28.020630, -21.483741 ], [ 28.789673, -21.637005 ], [ 29.218140, -21.943046 ], [ 29.426880, -22.090730 ], [ 28.932495, -22.350076 ], [ 22.060547, -22.350076 ], [ 22.060547, -18.124971 ], [ 22.500000, -18.025751 ], [ 23.192139, -17.868975 ], [ 23.576660, -18.276302 ], [ 24.213867, -17.884659 ], [ 24.515991, -17.884659 ], [ 25.081787, -17.659726 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Africa", "sov_a3": "ZAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Africa", "adm0_a3": "ZAF", "geou_dif": 0, "geounit": "South Africa", "gu_a3": "ZAF", "su_dif": 0, "subunit": "South Africa", "su_a3": "ZAF", "brk_diff": 0, "name": "South Africa", "name_long": "South Africa", "brk_a3": "ZAF", "brk_name": "South Africa", "abbrev": "S.Af.", "postal": "ZA", "formal_en": "Republic of South Africa", "name_sort": "South Africa", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 49052489, "gdp_md_est": 491000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ZA", "iso_a3": "ZAF", "iso_n3": "710", "un_a3": "710", "wb_a2": "ZA", "wb_a3": "ZAF", "woe_id": -99, "adm0_a3_is": "ZAF", "adm0_a3_us": "ZAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.426880, -22.090730 ], [ 29.838867, -22.100909 ], [ 30.322266, -22.268764 ], [ 30.657349, -22.146708 ], [ 31.190186, -22.248429 ], [ 31.223145, -22.350076 ], [ 28.932495, -22.350076 ], [ 29.426880, -22.090730 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Madagascar", "sov_a3": "MDG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Madagascar", "adm0_a3": "MDG", "geou_dif": 0, "geounit": "Madagascar", "gu_a3": "MDG", "su_dif": 0, "subunit": "Madagascar", "su_a3": "MDG", "brk_diff": 0, "name": "Madagascar", "name_long": "Madagascar", "brk_a3": "MDG", "brk_name": "Madagascar", "abbrev": "Mad.", "postal": "MG", "formal_en": "Republic of Madagascar", "name_sort": "Madagascar", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 20653556, "gdp_md_est": 20130, "pop_year": -99, "lastcensus": 1993, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MG", "iso_a3": "MDG", "iso_n3": "450", "un_a3": "450", "wb_a2": "MG", "wb_a3": "MDG", "woe_id": -99, "adm0_a3_is": "MDG", "adm0_a3_us": "MDG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -15.993015 ], [ 45.439453, -22.350076 ], [ 43.286133, -22.350076 ], [ 43.253174, -22.055096 ], [ 43.280640, -21.943046 ], [ 43.428955, -21.335432 ], [ 43.890381, -21.161361 ], [ 43.895874, -20.828010 ], [ 44.373779, -20.071411 ], [ 44.461670, -19.430334 ], [ 44.230957, -18.958246 ], [ 44.038696, -18.328455 ], [ 43.961792, -17.408305 ], [ 44.307861, -16.846605 ], [ 44.445190, -16.214675 ], [ 44.939575, -16.177749 ], [ 45.000000, -16.156645 ], [ 45.439453, -15.993015 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.999390, 22.350076 ], [ 24.999390, 20.004322 ], [ 23.845825, 20.004322 ], [ 23.834839, 19.580493 ], [ 22.500000, 20.226120 ], [ 22.060547, 20.437308 ], [ 22.060547, 22.350076 ], [ 24.999390, 22.350076 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.060547, 12.993853 ], [ 22.060547, 20.437308 ], [ 22.500000, 20.226120 ], [ 23.834839, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.021851, 15.681221 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.109940 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.083301 ], [ 22.181396, 13.790071 ], [ 22.291260, 13.373588 ], [ 22.060547, 12.993853 ] ] ], [ [ [ 22.060547, 12.613537 ], [ 22.285767, 12.651058 ], [ 22.494507, 12.264864 ], [ 22.500000, 12.136005 ], [ 22.505493, 11.684514 ], [ 22.873535, 11.388494 ], [ 22.862549, 11.146066 ], [ 22.500000, 11.049038 ], [ 22.230835, 10.973550 ], [ 22.060547, 10.838701 ], [ 22.060547, 12.613537 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.862549, 11.146066 ], [ 22.972412, 10.714587 ], [ 23.549194, 10.093262 ], [ 23.554688, 9.681984 ], [ 23.389893, 9.270201 ], [ 23.455811, 8.955619 ], [ 23.801880, 8.667918 ], [ 24.565430, 8.233237 ], [ 25.114746, 7.825289 ], [ 25.120239, 7.504089 ], [ 25.795898, 6.980954 ], [ 26.213379, 6.550017 ], [ 26.460571, 5.949363 ], [ 27.213135, 5.555848 ], [ 27.372437, 5.238657 ], [ 27.042847, 5.129243 ], [ 26.400146, 5.151128 ], [ 25.647583, 5.260538 ], [ 25.274048, 5.173011 ], [ 25.125732, 4.932251 ], [ 24.801636, 4.899414 ], [ 24.406128, 5.112830 ], [ 23.296509, 4.614753 ], [ 22.840576, 4.713303 ], [ 22.703247, 4.636655 ], [ 22.500000, 4.225900 ], [ 22.401123, 4.034138 ], [ 22.060547, 4.121806 ], [ 22.060547, 10.838701 ], [ 22.230835, 10.973550 ], [ 22.500000, 11.049038 ], [ 22.862549, 11.146066 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.502075, 22.350076 ], [ 36.688843, 22.207749 ], [ 36.864624, 22.004175 ], [ 24.999390, 22.004175 ], [ 24.999390, 22.350076 ], [ 36.502075, 22.350076 ] ] ] } } +, +{ "type": "Feature", "properties": { "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": "Polygon", "coordinates": [ [ [ 36.864624, 22.004175 ], [ 36.881104, 21.943046 ], [ 37.183228, 21.022983 ], [ 36.968994, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.479858, 18.615013 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.429270 ], [ 37.166748, 17.266728 ], [ 36.848145, 16.956979 ], [ 36.749268, 16.293779 ], [ 36.320801, 14.822681 ], [ 36.425171, 14.424040 ], [ 36.265869, 13.565902 ], [ 35.859375, 12.581371 ], [ 35.255127, 12.087667 ], [ 34.826660, 11.323867 ], [ 34.727783, 10.914224 ], [ 34.255371, 10.633615 ], [ 33.958740, 9.584501 ], [ 33.958740, 9.465317 ], [ 33.821411, 9.486990 ], [ 33.837891, 9.985081 ], [ 33.717041, 10.325728 ], [ 33.206177, 10.725381 ], [ 33.085327, 11.442339 ], [ 33.206177, 12.184334 ], [ 32.739258, 12.248760 ], [ 32.673340, 12.028576 ], [ 32.069092, 11.974845 ], [ 32.310791, 11.684514 ], [ 32.398682, 11.081385 ], [ 31.849365, 10.536421 ], [ 31.349487, 9.811916 ], [ 30.833130, 9.709057 ], [ 29.992676, 10.293301 ], [ 29.613647, 10.087854 ], [ 29.514771, 9.795678 ], [ 28.998413, 9.606166 ], [ 28.965454, 9.400291 ], [ 27.965698, 9.400291 ], [ 27.828369, 9.606166 ], [ 27.108765, 9.638661 ], [ 26.751709, 9.470736 ], [ 26.477051, 9.557417 ], [ 25.960693, 10.136524 ], [ 25.790405, 10.412183 ], [ 25.065308, 10.277086 ], [ 24.790649, 9.811916 ], [ 24.532471, 8.917634 ], [ 24.191895, 8.733077 ], [ 23.884277, 8.624472 ], [ 23.801880, 8.667918 ], [ 23.455811, 8.955619 ], [ 23.389893, 9.270201 ], [ 23.554688, 9.681984 ], [ 23.549194, 10.093262 ], [ 22.972412, 10.714587 ], [ 22.862549, 11.146066 ], [ 22.873535, 11.388494 ], [ 22.505493, 11.684514 ], [ 22.500000, 12.136005 ], [ 22.494507, 12.264864 ], [ 22.285767, 12.651058 ], [ 22.060547, 12.613537 ], [ 22.060547, 12.993853 ], [ 22.291260, 13.373588 ], [ 22.181396, 13.790071 ], [ 22.500000, 14.083301 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.109940 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 23.021851, 15.681221 ], [ 23.884277, 15.612456 ], [ 23.834839, 19.580493 ], [ 23.845825, 20.004322 ], [ 24.999390, 20.004322 ], [ 24.999390, 22.004175 ], [ 36.864624, 22.004175 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.739258, 12.248760 ], [ 33.206177, 12.184334 ], [ 33.085327, 11.442339 ], [ 33.206177, 10.725381 ], [ 33.717041, 10.325728 ], [ 33.837891, 9.985081 ], [ 33.821411, 9.486990 ], [ 33.958740, 9.465317 ], [ 33.969727, 8.689639 ], [ 33.821411, 8.379997 ], [ 33.294067, 8.358258 ], [ 32.953491, 7.787194 ], [ 33.563232, 7.716435 ], [ 34.074097, 7.226249 ], [ 34.249878, 6.828261 ], [ 34.705811, 6.599131 ], [ 35.293579, 5.506640 ], [ 34.002686, 4.253290 ], [ 33.387451, 3.793003 ], [ 32.684326, 3.793003 ], [ 31.876831, 3.562765 ], [ 31.245117, 3.782041 ], [ 30.833130, 3.513421 ], [ 29.948730, 4.176594 ], [ 29.712524, 4.603803 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.427124, 4.291636 ], [ 27.976685, 4.412137 ], [ 27.372437, 5.238657 ], [ 27.213135, 5.555848 ], [ 26.460571, 5.949363 ], [ 26.213379, 6.550017 ], [ 25.795898, 6.980954 ], [ 25.120239, 7.504089 ], [ 25.114746, 7.825289 ], [ 24.565430, 8.233237 ], [ 23.884277, 8.624472 ], [ 24.191895, 8.733077 ], [ 24.532471, 8.917634 ], [ 24.790649, 9.811916 ], [ 25.065308, 10.277086 ], [ 25.790405, 10.412183 ], [ 25.960693, 10.136524 ], [ 26.477051, 9.557417 ], [ 26.751709, 9.470736 ], [ 27.108765, 9.638661 ], [ 27.828369, 9.606166 ], [ 27.965698, 9.400291 ], [ 28.965454, 9.400291 ], [ 28.998413, 9.606166 ], [ 29.514771, 9.795678 ], [ 29.613647, 10.087854 ], [ 29.992676, 10.293301 ], [ 30.833130, 9.709057 ], [ 31.349487, 9.811916 ], [ 31.849365, 10.536421 ], [ 32.398682, 11.081385 ], [ 32.310791, 11.684514 ], [ 32.069092, 11.974845 ], [ 32.673340, 12.028576 ], [ 32.739258, 12.248760 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.002686, 4.253290 ], [ 34.475098, 3.557283 ], [ 34.595947, 3.058239 ], [ 35.035400, 1.911267 ], [ 34.667358, 1.180947 ], [ 34.178467, 0.516350 ], [ 33.892822, 0.109863 ], [ 33.892822, 0.000000 ], [ 33.898315, -0.439449 ], [ 29.674072, -0.439449 ], [ 29.816895, -0.203247 ], [ 29.833374, 0.000000 ], [ 29.871826, 0.598744 ], [ 30.086060, 1.065612 ], [ 30.465088, 1.587321 ], [ 30.849609, 1.850874 ], [ 31.173706, 2.207705 ], [ 30.772705, 2.344926 ], [ 30.833130, 3.513421 ], [ 31.245117, 3.782041 ], [ 31.876831, 3.562765 ], [ 32.684326, 3.793003 ], [ 33.387451, 3.793003 ], [ 34.002686, 4.253290 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Eritrea", "sov_a3": "ERI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Eritrea", "adm0_a3": "ERI", "geou_dif": 0, "geounit": "Eritrea", "gu_a3": "ERI", "su_dif": 0, "subunit": "Eritrea", "su_a3": "ERI", "brk_diff": 0, "name": "Eritrea", "name_long": "Eritrea", "brk_a3": "ERI", "brk_name": "Eritrea", "abbrev": "Erit.", "postal": "ER", "formal_en": "State of Eritrea", "name_sort": "Eritrea", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 5647168, "gdp_md_est": 3945, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ER", "iso_a3": "ERI", "iso_n3": "232", "un_a3": "232", "wb_a2": "ER", "wb_a3": "ERI", "woe_id": -99, "adm0_a3_is": "ERI", "adm0_a3_us": "ERI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.408203, 17.999632 ], [ 38.990479, 16.841348 ], [ 39.265137, 15.924356 ], [ 39.808960, 15.437796 ], [ 41.176758, 14.493190 ], [ 41.731567, 13.923404 ], [ 42.588501, 13.004558 ], [ 43.077393, 12.704651 ], [ 42.775269, 12.458033 ], [ 42.346802, 12.543840 ], [ 42.006226, 12.870715 ], [ 41.594238, 13.453737 ], [ 41.154785, 13.774066 ], [ 40.891113, 14.120595 ], [ 40.023193, 14.519780 ], [ 39.336548, 14.535733 ], [ 39.094849, 14.743011 ], [ 38.512573, 14.509144 ], [ 37.902832, 14.960706 ], [ 37.589722, 14.216464 ], [ 36.425171, 14.424040 ], [ 36.320801, 14.822681 ], [ 36.749268, 16.293779 ], [ 36.848145, 16.956979 ], [ 37.166748, 17.266728 ], [ 37.902832, 17.429270 ], [ 38.408203, 17.999632 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.293579, 5.506640 ], [ 35.815430, 5.342583 ], [ 35.815430, 4.778995 ], [ 36.156006, 4.450474 ], [ 36.853638, 4.450474 ], [ 38.117065, 3.601142 ], [ 38.435669, 3.590178 ], [ 38.666382, 3.617589 ], [ 38.891602, 3.502455 ], [ 39.556274, 3.425692 ], [ 39.852905, 3.842332 ], [ 40.764771, 4.258768 ], [ 41.171265, 3.924540 ], [ 41.852417, 3.919060 ], [ 40.979004, 2.789425 ], [ 40.989990, 0.000000 ], [ 40.989990, -0.439449 ], [ 33.898315, -0.439449 ], [ 33.892822, 0.000000 ], [ 33.892822, 0.109863 ], [ 34.178467, 0.516350 ], [ 34.667358, 1.180947 ], [ 35.035400, 1.911267 ], [ 34.595947, 3.058239 ], [ 34.475098, 3.557283 ], [ 34.002686, 4.253290 ], [ 35.293579, 5.506640 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.902832, 14.960706 ], [ 38.512573, 14.509144 ], [ 39.094849, 14.743011 ], [ 39.336548, 14.535733 ], [ 40.023193, 14.519780 ], [ 40.891113, 14.120595 ], [ 41.154785, 13.774066 ], [ 41.594238, 13.453737 ], [ 42.006226, 12.870715 ], [ 42.346802, 12.543840 ], [ 41.995239, 12.103781 ], [ 41.660156, 11.636096 ], [ 41.737061, 11.356182 ], [ 41.753540, 11.054430 ], [ 42.313843, 11.038255 ], [ 42.550049, 11.108337 ], [ 42.775269, 10.930405 ], [ 42.555542, 10.574222 ], [ 42.923584, 10.022948 ], [ 43.291626, 9.541166 ], [ 43.676147, 9.188870 ], [ 45.000000, 8.705929 ], [ 45.439453, 8.548430 ], [ 45.439453, 5.512107 ], [ 45.000000, 5.041699 ], [ 44.961548, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.764282, 4.253290 ], [ 42.127075, 4.236856 ], [ 41.852417, 3.919060 ], [ 41.171265, 3.924540 ], [ 40.764771, 4.258768 ], [ 39.852905, 3.842332 ], [ 39.556274, 3.425692 ], [ 38.891602, 3.502455 ], [ 38.666382, 3.617589 ], [ 38.435669, 3.590178 ], [ 38.117065, 3.601142 ], [ 36.853638, 4.450474 ], [ 36.156006, 4.450474 ], [ 35.815430, 4.778995 ], [ 35.815430, 5.342583 ], [ 35.293579, 5.506640 ], [ 34.705811, 6.599131 ], [ 34.249878, 6.828261 ], [ 34.074097, 7.226249 ], [ 33.563232, 7.716435 ], [ 32.953491, 7.787194 ], [ 33.294067, 8.358258 ], [ 33.821411, 8.379997 ], [ 33.969727, 8.689639 ], [ 33.958740, 9.584501 ], [ 34.255371, 10.633615 ], [ 34.727783, 10.914224 ], [ 34.826660, 11.323867 ], [ 35.255127, 12.087667 ], [ 35.859375, 12.581371 ], [ 36.265869, 13.565902 ], [ 36.425171, 14.424040 ], [ 37.589722, 14.216464 ], [ 37.902832, 14.960706 ] ] ] } } +, +{ "type": "Feature", "properties": { "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": "Polygon", "coordinates": [ [ [ 45.439453, 22.350076 ], [ 45.439453, 17.329664 ], [ 45.395508, 17.334908 ], [ 45.214233, 17.434511 ], [ 45.000000, 17.429270 ], [ 44.060669, 17.413546 ], [ 43.791504, 17.324420 ], [ 43.379517, 17.581194 ], [ 43.110352, 17.093542 ], [ 43.214722, 16.667769 ], [ 42.775269, 16.351768 ], [ 42.648926, 16.778246 ], [ 42.346802, 17.077790 ], [ 42.269897, 17.476432 ], [ 41.753540, 17.837604 ], [ 41.220703, 18.672267 ], [ 40.935059, 19.487308 ], [ 40.242920, 20.179724 ], [ 39.797974, 20.339476 ], [ 39.138794, 21.294493 ], [ 39.028931, 21.943046 ], [ 39.023438, 21.988895 ], [ 39.045410, 22.350076 ], [ 45.439453, 22.350076 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Yemen", "sov_a3": "YEM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Yemen", "adm0_a3": "YEM", "geou_dif": 0, "geounit": "Yemen", "gu_a3": "YEM", "su_dif": 0, "subunit": "Yemen", "su_a3": "YEM", "brk_diff": 0, "name": "Yemen", "name_long": "Yemen", "brk_a3": "YEM", "brk_name": "Yemen", "abbrev": "Yem.", "postal": "YE", "formal_en": "Republic of Yemen", "name_sort": "Yemen, Rep.", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 23822783, "gdp_md_est": 55280, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "YE", "iso_a3": "YEM", "iso_n3": "887", "un_a3": "887", "wb_a2": "RY", "wb_a3": "YEM", "woe_id": -99, "adm0_a3_is": "YEM", "adm0_a3_us": "YEM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.379517, 17.581194 ], [ 43.791504, 17.324420 ], [ 44.060669, 17.413546 ], [ 45.000000, 17.429270 ], [ 45.214233, 17.434511 ], [ 45.395508, 17.334908 ], [ 45.439453, 17.329664 ], [ 45.439453, 13.068777 ], [ 45.401001, 13.031318 ], [ 45.142822, 12.956383 ], [ 45.000000, 12.720726 ], [ 44.989014, 12.704651 ], [ 44.489136, 12.726084 ], [ 44.170532, 12.586732 ], [ 43.478394, 12.640338 ], [ 43.220215, 13.223904 ], [ 43.247681, 13.768731 ], [ 43.082886, 14.067317 ], [ 42.890625, 14.806749 ], [ 42.599487, 15.215288 ], [ 42.802734, 15.262989 ], [ 42.698364, 15.723526 ], [ 42.819214, 15.913791 ], [ 42.775269, 16.351768 ], [ 43.214722, 16.667769 ], [ 43.110352, 17.093542 ], [ 43.379517, 17.581194 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "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": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.143311, 11.463874 ], [ 43.467407, 11.280774 ], [ 43.665161, 10.865676 ], [ 44.115601, 10.450000 ], [ 44.609985, 10.444598 ], [ 45.000000, 10.547221 ], [ 45.439453, 10.671404 ], [ 45.439453, 8.548430 ], [ 45.000000, 8.705929 ], [ 43.676147, 9.188870 ], [ 43.291626, 9.541166 ], [ 42.923584, 10.022948 ], [ 42.555542, 10.574222 ], [ 42.775269, 10.930405 ], [ 43.143311, 11.463874 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 5.512107 ], [ 45.439453, 1.966167 ], [ 45.000000, 1.675176 ], [ 44.066162, 1.054628 ], [ 43.132324, 0.296630 ], [ 42.868652, 0.000000 ], [ 42.473145, -0.439449 ], [ 40.989990, -0.439449 ], [ 40.989990, 0.000000 ], [ 40.979004, 2.789425 ], [ 41.852417, 3.919060 ], [ 42.127075, 4.236856 ], [ 42.764282, 4.253290 ], [ 43.659668, 4.959615 ], [ 44.961548, 5.003394 ], [ 45.000000, 5.041699 ], [ 45.439453, 5.512107 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.647583, 5.260538 ], [ 26.400146, 5.151128 ], [ 27.042847, 5.129243 ], [ 27.372437, 5.238657 ], [ 27.976685, 4.412137 ], [ 28.427124, 4.291636 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.712524, 4.603803 ], [ 29.948730, 4.176594 ], [ 30.833130, 3.513421 ], [ 30.772705, 2.344926 ], [ 31.173706, 2.207705 ], [ 30.849609, 1.850874 ], [ 30.465088, 1.587321 ], [ 30.086060, 1.065612 ], [ 29.871826, 0.598744 ], [ 29.833374, 0.000000 ], [ 29.816895, -0.203247 ], [ 29.674072, -0.439449 ], [ 22.060547, -0.439449 ], [ 22.060547, 4.121806 ], [ 22.401123, 4.034138 ], [ 22.500000, 4.225900 ], [ 22.703247, 4.636655 ], [ 22.840576, 4.713303 ], [ 23.296509, 4.614753 ], [ 24.406128, 5.112830 ], [ 24.801636, 4.899414 ], [ 25.125732, 4.932251 ], [ 25.274048, 5.173011 ], [ 25.647583, 5.260538 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.927734, 41.310824 ], [ 25.197144, 41.236511 ], [ 25.043335, 41.310824 ], [ 25.927734, 41.310824 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.065918, 41.310824 ], [ 44.967041, 41.248903 ], [ 43.577271, 41.095912 ], [ 43.154297, 41.310824 ], [ 45.065918, 41.310824 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.060547, 32.768800 ], [ 22.500000, 32.699489 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.194209 ], [ 23.604126, 32.189560 ], [ 23.922729, 32.017392 ], [ 24.916992, 31.900878 ], [ 25.164185, 31.569175 ], [ 24.801636, 31.090574 ], [ 24.955444, 30.666266 ], [ 24.697266, 30.045322 ], [ 24.999390, 29.243270 ], [ 24.999390, 21.534847 ], [ 22.060547, 21.534847 ], [ 22.060547, 32.768800 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "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": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.697510, 35.706377 ], [ 24.241333, 35.371135 ], [ 25.021362, 35.429344 ], [ 25.768433, 35.357696 ], [ 25.740967, 35.182788 ], [ 26.284790, 35.303919 ], [ 26.163940, 35.007503 ], [ 24.724731, 34.921971 ], [ 24.730225, 35.088451 ], [ 23.510742, 35.281501 ], [ 23.697510, 35.706377 ] ] ], [ [ [ 26.477051, 41.310824 ], [ 26.312256, 40.979898 ], [ 26.290283, 40.938415 ], [ 26.054077, 40.826280 ], [ 25.444336, 40.855371 ], [ 24.922485, 40.950863 ], [ 23.713989, 40.688969 ], [ 24.406128, 40.128491 ], [ 23.895264, 39.964491 ], [ 23.340454, 39.964491 ], [ 22.813110, 40.476203 ], [ 22.620850, 40.258569 ], [ 22.846069, 39.660685 ], [ 23.345947, 39.193948 ], [ 22.972412, 38.972222 ], [ 23.527222, 38.513788 ], [ 24.021606, 38.220920 ], [ 24.038086, 37.657732 ], [ 23.109741, 37.922534 ], [ 23.406372, 37.413800 ], [ 22.774658, 37.309014 ], [ 23.153687, 36.425703 ], [ 22.500000, 36.412442 ], [ 22.489014, 36.412442 ], [ 22.060547, 36.641978 ], [ 22.060547, 41.149706 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.791138, 41.310824 ], [ 25.043335, 41.310824 ], [ 25.197144, 41.236511 ], [ 25.927734, 41.310824 ], [ 26.477051, 41.310824 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.493530, 31.587894 ], [ 27.454834, 31.325487 ], [ 28.449097, 31.029401 ], [ 28.910522, 30.873940 ], [ 29.679565, 31.189308 ], [ 30.091553, 31.475524 ], [ 30.975952, 31.559815 ], [ 31.684570, 31.433350 ], [ 31.959229, 30.935213 ], [ 32.189941, 31.264466 ], [ 32.991943, 31.024694 ], [ 33.771973, 30.968189 ], [ 34.260864, 31.222197 ], [ 34.920044, 29.501769 ], [ 34.639893, 29.104177 ], [ 34.425659, 28.347899 ], [ 34.151001, 27.824503 ], [ 33.920288, 27.649472 ], [ 33.134766, 28.420391 ], [ 32.420654, 29.854937 ], [ 32.316284, 29.764377 ], [ 32.733765, 28.709861 ], [ 33.343506, 27.702984 ], [ 34.101562, 26.145576 ], [ 34.469604, 25.601902 ], [ 34.793701, 25.035839 ], [ 35.689087, 23.931034 ], [ 35.491333, 23.755182 ], [ 35.524292, 23.104997 ], [ 36.688843, 22.207749 ], [ 36.864624, 22.004175 ], [ 24.999390, 22.004175 ], [ 24.999390, 29.243270 ], [ 24.697266, 30.045322 ], [ 24.955444, 30.666266 ], [ 24.801636, 31.090574 ], [ 25.164185, 31.569175 ], [ 26.493530, 31.587894 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 43.154297, 41.310824 ], [ 43.577271, 41.095912 ], [ 43.632202, 40.979898 ], [ 43.747559, 40.743095 ], [ 43.654175, 40.254377 ], [ 44.395752, 40.006580 ], [ 44.791260, 39.715638 ], [ 44.104614, 39.431950 ], [ 44.417725, 38.281313 ], [ 44.225464, 37.974515 ], [ 44.769287, 37.173449 ], [ 44.291382, 37.002553 ], [ 43.939819, 37.256566 ], [ 42.775269, 37.387617 ], [ 42.346802, 37.230328 ], [ 41.209717, 37.077093 ], [ 40.671387, 37.094622 ], [ 39.517822, 36.716871 ], [ 38.699341, 36.716871 ], [ 38.166504, 36.901587 ], [ 37.062378, 36.624345 ], [ 36.738281, 36.818080 ], [ 36.683350, 36.261992 ], [ 36.145020, 35.822267 ], [ 35.776978, 36.275279 ], [ 36.156006, 36.650793 ], [ 35.546265, 36.567012 ], [ 34.711304, 36.796090 ], [ 34.024658, 36.222119 ], [ 32.508545, 36.111253 ], [ 31.695557, 36.646385 ], [ 30.618896, 36.681636 ], [ 30.388184, 36.266421 ], [ 29.696045, 36.146747 ], [ 28.729248, 36.677231 ], [ 27.636108, 36.659606 ], [ 27.048340, 37.653383 ], [ 26.317749, 38.212288 ], [ 26.801147, 38.989303 ], [ 26.169434, 39.465885 ], [ 27.279053, 40.421860 ], [ 28.817139, 40.463666 ], [ 29.102783, 40.979898 ], [ 29.234619, 41.224118 ], [ 31.140747, 41.087632 ], [ 31.552734, 41.310824 ], [ 37.001953, 41.310824 ], [ 38.226929, 40.979898 ], [ 38.342285, 40.950863 ], [ 38.583984, 40.979898 ], [ 39.512329, 41.104191 ], [ 40.369263, 41.017211 ], [ 41.039429, 41.310824 ], [ 43.154297, 41.310824 ] ] ], [ [ [ 28.954468, 41.310824 ], [ 28.987427, 41.302571 ], [ 28.806152, 41.058644 ], [ 27.614136, 41.000630 ], [ 27.586670, 40.979898 ], [ 27.191162, 40.693134 ], [ 26.356201, 40.153687 ], [ 26.043091, 40.618122 ], [ 26.054077, 40.826280 ], [ 26.290283, 40.938415 ], [ 26.312256, 40.979898 ], [ 26.477051, 41.310824 ], [ 28.954468, 41.310824 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Syria", "sov_a3": "SYR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Syria", "adm0_a3": "SYR", "geou_dif": 0, "geounit": "Syria", "gu_a3": "SYR", "su_dif": 0, "subunit": "Syria", "su_a3": "SYR", "brk_diff": 0, "name": "Syria", "name_long": "Syria", "brk_a3": "SYR", "brk_name": "Syria", "abbrev": "Syria", "postal": "SYR", "formal_en": "Syrian Arab Republic", "name_sort": "Syrian Arab Republic", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 20178485, "gdp_md_est": 98830, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SY", "iso_a3": "SYR", "iso_n3": "760", "un_a3": "760", "wb_a2": "SY", "wb_a3": "SYR", "woe_id": -99, "adm0_a3_is": "SYR", "adm0_a3_us": "SYR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.346802, 37.230328 ], [ 41.835938, 36.606709 ], [ 41.286621, 36.359375 ], [ 41.380005, 35.630512 ], [ 41.000977, 34.420505 ], [ 38.787231, 33.380999 ], [ 36.831665, 32.314991 ], [ 35.700073, 32.717977 ], [ 35.831909, 32.870360 ], [ 35.820923, 33.280028 ], [ 36.062622, 33.829357 ], [ 36.606445, 34.202716 ], [ 36.447144, 34.597042 ], [ 35.996704, 34.646766 ], [ 35.903320, 35.411438 ], [ 36.145020, 35.822267 ], [ 36.683350, 36.261992 ], [ 36.738281, 36.818080 ], [ 37.062378, 36.624345 ], [ 38.166504, 36.901587 ], [ 38.699341, 36.716871 ], [ 39.517822, 36.716871 ], [ 40.671387, 37.094622 ], [ 41.209717, 37.077093 ], [ 42.346802, 37.230328 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.775269, 37.387617 ], [ 43.939819, 37.256566 ], [ 44.291382, 37.002553 ], [ 44.769287, 37.173449 ], [ 45.000000, 36.756490 ], [ 45.417480, 35.978006 ], [ 45.439453, 35.969115 ], [ 45.439453, 34.048108 ], [ 45.411987, 33.970698 ], [ 45.439453, 33.938803 ], [ 45.439453, 29.152161 ], [ 45.000000, 29.166552 ], [ 44.708862, 29.180941 ], [ 41.885376, 31.194008 ], [ 40.396729, 31.891551 ], [ 39.193726, 32.161663 ], [ 38.787231, 33.380999 ], [ 41.000977, 34.420505 ], [ 41.380005, 35.630512 ], [ 41.286621, 36.359375 ], [ 41.835938, 36.606709 ], [ 42.346802, 37.230328 ], [ 42.775269, 37.387617 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Jordan", "sov_a3": "JOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Jordan", "adm0_a3": "JOR", "geou_dif": 0, "geounit": "Jordan", "gu_a3": "JOR", "su_dif": 0, "subunit": "Jordan", "su_a3": "JOR", "brk_diff": 0, "name": "Jordan", "name_long": "Jordan", "brk_a3": "JOR", "brk_name": "Jordan", "abbrev": "Jord.", "postal": "J", "formal_en": "Hashemite Kingdom of Jordan", "name_sort": "Jordan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 6342948, "gdp_md_est": 31610, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "JO", "iso_a3": "JOR", "iso_n3": "400", "un_a3": "400", "wb_a2": "JO", "wb_a3": "JOR", "woe_id": -99, "adm0_a3_is": "JOR", "adm0_a3_us": "JOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.787231, 33.380999 ], [ 39.193726, 32.161663 ], [ 39.001465, 32.012734 ], [ 37.001953, 31.512996 ], [ 37.996216, 30.510217 ], [ 37.666626, 30.339695 ], [ 37.501831, 30.007274 ], [ 36.738281, 29.869229 ], [ 36.496582, 29.506549 ], [ 36.068115, 29.200123 ], [ 34.953003, 29.358239 ], [ 34.920044, 29.501769 ], [ 35.419922, 31.104685 ], [ 35.392456, 31.489578 ], [ 35.540771, 31.784217 ], [ 35.540771, 32.398516 ], [ 35.716553, 32.713355 ], [ 36.831665, 32.314991 ], [ 38.787231, 33.380999 ] ] ] } } +, +{ "type": "Feature", "properties": { "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": "Polygon", "coordinates": [ [ [ 36.864624, 22.004175 ], [ 36.881104, 21.943046 ], [ 37.018433, 21.534847 ], [ 24.999390, 21.534847 ], [ 24.999390, 22.004175 ], [ 36.864624, 22.004175 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.474365 ], [ 45.439453, 39.474365 ], [ 45.439453, 38.891033 ], [ 45.000000, 39.296048 ], [ 44.950562, 39.338546 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ] ] ], [ [ [ 45.439453, 40.867834 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.248903 ], [ 45.065918, 41.310824 ], [ 45.439453, 41.310824 ], [ 45.439453, 40.867834 ] ] ], [ [ [ 45.439453, 40.663973 ], [ 45.439453, 40.513799 ], [ 45.357056, 40.563895 ], [ 45.439453, 40.663973 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 35.969115 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.756490 ], [ 44.769287, 37.173449 ], [ 44.225464, 37.974515 ], [ 44.417725, 38.281313 ], [ 44.104614, 39.431950 ], [ 44.791260, 39.715638 ], [ 44.950562, 39.338546 ], [ 45.000000, 39.296048 ], [ 45.439453, 38.891033 ], [ 45.439453, 35.969115 ] ] ], [ [ [ 45.439453, 34.048108 ], [ 45.439453, 33.938803 ], [ 45.411987, 33.970698 ], [ 45.439453, 34.048108 ] ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 39.193726, 32.161663 ], [ 40.396729, 31.891551 ], [ 41.885376, 31.194008 ], [ 44.708862, 29.180941 ], [ 45.000000, 29.166552 ], [ 45.439453, 29.152161 ], [ 45.439453, 21.534847 ], [ 39.094849, 21.534847 ], [ 39.028931, 21.943046 ], [ 39.023438, 21.988895 ], [ 39.061890, 22.583583 ], [ 38.490601, 23.689805 ], [ 38.023682, 24.081574 ], [ 37.479858, 24.287027 ], [ 37.150269, 24.861519 ], [ 37.205200, 25.085599 ], [ 36.930542, 25.606856 ], [ 36.639404, 25.829561 ], [ 36.243896, 26.573790 ], [ 35.128784, 28.067133 ], [ 34.628906, 28.062286 ], [ 34.782715, 28.608637 ], [ 34.832153, 28.960089 ], [ 34.953003, 29.358239 ], [ 36.068115, 29.200123 ], [ 36.496582, 29.506549 ], [ 36.738281, 29.869229 ], [ 37.501831, 30.007274 ], [ 37.666626, 30.339695 ], [ 37.996216, 30.510217 ], [ 37.001953, 31.512996 ], [ 39.001465, 32.012734 ], [ 39.193726, 32.161663 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 45.439453, 56.022948 ], [ 45.439453, 42.512602 ], [ 45.000000, 42.609706 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.948730, 55.776573 ], [ 29.893799, 55.792017 ], [ 29.838867, 55.776573 ], [ 29.366455, 55.671389 ], [ 29.306030, 55.776573 ], [ 29.229126, 55.918430 ], [ 28.789673, 56.022948 ], [ 45.439453, 56.022948 ] ] ], [ [ [ 22.060547, 55.059495 ], [ 22.313232, 55.015426 ], [ 22.500000, 54.949231 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 22.500000, 54.326135 ], [ 22.060547, 54.322931 ], [ 22.060547, 55.059495 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Poland", "sov_a3": "POL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Poland", "adm0_a3": "POL", "geou_dif": 0, "geounit": "Poland", "gu_a3": "POL", "su_dif": 0, "subunit": "Poland", "su_a3": "POL", "brk_diff": 0, "name": "Poland", "name_long": "Poland", "brk_a3": "POL", "brk_name": "Poland", "abbrev": "Pol.", "postal": "PL", "formal_en": "Republic of Poland", "name_sort": "Poland", "mapcolor7": 3, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 38482919, "gdp_md_est": 667900, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PL", "iso_a3": "POL", "iso_n3": "616", "un_a3": "616", "wb_a2": "PL", "wb_a3": "POL", "woe_id": -99, "adm0_a3_is": "POL", "adm0_a3_us": "POL", "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": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.730713, 54.329338 ], [ 23.241577, 54.223496 ], [ 23.483276, 53.914046 ], [ 23.527222, 53.471700 ], [ 23.801880, 53.090725 ], [ 23.796387, 52.693032 ], [ 23.197632, 52.489470 ], [ 23.505249, 52.025459 ], [ 23.521729, 51.580483 ], [ 24.027100, 50.708634 ], [ 23.922729, 50.426019 ], [ 23.422852, 50.310392 ], [ 22.516479, 49.478832 ], [ 22.774658, 49.030665 ], [ 22.554932, 49.088258 ], [ 22.500000, 49.109838 ], [ 22.060547, 49.289306 ], [ 22.060547, 54.322931 ], [ 22.500000, 54.326135 ], [ 22.730713, 54.329338 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Hungary", "sov_a3": "HUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Hungary", "adm0_a3": "HUN", "geou_dif": 0, "geounit": "Hungary", "gu_a3": "HUN", "su_dif": 0, "subunit": "Hungary", "su_a3": "HUN", "brk_diff": 0, "name": "Hungary", "name_long": "Hungary", "brk_a3": "HUN", "brk_name": "Hungary", "abbrev": "Hun.", "postal": "HU", "formal_en": "Republic of Hungary", "name_sort": "Hungary", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 9905596, "gdp_md_est": 196600, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "HU", "iso_a3": "HUN", "iso_n3": "348", "un_a3": "348", "wb_a2": "HU", "wb_a3": "HUN", "woe_id": -99, "adm0_a3_is": "HUN", "adm0_a3_us": "HUN", "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": "Polygon", "coordinates": [ [ [ 22.082520, 48.425555 ], [ 22.500000, 48.221013 ], [ 22.637329, 48.151428 ], [ 22.708740, 47.883197 ], [ 22.500000, 47.813155 ], [ 22.098999, 47.672786 ], [ 22.060547, 47.617273 ], [ 22.060547, 48.410972 ], [ 22.082520, 48.425555 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.060547, 49.289306 ], [ 22.500000, 49.109838 ], [ 22.554932, 49.088258 ], [ 22.500000, 49.034267 ], [ 22.280273, 48.828566 ], [ 22.082520, 48.425555 ], [ 22.060547, 48.410972 ], [ 22.060547, 49.289306 ] ] ] } } +, +{ "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": [ [ [ 22.456055, 44.703802 ], [ 22.500000, 44.684277 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.429857 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.386692 ], [ 22.653809, 44.237328 ], [ 22.500000, 44.091531 ], [ 22.406616, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.213183 ], [ 22.604370, 42.900113 ], [ 22.500000, 42.702623 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.512602 ], [ 22.543945, 42.463993 ], [ 22.500000, 42.423457 ], [ 22.379150, 42.322001 ], [ 22.060547, 42.309815 ], [ 22.060547, 44.523927 ], [ 22.142944, 44.480830 ], [ 22.456055, 44.703802 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "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": "Polygon", "coordinates": [ [ [ 27.767944, 56.022948 ], [ 27.075806, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.174927, 55.776573 ], [ 25.686035, 56.022948 ], [ 27.767944, 56.022948 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.686035, 56.022948 ], [ 26.174927, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.586914, 55.169456 ], [ 25.768433, 54.848153 ], [ 25.532227, 54.284469 ], [ 24.450073, 53.907574 ], [ 23.483276, 53.914046 ], [ 23.241577, 54.223496 ], [ 22.730713, 54.329338 ], [ 22.648315, 54.584797 ], [ 22.752686, 54.857640 ], [ 22.500000, 54.949231 ], [ 22.313232, 55.015426 ], [ 22.060547, 55.059495 ], [ 22.060547, 56.022948 ], [ 25.686035, 56.022948 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Belarus", "sov_a3": "BLR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belarus", "adm0_a3": "BLR", "geou_dif": 0, "geounit": "Belarus", "gu_a3": "BLR", "su_dif": 0, "subunit": "Belarus", "su_a3": "BLR", "brk_diff": 0, "name": "Belarus", "name_long": "Belarus", "brk_a3": "BLR", "brk_name": "Belarus", "abbrev": "Bela.", "postal": "BY", "formal_en": "Republic of Belarus", "name_sort": "Belarus", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 9648533, "gdp_md_est": 114100, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BY", "iso_a3": "BLR", "iso_n3": "112", "un_a3": "112", "wb_a2": "BY", "wb_a3": "BLR", "woe_id": -99, "adm0_a3_is": "BLR", "adm0_a3_us": "BLR", "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": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.789673, 56.022948 ], [ 29.229126, 55.918430 ], [ 29.306030, 55.776573 ], [ 29.366455, 55.671389 ], [ 29.838867, 55.776573 ], [ 29.893799, 55.792017 ], [ 29.948730, 55.776573 ], [ 30.871582, 55.553495 ], [ 30.970459, 55.084656 ], [ 30.756226, 54.813348 ], [ 31.382446, 54.159218 ], [ 31.788940, 53.975474 ], [ 31.728516, 53.794162 ], [ 32.404175, 53.618579 ], [ 32.689819, 53.353830 ], [ 32.299805, 53.133590 ], [ 31.492310, 53.169826 ], [ 31.300049, 53.074228 ], [ 31.536255, 52.742943 ], [ 31.783447, 52.103131 ], [ 30.926514, 52.042355 ], [ 30.618896, 51.825593 ], [ 30.552979, 51.320314 ], [ 30.151978, 51.416338 ], [ 29.251099, 51.368351 ], [ 28.987427, 51.604372 ], [ 28.613892, 51.430039 ], [ 28.240356, 51.573656 ], [ 27.449341, 51.594135 ], [ 26.334229, 51.832383 ], [ 25.323486, 51.913779 ], [ 24.548950, 51.890054 ], [ 23.999634, 51.618017 ], [ 23.521729, 51.580483 ], [ 23.505249, 52.025459 ], [ 23.197632, 52.489470 ], [ 23.796387, 52.693032 ], [ 23.801880, 53.090725 ], [ 23.527222, 53.471700 ], [ 23.483276, 53.914046 ], [ 24.450073, 53.907574 ], [ 25.532227, 54.284469 ], [ 25.768433, 54.848153 ], [ 26.586914, 55.169456 ], [ 26.493530, 55.615589 ], [ 27.075806, 55.776573 ], [ 27.767944, 56.022948 ], [ 28.789673, 56.022948 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "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": "Polygon", "coordinates": [ [ [ 26.614380, 48.221013 ], [ 26.921997, 48.125768 ], [ 27.229614, 47.827908 ], [ 27.548218, 47.405785 ], [ 28.125000, 46.811339 ], [ 28.157959, 46.373464 ], [ 28.053589, 45.947330 ], [ 28.229370, 45.490946 ], [ 28.674316, 45.305803 ], [ 29.146729, 45.467836 ], [ 29.602661, 45.294211 ], [ 29.624634, 45.038597 ], [ 29.141235, 44.820812 ], [ 28.833618, 44.914249 ], [ 28.553467, 43.707594 ], [ 27.965698, 43.814711 ], [ 27.240601, 44.178265 ], [ 26.065063, 43.945372 ], [ 25.565186, 43.691708 ], [ 24.098511, 43.743321 ], [ 23.329468, 43.897892 ], [ 22.939453, 43.826601 ], [ 22.653809, 44.237328 ], [ 22.500000, 44.386692 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.429857 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.684277 ], [ 22.456055, 44.703802 ], [ 22.142944, 44.480830 ], [ 22.060547, 44.523927 ], [ 22.060547, 47.617273 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.813155 ], [ 22.708740, 47.883197 ], [ 23.137207, 48.096426 ], [ 23.757935, 47.986245 ], [ 24.400635, 47.982568 ], [ 24.862061, 47.739323 ], [ 25.202637, 47.894248 ], [ 25.944214, 47.989922 ], [ 26.196899, 48.221013 ], [ 26.614380, 48.221013 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.653809, 44.237328 ], [ 22.939453, 43.826601 ], [ 23.329468, 43.897892 ], [ 24.098511, 43.743321 ], [ 25.565186, 43.691708 ], [ 26.065063, 43.945372 ], [ 27.240601, 44.178265 ], [ 27.965698, 43.814711 ], [ 28.553467, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.669067, 42.581400 ], [ 27.993164, 42.008489 ], [ 27.130737, 42.143042 ], [ 26.114502, 41.828642 ], [ 26.103516, 41.331451 ], [ 25.197144, 41.236511 ], [ 24.488525, 41.586688 ], [ 23.692017, 41.310824 ], [ 22.950439, 41.339700 ], [ 22.879028, 42.000325 ], [ 22.500000, 42.244785 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.423457 ], [ 22.543945, 42.463993 ], [ 22.500000, 42.512602 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.702623 ], [ 22.604370, 42.900113 ], [ 22.983398, 43.213183 ], [ 22.500000, 43.644026 ], [ 22.406616, 44.008620 ], [ 22.500000, 44.091531 ], [ 22.653809, 44.237328 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 33.750000, 52.335339 ], [ 34.387207, 51.771239 ], [ 34.140015, 51.566827 ], [ 34.222412, 51.258477 ], [ 35.018921, 51.210325 ], [ 35.375977, 50.774682 ], [ 35.354004, 50.579749 ], [ 36.622925, 50.226124 ], [ 37.391968, 50.384005 ], [ 38.007202, 49.915862 ], [ 38.594971, 49.926472 ], [ 40.067139, 49.603591 ], [ 40.078125, 49.310799 ], [ 39.671631, 48.785152 ], [ 39.891357, 48.235650 ], [ 39.737549, 47.901614 ], [ 38.765259, 47.827908 ], [ 38.254395, 47.546872 ], [ 38.221436, 47.103784 ], [ 37.424927, 47.025206 ], [ 36.754761, 46.702202 ], [ 35.820923, 46.649436 ], [ 34.958496, 46.274834 ], [ 35.018921, 45.652448 ], [ 35.507812, 45.410020 ], [ 36.529541, 45.471688 ], [ 36.331787, 45.116177 ], [ 35.238647, 44.941473 ], [ 33.881836, 44.363133 ], [ 33.321533, 44.566991 ], [ 33.546753, 45.038597 ], [ 32.453613, 45.328979 ], [ 32.629395, 45.521744 ], [ 33.585205, 45.851760 ], [ 33.294067, 46.080852 ], [ 31.739502, 46.335551 ], [ 31.673584, 46.709736 ], [ 30.745239, 46.585294 ], [ 30.377197, 46.035109 ], [ 29.602661, 45.294211 ], [ 29.146729, 45.467836 ], [ 28.674316, 45.305803 ], [ 28.229370, 45.490946 ], [ 28.482056, 45.598666 ], [ 28.657837, 45.943511 ], [ 28.932495, 46.259645 ], [ 28.861084, 46.441642 ], [ 29.069824, 46.521076 ], [ 29.168701, 46.381044 ], [ 29.756470, 46.350719 ], [ 30.020142, 46.426499 ], [ 29.833374, 46.528635 ], [ 29.904785, 46.675826 ], [ 29.558716, 46.931510 ], [ 29.410400, 47.349989 ], [ 29.047852, 47.513491 ], [ 29.119263, 47.850031 ], [ 28.668823, 48.118434 ], [ 28.256836, 48.158757 ], [ 27.520752, 48.469279 ], [ 26.856079, 48.370848 ], [ 26.614380, 48.221013 ], [ 26.196899, 48.221013 ], [ 25.944214, 47.989922 ], [ 25.202637, 47.894248 ], [ 24.862061, 47.739323 ], [ 24.400635, 47.982568 ], [ 23.757935, 47.986245 ], [ 23.137207, 48.096426 ], [ 22.708740, 47.883197 ], [ 22.637329, 48.151428 ], [ 22.500000, 48.221013 ], [ 22.082520, 48.425555 ], [ 22.280273, 48.828566 ], [ 22.500000, 49.034267 ], [ 22.554932, 49.088258 ], [ 22.774658, 49.030665 ], [ 22.516479, 49.478832 ], [ 23.422852, 50.310392 ], [ 23.922729, 50.426019 ], [ 24.027100, 50.708634 ], [ 23.521729, 51.580483 ], [ 23.999634, 51.618017 ], [ 24.548950, 51.890054 ], [ 25.323486, 51.913779 ], [ 26.334229, 51.832383 ], [ 27.449341, 51.594135 ], [ 28.240356, 51.573656 ], [ 28.613892, 51.430039 ], [ 28.987427, 51.604372 ], [ 29.251099, 51.368351 ], [ 30.151978, 51.416338 ], [ 30.552979, 51.320314 ], [ 30.618896, 51.825593 ], [ 30.926514, 52.042355 ], [ 31.783447, 52.103131 ], [ 32.156982, 52.062623 ], [ 32.409668, 52.291683 ], [ 32.711792, 52.241256 ], [ 33.750000, 52.335339 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.072632, 43.556510 ], [ 40.918579, 43.385090 ], [ 42.390747, 43.221190 ], [ 43.753052, 42.742978 ], [ 43.928833, 42.557127 ], [ 44.533081, 42.714732 ], [ 45.000000, 42.609706 ], [ 45.439453, 42.512602 ], [ 45.439453, 41.327326 ], [ 45.214233, 41.413896 ], [ 45.000000, 41.269550 ], [ 44.967041, 41.248903 ], [ 43.577271, 41.095912 ], [ 42.615967, 41.586688 ], [ 41.550293, 41.537366 ], [ 41.698608, 41.963575 ], [ 41.451416, 42.646081 ], [ 40.874634, 43.016697 ], [ 40.319824, 43.129052 ], [ 39.951782, 43.436966 ], [ 40.072632, 43.556510 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "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": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.114502, 41.828642 ], [ 26.603394, 41.566142 ], [ 26.312256, 40.979898 ], [ 26.290283, 40.938415 ], [ 26.054077, 40.826280 ], [ 25.444336, 40.855371 ], [ 24.922485, 40.950863 ], [ 23.713989, 40.688969 ], [ 23.763428, 40.647304 ], [ 22.060547, 40.647304 ], [ 22.060547, 41.149706 ], [ 22.500000, 41.137296 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.950439, 41.339700 ], [ 23.692017, 41.310824 ], [ 24.488525, 41.586688 ], [ 25.197144, 41.236511 ], [ 26.103516, 41.331451 ], [ 26.114502, 41.828642 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.167236, 42.041134 ], [ 36.908569, 41.335576 ], [ 38.226929, 40.979898 ], [ 38.342285, 40.950863 ], [ 38.583984, 40.979898 ], [ 39.512329, 41.104191 ], [ 40.369263, 41.017211 ], [ 41.550293, 41.537366 ], [ 42.615967, 41.586688 ], [ 43.577271, 41.095912 ], [ 43.632202, 40.979898 ], [ 43.747559, 40.743095 ], [ 43.731079, 40.647304 ], [ 28.921509, 40.647304 ], [ 29.102783, 40.979898 ], [ 29.234619, 41.224118 ], [ 31.140747, 41.087632 ], [ 32.343750, 41.738528 ], [ 33.508301, 42.020733 ], [ 35.167236, 42.041134 ] ] ], [ [ [ 27.130737, 42.143042 ], [ 27.993164, 42.008489 ], [ 28.114014, 41.623655 ], [ 28.987427, 41.302571 ], [ 28.806152, 41.058644 ], [ 27.614136, 41.000630 ], [ 27.586670, 40.979898 ], [ 27.191162, 40.693134 ], [ 27.119751, 40.647304 ], [ 26.043091, 40.647304 ], [ 26.054077, 40.826280 ], [ 26.290283, 40.938415 ], [ 26.312256, 40.979898 ], [ 26.603394, 41.566142 ], [ 26.114502, 41.828642 ], [ 27.130737, 42.143042 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 40.867834 ], [ 45.175781, 40.988192 ], [ 45.000000, 41.215854 ], [ 44.967041, 41.248903 ], [ 45.000000, 41.269550 ], [ 45.214233, 41.413896 ], [ 45.439453, 41.327326 ], [ 45.439453, 40.867834 ] ] ], [ [ [ 45.439453, 40.663973 ], [ 45.439453, 40.647304 ], [ 45.422974, 40.647304 ], [ 45.439453, 40.663973 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 45.439453, 66.687784 ], [ 45.439453, 55.528631 ], [ 30.877075, 55.528631 ], [ 30.871582, 55.553495 ], [ 29.948730, 55.776573 ], [ 29.893799, 55.792017 ], [ 29.838867, 55.776573 ], [ 29.366455, 55.671389 ], [ 29.306030, 55.776573 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.498291, 66.513260 ], [ 29.317017, 66.687784 ], [ 33.502808, 66.687784 ], [ 33.184204, 66.633377 ], [ 33.447876, 66.513260 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.324341, 66.513260 ], [ 44.472656, 66.687784 ], [ 45.439453, 66.687784 ] ] ], [ [ [ 40.902100, 66.687784 ], [ 40.534058, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 35.375977, 66.513260 ], [ 34.343262, 66.687784 ], [ 40.902100, 66.687784 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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": "Polygon", "coordinates": [ [ [ 23.560181, 66.687784 ], [ 23.560181, 66.513260 ], [ 23.565674, 66.396961 ], [ 23.900757, 66.009086 ], [ 22.500000, 65.777998 ], [ 22.181396, 65.723852 ], [ 22.060547, 65.637889 ], [ 22.060547, 66.687784 ], [ 23.560181, 66.687784 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.317017, 66.687784 ], [ 29.498291, 66.513260 ], [ 30.212402, 65.807279 ], [ 29.542236, 64.949139 ], [ 30.443115, 64.206377 ], [ 30.031128, 63.553446 ], [ 31.514282, 62.870179 ], [ 31.135254, 62.359805 ], [ 30.206909, 61.780916 ], [ 28.064575, 60.505935 ], [ 26.251831, 60.424699 ], [ 24.494019, 60.059358 ], [ 22.868042, 59.847574 ], [ 22.500000, 60.196156 ], [ 22.285767, 60.392148 ], [ 22.060547, 60.470758 ], [ 22.060547, 63.555892 ], [ 22.439575, 63.818864 ], [ 22.500000, 63.845512 ], [ 24.730225, 64.902580 ], [ 25.394897, 65.111460 ], [ 25.290527, 65.535721 ], [ 23.900757, 66.009086 ], [ 23.565674, 66.396961 ], [ 23.560181, 66.513260 ], [ 23.560181, 66.687784 ], [ 29.317017, 66.687784 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "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": "Polygon", "coordinates": [ [ [ 25.164185, 57.970244 ], [ 25.598145, 57.847674 ], [ 26.460571, 57.477450 ], [ 27.284546, 57.477450 ], [ 27.767944, 57.246366 ], [ 27.850342, 56.761757 ], [ 28.174438, 56.170023 ], [ 27.075806, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.174927, 55.776573 ], [ 25.532227, 56.102683 ], [ 24.999390, 56.166965 ], [ 24.856567, 56.374377 ], [ 23.873291, 56.273861 ], [ 22.500000, 56.328721 ], [ 22.197876, 56.337856 ], [ 22.060547, 56.301301 ], [ 22.060547, 57.586559 ], [ 22.500000, 57.745213 ], [ 22.521973, 57.754007 ], [ 23.312988, 57.007842 ], [ 24.120483, 57.025784 ], [ 24.312744, 57.795016 ], [ 25.164185, 57.970244 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Estonia", "sov_a3": "EST", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Estonia", "adm0_a3": "EST", "geou_dif": 0, "geounit": "Estonia", "gu_a3": "EST", "su_dif": 0, "subunit": "Estonia", "su_a3": "EST", "brk_diff": 0, "name": "Estonia", "name_long": "Estonia", "brk_a3": "EST", "brk_name": "Estonia", "abbrev": "Est.", "postal": "EST", "formal_en": "Republic of Estonia", "name_sort": "Estonia", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 10, "pop_est": 1299371, "gdp_md_est": 27410, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "EE", "iso_a3": "EST", "iso_n3": "233", "un_a3": "233", "wb_a2": "EE", "wb_a3": "EST", "woe_id": -99, "adm0_a3_is": "EST", "adm0_a3_us": "EST", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.861816, 59.612212 ], [ 26.943970, 59.447868 ], [ 27.976685, 59.475779 ], [ 28.130493, 59.302356 ], [ 27.416382, 58.725451 ], [ 27.713013, 57.792089 ], [ 27.284546, 57.477450 ], [ 26.460571, 57.477450 ], [ 25.598145, 57.847674 ], [ 25.164185, 57.970244 ], [ 24.312744, 57.795016 ], [ 24.428101, 58.384438 ], [ 24.060059, 58.257508 ], [ 23.422852, 58.614056 ], [ 23.334961, 59.189999 ], [ 24.603882, 59.467408 ], [ 25.861816, 59.612212 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.856567, 56.374377 ], [ 24.999390, 56.166965 ], [ 25.532227, 56.102683 ], [ 26.174927, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.510010, 55.528631 ], [ 22.060547, 55.528631 ], [ 22.060547, 56.301301 ], [ 22.197876, 56.337856 ], [ 22.500000, 56.328721 ], [ 23.873291, 56.273861 ], [ 24.856567, 56.374377 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Belarus", "sov_a3": "BLR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belarus", "adm0_a3": "BLR", "geou_dif": 0, "geounit": "Belarus", "gu_a3": "BLR", "su_dif": 0, "subunit": "Belarus", "su_a3": "BLR", "brk_diff": 0, "name": "Belarus", "name_long": "Belarus", "brk_a3": "BLR", "brk_name": "Belarus", "abbrev": "Bela.", "postal": "BY", "formal_en": "Republic of Belarus", "name_sort": "Belarus", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 9648533, "gdp_md_est": 114100, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BY", "iso_a3": "BLR", "iso_n3": "112", "un_a3": "112", "wb_a2": "BY", "wb_a3": "BLR", "woe_id": -99, "adm0_a3_is": "BLR", "adm0_a3_us": "BLR", "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": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.174438, 56.170023 ], [ 29.229126, 55.918430 ], [ 29.306030, 55.776573 ], [ 29.366455, 55.671389 ], [ 29.838867, 55.776573 ], [ 29.893799, 55.792017 ], [ 29.948730, 55.776573 ], [ 30.871582, 55.553495 ], [ 30.877075, 55.528631 ], [ 26.510010, 55.528631 ], [ 26.493530, 55.615589 ], [ 27.075806, 55.776573 ], [ 28.174438, 56.170023 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "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": [ [ [ [ 40.160522, 66.337505 ], [ 36.414185, 66.337505 ], [ 35.375977, 66.513260 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 33.447876, 66.513260 ], [ 33.843384, 66.337505 ], [ 29.679565, 66.337505 ], [ 29.498291, 66.513260 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.534058, 66.513260 ], [ 40.160522, 66.337505 ] ] ], [ [ [ 45.000000, 68.395135 ], [ 45.439453, 68.344514 ], [ 45.439453, 66.337505 ], [ 44.170532, 66.337505 ], [ 44.324341, 66.513260 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 45.000000, 68.395135 ] ] ], [ [ [ 41.753540, 66.337505 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.231201, 66.337505 ], [ 41.753540, 66.337505 ] ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 28.163452, 71.185982 ], [ 31.289062, 70.455184 ], [ 30.003662, 70.186965 ], [ 31.096802, 69.559471 ], [ 29.399414, 69.158650 ], [ 28.591919, 69.066601 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.164610 ], [ 26.174927, 69.826365 ], [ 25.686035, 69.094060 ], [ 24.730225, 68.650556 ], [ 23.659058, 68.893209 ], [ 22.500000, 68.847665 ], [ 22.351685, 68.843700 ], [ 22.060547, 68.984016 ], [ 22.060547, 70.233460 ], [ 22.500000, 70.220452 ], [ 23.021851, 70.203715 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.986560 ], [ 28.163452, 71.185982 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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": "Polygon", "coordinates": [ [ [ 22.060547, 68.582459 ], [ 22.500000, 68.393113 ], [ 23.538208, 67.937524 ], [ 23.560181, 66.513260 ], [ 23.565674, 66.396961 ], [ 23.615112, 66.337505 ], [ 22.060547, 66.337505 ], [ 22.060547, 68.582459 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.729492, 70.164610 ], [ 29.014893, 69.767557 ], [ 28.591919, 69.066601 ], [ 28.443604, 68.364776 ], [ 29.976196, 67.699025 ], [ 29.053345, 66.945123 ], [ 29.498291, 66.513260 ], [ 29.679565, 66.337505 ], [ 23.615112, 66.337505 ], [ 23.565674, 66.396961 ], [ 23.560181, 66.513260 ], [ 23.538208, 67.937524 ], [ 22.500000, 68.393113 ], [ 22.060547, 68.582459 ], [ 22.060547, 68.984016 ], [ 22.351685, 68.843700 ], [ 22.500000, 68.847665 ], [ 23.659058, 68.893209 ], [ 24.730225, 68.650556 ], [ 25.686035, 69.094060 ], [ 26.174927, 69.826365 ], [ 27.729492, 70.164610 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "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": "Polygon", "coordinates": [ [ [ 22.879028, 78.455425 ], [ 23.280029, 78.080156 ], [ 24.719238, 77.854567 ], [ 22.500000, 77.446940 ], [ 22.489014, 77.445746 ], [ 22.060547, 77.502931 ], [ 22.060547, 78.376004 ], [ 22.500000, 78.419091 ], [ 22.879028, 78.455425 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "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": "Polygon", "coordinates": [ [ [ 45.439453, 80.646142 ], [ 45.439453, 80.582539 ], [ 45.000000, 80.587930 ], [ 44.846191, 80.590625 ], [ 45.000000, 80.604983 ], [ 45.439453, 80.646142 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 22.917480, 80.657741 ], [ 25.444336, 80.407473 ], [ 27.405396, 80.057101 ], [ 25.922241, 79.518659 ], [ 23.021851, 79.400085 ], [ 22.500000, 79.430356 ], [ 22.060547, 79.455516 ], [ 22.060547, 80.403810 ], [ 22.500000, 80.534782 ], [ 22.917480, 80.657741 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Madagascar", "sov_a3": "MDG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Madagascar", "adm0_a3": "MDG", "geou_dif": 0, "geounit": "Madagascar", "gu_a3": "MDG", "su_dif": 0, "subunit": "Madagascar", "su_a3": "MDG", "brk_diff": 0, "name": "Madagascar", "name_long": "Madagascar", "brk_a3": "MDG", "brk_name": "Madagascar", "abbrev": "Mad.", "postal": "MG", "formal_en": "Republic of Madagascar", "name_sort": "Madagascar", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 20653556, "gdp_md_est": 20130, "pop_year": -99, "lastcensus": 1993, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MG", "iso_a3": "MDG", "iso_n3": "450", "un_a3": "450", "wb_a2": "MG", "wb_a3": "MDG", "woe_id": -99, "adm0_a3_is": "MDG", "adm0_a3_us": "MDG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.208008, -21.534847 ], [ 48.076172, -21.943046 ], [ 47.927856, -22.390714 ], [ 47.543335, -23.780318 ], [ 47.092896, -24.941238 ], [ 46.279907, -25.175117 ], [ 45.406494, -25.596948 ], [ 45.000000, -25.418470 ], [ 44.829712, -25.344026 ], [ 44.560547, -25.219851 ], [ 44.560547, -21.534847 ], [ 48.208008, -21.534847 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Madagascar", "sov_a3": "MDG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Madagascar", "adm0_a3": "MDG", "geou_dif": 0, "geounit": "Madagascar", "gu_a3": "MDG", "su_dif": 0, "subunit": "Madagascar", "su_a3": "MDG", "brk_diff": 0, "name": "Madagascar", "name_long": "Madagascar", "brk_a3": "MDG", "brk_name": "Madagascar", "abbrev": "Mad.", "postal": "MG", "formal_en": "Republic of Madagascar", "name_sort": "Madagascar", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 20653556, "gdp_md_est": 20130, "pop_year": -99, "lastcensus": 1993, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MG", "iso_a3": "MDG", "iso_n3": "450", "un_a3": "450", "wb_a2": "MG", "wb_a3": "MDG", "woe_id": -99, "adm0_a3_is": "MDG", "adm0_a3_us": "MDG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.191284, -12.039321 ], [ 49.542847, -12.468760 ], [ 49.806519, -12.892135 ], [ 50.053711, -13.555222 ], [ 50.213013, -14.753635 ], [ 50.471191, -15.225889 ], [ 50.372314, -15.702375 ], [ 50.196533, -15.998295 ], [ 49.855957, -15.411319 ], [ 49.669189, -15.707663 ], [ 49.861450, -16.446622 ], [ 49.773560, -16.872890 ], [ 49.493408, -17.104043 ], [ 49.432983, -17.952606 ], [ 49.037476, -19.114029 ], [ 48.543091, -20.493919 ], [ 48.076172, -21.943046 ], [ 47.944336, -22.350076 ], [ 44.560547, -22.350076 ], [ 44.560547, -16.204125 ], [ 44.939575, -16.177749 ], [ 45.000000, -16.156645 ], [ 45.499878, -15.971892 ], [ 45.867920, -15.792254 ], [ 46.307373, -15.776395 ], [ 46.878662, -15.209988 ], [ 47.702637, -14.594216 ], [ 48.004761, -14.088629 ], [ 47.867432, -13.662001 ], [ 48.290405, -13.779402 ], [ 48.839722, -13.084829 ], [ 48.861694, -12.484850 ], [ 49.191284, -12.039321 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.560547, 8.868790 ], [ 45.000000, 8.705929 ], [ 46.944580, 7.999397 ], [ 47.785034, 8.004837 ], [ 45.000000, 5.041699 ], [ 44.961548, 5.003394 ], [ 44.560547, 4.992450 ], [ 44.560547, 8.868790 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 55.437012, 22.350076 ], [ 55.662231, 22.004175 ], [ 55.645752, 21.943046 ], [ 54.997559, 20.004322 ], [ 51.998291, 19.004997 ], [ 49.114380, 18.620219 ], [ 48.180542, 18.166730 ], [ 47.466431, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.746826, 17.287709 ], [ 46.362305, 17.235252 ], [ 45.395508, 17.334908 ], [ 45.214233, 17.434511 ], [ 45.000000, 17.429270 ], [ 44.560547, 17.424029 ], [ 44.560547, 22.350076 ], [ 55.437012, 22.350076 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Yemen", "sov_a3": "YEM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Yemen", "adm0_a3": "YEM", "geou_dif": 0, "geounit": "Yemen", "gu_a3": "YEM", "su_dif": 0, "subunit": "Yemen", "su_a3": "YEM", "brk_diff": 0, "name": "Yemen", "name_long": "Yemen", "brk_a3": "YEM", "brk_name": "Yemen", "abbrev": "Yem.", "postal": "YE", "formal_en": "Republic of Yemen", "name_sort": "Yemen, Rep.", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 23822783, "gdp_md_est": 55280, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "YE", "iso_a3": "YEM", "iso_n3": "887", "un_a3": "887", "wb_a2": "RY", "wb_a3": "YEM", "woe_id": -99, "adm0_a3_is": "YEM", "adm0_a3_us": "YEM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.998291, 19.004997 ], [ 52.778320, 17.350638 ], [ 53.107910, 16.651981 ], [ 52.382812, 16.383391 ], [ 52.190552, 15.940202 ], [ 52.163086, 15.601875 ], [ 51.168823, 15.178181 ], [ 49.570312, 14.711135 ], [ 48.674927, 14.003367 ], [ 48.235474, 13.950061 ], [ 47.938843, 14.008696 ], [ 47.351074, 13.592600 ], [ 46.713867, 13.400307 ], [ 45.873413, 13.352210 ], [ 45.620728, 13.293411 ], [ 45.401001, 13.031318 ], [ 45.142822, 12.956383 ], [ 45.000000, 12.720726 ], [ 44.989014, 12.704651 ], [ 44.560547, 12.720726 ], [ 44.560547, 17.424029 ], [ 45.000000, 17.429270 ], [ 45.214233, 17.434511 ], [ 45.395508, 17.334908 ], [ 46.362305, 17.235252 ], [ 46.746826, 17.287709 ], [ 46.999512, 16.951724 ], [ 47.466431, 17.119793 ], [ 48.180542, 18.166730 ], [ 49.114380, 18.620219 ], [ 51.998291, 19.004997 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Oman", "sov_a3": "OMN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Oman", "adm0_a3": "OMN", "geou_dif": 0, "geounit": "Oman", "gu_a3": "OMN", "su_dif": 0, "subunit": "Oman", "su_a3": "OMN", "brk_diff": 0, "name": "Oman", "name_long": "Oman", "brk_a3": "OMN", "brk_name": "Oman", "abbrev": "Oman", "postal": "OM", "formal_en": "Sultanate of Oman", "name_sort": "Oman", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3418085, "gdp_md_est": 66980, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "OM", "iso_a3": "OMN", "iso_n3": "512", "un_a3": "512", "wb_a2": "OM", "wb_a3": "OMN", "woe_id": -99, "adm0_a3_is": "OMN", "adm0_a3_us": "OMN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.804077, 22.350076 ], [ 59.804077, 22.314508 ], [ 59.578857, 21.943046 ], [ 59.441528, 21.718680 ], [ 59.282227, 21.437730 ], [ 58.859253, 21.115249 ], [ 58.485718, 20.432160 ], [ 58.029785, 20.483628 ], [ 57.821045, 20.246737 ], [ 57.661743, 19.740854 ], [ 57.788086, 19.072501 ], [ 57.689209, 18.947856 ], [ 57.233276, 18.953051 ], [ 56.607056, 18.578569 ], [ 56.508179, 18.088423 ], [ 56.282959, 17.879431 ], [ 55.656738, 17.884659 ], [ 55.266724, 17.633552 ], [ 55.272217, 17.230005 ], [ 54.788818, 16.951724 ], [ 54.234009, 17.046281 ], [ 53.569336, 16.709863 ], [ 53.107910, 16.651981 ], [ 51.998291, 19.004997 ], [ 54.997559, 20.004322 ], [ 55.645752, 21.943046 ], [ 55.662231, 22.004175 ], [ 55.437012, 22.350076 ], [ 59.804077, 22.350076 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "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": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.944092, 11.415418 ], [ 48.938599, 11.399264 ], [ 48.933105, 10.984335 ], [ 48.933105, 9.454480 ], [ 48.482666, 8.841651 ], [ 47.785034, 8.004837 ], [ 46.944580, 7.999397 ], [ 45.000000, 8.705929 ], [ 44.560547, 8.868790 ], [ 44.560547, 10.444598 ], [ 44.609985, 10.444598 ], [ 45.000000, 10.547221 ], [ 45.554810, 10.698394 ], [ 46.642456, 10.817120 ], [ 47.521362, 11.129897 ], [ 48.021240, 11.194568 ], [ 48.378296, 11.377724 ], [ 48.944092, 11.415418 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.108398, 12.028576 ], [ 51.130371, 11.749059 ], [ 51.036987, 11.167624 ], [ 51.042480, 10.644412 ], [ 50.833740, 10.282491 ], [ 50.548096, 9.199715 ], [ 50.070190, 8.086423 ], [ 49.449463, 6.806444 ], [ 48.592529, 5.342583 ], [ 47.735596, 4.220421 ], [ 46.560059, 2.860749 ], [ 45.560303, 2.048514 ], [ 45.000000, 1.675176 ], [ 44.560547, 1.384143 ], [ 44.560547, 4.992450 ], [ 44.961548, 5.003394 ], [ 45.000000, 5.041699 ], [ 47.785034, 8.004837 ], [ 48.482666, 8.841651 ], [ 48.933105, 9.454480 ], [ 48.938599, 11.399264 ], [ 48.944092, 11.415418 ], [ 49.262695, 11.431571 ], [ 49.724121, 11.582288 ], [ 50.256958, 11.684514 ], [ 50.729370, 12.023203 ], [ 51.108398, 12.028576 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 47.922363, 41.310824 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 47.268677, 41.310824 ], [ 47.922363, 41.310824 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.516113, 41.310824 ], [ 46.636963, 41.182788 ], [ 46.499634, 41.066928 ], [ 45.961304, 41.124884 ], [ 45.477905, 41.310824 ], [ 46.516113, 41.310824 ] ] ], [ [ [ 45.065918, 41.310824 ], [ 44.967041, 41.248903 ], [ 44.560547, 41.203456 ], [ 44.560547, 41.310824 ], [ 45.065918, 41.310824 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 44.560547, 37.483577 ], [ 44.769287, 37.173449 ], [ 44.560547, 37.099003 ], [ 44.560547, 37.483577 ] ] ], [ [ [ 44.560547, 39.618384 ], [ 44.560547, 39.888665 ], [ 44.791260, 39.715638 ], [ 44.560547, 39.618384 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.769287, 37.173449 ], [ 45.000000, 36.756490 ], [ 45.417480, 35.978006 ], [ 46.071167, 35.679610 ], [ 46.148071, 35.097440 ], [ 45.648193, 34.750640 ], [ 45.411987, 33.970698 ], [ 46.104126, 33.017876 ], [ 47.334595, 32.472695 ], [ 47.845459, 31.709476 ], [ 47.680664, 30.987028 ], [ 47.999268, 30.987028 ], [ 48.010254, 30.453409 ], [ 48.565063, 29.931135 ], [ 47.971802, 29.978729 ], [ 47.301636, 30.059586 ], [ 46.565552, 29.099377 ], [ 45.000000, 29.166552 ], [ 44.708862, 29.180941 ], [ 44.560547, 29.286399 ], [ 44.560547, 37.099003 ], [ 44.769287, 37.173449 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.939453, 41.310824 ], [ 67.939453, 41.137296 ], [ 66.708984, 41.170384 ], [ 66.676025, 41.310824 ], [ 67.939453, 41.310824 ] ] ], [ [ [ 55.964355, 41.310824 ], [ 55.453491, 41.261291 ], [ 55.409546, 41.310824 ], [ 55.964355, 41.310824 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 66.676025, 41.310824 ], [ 66.708984, 41.170384 ], [ 67.939453, 41.137296 ], [ 67.939453, 39.567588 ], [ 67.697754, 39.584524 ], [ 67.500000, 39.240763 ], [ 67.439575, 39.142842 ], [ 67.500000, 39.121537 ], [ 67.939453, 38.980763 ], [ 67.939453, 37.343959 ], [ 67.829590, 37.147182 ], [ 67.500000, 37.239075 ], [ 67.071533, 37.357059 ], [ 66.516724, 37.365791 ], [ 66.544189, 37.978845 ], [ 65.214844, 38.406254 ], [ 64.165649, 38.895308 ], [ 63.517456, 39.364032 ], [ 62.369385, 40.057052 ], [ 61.929932, 40.979898 ], [ 61.880493, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.463257, 41.224118 ], [ 60.292969, 41.310824 ], [ 66.676025, 41.310824 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 49.081421, 41.310824 ], [ 49.108887, 41.286062 ], [ 49.323120, 40.979898 ], [ 49.614258, 40.576413 ], [ 50.081177, 40.526327 ], [ 50.388794, 40.258569 ], [ 49.564819, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.053318 ], [ 48.856201, 38.818311 ], [ 48.878174, 38.324420 ], [ 48.630981, 38.272689 ], [ 48.010254, 38.796908 ], [ 48.350830, 39.291797 ], [ 48.059692, 39.584524 ], [ 47.680664, 39.512517 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.465885 ], [ 46.032715, 39.631077 ], [ 45.609741, 39.901309 ], [ 45.889893, 40.220830 ], [ 45.357056, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.186768, 40.979898 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.248903 ], [ 45.065918, 41.310824 ], [ 45.477905, 41.310824 ], [ 45.961304, 41.124884 ], [ 46.499634, 41.066928 ], [ 46.636963, 41.182788 ], [ 46.516113, 41.310824 ], [ 47.268677, 41.310824 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.922363, 41.310824 ], [ 49.081421, 41.310824 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.474365 ], [ 45.736084, 39.474365 ], [ 45.730591, 39.321550 ], [ 46.142578, 38.741231 ], [ 45.455933, 38.878205 ], [ 45.000000, 39.296048 ], [ 44.950562, 39.338546 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.791260, 39.715638 ], [ 44.950562, 39.338546 ], [ 45.000000, 39.296048 ], [ 45.455933, 38.878205 ], [ 46.142578, 38.741231 ], [ 46.505127, 38.771216 ], [ 47.680664, 39.512517 ], [ 48.059692, 39.584524 ], [ 48.350830, 39.291797 ], [ 48.010254, 38.796908 ], [ 48.630981, 38.272689 ], [ 48.878174, 38.324420 ], [ 49.196777, 37.583766 ], [ 50.147095, 37.378888 ], [ 50.839233, 36.875227 ], [ 52.261963, 36.703660 ], [ 53.822021, 36.967449 ], [ 53.920898, 37.199706 ], [ 54.799805, 37.396346 ], [ 55.508423, 37.965854 ], [ 56.178589, 37.935533 ], [ 56.618042, 38.121593 ], [ 57.326660, 38.030786 ], [ 58.430786, 37.522797 ], [ 59.232788, 37.413800 ], [ 60.375366, 36.531709 ], [ 61.122437, 36.491973 ], [ 61.210327, 35.652833 ], [ 60.798340, 34.406910 ], [ 60.523682, 33.678640 ], [ 60.963135, 33.532237 ], [ 60.534668, 32.985628 ], [ 60.858765, 32.184911 ], [ 60.941162, 31.550453 ], [ 61.699219, 31.381779 ], [ 61.776123, 30.737114 ], [ 60.869751, 29.831114 ], [ 61.364136, 29.305561 ], [ 61.770630, 28.700225 ], [ 62.726440, 28.260844 ], [ 62.753906, 27.381523 ], [ 63.231812, 27.220441 ], [ 63.314209, 26.760326 ], [ 61.869507, 26.244156 ], [ 61.495972, 25.080624 ], [ 59.611816, 25.383735 ], [ 58.524170, 25.611810 ], [ 57.392578, 25.740529 ], [ 56.969604, 26.966142 ], [ 56.491699, 27.147145 ], [ 55.722656, 26.966142 ], [ 54.711914, 26.485324 ], [ 53.492432, 26.814266 ], [ 52.481689, 27.581329 ], [ 51.520386, 27.868217 ], [ 50.850220, 28.815800 ], [ 50.114136, 30.149877 ], [ 49.575806, 29.988245 ], [ 48.938599, 30.320730 ], [ 48.565063, 29.931135 ], [ 48.010254, 30.453409 ], [ 47.999268, 30.987028 ], [ 47.680664, 30.987028 ], [ 47.845459, 31.709476 ], [ 47.334595, 32.472695 ], [ 46.104126, 33.017876 ], [ 45.411987, 33.970698 ], [ 45.648193, 34.750640 ], [ 46.148071, 35.097440 ], [ 46.071167, 35.679610 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.756490 ], [ 44.769287, 37.173449 ], [ 44.560547, 37.483577 ], [ 44.560547, 39.618384 ], [ 44.791260, 39.715638 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 44.560547, 29.286399 ], [ 44.708862, 29.180941 ], [ 45.000000, 29.166552 ], [ 46.565552, 29.099377 ], [ 47.455444, 29.003336 ], [ 47.708130, 28.526622 ], [ 48.411255, 28.555576 ], [ 48.806763, 27.693256 ], [ 49.295654, 27.464414 ], [ 49.465942, 27.112923 ], [ 50.147095, 26.691637 ], [ 50.207520, 26.278640 ], [ 50.108643, 25.948166 ], [ 50.234985, 25.611810 ], [ 50.526123, 25.329132 ], [ 50.657959, 25.000994 ], [ 50.806274, 24.756808 ], [ 51.108398, 24.557116 ], [ 51.388550, 24.632038 ], [ 51.575317, 24.246965 ], [ 51.613770, 24.016362 ], [ 51.998291, 23.003908 ], [ 55.003052, 22.497332 ], [ 55.206299, 22.710323 ], [ 55.662231, 22.004175 ], [ 55.645752, 21.943046 ], [ 55.508423, 21.534847 ], [ 44.560547, 21.534847 ], [ 44.560547, 29.286399 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 60.292969, 41.310824 ], [ 60.463257, 41.224118 ], [ 61.545410, 41.269550 ], [ 61.880493, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.369385, 40.057052 ], [ 63.517456, 39.364032 ], [ 64.165649, 38.895308 ], [ 65.214844, 38.406254 ], [ 66.544189, 37.978845 ], [ 66.516724, 37.365791 ], [ 66.214600, 37.396346 ], [ 65.742188, 37.662081 ], [ 65.588379, 37.309014 ], [ 64.742432, 37.112146 ], [ 64.544678, 36.315125 ], [ 63.978882, 36.009117 ], [ 63.193359, 35.857892 ], [ 62.984619, 35.406961 ], [ 62.226562, 35.272532 ], [ 61.210327, 35.652833 ], [ 61.122437, 36.491973 ], [ 60.375366, 36.531709 ], [ 59.232788, 37.413800 ], [ 58.430786, 37.522797 ], [ 57.326660, 38.030786 ], [ 56.618042, 38.121593 ], [ 56.178589, 37.935533 ], [ 55.508423, 37.965854 ], [ 54.799805, 37.396346 ], [ 53.920898, 37.199706 ], [ 53.734131, 37.909534 ], [ 53.876953, 38.955137 ], [ 53.096924, 39.291797 ], [ 53.355103, 39.977120 ], [ 52.690430, 40.036027 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.634799 ], [ 54.733887, 40.955011 ], [ 54.700928, 40.979898 ], [ 54.299927, 41.310824 ], [ 55.409546, 41.310824 ], [ 55.453491, 41.261291 ], [ 55.964355, 41.310824 ], [ 60.292969, 41.310824 ] ] ], [ [ [ 52.838745, 41.310824 ], [ 52.811279, 41.137296 ], [ 52.728882, 41.310824 ], [ 52.838745, 41.310824 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Oman", "sov_a3": "OMN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Oman", "adm0_a3": "OMN", "geou_dif": 0, "geounit": "Oman", "gu_a3": "OMN", "su_dif": 0, "subunit": "Oman", "su_a3": "OMN", "brk_diff": 0, "name": "Oman", "name_long": "Oman", "brk_a3": "OMN", "brk_name": "Oman", "abbrev": "Oman", "postal": "OM", "formal_en": "Sultanate of Oman", "name_sort": "Oman", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3418085, "gdp_md_est": 66980, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "OM", "iso_a3": "OMN", "iso_n3": "512", "un_a3": "512", "wb_a2": "OM", "wb_a3": "OMN", "woe_id": -99, "adm0_a3_is": "OMN", "adm0_a3_us": "OMN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.392822, 24.926295 ], [ 56.843262, 24.241956 ], [ 57.398071, 23.880815 ], [ 58.134155, 23.750154 ], [ 58.727417, 23.569022 ], [ 59.447021, 22.664710 ], [ 59.804077, 22.537927 ], [ 59.804077, 22.314508 ], [ 59.578857, 21.943046 ], [ 59.441528, 21.718680 ], [ 59.337158, 21.534847 ], [ 55.508423, 21.534847 ], [ 55.645752, 21.943046 ], [ 55.662231, 22.004175 ], [ 55.206299, 22.710323 ], [ 55.233765, 23.115102 ], [ 55.524902, 23.528737 ], [ 55.524902, 23.936055 ], [ 55.980835, 24.131715 ], [ 55.799561, 24.272005 ], [ 55.881958, 24.921313 ], [ 56.392822, 24.926295 ] ] ], [ [ [ 56.359863, 26.396790 ], [ 56.480713, 26.313113 ], [ 56.387329, 25.898762 ], [ 56.260986, 25.715786 ], [ 56.068726, 26.056783 ], [ 56.359863, 26.396790 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.939453, 38.980763 ], [ 67.500000, 39.121537 ], [ 67.439575, 39.142842 ], [ 67.500000, 39.240763 ], [ 67.697754, 39.584524 ], [ 67.939453, 39.567588 ], [ 67.939453, 38.980763 ] ] ], [ [ [ 67.939453, 37.343959 ], [ 67.939453, 37.103384 ], [ 67.829590, 37.147182 ], [ 67.939453, 37.343959 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 65.742188, 37.662081 ], [ 66.214600, 37.396346 ], [ 66.516724, 37.365791 ], [ 67.071533, 37.357059 ], [ 67.500000, 37.239075 ], [ 67.829590, 37.147182 ], [ 67.939453, 37.103384 ], [ 67.939453, 31.611288 ], [ 67.791138, 31.583215 ], [ 67.681274, 31.306715 ], [ 66.934204, 31.306715 ], [ 66.379395, 30.741836 ], [ 66.346436, 29.888281 ], [ 65.044556, 29.473079 ], [ 64.346924, 29.563902 ], [ 64.143677, 29.343875 ], [ 63.544922, 29.473079 ], [ 62.545166, 29.319931 ], [ 60.869751, 29.831114 ], [ 61.776123, 30.737114 ], [ 61.699219, 31.381779 ], [ 60.941162, 31.550453 ], [ 60.858765, 32.184911 ], [ 60.534668, 32.985628 ], [ 60.963135, 33.532237 ], [ 60.523682, 33.678640 ], [ 60.798340, 34.406910 ], [ 61.210327, 35.652833 ], [ 62.226562, 35.272532 ], [ 62.984619, 35.406961 ], [ 63.193359, 35.857892 ], [ 63.978882, 36.009117 ], [ 64.544678, 36.315125 ], [ 64.742432, 37.112146 ], [ 65.588379, 37.309014 ], [ 65.742188, 37.662081 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 31.611288 ], [ 67.939453, 23.775291 ], [ 67.500000, 23.926013 ], [ 67.439575, 23.946096 ], [ 67.142944, 24.666986 ], [ 66.368408, 25.428393 ], [ 64.528198, 25.239727 ], [ 62.902222, 25.219851 ], [ 61.495972, 25.080624 ], [ 61.869507, 26.244156 ], [ 63.314209, 26.760326 ], [ 63.231812, 27.220441 ], [ 62.753906, 27.381523 ], [ 62.726440, 28.260844 ], [ 61.770630, 28.700225 ], [ 61.364136, 29.305561 ], [ 60.869751, 29.831114 ], [ 62.545166, 29.319931 ], [ 63.544922, 29.473079 ], [ 64.143677, 29.343875 ], [ 64.346924, 29.563902 ], [ 65.044556, 29.473079 ], [ 66.346436, 29.888281 ], [ 66.379395, 30.741836 ], [ 66.934204, 31.306715 ], [ 67.681274, 31.306715 ], [ 67.791138, 31.583215 ], [ 67.939453, 31.611288 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 67.939453, 56.022948 ], [ 67.939453, 54.939766 ], [ 67.500000, 54.873446 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 45.000000, 42.609706 ], [ 44.560547, 42.710696 ], [ 44.560547, 56.022948 ], [ 67.939453, 56.022948 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.560547, 42.710696 ], [ 45.000000, 42.609706 ], [ 45.466919, 42.504503 ], [ 45.774536, 42.094146 ], [ 46.400757, 41.861379 ], [ 46.142578, 41.726230 ], [ 46.636963, 41.182788 ], [ 46.499634, 41.066928 ], [ 45.961304, 41.124884 ], [ 45.214233, 41.413896 ], [ 45.000000, 41.269550 ], [ 44.967041, 41.248903 ], [ 44.560547, 41.203456 ], [ 44.560547, 42.710696 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 54.939766 ], [ 67.939453, 41.137296 ], [ 67.500000, 41.149706 ], [ 66.708984, 41.170384 ], [ 66.505737, 41.988077 ], [ 66.022339, 41.996243 ], [ 66.093750, 43.000630 ], [ 64.896240, 43.731414 ], [ 63.182373, 43.651975 ], [ 62.012329, 43.504737 ], [ 61.056519, 44.406316 ], [ 58.502197, 45.587134 ], [ 55.925903, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.453491, 41.261291 ], [ 54.750366, 42.045213 ], [ 54.074707, 42.326062 ], [ 52.943115, 42.118599 ], [ 52.498169, 41.783601 ], [ 52.443237, 42.028894 ], [ 52.690430, 42.447781 ], [ 52.498169, 42.795401 ], [ 51.339111, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.333862, 44.284537 ], [ 50.300903, 44.610023 ], [ 51.273193, 44.516093 ], [ 51.311646, 45.247821 ], [ 52.163086, 45.410020 ], [ 53.036499, 45.259422 ], [ 53.217773, 46.236853 ], [ 53.041992, 46.856435 ], [ 52.036743, 46.807580 ], [ 51.190796, 47.051411 ], [ 50.031738, 46.611715 ], [ 49.097900, 46.399988 ], [ 48.592529, 46.562637 ], [ 48.691406, 47.077604 ], [ 48.054199, 47.746711 ], [ 47.312622, 47.717154 ], [ 46.461182, 48.396385 ], [ 47.043457, 49.152970 ], [ 46.746826, 49.357334 ], [ 47.548828, 50.457504 ], [ 48.576050, 49.876938 ], [ 48.696899, 50.607646 ], [ 50.762329, 51.692990 ], [ 52.327881, 51.720223 ], [ 54.530640, 51.027576 ], [ 55.711670, 50.625073 ], [ 56.777344, 51.044848 ], [ 58.359375, 51.065565 ], [ 59.639282, 50.548344 ], [ 59.930420, 50.844105 ], [ 61.336670, 50.802463 ], [ 61.583862, 51.275662 ], [ 59.963379, 51.961192 ], [ 60.924683, 52.449314 ], [ 60.737915, 52.722986 ], [ 61.699219, 52.981723 ], [ 60.974121, 53.667426 ], [ 61.435547, 54.007769 ], [ 65.176392, 54.354956 ], [ 65.665283, 54.603892 ], [ 67.500000, 54.873446 ], [ 67.939453, 54.939766 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.502197, 45.587134 ], [ 61.056519, 44.406316 ], [ 62.012329, 43.504737 ], [ 63.182373, 43.651975 ], [ 64.896240, 43.731414 ], [ 66.093750, 43.000630 ], [ 66.022339, 41.996243 ], [ 66.505737, 41.988077 ], [ 66.708984, 41.170384 ], [ 67.500000, 41.149706 ], [ 67.939453, 41.137296 ], [ 67.939453, 40.647304 ], [ 62.089233, 40.647304 ], [ 61.929932, 40.979898 ], [ 61.880493, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.463257, 41.224118 ], [ 60.078735, 41.426253 ], [ 59.974365, 42.224450 ], [ 58.628540, 42.755080 ], [ 57.782593, 42.171546 ], [ 56.931152, 41.828642 ], [ 57.095947, 41.323201 ], [ 55.964355, 41.310824 ], [ 55.925903, 44.995883 ], [ 58.502197, 45.587134 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.400757, 41.861379 ], [ 46.680908, 41.828642 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.982788, 41.409776 ], [ 48.581543, 41.812267 ], [ 49.108887, 41.286062 ], [ 49.323120, 40.979898 ], [ 49.564819, 40.647304 ], [ 45.422974, 40.647304 ], [ 45.560303, 40.813809 ], [ 45.186768, 40.979898 ], [ 45.175781, 40.988192 ], [ 45.000000, 41.215854 ], [ 44.967041, 41.248903 ], [ 45.000000, 41.269550 ], [ 45.214233, 41.413896 ], [ 45.961304, 41.124884 ], [ 46.499634, 41.066928 ], [ 46.636963, 41.182788 ], [ 46.142578, 41.726230 ], [ 46.400757, 41.861379 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 52.910156, 40.880295 ], [ 53.794556, 40.647304 ], [ 52.849731, 40.647304 ], [ 52.910156, 40.880295 ] ] ], [ [ [ 59.974365, 42.224450 ], [ 60.078735, 41.426253 ], [ 60.463257, 41.224118 ], [ 61.545410, 41.269550 ], [ 61.880493, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.089233, 40.647304 ], [ 53.898926, 40.647304 ], [ 54.733887, 40.955011 ], [ 54.700928, 40.979898 ], [ 54.003296, 41.553811 ], [ 53.717651, 42.126747 ], [ 52.915649, 41.869561 ], [ 52.811279, 41.137296 ], [ 52.498169, 41.783601 ], [ 52.943115, 42.118599 ], [ 54.074707, 42.326062 ], [ 54.750366, 42.045213 ], [ 55.453491, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.095947, 41.323201 ], [ 56.931152, 41.828642 ], [ 57.782593, 42.171546 ], [ 58.628540, 42.755080 ], [ 59.974365, 42.224450 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 67.939453, 66.687784 ], [ 67.939453, 55.528631 ], [ 44.560547, 55.528631 ], [ 44.560547, 66.687784 ], [ 46.301880, 66.687784 ], [ 46.345825, 66.668211 ], [ 46.488647, 66.687784 ], [ 67.939453, 66.687784 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "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": [ [ [ [ 67.939453, 68.277521 ], [ 67.939453, 66.337505 ], [ 44.560547, 66.337505 ], [ 44.560547, 68.445644 ], [ 45.000000, 68.395135 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 67.500000, 68.417373 ], [ 67.939453, 68.277521 ] ] ], [ [ [ 58.211060, 74.140084 ], [ 58.024292, 74.019543 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 54.228516, 74.019543 ], [ 54.552612, 74.140084 ], [ 58.211060, 74.140084 ] ] ], [ [ [ 67.939453, 69.372573 ], [ 67.500000, 69.409311 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 67.500000, 71.430678 ], [ 67.939453, 71.644644 ], [ 67.939453, 69.372573 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 67.939453, 76.925585 ], [ 67.939453, 76.200727 ], [ 67.500000, 76.140327 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 58.024292, 74.019543 ], [ 57.837524, 73.898111 ], [ 53.898926, 73.898111 ], [ 54.228516, 74.019543 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 67.500000, 76.896974 ], [ 67.939453, 76.925585 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "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": "Polygon", "coordinates": [ [ [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 45.000000, 80.587930 ], [ 44.846191, 80.590625 ], [ 45.000000, 80.604983 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.972778, 22.350076 ], [ 89.027710, 22.060187 ], [ 88.983765, 21.943046 ], [ 88.884888, 21.693161 ], [ 88.203735, 21.703369 ], [ 86.973267, 21.499075 ], [ 87.028198, 20.745840 ], [ 86.495361, 20.153942 ], [ 85.056152, 19.482129 ], [ 83.935547, 18.302381 ], [ 83.188477, 17.675428 ], [ 82.188721, 17.020020 ], [ 82.188721, 16.557227 ], [ 81.688843, 16.314868 ], [ 80.787964, 15.956048 ], [ 80.321045, 15.903225 ], [ 80.024414, 15.141067 ], [ 80.233154, 13.838080 ], [ 80.282593, 13.009910 ], [ 79.859619, 12.060809 ], [ 79.854126, 10.358151 ], [ 79.337769, 10.309515 ], [ 78.881836, 9.546583 ], [ 79.189453, 9.221405 ], [ 78.277588, 8.933914 ], [ 77.937012, 8.254983 ], [ 77.536011, 7.966758 ], [ 76.591187, 8.901353 ], [ 76.129761, 10.304110 ], [ 75.745239, 11.313094 ], [ 75.393677, 11.781325 ], [ 74.860840, 12.742158 ], [ 74.613647, 13.992706 ], [ 74.443359, 14.620794 ], [ 73.531494, 15.993015 ], [ 73.119507, 17.931702 ], [ 72.817383, 19.212616 ], [ 72.822876, 20.421865 ], [ 72.625122, 21.361013 ], [ 71.174927, 20.761250 ], [ 70.466309, 20.879343 ], [ 69.318237, 21.943046 ], [ 69.158936, 22.090730 ], [ 69.510498, 22.350076 ], [ 88.972778, 22.350076 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bangladesh", "sov_a3": "BGD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bangladesh", "adm0_a3": "BGD", "geou_dif": 0, "geounit": "Bangladesh", "gu_a3": "BGD", "su_dif": 0, "subunit": "Bangladesh", "su_a3": "BGD", "brk_diff": 0, "name": "Bangladesh", "name_long": "Bangladesh", "brk_a3": "BGD", "brk_name": "Bangladesh", "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "name_sort": "Bangladesh", "mapcolor7": 3, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 156050883, "gdp_md_est": 224000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BD", "iso_a3": "BGD", "iso_n3": "050", "un_a3": "050", "wb_a2": "BD", "wb_a3": "BGD", "woe_id": -99, "adm0_a3_is": "BGD", "adm0_a3_us": "BGD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 22.350076 ], [ 90.439453, 22.136532 ], [ 90.269165, 21.841105 ], [ 89.846191, 22.039822 ], [ 89.769287, 21.943046 ], [ 89.697876, 21.861499 ], [ 89.478149, 21.943046 ], [ 89.417725, 21.968519 ], [ 89.027710, 22.060187 ], [ 88.972778, 22.350076 ], [ 90.439453, 22.350076 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.021606, 41.310824 ], [ 68.818359, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 67.060547, 41.162114 ], [ 67.060547, 41.310824 ], [ 69.021606, 41.310824 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 72.053833, 41.310824 ], [ 72.795410, 40.979898 ], [ 73.053589, 40.867834 ], [ 71.773682, 40.149488 ], [ 71.010132, 40.245992 ], [ 70.598145, 40.220830 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.329224, 40.730608 ], [ 69.010620, 40.086477 ], [ 68.532715, 39.533703 ], [ 67.697754, 39.584524 ], [ 67.500000, 39.240763 ], [ 67.439575, 39.142842 ], [ 67.500000, 39.121537 ], [ 68.175659, 38.903858 ], [ 68.389893, 38.160476 ], [ 67.829590, 37.147182 ], [ 67.500000, 37.239075 ], [ 67.071533, 37.357059 ], [ 67.060547, 37.357059 ], [ 67.060547, 41.162114 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 68.818359, 40.979898 ], [ 69.021606, 41.310824 ], [ 70.828857, 41.310824 ], [ 71.152954, 41.145570 ], [ 71.630859, 41.310824 ], [ 72.053833, 41.310824 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 78.299561, 41.310824 ], [ 78.184204, 41.186922 ], [ 76.904297, 41.066928 ], [ 76.849365, 40.979898 ], [ 76.525269, 40.430224 ], [ 75.465088, 40.563895 ], [ 74.772949, 40.367474 ], [ 73.817139, 39.897094 ], [ 73.959961, 39.660685 ], [ 73.674316, 39.431950 ], [ 71.784668, 39.283294 ], [ 70.548706, 39.605688 ], [ 69.461060, 39.529467 ], [ 69.554443, 40.103286 ], [ 70.647583, 39.939225 ], [ 71.010132, 40.245992 ], [ 71.773682, 40.149488 ], [ 73.053589, 40.867834 ], [ 72.795410, 40.979898 ], [ 72.053833, 41.310824 ], [ 78.299561, 41.310824 ] ] ], [ [ [ 71.630859, 41.310824 ], [ 71.152954, 41.145570 ], [ 70.828857, 41.310824 ], [ 71.630859, 41.310824 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.963308 ], [ 70.455322, 40.497092 ], [ 70.598145, 40.220830 ], [ 71.010132, 40.245992 ], [ 70.647583, 39.939225 ], [ 69.554443, 40.103286 ], [ 69.461060, 39.529467 ], [ 70.548706, 39.605688 ], [ 71.784668, 39.283294 ], [ 73.674316, 39.431950 ], [ 73.927002, 38.509490 ], [ 74.256592, 38.608286 ], [ 74.860840, 38.380422 ], [ 74.827881, 37.991834 ], [ 74.976196, 37.422526 ], [ 73.943481, 37.422526 ], [ 73.256836, 37.496652 ], [ 72.636108, 37.050793 ], [ 72.191162, 36.949892 ], [ 71.839600, 36.738884 ], [ 71.444092, 37.068328 ], [ 71.537476, 37.909534 ], [ 71.235352, 37.957192 ], [ 71.345215, 38.259750 ], [ 70.801392, 38.487995 ], [ 70.372925, 38.138877 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.592472 ], [ 69.515991, 37.609880 ], [ 69.191895, 37.151561 ], [ 68.856812, 37.348326 ], [ 68.131714, 37.024484 ], [ 67.829590, 37.147182 ], [ 68.389893, 38.160476 ], [ 68.175659, 38.903858 ], [ 67.500000, 39.121537 ], [ 67.439575, 39.142842 ], [ 67.500000, 39.240763 ], [ 67.697754, 39.584524 ], [ 68.532715, 39.533703 ], [ 69.010620, 40.086477 ], [ 69.329224, 40.730608 ], [ 70.664062, 40.963308 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.801392, 38.487995 ], [ 71.345215, 38.259750 ], [ 71.235352, 37.957192 ], [ 71.537476, 37.909534 ], [ 71.444092, 37.068328 ], [ 71.839600, 36.738884 ], [ 72.191162, 36.949892 ], [ 72.636108, 37.050793 ], [ 73.256836, 37.496652 ], [ 73.943481, 37.422526 ], [ 74.976196, 37.422526 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.024484 ], [ 74.064331, 36.840065 ], [ 72.916260, 36.721274 ], [ 71.845093, 36.514051 ], [ 71.257324, 36.075742 ], [ 71.493530, 35.652833 ], [ 71.608887, 35.155846 ], [ 71.114502, 34.737098 ], [ 71.152954, 34.352507 ], [ 70.878296, 33.988918 ], [ 69.927979, 34.020795 ], [ 70.323486, 33.362650 ], [ 69.686279, 33.109948 ], [ 69.257812, 32.505129 ], [ 69.312744, 31.905541 ], [ 68.922729, 31.620644 ], [ 68.554688, 31.714149 ], [ 67.791138, 31.583215 ], [ 67.681274, 31.306715 ], [ 67.060547, 31.306715 ], [ 67.060547, 37.357059 ], [ 67.500000, 37.239075 ], [ 67.829590, 37.147182 ], [ 68.131714, 37.024484 ], [ 68.856812, 37.348326 ], [ 69.191895, 37.151561 ], [ 69.515991, 37.609880 ], [ 70.114746, 37.592472 ], [ 70.268555, 37.735969 ], [ 70.372925, 38.138877 ], [ 70.801392, 38.487995 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.157471, 37.134045 ], [ 75.893555, 36.668419 ], [ 76.190186, 35.902400 ], [ 77.832642, 35.496456 ], [ 76.871338, 34.655804 ], [ 75.756226, 34.506557 ], [ 74.240112, 34.750640 ], [ 73.745728, 34.320755 ], [ 74.102783, 33.445193 ], [ 74.448853, 32.768800 ], [ 75.256348, 32.273200 ], [ 74.404907, 31.695456 ], [ 74.415894, 30.982319 ], [ 73.449097, 29.978729 ], [ 72.822876, 28.964895 ], [ 71.773682, 27.916767 ], [ 70.614624, 27.989551 ], [ 69.510498, 26.941660 ], [ 70.164185, 26.495157 ], [ 70.279541, 25.725684 ], [ 70.839844, 25.219851 ], [ 71.043091, 24.357105 ], [ 68.840332, 24.362110 ], [ 68.175659, 23.694835 ], [ 67.500000, 23.926013 ], [ 67.439575, 23.946096 ], [ 67.142944, 24.666986 ], [ 67.060547, 24.751820 ], [ 67.060547, 31.306715 ], [ 67.681274, 31.306715 ], [ 67.791138, 31.583215 ], [ 68.554688, 31.714149 ], [ 68.922729, 31.620644 ], [ 69.312744, 31.905541 ], [ 69.257812, 32.505129 ], [ 69.686279, 33.109948 ], [ 70.323486, 33.362650 ], [ 69.927979, 34.020795 ], [ 70.878296, 33.988918 ], [ 71.152954, 34.352507 ], [ 71.114502, 34.737098 ], [ 71.608887, 35.155846 ], [ 71.493530, 35.652833 ], [ 71.257324, 36.075742 ], [ 71.845093, 36.514051 ], [ 72.916260, 36.721274 ], [ 74.064331, 36.840065 ], [ 74.575195, 37.024484 ], [ 75.157471, 37.134045 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Nepal", "sov_a3": "NPL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nepal", "adm0_a3": "NPL", "geou_dif": 0, "geounit": "Nepal", "gu_a3": "NPL", "su_dif": 0, "subunit": "Nepal", "su_a3": "NPL", "brk_diff": 0, "name": "Nepal", "name_long": "Nepal", "brk_a3": "NPL", "brk_name": "Nepal", "abbrev": "Nepal", "postal": "NP", "formal_en": "Nepal", "name_sort": "Nepal", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 28563377, "gdp_md_est": 31080, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NP", "iso_a3": "NPL", "iso_n3": "524", "un_a3": "524", "wb_a2": "NP", "wb_a3": "NPL", "woe_id": -99, "adm0_a3_is": "NPL", "adm0_a3_us": "NPL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.524048, 30.424993 ], [ 82.326050, 30.116622 ], [ 83.336792, 29.468297 ], [ 83.897095, 29.324720 ], [ 84.232178, 28.844674 ], [ 85.006714, 28.647210 ], [ 85.819702, 28.207609 ], [ 86.951294, 27.974998 ], [ 88.115845, 27.877928 ], [ 88.038940, 27.449790 ], [ 88.170776, 26.814266 ], [ 88.055420, 26.416470 ], [ 87.225952, 26.401711 ], [ 86.022949, 26.632729 ], [ 85.248413, 26.730893 ], [ 84.671631, 27.235095 ], [ 83.303833, 27.366889 ], [ 81.996460, 27.926474 ], [ 81.057129, 28.420391 ], [ 80.084839, 28.796546 ], [ 80.474854, 29.730992 ], [ 81.106567, 30.187870 ], [ 81.524048, 30.424993 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.832642, 35.496456 ], [ 78.909302, 34.325292 ], [ 78.810425, 33.509339 ], [ 79.205933, 32.994843 ], [ 79.172974, 32.486597 ], [ 78.453369, 32.620870 ], [ 78.733521, 31.517679 ], [ 79.716797, 30.883369 ], [ 81.106567, 30.187870 ], [ 80.474854, 29.730992 ], [ 80.084839, 28.796546 ], [ 81.057129, 28.420391 ], [ 81.996460, 27.926474 ], [ 83.303833, 27.366889 ], [ 84.671631, 27.235095 ], [ 85.248413, 26.730893 ], [ 86.022949, 26.632729 ], [ 87.225952, 26.401711 ], [ 88.055420, 26.416470 ], [ 88.170776, 26.814266 ], [ 88.038940, 27.449790 ], [ 88.115845, 27.877928 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.103144 ], [ 89.741821, 26.721080 ], [ 90.000000, 26.784847 ], [ 90.368042, 26.877981 ], [ 90.439453, 26.873081 ], [ 90.439453, 25.195000 ], [ 90.000000, 25.259601 ], [ 89.917603, 25.274504 ], [ 89.829712, 25.967922 ], [ 89.351807, 26.017298 ], [ 88.560791, 26.450902 ], [ 88.209229, 25.770214 ], [ 88.928833, 25.239727 ], [ 88.302612, 24.866503 ], [ 88.082886, 24.502145 ], [ 88.698120, 24.236947 ], [ 88.527832, 23.634460 ], [ 88.873901, 22.882501 ], [ 89.027710, 22.060187 ], [ 88.983765, 21.943046 ], [ 88.884888, 21.693161 ], [ 88.203735, 21.703369 ], [ 87.203979, 21.534847 ], [ 69.757690, 21.534847 ], [ 69.158936, 22.090730 ], [ 69.642334, 22.451649 ], [ 69.345703, 22.847071 ], [ 68.175659, 23.694835 ], [ 68.840332, 24.362110 ], [ 71.043091, 24.357105 ], [ 70.839844, 25.219851 ], [ 70.279541, 25.725684 ], [ 70.164185, 26.495157 ], [ 69.510498, 26.941660 ], [ 70.614624, 27.989551 ], [ 71.773682, 27.916767 ], [ 72.822876, 28.964895 ], [ 73.449097, 29.978729 ], [ 74.415894, 30.982319 ], [ 74.404907, 31.695456 ], [ 75.256348, 32.273200 ], [ 74.448853, 32.768800 ], [ 74.102783, 33.445193 ], [ 73.745728, 34.320755 ], [ 74.240112, 34.750640 ], [ 75.756226, 34.506557 ], [ 76.871338, 34.655804 ], [ 77.832642, 35.496456 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bangladesh", "sov_a3": "BGD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bangladesh", "adm0_a3": "BGD", "geou_dif": 0, "geounit": "Bangladesh", "gu_a3": "BGD", "su_dif": 0, "subunit": "Bangladesh", "su_a3": "BGD", "brk_diff": 0, "name": "Bangladesh", "name_long": "Bangladesh", "brk_a3": "BGD", "brk_name": "Bangladesh", "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "name_sort": "Bangladesh", "mapcolor7": 3, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 156050883, "gdp_md_est": 224000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BD", "iso_a3": "BGD", "iso_n3": "050", "un_a3": "050", "wb_a2": "BD", "wb_a3": "BGD", "woe_id": -99, "adm0_a3_is": "BGD", "adm0_a3_us": "BGD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.560791, 26.450902 ], [ 89.351807, 26.017298 ], [ 89.829712, 25.967922 ], [ 89.917603, 25.274504 ], [ 90.000000, 25.259601 ], [ 90.439453, 25.195000 ], [ 90.439453, 22.136532 ], [ 90.269165, 21.841105 ], [ 90.000000, 21.968519 ], [ 89.846191, 22.039822 ], [ 89.769287, 21.943046 ], [ 89.697876, 21.861499 ], [ 89.478149, 21.943046 ], [ 89.417725, 21.968519 ], [ 89.027710, 22.060187 ], [ 88.873901, 22.882501 ], [ 88.527832, 23.634460 ], [ 88.698120, 24.236947 ], [ 88.082886, 24.502145 ], [ 88.302612, 24.866503 ], [ 88.928833, 25.239727 ], [ 88.209229, 25.770214 ], [ 88.560791, 26.450902 ] ] ] } } +, +{ "type": "Feature", "properties": { "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": "Polygon", "coordinates": [ [ [ 90.439453, 41.310824 ], [ 90.439453, 28.164033 ], [ 90.010986, 28.299544 ], [ 90.000000, 28.289870 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.115845, 27.877928 ], [ 86.951294, 27.974998 ], [ 85.819702, 28.207609 ], [ 85.006714, 28.647210 ], [ 84.232178, 28.844674 ], [ 83.897095, 29.324720 ], [ 83.336792, 29.468297 ], [ 82.326050, 30.116622 ], [ 81.524048, 30.424993 ], [ 81.106567, 30.187870 ], [ 79.716797, 30.883369 ], [ 78.733521, 31.517679 ], [ 78.453369, 32.620870 ], [ 79.172974, 32.486597 ], [ 79.205933, 32.994843 ], [ 78.810425, 33.509339 ], [ 78.909302, 34.325292 ], [ 77.832642, 35.496456 ], [ 76.190186, 35.902400 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.976196, 37.422526 ], [ 74.827881, 37.991834 ], [ 74.860840, 38.380422 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.509490 ], [ 73.674316, 39.431950 ], [ 73.959961, 39.660685 ], [ 73.817139, 39.897094 ], [ 74.772949, 40.367474 ], [ 75.465088, 40.563895 ], [ 76.525269, 40.430224 ], [ 76.849365, 40.979898 ], [ 76.904297, 41.066928 ], [ 78.184204, 41.186922 ], [ 78.299561, 41.310824 ], [ 90.439453, 41.310824 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "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": "Polygon", "coordinates": [ [ [ 90.439453, 56.022948 ], [ 90.439453, 50.212064 ], [ 90.000000, 50.014799 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 67.500000, 54.873446 ], [ 67.060547, 54.810183 ], [ 67.060547, 56.022948 ], [ 90.439453, 56.022948 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.065552, 55.385352 ], [ 70.861816, 55.172594 ], [ 71.174927, 54.133478 ], [ 72.224121, 54.377358 ], [ 73.504028, 54.036812 ], [ 73.421631, 53.491314 ], [ 74.382935, 53.550099 ], [ 76.887817, 54.492377 ], [ 76.519775, 54.178512 ], [ 77.799683, 53.406257 ], [ 80.035400, 50.864911 ], [ 80.568237, 51.388923 ], [ 81.941528, 50.812877 ], [ 83.380737, 51.072468 ], [ 83.930054, 50.892639 ], [ 84.413452, 50.313900 ], [ 85.111084, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.824951, 49.827353 ], [ 87.357788, 49.217597 ], [ 86.594238, 48.549342 ], [ 85.764771, 48.458352 ], [ 85.715332, 47.454094 ], [ 85.160522, 47.002734 ], [ 83.177490, 47.331377 ], [ 82.457886, 45.540984 ], [ 81.947021, 45.317392 ], [ 79.963989, 44.918139 ], [ 80.864868, 43.181147 ], [ 80.178223, 42.920229 ], [ 80.255127, 42.350425 ], [ 79.639893, 42.500453 ], [ 79.140015, 42.859860 ], [ 77.656860, 42.964463 ], [ 75.997925, 42.988576 ], [ 75.635376, 42.879990 ], [ 74.212646, 43.301196 ], [ 73.641357, 43.092961 ], [ 73.487549, 42.504503 ], [ 71.839600, 42.847779 ], [ 71.185913, 42.706660 ], [ 70.960693, 42.269179 ], [ 70.383911, 42.081917 ], [ 69.065552, 41.385052 ], [ 68.818359, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 67.500000, 41.149706 ], [ 67.060547, 41.162114 ], [ 67.060547, 54.810183 ], [ 67.500000, 54.873446 ], [ 68.164673, 54.971308 ], [ 69.065552, 55.385352 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.960693, 42.269179 ], [ 71.257324, 42.171546 ], [ 70.416870, 41.520917 ], [ 71.152954, 41.145570 ], [ 71.867065, 41.393294 ], [ 72.795410, 40.979898 ], [ 73.053589, 40.867834 ], [ 72.663574, 40.647304 ], [ 70.521240, 40.647304 ], [ 70.664062, 40.963308 ], [ 69.329224, 40.730608 ], [ 69.285278, 40.647304 ], [ 67.060547, 40.647304 ], [ 67.060547, 41.162114 ], [ 67.500000, 41.149706 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 68.818359, 40.979898 ], [ 69.065552, 41.385052 ], [ 70.383911, 42.081917 ], [ 70.960693, 42.269179 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.212646, 43.301196 ], [ 75.635376, 42.879990 ], [ 75.997925, 42.988576 ], [ 77.656860, 42.964463 ], [ 79.140015, 42.859860 ], [ 79.639893, 42.500453 ], [ 80.255127, 42.350425 ], [ 80.117798, 42.126747 ], [ 78.541260, 41.582580 ], [ 78.184204, 41.186922 ], [ 76.904297, 41.066928 ], [ 76.849365, 40.979898 ], [ 76.651611, 40.647304 ], [ 72.663574, 40.647304 ], [ 73.053589, 40.867834 ], [ 72.795410, 40.979898 ], [ 71.867065, 41.393294 ], [ 71.152954, 41.145570 ], [ 70.416870, 41.520917 ], [ 71.257324, 42.171546 ], [ 70.960693, 42.269179 ], [ 71.185913, 42.706660 ], [ 71.839600, 42.847779 ], [ 73.487549, 42.504503 ], [ 73.641357, 43.092961 ], [ 74.212646, 43.301196 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.963308 ], [ 70.521240, 40.647304 ], [ 69.285278, 40.647304 ], [ 69.329224, 40.730608 ], [ 70.664062, 40.963308 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 50.212064 ], [ 90.439453, 47.509780 ], [ 90.280151, 47.694974 ], [ 90.000000, 47.768868 ], [ 88.851929, 48.070738 ], [ 88.011475, 48.600225 ], [ 87.747803, 49.300054 ], [ 88.802490, 49.471694 ], [ 90.000000, 50.014799 ], [ 90.439453, 50.212064 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 87.747803, 49.300054 ], [ 88.011475, 48.600225 ], [ 88.851929, 48.070738 ], [ 90.000000, 47.768868 ], [ 90.280151, 47.694974 ], [ 90.439453, 47.509780 ], [ 90.439453, 40.647304 ], [ 76.651611, 40.647304 ], [ 76.849365, 40.979898 ], [ 76.904297, 41.066928 ], [ 78.184204, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.117798, 42.126747 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.920229 ], [ 80.864868, 43.181147 ], [ 79.963989, 44.918139 ], [ 81.947021, 45.317392 ], [ 82.457886, 45.540984 ], [ 83.177490, 47.331377 ], [ 85.160522, 47.002734 ], [ 85.715332, 47.454094 ], [ 85.764771, 48.458352 ], [ 86.594238, 48.549342 ], [ 87.357788, 49.217597 ], [ 87.747803, 49.300054 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 90.439453, 66.687784 ], [ 90.439453, 55.528631 ], [ 67.060547, 55.528631 ], [ 67.060547, 66.687784 ], [ 71.773682, 66.687784 ], [ 71.537476, 66.513260 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.532956 ], [ 73.482056, 66.687784 ], [ 90.439453, 66.687784 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "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": [ [ [ [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.537476, 66.513260 ], [ 71.301270, 66.337505 ], [ 67.060547, 66.337505 ], [ 67.060547, 68.558376 ], [ 67.500000, 68.417373 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 67.500000, 69.409311 ], [ 67.060547, 69.444056 ], [ 67.060547, 69.643715 ], [ 67.258301, 69.930300 ], [ 67.060547, 70.224170 ], [ 67.060547, 71.212537 ], [ 67.500000, 71.430678 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ] ] ], [ [ [ 90.439453, 66.337505 ], [ 72.603149, 66.337505 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.693115, 74.019543 ], [ 86.506348, 74.140084 ], [ 90.439453, 74.140084 ], [ 90.439453, 66.337505 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 90.439453, 75.650431 ], [ 90.439453, 73.898111 ], [ 86.176758, 73.898111 ], [ 86.819458, 73.937674 ], [ 86.693115, 74.019543 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.000000, 75.575362 ], [ 90.258179, 75.640898 ], [ 90.439453, 75.650431 ] ] ], [ [ [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 67.500000, 76.140327 ], [ 67.060547, 76.079668 ], [ 67.060547, 76.867052 ], [ 67.500000, 76.896974 ], [ 68.153687, 76.940488 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.051025, -5.894725 ], [ 107.259521, -5.954827 ], [ 108.067017, -6.342597 ], [ 108.484497, -6.419025 ], [ 108.621826, -6.773716 ], [ 110.538940, -6.877347 ], [ 110.758667, -6.462693 ], [ 112.500000, -6.915521 ], [ 112.609863, -6.942786 ], [ 112.939453, -7.520427 ], [ 112.939453, -8.363693 ], [ 112.500000, -8.369127 ], [ 111.516724, -8.298470 ], [ 110.582886, -8.119053 ], [ 109.423828, -7.738208 ], [ 108.693237, -7.640220 ], [ 108.275757, -7.765423 ], [ 106.452026, -7.351571 ], [ 106.276245, -6.920974 ], [ 105.364380, -6.850078 ], [ 106.051025, -5.894725 ] ] ], [ [ [ 103.276978, 0.439449 ], [ 103.837280, 0.109863 ], [ 103.782349, 0.000000 ], [ 103.436279, -0.708600 ], [ 104.007568, -1.054628 ], [ 104.364624, -1.082089 ], [ 104.534912, -1.779499 ], [ 104.886475, -2.339438 ], [ 105.617065, -2.427252 ], [ 106.105957, -3.058239 ], [ 105.853271, -4.302591 ], [ 105.814819, -5.851010 ], [ 104.705200, -5.872868 ], [ 103.864746, -5.036227 ], [ 102.579346, -4.214943 ], [ 102.150879, -3.612107 ], [ 101.398315, -2.794911 ], [ 100.898438, -2.048514 ], [ 100.140381, -0.648180 ], [ 99.453735, 0.000000 ], [ 99.261475, 0.186767 ], [ 99.173584, 0.439449 ], [ 103.276978, 0.439449 ] ] ], [ [ [ 112.939453, 0.439449 ], [ 112.939453, -3.211818 ], [ 112.500000, -3.343438 ], [ 112.066040, -3.475040 ], [ 111.697998, -2.992413 ], [ 111.044312, -3.047268 ], [ 110.220337, -2.932069 ], [ 110.066528, -1.592812 ], [ 109.566650, -1.312751 ], [ 109.088745, -0.455928 ], [ 109.017334, 0.000000 ], [ 108.951416, 0.417477 ], [ 108.951416, 0.439449 ], [ 112.939453, 0.439449 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 93.147583, 22.350076 ], [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.565308, 22.350076 ], [ 93.147583, 22.350076 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bangladesh", "sov_a3": "BGD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bangladesh", "adm0_a3": "BGD", "geou_dif": 0, "geounit": "Bangladesh", "gu_a3": "BGD", "su_dif": 0, "subunit": "Bangladesh", "su_a3": "BGD", "brk_diff": 0, "name": "Bangladesh", "name_long": "Bangladesh", "brk_a3": "BGD", "brk_name": "Bangladesh", "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "name_sort": "Bangladesh", "mapcolor7": 3, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 156050883, "gdp_md_est": 224000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BD", "iso_a3": "BGD", "iso_n3": "050", "un_a3": "050", "wb_a2": "BD", "wb_a3": "BGD", "woe_id": -99, "adm0_a3_is": "BGD", "adm0_a3_us": "BGD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 92.565308, 22.350076 ], [ 92.669678, 22.044913 ], [ 92.669678, 21.943046 ], [ 92.647705, 21.325198 ], [ 92.301636, 21.478629 ], [ 92.367554, 20.673905 ], [ 92.081909, 21.197216 ], [ 92.021484, 21.703369 ], [ 91.928101, 21.943046 ], [ 91.834717, 22.187405 ], [ 91.713867, 22.350076 ], [ 92.565308, 22.350076 ] ] ], [ [ [ 90.560303, 22.350076 ], [ 90.329590, 21.943046 ], [ 90.269165, 21.841105 ], [ 90.043945, 21.943046 ], [ 89.846191, 22.039822 ], [ 89.697876, 21.861499 ], [ 89.560547, 21.912471 ], [ 89.560547, 22.350076 ], [ 90.560303, 22.350076 ] ] ] ] } } +, +{ "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": [ [ [ [ 110.209351, 20.102365 ], [ 110.786133, 20.081729 ], [ 111.005859, 19.699486 ], [ 110.566406, 19.259294 ], [ 110.335693, 18.682675 ], [ 109.473267, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.621826, 19.368159 ], [ 109.116211, 19.823558 ], [ 110.209351, 20.102365 ] ] ], [ [ [ 112.939453, 22.350076 ], [ 112.939453, 21.948141 ], [ 112.500000, 21.790107 ], [ 111.840820, 21.555284 ], [ 110.780640, 21.401934 ], [ 110.440063, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.627075, 21.012727 ], [ 109.863281, 21.396819 ], [ 108.517456, 21.718680 ], [ 108.045044, 21.555284 ], [ 107.039795, 21.815608 ], [ 106.885986, 21.943046 ], [ 106.561890, 22.223005 ], [ 106.600342, 22.350076 ], [ 112.939453, 22.350076 ] ] ], [ [ [ 101.760864, 22.350076 ], [ 101.651001, 22.319589 ], [ 101.700439, 21.943046 ], [ 101.799316, 21.176729 ], [ 101.266479, 21.202337 ], [ 101.178589, 21.437730 ], [ 101.145630, 21.851302 ], [ 100.415039, 21.560393 ], [ 99.981079, 21.744194 ], [ 99.585571, 21.943046 ], [ 99.239502, 22.121266 ], [ 99.321899, 22.350076 ], [ 101.760864, 22.350076 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.321899, 22.350076 ], [ 99.239502, 22.121266 ], [ 99.585571, 21.943046 ], [ 99.981079, 21.744194 ], [ 100.415039, 21.560393 ], [ 101.145630, 21.851302 ], [ 101.178589, 21.437730 ], [ 100.327148, 20.786931 ], [ 100.112915, 20.421865 ], [ 99.541626, 20.190035 ], [ 98.959351, 19.756364 ], [ 98.250732, 19.709829 ], [ 97.794800, 18.630630 ], [ 97.371826, 18.448347 ], [ 97.855225, 17.570721 ], [ 98.492432, 16.841348 ], [ 98.898926, 16.183024 ], [ 98.536377, 15.310678 ], [ 98.190308, 15.125159 ], [ 98.426514, 14.626109 ], [ 99.096680, 13.832746 ], [ 99.206543, 13.272026 ], [ 99.195557, 12.806445 ], [ 99.585571, 11.894228 ], [ 99.036255, 10.962764 ], [ 98.552856, 9.936388 ], [ 98.453979, 10.676803 ], [ 98.761597, 11.442339 ], [ 98.426514, 12.033948 ], [ 98.508911, 13.127629 ], [ 98.102417, 13.640649 ], [ 97.772827, 14.838612 ], [ 97.597046, 16.103876 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.430816 ], [ 95.366821, 15.718239 ], [ 94.806519, 15.808110 ], [ 94.185791, 16.040534 ], [ 94.531860, 17.282464 ], [ 94.323120, 18.213698 ], [ 93.537598, 19.368159 ], [ 93.658447, 19.730513 ], [ 93.076172, 19.859727 ], [ 92.367554, 20.673905 ], [ 92.301636, 21.478629 ], [ 92.647705, 21.325198 ], [ 92.669678, 21.943046 ], [ 92.669678, 22.044913 ], [ 93.164062, 22.278931 ], [ 93.147583, 22.350076 ], [ 99.321899, 22.350076 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Laos", "sov_a3": "LAO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Laos", "adm0_a3": "LAO", "geou_dif": 0, "geounit": "Laos", "gu_a3": "LAO", "su_dif": 0, "subunit": "Laos", "su_a3": "LAO", "brk_diff": 0, "name": "Lao PDR", "name_long": "Lao PDR", "brk_a3": "LAO", "brk_name": "Laos", "abbrev": "Laos", "postal": "LA", "formal_en": "Lao People's Democratic Republic", "name_sort": "Lao PDR", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 6834942, "gdp_md_est": 13980, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LA", "iso_a3": "LAO", "iso_n3": "418", "un_a3": "418", "wb_a2": "LA", "wb_a3": "LAO", "woe_id": -99, "adm0_a3_is": "LAO", "adm0_a3_us": "LAO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.255249, 22.350076 ], [ 102.551880, 21.943046 ], [ 102.749634, 21.677848 ], [ 103.200073, 20.771523 ], [ 104.430542, 20.761250 ], [ 104.820557, 19.890723 ], [ 104.183350, 19.627066 ], [ 103.892212, 19.269665 ], [ 105.089722, 18.667063 ], [ 105.924683, 17.486911 ], [ 106.550903, 16.604610 ], [ 107.308960, 15.913791 ], [ 107.561646, 15.204687 ], [ 107.380371, 14.205814 ], [ 106.495972, 14.572951 ], [ 106.040039, 13.886079 ], [ 105.216064, 14.275030 ], [ 105.540161, 14.727073 ], [ 105.584106, 15.575419 ], [ 104.776611, 16.446622 ], [ 104.716187, 17.429270 ], [ 103.952637, 18.245003 ], [ 103.200073, 18.312811 ], [ 102.996826, 17.963058 ], [ 102.409058, 17.936929 ], [ 102.112427, 18.109308 ], [ 101.057739, 17.513106 ], [ 101.035767, 18.411867 ], [ 101.277466, 19.466592 ], [ 100.601807, 19.513198 ], [ 100.546875, 20.112682 ], [ 100.112915, 20.421865 ], [ 100.327148, 20.786931 ], [ 101.178589, 21.437730 ], [ 101.266479, 21.202337 ], [ 101.799316, 21.176729 ], [ 101.700439, 21.943046 ], [ 101.651001, 22.319589 ], [ 101.760864, 22.350076 ], [ 102.255249, 22.350076 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.112915, 20.421865 ], [ 100.546875, 20.112682 ], [ 100.601807, 19.513198 ], [ 101.277466, 19.466592 ], [ 101.035767, 18.411867 ], [ 101.057739, 17.513106 ], [ 102.112427, 18.109308 ], [ 102.409058, 17.936929 ], [ 102.996826, 17.963058 ], [ 103.200073, 18.312811 ], [ 103.952637, 18.245003 ], [ 104.716187, 17.429270 ], [ 104.776611, 16.446622 ], [ 105.584106, 15.575419 ], [ 105.540161, 14.727073 ], [ 105.216064, 14.275030 ], [ 104.276733, 14.418720 ], [ 102.985840, 14.227113 ], [ 102.343140, 13.394963 ], [ 102.584839, 12.189704 ], [ 101.683960, 12.651058 ], [ 100.827026, 12.629618 ], [ 100.975342, 13.416337 ], [ 100.096436, 13.410994 ], [ 100.014038, 12.307802 ], [ 99.151611, 9.963440 ], [ 99.217529, 9.243093 ], [ 99.871216, 9.210560 ], [ 100.277710, 8.298470 ], [ 100.458984, 7.433284 ], [ 101.013794, 6.860985 ], [ 101.618042, 6.740986 ], [ 102.139893, 6.222473 ], [ 101.810303, 5.812757 ], [ 101.151123, 5.692516 ], [ 101.074219, 6.206090 ], [ 100.255737, 6.648239 ], [ 100.085449, 6.468151 ], [ 99.689941, 6.850078 ], [ 99.514160, 7.346123 ], [ 98.986816, 7.912353 ], [ 98.503418, 8.385431 ], [ 98.338623, 7.798079 ], [ 98.146362, 8.352823 ], [ 98.256226, 8.977323 ], [ 98.552856, 9.936388 ], [ 99.036255, 10.962764 ], [ 99.585571, 11.894228 ], [ 99.195557, 12.806445 ], [ 99.206543, 13.272026 ], [ 99.096680, 13.832746 ], [ 98.426514, 14.626109 ], [ 98.190308, 15.125159 ], [ 98.536377, 15.310678 ], [ 98.898926, 16.183024 ], [ 98.492432, 16.841348 ], [ 97.855225, 17.570721 ], [ 97.371826, 18.448347 ], [ 97.794800, 18.630630 ], [ 98.250732, 19.709829 ], [ 98.959351, 19.756364 ], [ 99.541626, 20.190035 ], [ 100.112915, 20.421865 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Vietnam", "sov_a3": "VNM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vietnam", "adm0_a3": "VNM", "geou_dif": 0, "geounit": "Vietnam", "gu_a3": "VNM", "su_dif": 0, "subunit": "Vietnam", "su_a3": "VNM", "brk_diff": 0, "name": "Vietnam", "name_long": "Vietnam", "brk_a3": "VNM", "brk_name": "Vietnam", "abbrev": "Viet.", "postal": "VN", "formal_en": "Socialist Republic of Vietnam", "name_sort": "Vietnam", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 86967524, "gdp_md_est": 241700, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VN", "iso_a3": "VNM", "iso_n3": "704", "un_a3": "704", "wb_a2": "VN", "wb_a3": "VNM", "woe_id": -99, "adm0_a3_is": "VNM", "adm0_a3_us": "VNM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.600342, 22.350076 ], [ 106.561890, 22.223005 ], [ 106.885986, 21.943046 ], [ 107.039795, 21.815608 ], [ 108.045044, 21.555284 ], [ 106.710205, 20.699600 ], [ 105.880737, 19.756364 ], [ 105.661011, 19.062118 ], [ 107.358398, 16.699340 ], [ 108.264771, 16.082764 ], [ 108.874512, 15.278886 ], [ 109.330444, 13.427024 ], [ 109.198608, 11.668376 ], [ 108.363647, 11.011297 ], [ 107.215576, 10.368958 ], [ 106.402588, 9.535749 ], [ 105.155640, 8.602747 ], [ 104.793091, 9.243093 ], [ 105.073242, 9.920155 ], [ 104.331665, 10.487812 ], [ 105.199585, 10.892648 ], [ 106.248779, 10.962764 ], [ 105.809326, 11.571525 ], [ 107.490234, 12.340002 ], [ 107.611084, 13.539201 ], [ 107.380371, 14.205814 ], [ 107.561646, 15.204687 ], [ 107.308960, 15.913791 ], [ 106.550903, 16.604610 ], [ 105.924683, 17.486911 ], [ 105.089722, 18.667063 ], [ 103.892212, 19.269665 ], [ 104.183350, 19.627066 ], [ 104.820557, 19.890723 ], [ 104.430542, 20.761250 ], [ 103.200073, 20.771523 ], [ 102.749634, 21.677848 ], [ 102.551880, 21.943046 ], [ 102.255249, 22.350076 ], [ 106.600342, 22.350076 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cambodia", "sov_a3": "KHM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cambodia", "adm0_a3": "KHM", "geou_dif": 0, "geounit": "Cambodia", "gu_a3": "KHM", "su_dif": 0, "subunit": "Cambodia", "su_a3": "KHM", "brk_diff": 0, "name": "Cambodia", "name_long": "Cambodia", "brk_a3": "KHM", "brk_name": "Cambodia", "abbrev": "Camb.", "postal": "KH", "formal_en": "Kingdom of Cambodia", "name_sort": "Cambodia", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 5, "pop_est": 14494293, "gdp_md_est": 27940, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KH", "iso_a3": "KHM", "iso_n3": "116", "un_a3": "116", "wb_a2": "KH", "wb_a3": "KHM", "woe_id": -99, "adm0_a3_is": "KHM", "adm0_a3_us": "KHM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.495972, 14.572951 ], [ 107.380371, 14.205814 ], [ 107.611084, 13.539201 ], [ 107.490234, 12.340002 ], [ 105.809326, 11.571525 ], [ 106.248779, 10.962764 ], [ 105.199585, 10.892648 ], [ 104.331665, 10.487812 ], [ 103.496704, 10.633615 ], [ 103.090210, 11.156845 ], [ 102.584839, 12.189704 ], [ 102.343140, 13.394963 ], [ 102.985840, 14.227113 ], [ 104.276733, 14.418720 ], [ 105.216064, 14.275030 ], [ 106.040039, 13.886079 ], [ 106.495972, 14.572951 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.939453, 3.096636 ], [ 112.939453, 1.477497 ], [ 112.857056, 1.499463 ], [ 112.500000, 1.433566 ], [ 112.379150, 1.411600 ], [ 111.796875, 0.906334 ], [ 111.154175, 0.977736 ], [ 110.511475, 0.774513 ], [ 109.824829, 1.340210 ], [ 109.660034, 2.010086 ], [ 110.396118, 1.664195 ], [ 111.165161, 1.850874 ], [ 111.368408, 2.701635 ], [ 111.796875, 2.888180 ], [ 112.500000, 3.014356 ], [ 112.939453, 3.096636 ] ] ], [ [ [ 100.255737, 6.648239 ], [ 101.074219, 6.206090 ], [ 101.151123, 5.692516 ], [ 101.810303, 5.812757 ], [ 102.139893, 6.222473 ], [ 102.370605, 6.129631 ], [ 102.958374, 5.528511 ], [ 103.375854, 4.855628 ], [ 103.436279, 4.182073 ], [ 103.331909, 3.727227 ], [ 103.425293, 3.387307 ], [ 103.502197, 2.794911 ], [ 103.853760, 2.520549 ], [ 104.243774, 1.631249 ], [ 104.227295, 1.296276 ], [ 103.518677, 1.230374 ], [ 102.568359, 1.971657 ], [ 101.387329, 2.761991 ], [ 101.271973, 3.272146 ], [ 100.695190, 3.940981 ], [ 100.552368, 4.768047 ], [ 100.195312, 5.315236 ], [ 100.305176, 6.042236 ], [ 100.085449, 6.468151 ], [ 100.255737, 6.648239 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 109.660034, 2.010086 ], [ 109.824829, 1.340210 ], [ 110.511475, 0.774513 ], [ 111.154175, 0.977736 ], [ 111.796875, 0.906334 ], [ 112.379150, 1.411600 ], [ 112.500000, 1.433566 ], [ 112.857056, 1.499463 ], [ 112.939453, 1.477497 ], [ 112.939453, -0.439449 ], [ 109.083252, -0.439449 ], [ 109.017334, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.066772, 1.345701 ], [ 109.660034, 2.010086 ] ] ], [ [ [ 95.289917, 5.484768 ], [ 95.932617, 5.441022 ], [ 97.481689, 5.249598 ], [ 98.366089, 4.269724 ], [ 99.140625, 3.595660 ], [ 99.689941, 3.178910 ], [ 100.640259, 2.103409 ], [ 101.656494, 2.086941 ], [ 102.496948, 1.400617 ], [ 103.073730, 0.565787 ], [ 103.837280, 0.109863 ], [ 103.782349, 0.000000 ], [ 103.568115, -0.439449 ], [ 99.915161, -0.439449 ], [ 99.453735, 0.000000 ], [ 99.261475, 0.186767 ], [ 98.964844, 1.043643 ], [ 98.596802, 1.828913 ], [ 97.695923, 2.454693 ], [ 97.174072, 3.310534 ], [ 96.421509, 3.869735 ], [ 95.377808, 4.976033 ], [ 95.289917, 5.484768 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.113892, 29.453948 ], [ 96.586304, 28.835050 ], [ 96.245728, 28.415560 ], [ 97.322388, 28.265682 ], [ 97.399292, 27.882784 ], [ 97.047729, 27.702984 ], [ 97.130127, 27.088473 ], [ 96.416016, 27.269279 ], [ 95.119629, 26.573790 ], [ 95.152588, 26.002487 ], [ 94.597778, 25.165173 ], [ 94.548340, 24.676970 ], [ 94.103394, 23.855698 ], [ 93.323364, 24.081574 ], [ 93.284912, 23.044353 ], [ 93.059692, 22.705255 ], [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.142334, 23.629427 ], [ 91.867676, 23.624395 ], [ 91.702881, 22.988738 ], [ 91.153564, 23.503552 ], [ 91.466675, 24.076559 ], [ 91.911621, 24.131715 ], [ 92.373047, 24.981079 ], [ 91.796265, 25.150257 ], [ 90.867920, 25.135339 ], [ 90.000000, 25.259601 ], [ 89.917603, 25.274504 ], [ 89.829712, 25.967922 ], [ 89.560547, 25.997550 ], [ 89.560547, 26.799558 ], [ 89.741821, 26.721080 ], [ 90.000000, 26.784847 ], [ 90.368042, 26.877981 ], [ 91.213989, 26.809364 ], [ 92.032471, 26.838776 ], [ 92.098389, 27.454665 ], [ 91.691895, 27.775912 ], [ 92.499390, 27.897349 ], [ 93.411255, 28.642389 ], [ 94.564819, 29.281608 ], [ 95.399780, 29.032158 ], [ 96.113892, 29.453948 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bangladesh", "sov_a3": "BGD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bangladesh", "adm0_a3": "BGD", "geou_dif": 0, "geounit": "Bangladesh", "gu_a3": "BGD", "su_dif": 0, "subunit": "Bangladesh", "su_a3": "BGD", "brk_diff": 0, "name": "Bangladesh", "name_long": "Bangladesh", "brk_a3": "BGD", "brk_name": "Bangladesh", "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "name_sort": "Bangladesh", "mapcolor7": 3, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 156050883, "gdp_md_est": 224000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BD", "iso_a3": "BGD", "iso_n3": "050", "un_a3": "050", "wb_a2": "BD", "wb_a3": "BGD", "woe_id": -99, "adm0_a3_is": "BGD", "adm0_a3_us": "BGD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.560547, 25.997550 ], [ 89.829712, 25.967922 ], [ 89.917603, 25.274504 ], [ 90.000000, 25.259601 ], [ 90.867920, 25.135339 ], [ 91.796265, 25.150257 ], [ 92.373047, 24.981079 ], [ 91.911621, 24.131715 ], [ 91.466675, 24.076559 ], [ 91.153564, 23.503552 ], [ 91.702881, 22.988738 ], [ 91.867676, 23.624395 ], [ 92.142334, 23.629427 ], [ 92.669678, 22.044913 ], [ 92.669678, 21.943046 ], [ 92.653198, 21.534847 ], [ 92.043457, 21.534847 ], [ 92.021484, 21.703369 ], [ 91.928101, 21.943046 ], [ 91.834717, 22.187405 ], [ 91.411743, 22.766051 ], [ 90.494385, 22.806567 ], [ 90.582275, 22.395793 ], [ 90.329590, 21.943046 ], [ 90.269165, 21.841105 ], [ 90.043945, 21.943046 ], [ 90.000000, 21.968519 ], [ 89.846191, 22.039822 ], [ 89.697876, 21.861499 ], [ 89.560547, 21.912471 ], [ 89.560547, 25.997550 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 112.939453, 41.310824 ], [ 112.939453, 21.948141 ], [ 111.840820, 21.555284 ], [ 111.730957, 21.534847 ], [ 109.275513, 21.534847 ], [ 108.517456, 21.718680 ], [ 108.045044, 21.555284 ], [ 107.039795, 21.815608 ], [ 106.885986, 21.943046 ], [ 106.561890, 22.223005 ], [ 106.721191, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.474487, 22.821757 ], [ 103.502197, 22.705255 ], [ 102.705688, 22.710323 ], [ 102.167358, 22.466878 ], [ 101.651001, 22.319589 ], [ 101.700439, 21.943046 ], [ 101.755371, 21.534847 ], [ 101.167603, 21.534847 ], [ 101.145630, 21.851302 ], [ 100.415039, 21.560393 ], [ 99.981079, 21.744194 ], [ 99.585571, 21.943046 ], [ 99.239502, 22.121266 ], [ 99.530640, 22.953335 ], [ 98.893433, 23.145411 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.900905 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.923467 ], [ 98.706665, 26.745610 ], [ 98.679199, 27.513143 ], [ 98.245239, 27.751608 ], [ 97.910156, 28.338230 ], [ 97.322388, 28.265682 ], [ 96.245728, 28.415560 ], [ 96.586304, 28.835050 ], [ 96.113892, 29.453948 ], [ 95.399780, 29.032158 ], [ 94.564819, 29.281608 ], [ 93.411255, 28.642389 ], [ 92.499390, 27.897349 ], [ 91.691895, 27.775912 ], [ 91.257935, 28.042895 ], [ 90.725098, 28.067133 ], [ 90.010986, 28.299544 ], [ 90.000000, 28.289870 ], [ 89.560547, 28.086520 ], [ 89.560547, 41.310824 ], [ 112.939453, 41.310824 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.910156, 28.338230 ], [ 98.245239, 27.751608 ], [ 98.679199, 27.513143 ], [ 98.706665, 26.745610 ], [ 98.668213, 25.923467 ], [ 97.723389, 25.085599 ], [ 97.602539, 23.900905 ], [ 98.657227, 24.066528 ], [ 98.893433, 23.145411 ], [ 99.530640, 22.953335 ], [ 99.239502, 22.121266 ], [ 99.585571, 21.943046 ], [ 99.981079, 21.744194 ], [ 100.415039, 21.560393 ], [ 101.145630, 21.851302 ], [ 101.167603, 21.534847 ], [ 92.653198, 21.534847 ], [ 92.669678, 21.943046 ], [ 92.669678, 22.044913 ], [ 93.164062, 22.278931 ], [ 93.059692, 22.705255 ], [ 93.284912, 23.044353 ], [ 93.323364, 24.081574 ], [ 94.103394, 23.855698 ], [ 94.548340, 24.676970 ], [ 94.597778, 25.165173 ], [ 95.152588, 26.002487 ], [ 95.119629, 26.573790 ], [ 96.416016, 27.269279 ], [ 97.130127, 27.088473 ], [ 97.047729, 27.702984 ], [ 97.399292, 27.882784 ], [ 97.322388, 28.265682 ], [ 97.910156, 28.338230 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Laos", "sov_a3": "LAO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Laos", "adm0_a3": "LAO", "geou_dif": 0, "geounit": "Laos", "gu_a3": "LAO", "su_dif": 0, "subunit": "Laos", "su_a3": "LAO", "brk_diff": 0, "name": "Lao PDR", "name_long": "Lao PDR", "brk_a3": "LAO", "brk_name": "Laos", "abbrev": "Laos", "postal": "LA", "formal_en": "Lao People's Democratic Republic", "name_sort": "Lao PDR", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 6834942, "gdp_md_est": 13980, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LA", "iso_a3": "LAO", "iso_n3": "418", "un_a3": "418", "wb_a2": "LA", "wb_a3": "LAO", "woe_id": -99, "adm0_a3_is": "LAO", "adm0_a3_us": "LAO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.167358, 22.466878 ], [ 102.551880, 21.943046 ], [ 102.749634, 21.677848 ], [ 102.821045, 21.534847 ], [ 101.755371, 21.534847 ], [ 101.700439, 21.943046 ], [ 101.651001, 22.319589 ], [ 102.167358, 22.466878 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Vietnam", "sov_a3": "VNM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vietnam", "adm0_a3": "VNM", "geou_dif": 0, "geounit": "Vietnam", "gu_a3": "VNM", "su_dif": 0, "subunit": "Vietnam", "su_a3": "VNM", "brk_diff": 0, "name": "Vietnam", "name_long": "Vietnam", "brk_a3": "VNM", "brk_name": "Vietnam", "abbrev": "Viet.", "postal": "VN", "formal_en": "Socialist Republic of Vietnam", "name_sort": "Vietnam", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 86967524, "gdp_md_est": 241700, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VN", "iso_a3": "VNM", "iso_n3": "704", "un_a3": "704", "wb_a2": "VN", "wb_a3": "VNM", "woe_id": -99, "adm0_a3_is": "VNM", "adm0_a3_us": "VNM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.325928, 23.352343 ], [ 105.809326, 22.978624 ], [ 106.721191, 22.796439 ], [ 106.561890, 22.223005 ], [ 106.885986, 21.943046 ], [ 107.039795, 21.815608 ], [ 108.045044, 21.555284 ], [ 108.017578, 21.534847 ], [ 102.821045, 21.534847 ], [ 102.749634, 21.677848 ], [ 102.551880, 21.943046 ], [ 102.167358, 22.466878 ], [ 102.705688, 22.710323 ], [ 103.502197, 22.705255 ], [ 104.474487, 22.821757 ], [ 105.325928, 23.352343 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 112.939453, 56.022948 ], [ 112.939453, 49.564415 ], [ 112.895508, 49.546598 ], [ 112.500000, 49.496675 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 90.000000, 50.014799 ], [ 89.560547, 49.813176 ], [ 89.560547, 56.022948 ], [ 112.939453, 56.022948 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.860474, 52.049112 ], [ 99.981079, 51.635067 ], [ 100.887451, 51.518998 ], [ 102.062988, 51.261915 ], [ 102.255249, 50.513427 ], [ 103.672485, 50.092393 ], [ 104.617310, 50.278809 ], [ 105.886230, 50.408518 ], [ 106.885986, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.473511, 49.285723 ], [ 109.401855, 49.296472 ], [ 110.659790, 49.131408 ], [ 111.577148, 49.378797 ], [ 112.500000, 49.496675 ], [ 112.895508, 49.546598 ], [ 112.939453, 49.564415 ], [ 112.939453, 44.914249 ], [ 112.500000, 44.999767 ], [ 111.868286, 45.104546 ], [ 111.346436, 44.461231 ], [ 111.665039, 44.075747 ], [ 111.824341, 43.743321 ], [ 111.126709, 43.409038 ], [ 110.407104, 42.871938 ], [ 109.242554, 42.520700 ], [ 107.742920, 42.484251 ], [ 106.127930, 42.134895 ], [ 104.963379, 41.599013 ], [ 104.518433, 41.910453 ], [ 103.309937, 41.910453 ], [ 101.832275, 42.516651 ], [ 100.843506, 42.666281 ], [ 99.514160, 42.524748 ], [ 97.448730, 42.751046 ], [ 96.344604, 42.726839 ], [ 95.762329, 43.321181 ], [ 95.306396, 44.245199 ], [ 94.685669, 44.355278 ], [ 93.477173, 44.976457 ], [ 92.131348, 45.116177 ], [ 90.944824, 45.286482 ], [ 90.582275, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.280151, 47.694974 ], [ 90.000000, 47.768868 ], [ 89.560547, 47.886881 ], [ 89.560547, 49.813176 ], [ 90.000000, 50.014799 ], [ 90.708618, 50.334943 ], [ 92.230225, 50.802463 ], [ 93.103638, 50.495958 ], [ 94.147339, 50.481978 ], [ 94.812012, 50.014799 ], [ 95.811768, 49.979488 ], [ 97.256470, 49.728030 ], [ 98.228760, 50.422519 ], [ 97.822266, 51.013755 ], [ 98.860474, 52.049112 ] ] ] } } +, +{ "type": "Feature", "properties": { "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": "Polygon", "coordinates": [ [ [ 89.560547, 47.886881 ], [ 90.000000, 47.768868 ], [ 90.280151, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.286482 ], [ 92.131348, 45.116177 ], [ 93.477173, 44.976457 ], [ 94.685669, 44.355278 ], [ 95.306396, 44.245199 ], [ 95.762329, 43.321181 ], [ 96.344604, 42.726839 ], [ 97.448730, 42.751046 ], [ 99.514160, 42.524748 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.516651 ], [ 103.309937, 41.910453 ], [ 104.518433, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.134895 ], [ 107.742920, 42.484251 ], [ 109.242554, 42.520700 ], [ 110.407104, 42.871938 ], [ 111.126709, 43.409038 ], [ 111.824341, 43.743321 ], [ 111.665039, 44.075747 ], [ 111.346436, 44.461231 ], [ 111.868286, 45.104546 ], [ 112.500000, 44.999767 ], [ 112.939453, 44.914249 ], [ 112.939453, 40.647304 ], [ 89.560547, 40.647304 ], [ 89.560547, 47.886881 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 112.939453, 66.687784 ], [ 112.939453, 55.528631 ], [ 89.560547, 55.528631 ], [ 89.560547, 66.687784 ], [ 112.939453, 66.687784 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 109.753418, 74.140084 ], [ 110.637817, 74.040702 ], [ 110.758667, 74.019543 ], [ 112.115479, 73.788054 ], [ 112.500000, 73.869139 ], [ 112.939453, 73.960457 ], [ 112.939453, 66.337505 ], [ 89.560547, 66.337505 ], [ 89.560547, 74.140084 ], [ 109.753418, 74.140084 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "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": [ [ [ [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 112.500000, 76.404937 ], [ 112.939453, 76.309057 ], [ 112.939453, 75.075840 ], [ 112.774658, 75.031921 ], [ 112.500000, 74.975064 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 110.758667, 74.019543 ], [ 111.472778, 73.898111 ], [ 89.560547, 73.898111 ], [ 89.560547, 75.464105 ], [ 90.000000, 75.575362 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ] ] ], [ [ [ 112.939453, 73.898111 ], [ 112.642822, 73.898111 ], [ 112.939453, 73.960457 ], [ 112.939453, 73.898111 ] ] ], [ [ [ 102.963867, 79.253586 ], [ 103.337402, 79.171335 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.167603, 79.171335 ], [ 101.260986, 79.234107 ], [ 101.403809, 79.253586 ], [ 102.963867, 79.253586 ] ] ], [ [ [ 100.036011, 79.253586 ], [ 100.014038, 79.171335 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 94.427490, 79.171335 ], [ 94.070435, 79.253586 ], [ 100.036011, 79.253586 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "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": [ [ [ [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ], [ 103.337402, 79.171335 ], [ 103.710938, 79.088462 ], [ 101.046753, 79.088462 ], [ 101.167603, 79.171335 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 100.014038, 79.171335 ], [ 99.992065, 79.088462 ], [ 94.784546, 79.088462 ], [ 94.427490, 79.171335 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -21.534847 ], [ 135.439453, -34.597042 ], [ 135.203247, -34.474864 ], [ 135.236206, -33.947917 ], [ 135.000000, -33.669497 ], [ 134.609985, -33.220308 ], [ 134.082642, -32.847289 ], [ 134.269409, -32.616243 ], [ 132.989502, -32.008076 ], [ 132.286377, -31.980123 ], [ 131.325073, -31.494262 ], [ 129.534302, -31.587894 ], [ 128.237915, -31.947501 ], [ 127.100830, -32.277845 ], [ 126.145020, -32.212801 ], [ 125.084839, -32.727220 ], [ 124.216919, -32.957977 ], [ 124.024658, -33.481854 ], [ 123.656616, -33.888658 ], [ 122.810669, -33.911454 ], [ 122.178955, -34.002581 ], [ 121.294556, -33.820230 ], [ 120.574951, -33.929688 ], [ 119.888306, -33.975253 ], [ 119.295044, -34.506557 ], [ 119.003906, -34.461277 ], [ 118.504028, -34.746126 ], [ 118.020630, -35.061477 ], [ 117.290039, -35.021000 ], [ 116.619873, -35.021000 ], [ 115.559692, -34.384246 ], [ 115.021362, -34.193630 ], [ 115.043335, -33.619194 ], [ 115.543213, -33.486435 ], [ 115.713501, -33.257063 ], [ 115.675049, -32.898038 ], [ 115.801392, -32.203505 ], [ 115.686035, -31.611288 ], [ 115.158691, -30.600094 ], [ 114.993896, -30.026300 ], [ 115.037842, -29.458731 ], [ 114.636841, -28.806174 ], [ 114.614868, -28.512143 ], [ 114.169922, -28.115594 ], [ 114.043579, -27.332735 ], [ 113.472290, -26.539394 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.544309 ], [ 113.439331, -25.616763 ], [ 113.933716, -25.908644 ], [ 114.230347, -26.298340 ], [ 114.213867, -25.785053 ], [ 113.719482, -24.996016 ], [ 113.620605, -24.681961 ], [ 113.389893, -24.382124 ], [ 113.499756, -23.805450 ], [ 113.703003, -23.558952 ], [ 113.840332, -23.059516 ], [ 113.735962, -22.471955 ], [ 114.038086, -21.943046 ], [ 114.147949, -21.754398 ], [ 114.164429, -21.943046 ], [ 114.224854, -22.512557 ], [ 114.576416, -21.943046 ], [ 114.642334, -21.825807 ], [ 115.361938, -21.534847 ], [ 135.439453, -21.534847 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.963989, -8.890499 ], [ 125.068359, -9.085824 ], [ 125.084839, -9.389452 ], [ 124.431152, -10.136524 ], [ 123.579712, -10.358151 ], [ 123.458862, -10.239249 ], [ 123.546753, -9.898510 ], [ 123.975220, -9.286465 ], [ 124.963989, -8.890499 ] ] ], [ [ [ 119.899292, -9.356933 ], [ 120.421143, -9.665738 ], [ 120.772705, -9.968851 ], [ 120.712280, -10.239249 ], [ 120.294800, -10.255465 ], [ 118.965454, -9.557417 ], [ 119.899292, -9.356933 ] ] ], [ [ [ 117.899780, -8.091862 ], [ 118.256836, -8.358258 ], [ 118.877563, -8.276727 ], [ 119.124756, -8.700499 ], [ 117.965698, -8.901353 ], [ 117.273560, -9.037003 ], [ 116.735229, -9.031578 ], [ 117.081299, -8.456072 ], [ 117.630615, -8.445205 ], [ 117.899780, -8.091862 ] ] ], [ [ [ 122.898560, -8.091862 ], [ 122.755737, -8.646196 ], [ 121.250610, -8.928487 ], [ 119.921265, -8.809082 ], [ 119.915771, -8.439772 ], [ 120.712280, -8.233237 ], [ 121.338501, -8.532133 ], [ 122.003174, -8.456072 ], [ 122.898560, -8.091862 ] ] ], [ [ [ 112.060547, -6.800990 ], [ 112.500000, -6.915521 ], [ 112.609863, -6.942786 ], [ 112.977905, -7.591218 ], [ 114.477539, -7.776309 ], [ 115.702515, -8.369127 ], [ 114.559937, -8.749366 ], [ 113.461304, -8.347388 ], [ 112.554932, -8.374562 ], [ 112.500000, -8.369127 ], [ 112.060547, -8.336518 ], [ 112.060547, -6.800990 ] ] ], [ [ [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ], [ 134.719849, -6.211551 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ] ] ], [ [ [ 124.442139, 0.439449 ], [ 124.436646, 0.428463 ], [ 123.684082, 0.236205 ], [ 122.722778, 0.433956 ], [ 121.052856, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.135498, 0.000000 ], [ 120.036621, -0.516350 ], [ 120.932007, -1.406109 ], [ 121.470337, -0.955766 ], [ 123.338013, -0.615223 ], [ 123.255615, -1.071105 ], [ 122.821655, -0.928304 ], [ 122.387695, -1.515936 ], [ 121.503296, -1.900286 ], [ 122.453613, -3.184394 ], [ 122.266846, -3.524387 ], [ 123.167725, -4.680455 ], [ 123.162231, -5.337114 ], [ 122.623901, -5.632386 ], [ 122.233887, -5.282418 ], [ 122.717285, -4.461427 ], [ 121.734009, -4.850154 ], [ 121.486816, -4.570949 ], [ 121.618652, -4.187551 ], [ 120.893555, -3.601142 ], [ 120.970459, -2.624814 ], [ 120.300293, -2.926583 ], [ 120.388184, -4.094411 ], [ 120.426636, -5.523043 ], [ 119.794922, -5.670651 ], [ 119.366455, -5.375398 ], [ 119.652100, -4.455951 ], [ 119.498291, -3.491489 ], [ 119.075317, -3.486006 ], [ 118.767700, -2.800398 ], [ 119.179688, -2.141835 ], [ 119.322510, -1.351193 ], [ 119.772949, 0.000000 ], [ 119.822388, 0.159302 ], [ 119.970703, 0.439449 ], [ 124.442139, 0.439449 ] ] ], [ [ [ 132.379761, -0.368039 ], [ 133.983765, -0.780005 ], [ 134.143066, -1.147994 ], [ 134.417725, -2.767478 ], [ 135.000000, -3.102121 ], [ 135.439453, -3.354405 ], [ 135.439453, -4.488809 ], [ 135.159302, -4.461427 ], [ 135.000000, -4.357366 ], [ 133.659668, -3.535352 ], [ 133.363037, -4.023179 ], [ 132.978516, -4.110848 ], [ 132.753296, -3.743671 ], [ 132.753296, -3.310534 ], [ 131.989746, -2.816858 ], [ 133.066406, -2.460181 ], [ 133.775024, -2.476645 ], [ 133.692627, -2.213195 ], [ 132.231445, -2.207705 ], [ 131.835938, -1.614776 ], [ 130.940552, -1.428075 ], [ 130.517578, -0.933797 ], [ 131.863403, -0.692122 ], [ 132.379761, -0.368039 ] ] ], [ [ [ 117.641602, 0.439449 ], [ 117.476807, 0.104370 ], [ 117.482300, 0.000000 ], [ 117.520752, -0.801976 ], [ 116.559448, -1.482989 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.012220 ], [ 115.999146, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.491489 ], [ 113.752441, -3.436658 ], [ 113.252563, -3.118576 ], [ 112.500000, -3.343438 ], [ 112.066040, -3.475040 ], [ 112.060547, -3.464074 ], [ 112.060547, 0.439449 ], [ 117.641602, 0.439449 ] ] ], [ [ [ 129.369507, -2.800398 ], [ 130.468140, -3.091151 ], [ 130.830688, -3.853293 ], [ 129.990234, -3.442141 ], [ 129.149780, -3.359889 ], [ 128.589478, -3.425692 ], [ 127.897339, -3.392791 ], [ 128.133545, -2.838804 ], [ 129.369507, -2.800398 ] ] ], [ [ [ 126.996460, -3.124061 ], [ 127.249146, -3.458591 ], [ 126.870117, -3.787522 ], [ 126.183472, -3.606625 ], [ 125.985718, -3.173425 ], [ 126.996460, -3.124061 ] ] ], [ [ [ 128.644409, 0.439449 ], [ 128.633423, 0.263671 ], [ 128.117065, 0.357053 ], [ 128.029175, 0.000000 ], [ 127.963257, -0.247192 ], [ 128.375244, -0.774513 ], [ 128.095093, -0.895349 ], [ 127.694092, -0.263671 ], [ 127.633667, 0.000000 ], [ 127.529297, 0.439449 ], [ 128.644409, 0.439449 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.147949, -21.754398 ], [ 114.164429, -21.943046 ], [ 114.208374, -22.350076 ], [ 113.807373, -22.350076 ], [ 114.038086, -21.943046 ], [ 114.147949, -21.754398 ] ] ], [ [ [ 133.016968, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.390259, -12.039321 ], [ 134.675903, -11.937227 ], [ 135.000000, -12.098410 ], [ 135.296631, -12.243392 ], [ 135.439453, -12.178965 ], [ 135.439453, -14.700508 ], [ 135.428467, -14.711135 ], [ 135.439453, -14.753635 ], [ 135.439453, -22.350076 ], [ 114.323730, -22.350076 ], [ 114.576416, -21.943046 ], [ 114.642334, -21.825807 ], [ 115.455322, -21.493964 ], [ 115.944214, -21.063997 ], [ 116.707764, -20.699600 ], [ 117.163696, -20.622502 ], [ 117.438354, -20.745840 ], [ 118.229370, -20.370377 ], [ 118.833618, -20.262197 ], [ 118.987427, -20.040450 ], [ 119.251099, -19.952696 ], [ 119.800415, -19.973349 ], [ 120.855103, -19.678798 ], [ 121.398926, -19.238550 ], [ 121.651611, -18.703489 ], [ 122.239380, -18.192825 ], [ 122.283325, -17.795766 ], [ 122.310791, -17.250990 ], [ 123.008423, -16.404470 ], [ 123.431396, -17.266728 ], [ 123.854370, -17.067287 ], [ 123.502808, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.325411 ], [ 124.376221, -15.564836 ], [ 124.925537, -15.072124 ], [ 125.167236, -14.679254 ], [ 125.667114, -14.509144 ], [ 125.683594, -14.227113 ], [ 126.123047, -14.344226 ], [ 126.139526, -14.093957 ], [ 126.578979, -13.950061 ], [ 127.062378, -13.816744 ], [ 127.803955, -14.275030 ], [ 128.358765, -14.865160 ], [ 128.984985, -14.875778 ], [ 129.616699, -14.966013 ], [ 129.407959, -14.418720 ], [ 129.885864, -13.613956 ], [ 130.336304, -13.352210 ], [ 130.182495, -13.106230 ], [ 130.616455, -12.533115 ], [ 131.220703, -12.178965 ], [ 131.731567, -12.302435 ], [ 132.572021, -12.109152 ], [ 132.555542, -11.598432 ], [ 131.819458, -11.270000 ], [ 132.352295, -11.124507 ], [ 133.016968, -11.372339 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 113.576660, 22.350076 ], [ 113.236084, 22.055096 ], [ 112.933960, 21.943046 ], [ 112.500000, 21.790107 ], [ 112.060547, 21.631899 ], [ 112.060547, 22.350076 ], [ 113.576660, 22.350076 ] ] ], [ [ [ 114.323730, 22.350076 ], [ 114.147949, 22.228090 ], [ 114.016113, 22.350076 ], [ 114.323730, 22.350076 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.125244, 6.931880 ], [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 118.344727, 5.708914 ], [ 119.179688, 5.408211 ], [ 119.108276, 5.019811 ], [ 118.438110, 4.970560 ], [ 118.613892, 4.483333 ], [ 117.877808, 4.138243 ], [ 117.009888, 4.308069 ], [ 115.861816, 4.308069 ], [ 115.515747, 3.173425 ], [ 115.131226, 2.822344 ], [ 114.620361, 1.433566 ], [ 113.801880, 1.219390 ], [ 112.857056, 1.499463 ], [ 112.500000, 1.433566 ], [ 112.379150, 1.411600 ], [ 112.060547, 1.137010 ], [ 112.060547, 2.937555 ], [ 112.500000, 3.014356 ], [ 112.994385, 3.107606 ], [ 113.708496, 3.897138 ], [ 114.202881, 4.527142 ], [ 114.658813, 4.012220 ], [ 114.867554, 4.351889 ], [ 115.345459, 4.319024 ], [ 115.449829, 5.451959 ], [ 116.218872, 6.146016 ], [ 116.724243, 6.926427 ], [ 117.125244, 6.931880 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Philippines", "sov_a3": "PHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Philippines", "adm0_a3": "PHL", "geou_dif": 0, "geounit": "Philippines", "gu_a3": "PHL", "su_dif": 0, "subunit": "Philippines", "su_a3": "PHL", "brk_diff": 0, "name": "Philippines", "name_long": "Philippines", "brk_a3": "PHL", "brk_name": "Philippines", "abbrev": "Phil.", "postal": "PH", "formal_en": "Republic of the Philippines", "name_sort": "Philippines", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 97976603, "gdp_md_est": 317500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PH", "iso_a3": "PHL", "iso_n3": "608", "un_a3": "608", "wb_a2": "PH", "wb_a3": "PHL", "woe_id": -99, "adm0_a3_is": "PHL", "adm0_a3_us": "PHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.408936, 9.763198 ], [ 126.221924, 9.286465 ], [ 126.375732, 8.418036 ], [ 126.474609, 7.754537 ], [ 126.535034, 7.193551 ], [ 126.194458, 6.277078 ], [ 125.826416, 7.297088 ], [ 125.359497, 6.790080 ], [ 125.678101, 6.053161 ], [ 125.392456, 5.583184 ], [ 124.216919, 6.162401 ], [ 123.936768, 6.888254 ], [ 124.238892, 7.362467 ], [ 123.607178, 7.836173 ], [ 123.294067, 7.422389 ], [ 122.821655, 7.460518 ], [ 122.080078, 6.904614 ], [ 121.915283, 7.193551 ], [ 122.310791, 8.037473 ], [ 122.937012, 8.320212 ], [ 123.486328, 8.695069 ], [ 123.837891, 8.244110 ], [ 124.601440, 8.515836 ], [ 124.760742, 8.961045 ], [ 125.469360, 8.988175 ], [ 125.408936, 9.763198 ] ] ], [ [ [ 119.509277, 11.372339 ], [ 119.685059, 10.558022 ], [ 119.025879, 10.006720 ], [ 118.504028, 9.318990 ], [ 117.169189, 8.369127 ], [ 117.663574, 9.069551 ], [ 118.383179, 9.687398 ], [ 118.981934, 10.379765 ], [ 119.509277, 11.372339 ] ] ], [ [ [ 124.074097, 11.237674 ], [ 123.980713, 10.282491 ], [ 123.618164, 9.952620 ], [ 123.305054, 9.318990 ], [ 122.991943, 9.026153 ], [ 122.376709, 9.714472 ], [ 122.585449, 9.985081 ], [ 122.832642, 10.266276 ], [ 122.942505, 10.887254 ], [ 123.497314, 10.941192 ], [ 123.332520, 10.271681 ], [ 124.074097, 11.237674 ] ] ], [ [ [ 124.266357, 12.559925 ], [ 125.222168, 12.538478 ], [ 125.502319, 12.162856 ], [ 125.782471, 11.049038 ], [ 125.007935, 11.313094 ], [ 125.029907, 10.978943 ], [ 125.277100, 10.363555 ], [ 124.799194, 10.136524 ], [ 124.755249, 10.838701 ], [ 124.458618, 10.892648 ], [ 124.299316, 11.496174 ], [ 124.887085, 11.420802 ], [ 124.876099, 11.797457 ], [ 124.266357, 12.559925 ] ] ], [ [ [ 121.882324, 11.894228 ], [ 122.481079, 11.582288 ], [ 123.118286, 11.587669 ], [ 123.096313, 11.167624 ], [ 122.634888, 10.741572 ], [ 121.997681, 10.444598 ], [ 121.964722, 10.908830 ], [ 122.036133, 11.420802 ], [ 121.882324, 11.894228 ] ] ], [ [ [ 120.322266, 13.469764 ], [ 121.179199, 13.432367 ], [ 121.525269, 13.074128 ], [ 121.261597, 12.205811 ], [ 120.833130, 12.704651 ], [ 120.322266, 13.469764 ] ] ], [ [ [ 121.316528, 18.505657 ], [ 121.937256, 18.218916 ], [ 122.244873, 18.479609 ], [ 122.332764, 18.229351 ], [ 122.173462, 17.811456 ], [ 122.514038, 17.093542 ], [ 122.250366, 16.267414 ], [ 121.662598, 15.934920 ], [ 121.503296, 15.125159 ], [ 121.728516, 14.333582 ], [ 122.255859, 14.221789 ], [ 122.700806, 14.338904 ], [ 123.947754, 13.784737 ], [ 123.854370, 13.239945 ], [ 124.178467, 12.999205 ], [ 124.074097, 12.538478 ], [ 123.294067, 13.031318 ], [ 122.926025, 13.555222 ], [ 122.667847, 13.186468 ], [ 122.030640, 13.784737 ], [ 121.124268, 13.640649 ], [ 120.624390, 13.859414 ], [ 120.679321, 14.275030 ], [ 120.986938, 14.530415 ], [ 120.690308, 14.758947 ], [ 120.563965, 14.397439 ], [ 120.069580, 14.971320 ], [ 119.915771, 15.411319 ], [ 119.882812, 16.367580 ], [ 120.283813, 16.035255 ], [ 120.388184, 17.602139 ], [ 120.712280, 18.505657 ], [ 121.316528, 18.505657 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.379761, -0.368039 ], [ 132.648926, -0.439449 ], [ 132.269897, -0.439449 ], [ 132.379761, -0.368039 ] ] ], [ [ [ 125.062866, 1.647722 ], [ 125.238647, 1.422583 ], [ 124.436646, 0.428463 ], [ 123.684082, 0.236205 ], [ 122.722778, 0.433956 ], [ 121.052856, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.135498, 0.000000 ], [ 120.053101, -0.439449 ], [ 119.624634, -0.439449 ], [ 119.772949, 0.000000 ], [ 119.822388, 0.159302 ], [ 120.031128, 0.571280 ], [ 120.882568, 1.312751 ], [ 121.662598, 1.016182 ], [ 122.926025, 0.878872 ], [ 124.074097, 0.917319 ], [ 125.062866, 1.647722 ] ] ], [ [ [ 127.930298, 2.174771 ], [ 128.001709, 1.631249 ], [ 128.589478, 1.543392 ], [ 128.682861, 1.137010 ], [ 128.633423, 0.263671 ], [ 128.117065, 0.357053 ], [ 128.029175, 0.000000 ], [ 127.963257, -0.247192 ], [ 128.111572, -0.439449 ], [ 127.803955, -0.439449 ], [ 127.694092, -0.263671 ], [ 127.633667, 0.000000 ], [ 127.397461, 1.016182 ], [ 127.595215, 1.812442 ], [ 127.930298, 2.174771 ] ] ], [ [ [ 117.009888, 4.308069 ], [ 117.877808, 4.138243 ], [ 117.312012, 3.239240 ], [ 118.048096, 2.290039 ], [ 117.872314, 1.828913 ], [ 118.992920, 0.906334 ], [ 117.806396, 0.785498 ], [ 117.476807, 0.104370 ], [ 117.482300, 0.000000 ], [ 117.498779, -0.439449 ], [ 112.060547, -0.439449 ], [ 112.060547, 1.137010 ], [ 112.379150, 1.411600 ], [ 112.500000, 1.433566 ], [ 112.857056, 1.499463 ], [ 113.801880, 1.219390 ], [ 114.620361, 1.433566 ], [ 115.131226, 2.822344 ], [ 115.515747, 3.173425 ], [ 115.861816, 4.308069 ], [ 117.009888, 4.308069 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 126.375732, 41.310824 ], [ 126.177979, 41.108330 ], [ 125.919800, 40.979898 ], [ 125.079346, 40.572240 ], [ 124.260864, 39.930801 ], [ 122.865601, 39.639538 ], [ 122.129517, 39.172659 ], [ 121.052856, 38.899583 ], [ 121.585693, 39.364032 ], [ 121.371460, 39.753657 ], [ 122.167969, 40.426042 ], [ 121.635132, 40.946714 ], [ 120.767212, 40.597271 ], [ 119.635620, 39.901309 ], [ 119.020386, 39.253525 ], [ 118.042603, 39.206719 ], [ 117.531738, 38.741231 ], [ 118.059082, 38.065392 ], [ 118.877563, 37.900865 ], [ 118.910522, 37.448697 ], [ 119.701538, 37.160317 ], [ 120.822144, 37.870517 ], [ 121.706543, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.655200 ], [ 120.635376, 36.115690 ], [ 119.663086, 35.612651 ], [ 119.146729, 34.912962 ], [ 120.223389, 34.361576 ], [ 120.618896, 33.380999 ], [ 121.228638, 32.463426 ], [ 121.904297, 31.695456 ], [ 121.887817, 30.954058 ], [ 121.261597, 30.680440 ], [ 121.503296, 30.145127 ], [ 122.091064, 29.835879 ], [ 121.937256, 29.022552 ], [ 121.679077, 28.226970 ], [ 121.124268, 28.139816 ], [ 120.393677, 27.054234 ], [ 119.580688, 25.745477 ], [ 118.652344, 24.552120 ], [ 117.279053, 23.629427 ], [ 115.889282, 22.786311 ], [ 114.763184, 22.669779 ], [ 114.147949, 22.228090 ], [ 113.801880, 22.553147 ], [ 113.236084, 22.055096 ], [ 112.933960, 21.943046 ], [ 112.060547, 21.631899 ], [ 112.060547, 41.310824 ], [ 126.375732, 41.310824 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "North Korea", "sov_a3": "PRK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "North Korea", "adm0_a3": "PRK", "geou_dif": 0, "geounit": "North Korea", "gu_a3": "PRK", "su_dif": 0, "subunit": "North Korea", "su_a3": "PRK", "brk_diff": 0, "name": "Dem. Rep. Korea", "name_long": "Dem. Rep. Korea", "brk_a3": "PRK", "brk_name": "Dem. Rep. Korea", "abbrev": "N.K.", "postal": "KP", "formal_en": "Democratic People's Republic of Korea", "name_sort": "Korea, Dem. Rep.", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 22665345, "gdp_md_est": 40000, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KP", "iso_a3": "PRK", "iso_n3": "408", "un_a3": "408", "wb_a2": "KP", "wb_a3": "PRK", "woe_id": -99, "adm0_a3_is": "PRK", "adm0_a3_us": "PRK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 15, "long_len": 15, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.682617, 41.310824 ], [ 129.699097, 40.979898 ], [ 129.704590, 40.884448 ], [ 129.182739, 40.663973 ], [ 129.006958, 40.488737 ], [ 128.627930, 40.191463 ], [ 127.963257, 40.027614 ], [ 127.529297, 39.757880 ], [ 127.501831, 39.325799 ], [ 127.380981, 39.215231 ], [ 127.781982, 39.053318 ], [ 128.347778, 38.612578 ], [ 128.204956, 38.371809 ], [ 127.776489, 38.307181 ], [ 127.067871, 38.259750 ], [ 126.683350, 37.805444 ], [ 126.232910, 37.844495 ], [ 126.172485, 37.753344 ], [ 125.689087, 37.944198 ], [ 125.568237, 37.753344 ], [ 125.271606, 37.670777 ], [ 125.238647, 37.857507 ], [ 124.980469, 37.952861 ], [ 124.711304, 38.108628 ], [ 124.985962, 38.552461 ], [ 125.216675, 38.668356 ], [ 125.128784, 38.852542 ], [ 125.381470, 39.389509 ], [ 125.321045, 39.554883 ], [ 124.733276, 39.660685 ], [ 124.260864, 39.930801 ], [ 125.079346, 40.572240 ], [ 125.919800, 40.979898 ], [ 126.177979, 41.108330 ], [ 126.375732, 41.310824 ], [ 129.682617, 41.310824 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Korea", "sov_a3": "KOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Korea", "adm0_a3": "KOR", "geou_dif": 0, "geounit": "South Korea", "gu_a3": "KOR", "su_dif": 0, "subunit": "South Korea", "su_a3": "KOR", "brk_diff": 0, "name": "Korea", "name_long": "Republic of Korea", "brk_a3": "KOR", "brk_name": "Republic of Korea", "abbrev": "S.K.", "postal": "KR", "formal_en": "Republic of Korea", "name_sort": "Korea, Rep.", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 48508972, "gdp_md_est": 1335000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "KR", "iso_a3": "KOR", "iso_n3": "410", "un_a3": "410", "wb_a2": "KR", "wb_a3": "KOR", "woe_id": -99, "adm0_a3_is": "KOR", "adm0_a3_us": "KOR", "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": 17, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.347778, 38.612578 ], [ 129.210205, 37.435612 ], [ 129.457397, 36.787291 ], [ 129.462891, 35.634977 ], [ 129.089355, 35.083956 ], [ 128.182983, 34.890437 ], [ 127.386475, 34.479392 ], [ 126.485596, 34.393312 ], [ 126.370239, 34.935482 ], [ 126.557007, 35.688533 ], [ 126.112061, 36.725677 ], [ 126.859131, 36.897194 ], [ 126.172485, 37.753344 ], [ 126.232910, 37.844495 ], [ 126.683350, 37.805444 ], [ 127.067871, 38.259750 ], [ 127.776489, 38.307181 ], [ 128.204956, 38.371809 ], [ 128.347778, 38.612578 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "name_sort": "Japan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "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": [ [ [ [ 134.604492, 35.733136 ], [ 135.000000, 35.657296 ], [ 135.439453, 35.576917 ], [ 135.439453, 33.669497 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 133.335571, 34.379713 ], [ 132.154541, 33.906896 ], [ 130.984497, 33.888658 ], [ 131.995239, 33.151349 ], [ 131.330566, 31.452096 ], [ 130.682373, 31.034108 ], [ 130.198975, 31.419288 ], [ 130.446167, 32.319634 ], [ 129.814453, 32.611616 ], [ 129.407959, 33.298395 ], [ 130.352783, 33.605470 ], [ 130.874634, 34.234512 ], [ 131.879883, 34.750640 ], [ 132.615967, 35.433820 ], [ 134.604492, 35.733136 ] ] ], [ [ [ 133.901367, 34.366111 ], [ 134.637451, 34.152727 ], [ 134.763794, 33.806538 ], [ 134.197998, 33.201924 ], [ 133.791504, 33.523079 ], [ 133.275146, 33.293804 ], [ 133.011475, 32.708733 ], [ 132.357788, 32.990236 ], [ 132.368774, 33.468108 ], [ 132.923584, 34.061761 ], [ 133.489380, 33.947917 ], [ 133.901367, 34.366111 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 135.439453, 56.022948 ], [ 135.439453, 54.930298 ], [ 135.120850, 54.730964 ], [ 135.439453, 54.705582 ], [ 135.439453, 43.921637 ], [ 135.000000, 43.520672 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.000000, 48.436490 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.476563 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 112.500000, 49.496675 ], [ 112.060547, 49.439557 ], [ 112.060547, 56.022948 ], [ 135.439453, 56.022948 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 114.362183, 50.250718 ], [ 114.960938, 50.141706 ], [ 115.482788, 49.806087 ], [ 116.674805, 49.891096 ], [ 116.191406, 49.135003 ], [ 115.482788, 48.136767 ], [ 115.740967, 47.728240 ], [ 116.306763, 47.853717 ], [ 117.290039, 47.698672 ], [ 118.059082, 48.067068 ], [ 118.861084, 47.750405 ], [ 119.767456, 47.051411 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.807580 ], [ 117.416382, 46.675826 ], [ 116.713257, 46.388622 ], [ 115.982666, 45.729191 ], [ 114.455566, 45.340563 ], [ 113.461304, 44.809122 ], [ 112.500000, 44.999767 ], [ 112.434082, 45.015302 ], [ 112.060547, 45.073521 ], [ 112.060547, 49.439557 ], [ 112.500000, 49.496675 ], [ 112.895508, 49.546598 ], [ 114.362183, 50.250718 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 123.568726, 53.461890 ], [ 125.062866, 53.163240 ], [ 125.941772, 52.796119 ], [ 126.562500, 51.784834 ], [ 126.936035, 51.354631 ], [ 127.282104, 50.739932 ], [ 127.655640, 49.763526 ], [ 129.396973, 49.443129 ], [ 130.578003, 48.730832 ], [ 130.984497, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.368530, 48.184401 ], [ 135.000000, 48.476563 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.436490 ], [ 134.500122, 47.580231 ], [ 134.110107, 47.215837 ], [ 133.769531, 46.118942 ], [ 133.093872, 45.147179 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.968684 ], [ 131.286621, 44.115198 ], [ 131.143799, 42.932296 ], [ 130.632935, 42.904136 ], [ 130.638428, 42.395066 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.427511 ], [ 128.051147, 41.996243 ], [ 128.204956, 41.467428 ], [ 127.342529, 41.504464 ], [ 126.864624, 41.820455 ], [ 126.177979, 41.108330 ], [ 125.919800, 40.979898 ], [ 125.233154, 40.647304 ], [ 121.937256, 40.647304 ], [ 121.635132, 40.946714 ], [ 120.899048, 40.647304 ], [ 112.060547, 40.647304 ], [ 112.060547, 45.073521 ], [ 112.500000, 44.999767 ], [ 113.461304, 44.809122 ], [ 114.455566, 45.340563 ], [ 115.982666, 45.729191 ], [ 116.713257, 46.388622 ], [ 117.416382, 46.675826 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.767456, 47.051411 ], [ 118.861084, 47.750405 ], [ 118.059082, 48.067068 ], [ 117.290039, 47.698672 ], [ 116.306763, 47.853717 ], [ 115.740967, 47.728240 ], [ 115.482788, 48.136767 ], [ 116.191406, 49.135003 ], [ 116.674805, 49.891096 ], [ 117.877808, 49.514510 ], [ 119.284058, 50.145226 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.734253, 51.964577 ], [ 120.723267, 52.519564 ], [ 120.173950, 52.756243 ], [ 120.997925, 53.252069 ], [ 122.244873, 53.432447 ], [ 123.568726, 53.461890 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "North Korea", "sov_a3": "PRK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "North Korea", "adm0_a3": "PRK", "geou_dif": 0, "geounit": "North Korea", "gu_a3": "PRK", "su_dif": 0, "subunit": "North Korea", "su_a3": "PRK", "brk_diff": 0, "name": "Dem. Rep. Korea", "name_long": "Dem. Rep. Korea", "brk_a3": "PRK", "brk_name": "Dem. Rep. Korea", "abbrev": "N.K.", "postal": "KP", "formal_en": "Democratic People's Republic of Korea", "name_sort": "Korea, Dem. Rep.", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 22665345, "gdp_md_est": 40000, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KP", "iso_a3": "PRK", "iso_n3": "408", "un_a3": "408", "wb_a2": "KP", "wb_a3": "PRK", "woe_id": -99, "adm0_a3_is": "PRK", "adm0_a3_us": "PRK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 15, "long_len": 15, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.990234, 42.988576 ], [ 130.638428, 42.395066 ], [ 130.775757, 42.220382 ], [ 130.396729, 42.281373 ], [ 129.962769, 41.943149 ], [ 129.666138, 41.603121 ], [ 129.699097, 40.979898 ], [ 129.704590, 40.884448 ], [ 129.182739, 40.663973 ], [ 129.171753, 40.647304 ], [ 125.233154, 40.647304 ], [ 125.919800, 40.979898 ], [ 126.177979, 41.108330 ], [ 126.864624, 41.820455 ], [ 127.342529, 41.504464 ], [ 128.204956, 41.467428 ], [ 128.051147, 41.996243 ], [ 129.594727, 42.427511 ], [ 129.990234, 42.988576 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 135.439453, 66.687784 ], [ 135.439453, 55.528631 ], [ 112.060547, 55.528631 ], [ 112.060547, 66.687784 ], [ 135.439453, 66.687784 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.439453, 71.637723 ], [ 135.439453, 66.337505 ], [ 112.060547, 66.337505 ], [ 112.060547, 73.798786 ], [ 112.115479, 73.788054 ], [ 112.500000, 73.869139 ], [ 113.016357, 73.977144 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 113.082275, 73.898111 ], [ 112.642822, 73.898111 ], [ 113.016357, 73.977144 ], [ 113.082275, 73.898111 ] ] ], [ [ [ 112.060547, 76.500159 ], [ 112.500000, 76.404937 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 112.500000, 74.975064 ], [ 112.060547, 74.882222 ], [ 112.060547, 76.500159 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.739380, -40.701464 ], [ 145.393066, -40.788860 ], [ 145.920410, -40.979898 ], [ 146.359863, -41.137296 ], [ 146.991577, -40.979898 ], [ 147.689209, -40.805494 ], [ 148.287964, -40.871988 ], [ 148.293457, -40.979898 ], [ 148.359375, -42.061529 ], [ 148.013306, -42.403179 ], [ 147.908936, -43.209180 ], [ 147.562866, -42.936318 ], [ 146.865234, -43.632099 ], [ 146.661987, -43.580391 ], [ 146.046753, -43.548548 ], [ 145.431519, -42.690511 ], [ 145.294189, -42.032974 ], [ 144.717407, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.739380, -40.701464 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.739380, -40.701464 ], [ 145.393066, -40.788860 ], [ 145.920410, -40.979898 ], [ 146.359863, -41.137296 ], [ 146.991577, -40.979898 ], [ 147.689209, -40.805494 ], [ 148.287964, -40.871988 ], [ 148.293457, -40.979898 ], [ 148.309937, -41.310824 ], [ 144.810791, -41.310824 ], [ 144.717407, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.739380, -40.701464 ] ] ], [ [ [ 149.386597, -21.534847 ], [ 149.529419, -21.943046 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.121266 ], [ 150.479736, -22.553147 ], [ 150.726929, -22.400872 ], [ 150.897217, -23.458207 ], [ 151.605835, -24.071544 ], [ 152.072754, -24.457151 ], [ 152.852783, -25.264568 ], [ 153.132935, -26.066652 ], [ 153.160400, -26.637639 ], [ 153.088989, -27.259513 ], [ 153.566895, -28.105903 ], [ 153.511963, -28.993727 ], [ 153.336182, -29.453948 ], [ 153.067017, -30.349176 ], [ 153.088989, -30.921076 ], [ 152.891235, -31.639352 ], [ 152.446289, -32.546813 ], [ 151.704712, -33.040903 ], [ 151.342163, -33.815666 ], [ 151.007080, -34.307144 ], [ 150.710449, -35.169318 ], [ 150.325928, -35.670685 ], [ 150.073242, -36.416862 ], [ 149.941406, -37.107765 ], [ 149.996338, -37.422526 ], [ 149.419556, -37.770715 ], [ 148.304443, -37.805444 ], [ 147.381592, -38.216604 ], [ 146.920166, -38.603993 ], [ 146.315918, -39.031986 ], [ 145.486450, -38.591114 ], [ 144.876709, -38.414862 ], [ 145.030518, -37.892196 ], [ 144.481201, -38.082690 ], [ 143.607788, -38.805470 ], [ 142.745361, -38.535276 ], [ 142.174072, -38.376115 ], [ 141.602783, -38.307181 ], [ 140.635986, -38.017804 ], [ 139.987793, -37.400710 ], [ 139.806519, -36.641978 ], [ 139.570312, -36.137875 ], [ 139.081421, -35.728677 ], [ 138.120117, -35.608185 ], [ 138.444214, -35.124402 ], [ 138.202515, -34.384246 ], [ 137.719116, -35.074965 ], [ 136.829224, -35.259077 ], [ 137.351074, -34.705493 ], [ 137.499390, -34.129995 ], [ 137.889404, -33.637489 ], [ 137.807007, -32.898038 ], [ 136.994019, -33.751748 ], [ 136.367798, -34.093610 ], [ 135.988770, -34.885931 ], [ 135.203247, -34.474864 ], [ 135.236206, -33.947917 ], [ 135.000000, -33.669497 ], [ 134.609985, -33.220308 ], [ 134.560547, -33.183537 ], [ 134.560547, -21.534847 ], [ 149.386597, -21.534847 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 138.328857, -1.702630 ], [ 139.180298, -2.048514 ], [ 139.921875, -2.405299 ], [ 140.998535, -2.597377 ], [ 141.031494, -9.112945 ], [ 140.141602, -8.293035 ], [ 139.125366, -8.091862 ], [ 138.878174, -8.379997 ], [ 137.609253, -8.407168 ], [ 138.037720, -7.596663 ], [ 138.663940, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.391805 ], [ 135.988770, -4.543570 ], [ 135.159302, -4.461427 ], [ 135.000000, -4.357366 ], [ 134.560547, -4.088932 ], [ 134.560547, -2.844290 ], [ 135.000000, -3.102121 ], [ 135.455933, -3.365373 ], [ 136.290894, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ] ] ], [ [ [ 134.560547, -5.523043 ], [ 134.725342, -5.736243 ], [ 134.719849, -6.211551 ], [ 134.560547, -6.429942 ], [ 134.560547, -5.523043 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 142.514648, -10.666006 ], [ 142.794800, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.113403, -11.904979 ], [ 143.157349, -12.323903 ], [ 143.519897, -12.833226 ], [ 143.596802, -13.400307 ], [ 143.558350, -13.763396 ], [ 143.920898, -14.546367 ], [ 144.563599, -14.168534 ], [ 144.893188, -14.594216 ], [ 145.371094, -14.981933 ], [ 145.266724, -15.427206 ], [ 145.480957, -16.283233 ], [ 145.634766, -16.783506 ], [ 145.887451, -16.904428 ], [ 146.156616, -17.759150 ], [ 146.063232, -18.276302 ], [ 146.387329, -18.958246 ], [ 147.469482, -19.476950 ], [ 148.172607, -19.952696 ], [ 148.848267, -20.390974 ], [ 148.716431, -20.632784 ], [ 149.287720, -21.258661 ], [ 149.529419, -21.943046 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.121266 ], [ 150.287476, -22.350076 ], [ 134.560547, -22.350076 ], [ 134.560547, -11.980218 ], [ 134.675903, -11.937227 ], [ 135.000000, -12.098410 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.958723 ], [ 136.257935, -12.044693 ], [ 136.488647, -11.856599 ], [ 136.950073, -12.350734 ], [ 136.680908, -12.886780 ], [ 136.301880, -13.288065 ], [ 135.961304, -13.320140 ], [ 136.076660, -13.720708 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.499878, -14.992546 ], [ 136.290894, -15.548960 ], [ 137.059937, -15.866242 ], [ 137.576294, -16.214675 ], [ 138.301392, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.103394, -17.062036 ], [ 139.257202, -17.366367 ], [ 140.213013, -17.706828 ], [ 140.872192, -17.366367 ], [ 141.069946, -16.830832 ], [ 141.273193, -16.388661 ], [ 141.394043, -15.839820 ], [ 141.701660, -15.040296 ], [ 141.558838, -14.557001 ], [ 141.630249, -14.269707 ], [ 141.514893, -13.694025 ], [ 141.646729, -12.940322 ], [ 141.838989, -12.736801 ], [ 141.685181, -12.404389 ], [ 141.926880, -11.872727 ], [ 142.113647, -11.323867 ], [ 142.141113, -11.038255 ], [ 142.514648, -10.666006 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Papua New Guinea", "sov_a3": "PNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Papua New Guinea", "adm0_a3": "PNG", "geou_dif": 0, "geounit": "Papua New Guinea", "gu_a3": "PNG", "su_dif": 1, "subunit": "Papua New Guinea", "su_a3": "PN1", "brk_diff": 0, "name": "Papua New Guinea", "name_long": "Papua New Guinea", "brk_a3": "PN1", "brk_name": "Papua New Guinea", "abbrev": "P.N.G.", "postal": "PG", "formal_en": "Independent State of Papua New Guinea", "name_sort": "Papua New Guinea", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 6057263, "gdp_md_est": 13210, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PG", "iso_a3": "PNG", "iso_n3": "598", "un_a3": "598", "wb_a2": "PG", "wb_a3": "PNG", "woe_id": -99, "adm0_a3_is": "PNG", "adm0_a3_us": "PNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 16, "long_len": 16, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.998535, -2.597377 ], [ 142.734375, -3.288598 ], [ 144.580078, -3.858774 ], [ 145.272217, -4.368320 ], [ 145.827026, -4.872048 ], [ 145.980835, -5.462896 ], [ 147.645264, -6.080473 ], [ 147.886963, -6.610044 ], [ 146.969604, -6.719165 ], [ 147.189331, -7.384258 ], [ 148.079224, -8.042913 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.069551 ], [ 149.265747, -9.514079 ], [ 150.034790, -9.681984 ], [ 149.738159, -9.871452 ], [ 150.798340, -10.293301 ], [ 150.688477, -10.579622 ], [ 150.023804, -10.649811 ], [ 149.782104, -10.390572 ], [ 148.919678, -10.277086 ], [ 147.908936, -10.125709 ], [ 147.134399, -9.492408 ], [ 146.563110, -8.939340 ], [ 146.046753, -8.064669 ], [ 144.739380, -7.629331 ], [ 143.893433, -7.912353 ], [ 143.283691, -8.244110 ], [ 143.410034, -8.982749 ], [ 142.624512, -9.324411 ], [ 142.064209, -9.156333 ], [ 141.031494, -9.112945 ], [ 140.998535, -2.597377 ] ] ], [ [ [ 154.649048, -5.041699 ], [ 154.758911, -5.337114 ], [ 155.061035, -5.566783 ], [ 155.544434, -6.200629 ], [ 156.016846, -6.539103 ], [ 155.879517, -6.817353 ], [ 155.599365, -6.915521 ], [ 155.165405, -6.533645 ], [ 154.725952, -5.900189 ], [ 154.511719, -5.134715 ], [ 154.649048, -5.041699 ] ] ], [ [ [ 152.133179, -4.143722 ], [ 152.336426, -4.308069 ], [ 152.314453, -4.866574 ], [ 151.979370, -5.473832 ], [ 151.457520, -5.555848 ], [ 151.298218, -5.840081 ], [ 150.238037, -6.315299 ], [ 149.705200, -6.315299 ], [ 148.886719, -6.025848 ], [ 148.315430, -5.741708 ], [ 148.397827, -5.435554 ], [ 149.293213, -5.583184 ], [ 149.842529, -5.501172 ], [ 149.990845, -5.025283 ], [ 150.139160, -4.997922 ], [ 150.232544, -5.528511 ], [ 150.803833, -5.451959 ], [ 151.089478, -5.112830 ], [ 151.644287, -4.751624 ], [ 151.534424, -4.165637 ], [ 152.133179, -4.143722 ] ] ], [ [ [ 150.935669, -2.498597 ], [ 151.479492, -2.778451 ], [ 151.814575, -2.997899 ], [ 152.237549, -3.239240 ], [ 152.638550, -3.655964 ], [ 153.017578, -3.979341 ], [ 153.138428, -4.499762 ], [ 152.825317, -4.762573 ], [ 152.638550, -4.171115 ], [ 152.402344, -3.787522 ], [ 151.380615, -3.030812 ], [ 150.661011, -2.740044 ], [ 150.935669, -2.498597 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "name_sort": "Japan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "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": [ [ [ [ 141.394043, 41.310824 ], [ 141.525879, 40.979898 ], [ 141.910400, 39.993956 ], [ 141.882935, 39.181175 ], [ 140.954590, 38.177751 ], [ 140.971069, 37.142803 ], [ 140.597534, 36.346103 ], [ 140.773315, 35.844535 ], [ 140.251465, 35.142371 ], [ 138.971558, 34.669359 ], [ 137.213745, 34.610606 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 134.560547, 34.533712 ], [ 134.560547, 35.728677 ], [ 134.604492, 35.733136 ], [ 135.000000, 35.657296 ], [ 135.675659, 35.527756 ], [ 136.719360, 37.309014 ], [ 137.389526, 36.831272 ], [ 139.421997, 38.216604 ], [ 140.053711, 39.440435 ], [ 139.877930, 40.563895 ], [ 140.158081, 40.979898 ], [ 140.300903, 41.195190 ], [ 140.971069, 41.310824 ], [ 141.394043, 41.310824 ] ] ], [ [ [ 134.560547, 34.175453 ], [ 134.637451, 34.152727 ], [ 134.763794, 33.806538 ], [ 134.560547, 33.587167 ], [ 134.560547, 34.175453 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "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": [ [ [ [ 137.197266, 56.022948 ], [ 136.796265, 55.776573 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 135.000000, 43.520672 ], [ 134.868164, 43.401056 ], [ 134.560547, 43.265206 ], [ 134.560547, 47.683881 ], [ 135.000000, 48.436490 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.476563 ], [ 134.560547, 48.396385 ], [ 134.560547, 56.022948 ], [ 137.197266, 56.022948 ] ] ], [ [ [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ] ] ], [ [ [ 157.939453, 56.022948 ], [ 157.939453, 51.757640 ], [ 157.500000, 51.474540 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.566406, 55.776573 ], [ 155.648804, 56.022948 ], [ 157.939453, 56.022948 ] ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 135.021973, 48.480204 ], [ 135.000000, 48.436490 ], [ 134.560547, 47.683881 ], [ 134.560547, 48.396385 ], [ 135.000000, 48.476563 ], [ 135.021973, 48.480204 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "name_sort": "Japan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "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": [ [ [ [ 141.366577, 41.380930 ], [ 141.525879, 40.979898 ], [ 141.657715, 40.647304 ], [ 139.938354, 40.647304 ], [ 140.300903, 41.195190 ], [ 141.366577, 41.380930 ] ] ], [ [ [ 141.965332, 45.552525 ], [ 143.140869, 44.512176 ], [ 143.909912, 44.174325 ], [ 144.613037, 43.961191 ], [ 145.316162, 44.386692 ], [ 145.541382, 43.265206 ], [ 144.058228, 42.988576 ], [ 143.179321, 41.996243 ], [ 141.608276, 42.682435 ], [ 141.064453, 41.586688 ], [ 139.954834, 41.570252 ], [ 139.817505, 42.565219 ], [ 140.311890, 43.337165 ], [ 141.377563, 43.389082 ], [ 141.668701, 44.774036 ], [ 141.965332, 45.552525 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 157.939453, 61.595946 ], [ 157.500000, 61.538406 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 136.796265, 55.776573 ], [ 136.395264, 55.528631 ], [ 134.560547, 55.528631 ], [ 134.560547, 66.687784 ], [ 157.939453, 66.687784 ], [ 157.939453, 61.595946 ] ] ], [ [ [ 157.939453, 57.996455 ], [ 157.939453, 55.528631 ], [ 155.484009, 55.528631 ], [ 155.566406, 55.776573 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 157.500000, 57.932351 ], [ 157.939453, 57.996455 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "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": [ [ [ [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 157.500000, 70.991928 ], [ 157.939453, 70.956113 ], [ 157.939453, 66.337505 ], [ 134.560547, 66.337505 ], [ 134.560547, 71.498780 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ] ] ], [ [ [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ] ] ], [ [ [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "New Zealand", "sov_a3": "NZ1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "New Zealand", "adm0_a3": "NZL", "geou_dif": 0, "geounit": "New Zealand", "gu_a3": "NZL", "su_dif": 0, "subunit": "New Zealand", "su_a3": "NZL", "brk_diff": 0, "name": "New Zealand", "name_long": "New Zealand", "brk_a3": "NZL", "brk_name": "New Zealand", "abbrev": "N.Z.", "postal": "NZ", "formal_en": "New Zealand", "name_sort": "New Zealand", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 4213418, "gdp_md_est": 116700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NZ", "iso_a3": "NZL", "iso_n3": "554", "un_a3": "554", "wb_a2": "NZ", "wb_a3": "NZL", "woe_id": -99, "adm0_a3_is": "NZL", "adm0_a3_us": "NZL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.875366, -40.647304 ], [ 173.051147, -40.979898 ], [ 173.243408, -41.331451 ], [ 173.864136, -40.979898 ], [ 173.957520, -40.925965 ], [ 173.990479, -40.979898 ], [ 174.243164, -41.347948 ], [ 174.243164, -41.767215 ], [ 173.875122, -42.232585 ], [ 173.221436, -42.968482 ], [ 172.710571, -43.369119 ], [ 173.078613, -43.850374 ], [ 172.304077, -43.862258 ], [ 171.452637, -44.241264 ], [ 171.183472, -44.894796 ], [ 170.612183, -45.905300 ], [ 169.332275, -46.638122 ], [ 168.409424, -46.619261 ], [ 167.761230, -46.290020 ], [ 166.673584, -46.217852 ], [ 166.508789, -45.851760 ], [ 167.041626, -45.108423 ], [ 168.299561, -44.123085 ], [ 168.947754, -43.933506 ], [ 169.667358, -43.552529 ], [ 170.524292, -43.028745 ], [ 171.123047, -42.512602 ], [ 171.567993, -41.767215 ], [ 171.947021, -41.512691 ], [ 172.089844, -40.979898 ], [ 172.095337, -40.955011 ], [ 172.562256, -40.647304 ], [ 172.875366, -40.647304 ] ] ], [ [ [ 176.473389, -40.647304 ], [ 176.237183, -40.979898 ], [ 176.011963, -41.286062 ], [ 175.237427, -41.685220 ], [ 175.067139, -41.422134 ], [ 174.649658, -41.277806 ], [ 174.858398, -40.979898 ], [ 175.094604, -40.647304 ], [ 176.473389, -40.647304 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "New Zealand", "sov_a3": "NZ1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "New Zealand", "adm0_a3": "NZL", "geou_dif": 0, "geounit": "New Zealand", "gu_a3": "NZL", "su_dif": 0, "subunit": "New Zealand", "su_a3": "NZL", "brk_diff": 0, "name": "New Zealand", "name_long": "New Zealand", "brk_a3": "NZL", "brk_name": "New Zealand", "abbrev": "N.Z.", "postal": "NZ", "formal_en": "New Zealand", "name_sort": "New Zealand", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 4213418, "gdp_md_est": 116700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NZ", "iso_a3": "NZL", "iso_n3": "554", "un_a3": "554", "wb_a2": "NZ", "wb_a3": "NZL", "woe_id": -99, "adm0_a3_is": "NZL", "adm0_a3_us": "NZL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.798462, -40.492915 ], [ 173.018188, -40.917664 ], [ 173.051147, -40.979898 ], [ 173.232422, -41.310824 ], [ 172.001953, -41.310824 ], [ 172.089844, -40.979898 ], [ 172.095337, -40.955011 ], [ 172.798462, -40.492915 ] ] ], [ [ [ 173.001709, -34.447689 ], [ 173.551025, -35.003003 ], [ 174.325562, -35.263562 ], [ 174.611206, -36.155618 ], [ 175.336304, -37.208457 ], [ 175.352783, -36.522881 ], [ 175.808716, -36.796090 ], [ 175.957031, -37.553288 ], [ 176.759033, -37.879189 ], [ 177.434692, -37.957192 ], [ 178.005981, -37.579413 ], [ 178.516846, -37.692514 ], [ 178.269653, -38.582526 ], [ 177.967529, -39.164141 ], [ 177.203979, -39.142842 ], [ 176.934814, -39.448919 ], [ 177.028198, -39.876019 ], [ 176.885376, -40.065461 ], [ 176.237183, -40.979898 ], [ 176.011963, -41.286062 ], [ 175.968018, -41.310824 ], [ 174.732056, -41.310824 ], [ 174.649658, -41.277806 ], [ 174.858398, -40.979898 ], [ 175.226440, -40.455307 ], [ 174.896851, -39.905523 ], [ 173.820190, -39.508279 ], [ 173.847656, -39.142842 ], [ 174.572754, -38.796908 ], [ 174.743042, -38.026459 ], [ 174.693604, -37.378888 ], [ 174.287109, -36.708064 ], [ 174.314575, -36.531709 ], [ 173.836670, -36.120128 ], [ 173.051147, -35.236646 ], [ 172.633667, -34.524661 ], [ 173.001709, -34.447689 ] ] ], [ [ [ 173.990479, -40.979898 ], [ 174.221191, -41.310824 ], [ 173.281860, -41.310824 ], [ 173.864136, -40.979898 ], [ 173.957520, -40.925965 ], [ 173.990479, -40.979898 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 162.075806, 56.022948 ], [ 161.949463, 55.776573 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 157.500000, 51.474540 ], [ 157.060547, 51.189673 ], [ 157.060547, 56.022948 ], [ 162.075806, 56.022948 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "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": "Polygon", "coordinates": [ [ [ 180.000000, 66.687784 ], [ 180.000000, 64.981682 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.949463, 55.776573 ], [ 161.823120, 55.528631 ], [ 157.060547, 55.528631 ], [ 157.060547, 57.871053 ], [ 157.500000, 57.932351 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 157.500000, 61.538406 ], [ 157.060547, 61.480760 ], [ 157.060547, 66.687784 ], [ 180.000000, 66.687784 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "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": [ [ [ [ 157.060547, 71.027678 ], [ 157.500000, 70.991928 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.000000, 66.337505 ], [ 157.060547, 66.337505 ], [ 157.060547, 71.027678 ] ] ], [ [ [ 180.000000, 71.516203 ], [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 0, "y": 17 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Fiji", "sov_a3": "FJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Fiji", "adm0_a3": "FJI", "geou_dif": 0, "geounit": "Fiji", "gu_a3": "FJI", "su_dif": 0, "subunit": "Fiji", "su_a3": "FJI", "brk_diff": 0, "name": "Fiji", "name_long": "Fiji", "brk_a3": "FJI", "brk_name": "Fiji", "abbrev": "Fiji", "postal": "FJ", "formal_en": "Republic of Fiji", "name_sort": "Fiji", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 944720, "gdp_md_est": 3579, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "FJ", "iso_a3": "FJI", "iso_n3": "242", "un_a3": "242", "wb_a2": "FJ", "wb_a3": "FJI", "woe_id": -99, "adm0_a3_is": "FJI", "adm0_a3_us": "FJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -179.794006, -16.019416 ], [ -179.917603, -16.499299 ], [ -180.000000, -16.554594 ], [ -180.000000, -16.066929 ], [ -179.794006, -16.019416 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 0, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -171.732788, 63.783699 ], [ -171.114807, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.432089 ], [ -168.750000, 63.306514 ], [ -168.689575, 63.297876 ], [ -168.750000, 63.218780 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.290833, 63.195257 ], [ -170.672607, 63.376756 ], [ -171.554260, 63.318850 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.783699 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ -171.197205, 66.600676 ], [ -171.013184, 66.513260 ], [ -169.900818, 65.977798 ], [ -170.892334, 65.541408 ], [ -172.532043, 65.438860 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.252948 ], [ -173.894348, 64.282760 ], [ -174.655151, 64.632115 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.223206, 65.520930 ], [ -178.360291, 65.390867 ], [ -178.904114, 65.740785 ], [ -178.687134, 66.112731 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.404588 ], [ -180.000000, 64.980521 ], [ -180.000000, 66.600676 ], [ -175.012207, 66.600676 ], [ -175.014954, 66.585400 ], [ -174.822693, 66.513260 ], [ -174.342041, 66.336403 ], [ -174.396973, 66.513260 ], [ -174.424438, 66.600676 ], [ -171.197205, 66.600676 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 0, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.014954, 66.585400 ], [ -174.822693, 66.513260 ], [ -174.583740, 66.425537 ], [ -180.000000, 66.425537 ], [ -180.000000, 68.964307 ] ] ], [ [ [ -171.859131, 66.913911 ], [ -171.013184, 66.513260 ], [ -170.829163, 66.425537 ], [ -174.369507, 66.425537 ], [ -174.396973, 66.513260 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.913911 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 0, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -179.873657, 71.557955 ], [ -179.024963, 71.556217 ], [ -177.580261, 71.269949 ], [ -177.665405, 71.133652 ], [ -178.695374, 70.893280 ], [ -180.000000, 70.832953 ], [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 1, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.280273, 21.171606 ], [ -157.280273, 21.097313 ], [ -157.326965, 21.099875 ], [ -157.280273, 21.171606 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.942200, 21.654875 ], [ -157.653809, 21.322640 ], [ -157.708740, 21.266340 ], [ -157.780151, 21.279137 ], [ -158.128967, 21.314964 ], [ -158.255310, 21.539957 ], [ -158.293762, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.362183, 22.146708 ], [ -159.345703, 21.983801 ], [ -159.392395, 21.943046 ], [ -159.463806, 21.884438 ], [ -159.576416, 21.943046 ], [ -159.801636, 22.067823 ], [ -159.749451, 22.139076 ], [ -159.735718, 22.146708 ], [ -159.362183, 22.146708 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 1, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.215377 ], [ -159.345703, 21.983801 ], [ -159.392395, 21.943046 ], [ -159.463806, 21.884438 ], [ -159.576416, 21.943046 ], [ -159.801636, 22.067823 ], [ -159.749451, 22.139076 ], [ -159.598389, 22.238260 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 1, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -158.694763, 55.899956 ], [ -159.032593, 55.776573 ], [ -159.603882, 55.567475 ], [ -160.290527, 55.645049 ], [ -161.224365, 55.365064 ], [ -162.237854, 55.024873 ], [ -163.070068, 54.691297 ], [ -164.786682, 54.404544 ], [ -164.943237, 54.573654 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.349451 ], [ -162.037354, 55.776573 ], [ -161.806641, 55.895336 ], [ -161.751709, 55.899956 ], [ -158.694763, 55.899956 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 1, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.280273, 58.857803 ], [ -157.500000, 58.799516 ], [ -158.194885, 58.616917 ], [ -158.518982, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.931587 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.672654 ], [ -162.056580, 59.267284 ], [ -161.875305, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.819885, 59.799253 ], [ -164.663086, 60.268428 ], [ -165.346985, 60.508639 ], [ -165.352478, 61.074231 ], [ -166.121521, 61.500424 ], [ -166.052856, 61.606396 ], [ -165.981445, 61.710706 ], [ -157.280273, 61.710706 ], [ -157.280273, 58.857803 ] ] ], [ [ [ -166.470337, 60.385362 ], [ -165.676575, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.192932, 59.755012 ], [ -166.849365, 59.942632 ], [ -167.456360, 60.213898 ], [ -166.470337, 60.385362 ] ] ], [ [ [ -157.280273, 58.644082 ], [ -157.280273, 56.742181 ], [ -157.500000, 56.669811 ], [ -158.117981, 56.464008 ], [ -158.433838, 55.995309 ], [ -159.032593, 55.776573 ], [ -159.370422, 55.652798 ], [ -162.279053, 55.652798 ], [ -162.037354, 55.776573 ], [ -161.806641, 55.895336 ], [ -160.565186, 56.009131 ], [ -160.070801, 56.418459 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.218121 ], [ -157.725220, 57.570361 ], [ -157.552185, 58.329683 ], [ -157.500000, 58.387318 ], [ -157.280273, 58.644082 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 1, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.280273, 66.600676 ], [ -157.280273, 61.501734 ], [ -166.121521, 61.501734 ], [ -166.052856, 61.606396 ], [ -165.737000, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.753967, 63.220018 ], [ -163.067322, 63.059937 ], [ -162.262573, 63.542434 ], [ -161.534729, 63.456647 ], [ -160.773926, 63.766708 ], [ -160.960693, 64.223104 ], [ -161.518250, 64.402872 ], [ -160.779419, 64.789338 ], [ -161.394653, 64.777637 ], [ -162.454834, 64.560241 ], [ -162.759705, 64.338718 ], [ -163.547974, 64.560241 ], [ -164.962463, 64.447927 ], [ -166.426392, 64.687365 ], [ -166.846619, 65.089489 ], [ -168.112793, 65.670724 ], [ -166.706543, 66.089364 ], [ -164.767456, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.655090, 66.576667 ], [ -163.671570, 66.513260 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.117180 ], [ -162.196655, 66.513260 ], [ -162.312012, 66.600676 ], [ -157.280273, 66.600676 ] ] ], [ [ [ -168.969727, 63.336111 ], [ -168.750000, 63.306514 ], [ -168.689575, 63.297876 ], [ -168.750000, 63.218780 ], [ -168.771973, 63.189064 ], [ -168.969727, 63.134503 ], [ -168.969727, 63.336111 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 1, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.655090, 66.576667 ], [ -163.671570, 66.513260 ], [ -163.696289, 66.425537 ], [ -165.171204, 66.425537 ], [ -164.767456, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.655090, 66.576667 ] ] ], [ [ [ -157.280273, 66.425537 ], [ -162.081299, 66.425537 ], [ -162.196655, 66.513260 ], [ -162.490540, 66.736648 ], [ -163.721008, 67.116613 ], [ -164.432373, 67.616543 ], [ -165.390930, 68.043542 ], [ -166.766968, 68.359712 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.915946 ], [ -163.168945, 69.371606 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.935974, 70.447832 ], [ -160.235596, 70.612614 ], [ -159.925232, 70.685421 ], [ -157.280273, 70.685421 ], [ -157.280273, 66.425537 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 1, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -157.280273, 71.117659 ], [ -157.280273, 70.539543 ], [ -160.548706, 70.539543 ], [ -160.235596, 70.612614 ], [ -159.040833, 70.892381 ], [ -158.120728, 70.824836 ], [ -157.500000, 71.041960 ], [ -157.280273, 71.117659 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 2, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.249314 ], [ -155.404358, 20.081729 ], [ -155.225830, 19.993998 ], [ -155.063782, 19.859727 ], [ -154.808350, 19.510609 ], [ -154.833069, 19.453644 ], [ -155.223083, 19.241143 ], [ -155.544434, 19.085480 ], [ -155.690002, 18.916680 ], [ -155.937195, 19.059522 ], [ -155.909729, 19.339653 ], [ -156.074524, 19.704658 ], [ -156.025085, 19.815806 ], [ -155.852051, 19.978511 ], [ -155.920715, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.612854, 21.012727 ], [ -156.258545, 20.917831 ], [ -155.997620, 20.766387 ], [ -156.080017, 20.645636 ], [ -156.415100, 20.573653 ], [ -156.588135, 20.784363 ], [ -156.703491, 20.866511 ], [ -156.711731, 20.928093 ], [ -156.612854, 21.012727 ] ] ], [ [ [ -157.252808, 21.220261 ], [ -156.758423, 21.179290 ], [ -156.791382, 21.069123 ], [ -157.326965, 21.099875 ], [ -157.252808, 21.220261 ] ] ], [ [ [ -157.719727, 21.399377 ], [ -157.653809, 21.322640 ], [ -157.708740, 21.266340 ], [ -157.719727, 21.268900 ], [ -157.719727, 21.399377 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 2, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -146.030273, 61.710706 ], [ -146.030273, 60.496468 ], [ -146.250000, 60.576175 ], [ -147.115173, 60.885027 ], [ -148.224792, 60.673179 ], [ -148.018799, 59.978380 ], [ -148.570862, 59.915107 ], [ -149.729919, 59.706556 ], [ -150.608826, 59.369593 ], [ -151.718445, 59.156220 ], [ -151.861267, 59.745326 ], [ -151.410828, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.284752 ], [ -151.896973, 60.728287 ], [ -152.580872, 60.062099 ], [ -154.020081, 59.351396 ], [ -153.289490, 58.864905 ], [ -154.234314, 58.147519 ], [ -155.308228, 57.729086 ], [ -156.310730, 57.424252 ], [ -156.557922, 56.980911 ], [ -157.500000, 56.669811 ], [ -157.719727, 56.595791 ], [ -157.719727, 57.583614 ], [ -157.552185, 58.329683 ], [ -157.500000, 58.387318 ], [ -157.044067, 58.920246 ], [ -157.500000, 58.799516 ], [ -157.719727, 58.741132 ], [ -157.719727, 61.710706 ], [ -146.030273, 61.710706 ] ] ], [ [ [ -153.229065, 57.970244 ], [ -152.567139, 57.901715 ], [ -152.141418, 57.592447 ], [ -153.006592, 57.116859 ], [ -154.006348, 56.736155 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.461203 ], [ -153.764648, 57.816967 ], [ -153.229065, 57.970244 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 2, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -146.030273, 66.600676 ], [ -146.030273, 61.501734 ], [ -157.719727, 61.501734 ], [ -157.719727, 66.600676 ], [ -146.030273, 66.600676 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 2, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -152.248535, 70.685421 ], [ -152.267761, 70.612614 ], [ -152.270508, 70.600758 ], [ -150.740662, 70.430360 ], [ -149.721680, 70.530391 ], [ -147.615051, 70.214875 ], [ -146.250000, 70.147827 ], [ -146.030273, 70.137565 ], [ -146.030273, 66.425537 ], [ -157.719727, 66.425537 ], [ -157.719727, 70.685421 ], [ -152.248535, 70.685421 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 2, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -156.582642, 71.357945 ], [ -155.069275, 71.147857 ], [ -154.344177, 70.697228 ], [ -153.901978, 70.890583 ], [ -152.210083, 70.830248 ], [ -152.267761, 70.612614 ], [ -152.270508, 70.600758 ], [ -151.726685, 70.539543 ], [ -157.719727, 70.539543 ], [ -157.719727, 70.965073 ], [ -157.500000, 71.041960 ], [ -156.582642, 71.357945 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 3, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -134.780273, 61.710706 ], [ -134.780273, 59.171706 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.324783 ], [ -135.477905, 59.788198 ], [ -136.480408, 59.464617 ], [ -137.452698, 58.906064 ], [ -138.342590, 59.562158 ], [ -139.040222, 60.000359 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.306546 ], [ -140.998535, 61.710706 ], [ -134.780273, 61.710706 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -140.998535, 61.710706 ], [ -140.998535, 60.306546 ], [ -140.015259, 60.277962 ], [ -139.040222, 60.000359 ], [ -138.342590, 59.562158 ], [ -137.452698, 58.906064 ], [ -136.480408, 59.464617 ], [ -135.477905, 59.788198 ], [ -135.000000, 59.324783 ], [ -134.945068, 59.271495 ], [ -134.780273, 59.171706 ], [ -134.780273, 58.170702 ], [ -135.000000, 58.185185 ], [ -135.038452, 58.188080 ], [ -136.628723, 58.212685 ], [ -137.801514, 58.500870 ], [ -139.869690, 59.538495 ], [ -140.825500, 59.728716 ], [ -142.575073, 60.085393 ], [ -143.959351, 60.000359 ], [ -145.925903, 60.459926 ], [ -146.250000, 60.576175 ], [ -146.469727, 60.654340 ], [ -146.469727, 61.710706 ], [ -140.998535, 61.710706 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 3, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -134.780273, 66.600676 ], [ -134.780273, 61.501734 ], [ -140.998535, 61.501734 ], [ -140.998535, 61.606396 ], [ -140.993042, 66.000150 ], [ -140.993042, 66.600676 ], [ -134.780273, 66.600676 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -140.993042, 66.600676 ], [ -140.993042, 66.513260 ], [ -140.998535, 61.606396 ], [ -140.998535, 61.501734 ], [ -146.469727, 61.501734 ], [ -146.469727, 66.600676 ], [ -140.993042, 66.600676 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 3, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -140.987549, 69.712393 ], [ -139.122620, 69.471042 ], [ -137.548828, 68.990910 ], [ -136.505127, 68.898154 ], [ -135.626221, 69.315410 ], [ -135.000000, 69.477783 ], [ -134.780273, 69.534518 ], [ -134.780273, 66.425537 ], [ -140.993042, 66.425537 ], [ -140.993042, 66.513260 ], [ -140.987549, 69.712393 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -146.469727, 70.159017 ], [ -146.250000, 70.147827 ], [ -145.692444, 70.120761 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.993042, 66.513260 ], [ -140.993042, 66.425537 ], [ -146.469727, 66.425537 ], [ -146.469727, 70.159017 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.530273, 41.145570 ], [ -123.530273, 38.741231 ], [ -123.728027, 38.953001 ], [ -123.750000, 39.087436 ], [ -123.865356, 39.768436 ], [ -124.398193, 40.315138 ], [ -124.222412, 40.979898 ], [ -124.181213, 41.143501 ], [ -124.181213, 41.145570 ], [ -123.530273, 41.145570 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -123.934021, 49.066668 ], [ -123.923035, 49.063069 ], [ -123.818665, 48.922499 ], [ -123.750000, 48.833990 ], [ -123.530273, 48.538432 ], [ -123.530273, 48.505687 ], [ -123.750000, 48.443778 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.826757 ], [ -125.738525, 48.922499 ], [ -125.859375, 49.066668 ], [ -123.934021, 49.066668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -124.568481, 48.379970 ], [ -123.750000, 48.189895 ], [ -123.530273, 48.136767 ], [ -123.530273, 40.813809 ], [ -124.266357, 40.813809 ], [ -124.222412, 40.979898 ], [ -124.181213, 41.143501 ], [ -124.214172, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.142761, 43.709579 ], [ -123.901062, 45.523668 ], [ -124.082336, 46.865825 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.186232 ], [ -124.568481, 48.379970 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -128.358765, 50.771208 ], [ -127.309570, 50.553580 ], [ -126.697083, 50.401515 ], [ -125.757751, 50.296358 ], [ -125.417175, 49.951220 ], [ -124.922791, 49.477048 ], [ -123.923035, 49.063069 ], [ -123.818665, 48.922499 ], [ -123.711548, 48.777913 ], [ -125.485840, 48.777913 ], [ -125.656128, 48.826757 ], [ -125.738525, 48.922499 ], [ -125.955505, 49.181703 ], [ -126.850891, 49.530557 ], [ -127.032166, 49.816721 ], [ -128.059387, 49.995381 ], [ -128.446655, 50.539617 ], [ -128.358765, 50.771208 ] ] ], [ [ [ -123.530273, 55.899956 ], [ -123.530273, 49.287515 ], [ -123.750000, 49.398463 ], [ -124.911804, 49.984786 ], [ -125.625916, 50.417269 ], [ -127.435913, 50.831963 ], [ -127.993469, 51.716819 ], [ -127.850647, 52.330304 ], [ -129.130554, 52.756243 ], [ -129.306335, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.536804, 54.803851 ], [ -129.981995, 55.285372 ], [ -130.003967, 55.776573 ], [ -130.009460, 55.899956 ], [ -123.530273, 55.899956 ] ] ], [ [ [ -133.181763, 54.170474 ], [ -132.712097, 54.040038 ], [ -131.750793, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.179504, 52.180669 ], [ -131.580505, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.170474 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -130.009460, 55.899956 ], [ -130.003967, 55.776573 ], [ -129.981995, 55.285372 ], [ -130.536804, 54.803851 ], [ -131.086121, 55.180436 ], [ -131.967773, 55.499083 ], [ -132.058411, 55.776573 ], [ -132.096863, 55.899956 ], [ -130.009460, 55.899956 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -123.530273, 61.710706 ], [ -123.530273, 55.652798 ], [ -129.998474, 55.652798 ], [ -130.003967, 55.776573 ], [ -130.009460, 55.916891 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.693873 ], [ -133.357544, 58.410345 ], [ -134.272156, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.324783 ], [ -135.219727, 59.539888 ], [ -135.219727, 61.710706 ], [ -123.530273, 61.710706 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -135.219727, 59.539888 ], [ -135.000000, 59.324783 ], [ -134.945068, 59.271495 ], [ -134.272156, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.693873 ], [ -131.709595, 56.553428 ], [ -130.009460, 55.916891 ], [ -130.003967, 55.776573 ], [ -129.998474, 55.652798 ], [ -132.017212, 55.652798 ], [ -132.058411, 55.776573 ], [ -132.250671, 56.371335 ], [ -133.541565, 57.179436 ], [ -134.079895, 58.124320 ], [ -135.000000, 58.185185 ], [ -135.038452, 58.188080 ], [ -135.219727, 58.190976 ], [ -135.219727, 59.539888 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -123.530273, 66.600676 ], [ -123.530273, 61.501734 ], [ -135.219727, 61.501734 ], [ -135.219727, 66.600676 ], [ -123.530273, 66.600676 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -128.139038, 70.484566 ], [ -127.449646, 70.377854 ], [ -125.757751, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.291077, 69.400615 ], [ -123.750000, 69.472005 ], [ -123.530273, 69.501842 ], [ -123.530273, 66.425537 ], [ -135.219727, 66.425537 ], [ -135.219727, 69.420899 ], [ -135.000000, 69.477783 ], [ -134.414978, 69.627466 ], [ -132.931824, 69.505689 ], [ -131.432190, 69.945375 ], [ -129.795227, 70.194411 ], [ -129.108582, 69.779901 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -123.530273, 74.079925 ], [ -123.530273, 71.266421 ], [ -123.620911, 71.340377 ], [ -123.750000, 71.370232 ], [ -125.930786, 71.869054 ], [ -125.502319, 72.292409 ], [ -124.807434, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.477844, 74.019543 ], [ -124.576721, 74.079925 ], [ -123.530273, 74.079925 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -123.530273, 74.357050 ], [ -123.530273, 73.958939 ], [ -124.381714, 73.958939 ], [ -124.477844, 74.019543 ], [ -124.920044, 74.293232 ], [ -123.750000, 74.347419 ], [ -123.530273, 74.357050 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.280273, 32.138409 ], [ -112.280273, 31.723495 ], [ -112.500000, 31.791221 ], [ -113.024597, 31.952162 ], [ -113.307495, 32.040677 ], [ -113.615112, 32.138409 ], [ -112.280273, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -113.615112, 32.138409 ], [ -113.024597, 31.952162 ], [ -112.500000, 31.791221 ], [ -112.280273, 31.723495 ], [ -112.280273, 29.279212 ], [ -112.500000, 29.587789 ], [ -112.810364, 30.021544 ], [ -113.164673, 30.789037 ], [ -113.150940, 31.172860 ], [ -113.873291, 31.569175 ], [ -114.208374, 31.524703 ], [ -114.776917, 31.800558 ], [ -114.938965, 31.393502 ], [ -114.771423, 30.914007 ], [ -114.675293, 30.164126 ], [ -114.331970, 29.752455 ], [ -113.590393, 29.063372 ], [ -113.425598, 28.827832 ], [ -113.274536, 28.755620 ], [ -113.142700, 28.413144 ], [ -112.964172, 28.425222 ], [ -112.763672, 27.780772 ], [ -112.500000, 27.561852 ], [ -112.458801, 27.527758 ], [ -112.280273, 27.232652 ], [ -112.280273, 25.940757 ], [ -112.302246, 26.012361 ], [ -112.500000, 26.143111 ], [ -113.466797, 26.770135 ], [ -113.598633, 26.640094 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.142257 ], [ -115.057068, 27.724867 ], [ -114.982910, 27.800210 ], [ -114.570923, 27.741885 ], [ -114.200134, 28.115594 ], [ -114.164429, 28.567638 ], [ -114.933472, 29.281608 ], [ -115.521240, 29.556734 ], [ -115.889282, 30.183122 ], [ -116.260071, 30.838573 ], [ -116.724243, 31.637014 ], [ -116.864319, 31.952162 ], [ -116.949463, 32.138409 ], [ -113.615112, 32.138409 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.280273, 41.145570 ], [ -112.280273, 31.765537 ], [ -112.417603, 31.765537 ], [ -113.024597, 31.952162 ], [ -113.307495, 32.040677 ], [ -114.815369, 32.525974 ], [ -114.721985, 32.722599 ], [ -115.993652, 32.613930 ], [ -117.127991, 32.537552 ], [ -117.298279, 33.047810 ], [ -117.946472, 33.621481 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.083557, 34.079962 ], [ -119.440613, 34.350239 ], [ -120.368958, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.158091 ], [ -121.714783, 36.162270 ], [ -122.549744, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.115111 ], [ -123.728027, 38.953001 ], [ -123.750000, 39.087436 ], [ -123.865356, 39.768436 ], [ -123.969727, 39.876019 ], [ -123.969727, 41.145570 ], [ -112.280273, 41.145570 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.721985, 32.722599 ], [ -114.815369, 32.525974 ], [ -113.307495, 32.040677 ], [ -113.024597, 31.952162 ], [ -112.417603, 31.765537 ], [ -114.708252, 31.765537 ], [ -114.776917, 31.800558 ], [ -114.790649, 31.765537 ], [ -116.781921, 31.765537 ], [ -116.864319, 31.952162 ], [ -117.127991, 32.537552 ], [ -115.993652, 32.613930 ], [ -114.721985, 32.722599 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -123.934021, 49.066668 ], [ -123.923035, 49.063069 ], [ -123.750000, 48.833990 ], [ -123.511047, 48.511146 ], [ -123.750000, 48.443778 ], [ -123.969727, 48.383618 ], [ -123.969727, 49.066668 ], [ -123.934021, 49.066668 ] ] ], [ [ [ -112.280273, 49.066668 ], [ -112.280273, 49.000042 ], [ -122.840881, 49.000042 ], [ -122.975464, 49.003646 ], [ -123.101807, 49.066668 ], [ -112.280273, 49.066668 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.280273, 49.000042 ], [ -112.280273, 40.813809 ], [ -123.969727, 40.813809 ], [ -123.969727, 44.997825 ], [ -123.901062, 45.523668 ], [ -123.969727, 46.054173 ], [ -123.969727, 48.241138 ], [ -123.750000, 48.189895 ], [ -123.121033, 48.041365 ], [ -122.588196, 47.096305 ], [ -122.341003, 47.361153 ], [ -122.500305, 48.180739 ], [ -122.807922, 48.922499 ], [ -122.840881, 49.000042 ], [ -112.280273, 49.000042 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -123.969727, 49.082861 ], [ -123.923035, 49.063069 ], [ -123.711548, 48.777913 ], [ -123.969727, 48.777913 ], [ -123.969727, 49.082861 ] ] ], [ [ [ -112.280273, 55.899956 ], [ -112.280273, 49.000042 ], [ -122.840881, 49.000042 ], [ -122.975464, 49.003646 ], [ -123.750000, 49.398463 ], [ -123.969727, 49.510944 ], [ -123.969727, 55.899956 ], [ -112.280273, 55.899956 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.280273, 49.000042 ], [ -112.280273, 48.777913 ], [ -122.747498, 48.777913 ], [ -122.807922, 48.922499 ], [ -122.840881, 49.000042 ], [ -112.280273, 49.000042 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -112.280273, 61.710706 ], [ -112.280273, 55.652798 ], [ -123.969727, 55.652798 ], [ -123.969727, 61.710706 ], [ -112.280273, 61.710706 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -112.280273, 66.600676 ], [ -112.280273, 61.501734 ], [ -123.969727, 61.501734 ], [ -123.969727, 66.600676 ], [ -112.280273, 66.600676 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -122.684326, 69.855708 ], [ -121.473083, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.227112, 68.841718 ], [ -115.249329, 68.906063 ], [ -113.898010, 68.399180 ], [ -115.307007, 67.903454 ], [ -113.499756, 67.688600 ], [ -112.500000, 67.732354 ], [ -112.280273, 67.741719 ], [ -112.280273, 66.425537 ], [ -123.969727, 66.425537 ], [ -123.969727, 69.443092 ], [ -123.750000, 69.472005 ], [ -123.063354, 69.564267 ], [ -122.684326, 69.855708 ] ] ], [ [ [ -112.280273, 70.685421 ], [ -112.280273, 68.590481 ], [ -112.500000, 68.579450 ], [ -113.315735, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.221863, 69.280456 ], [ -116.109009, 69.168419 ], [ -117.342224, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.238104 ], [ -113.722229, 70.192550 ], [ -112.500000, 70.355706 ], [ -112.417603, 70.366783 ], [ -112.500000, 70.376932 ], [ -114.351196, 70.600758 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.009644, 70.612614 ], [ -118.111267, 70.685421 ], [ -112.280273, 70.685421 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -115.191650, 73.315246 ], [ -114.167175, 73.121756 ], [ -114.667053, 72.653038 ], [ -112.500000, 72.947848 ], [ -112.442322, 72.955900 ], [ -112.280273, 72.897841 ], [ -112.280273, 70.539543 ], [ -113.848572, 70.539543 ], [ -114.351196, 70.600758 ], [ -115.977173, 70.539543 ], [ -117.833862, 70.539543 ], [ -117.905273, 70.541373 ], [ -118.009644, 70.612614 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.402161, 71.558823 ], [ -118.564453, 72.308275 ], [ -117.866821, 72.706189 ], [ -115.191650, 73.315246 ] ] ], [ [ [ -117.199402, 74.079925 ], [ -116.998901, 74.019543 ], [ -116.586914, 73.896587 ], [ -115.513000, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.220886, 72.520707 ], [ -120.462341, 71.820272 ], [ -120.462341, 71.384265 ], [ -123.093567, 70.902268 ], [ -123.620911, 71.340377 ], [ -123.750000, 71.370232 ], [ -123.969727, 71.421054 ], [ -123.969727, 73.657955 ], [ -123.942261, 73.680352 ], [ -123.969727, 73.699635 ], [ -123.969727, 74.079925 ], [ -117.199402, 74.079925 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -121.539001, 74.449358 ], [ -120.110779, 74.241846 ], [ -117.556458, 74.185806 ], [ -116.998901, 74.019543 ], [ -116.795654, 73.958939 ], [ -123.969727, 73.958939 ], [ -123.969727, 74.337041 ], [ -123.750000, 74.347419 ], [ -121.539001, 74.449358 ] ] ], [ [ [ -112.280273, 75.149932 ], [ -112.500000, 75.144299 ], [ -116.312256, 75.043975 ], [ -117.713013, 75.222263 ], [ -116.347961, 76.199417 ], [ -115.405884, 76.478984 ], [ -112.590637, 76.141643 ], [ -112.500000, 76.112008 ], [ -112.280273, 76.039967 ], [ -112.280273, 75.149932 ] ] ], [ [ [ -116.334229, 76.890745 ], [ -116.336975, 76.877034 ], [ -116.419373, 76.840816 ], [ -117.108765, 76.530261 ], [ -118.042603, 76.481552 ], [ -119.902039, 76.053875 ], [ -121.500549, 75.900140 ], [ -122.857361, 76.116622 ], [ -121.214905, 76.840816 ], [ -121.159973, 76.864556 ], [ -121.077576, 76.890745 ], [ -116.334229, 76.890745 ] ] ], [ [ [ -112.280273, 75.060270 ], [ -112.280273, 74.416188 ], [ -112.500000, 74.413236 ], [ -113.744202, 74.394776 ], [ -113.873291, 74.720932 ], [ -112.500000, 75.014176 ], [ -112.280273, 75.060270 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -116.199646, 77.645360 ], [ -116.336975, 76.877034 ], [ -116.419373, 76.840816 ], [ -116.529236, 76.790701 ], [ -121.330261, 76.790701 ], [ -121.214905, 76.840816 ], [ -121.159973, 76.864556 ], [ -119.105530, 77.512436 ], [ -117.570190, 77.498770 ], [ -116.199646, 77.645360 ] ] ], [ [ [ -112.280273, 78.082425 ], [ -112.280273, 77.460066 ], [ -112.500000, 77.508278 ], [ -113.535461, 77.732617 ], [ -112.725220, 78.051190 ], [ -112.500000, 78.067101 ], [ -112.280273, 78.082425 ] ] ], [ [ [ -112.280273, 78.622964 ], [ -112.280273, 78.408058 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -112.500000, 78.558309 ], [ -112.280273, 78.622964 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.030273, 22.146708 ], [ -101.030273, 17.287709 ], [ -101.250000, 17.413546 ], [ -101.667480, 17.649257 ], [ -101.920166, 17.918636 ], [ -102.480469, 17.976121 ], [ -103.502197, 18.294558 ], [ -103.919678, 18.750310 ], [ -104.993591, 19.316327 ], [ -105.493469, 19.947533 ], [ -105.732422, 20.434734 ], [ -105.400085, 20.532505 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.076812 ], [ -105.268250, 21.422390 ], [ -105.603333, 21.871695 ], [ -105.619812, 21.943046 ], [ -105.666504, 22.146708 ], [ -101.030273, 22.146708 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.030273, 32.138409 ], [ -101.030273, 29.422853 ], [ -101.250000, 29.547177 ], [ -101.664734, 29.781066 ], [ -102.480469, 29.761993 ], [ -103.112183, 28.972104 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.707947, 30.123749 ], [ -105.037537, 30.645001 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.509705, 31.756196 ], [ -108.240051, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.025085, 31.334871 ], [ -112.500000, 31.791221 ], [ -112.719727, 31.861230 ], [ -112.719727, 32.138409 ], [ -101.030273, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -112.719727, 29.897806 ], [ -112.719727, 31.861230 ], [ -112.500000, 31.791221 ], [ -111.025085, 31.334871 ], [ -108.242798, 31.344254 ], [ -108.240051, 31.756196 ], [ -106.509705, 31.756196 ], [ -106.144409, 31.400535 ], [ -105.633545, 31.085870 ], [ -105.037537, 30.645001 ], [ -104.707947, 30.123749 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.272025 ], [ -103.112183, 28.972104 ], [ -102.480469, 29.761993 ], [ -101.664734, 29.781066 ], [ -101.250000, 29.547177 ], [ -101.030273, 29.422853 ], [ -101.030273, 21.739091 ], [ -105.504456, 21.739091 ], [ -105.603333, 21.871695 ], [ -105.619812, 21.943046 ], [ -105.693970, 22.271306 ], [ -106.029053, 22.776182 ], [ -106.910706, 23.770264 ], [ -107.915955, 24.549622 ], [ -108.402100, 25.172631 ], [ -109.261780, 25.582085 ], [ -109.445801, 25.827089 ], [ -109.291992, 26.443525 ], [ -109.802856, 26.676913 ], [ -110.393372, 27.164252 ], [ -110.643311, 27.860932 ], [ -111.181641, 27.943460 ], [ -111.761169, 28.468691 ], [ -112.230835, 28.955282 ], [ -112.272034, 29.267233 ], [ -112.500000, 29.587789 ], [ -112.719727, 29.897806 ] ] ], [ [ [ -112.719727, 27.746746 ], [ -112.500000, 27.561852 ], [ -112.458801, 27.527758 ], [ -112.247314, 27.174026 ], [ -111.618347, 26.664641 ], [ -111.286011, 25.733107 ], [ -110.989380, 25.296854 ], [ -110.711975, 24.826625 ], [ -110.657043, 24.299544 ], [ -110.173645, 24.266997 ], [ -109.772644, 23.812988 ], [ -109.410095, 23.364950 ], [ -109.434814, 23.185813 ], [ -109.855042, 22.819226 ], [ -110.033569, 22.824289 ], [ -110.297241, 23.433009 ], [ -110.950928, 24.001308 ], [ -111.673279, 24.484649 ], [ -112.184143, 24.739348 ], [ -112.151184, 25.470554 ], [ -112.302246, 26.012361 ], [ -112.500000, 26.143111 ], [ -112.719727, 26.286028 ], [ -112.719727, 27.746746 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.030273, 41.145570 ], [ -101.030273, 31.765537 ], [ -112.417603, 31.765537 ], [ -112.719727, 31.861230 ], [ -112.719727, 41.145570 ], [ -101.030273, 41.145570 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.719727, 31.861230 ], [ -112.417603, 31.765537 ], [ -112.719727, 31.765537 ], [ -112.719727, 31.861230 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -101.030273, 49.066668 ], [ -101.030273, 49.000042 ], [ -112.719727, 49.000042 ], [ -112.719727, 49.066668 ], [ -101.030273, 49.066668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.030273, 49.000042 ], [ -101.030273, 40.813809 ], [ -112.719727, 40.813809 ], [ -112.719727, 49.000042 ], [ -101.030273, 49.000042 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -101.030273, 55.899956 ], [ -101.030273, 49.000042 ], [ -112.719727, 49.000042 ], [ -112.719727, 55.899956 ], [ -101.030273, 55.899956 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.030273, 49.000042 ], [ -101.030273, 48.777913 ], [ -112.719727, 48.777913 ], [ -112.719727, 49.000042 ], [ -101.030273, 49.000042 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -101.030273, 61.710706 ], [ -101.030273, 55.652798 ], [ -112.719727, 55.652798 ], [ -112.719727, 61.710706 ], [ -101.030273, 61.710706 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -101.030273, 66.600676 ], [ -101.030273, 61.501734 ], [ -112.719727, 61.501734 ], [ -112.719727, 66.600676 ], [ -101.030273, 66.600676 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -106.152649, 68.800041 ], [ -105.345154, 68.561388 ], [ -104.339905, 68.018882 ], [ -103.222046, 68.097907 ], [ -101.455994, 67.647899 ], [ -101.250000, 67.668781 ], [ -101.030273, 67.690686 ], [ -101.030273, 66.425537 ], [ -112.719727, 66.425537 ], [ -112.719727, 67.722985 ], [ -112.500000, 67.732354 ], [ -110.799866, 67.806132 ], [ -109.948425, 67.981843 ], [ -108.882751, 67.382150 ], [ -107.795105, 67.887951 ], [ -108.814087, 68.312057 ], [ -108.168640, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.152649, 68.800041 ] ] ], [ [ [ -103.417053, 70.685421 ], [ -103.172607, 70.612614 ], [ -102.788086, 70.498324 ], [ -101.250000, 70.096464 ], [ -101.030273, 70.037473 ], [ -101.030273, 69.825418 ], [ -101.090698, 69.585354 ], [ -101.250000, 69.576730 ], [ -102.733154, 69.504727 ], [ -102.095947, 69.120506 ], [ -102.431030, 68.753310 ], [ -104.241028, 68.910017 ], [ -105.960388, 69.180137 ], [ -107.124939, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.535950, 68.630549 ], [ -112.500000, 68.579450 ], [ -112.719727, 68.567410 ], [ -112.719727, 70.326137 ], [ -112.417603, 70.366783 ], [ -112.500000, 70.376932 ], [ -112.719727, 70.403663 ], [ -112.719727, 70.685421 ], [ -103.417053, 70.685421 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -107.517700, 73.236209 ], [ -106.523438, 73.076242 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699056 ], [ -104.466248, 70.993717 ], [ -103.172607, 70.612614 ], [ -102.928162, 70.539543 ], [ -112.719727, 70.539543 ], [ -112.719727, 72.918022 ], [ -112.500000, 72.947848 ], [ -112.442322, 72.955900 ], [ -111.052551, 72.450448 ], [ -109.920959, 72.961534 ], [ -109.009094, 72.633374 ], [ -108.190613, 71.651562 ], [ -107.687988, 72.066302 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ] ] ], [ [ [ -101.030273, 72.742078 ], [ -101.030273, 72.057842 ], [ -101.250000, 72.126250 ], [ -102.502441, 72.510804 ], [ -102.480469, 72.830674 ], [ -101.250000, 72.755925 ], [ -101.030273, 72.742078 ] ] ], [ [ [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.460511 ], [ -106.600342, 73.600670 ], [ -105.260010, 73.640171 ] ] ], [ [ [ -101.030273, 73.061045 ], [ -101.250000, 73.190200 ], [ -101.541138, 73.360135 ], [ -101.250000, 73.480047 ], [ -101.030273, 73.570401 ], [ -101.030273, 73.061045 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ], [ -108.212585, 76.202037 ], [ -107.819824, 75.845840 ], [ -106.929932, 76.013439 ], [ -105.883484, 75.969558 ], [ -105.707703, 75.479952 ], [ -106.314697, 75.005651 ], [ -109.701233, 74.850672 ], [ -112.225342, 74.417664 ], [ -112.500000, 74.413236 ], [ -112.719727, 74.410284 ], [ -112.719727, 74.967230 ], [ -112.500000, 75.014176 ], [ -111.796875, 75.162597 ], [ -112.500000, 75.144299 ], [ -112.719727, 75.138665 ], [ -112.719727, 76.157423 ], [ -112.590637, 76.141643 ], [ -112.500000, 76.112008 ], [ -110.816345, 75.549340 ], [ -109.069519, 75.473753 ], [ -110.497742, 76.430093 ], [ -109.583130, 76.794466 ] ] ], [ [ [ -101.030273, 76.410747 ], [ -101.030273, 75.633403 ], [ -101.250000, 75.623177 ], [ -102.502441, 75.564411 ], [ -102.565613, 76.336983 ], [ -101.491699, 76.305807 ], [ -101.250000, 76.360319 ], [ -101.030273, 76.410747 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -109.583130, 76.794466 ], [ -109.550171, 76.790701 ], [ -109.591370, 76.790701 ], [ -109.583130, 76.794466 ] ] ], [ [ [ -111.266785, 78.153115 ], [ -109.855042, 77.996477 ], [ -110.187378, 77.697553 ], [ -112.052307, 77.409277 ], [ -112.500000, 77.508278 ], [ -112.719727, 77.556308 ], [ -112.719727, 78.051758 ], [ -112.500000, 78.067101 ], [ -111.266785, 78.153115 ] ] ], [ [ [ -104.208069, 79.212538 ], [ -103.617554, 79.171335 ], [ -103.529663, 79.165657 ], [ -101.250000, 78.858909 ], [ -101.030273, 78.828618 ], [ -101.030273, 78.000474 ], [ -101.250000, 78.015882 ], [ -101.304932, 78.019304 ], [ -102.950134, 78.343308 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.422058, 78.918720 ], [ -105.468750, 79.171335 ], [ -105.476990, 79.212538 ], [ -104.208069, 79.212538 ] ] ], [ [ [ -111.500244, 78.850415 ], [ -110.964661, 78.804647 ], [ -109.665527, 78.602357 ], [ -110.882263, 78.406954 ], [ -112.500000, 78.408058 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -112.500000, 78.558309 ], [ -111.500244, 78.850415 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -105.493469, 79.301620 ], [ -103.617554, 79.171335 ], [ -103.529663, 79.165657 ], [ -103.263245, 79.129976 ], [ -105.460510, 79.129976 ], [ -105.468750, 79.171335 ], [ -105.493469, 79.301620 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.778320, 22.146708 ], [ -97.715149, 21.943046 ], [ -97.701416, 21.899730 ], [ -97.391052, 21.412162 ], [ -97.190552, 20.637925 ], [ -96.525879, 19.893306 ], [ -96.292419, 19.321511 ], [ -95.902405, 18.828316 ], [ -94.839478, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.551331, 18.424896 ], [ -92.787781, 18.526492 ], [ -92.037964, 18.706090 ], [ -91.408997, 18.877702 ], [ -90.774536, 19.285221 ], [ -90.535583, 19.867477 ], [ -90.453186, 20.709877 ], [ -90.280151, 20.999907 ], [ -90.000000, 21.110125 ], [ -89.780273, 21.194655 ], [ -89.780273, 17.816686 ], [ -90.000000, 17.819301 ], [ -91.002502, 17.819301 ], [ -91.002502, 17.256236 ], [ -91.455688, 17.253613 ], [ -91.082153, 16.920195 ], [ -90.714111, 16.688817 ], [ -90.601501, 16.472963 ], [ -90.439453, 16.412375 ], [ -90.466919, 16.069568 ], [ -91.749573, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.066819 ], [ -92.205505, 14.830646 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.617747 ], [ -93.875427, 15.940202 ], [ -94.693909, 16.201488 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.752606 ], [ -96.558838, 15.654776 ], [ -97.264709, 15.919074 ], [ -98.014526, 16.109153 ], [ -98.948364, 16.567758 ], [ -99.698181, 16.707232 ], [ -100.829773, 17.172283 ], [ -101.250000, 17.413546 ], [ -101.469727, 17.539297 ], [ -101.469727, 22.146708 ], [ -97.778320, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guatemala", "sov_a3": "GTM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guatemala", "adm0_a3": "GTM", "geou_dif": 0, "geounit": "Guatemala", "gu_a3": "GTM", "su_dif": 0, "subunit": "Guatemala", "su_a3": "GTM", "brk_diff": 0, "name": "Guatemala", "name_long": "Guatemala", "brk_a3": "GTM", "brk_name": "Guatemala", "abbrev": "Guat.", "postal": "GT", "formal_en": "Republic of Guatemala", "name_sort": "Guatemala", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 13276517, "gdp_md_est": 68580, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GT", "iso_a3": "GTM", "iso_n3": "320", "un_a3": "320", "wb_a2": "GT", "wb_a3": "GTM", "woe_id": -99, "adm0_a3_is": "GTM", "adm0_a3_us": "GTM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.819301 ], [ -89.780273, 17.816686 ], [ -89.780273, 14.093957 ], [ -90.000000, 13.931401 ], [ -90.065918, 13.883412 ], [ -90.096130, 13.736717 ], [ -90.609741, 13.910074 ], [ -91.233215, 13.928736 ], [ -91.691895, 14.128585 ], [ -92.230225, 14.541050 ], [ -92.205505, 14.830646 ], [ -92.087402, 15.066819 ], [ -92.230225, 15.252389 ], [ -91.749573, 16.066929 ], [ -90.466919, 16.069568 ], [ -90.439453, 16.412375 ], [ -90.601501, 16.472963 ], [ -90.714111, 16.688817 ], [ -91.082153, 16.920195 ], [ -91.455688, 17.253613 ], [ -91.002502, 17.256236 ], [ -91.002502, 17.819301 ], [ -90.000000, 17.819301 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "El Salvador", "sov_a3": "SLV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "El Salvador", "adm0_a3": "SLV", "geou_dif": 0, "geounit": "El Salvador", "gu_a3": "SLV", "su_dif": 0, "subunit": "El Salvador", "su_a3": "SLV", "brk_diff": 0, "name": "El Salvador", "name_long": "El Salvador", "brk_a3": "SLV", "brk_name": "El Salvador", "abbrev": "El. S.", "postal": "SV", "formal_en": "Republic of El Salvador", "name_sort": "El Salvador", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 8, "pop_est": 7185218, "gdp_md_est": 43630, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SV", "iso_a3": "SLV", "iso_n3": "222", "un_a3": "222", "wb_a2": "SV", "wb_a3": "SLV", "woe_id": -99, "adm0_a3_is": "SLV", "adm0_a3_us": "SLV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 11, "long_len": 11, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.780273, 14.093957 ], [ -89.780273, 13.517838 ], [ -89.813232, 13.523179 ], [ -90.000000, 13.664669 ], [ -90.096130, 13.736717 ], [ -90.065918, 13.883412 ], [ -90.000000, 13.931401 ], [ -89.780273, 14.093957 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.780273, 32.138409 ], [ -89.780273, 29.307956 ], [ -90.000000, 29.197726 ], [ -90.156555, 29.118574 ], [ -90.881653, 29.149763 ], [ -91.628723, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.227234, 29.785833 ], [ -93.850708, 29.714296 ], [ -94.691162, 29.480252 ], [ -95.600281, 28.738764 ], [ -96.594543, 28.309217 ], [ -97.141113, 27.831790 ], [ -97.371826, 27.381523 ], [ -97.380066, 26.691637 ], [ -97.330627, 26.212127 ], [ -97.141113, 25.871581 ], [ -97.531128, 25.841921 ], [ -98.242493, 26.061718 ], [ -99.022522, 26.372185 ], [ -99.302673, 26.841227 ], [ -99.522400, 27.542371 ], [ -100.110168, 28.110749 ], [ -100.456238, 28.697816 ], [ -100.958862, 29.382175 ], [ -101.250000, 29.547177 ], [ -101.469727, 29.671349 ], [ -101.469727, 32.138409 ], [ -89.780273, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.469727, 29.671349 ], [ -101.250000, 29.547177 ], [ -100.958862, 29.382175 ], [ -100.456238, 28.697816 ], [ -100.110168, 28.110749 ], [ -99.522400, 27.542371 ], [ -99.302673, 26.841227 ], [ -99.022522, 26.372185 ], [ -98.242493, 26.061718 ], [ -97.531128, 25.841921 ], [ -97.141113, 25.871581 ], [ -97.528381, 24.993526 ], [ -97.704163, 24.274509 ], [ -97.778320, 22.933101 ], [ -97.874451, 22.446572 ], [ -97.715149, 21.943046 ], [ -97.701416, 21.899730 ], [ -97.599792, 21.739091 ], [ -101.469727, 21.739091 ], [ -101.469727, 29.671349 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.780273, 41.145570 ], [ -89.780273, 31.765537 ], [ -101.469727, 31.765537 ], [ -101.469727, 41.145570 ], [ -89.780273, 41.145570 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -89.780273, 49.066668 ], [ -89.780273, 48.048710 ], [ -90.000000, 48.096426 ], [ -90.832214, 48.270397 ], [ -91.642456, 48.140432 ], [ -92.612000, 48.451066 ], [ -93.630981, 48.609306 ], [ -94.331360, 48.671013 ], [ -94.641724, 48.841221 ], [ -94.669189, 48.922499 ], [ -94.713135, 49.066668 ], [ -89.780273, 49.066668 ] ] ], [ [ [ -95.160828, 49.066668 ], [ -95.160828, 49.000042 ], [ -101.469727, 49.000042 ], [ -101.469727, 49.066668 ], [ -95.160828, 49.066668 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.713135, 49.066668 ], [ -94.669189, 48.922499 ], [ -94.641724, 48.841221 ], [ -94.331360, 48.671013 ], [ -93.630981, 48.609306 ], [ -92.612000, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.832214, 48.270397 ], [ -90.000000, 48.096426 ], [ -89.780273, 48.048710 ], [ -89.780273, 40.813809 ], [ -101.469727, 40.813809 ], [ -101.469727, 49.000042 ], [ -95.160828, 49.000042 ], [ -95.160828, 49.066668 ], [ -94.713135, 49.066668 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -89.780273, 55.899956 ], [ -89.780273, 48.777913 ], [ -94.526367, 48.777913 ], [ -94.641724, 48.841221 ], [ -94.669189, 48.922499 ], [ -94.820251, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.160828, 49.000042 ], [ -101.469727, 49.000042 ], [ -101.469727, 55.899956 ], [ -89.780273, 55.899956 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.820251, 49.389524 ], [ -94.669189, 48.922499 ], [ -94.641724, 48.841221 ], [ -94.526367, 48.777913 ], [ -101.469727, 48.777913 ], [ -101.469727, 49.000042 ], [ -95.160828, 49.000042 ], [ -95.158081, 49.385949 ], [ -94.820251, 49.389524 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -93.463440, 61.710706 ], [ -93.565063, 61.606396 ], [ -94.243469, 60.899724 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.216248, 58.782438 ], [ -92.765808, 57.846213 ], [ -92.298889, 57.088515 ], [ -90.898132, 57.284981 ], [ -90.000000, 57.076575 ], [ -89.780273, 57.025784 ], [ -89.780273, 55.652798 ], [ -101.469727, 55.652798 ], [ -101.469727, 61.710706 ], [ -93.463440, 61.710706 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -89.780273, 66.600676 ], [ -89.780273, 64.039756 ], [ -89.914856, 64.033744 ], [ -90.000000, 63.988009 ], [ -90.705872, 63.610879 ], [ -90.771790, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.025394 ], [ -93.565063, 61.606396 ], [ -93.666687, 61.501734 ], [ -101.469727, 61.501734 ], [ -101.469727, 66.600676 ], [ -89.780273, 66.600676 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -92.106628, 70.685421 ], [ -92.018738, 70.612614 ], [ -91.521606, 70.191619 ], [ -92.408752, 69.700010 ], [ -90.549316, 69.497994 ], [ -90.552063, 68.475895 ], [ -90.000000, 68.802028 ], [ -89.780273, 68.930761 ], [ -89.780273, 66.425537 ], [ -101.469727, 66.425537 ], [ -101.469727, 67.651033 ], [ -101.455994, 67.647899 ], [ -101.250000, 67.668781 ], [ -99.904175, 67.806132 ], [ -98.445740, 67.782258 ], [ -98.561096, 68.404235 ], [ -97.671204, 68.579450 ], [ -96.122131, 68.239878 ], [ -96.127625, 67.294317 ], [ -95.490417, 68.090734 ], [ -94.685669, 68.064072 ], [ -94.235229, 69.069544 ], [ -95.306396, 69.685711 ], [ -96.473694, 70.089918 ], [ -96.435242, 70.612614 ], [ -96.429749, 70.685421 ], [ -92.106628, 70.685421 ] ] ], [ [ [ -98.220520, 70.144096 ], [ -97.157593, 69.860437 ], [ -96.558838, 69.680943 ], [ -96.259460, 69.490297 ], [ -95.649719, 69.107777 ], [ -96.270447, 68.757291 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.951487 ], [ -99.799805, 69.400615 ], [ -98.918152, 69.710489 ], [ -98.220520, 70.144096 ] ] ], [ [ [ -101.469727, 70.154355 ], [ -101.250000, 70.096464 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.585354 ], [ -101.250000, 69.576730 ], [ -101.469727, 69.566185 ], [ -101.469727, 70.154355 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -95.210266, 71.921119 ], [ -93.891907, 71.760191 ], [ -92.878418, 71.319276 ], [ -92.018738, 70.612614 ], [ -91.933594, 70.539543 ], [ -96.440735, 70.539543 ], [ -96.435242, 70.612614 ], [ -96.391296, 71.194838 ], [ -95.210266, 71.921119 ] ] ], [ [ [ -89.780273, 72.735558 ], [ -89.780273, 71.222265 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.586606 ], [ -90.205994, 72.235514 ], [ -90.000000, 72.478584 ], [ -89.780273, 72.735558 ] ] ], [ [ [ -100.357361, 73.843938 ], [ -99.165344, 73.633981 ], [ -97.380066, 73.760425 ], [ -97.121887, 73.470673 ], [ -98.055725, 72.991286 ], [ -96.542358, 72.560262 ], [ -96.720886, 71.660206 ], [ -98.360596, 71.273477 ], [ -99.324646, 71.357067 ], [ -100.016785, 71.738687 ], [ -101.250000, 72.126250 ], [ -101.469727, 72.194406 ], [ -101.469727, 72.768947 ], [ -101.250000, 72.755925 ], [ -100.439758, 72.706189 ], [ -101.250000, 73.190200 ], [ -101.469727, 73.319188 ], [ -101.469727, 73.389211 ], [ -101.250000, 73.480047 ], [ -100.357361, 73.843938 ] ] ], [ [ [ -92.263184, 74.079925 ], [ -91.785278, 74.019543 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.270935, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.034241, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.495911, 73.863033 ], [ -94.927368, 74.019543 ], [ -94.707642, 74.079925 ], [ -92.263184, 74.079925 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -94.504395, 74.135580 ], [ -92.422485, 74.100253 ], [ -91.785278, 74.019543 ], [ -91.310120, 73.958939 ], [ -95.147095, 73.958939 ], [ -94.504395, 74.135580 ] ] ], [ [ [ -93.966064, 76.890745 ], [ -93.795776, 76.840816 ], [ -93.576050, 76.776886 ], [ -91.606750, 76.778771 ], [ -90.744324, 76.450056 ], [ -90.972290, 76.074381 ], [ -90.000000, 75.883402 ], [ -89.824219, 75.847855 ], [ -89.780273, 75.832401 ], [ -89.780273, 74.517689 ], [ -90.000000, 74.544794 ], [ -92.422485, 74.838465 ], [ -92.768555, 75.387389 ], [ -92.892151, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.962830, 76.441688 ], [ -97.121887, 76.751102 ], [ -97.042236, 76.840816 ], [ -96.995544, 76.890745 ], [ -93.966064, 76.890745 ] ] ], [ [ [ -94.853210, 75.647708 ], [ -93.979797, 75.297038 ], [ -93.614502, 74.980047 ], [ -94.158325, 74.593027 ], [ -95.611267, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.853210, 75.647708 ] ] ], [ [ [ -98.500671, 76.720223 ], [ -97.737122, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.160095, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.884705, 75.057437 ], [ -100.865479, 75.640898 ], [ -101.250000, 75.623177 ], [ -101.469727, 75.612944 ], [ -101.469727, 76.310358 ], [ -101.250000, 76.360319 ], [ -99.983826, 76.646840 ], [ -98.577576, 76.588993 ], [ -98.500671, 76.720223 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -96.745605, 77.161435 ], [ -94.685669, 77.098423 ], [ -93.795776, 76.840816 ], [ -93.625488, 76.790701 ], [ -97.086182, 76.790701 ], [ -97.042236, 76.840816 ], [ -96.745605, 77.161435 ] ] ], [ [ [ -96.437988, 77.834904 ], [ -94.424744, 77.820426 ], [ -93.721619, 77.634777 ], [ -93.842468, 77.520155 ], [ -94.295654, 77.491633 ], [ -96.171570, 77.555124 ], [ -96.437988, 77.834904 ] ] ], [ [ [ -98.632507, 78.872169 ], [ -97.338867, 78.832342 ], [ -96.756592, 78.766187 ], [ -95.561829, 78.418539 ], [ -95.830994, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.082992 ], [ -98.555603, 78.458173 ], [ -98.632507, 78.872169 ] ] ], [ [ [ -101.469727, 78.888590 ], [ -101.250000, 78.858909 ], [ -100.827026, 78.800913 ], [ -100.060730, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.250000, 78.015882 ], [ -101.304932, 78.019304 ], [ -101.469727, 78.052327 ], [ -101.469727, 78.888590 ] ] ], [ [ [ -89.780273, 79.212538 ], [ -89.780273, 78.257538 ], [ -90.000000, 78.248591 ], [ -90.804749, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.952332, 78.751195 ], [ -93.935852, 79.113908 ], [ -93.768311, 79.171335 ], [ -93.647461, 79.212538 ], [ -89.780273, 79.212538 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -92.092896, 81.127169 ], [ -92.010498, 81.093214 ], [ -91.134338, 80.723498 ], [ -90.000000, 80.579842 ], [ -89.780273, 80.551930 ], [ -89.780273, 79.129976 ], [ -93.889160, 79.129976 ], [ -93.768311, 79.171335 ], [ -93.147583, 79.380362 ], [ -94.974060, 79.372767 ], [ -96.078186, 79.705361 ], [ -96.709900, 80.158078 ], [ -96.017761, 80.602741 ], [ -95.325623, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.518127, 81.093214 ], [ -94.584045, 81.127169 ], [ -92.092896, 81.127169 ] ] ], [ [ [ -89.780273, 81.127169 ], [ -89.780273, 81.058703 ], [ -89.923096, 81.127169 ], [ -89.780273, 81.127169 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -92.411499, 81.257537 ], [ -92.010498, 81.093214 ], [ -91.928101, 81.059130 ], [ -94.454956, 81.059130 ], [ -94.518127, 81.093214 ], [ -94.737854, 81.206879 ], [ -92.411499, 81.257537 ] ] ], [ [ [ -89.780273, 82.094243 ], [ -89.780273, 81.059130 ], [ -90.000000, 81.164794 ], [ -90.200500, 81.260042 ], [ -91.370544, 81.553443 ], [ -91.587524, 81.894580 ], [ -90.101624, 82.085171 ], [ -90.000000, 82.087818 ], [ -89.780273, 82.094243 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 16 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.530273, 0.219726 ], [ -78.530273, -4.154679 ], [ -78.640137, -4.546308 ], [ -78.750000, -4.625704 ], [ -79.205933, -4.956879 ], [ -79.626160, -4.453212 ], [ -80.029907, -4.343673 ], [ -80.444641, -4.423090 ], [ -80.469360, -4.058796 ], [ -80.186462, -3.820408 ], [ -80.304565, -3.403758 ], [ -79.771729, -2.654994 ], [ -79.988708, -2.218684 ], [ -80.370483, -2.682430 ], [ -80.969238, -2.246129 ], [ -80.765991, -1.963422 ], [ -80.936279, -1.057374 ], [ -80.584717, -0.906334 ], [ -80.400696, -0.282897 ], [ -80.233154, 0.000000 ], [ -80.104065, 0.219726 ], [ -78.530273, 0.219726 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Peru", "sov_a3": "PER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Peru", "adm0_a3": "PER", "geou_dif": 0, "geounit": "Peru", "gu_a3": "PER", "su_dif": 0, "subunit": "Peru", "su_a3": "PER", "brk_diff": 0, "name": "Peru", "name_long": "Peru", "brk_a3": "PER", "brk_name": "Peru", "abbrev": "Peru", "postal": "PE", "formal_en": "Republic of Peru", "name_sort": "Peru", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 11, "pop_est": 29546963, "gdp_md_est": 247300, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PE", "iso_a3": "PER", "iso_n3": "604", "un_a3": "604", "wb_a2": "PE", "wb_a3": "PER", "woe_id": -99, "adm0_a3_is": "PER", "adm0_a3_us": "PER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.304565, -3.403758 ], [ -80.186462, -3.820408 ], [ -80.469360, -4.058796 ], [ -80.444641, -4.423090 ], [ -80.029907, -4.343673 ], [ -79.626160, -4.453212 ], [ -79.205933, -4.956879 ], [ -78.750000, -4.625704 ], [ -78.640137, -4.546308 ], [ -78.530273, -4.154679 ], [ -78.530273, -9.454480 ], [ -78.750000, -8.990888 ], [ -79.038391, -8.385431 ], [ -79.447632, -7.928675 ], [ -79.760742, -7.193551 ], [ -80.538025, -6.539103 ], [ -81.252136, -6.135093 ], [ -80.928040, -5.689783 ], [ -81.411438, -4.735201 ], [ -81.101074, -4.034138 ], [ -80.304565, -3.403758 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Nicaragua", "sov_a3": "NIC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nicaragua", "adm0_a3": "NIC", "geou_dif": 0, "geounit": "Nicaragua", "gu_a3": "NIC", "su_dif": 0, "subunit": "Nicaragua", "su_a3": "NIC", "brk_diff": 0, "name": "Nicaragua", "name_long": "Nicaragua", "brk_a3": "NIC", "brk_name": "Nicaragua", "abbrev": "Nic.", "postal": "NI", "formal_en": "Republic of Nicaragua", "name_sort": "Nicaragua", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 5891199, "gdp_md_est": 16790, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NI", "iso_a3": "NIC", "iso_n3": "558", "un_a3": "558", "wb_a2": "NI", "wb_a3": "NIC", "woe_id": -99, "adm0_a3_is": "NIC", "adm0_a3_us": "NIC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.839417, 11.393879 ], [ -83.855896, 11.375031 ], [ -83.822937, 11.178402 ], [ -83.809204, 11.105642 ], [ -83.658142, 10.941192 ], [ -83.897095, 10.728080 ], [ -84.190979, 10.795537 ], [ -84.358521, 11.000512 ], [ -84.674377, 11.084080 ], [ -84.905090, 10.954675 ], [ -85.468140, 11.178402 ], [ -85.564270, 11.218816 ], [ -85.608215, 11.178402 ], [ -85.712585, 11.089471 ], [ -85.811462, 11.178402 ], [ -86.050415, 11.393879 ], [ -83.839417, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Costa Rica", "sov_a3": "CRI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Costa Rica", "adm0_a3": "CRI", "geou_dif": 0, "geounit": "Costa Rica", "gu_a3": "CRI", "su_dif": 0, "subunit": "Costa Rica", "su_a3": "CRI", "brk_diff": 0, "name": "Costa Rica", "name_long": "Costa Rica", "brk_a3": "CRI", "brk_name": "Costa Rica", "abbrev": "C.R.", "postal": "CR", "formal_en": "Republic of Costa Rica", "name_sort": "Costa Rica", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 4253877, "gdp_md_est": 48320, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CR", "iso_a3": "CRI", "iso_n3": "188", "un_a3": "188", "wb_a2": "CR", "wb_a3": "CRI", "woe_id": -99, "adm0_a3_is": "CRI", "adm0_a3_us": "CRI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.564270, 11.218816 ], [ -85.468140, 11.178402 ], [ -84.905090, 10.954675 ], [ -84.674377, 11.084080 ], [ -84.358521, 11.000512 ], [ -84.190979, 10.795537 ], [ -83.897095, 10.728080 ], [ -83.658142, 10.941192 ], [ -83.402710, 10.395975 ], [ -83.018188, 9.993196 ], [ -82.548523, 9.568251 ], [ -82.933044, 9.478863 ], [ -82.927551, 9.074976 ], [ -82.721558, 8.925774 ], [ -82.869873, 8.809082 ], [ -82.831421, 8.627188 ], [ -82.913818, 8.426187 ], [ -82.966003, 8.225082 ], [ -83.509827, 8.447922 ], [ -83.713074, 8.657057 ], [ -83.597717, 8.830795 ], [ -83.633423, 9.053277 ], [ -83.910828, 9.291886 ], [ -84.303589, 9.489699 ], [ -84.649658, 9.616998 ], [ -84.715576, 9.909333 ], [ -84.976501, 10.087854 ], [ -84.913330, 9.798384 ], [ -85.111084, 9.557417 ], [ -85.341797, 9.836273 ], [ -85.663147, 9.933682 ], [ -85.797729, 10.136524 ], [ -85.792236, 10.441897 ], [ -85.660400, 10.755064 ], [ -85.943298, 10.895345 ], [ -85.608215, 11.178402 ], [ -85.564270, 11.218816 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Panama", "sov_a3": "PAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Panama", "adm0_a3": "PAN", "geou_dif": 0, "geounit": "Panama", "gu_a3": "PAN", "su_dif": 0, "subunit": "Panama", "su_a3": "PAN", "brk_diff": 0, "name": "Panama", "name_long": "Panama", "brk_a3": "PAN", "brk_name": "Panama", "abbrev": "Pan.", "postal": "PA", "formal_en": "Republic of Panama", "name_sort": "Panama", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 3360474, "gdp_md_est": 38830, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PA", "iso_a3": "PAN", "iso_n3": "591", "un_a3": "591", "wb_a2": "PA", "wb_a3": "PAN", "woe_id": -99, "adm0_a3_is": "PAN", "adm0_a3_us": "PAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.573975, 9.614290 ], [ -79.021912, 9.554709 ], [ -79.060364, 9.457190 ], [ -78.750000, 9.438224 ], [ -78.530273, 9.424677 ], [ -78.530273, 8.556578 ], [ -78.623657, 8.719503 ], [ -78.750000, 8.790083 ], [ -79.120789, 8.996313 ], [ -79.560242, 8.933914 ], [ -79.760742, 8.586453 ], [ -80.164490, 8.333800 ], [ -80.384216, 8.298470 ], [ -80.483093, 8.091862 ], [ -80.005188, 7.547656 ], [ -80.277100, 7.422389 ], [ -80.422668, 7.272568 ], [ -80.886841, 7.220800 ], [ -81.059875, 7.819847 ], [ -81.191711, 7.648387 ], [ -81.521301, 7.708270 ], [ -81.721802, 8.110896 ], [ -82.133789, 8.176149 ], [ -82.391968, 8.293035 ], [ -82.820435, 8.293035 ], [ -82.853394, 8.075546 ], [ -82.966003, 8.225082 ], [ -82.913818, 8.426187 ], [ -82.831421, 8.627188 ], [ -82.869873, 8.809082 ], [ -82.721558, 8.925774 ], [ -82.927551, 9.074976 ], [ -82.933044, 9.478863 ], [ -82.548523, 9.568251 ], [ -82.188721, 9.207849 ], [ -82.207947, 8.996313 ], [ -81.809692, 8.952906 ], [ -81.716309, 9.034290 ], [ -81.441650, 8.787368 ], [ -80.950012, 8.860648 ], [ -80.524292, 9.112945 ], [ -79.917297, 9.313569 ], [ -79.573975, 9.614290 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.530273, 2.471157 ], [ -78.530273, 1.197423 ], [ -78.750000, 1.320989 ], [ -78.857117, 1.381397 ], [ -78.991699, 1.691649 ], [ -78.750000, 1.741065 ], [ -78.618164, 1.768518 ], [ -78.664856, 2.268084 ], [ -78.530273, 2.471157 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.857117, 1.381397 ], [ -78.750000, 1.320989 ], [ -78.530273, 1.197423 ], [ -78.530273, -0.219726 ], [ -80.362244, -0.219726 ], [ -80.233154, 0.000000 ], [ -80.021667, 0.362546 ], [ -80.093079, 0.769020 ], [ -79.543762, 0.983228 ], [ -78.857117, 1.381397 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.052917, 21.545066 ], [ -86.813965, 21.332873 ], [ -86.846924, 20.851112 ], [ -87.385254, 20.257044 ], [ -87.621460, 19.647761 ], [ -87.437439, 19.474361 ], [ -87.588501, 19.041349 ], [ -87.838440, 18.260653 ], [ -88.091125, 18.518679 ], [ -88.492126, 18.487424 ], [ -88.849182, 17.884659 ], [ -89.030457, 18.002244 ], [ -89.151306, 17.957832 ], [ -89.145813, 17.808841 ], [ -90.000000, 17.819301 ], [ -90.068665, 17.821916 ], [ -90.219727, 17.819301 ], [ -90.219727, 21.022983 ], [ -90.000000, 21.110125 ], [ -89.601746, 21.263781 ], [ -88.544312, 21.493964 ], [ -87.659912, 21.460737 ], [ -87.052917, 21.545066 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guatemala", "sov_a3": "GTM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guatemala", "adm0_a3": "GTM", "geou_dif": 0, "geounit": "Guatemala", "gu_a3": "GTM", "su_dif": 0, "subunit": "Guatemala", "su_a3": "GTM", "brk_diff": 0, "name": "Guatemala", "name_long": "Guatemala", "brk_a3": "GTM", "brk_name": "Guatemala", "abbrev": "Guat.", "postal": "GT", "formal_en": "Republic of Guatemala", "name_sort": "Guatemala", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 13276517, "gdp_md_est": 68580, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GT", "iso_a3": "GTM", "iso_n3": "320", "un_a3": "320", "wb_a2": "GT", "wb_a3": "GTM", "woe_id": -99, "adm0_a3_is": "GTM", "adm0_a3_us": "GTM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.819301 ], [ -89.145813, 17.808841 ], [ -89.151306, 17.017394 ], [ -89.230957, 15.887376 ], [ -88.931580, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.519592, 15.855674 ], [ -88.225708, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.156799, 15.066819 ], [ -89.225464, 14.875778 ], [ -89.145813, 14.679254 ], [ -89.354553, 14.426700 ], [ -89.588013, 14.362852 ], [ -89.535828, 14.245749 ], [ -89.722595, 14.136576 ], [ -90.000000, 13.931401 ], [ -90.065918, 13.883412 ], [ -90.096130, 13.736717 ], [ -90.219727, 13.779402 ], [ -90.219727, 17.819301 ], [ -90.000000, 17.819301 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Belize", "sov_a3": "BLZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belize", "adm0_a3": "BLZ", "geou_dif": 0, "geounit": "Belize", "gu_a3": "BLZ", "su_dif": 0, "subunit": "Belize", "su_a3": "BLZ", "brk_diff": 0, "name": "Belize", "name_long": "Belize", "brk_a3": "BLZ", "brk_name": "Belize", "abbrev": "Belize", "postal": "BZ", "formal_en": "Belize", "name_sort": "Belize", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 307899, "gdp_md_est": 2536, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BZ", "iso_a3": "BLZ", "iso_n3": "084", "un_a3": "084", "wb_a2": "BZ", "wb_a3": "BLZ", "woe_id": -99, "adm0_a3_is": "BLZ", "adm0_a3_us": "BLZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.302612, 18.500447 ], [ -88.297119, 18.354526 ], [ -88.107605, 18.349312 ], [ -88.124084, 18.077979 ], [ -88.286133, 17.646639 ], [ -88.198242, 17.489531 ], [ -88.305359, 17.132916 ], [ -88.242188, 17.038403 ], [ -88.357544, 16.530898 ], [ -88.552551, 16.267414 ], [ -88.733826, 16.235772 ], [ -88.931580, 15.887376 ], [ -89.230957, 15.887376 ], [ -89.151306, 17.017394 ], [ -89.145813, 17.808841 ], [ -89.151306, 17.957832 ], [ -89.030457, 18.002244 ], [ -88.849182, 17.884659 ], [ -88.492126, 18.487424 ], [ -88.302612, 18.500447 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "El Salvador", "sov_a3": "SLV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "El Salvador", "adm0_a3": "SLV", "geou_dif": 0, "geounit": "El Salvador", "gu_a3": "SLV", "su_dif": 0, "subunit": "El Salvador", "su_a3": "SLV", "brk_diff": 0, "name": "El Salvador", "name_long": "El Salvador", "brk_a3": "SLV", "brk_name": "El Salvador", "abbrev": "El. S.", "postal": "SV", "formal_en": "Republic of El Salvador", "name_sort": "El Salvador", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 8, "pop_est": 7185218, "gdp_md_est": 43630, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SV", "iso_a3": "SLV", "iso_n3": "222", "un_a3": "222", "wb_a2": "SV", "wb_a3": "SLV", "woe_id": -99, "adm0_a3_is": "SLV", "adm0_a3_us": "SLV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 11, "long_len": 11, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.354553, 14.426700 ], [ -89.060669, 14.341565 ], [ -88.843689, 14.141902 ], [ -88.541565, 13.982046 ], [ -88.505859, 13.846080 ], [ -88.066406, 13.966054 ], [ -87.860413, 13.894077 ], [ -87.725830, 13.787404 ], [ -87.794495, 13.386948 ], [ -87.904358, 13.149027 ], [ -88.483887, 13.165074 ], [ -88.843689, 13.261333 ], [ -89.258423, 13.459080 ], [ -89.813232, 13.523179 ], [ -90.000000, 13.664669 ], [ -90.096130, 13.736717 ], [ -90.065918, 13.883412 ], [ -90.000000, 13.931401 ], [ -89.722595, 14.136576 ], [ -89.535828, 14.245749 ], [ -89.588013, 14.362852 ], [ -89.354553, 14.426700 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Honduras", "sov_a3": "HND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Honduras", "adm0_a3": "HND", "geou_dif": 0, "geounit": "Honduras", "gu_a3": "HND", "su_dif": 0, "subunit": "Honduras", "su_a3": "HND", "brk_diff": 0, "name": "Honduras", "name_long": "Honduras", "brk_a3": "HND", "brk_name": "Honduras", "abbrev": "Hond.", "postal": "HN", "formal_en": "Republic of Honduras", "name_sort": "Honduras", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7792854, "gdp_md_est": 33720, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "HN", "iso_a3": "HND", "iso_n3": "340", "un_a3": "340", "wb_a2": "HN", "wb_a3": "HND", "woe_id": -99, "adm0_a3_is": "HND", "adm0_a3_us": "HND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.003723, 16.006216 ], [ -85.685120, 15.956048 ], [ -85.446167, 15.887376 ], [ -85.182495, 15.911150 ], [ -84.984741, 15.998295 ], [ -84.528809, 15.858316 ], [ -84.369507, 15.837178 ], [ -84.064636, 15.649486 ], [ -83.776245, 15.424558 ], [ -83.410950, 15.270938 ], [ -83.147278, 14.997852 ], [ -83.490601, 15.016422 ], [ -83.630676, 14.881087 ], [ -83.976746, 14.750979 ], [ -84.229431, 14.750979 ], [ -84.451904, 14.623451 ], [ -84.649658, 14.668626 ], [ -84.822693, 14.820026 ], [ -84.927063, 14.790817 ], [ -85.053406, 14.551684 ], [ -85.149536, 14.562318 ], [ -85.166016, 14.354870 ], [ -85.514832, 14.080637 ], [ -85.698853, 13.960723 ], [ -85.803223, 13.838080 ], [ -86.097107, 14.040673 ], [ -86.314087, 13.771399 ], [ -86.522827, 13.779402 ], [ -86.756287, 13.755392 ], [ -86.734314, 13.264006 ], [ -86.882629, 13.255986 ], [ -87.006226, 13.025966 ], [ -87.319336, 12.985824 ], [ -87.489624, 13.298757 ], [ -87.794495, 13.386948 ], [ -87.725830, 13.787404 ], [ -87.860413, 13.894077 ], [ -88.066406, 13.966054 ], [ -88.505859, 13.846080 ], [ -88.541565, 13.982046 ], [ -88.843689, 14.141902 ], [ -89.060669, 14.341565 ], [ -89.354553, 14.426700 ], [ -89.145813, 14.679254 ], [ -89.225464, 14.875778 ], [ -89.156799, 15.066819 ], [ -88.681641, 15.347762 ], [ -88.225708, 15.728814 ], [ -88.121338, 15.689154 ], [ -87.904358, 15.866242 ], [ -87.615967, 15.879451 ], [ -87.525330, 15.797539 ], [ -87.368774, 15.847747 ], [ -86.904602, 15.757893 ], [ -86.443176, 15.784325 ], [ -86.121826, 15.895301 ], [ -86.003723, 16.006216 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Nicaragua", "sov_a3": "NIC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nicaragua", "adm0_a3": "NIC", "geou_dif": 0, "geounit": "Nicaragua", "gu_a3": "NIC", "su_dif": 0, "subunit": "Nicaragua", "su_a3": "NIC", "brk_diff": 0, "name": "Nicaragua", "name_long": "Nicaragua", "brk_a3": "NIC", "brk_name": "Nicaragua", "abbrev": "Nic.", "postal": "NI", "formal_en": "Republic of Nicaragua", "name_sort": "Nicaragua", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 5891199, "gdp_md_est": 16790, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NI", "iso_a3": "NIC", "iso_n3": "558", "un_a3": "558", "wb_a2": "NI", "wb_a3": "NIC", "woe_id": -99, "adm0_a3_is": "NIC", "adm0_a3_us": "NIC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.490601, 15.016422 ], [ -83.147278, 14.997852 ], [ -83.235168, 14.902322 ], [ -83.284607, 14.679254 ], [ -83.182983, 14.312292 ], [ -83.413696, 13.971385 ], [ -83.520813, 13.568572 ], [ -83.553772, 13.127629 ], [ -83.498840, 12.870715 ], [ -83.474121, 12.420483 ], [ -83.627930, 12.321219 ], [ -83.721313, 11.894228 ], [ -83.652649, 11.630716 ], [ -83.855896, 11.375031 ], [ -83.822937, 11.178402 ], [ -83.809204, 11.105642 ], [ -83.680115, 10.962764 ], [ -84.328308, 10.962764 ], [ -84.358521, 11.000512 ], [ -84.674377, 11.084080 ], [ -84.885864, 10.962764 ], [ -84.929810, 10.962764 ], [ -85.468140, 11.178402 ], [ -85.564270, 11.218816 ], [ -85.608215, 11.178402 ], [ -85.712585, 11.089471 ], [ -85.811462, 11.178402 ], [ -86.058655, 11.404649 ], [ -86.528320, 11.808211 ], [ -86.748047, 12.144061 ], [ -87.168274, 12.460715 ], [ -87.670898, 12.910875 ], [ -87.558289, 13.066101 ], [ -87.393494, 12.916230 ], [ -87.319336, 12.985824 ], [ -87.006226, 13.025966 ], [ -86.882629, 13.255986 ], [ -86.734314, 13.264006 ], [ -86.756287, 13.755392 ], [ -86.522827, 13.779402 ], [ -86.314087, 13.771399 ], [ -86.097107, 14.040673 ], [ -85.803223, 13.838080 ], [ -85.698853, 13.960723 ], [ -85.514832, 14.080637 ], [ -85.166016, 14.354870 ], [ -85.149536, 14.562318 ], [ -85.053406, 14.551684 ], [ -84.927063, 14.790817 ], [ -84.822693, 14.820026 ], [ -84.649658, 14.668626 ], [ -84.451904, 14.623451 ], [ -84.229431, 14.750979 ], [ -83.976746, 14.750979 ], [ -83.630676, 14.881087 ], [ -83.490601, 15.016422 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cuba", "sov_a3": "CUB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cuba", "adm0_a3": "CUB", "geou_dif": 0, "geounit": "Cuba", "gu_a3": "CUB", "su_dif": 0, "subunit": "Cuba", "su_a3": "CUB", "brk_diff": 0, "name": "Cuba", "name_long": "Cuba", "brk_a3": "CUB", "brk_name": "Cuba", "abbrev": "Cuba", "postal": "CU", "formal_en": "Republic of Cuba", "name_sort": "Cuba", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 11451652, "gdp_md_est": 108200, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CU", "iso_a3": "CUB", "iso_n3": "192", "un_a3": "192", "wb_a2": "CU", "wb_a3": "CUB", "woe_id": -99, "adm0_a3_is": "CUB", "adm0_a3_us": "CUB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.530273, 22.146708 ], [ -78.530273, 21.143431 ], [ -78.722534, 21.598704 ], [ -78.750000, 21.596151 ], [ -79.285583, 21.560393 ], [ -80.219421, 21.828357 ], [ -80.384216, 21.943046 ], [ -80.518799, 22.037276 ], [ -81.441650, 22.146708 ], [ -78.530273, 22.146708 ] ] ], [ [ [ -83.913574, 22.146708 ], [ -84.034424, 21.943046 ], [ -84.053650, 21.912471 ], [ -84.548035, 21.802858 ], [ -84.976501, 21.897181 ], [ -84.896851, 21.943046 ], [ -84.548035, 22.146708 ], [ -83.913574, 22.146708 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Costa Rica", "sov_a3": "CRI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Costa Rica", "adm0_a3": "CRI", "geou_dif": 0, "geounit": "Costa Rica", "gu_a3": "CRI", "su_dif": 0, "subunit": "Costa Rica", "su_a3": "CRI", "brk_diff": 0, "name": "Costa Rica", "name_long": "Costa Rica", "brk_a3": "CRI", "brk_name": "Costa Rica", "abbrev": "C.R.", "postal": "CR", "formal_en": "Republic of Costa Rica", "name_sort": "Costa Rica", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 4253877, "gdp_md_est": 48320, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CR", "iso_a3": "CRI", "iso_n3": "188", "un_a3": "188", "wb_a2": "CR", "wb_a3": "CRI", "woe_id": -99, "adm0_a3_is": "CRI", "adm0_a3_us": "CRI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.564270, 11.218816 ], [ -85.468140, 11.178402 ], [ -84.929810, 10.962764 ], [ -85.863647, 10.962764 ], [ -85.608215, 11.178402 ], [ -85.564270, 11.218816 ] ] ], [ [ [ -84.358521, 11.000512 ], [ -84.328308, 10.962764 ], [ -84.885864, 10.962764 ], [ -84.674377, 11.084080 ], [ -84.358521, 11.000512 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.741272, 32.138409 ], [ -80.867615, 32.033692 ], [ -80.930786, 31.952162 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.730032 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.538025, 28.473520 ], [ -80.532532, 28.040471 ], [ -80.057373, 26.880431 ], [ -80.090332, 26.207199 ], [ -80.134277, 25.817200 ], [ -80.381470, 25.207426 ], [ -80.680847, 25.080624 ], [ -81.172485, 25.202456 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.871581 ], [ -82.240906, 26.730893 ], [ -82.707825, 27.496090 ], [ -82.856140, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.101777 ], [ -83.710327, 29.938275 ], [ -84.100342, 30.090484 ], [ -85.111084, 29.637933 ], [ -85.289612, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.530823, 30.275672 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.596252, 30.161752 ], [ -89.414978, 29.895425 ], [ -89.431458, 29.489816 ], [ -89.219971, 29.291190 ], [ -89.409485, 29.161756 ], [ -89.780273, 29.307956 ], [ -90.000000, 29.197726 ], [ -90.156555, 29.118574 ], [ -90.219727, 29.120974 ], [ -90.219727, 32.138409 ], [ -80.741272, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "The Bahamas", "sov_a3": "BHS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "The Bahamas", "adm0_a3": "BHS", "geou_dif": 0, "geounit": "The Bahamas", "gu_a3": "BHS", "su_dif": 0, "subunit": "The Bahamas", "su_a3": "BHS", "brk_diff": 0, "name": "Bahamas", "name_long": "Bahamas", "brk_a3": "BHS", "brk_name": "Bahamas", "abbrev": "Bhs.", "postal": "BS", "formal_en": "Commonwealth of the Bahamas", "name_sort": "Bahamas, The", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 309156, "gdp_md_est": 9093, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BS", "iso_a3": "BHS", "iso_n3": "044", "un_a3": "044", "wb_a2": "BS", "wb_a3": "BHS", "woe_id": -99, "adm0_a3_is": "BHS", "adm0_a3_us": "BHS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.530273, 26.868181 ], [ -78.530273, 26.477949 ], [ -78.750000, 26.443525 ], [ -78.912048, 26.421390 ], [ -78.980713, 26.792203 ], [ -78.750000, 26.831424 ], [ -78.530273, 26.868181 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cuba", "sov_a3": "CUB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cuba", "adm0_a3": "CUB", "geou_dif": 0, "geounit": "Cuba", "gu_a3": "CUB", "su_dif": 0, "subunit": "Cuba", "su_a3": "CUB", "brk_diff": 0, "name": "Cuba", "name_long": "Cuba", "brk_a3": "CUB", "brk_name": "Cuba", "abbrev": "Cuba", "postal": "CU", "formal_en": "Republic of Cuba", "name_sort": "Cuba", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 11451652, "gdp_md_est": 108200, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CU", "iso_a3": "CUB", "iso_n3": "192", "un_a3": "192", "wb_a2": "CU", "wb_a3": "CUB", "woe_id": -99, "adm0_a3_is": "CUB", "adm0_a3_us": "CUB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.268372, 23.190863 ], [ -81.405945, 23.117628 ], [ -80.620422, 23.107523 ], [ -79.681091, 22.766051 ], [ -79.282837, 22.400872 ], [ -78.750000, 22.464340 ], [ -78.530273, 22.492257 ], [ -78.530273, 21.739091 ], [ -79.911804, 21.739091 ], [ -80.219421, 21.828357 ], [ -80.384216, 21.943046 ], [ -80.518799, 22.037276 ], [ -81.823425, 22.192491 ], [ -82.172241, 22.388174 ], [ -81.795959, 22.639363 ], [ -82.776489, 22.690052 ], [ -83.496094, 22.169601 ], [ -83.910828, 22.156883 ], [ -84.034424, 21.943046 ], [ -84.053650, 21.912471 ], [ -84.548035, 21.802858 ], [ -84.976501, 21.897181 ], [ -84.896851, 21.943046 ], [ -84.449158, 22.205206 ], [ -84.232178, 22.565830 ], [ -83.778992, 22.788843 ], [ -83.268127, 22.983681 ], [ -82.512817, 23.079732 ], [ -82.268372, 23.190863 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.530273, 41.145570 ], [ -78.530273, 33.865854 ], [ -78.554993, 33.863574 ], [ -78.750000, 33.719771 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.301819, 32.509762 ], [ -80.867615, 32.033692 ], [ -80.930786, 31.952162 ], [ -81.079102, 31.765537 ], [ -90.219727, 31.765537 ], [ -90.219727, 41.145570 ], [ -78.530273, 41.145570 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -78.530273, 49.066668 ], [ -78.530273, 43.626135 ], [ -78.722534, 43.626135 ], [ -78.750000, 43.616194 ], [ -79.172974, 43.466874 ], [ -79.010925, 43.271206 ], [ -78.920288, 42.966472 ], [ -78.939514, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.279602, 42.210211 ], [ -82.441406, 41.677015 ], [ -82.691345, 41.677015 ], [ -83.031921, 41.834781 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.900085, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.471375, 45.995054 ], [ -83.616943, 46.117038 ], [ -83.891602, 46.117038 ], [ -84.092102, 46.276733 ], [ -84.144287, 46.513516 ], [ -84.339294, 46.409458 ], [ -84.605713, 46.439750 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.877625, 46.901492 ], [ -86.462402, 47.554287 ], [ -87.440186, 47.940267 ], [ -88.379517, 48.303294 ], [ -89.274902, 48.021161 ], [ -89.601746, 48.010138 ], [ -90.000000, 48.096426 ], [ -90.219727, 48.142265 ], [ -90.219727, 49.066668 ], [ -78.530273, 49.066668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.379517, 48.303294 ], [ -87.440186, 47.940267 ], [ -86.462402, 47.554287 ], [ -84.877625, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.439750 ], [ -84.339294, 46.409458 ], [ -84.144287, 46.513516 ], [ -84.092102, 46.276733 ], [ -83.891602, 46.117038 ], [ -83.616943, 46.117038 ], [ -83.471375, 45.995054 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.900085, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.031921, 41.834781 ], [ -82.691345, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.279602, 42.210211 ], [ -80.249634, 42.366662 ], [ -78.939514, 42.863886 ], [ -78.920288, 42.966472 ], [ -79.010925, 43.271206 ], [ -79.172974, 43.466874 ], [ -78.750000, 43.616194 ], [ -78.722534, 43.626135 ], [ -78.530273, 43.626135 ], [ -78.530273, 40.813809 ], [ -90.219727, 40.813809 ], [ -90.219727, 48.142265 ], [ -90.000000, 48.096426 ], [ -89.601746, 48.010138 ], [ -89.274902, 48.021161 ], [ -88.379517, 48.303294 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -86.874390, 55.899956 ], [ -86.311340, 55.776573 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.361511, 55.246249 ], [ -82.273865, 55.149058 ], [ -82.438660, 54.282865 ], [ -82.125549, 53.278353 ], [ -81.403198, 52.158770 ], [ -79.914551, 51.208604 ], [ -79.145508, 51.534377 ], [ -78.750000, 52.283282 ], [ -78.604431, 52.562995 ], [ -78.750000, 53.016436 ], [ -79.126282, 54.141523 ], [ -79.832153, 54.669066 ], [ -78.750000, 54.985494 ], [ -78.530273, 55.050056 ], [ -78.530273, 48.777913 ], [ -90.219727, 48.777913 ], [ -90.219727, 55.899956 ], [ -86.874390, 55.899956 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -90.219727, 57.128786 ], [ -90.000000, 57.076575 ], [ -89.041443, 56.851976 ], [ -88.041687, 56.473111 ], [ -87.324829, 55.999917 ], [ -86.311340, 55.776573 ], [ -86.072388, 55.724017 ], [ -85.893860, 55.652798 ], [ -90.219727, 55.652798 ], [ -90.219727, 57.128786 ] ] ], [ [ [ -79.601440, 61.710706 ], [ -79.659119, 61.633812 ], [ -80.062866, 61.710706 ], [ -79.601440, 61.710706 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -79.931030, 62.386551 ], [ -79.521790, 62.364901 ], [ -79.266357, 62.159089 ], [ -79.659119, 61.633812 ], [ -80.101318, 61.718515 ], [ -80.362244, 62.017662 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.386551 ] ] ], [ [ [ -83.251648, 62.915233 ], [ -81.878357, 62.905227 ], [ -81.900330, 62.711944 ], [ -83.070374, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.251648, 62.915233 ] ] ], [ [ [ -85.885620, 65.739656 ], [ -85.163269, 65.658275 ], [ -84.976501, 65.217591 ], [ -84.465637, 65.372560 ], [ -83.883362, 65.110304 ], [ -82.790222, 64.767101 ], [ -81.642151, 64.456218 ], [ -81.554260, 63.980781 ], [ -80.818176, 64.057785 ], [ -80.104065, 63.726615 ], [ -80.991211, 63.412427 ], [ -82.548523, 63.652355 ], [ -83.108826, 64.102206 ], [ -84.103088, 63.570566 ], [ -85.525818, 63.052470 ], [ -85.869141, 63.637723 ], [ -87.223206, 63.542434 ], [ -86.355286, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ] ] ], [ [ [ -82.820435, 66.600676 ], [ -83.064880, 66.513260 ], [ -83.345032, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.559192 ], [ -85.797729, 66.513260 ], [ -86.069641, 66.057060 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.099807 ], [ -89.914856, 64.033744 ], [ -90.000000, 63.988009 ], [ -90.219727, 63.870924 ], [ -90.219727, 66.600676 ], [ -82.820435, 66.600676 ] ] ], [ [ [ -78.530273, 64.602682 ], [ -78.530273, 64.562601 ], [ -78.557739, 64.573216 ], [ -78.530273, 64.602682 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -85.523071, 69.882176 ], [ -84.103088, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.966248, 68.132715 ], [ -81.260376, 67.597709 ], [ -81.386719, 67.111272 ], [ -83.064880, 66.513260 ], [ -83.306580, 66.425537 ], [ -85.314331, 66.425537 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.559192 ], [ -85.797729, 66.513260 ], [ -85.849915, 66.425537 ], [ -90.219727, 66.425537 ], [ -90.219727, 68.672544 ], [ -90.000000, 68.802028 ], [ -89.217224, 69.259067 ], [ -88.019714, 68.615532 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.922044 ], [ -85.578003, 68.785138 ], [ -85.523071, 69.882176 ] ] ], [ [ [ -78.530273, 70.685421 ], [ -78.530273, 69.983955 ], [ -78.750000, 70.078691 ], [ -78.958740, 70.167405 ], [ -79.494324, 69.872727 ], [ -81.307068, 69.743797 ], [ -84.946289, 69.967026 ], [ -87.061157, 70.260380 ], [ -88.684387, 70.411031 ], [ -89.159546, 70.612614 ], [ -89.332581, 70.685421 ], [ -78.530273, 70.685421 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -85.827942, 73.804149 ], [ -86.564026, 73.157604 ], [ -85.775757, 72.534726 ], [ -84.850159, 73.340461 ], [ -82.317810, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -78.750000, 72.361616 ], [ -78.530273, 72.454588 ], [ -78.530273, 70.539543 ], [ -88.986511, 70.539543 ], [ -89.159546, 70.612614 ], [ -89.513855, 70.762491 ], [ -88.470154, 71.218728 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.586606 ], [ -90.205994, 72.235514 ], [ -90.000000, 72.478584 ], [ -89.436951, 73.129728 ], [ -88.409729, 73.538520 ], [ -85.827942, 73.804149 ] ] ], [ [ [ -80.354004, 73.760425 ], [ -78.750000, 73.684982 ], [ -78.530273, 73.674177 ], [ -78.530273, 72.859838 ], [ -78.750000, 72.833106 ], [ -79.488831, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.878601, 73.333373 ], [ -80.834656, 73.693467 ], [ -80.354004, 73.760425 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -90.219727, 75.926879 ], [ -90.000000, 75.883402 ], [ -89.824219, 75.847855 ], [ -89.189758, 75.610214 ], [ -87.838440, 75.566465 ], [ -86.380005, 75.482706 ], [ -84.789734, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.060120, 75.337416 ], [ -79.834900, 74.923713 ], [ -80.458374, 74.657836 ], [ -81.949768, 74.442729 ], [ -83.229675, 74.564543 ], [ -86.099854, 74.410284 ], [ -88.151550, 74.392559 ], [ -89.766541, 74.516223 ], [ -90.000000, 74.544794 ], [ -90.219727, 74.571852 ], [ -90.219727, 75.926879 ] ] ], [ [ [ -78.530273, 76.890745 ], [ -78.530273, 76.636687 ], [ -78.750000, 76.587719 ], [ -80.562744, 76.178435 ], [ -83.174744, 76.454560 ], [ -86.113586, 76.299303 ], [ -87.602234, 76.420423 ], [ -89.491882, 76.472561 ], [ -89.588013, 76.840816 ], [ -89.601746, 76.890745 ], [ -78.530273, 76.890745 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -78.530273, 79.212538 ], [ -78.530273, 77.473179 ], [ -78.750000, 77.426628 ], [ -79.760742, 77.210168 ], [ -79.620667, 76.983861 ], [ -78.750000, 77.003642 ], [ -78.530273, 77.008582 ], [ -78.530273, 76.790701 ], [ -89.574280, 76.790701 ], [ -89.588013, 76.840816 ], [ -89.618225, 76.952275 ], [ -87.769775, 77.178513 ], [ -88.261414, 77.900134 ], [ -87.651672, 77.970745 ], [ -84.976501, 77.539133 ], [ -86.341553, 78.180150 ], [ -87.962036, 78.372130 ], [ -87.154541, 78.758693 ], [ -85.380249, 78.997102 ], [ -85.240173, 79.171335 ], [ -85.204468, 79.212538 ], [ -78.530273, 79.212538 ] ] ], [ [ [ -86.393738, 79.212538 ], [ -86.583252, 79.171335 ], [ -87.190247, 79.039482 ], [ -89.035950, 78.287684 ], [ -90.000000, 78.248591 ], [ -90.219727, 78.239637 ], [ -90.219727, 79.212538 ], [ -86.393738, 79.212538 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -90.219727, 80.608121 ], [ -90.000000, 80.579842 ], [ -89.450684, 80.509454 ], [ -87.810974, 80.320120 ], [ -87.022705, 79.660106 ], [ -85.816956, 79.337252 ], [ -86.583252, 79.171335 ], [ -86.775513, 79.129976 ], [ -90.219727, 79.129976 ], [ -90.219727, 80.608121 ] ] ], [ [ [ -78.530273, 81.127169 ], [ -78.530273, 79.129976 ], [ -85.273132, 79.129976 ], [ -85.240173, 79.171335 ], [ -85.097351, 79.345888 ], [ -86.509094, 79.736728 ], [ -86.932068, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.410950, 80.100165 ], [ -81.850891, 80.464515 ], [ -84.100342, 80.580292 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.855820 ], [ -89.851685, 81.093214 ], [ -89.923096, 81.127169 ], [ -78.530273, 81.127169 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -78.530273, 82.704241 ], [ -78.530273, 81.059130 ], [ -89.783020, 81.059130 ], [ -89.851685, 81.093214 ], [ -90.000000, 81.164794 ], [ -90.200500, 81.260042 ], [ -90.219727, 81.265049 ], [ -90.219727, 82.070028 ], [ -90.101624, 82.085171 ], [ -90.000000, 82.087818 ], [ -88.934326, 82.117630 ], [ -86.970520, 82.279799 ], [ -85.501099, 82.652438 ], [ -84.262390, 82.600269 ], [ -83.180237, 82.320279 ], [ -82.685852, 82.676285 ], [ -82.647400, 82.704241 ], [ -78.530273, 82.704241 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -85.501099, 82.652438 ], [ -85.404968, 82.648222 ], [ -85.517578, 82.648222 ], [ -85.501099, 82.652438 ] ] ], [ [ [ -78.530273, 82.648222 ], [ -82.727051, 82.648222 ], [ -82.685852, 82.676285 ], [ -82.422180, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.307556, 83.130809 ], [ -78.750000, 83.138360 ], [ -78.530273, 83.141313 ], [ -78.530273, 82.648222 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 21 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.517892 ], [ -68.634338, -52.634730 ], [ -68.634338, -54.868705 ], [ -67.563171, -54.868705 ], [ -67.500000, -54.871866 ], [ -67.280273, -54.881347 ], [ -67.280273, -55.286937 ], [ -67.291260, -55.301011 ], [ -67.500000, -55.375989 ], [ -68.150940, -55.610935 ], [ -68.642578, -55.579897 ], [ -69.233093, -55.497527 ], [ -69.958191, -55.197683 ], [ -71.007385, -55.053203 ], [ -72.265320, -54.493972 ], [ -73.287048, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.046167 ], [ -72.435608, -53.714590 ], [ -71.109009, -54.073894 ], [ -70.592651, -53.615321 ], [ -70.268555, -52.930430 ], [ -69.345703, -52.517892 ] ] ], [ [ [ -72.597656, -48.777913 ], [ -72.649841, -48.877361 ], [ -72.726746, -48.922499 ], [ -73.416138, -49.317961 ], [ -73.328247, -50.378751 ], [ -72.976685, -50.739932 ], [ -72.312012, -50.675576 ], [ -72.331238, -51.424902 ], [ -71.916504, -52.008555 ], [ -69.499512, -52.141917 ], [ -68.573914, -52.298402 ], [ -69.463806, -52.291683 ], [ -69.944458, -52.536273 ], [ -70.845337, -52.898962 ], [ -71.007385, -53.833081 ], [ -71.430359, -53.855767 ], [ -72.559204, -53.530513 ], [ -73.704529, -52.834299 ], [ -74.948730, -52.261434 ], [ -75.261841, -51.628248 ], [ -74.978943, -51.043121 ], [ -75.481567, -50.376999 ], [ -75.591431, -48.922499 ], [ -75.602417, -48.777913 ], [ -72.597656, -48.777913 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.634338, -52.634730 ], [ -68.252563, -53.098972 ], [ -67.752686, -53.849286 ], [ -67.500000, -53.965781 ], [ -67.280273, -54.067448 ], [ -67.280273, -54.881347 ], [ -67.500000, -54.871866 ], [ -67.563171, -54.868705 ], [ -68.634338, -54.868705 ], [ -68.634338, -52.634730 ] ] ], [ [ [ -67.280273, -48.777913 ], [ -67.280273, -48.904449 ], [ -67.500000, -49.301845 ], [ -67.818604, -49.868087 ], [ -68.730469, -50.263010 ], [ -69.139709, -50.731240 ], [ -68.815613, -51.769540 ], [ -68.150940, -52.348763 ], [ -68.573914, -52.298402 ], [ -69.499512, -52.141917 ], [ -71.916504, -52.008555 ], [ -72.331238, -51.424902 ], [ -72.312012, -50.675576 ], [ -72.976685, -50.739932 ], [ -73.328247, -50.378751 ], [ -73.416138, -49.317961 ], [ -72.726746, -48.922499 ], [ -72.649841, -48.877361 ], [ -72.597656, -48.777913 ], [ -67.280273, -48.777913 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 20 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.913757, -40.813809 ], [ -71.916504, -40.830437 ], [ -71.897278, -40.979898 ], [ -71.748962, -42.051332 ], [ -72.149963, -42.252918 ], [ -71.916504, -43.407043 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.331482, -44.406316 ], [ -71.224365, -44.783785 ], [ -71.661072, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.919250, -46.884600 ], [ -72.449341, -47.737476 ], [ -72.331238, -48.242967 ], [ -72.649841, -48.877361 ], [ -72.726746, -48.922499 ], [ -72.976685, -49.066668 ], [ -75.580444, -49.066668 ], [ -75.591431, -48.922499 ], [ -75.610657, -48.672826 ], [ -75.184937, -47.711610 ], [ -74.127502, -46.939012 ], [ -75.646362, -46.647551 ], [ -74.693298, -45.763691 ], [ -74.352722, -44.101393 ], [ -73.240356, -44.453389 ], [ -72.718506, -42.382894 ], [ -73.391418, -42.116561 ], [ -73.701782, -43.365126 ], [ -74.333496, -43.223191 ], [ -74.020386, -41.793840 ], [ -73.869324, -40.979898 ], [ -73.836365, -40.813809 ], [ -71.913757, -40.813809 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.280273, -40.813809 ], [ -67.280273, -45.542908 ], [ -67.294006, -45.550602 ], [ -67.500000, -46.090377 ], [ -67.582397, -46.301406 ], [ -67.500000, -46.362093 ], [ -67.280273, -46.524855 ], [ -67.280273, -48.904449 ], [ -67.370911, -49.066668 ], [ -72.976685, -49.066668 ], [ -72.726746, -48.922499 ], [ -72.649841, -48.877361 ], [ -72.331238, -48.242967 ], [ -72.449341, -47.737476 ], [ -71.919250, -46.884600 ], [ -71.553955, -45.560218 ], [ -71.661072, -44.972571 ], [ -71.224365, -44.783785 ], [ -71.331482, -44.406316 ], [ -71.795654, -44.205835 ], [ -71.466064, -43.786958 ], [ -71.916504, -43.407043 ], [ -72.149963, -42.252918 ], [ -71.748962, -42.051332 ], [ -71.897278, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.913757, -40.813809 ], [ -67.280273, -40.813809 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 19 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.430603, -31.765537 ], [ -70.381165, -31.952162 ], [ -70.076294, -33.089240 ], [ -69.815369, -33.273139 ], [ -69.818115, -34.191358 ], [ -70.389404, -35.169318 ], [ -70.367432, -36.004673 ], [ -71.122742, -36.657403 ], [ -71.119995, -37.575059 ], [ -70.815125, -38.552461 ], [ -71.413879, -38.914544 ], [ -71.683044, -39.806426 ], [ -71.916504, -40.830437 ], [ -71.897278, -40.979898 ], [ -71.875305, -41.145570 ], [ -73.899536, -41.145570 ], [ -73.869324, -40.979898 ], [ -73.679810, -39.941331 ], [ -73.218384, -39.257778 ], [ -73.506775, -38.281313 ], [ -73.589172, -37.155939 ], [ -73.168945, -37.123096 ], [ -72.553711, -35.507636 ], [ -71.864319, -33.906896 ], [ -71.438599, -32.417066 ], [ -71.512756, -31.952162 ], [ -71.540222, -31.765537 ], [ -70.430603, -31.765537 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.280273, -31.765537 ], [ -67.280273, -41.145570 ], [ -71.875305, -41.145570 ], [ -71.897278, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.683044, -39.806426 ], [ -71.413879, -38.914544 ], [ -70.815125, -38.552461 ], [ -71.119995, -37.575059 ], [ -71.122742, -36.657403 ], [ -70.367432, -36.004673 ], [ -70.389404, -35.169318 ], [ -69.818115, -34.191358 ], [ -69.815369, -33.273139 ], [ -70.076294, -33.089240 ], [ -70.381165, -31.952162 ], [ -70.430603, -31.765537 ], [ -67.280273, -31.765537 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 18 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.150940, -21.739091 ], [ -68.093262, -21.943046 ], [ -67.829590, -22.872379 ], [ -67.500000, -22.809099 ], [ -67.280273, -22.768584 ], [ -67.280273, -23.878303 ], [ -67.329712, -24.023888 ], [ -67.500000, -24.101633 ], [ -68.420105, -24.517139 ], [ -68.387146, -26.182554 ], [ -68.595886, -26.504989 ], [ -68.296509, -26.897578 ], [ -69.002380, -27.520451 ], [ -69.658813, -28.459033 ], [ -70.015869, -29.367814 ], [ -69.919739, -30.334954 ], [ -70.537720, -31.363018 ], [ -70.381165, -31.952162 ], [ -70.331726, -32.138409 ], [ -71.482544, -32.138409 ], [ -71.512756, -31.952162 ], [ -71.669312, -30.918720 ], [ -71.372681, -30.095237 ], [ -71.490784, -28.859108 ], [ -70.905762, -27.639740 ], [ -70.727234, -25.705888 ], [ -70.405884, -23.626911 ], [ -70.169678, -21.943046 ], [ -70.139465, -21.739091 ], [ -68.150940, -21.739091 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.280273, -21.739091 ], [ -67.280273, -22.768584 ], [ -67.500000, -22.809099 ], [ -67.829590, -22.872379 ], [ -68.093262, -21.943046 ], [ -68.150940, -21.739091 ], [ -67.280273, -21.739091 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.280273, -23.878303 ], [ -67.280273, -32.138409 ], [ -70.331726, -32.138409 ], [ -70.381165, -31.952162 ], [ -70.537720, -31.363018 ], [ -69.919739, -30.334954 ], [ -70.015869, -29.367814 ], [ -69.658813, -28.459033 ], [ -69.002380, -27.520451 ], [ -68.296509, -26.897578 ], [ -68.595886, -26.504989 ], [ -68.387146, -26.182554 ], [ -68.420105, -24.517139 ], [ -67.500000, -24.101633 ], [ -67.329712, -24.023888 ], [ -67.280273, -23.878303 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 17 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Peru", "sov_a3": "PER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Peru", "adm0_a3": "PER", "geou_dif": 0, "geounit": "Peru", "gu_a3": "PER", "su_dif": 0, "subunit": "Peru", "su_a3": "PER", "brk_diff": 0, "name": "Peru", "name_long": "Peru", "brk_a3": "PER", "brk_name": "Peru", "abbrev": "Peru", "postal": "PE", "formal_en": "Republic of Peru", "name_sort": "Peru", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 11, "pop_est": 29546963, "gdp_md_est": 247300, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PE", "iso_a3": "PER", "iso_n3": "604", "un_a3": "604", "wb_a2": "PE", "wb_a3": "PER", "woe_id": -99, "adm0_a3_is": "PER", "adm0_a3_us": "PER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.524231, -10.962764 ], [ -69.408875, -11.178402 ], [ -68.667297, -12.559925 ], [ -68.881531, -12.897489 ], [ -68.930969, -13.600609 ], [ -68.950195, -14.453299 ], [ -69.340210, -14.952746 ], [ -69.161682, -15.323923 ], [ -69.392395, -15.660065 ], [ -68.961182, -16.499299 ], [ -69.592896, -17.578576 ], [ -69.859314, -18.091033 ], [ -70.372925, -18.346705 ], [ -71.375427, -17.772228 ], [ -71.463318, -17.361125 ], [ -73.446350, -16.357039 ], [ -75.239868, -15.265638 ], [ -76.011658, -14.647368 ], [ -76.423645, -13.822078 ], [ -76.261597, -13.533860 ], [ -77.107544, -12.221918 ], [ -77.665100, -11.178402 ], [ -77.780457, -10.962764 ], [ -70.548706, -10.962764 ], [ -70.548706, -11.008601 ], [ -70.095520, -11.121812 ], [ -69.568176, -10.962764 ], [ -69.524231, -10.962764 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.592896, -17.578576 ], [ -69.101257, -18.258045 ], [ -68.969421, -18.981623 ], [ -68.444824, -19.404430 ], [ -68.757935, -20.370377 ], [ -68.222351, -21.493964 ], [ -68.093262, -21.943046 ], [ -68.035583, -22.146708 ], [ -70.197144, -22.146708 ], [ -70.169678, -21.943046 ], [ -70.092773, -21.391705 ], [ -70.166931, -19.756364 ], [ -70.372925, -18.346705 ], [ -69.859314, -18.091033 ], [ -69.592896, -17.578576 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.280273, -10.962764 ], [ -67.280273, -22.146708 ], [ -68.035583, -22.146708 ], [ -68.093262, -21.943046 ], [ -68.222351, -21.493964 ], [ -68.757935, -20.370377 ], [ -68.444824, -19.404430 ], [ -68.969421, -18.981623 ], [ -69.101257, -18.258045 ], [ -69.592896, -17.578576 ], [ -68.961182, -16.499299 ], [ -69.392395, -15.660065 ], [ -69.161682, -15.323923 ], [ -69.340210, -14.952746 ], [ -68.950195, -14.453299 ], [ -68.930969, -13.600609 ], [ -68.881531, -12.897489 ], [ -68.667297, -12.559925 ], [ -69.408875, -11.178402 ], [ -69.524231, -10.962764 ], [ -69.433594, -10.962764 ], [ -68.788147, -11.035560 ], [ -68.271790, -11.013993 ], [ -68.233337, -10.962764 ], [ -67.280273, -10.962764 ] ] ] } } +, +{ "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": [ [ [ [ -69.568176, -10.962764 ], [ -70.095520, -11.121812 ], [ -70.548706, -11.008601 ], [ -70.548706, -10.962764 ], [ -69.568176, -10.962764 ] ] ], [ [ [ -68.233337, -10.962764 ], [ -68.271790, -11.013993 ], [ -68.788147, -11.035560 ], [ -69.433594, -10.962764 ], [ -68.233337, -10.962764 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 16 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.018616, 0.219726 ], [ -70.021362, 0.000000 ], [ -70.021362, -0.184021 ], [ -69.579163, -0.549308 ], [ -69.422607, -1.120534 ], [ -69.444580, -1.554375 ], [ -69.895020, -4.297113 ], [ -70.394897, -3.765597 ], [ -70.694275, -3.740931 ], [ -70.048828, -2.723583 ], [ -70.815125, -2.254362 ], [ -71.413879, -2.342182 ], [ -71.776428, -2.169281 ], [ -72.328491, -2.432740 ], [ -73.072815, -2.306506 ], [ -73.660583, -1.257834 ], [ -74.124756, -1.002451 ], [ -74.443359, -0.530083 ], [ -75.108032, -0.054932 ], [ -75.374451, -0.151062 ], [ -75.649109, 0.000000 ], [ -75.802917, 0.085144 ], [ -76.003418, 0.219726 ], [ -70.018616, 0.219726 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.003418, 0.219726 ], [ -75.802917, 0.085144 ], [ -75.649109, 0.000000 ], [ -75.374451, -0.151062 ], [ -75.234375, -0.909081 ], [ -75.547485, -1.559866 ], [ -76.637878, -2.608352 ], [ -77.838135, -3.000642 ], [ -78.453369, -3.872476 ], [ -78.640137, -4.546308 ], [ -78.750000, -4.625704 ], [ -78.969727, -4.787206 ], [ -78.969727, 0.219726 ], [ -76.003418, 0.219726 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Peru", "sov_a3": "PER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Peru", "adm0_a3": "PER", "geou_dif": 0, "geounit": "Peru", "gu_a3": "PER", "su_dif": 0, "subunit": "Peru", "su_a3": "PER", "brk_diff": 0, "name": "Peru", "name_long": "Peru", "brk_a3": "PER", "brk_name": "Peru", "abbrev": "Peru", "postal": "PE", "formal_en": "Republic of Peru", "name_sort": "Peru", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 11, "pop_est": 29546963, "gdp_md_est": 247300, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PE", "iso_a3": "PER", "iso_n3": "604", "un_a3": "604", "wb_a2": "PE", "wb_a3": "PER", "woe_id": -99, "adm0_a3_is": "PER", "adm0_a3_us": "PER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.108032, -0.054932 ], [ -74.443359, -0.530083 ], [ -74.124756, -1.002451 ], [ -73.660583, -1.257834 ], [ -73.072815, -2.306506 ], [ -72.328491, -2.432740 ], [ -71.776428, -2.169281 ], [ -71.413879, -2.342182 ], [ -70.815125, -2.254362 ], [ -70.048828, -2.723583 ], [ -70.694275, -3.740931 ], [ -70.394897, -3.765597 ], [ -69.895020, -4.297113 ], [ -70.795898, -4.250551 ], [ -70.930481, -4.401183 ], [ -71.748962, -4.592852 ], [ -72.894287, -5.274213 ], [ -72.965698, -5.738976 ], [ -73.221130, -6.088667 ], [ -73.122253, -6.629142 ], [ -73.726501, -6.918247 ], [ -73.723755, -7.340675 ], [ -73.987427, -7.523150 ], [ -73.572693, -8.423470 ], [ -73.017883, -9.031578 ], [ -73.229370, -9.459899 ], [ -72.564697, -9.519497 ], [ -72.185669, -10.052698 ], [ -71.304016, -10.077037 ], [ -70.482788, -9.489699 ], [ -70.548706, -11.008601 ], [ -70.095520, -11.121812 ], [ -69.529724, -10.949282 ], [ -69.408875, -11.178402 ], [ -69.293518, -11.393879 ], [ -77.552490, -11.393879 ], [ -77.665100, -11.178402 ], [ -78.093567, -10.377064 ], [ -78.750000, -8.990888 ], [ -78.969727, -8.526701 ], [ -78.969727, -4.787206 ], [ -78.750000, -4.625704 ], [ -78.640137, -4.546308 ], [ -78.453369, -3.872476 ], [ -77.838135, -3.000642 ], [ -76.637878, -2.608352 ], [ -75.547485, -1.559866 ], [ -75.234375, -0.909081 ], [ -75.374451, -0.151062 ], [ -75.108032, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.280273, -10.355450 ], [ -67.280273, -11.393879 ], [ -69.293518, -11.393879 ], [ -69.408875, -11.178402 ], [ -69.529724, -10.949282 ], [ -68.788147, -11.035560 ], [ -68.271790, -11.013993 ], [ -68.049316, -10.711888 ], [ -67.500000, -10.455402 ], [ -67.280273, -10.355450 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ -67.280273, 0.219726 ], [ -67.280273, -10.355450 ], [ -67.500000, -10.455402 ], [ -68.049316, -10.711888 ], [ -68.271790, -11.013993 ], [ -68.788147, -11.035560 ], [ -69.529724, -10.949282 ], [ -70.095520, -11.121812 ], [ -70.548706, -11.008601 ], [ -70.482788, -9.489699 ], [ -71.304016, -10.077037 ], [ -72.185669, -10.052698 ], [ -72.564697, -9.519497 ], [ -73.229370, -9.459899 ], [ -73.017883, -9.031578 ], [ -73.572693, -8.423470 ], [ -73.987427, -7.523150 ], [ -73.723755, -7.340675 ], [ -73.726501, -6.918247 ], [ -73.122253, -6.629142 ], [ -73.221130, -6.088667 ], [ -72.965698, -5.738976 ], [ -72.894287, -5.274213 ], [ -71.748962, -4.592852 ], [ -70.930481, -4.401183 ], [ -70.795898, -4.250551 ], [ -69.895020, -4.297113 ], [ -69.444580, -1.554375 ], [ -69.422607, -1.120534 ], [ -69.579163, -0.549308 ], [ -70.021362, -0.184021 ], [ -70.021362, 0.000000 ], [ -70.018616, 0.219726 ], [ -67.280273, 0.219726 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Panama", "sov_a3": "PAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Panama", "adm0_a3": "PAN", "geou_dif": 0, "geounit": "Panama", "gu_a3": "PAN", "su_dif": 0, "subunit": "Panama", "su_a3": "PAN", "brk_diff": 0, "name": "Panama", "name_long": "Panama", "brk_a3": "PAN", "brk_name": "Panama", "abbrev": "Pan.", "postal": "PA", "formal_en": "Republic of Panama", "name_sort": "Panama", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 3360474, "gdp_md_est": 38830, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PA", "iso_a3": "PAN", "iso_n3": "591", "un_a3": "591", "wb_a2": "PA", "wb_a3": "PAN", "woe_id": -99, "adm0_a3_is": "PAN", "adm0_a3_us": "PAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.969727, 9.451771 ], [ -78.750000, 9.438224 ], [ -78.502808, 9.421968 ], [ -78.057861, 9.248514 ], [ -77.731018, 8.947480 ], [ -77.354736, 8.670633 ], [ -77.475586, 8.526701 ], [ -77.244873, 7.936836 ], [ -77.431641, 7.640220 ], [ -77.755737, 7.710992 ], [ -77.882080, 7.226249 ], [ -78.217163, 7.512258 ], [ -78.431396, 8.053791 ], [ -78.184204, 8.320212 ], [ -78.436890, 8.388148 ], [ -78.623657, 8.719503 ], [ -78.750000, 8.790083 ], [ -78.969727, 8.912207 ], [ -78.969727, 9.451771 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.084045, 11.393879 ], [ -72.193909, 11.178402 ], [ -72.229614, 11.111032 ], [ -72.616882, 10.822515 ], [ -72.908020, 10.452701 ], [ -73.028870, 9.738835 ], [ -73.306274, 9.153621 ], [ -72.789917, 9.085824 ], [ -72.660828, 8.627188 ], [ -72.441101, 8.407168 ], [ -72.361450, 8.004837 ], [ -72.482300, 7.634776 ], [ -72.446594, 7.425113 ], [ -72.199402, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.675049, 7.089990 ], [ -70.095520, 6.961870 ], [ -69.389648, 6.102322 ], [ -68.985901, 6.208821 ], [ -68.266296, 6.154209 ], [ -67.697754, 6.268888 ], [ -67.500000, 6.173324 ], [ -67.343445, 6.096860 ], [ -67.500000, 5.621453 ], [ -67.521973, 5.558582 ], [ -67.747192, 5.222247 ], [ -67.824097, 4.505238 ], [ -67.623596, 3.839591 ], [ -67.500000, 3.713523 ], [ -67.337952, 3.543576 ], [ -67.304993, 3.318760 ], [ -67.500000, 3.126804 ], [ -67.810364, 2.822344 ], [ -67.500000, 2.633045 ], [ -67.447815, 2.602864 ], [ -67.280273, 2.383346 ], [ -67.280273, 1.743810 ], [ -67.500000, 1.996361 ], [ -67.538452, 2.037534 ], [ -67.870789, 1.694394 ], [ -69.818115, 1.716357 ], [ -69.807129, 1.090327 ], [ -69.219360, 0.985974 ], [ -69.255066, 0.604237 ], [ -69.452820, 0.708600 ], [ -70.015869, 0.543815 ], [ -70.021362, 0.000000 ], [ -70.021362, -0.184021 ], [ -69.980164, -0.219726 ], [ -74.880066, -0.219726 ], [ -75.108032, -0.054932 ], [ -75.374451, -0.151062 ], [ -75.649109, 0.000000 ], [ -75.802917, 0.085144 ], [ -76.294556, 0.417477 ], [ -76.577454, 0.258178 ], [ -77.426147, 0.398251 ], [ -77.670593, 0.826693 ], [ -77.857361, 0.810215 ], [ -78.750000, 1.320989 ], [ -78.857117, 1.381397 ], [ -78.969727, 1.644977 ], [ -78.969727, 1.697139 ], [ -78.750000, 1.741065 ], [ -78.618164, 1.768518 ], [ -78.664856, 2.268084 ], [ -78.428650, 2.630301 ], [ -77.934265, 2.698892 ], [ -77.511292, 3.326986 ], [ -77.129517, 3.850553 ], [ -77.497559, 4.088932 ], [ -77.308044, 4.669505 ], [ -77.533264, 5.583184 ], [ -77.319031, 5.845545 ], [ -77.478333, 6.691887 ], [ -77.882080, 7.226249 ], [ -77.755737, 7.710992 ], [ -77.431641, 7.640220 ], [ -77.244873, 7.936836 ], [ -77.475586, 8.526701 ], [ -77.354736, 8.670633 ], [ -76.838379, 8.640765 ], [ -76.088562, 9.337962 ], [ -75.676575, 9.443643 ], [ -75.665588, 9.774025 ], [ -75.481567, 10.620118 ], [ -74.907532, 11.084080 ], [ -74.278564, 11.102947 ], [ -74.248352, 11.178402 ], [ -74.198914, 11.313094 ], [ -73.416138, 11.229592 ], [ -73.155212, 11.393879 ], [ -72.084045, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Venezuela", "sov_a3": "VEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Venezuela", "adm0_a3": "VEN", "geou_dif": 0, "geounit": "Venezuela", "gu_a3": "VEN", "su_dif": 0, "subunit": "Venezuela", "su_a3": "VEN", "brk_diff": 0, "name": "Venezuela", "name_long": "Venezuela", "brk_a3": "VEN", "brk_name": "Venezuela", "abbrev": "Ven.", "postal": "VE", "formal_en": "Bolivarian Republic of Venezuela", "formal_fr": "República Bolivariana de Venezuela", "name_sort": "Venezuela, RB", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 26814843, "gdp_md_est": 357400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "VE", "iso_a3": "VEN", "iso_n3": "862", "un_a3": "862", "wb_a2": "VE", "wb_a3": "VEN", "woe_id": -99, "adm0_a3_is": "VEN", "adm0_a3_us": "VEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.826599, 11.393879 ], [ -68.576660, 11.178402 ], [ -68.233337, 10.887254 ], [ -68.194885, 10.555322 ], [ -67.500000, 10.549922 ], [ -67.280273, 10.549922 ], [ -67.280273, 2.383346 ], [ -67.447815, 2.602864 ], [ -67.500000, 2.633045 ], [ -67.810364, 2.822344 ], [ -67.500000, 3.126804 ], [ -67.304993, 3.318760 ], [ -67.337952, 3.543576 ], [ -67.500000, 3.713523 ], [ -67.623596, 3.839591 ], [ -67.824097, 4.505238 ], [ -67.747192, 5.222247 ], [ -67.521973, 5.558582 ], [ -67.500000, 5.621453 ], [ -67.343445, 6.096860 ], [ -67.500000, 6.173324 ], [ -67.697754, 6.268888 ], [ -68.266296, 6.154209 ], [ -68.985901, 6.208821 ], [ -69.389648, 6.102322 ], [ -70.095520, 6.961870 ], [ -70.675049, 7.089990 ], [ -71.960449, 6.991859 ], [ -72.199402, 7.340675 ], [ -72.446594, 7.425113 ], [ -72.482300, 7.634776 ], [ -72.361450, 8.004837 ], [ -72.441101, 8.407168 ], [ -72.660828, 8.627188 ], [ -72.789917, 9.085824 ], [ -73.306274, 9.153621 ], [ -73.028870, 9.738835 ], [ -72.908020, 10.452701 ], [ -72.616882, 10.822515 ], [ -72.229614, 11.111032 ], [ -72.193909, 11.178402 ], [ -72.084045, 11.393879 ], [ -71.927490, 11.393879 ], [ -71.773682, 11.178402 ], [ -71.622620, 10.970854 ], [ -71.633606, 10.447299 ], [ -72.075806, 9.866040 ], [ -71.696777, 9.072264 ], [ -71.265564, 9.137351 ], [ -71.040344, 9.860628 ], [ -71.350708, 10.212219 ], [ -71.402893, 10.970854 ], [ -70.760193, 11.178402 ], [ -70.155945, 11.377724 ], [ -70.161438, 11.393879 ], [ -68.826599, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.857117, 1.381397 ], [ -78.750000, 1.320989 ], [ -77.857361, 0.810215 ], [ -77.670593, 0.826693 ], [ -77.426147, 0.398251 ], [ -76.577454, 0.258178 ], [ -76.294556, 0.417477 ], [ -75.802917, 0.085144 ], [ -75.649109, 0.000000 ], [ -75.374451, -0.151062 ], [ -75.363464, -0.219726 ], [ -78.969727, -0.219726 ], [ -78.969727, 1.315497 ], [ -78.857117, 1.381397 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Peru", "sov_a3": "PER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Peru", "adm0_a3": "PER", "geou_dif": 0, "geounit": "Peru", "gu_a3": "PER", "su_dif": 0, "subunit": "Peru", "su_a3": "PER", "brk_diff": 0, "name": "Peru", "name_long": "Peru", "brk_a3": "PER", "brk_name": "Peru", "abbrev": "Peru", "postal": "PE", "formal_en": "Republic of Peru", "name_sort": "Peru", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 11, "pop_est": 29546963, "gdp_md_est": 247300, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PE", "iso_a3": "PER", "iso_n3": "604", "un_a3": "604", "wb_a2": "PE", "wb_a3": "PER", "woe_id": -99, "adm0_a3_is": "PER", "adm0_a3_us": "PER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.108032, -0.054932 ], [ -74.880066, -0.219726 ], [ -75.363464, -0.219726 ], [ -75.374451, -0.151062 ], [ -75.108032, -0.054932 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ -67.538452, 2.037534 ], [ -67.500000, 1.996361 ], [ -67.280273, 1.743810 ], [ -67.280273, -0.219726 ], [ -69.980164, -0.219726 ], [ -70.021362, -0.184021 ], [ -70.021362, 0.000000 ], [ -70.015869, 0.543815 ], [ -69.452820, 0.708600 ], [ -69.255066, 0.604237 ], [ -69.219360, 0.985974 ], [ -69.807129, 1.090327 ], [ -69.818115, 1.716357 ], [ -67.870789, 1.694394 ], [ -67.538452, 2.037534 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cuba", "sov_a3": "CUB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cuba", "adm0_a3": "CUB", "geou_dif": 0, "geounit": "Cuba", "gu_a3": "CUB", "su_dif": 0, "subunit": "Cuba", "su_a3": "CUB", "brk_diff": 0, "name": "Cuba", "name_long": "Cuba", "brk_a3": "CUB", "brk_name": "Cuba", "abbrev": "Cuba", "postal": "CU", "formal_en": "Republic of Cuba", "name_sort": "Cuba", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 11451652, "gdp_md_est": 108200, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CU", "iso_a3": "CUB", "iso_n3": "192", "un_a3": "192", "wb_a2": "CU", "wb_a3": "CUB", "woe_id": -99, "adm0_a3_is": "CUB", "adm0_a3_us": "CUB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.816162, 22.146708 ], [ -77.536011, 21.943046 ], [ -76.525269, 21.207459 ], [ -76.195679, 21.222821 ], [ -75.599670, 21.017855 ], [ -75.671082, 20.735566 ], [ -74.934998, 20.694462 ], [ -74.179688, 20.285385 ], [ -74.297791, 20.050771 ], [ -74.962463, 19.924295 ], [ -75.635376, 19.875226 ], [ -76.324768, 19.955278 ], [ -77.755737, 19.857144 ], [ -77.085571, 20.414143 ], [ -77.494812, 20.673905 ], [ -78.137512, 20.740703 ], [ -78.483582, 21.030674 ], [ -78.722534, 21.598704 ], [ -78.750000, 21.596151 ], [ -78.969727, 21.583381 ], [ -78.969727, 22.146708 ], [ -77.816162, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Jamaica", "sov_a3": "JAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Jamaica", "adm0_a3": "JAM", "geou_dif": 0, "geounit": "Jamaica", "gu_a3": "JAM", "su_dif": 0, "subunit": "Jamaica", "su_a3": "JAM", "brk_diff": 0, "name": "Jamaica", "name_long": "Jamaica", "brk_a3": "JAM", "brk_name": "Jamaica", "abbrev": "Jam.", "postal": "J", "formal_en": "Jamaica", "name_sort": "Jamaica", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 10, "pop_est": 2825928, "gdp_md_est": 20910, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "JM", "iso_a3": "JAM", "iso_n3": "388", "un_a3": "388", "wb_a2": "JM", "wb_a3": "JAM", "woe_id": -99, "adm0_a3_is": "JAM", "adm0_a3_us": "JAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.799683, 18.526492 ], [ -77.571716, 18.492633 ], [ -76.898804, 18.401443 ], [ -76.365967, 18.161511 ], [ -76.201172, 17.887273 ], [ -76.904297, 17.868975 ], [ -77.206421, 17.701595 ], [ -77.766724, 17.863747 ], [ -78.338013, 18.226743 ], [ -78.219910, 18.456163 ], [ -77.799683, 18.526492 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Haiti", "sov_a3": "HTI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Haiti", "adm0_a3": "HTI", "geou_dif": 0, "geounit": "Haiti", "gu_a3": "HTI", "su_dif": 0, "subunit": "Haiti", "su_a3": "HTI", "brk_diff": 0, "name": "Haiti", "name_long": "Haiti", "brk_a3": "HTI", "brk_name": "Haiti", "abbrev": "Haiti", "postal": "HT", "formal_en": "Republic of Haiti", "name_sort": "Haiti", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 9035536, "gdp_md_est": 11500, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "HT", "iso_a3": "HTI", "iso_n3": "332", "un_a3": "332", "wb_a2": "HT", "wb_a3": "HTI", "woe_id": -99, "adm0_a3_is": "HTI", "adm0_a3_us": "HTI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.190918, 19.916548 ], [ -72.581177, 19.872643 ], [ -71.713257, 19.715000 ], [ -71.625366, 19.171113 ], [ -71.702271, 18.786717 ], [ -71.946716, 18.617616 ], [ -71.688538, 18.318026 ], [ -71.710510, 18.046644 ], [ -72.375183, 18.216307 ], [ -72.844849, 18.145852 ], [ -73.454590, 18.218916 ], [ -73.924255, 18.033586 ], [ -74.459839, 18.344098 ], [ -74.371948, 18.667063 ], [ -73.451843, 18.526492 ], [ -72.696533, 18.448347 ], [ -72.336731, 18.669665 ], [ -72.792664, 19.103648 ], [ -72.784424, 19.484718 ], [ -73.416138, 19.640001 ], [ -73.190918, 19.916548 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Dominican Republic", "sov_a3": "DOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Dominican Republic", "adm0_a3": "DOM", "geou_dif": 0, "geounit": "Dominican Republic", "gu_a3": "DOM", "su_dif": 0, "subunit": "Dominican Republic", "su_a3": "DOM", "brk_diff": 0, "name": "Dominican Rep.", "name_long": "Dominican Republic", "brk_a3": "DOM", "brk_name": "Dominican Rep.", "abbrev": "Dom. Rep.", "postal": "DO", "formal_en": "Dominican Republic", "name_sort": "Dominican Republic", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 9650054, "gdp_md_est": 78000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DO", "iso_a3": "DOM", "iso_n3": "214", "un_a3": "214", "wb_a2": "DO", "wb_a3": "DOM", "woe_id": -99, "adm0_a3_is": "DOM", "adm0_a3_us": "DOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 14, "long_len": 18, "abbrev_len": 9, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.589661, 19.885557 ], [ -70.806885, 19.880392 ], [ -70.216370, 19.624479 ], [ -69.952698, 19.650348 ], [ -69.771423, 19.295590 ], [ -69.224854, 19.313735 ], [ -69.255066, 19.015384 ], [ -68.810120, 18.981623 ], [ -68.318481, 18.612410 ], [ -68.692017, 18.205871 ], [ -69.167175, 18.424896 ], [ -69.625854, 18.383199 ], [ -69.955444, 18.430108 ], [ -70.133972, 18.247612 ], [ -70.518494, 18.184997 ], [ -70.669556, 18.427502 ], [ -71.001892, 18.284126 ], [ -71.402893, 17.599521 ], [ -71.658325, 17.759150 ], [ -71.710510, 18.046644 ], [ -71.688538, 18.318026 ], [ -71.946716, 18.617616 ], [ -71.702271, 18.786717 ], [ -71.625366, 19.171113 ], [ -71.713257, 19.715000 ], [ -71.589661, 19.885557 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.754456, 12.439259 ], [ -71.400146, 12.377563 ], [ -71.139221, 12.114523 ], [ -71.334229, 11.778637 ], [ -71.974182, 11.609193 ], [ -72.193909, 11.178402 ], [ -72.229614, 11.111032 ], [ -72.427368, 10.962764 ], [ -75.055847, 10.962764 ], [ -74.907532, 11.084080 ], [ -74.278564, 11.102947 ], [ -74.248352, 11.178402 ], [ -74.198914, 11.313094 ], [ -73.416138, 11.229592 ], [ -72.627869, 11.732924 ], [ -72.240601, 11.956036 ], [ -71.754456, 12.439259 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Venezuela", "sov_a3": "VEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Venezuela", "adm0_a3": "VEN", "geou_dif": 0, "geounit": "Venezuela", "gu_a3": "VEN", "su_dif": 0, "subunit": "Venezuela", "su_a3": "VEN", "brk_diff": 0, "name": "Venezuela", "name_long": "Venezuela", "brk_a3": "VEN", "brk_name": "Venezuela", "abbrev": "Ven.", "postal": "VE", "formal_en": "Bolivarian Republic of Venezuela", "formal_fr": "República Bolivariana de Venezuela", "name_sort": "Venezuela, RB", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 26814843, "gdp_md_est": 357400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "VE", "iso_a3": "VEN", "iso_n3": "862", "un_a3": "862", "wb_a2": "VE", "wb_a3": "VEN", "woe_id": -99, "adm0_a3_is": "VEN", "adm0_a3_us": "VEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -71.334229, 11.778637 ], [ -71.361694, 11.541925 ], [ -71.949463, 11.423495 ], [ -71.773682, 11.178402 ], [ -71.622620, 10.970854 ], [ -71.622620, 10.962764 ], [ -72.427368, 10.962764 ], [ -72.229614, 11.111032 ], [ -72.193909, 11.178402 ], [ -71.974182, 11.609193 ], [ -71.334229, 11.778637 ] ] ], [ [ [ -69.584656, 11.461183 ], [ -68.884277, 11.445031 ], [ -68.576660, 11.178402 ], [ -68.323975, 10.962764 ], [ -71.402893, 10.962764 ], [ -71.402893, 10.970854 ], [ -70.760193, 11.178402 ], [ -70.155945, 11.377724 ], [ -70.296021, 11.848535 ], [ -69.944458, 12.162856 ], [ -69.584656, 11.461183 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "The Bahamas", "sov_a3": "BHS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "The Bahamas", "adm0_a3": "BHS", "geou_dif": 0, "geounit": "The Bahamas", "gu_a3": "BHS", "su_dif": 0, "subunit": "The Bahamas", "su_a3": "BHS", "brk_diff": 0, "name": "Bahamas", "name_long": "Bahamas", "brk_a3": "BHS", "brk_name": "Bahamas", "abbrev": "Bhs.", "postal": "BS", "formal_en": "Commonwealth of the Bahamas", "name_sort": "Bahamas, The", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 309156, "gdp_md_est": 9093, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BS", "iso_a3": "BHS", "iso_n3": "044", "un_a3": "044", "wb_a2": "BS", "wb_a3": "BHS", "woe_id": -99, "adm0_a3_is": "BHS", "adm0_a3_us": "BHS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.192444, 25.212396 ], [ -77.890320, 25.170145 ], [ -77.541504, 24.342092 ], [ -77.536011, 23.760209 ], [ -77.780457, 23.712439 ], [ -78.035889, 24.287027 ], [ -78.409424, 24.577100 ], [ -78.192444, 25.212396 ] ] ], [ [ [ -77.791443, 27.042003 ], [ -77.000427, 26.590983 ], [ -77.173462, 25.881466 ], [ -77.357483, 26.007424 ], [ -77.341003, 26.532023 ], [ -77.788696, 26.926968 ], [ -77.791443, 27.042003 ] ] ], [ [ [ -78.511047, 26.870631 ], [ -77.851868, 26.841227 ], [ -77.821655, 26.581159 ], [ -78.750000, 26.443525 ], [ -78.912048, 26.421390 ], [ -78.969727, 26.735799 ], [ -78.969727, 26.792203 ], [ -78.750000, 26.831424 ], [ -78.511047, 26.870631 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cuba", "sov_a3": "CUB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cuba", "adm0_a3": "CUB", "geou_dif": 0, "geounit": "Cuba", "gu_a3": "CUB", "su_dif": 0, "subunit": "Cuba", "su_a3": "CUB", "brk_diff": 0, "name": "Cuba", "name_long": "Cuba", "brk_a3": "CUB", "brk_name": "Cuba", "abbrev": "Cuba", "postal": "CU", "formal_en": "Republic of Cuba", "name_sort": "Cuba", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 11451652, "gdp_md_est": 108200, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CU", "iso_a3": "CUB", "iso_n3": "192", "un_a3": "192", "wb_a2": "CU", "wb_a3": "CUB", "woe_id": -99, "adm0_a3_is": "CUB", "adm0_a3_us": "CUB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.348999, 22.512557 ], [ -77.994690, 22.278931 ], [ -77.536011, 21.943046 ], [ -77.258606, 21.739091 ], [ -78.969727, 21.739091 ], [ -78.969727, 22.438956 ], [ -78.750000, 22.464340 ], [ -78.348999, 22.512557 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.094788, 41.145570 ], [ -73.569946, 40.979898 ], [ -73.710022, 40.932190 ], [ -73.330994, 40.979898 ], [ -72.243347, 41.120746 ], [ -72.023621, 40.979898 ], [ -71.946716, 40.930115 ], [ -73.347473, 40.630630 ], [ -73.984680, 40.628546 ], [ -73.954468, 40.751418 ], [ -74.259338, 40.474114 ], [ -73.962708, 40.428133 ], [ -74.179688, 39.709300 ], [ -74.907532, 38.940185 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.528259, 39.499802 ], [ -75.322266, 38.961544 ], [ -75.072327, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.379944, 38.015640 ], [ -75.940247, 37.217206 ], [ -76.033630, 37.258752 ], [ -75.723267, 37.937699 ], [ -76.234131, 38.320111 ], [ -76.352234, 39.151363 ], [ -76.544495, 38.717662 ], [ -76.330261, 38.084851 ], [ -76.992188, 38.240337 ], [ -76.302795, 37.918201 ], [ -76.258850, 36.967449 ], [ -75.973206, 36.899391 ], [ -75.868835, 36.551569 ], [ -75.728760, 35.552340 ], [ -76.363220, 34.809293 ], [ -77.398682, 34.513346 ], [ -78.055115, 33.927409 ], [ -78.554993, 33.863574 ], [ -78.750000, 33.719771 ], [ -78.969727, 33.561995 ], [ -78.969727, 41.145570 ], [ -73.094788, 41.145570 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -78.969727, 43.538594 ], [ -78.969727, 49.066668 ], [ -68.513489, 49.066668 ], [ -68.672791, 48.922499 ], [ -69.955444, 47.746711 ], [ -71.106262, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.650818, 48.301467 ], [ -67.500000, 48.759810 ], [ -67.280273, 48.846643 ], [ -67.280273, 45.263289 ], [ -67.500000, 45.452424 ], [ -67.793884, 45.704261 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.355571 ], [ -68.906250, 47.185979 ], [ -69.238586, 47.448522 ], [ -70.002136, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.661316, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.507263, 45.009477 ], [ -73.350220, 45.007535 ], [ -74.869080, 45.001709 ], [ -75.319519, 44.816916 ], [ -76.376953, 44.097448 ], [ -76.500549, 44.018496 ], [ -76.821899, 43.630111 ], [ -77.739258, 43.630111 ], [ -78.722534, 43.626135 ], [ -78.750000, 43.616194 ], [ -78.969727, 43.538594 ] ] ], [ [ [ -78.969727, 43.135065 ], [ -78.920288, 42.966472 ], [ -78.939514, 42.863886 ], [ -78.969727, 42.853820 ], [ -78.969727, 43.135065 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.238586, 47.448522 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.355571 ], [ -67.791138, 47.066380 ], [ -67.793884, 45.704261 ], [ -67.500000, 45.452424 ], [ -67.280273, 45.263289 ], [ -67.280273, 44.668653 ], [ -67.500000, 44.568948 ], [ -68.032837, 44.325813 ], [ -69.060059, 43.980958 ], [ -70.117493, 43.685750 ], [ -70.647583, 43.090955 ], [ -70.815125, 42.865899 ], [ -70.826111, 42.336215 ], [ -70.496521, 41.806125 ], [ -70.081787, 41.781553 ], [ -70.186157, 42.145078 ], [ -69.886780, 41.924760 ], [ -69.966431, 41.638026 ], [ -70.642090, 41.475660 ], [ -71.122742, 41.496235 ], [ -71.861572, 41.321138 ], [ -72.295532, 41.271614 ], [ -72.877808, 41.222052 ], [ -73.569946, 40.979898 ], [ -73.710022, 40.932190 ], [ -73.330994, 40.979898 ], [ -72.243347, 41.120746 ], [ -72.023621, 40.979898 ], [ -71.946716, 40.930115 ], [ -72.490540, 40.813809 ], [ -78.969727, 40.813809 ], [ -78.969727, 42.853820 ], [ -78.939514, 42.863886 ], [ -78.920288, 42.966472 ], [ -78.969727, 43.135065 ], [ -78.969727, 43.538594 ], [ -78.750000, 43.616194 ], [ -78.722534, 43.626135 ], [ -77.739258, 43.630111 ], [ -76.821899, 43.630111 ], [ -76.500549, 44.018496 ], [ -76.376953, 44.097448 ], [ -75.319519, 44.816916 ], [ -74.869080, 45.001709 ], [ -73.350220, 45.007535 ], [ -71.507263, 45.009477 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.661316, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.002136, 46.694667 ], [ -69.238586, 47.448522 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -67.280273, 55.899956 ], [ -67.280273, 49.496675 ], [ -67.500000, 49.421694 ], [ -68.513489, 49.068468 ], [ -68.672791, 48.922499 ], [ -68.832092, 48.777913 ], [ -78.969727, 48.777913 ], [ -78.969727, 51.866316 ], [ -78.750000, 52.283282 ], [ -78.604431, 52.562995 ], [ -78.750000, 53.016436 ], [ -78.969727, 53.680442 ], [ -78.969727, 54.920828 ], [ -78.750000, 54.985494 ], [ -78.230896, 55.136500 ], [ -77.195435, 55.776573 ], [ -77.096558, 55.838314 ], [ -77.047119, 55.899956 ], [ -67.280273, 55.899956 ] ] ], [ [ [ -67.280273, 48.777913 ], [ -67.453308, 48.777913 ], [ -67.280273, 48.846643 ], [ -67.280273, 48.777913 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -72.070312, 61.710706 ], [ -71.850586, 61.606396 ], [ -71.677551, 61.526623 ], [ -71.375427, 61.137933 ], [ -69.592896, 61.062272 ], [ -69.620361, 60.222083 ], [ -69.288025, 58.958507 ], [ -68.376160, 58.802362 ], [ -67.651062, 58.212685 ], [ -67.500000, 58.270510 ], [ -67.280273, 58.355630 ], [ -67.280273, 55.652798 ], [ -77.398682, 55.652798 ], [ -77.195435, 55.776573 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.203247 ], [ -77.302551, 58.053179 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.774963, 60.759160 ], [ -77.953491, 61.606396 ], [ -77.975464, 61.710706 ], [ -72.070312, 61.710706 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -77.412415, 62.551591 ], [ -75.698547, 62.279423 ], [ -74.668579, 62.182169 ], [ -73.841858, 62.445054 ], [ -72.910767, 62.105168 ], [ -71.850586, 61.606396 ], [ -71.677551, 61.526623 ], [ -71.661072, 61.501734 ], [ -77.931519, 61.501734 ], [ -77.953491, 61.606396 ], [ -78.107300, 62.320279 ], [ -77.412415, 62.551591 ] ] ], [ [ [ -67.280273, 66.600676 ], [ -67.280273, 66.334198 ], [ -67.500000, 66.313242 ], [ -68.016357, 66.263540 ], [ -68.142700, 65.689953 ], [ -67.500000, 65.337055 ], [ -67.280273, 65.215289 ], [ -67.280273, 63.269476 ], [ -67.500000, 63.339808 ], [ -68.785400, 63.746061 ], [ -67.500000, 62.965212 ], [ -67.370911, 62.885205 ], [ -67.280273, 62.833835 ], [ -67.280273, 62.096171 ], [ -67.500000, 62.128289 ], [ -68.878784, 62.330484 ], [ -71.023865, 62.911481 ], [ -72.237854, 63.398902 ], [ -71.886292, 63.680377 ], [ -73.380432, 64.194423 ], [ -74.836121, 64.679143 ], [ -74.819641, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.573216 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.454838 ], [ -74.295044, 65.811781 ], [ -73.946228, 66.311035 ], [ -73.682556, 66.513260 ], [ -73.567200, 66.600676 ], [ -67.280273, 66.600676 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -69.763184, 70.685421 ], [ -69.318237, 70.612614 ], [ -68.788147, 70.525813 ], [ -67.917480, 70.122629 ], [ -67.500000, 69.717155 ], [ -67.280273, 69.498956 ], [ -67.280273, 69.108756 ], [ -67.500000, 69.052858 ], [ -68.807373, 68.720441 ], [ -67.500000, 68.360725 ], [ -67.280273, 68.299874 ], [ -67.280273, 66.425537 ], [ -73.795166, 66.425537 ], [ -73.682556, 66.513260 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.727149 ], [ -73.311768, 68.070228 ], [ -74.844360, 68.555363 ], [ -76.871338, 68.895187 ], [ -76.231384, 69.147898 ], [ -77.288818, 69.770406 ], [ -78.170471, 69.827312 ], [ -78.750000, 70.078691 ], [ -78.958740, 70.167405 ], [ -78.969727, 70.160881 ], [ -78.969727, 70.685421 ], [ -69.763184, 70.685421 ] ] ], [ [ [ -75.896301, 68.287684 ], [ -75.116272, 68.010656 ], [ -75.105286, 67.583050 ], [ -75.217896, 67.444390 ], [ -75.866089, 67.149699 ], [ -76.989441, 67.099518 ], [ -77.236633, 67.588287 ], [ -76.813660, 68.149077 ], [ -75.896301, 68.287684 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -77.827148, 72.750224 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.767927 ], [ -74.100037, 71.331588 ], [ -72.243347, 71.557086 ], [ -71.202393, 70.920233 ], [ -69.318237, 70.612614 ], [ -68.876038, 70.539543 ], [ -78.969727, 70.539543 ], [ -78.969727, 72.323293 ], [ -78.771973, 72.352459 ], [ -78.750000, 72.361616 ], [ -77.827148, 72.750224 ] ] ], [ [ [ -78.969727, 73.695009 ], [ -78.750000, 73.684982 ], [ -78.066101, 73.652545 ], [ -76.341248, 73.103405 ], [ -76.253357, 72.826619 ], [ -77.316284, 72.855790 ], [ -78.392944, 72.876828 ], [ -78.750000, 72.833106 ], [ -78.969727, 72.806334 ], [ -78.969727, 73.695009 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -77.901306, 76.890745 ], [ -77.895813, 76.840816 ], [ -77.890320, 76.778142 ], [ -78.750000, 76.587719 ], [ -78.969727, 76.538575 ], [ -78.969727, 76.890745 ], [ -77.901306, 76.890745 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.280273, 76.890745 ], [ -67.280273, 76.098817 ], [ -67.500000, 76.092216 ], [ -68.505249, 76.061816 ], [ -69.667053, 76.380383 ], [ -70.933228, 76.840816 ], [ -71.073303, 76.890745 ], [ -67.280273, 76.890745 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -78.969727, 77.379906 ], [ -78.969727, 79.212538 ], [ -75.693054, 79.212538 ], [ -75.531006, 79.198134 ], [ -75.632629, 79.171335 ], [ -76.223145, 79.019097 ], [ -75.393677, 78.526119 ], [ -76.343994, 78.182963 ], [ -77.890320, 77.900134 ], [ -78.362732, 77.508873 ], [ -78.750000, 77.426628 ], [ -78.969727, 77.379906 ] ] ], [ [ [ -78.969727, 76.998699 ], [ -78.750000, 77.003642 ], [ -77.912292, 77.022159 ], [ -77.895813, 76.840816 ], [ -77.890320, 76.790701 ], [ -78.969727, 76.790701 ], [ -78.969727, 76.998699 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.280273, 77.408079 ], [ -67.500000, 77.421246 ], [ -71.043091, 77.635954 ], [ -73.298035, 78.044364 ], [ -73.160706, 78.432867 ], [ -69.375916, 78.913968 ], [ -67.500000, 79.162559 ], [ -67.280273, 79.191440 ], [ -67.280273, 77.408079 ] ] ], [ [ [ -67.280273, 77.362492 ], [ -67.280273, 76.790701 ], [ -70.793152, 76.790701 ], [ -70.933228, 76.840816 ], [ -71.402893, 77.008582 ], [ -68.777161, 77.323374 ], [ -67.500000, 77.357083 ], [ -67.280273, 77.362492 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -67.280273, 81.127169 ], [ -67.280273, 81.048024 ], [ -67.500000, 80.990143 ], [ -67.840576, 80.900234 ], [ -69.472046, 80.617081 ], [ -71.180420, 79.800150 ], [ -73.243103, 79.634439 ], [ -73.880310, 79.430356 ], [ -76.909790, 79.323522 ], [ -75.531006, 79.198134 ], [ -75.632629, 79.171335 ], [ -75.794678, 79.129976 ], [ -78.969727, 79.129976 ], [ -78.969727, 81.127169 ], [ -67.280273, 81.127169 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.280273, 80.020042 ], [ -67.500000, 80.049036 ], [ -68.024597, 80.117621 ], [ -67.500000, 80.358376 ], [ -67.280273, 80.458143 ], [ -67.280273, 80.020042 ] ] ], [ [ [ -67.280273, 79.191440 ], [ -67.280273, 79.129976 ], [ -67.747192, 79.129976 ], [ -67.280273, 79.191440 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -67.280273, 82.704241 ], [ -67.280273, 81.595699 ], [ -67.500000, 81.540928 ], [ -67.659302, 81.501646 ], [ -67.500000, 81.502052 ], [ -67.280273, 81.502458 ], [ -67.280273, 81.059130 ], [ -78.969727, 81.059130 ], [ -78.969727, 82.704241 ], [ -67.280273, 82.704241 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -72.833862, 83.233515 ], [ -70.666809, 83.169790 ], [ -68.502502, 83.106457 ], [ -67.500000, 83.077387 ], [ -67.280273, 83.070763 ], [ -67.280273, 82.648222 ], [ -78.969727, 82.648222 ], [ -78.969727, 83.135407 ], [ -78.750000, 83.138360 ], [ -76.250610, 83.172076 ], [ -75.720520, 83.064132 ], [ -72.833862, 83.233515 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 21 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.563171, -54.868705 ], [ -67.500000, -54.871866 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.301011 ], [ -67.500000, -55.375989 ], [ -67.719727, -55.455499 ], [ -67.719727, -54.868705 ], [ -67.563171, -54.868705 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.719727, -53.863866 ], [ -67.500000, -53.965781 ], [ -66.450806, -54.449283 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.199251 ], [ -66.450806, -55.249381 ], [ -66.961670, -54.895565 ], [ -67.500000, -54.871866 ], [ -67.563171, -54.868705 ], [ -67.719727, -54.868705 ], [ -67.719727, -53.863866 ] ] ], [ [ [ -67.211609, -48.777913 ], [ -67.291260, -48.922499 ], [ -67.500000, -49.301845 ], [ -67.719727, -49.696062 ], [ -67.719727, -48.777913 ], [ -67.211609, -48.777913 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "Falkland Islands", "adm0_a3": "FLK", "geou_dif": 0, "geounit": "Falkland Islands", "gu_a3": "FLK", "su_dif": 0, "subunit": "Falkland Islands", "su_a3": "FLK", "brk_diff": 1, "name": "Falkland Is.", "name_long": "Falkland Islands", "brk_a3": "B12", "brk_name": "Falkland Is.", "abbrev": "Flk. Is.", "postal": "FK", "formal_en": "Falkland Islands", "note_adm0": "U.K.", "note_brk": "Admin. by U.K.; Claimed by Argentina", "name_sort": "Falkland Islands", "name_alt": "Islas Malvinas", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 3140, "gdp_md_est": 105.1, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FK", "iso_a3": "FLK", "iso_n3": "238", "un_a3": "238", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "FLK", "adm0_a3_us": "FLK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 12, "long_len": 16, "abbrev_len": 8, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.551636, -51.098348 ], [ -57.752380, -51.549751 ], [ -58.051758, -51.898529 ], [ -59.400330, -52.199190 ], [ -59.850769, -51.849353 ], [ -60.702209, -52.298402 ], [ -61.202087, -51.849353 ], [ -60.001831, -51.249882 ], [ -59.150391, -51.498485 ], [ -58.551636, -51.098348 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 20 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.750671, -40.813809 ], [ -64.995117, -40.979898 ], [ -65.118713, -41.062786 ], [ -64.978638, -42.057450 ], [ -64.305725, -42.358544 ], [ -63.756409, -42.043174 ], [ -63.459778, -42.561173 ], [ -64.379883, -42.871938 ], [ -65.181885, -43.494775 ], [ -65.330200, -44.500423 ], [ -65.566406, -45.036656 ], [ -66.511230, -45.038597 ], [ -67.294006, -45.550602 ], [ -67.500000, -46.090377 ], [ -67.582397, -46.301406 ], [ -67.500000, -46.362093 ], [ -66.599121, -47.032695 ], [ -65.643311, -47.234490 ], [ -65.986633, -48.133101 ], [ -67.167664, -48.696399 ], [ -67.291260, -48.922499 ], [ -67.370911, -49.066668 ], [ -67.719727, -49.066668 ], [ -67.719727, -40.813809 ], [ -64.750671, -40.813809 ] ] ], [ [ [ -62.380371, -40.813809 ], [ -62.663269, -40.979898 ], [ -62.748413, -41.027571 ], [ -63.772888, -41.166249 ], [ -64.267273, -40.979898 ], [ -64.703979, -40.813809 ], [ -62.380371, -40.813809 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 19 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.070984, -31.765537 ], [ -58.120422, -31.952162 ], [ -58.145142, -32.043005 ], [ -58.134155, -33.038601 ], [ -58.351135, -33.261657 ], [ -58.428040, -33.909175 ], [ -58.496704, -34.429567 ], [ -57.227783, -35.285985 ], [ -57.362366, -35.975783 ], [ -56.738892, -36.412442 ], [ -56.788330, -36.899391 ], [ -57.749634, -38.182069 ], [ -59.232788, -38.719805 ], [ -61.237793, -38.927366 ], [ -62.336426, -38.826871 ], [ -62.127686, -39.423464 ], [ -62.330933, -40.172578 ], [ -62.146912, -40.676472 ], [ -62.663269, -40.979898 ], [ -62.748413, -41.027571 ], [ -63.613586, -41.145570 ], [ -63.827820, -41.145570 ], [ -64.267273, -40.979898 ], [ -64.734192, -40.801336 ], [ -64.995117, -40.979898 ], [ -65.118713, -41.062786 ], [ -65.107727, -41.145570 ], [ -67.719727, -41.145570 ], [ -67.719727, -31.765537 ], [ -58.070984, -31.765537 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Uruguay", "sov_a3": "URY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uruguay", "adm0_a3": "URY", "geou_dif": 0, "geounit": "Uruguay", "gu_a3": "URY", "su_dif": 0, "subunit": "Uruguay", "su_a3": "URY", "brk_diff": 0, "name": "Uruguay", "name_long": "Uruguay", "brk_a3": "URY", "brk_name": "Uruguay", "abbrev": "Ury.", "postal": "UY", "formal_en": "Oriental Republic of Uruguay", "name_sort": "Uruguay", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 3494382, "gdp_md_est": 43160, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "UY", "iso_a3": "URY", "iso_n3": "858", "un_a3": "858", "wb_a2": "UY", "wb_a3": "URY", "woe_id": -99, "adm0_a3_is": "URY", "adm0_a3_us": "URY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.030273, -31.765537 ], [ -56.030273, -34.822823 ], [ -56.217041, -34.858890 ], [ -56.250000, -34.843113 ], [ -57.139893, -34.429567 ], [ -57.818298, -34.461277 ], [ -58.428040, -33.909175 ], [ -58.351135, -33.261657 ], [ -58.134155, -33.038601 ], [ -58.145142, -32.043005 ], [ -58.120422, -31.952162 ], [ -58.070984, -31.765537 ], [ -56.030273, -31.765537 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 18 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.107239, -22.735657 ], [ -66.986389, -22.986210 ], [ -67.329712, -24.023888 ], [ -67.719727, -24.201879 ], [ -67.719727, -22.852133 ], [ -67.500000, -22.809099 ], [ -67.107239, -22.735657 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.517700, -21.739091 ], [ -62.586365, -21.943046 ], [ -62.685242, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.987122, -21.991442 ], [ -64.377136, -22.796439 ], [ -64.964905, -22.075459 ], [ -65.679016, -21.943046 ], [ -66.275024, -21.830907 ], [ -66.376648, -21.943046 ], [ -67.107239, -22.735657 ], [ -67.500000, -22.809099 ], [ -67.719727, -22.852133 ], [ -67.719727, -21.739091 ], [ -62.517700, -21.739091 ] ] ] } } +, +{ "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": [ [ [ [ -56.030273, -28.627925 ], [ -56.030273, -30.838573 ], [ -56.250000, -30.668628 ], [ -56.977844, -30.109494 ], [ -57.626038, -30.213982 ], [ -56.291199, -28.851891 ], [ -56.250000, -28.815800 ], [ -56.030273, -28.627925 ] ] ], [ [ [ -56.030273, -22.263680 ], [ -56.250000, -22.174688 ], [ -56.475220, -22.085640 ], [ -56.881714, -22.281472 ], [ -57.939148, -22.088185 ], [ -57.930908, -21.943046 ], [ -57.919922, -21.739091 ], [ -56.030273, -21.739091 ], [ -56.030273, -22.263680 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Paraguay", "sov_a3": "PRY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Paraguay", "adm0_a3": "PRY", "geou_dif": 0, "geounit": "Paraguay", "gu_a3": "PRY", "su_dif": 0, "subunit": "Paraguay", "su_a3": "PRY", "brk_diff": 0, "name": "Paraguay", "name_long": "Paraguay", "brk_a3": "PRY", "brk_name": "Paraguay", "abbrev": "Para.", "postal": "PY", "formal_en": "Republic of Paraguay", "name_sort": "Paraguay", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 2, "pop_est": 6995655, "gdp_md_est": 28890, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PY", "iso_a3": "PRY", "iso_n3": "600", "un_a3": "600", "wb_a2": "PY", "wb_a3": "PRY", "woe_id": -99, "adm0_a3_is": "PRY", "adm0_a3_us": "PRY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.919922, -21.739091 ], [ -57.930908, -21.943046 ], [ -57.939148, -22.088185 ], [ -56.881714, -22.281472 ], [ -56.475220, -22.085640 ], [ -56.250000, -22.174688 ], [ -56.030273, -22.263680 ], [ -56.030273, -27.454665 ], [ -56.250000, -27.498527 ], [ -56.488953, -27.547242 ], [ -57.612305, -27.393717 ], [ -58.620300, -27.122702 ], [ -57.634277, -25.601902 ], [ -57.779846, -25.160201 ], [ -58.809814, -24.769278 ], [ -60.029297, -24.031414 ], [ -60.847778, -23.878303 ], [ -62.685242, -22.248429 ], [ -62.586365, -21.943046 ], [ -62.517700, -21.739091 ], [ -57.919922, -21.739091 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.275024, -21.830907 ], [ -65.679016, -21.943046 ], [ -64.964905, -22.075459 ], [ -64.377136, -22.796439 ], [ -63.987122, -21.991442 ], [ -62.847290, -22.034730 ], [ -62.685242, -22.248429 ], [ -60.847778, -23.878303 ], [ -60.029297, -24.031414 ], [ -58.809814, -24.769278 ], [ -57.779846, -25.160201 ], [ -57.634277, -25.601902 ], [ -58.620300, -27.122702 ], [ -57.612305, -27.393717 ], [ -56.488953, -27.547242 ], [ -56.250000, -27.498527 ], [ -56.030273, -27.454665 ], [ -56.030273, -28.627925 ], [ -56.250000, -28.815800 ], [ -56.291199, -28.851891 ], [ -57.626038, -30.213982 ], [ -57.875977, -31.015279 ], [ -58.120422, -31.952162 ], [ -58.145142, -32.043005 ], [ -58.142395, -32.138409 ], [ -67.719727, -32.138409 ], [ -67.719727, -24.201879 ], [ -67.329712, -24.023888 ], [ -66.986389, -22.986210 ], [ -67.107239, -22.735657 ], [ -66.376648, -21.943046 ], [ -66.275024, -21.830907 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Uruguay", "sov_a3": "URY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uruguay", "adm0_a3": "URY", "geou_dif": 0, "geounit": "Uruguay", "gu_a3": "URY", "su_dif": 0, "subunit": "Uruguay", "su_a3": "URY", "brk_diff": 0, "name": "Uruguay", "name_long": "Uruguay", "brk_a3": "URY", "brk_name": "Uruguay", "abbrev": "Ury.", "postal": "UY", "formal_en": "Oriental Republic of Uruguay", "name_sort": "Uruguay", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 3494382, "gdp_md_est": 43160, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "UY", "iso_a3": "URY", "iso_n3": "858", "un_a3": "858", "wb_a2": "UY", "wb_a3": "URY", "woe_id": -99, "adm0_a3_is": "URY", "adm0_a3_us": "URY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.977844, -30.109494 ], [ -56.250000, -30.668628 ], [ -56.030273, -30.838573 ], [ -56.030273, -32.138409 ], [ -58.142395, -32.138409 ], [ -58.145142, -32.043005 ], [ -58.120422, -31.952162 ], [ -57.875977, -31.015279 ], [ -57.626038, -30.213982 ], [ -56.977844, -30.109494 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 17 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.330200, -10.962764 ], [ -65.357666, -11.178402 ], [ -65.404358, -11.566144 ], [ -64.316711, -12.460715 ], [ -63.198853, -12.626938 ], [ -62.803345, -12.999205 ], [ -62.127686, -13.197165 ], [ -61.715698, -13.488460 ], [ -61.086731, -13.477777 ], [ -60.504456, -13.774066 ], [ -60.460510, -14.352209 ], [ -60.265503, -14.644711 ], [ -60.251770, -15.074776 ], [ -60.545654, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.241272, -16.299051 ], [ -58.389587, -16.875519 ], [ -58.282471, -17.269351 ], [ -57.735901, -17.552391 ], [ -57.499695, -18.171950 ], [ -57.678223, -18.960844 ], [ -57.950134, -19.399249 ], [ -57.854004, -19.968186 ], [ -58.167114, -20.174567 ], [ -58.183594, -19.867477 ], [ -59.117432, -19.355202 ], [ -60.045776, -19.342245 ], [ -61.787109, -19.632240 ], [ -62.267761, -20.511927 ], [ -62.292480, -21.051181 ], [ -62.586365, -21.943046 ], [ -62.652283, -22.146708 ], [ -62.764893, -22.146708 ], [ -62.847290, -22.034730 ], [ -63.987122, -21.991442 ], [ -64.061279, -22.146708 ], [ -64.909973, -22.146708 ], [ -64.964905, -22.075459 ], [ -65.679016, -21.943046 ], [ -66.275024, -21.830907 ], [ -66.376648, -21.943046 ], [ -66.563416, -22.146708 ], [ -67.719727, -22.146708 ], [ -67.719727, -10.962764 ], [ -65.330200, -10.962764 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ -56.030273, -10.962764 ], [ -56.030273, -22.146708 ], [ -56.324158, -22.146708 ], [ -56.475220, -22.085640 ], [ -56.601562, -22.146708 ], [ -57.628784, -22.146708 ], [ -57.939148, -22.088185 ], [ -57.930908, -21.943046 ], [ -57.873230, -20.730428 ], [ -58.167114, -20.174567 ], [ -57.854004, -19.968186 ], [ -57.950134, -19.399249 ], [ -57.678223, -18.960844 ], [ -57.499695, -18.171950 ], [ -57.735901, -17.552391 ], [ -58.282471, -17.269351 ], [ -58.389587, -16.875519 ], [ -58.241272, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.251770, -15.074776 ], [ -60.265503, -14.644711 ], [ -60.460510, -14.352209 ], [ -60.504456, -13.774066 ], [ -61.086731, -13.477777 ], [ -61.715698, -13.488460 ], [ -62.127686, -13.197165 ], [ -62.803345, -12.999205 ], [ -63.198853, -12.626938 ], [ -64.316711, -12.460715 ], [ -65.404358, -11.566144 ], [ -65.357666, -11.178402 ], [ -65.330200, -10.962764 ], [ -56.030273, -10.962764 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Paraguay", "sov_a3": "PRY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Paraguay", "adm0_a3": "PRY", "geou_dif": 0, "geounit": "Paraguay", "gu_a3": "PRY", "su_dif": 0, "subunit": "Paraguay", "su_a3": "PRY", "brk_diff": 0, "name": "Paraguay", "name_long": "Paraguay", "brk_a3": "PRY", "brk_name": "Paraguay", "abbrev": "Para.", "postal": "PY", "formal_en": "Republic of Paraguay", "name_sort": "Paraguay", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 2, "pop_est": 6995655, "gdp_md_est": 28890, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PY", "iso_a3": "PRY", "iso_n3": "600", "un_a3": "600", "wb_a2": "PY", "wb_a3": "PRY", "woe_id": -99, "adm0_a3_is": "PRY", "adm0_a3_us": "PRY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -60.045776, -19.342245 ], [ -59.117432, -19.355202 ], [ -58.183594, -19.867477 ], [ -58.167114, -20.174567 ], [ -57.873230, -20.730428 ], [ -57.930908, -21.943046 ], [ -57.939148, -22.088185 ], [ -57.628784, -22.146708 ], [ -62.652283, -22.146708 ], [ -62.586365, -21.943046 ], [ -62.292480, -21.051181 ], [ -62.267761, -20.511927 ], [ -61.787109, -19.632240 ], [ -60.045776, -19.342245 ] ] ], [ [ [ -56.324158, -22.146708 ], [ -56.601562, -22.146708 ], [ -56.475220, -22.085640 ], [ -56.324158, -22.146708 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -66.275024, -21.830907 ], [ -65.679016, -21.943046 ], [ -64.964905, -22.075459 ], [ -64.909973, -22.146708 ], [ -66.563416, -22.146708 ], [ -66.376648, -21.943046 ], [ -66.275024, -21.830907 ] ] ], [ [ [ -62.847290, -22.034730 ], [ -62.764893, -22.146708 ], [ -64.061279, -22.146708 ], [ -63.987122, -21.991442 ], [ -62.847290, -22.034730 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 16 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.338440, -9.760491 ], [ -65.445557, -10.509417 ], [ -65.321960, -10.895345 ], [ -65.357666, -11.178402 ], [ -65.382385, -11.393879 ], [ -67.719727, -11.393879 ], [ -67.719727, -10.558022 ], [ -67.500000, -10.455402 ], [ -67.175903, -10.304110 ], [ -66.648560, -9.930977 ], [ -65.338440, -9.760491 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ -56.030273, 0.219726 ], [ -56.030273, -11.393879 ], [ -65.382385, -11.393879 ], [ -65.357666, -11.178402 ], [ -65.321960, -10.895345 ], [ -65.445557, -10.509417 ], [ -65.338440, -9.760491 ], [ -66.648560, -9.930977 ], [ -67.175903, -10.304110 ], [ -67.500000, -10.455402 ], [ -67.719727, -10.558022 ], [ -67.719727, 0.219726 ], [ -56.030273, 0.219726 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.719727, 2.767478 ], [ -67.500000, 2.633045 ], [ -67.447815, 2.602864 ], [ -67.181396, 2.251617 ], [ -66.876526, 1.255088 ], [ -67.066040, 1.131518 ], [ -67.261047, 1.721848 ], [ -67.500000, 1.996361 ], [ -67.538452, 2.037534 ], [ -67.719727, 1.848129 ], [ -67.719727, 2.767478 ] ] ], [ [ [ -67.719727, 4.162897 ], [ -67.623596, 3.839591 ], [ -67.500000, 3.713523 ], [ -67.337952, 3.543576 ], [ -67.304993, 3.318760 ], [ -67.500000, 3.126804 ], [ -67.719727, 2.910125 ], [ -67.719727, 4.162897 ] ] ], [ [ [ -67.719727, 5.260538 ], [ -67.719727, 6.263428 ], [ -67.697754, 6.268888 ], [ -67.500000, 6.173324 ], [ -67.343445, 6.096860 ], [ -67.500000, 5.621453 ], [ -67.521973, 5.558582 ], [ -67.719727, 5.260538 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Venezuela", "sov_a3": "VEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Venezuela", "adm0_a3": "VEN", "geou_dif": 0, "geounit": "Venezuela", "gu_a3": "VEN", "su_dif": 0, "subunit": "Venezuela", "su_a3": "VEN", "brk_diff": 0, "name": "Venezuela", "name_long": "Venezuela", "brk_a3": "VEN", "brk_name": "Venezuela", "abbrev": "Ven.", "postal": "VE", "formal_en": "Bolivarian Republic of Venezuela", "formal_fr": "República Bolivariana de Venezuela", "name_sort": "Venezuela, RB", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 26814843, "gdp_md_est": 357400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "VE", "iso_a3": "VEN", "iso_n3": "862", "un_a3": "862", "wb_a2": "VE", "wb_a3": "VEN", "woe_id": -99, "adm0_a3_is": "VEN", "adm0_a3_us": "VEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.883240, 10.717285 ], [ -62.731934, 10.420287 ], [ -62.388611, 9.949914 ], [ -61.589355, 9.874158 ], [ -60.831299, 9.384032 ], [ -60.671997, 8.581021 ], [ -60.150146, 8.605463 ], [ -59.760132, 8.369127 ], [ -60.551147, 7.781751 ], [ -60.639038, 7.416942 ], [ -60.295715, 7.046379 ], [ -60.545654, 6.858259 ], [ -61.160889, 6.697343 ], [ -61.141663, 6.236125 ], [ -61.410828, 5.960290 ], [ -60.735168, 5.200365 ], [ -60.603333, 4.918569 ], [ -60.968628, 4.538094 ], [ -62.086487, 4.162897 ], [ -62.806091, 4.009480 ], [ -63.094482, 3.771078 ], [ -63.890991, 4.023179 ], [ -64.629822, 4.149201 ], [ -64.816589, 4.058796 ], [ -64.368896, 3.798484 ], [ -64.410095, 3.126804 ], [ -64.270020, 2.498597 ], [ -63.424072, 2.413532 ], [ -63.369141, 2.202216 ], [ -64.083252, 1.916757 ], [ -64.201355, 1.493971 ], [ -64.613342, 1.329226 ], [ -65.354919, 1.095819 ], [ -65.549927, 0.790990 ], [ -66.327209, 0.725078 ], [ -66.876526, 1.255088 ], [ -67.181396, 2.251617 ], [ -67.447815, 2.602864 ], [ -67.500000, 2.633045 ], [ -67.719727, 2.767478 ], [ -67.719727, 2.910125 ], [ -67.500000, 3.126804 ], [ -67.304993, 3.318760 ], [ -67.337952, 3.543576 ], [ -67.500000, 3.713523 ], [ -67.623596, 3.839591 ], [ -67.719727, 4.162897 ], [ -67.719727, 5.260538 ], [ -67.521973, 5.558582 ], [ -67.500000, 5.621453 ], [ -67.343445, 6.096860 ], [ -67.500000, 6.173324 ], [ -67.697754, 6.268888 ], [ -67.719727, 6.263428 ], [ -67.719727, 10.552622 ], [ -67.500000, 10.549922 ], [ -67.296753, 10.547221 ], [ -66.228333, 10.649811 ], [ -65.657043, 10.201407 ], [ -64.890747, 10.079741 ], [ -64.330444, 10.390572 ], [ -64.319458, 10.641713 ], [ -63.080750, 10.703792 ], [ -61.883240, 10.717285 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Trinidad and Tobago", "sov_a3": "TTO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Trinidad and Tobago", "adm0_a3": "TTO", "geou_dif": 0, "geounit": "Trinidad and Tobago", "gu_a3": "TTO", "su_dif": 0, "subunit": "Trinidad and Tobago", "su_a3": "TTO", "brk_diff": 0, "name": "Trinidad and Tobago", "name_long": "Trinidad and Tobago", "brk_a3": "TTO", "brk_name": "Trinidad and Tobago", "abbrev": "Tr.T.", "postal": "TT", "formal_en": "Republic of Trinidad and Tobago", "name_sort": "Trinidad and Tobago", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 1310000, "gdp_md_est": 29010, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TT", "iso_a3": "TTO", "iso_n3": "780", "un_a3": "780", "wb_a2": "TT", "wb_a3": "TTO", "woe_id": -99, "adm0_a3_is": "TTO", "adm0_a3_us": "TTO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 19, "long_len": 19, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.105957, 10.892648 ], [ -60.897217, 10.857584 ], [ -60.935669, 10.112190 ], [ -61.770630, 10.001310 ], [ -61.951904, 10.090558 ], [ -61.660767, 10.366257 ], [ -61.682739, 10.760461 ], [ -61.105957, 10.892648 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Guyana", "sov_a3": "GUY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guyana", "adm0_a3": "GUY", "geou_dif": 0, "geounit": "Guyana", "gu_a3": "GUY", "su_dif": 0, "subunit": "Guyana", "su_a3": "GUY", "brk_diff": 0, "name": "Guyana", "name_long": "Guyana", "brk_a3": "GUY", "brk_name": "Guyana", "abbrev": "Guy.", "postal": "GY", "formal_en": "Co-operative Republic of Guyana", "name_sort": "Guyana", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 772298, "gdp_md_est": 2966, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GY", "iso_a3": "GUY", "iso_n3": "328", "un_a3": "328", "wb_a2": "GY", "wb_a3": "GUY", "woe_id": -99, "adm0_a3_is": "GUY", "adm0_a3_us": "GUY", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.760132, 8.369127 ], [ -59.103699, 7.999397 ], [ -58.482971, 7.348847 ], [ -58.455505, 6.833716 ], [ -58.079224, 6.809171 ], [ -57.543640, 6.323488 ], [ -57.148132, 5.973949 ], [ -57.307434, 5.074529 ], [ -57.914429, 4.814575 ], [ -57.862244, 4.579163 ], [ -58.046265, 4.061536 ], [ -57.604065, 3.335212 ], [ -57.282715, 3.335212 ], [ -57.150879, 2.770221 ], [ -56.541138, 1.900286 ], [ -56.782837, 1.864600 ], [ -57.337646, 1.949697 ], [ -57.661743, 1.683413 ], [ -58.114929, 1.507700 ], [ -58.430786, 1.466515 ], [ -58.540649, 1.268817 ], [ -59.032288, 1.318243 ], [ -59.647522, 1.787735 ], [ -59.718933, 2.251617 ], [ -59.977112, 2.756504 ], [ -59.817810, 3.606625 ], [ -59.540405, 3.960161 ], [ -59.768372, 4.425829 ], [ -60.111694, 4.576425 ], [ -59.982605, 5.014339 ], [ -60.216064, 5.246863 ], [ -60.735168, 5.200365 ], [ -61.410828, 5.960290 ], [ -61.141663, 6.236125 ], [ -61.160889, 6.697343 ], [ -60.545654, 6.858259 ], [ -60.295715, 7.046379 ], [ -60.639038, 7.416942 ], [ -60.551147, 7.781751 ], [ -59.760132, 8.369127 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Suriname", "sov_a3": "SUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Suriname", "adm0_a3": "SUR", "geou_dif": 0, "geounit": "Suriname", "gu_a3": "SUR", "su_dif": 0, "subunit": "Suriname", "su_a3": "SUR", "brk_diff": 0, "name": "Suriname", "name_long": "Suriname", "brk_a3": "SUR", "brk_name": "Suriname", "abbrev": "Sur.", "postal": "SR", "formal_en": "Republic of Suriname", "name_sort": "Suriname", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 481267, "gdp_md_est": 4254, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "SR", "iso_a3": "SUR", "iso_n3": "740", "un_a3": "740", "wb_a2": "SR", "wb_a3": "SUR", "woe_id": -99, "adm0_a3_is": "SUR", "adm0_a3_us": "SUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.148132, 5.973949 ], [ -56.250000, 5.823687 ], [ -56.030273, 5.788164 ], [ -56.030273, 2.347670 ], [ -56.074219, 2.221428 ], [ -56.030273, 2.172026 ], [ -56.030273, 1.823423 ], [ -56.250000, 1.856365 ], [ -56.541138, 1.900286 ], [ -57.150879, 2.770221 ], [ -57.282715, 3.335212 ], [ -57.604065, 3.335212 ], [ -58.046265, 4.061536 ], [ -57.862244, 4.579163 ], [ -57.914429, 4.814575 ], [ -57.307434, 5.074529 ], [ -57.148132, 5.973949 ] ] ] } } +, +{ "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": [ [ [ [ -56.030273, 1.823423 ], [ -56.030273, -0.219726 ], [ -67.719727, -0.219726 ], [ -67.719727, 1.848129 ], [ -67.538452, 2.037534 ], [ -67.500000, 1.996361 ], [ -67.261047, 1.721848 ], [ -67.066040, 1.131518 ], [ -66.876526, 1.255088 ], [ -66.327209, 0.725078 ], [ -65.549927, 0.790990 ], [ -65.354919, 1.095819 ], [ -64.613342, 1.329226 ], [ -64.201355, 1.493971 ], [ -64.083252, 1.916757 ], [ -63.369141, 2.202216 ], [ -63.424072, 2.413532 ], [ -64.270020, 2.498597 ], [ -64.410095, 3.126804 ], [ -64.368896, 3.798484 ], [ -64.816589, 4.058796 ], [ -64.629822, 4.149201 ], [ -63.890991, 4.023179 ], [ -63.094482, 3.771078 ], [ -62.806091, 4.009480 ], [ -62.086487, 4.162897 ], [ -60.968628, 4.538094 ], [ -60.603333, 4.918569 ], [ -60.735168, 5.200365 ], [ -60.216064, 5.246863 ], [ -59.982605, 5.014339 ], [ -60.111694, 4.576425 ], [ -59.768372, 4.425829 ], [ -59.540405, 3.960161 ], [ -59.817810, 3.606625 ], [ -59.977112, 2.756504 ], [ -59.718933, 2.251617 ], [ -59.647522, 1.787735 ], [ -59.032288, 1.318243 ], [ -58.540649, 1.268817 ], [ -58.430786, 1.466515 ], [ -58.114929, 1.507700 ], [ -57.661743, 1.683413 ], [ -57.337646, 1.949697 ], [ -56.782837, 1.864600 ], [ -56.541138, 1.900286 ], [ -56.250000, 1.856365 ], [ -56.030273, 1.823423 ] ] ], [ [ [ -56.030273, 2.172026 ], [ -56.074219, 2.221428 ], [ -56.030273, 2.347670 ], [ -56.030273, 2.172026 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "Puerto Rico", "adm0_a3": "PRI", "geou_dif": 0, "geounit": "Puerto Rico", "gu_a3": "PRI", "su_dif": 0, "subunit": "Puerto Rico", "su_a3": "PRI", "brk_diff": 0, "name": "Puerto Rico", "name_long": "Puerto Rico", "brk_a3": "PRI", "brk_name": "Puerto Rico", "abbrev": "P.R.", "postal": "PR", "formal_en": "Commonwealth of Puerto Rico", "note_adm0": "Commonwealth of U.S.A.", "name_sort": "Puerto Rico", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 3971020, "gdp_md_est": 70230, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "PR", "iso_a3": "PRI", "iso_n3": "630", "un_a3": "630", "wb_a2": "PR", "wb_a3": "PRI", "woe_id": -99, "adm0_a3_is": "PRI", "adm0_a3_us": "PRI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.101746, 18.521283 ], [ -66.283264, 18.516075 ], [ -65.772400, 18.427502 ], [ -65.591125, 18.229351 ], [ -65.849304, 17.976121 ], [ -66.601868, 17.983958 ], [ -67.186890, 17.947381 ], [ -67.244568, 18.375379 ], [ -67.101746, 18.521283 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -64.756165, 49.066668 ], [ -64.495239, 48.922499 ], [ -64.171143, 48.743512 ], [ -65.115967, 48.072574 ], [ -64.800110, 46.993368 ], [ -64.473267, 46.238752 ], [ -63.174133, 45.740693 ], [ -61.523438, 45.884273 ], [ -60.518188, 47.008353 ], [ -60.449524, 46.284326 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.256531, 44.670606 ], [ -64.248047, 44.266838 ], [ -65.365906, 43.546557 ], [ -66.123962, 43.620171 ], [ -66.162415, 44.465151 ], [ -64.426575, 45.292279 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.500000, 45.452424 ], [ -67.719727, 45.642848 ], [ -67.719727, 48.672826 ], [ -67.088013, 48.922499 ], [ -66.722717, 49.066668 ], [ -64.756165, 49.066668 ] ] ], [ [ [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.417032 ], [ -62.012329, 46.443535 ], [ -62.503967, 46.035109 ], [ -62.874756, 45.968334 ], [ -64.143677, 46.394306 ], [ -64.393616, 46.728566 ], [ -64.017334, 47.036439 ] ] ], [ [ [ -56.030273, 49.066668 ], [ -56.030273, 47.578379 ], [ -56.250000, 47.633933 ], [ -57.326660, 47.572820 ], [ -59.268494, 47.604311 ], [ -59.419556, 47.899772 ], [ -58.798828, 48.252112 ], [ -59.232788, 48.523881 ], [ -58.677979, 48.922499 ], [ -58.474731, 49.066668 ], [ -56.030273, 49.066668 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.719727, 45.642848 ], [ -67.500000, 45.452424 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.811070 ], [ -67.500000, 44.568948 ], [ -67.719727, 44.469071 ], [ -67.719727, 45.642848 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -56.030273, 51.570241 ], [ -56.030273, 50.811142 ], [ -56.134644, 50.687758 ], [ -56.250000, 50.536126 ], [ -56.796570, 49.813176 ], [ -56.250000, 50.095917 ], [ -56.145630, 50.150506 ], [ -56.030273, 50.115295 ], [ -56.030273, 48.777913 ], [ -58.878479, 48.777913 ], [ -58.677979, 48.922499 ], [ -58.392334, 49.126017 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.287688 ], [ -56.250000, 51.483093 ], [ -56.030273, 51.570241 ] ] ], [ [ [ -64.495239, 48.922499 ], [ -64.237061, 48.777913 ], [ -67.453308, 48.777913 ], [ -67.088013, 48.922499 ], [ -66.555176, 49.133206 ], [ -65.058289, 49.233741 ], [ -64.495239, 48.922499 ] ] ], [ [ [ -64.173889, 49.958288 ], [ -62.861023, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.806335, 49.106242 ], [ -62.295227, 49.088258 ], [ -63.591614, 49.402037 ], [ -64.519958, 49.873398 ], [ -64.173889, 49.958288 ] ] ], [ [ [ -60.762634, 55.899956 ], [ -60.471497, 55.776573 ], [ -59.570618, 55.205521 ], [ -57.977600, 54.946076 ], [ -57.334900, 54.627748 ], [ -56.939392, 53.781181 ], [ -56.250000, 53.664171 ], [ -56.159363, 53.647894 ], [ -56.030273, 53.528881 ], [ -56.030273, 51.967962 ], [ -56.250000, 51.854442 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.723938, 50.081820 ], [ -63.863525, 50.291094 ], [ -65.365906, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.512727 ], [ -67.500000, 49.421694 ], [ -67.719727, 49.344809 ], [ -67.719727, 55.899956 ], [ -60.762634, 55.899956 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -64.585876, 60.336464 ], [ -63.805847, 59.443679 ], [ -62.503967, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.800842, 56.340901 ], [ -60.471497, 55.776573 ], [ -60.276489, 55.652798 ], [ -67.719727, 55.652798 ], [ -67.719727, 58.270510 ], [ -67.651062, 58.212685 ], [ -67.500000, 58.270510 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.871019 ], [ -64.585876, 60.336464 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -67.719727, 66.292269 ], [ -67.719727, 66.600676 ], [ -61.971130, 66.600676 ], [ -62.163391, 66.160511 ], [ -63.918457, 64.999100 ], [ -65.148926, 65.426299 ], [ -66.722717, 66.388161 ], [ -67.500000, 66.313242 ], [ -67.719727, 66.292269 ] ] ], [ [ [ -67.719727, 63.100972 ], [ -67.500000, 62.965212 ], [ -67.370911, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.167908, 61.931197 ], [ -67.500000, 62.128289 ], [ -67.719727, 62.160372 ], [ -67.719727, 63.100972 ] ] ], [ [ [ -67.719727, 65.459402 ], [ -67.500000, 65.337055 ], [ -67.090759, 65.109148 ], [ -65.733948, 64.648584 ], [ -65.321960, 64.383879 ], [ -64.671021, 63.393982 ], [ -65.014343, 62.675404 ], [ -66.277771, 62.945231 ], [ -67.500000, 63.339808 ], [ -67.719727, 63.409968 ], [ -67.719727, 65.459402 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -67.719727, 68.422424 ], [ -67.500000, 68.360725 ], [ -66.450806, 68.068176 ], [ -64.863281, 67.847595 ], [ -63.426819, 66.928984 ], [ -61.853027, 66.862162 ], [ -62.009583, 66.513260 ], [ -62.048035, 66.425537 ], [ -67.719727, 66.425537 ], [ -67.719727, 68.422424 ] ] ], [ [ [ -67.719727, 68.996817 ], [ -67.719727, 69.932185 ], [ -67.500000, 69.717155 ], [ -66.969910, 69.186969 ], [ -67.500000, 69.052858 ], [ -67.719727, 68.996817 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.030273, 74.079925 ], [ -56.030273, 73.573508 ], [ -56.120911, 73.650226 ], [ -56.250000, 73.768104 ], [ -56.532898, 74.019543 ], [ -56.598816, 74.079925 ], [ -56.030273, 74.079925 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.030273, 76.890745 ], [ -56.030273, 73.958939 ], [ -56.464233, 73.958939 ], [ -56.532898, 74.019543 ], [ -57.323914, 74.710796 ], [ -58.598328, 75.099165 ], [ -58.587341, 75.517778 ], [ -61.270752, 76.102775 ], [ -63.393860, 76.175811 ], [ -66.066284, 76.135063 ], [ -67.500000, 76.092216 ], [ -67.719727, 76.085613 ], [ -67.719727, 76.890745 ], [ -56.030273, 76.890745 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.030273, 79.212538 ], [ -56.030273, 76.790701 ], [ -67.719727, 76.790701 ], [ -67.719727, 77.351070 ], [ -67.500000, 77.357083 ], [ -66.766663, 77.376305 ], [ -67.500000, 77.421246 ], [ -67.719727, 77.434996 ], [ -67.719727, 79.133601 ], [ -67.500000, 79.162559 ], [ -67.431335, 79.171335 ], [ -67.118225, 79.212538 ], [ -56.030273, 79.212538 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -66.975403, 81.127169 ], [ -67.107239, 81.093214 ], [ -67.500000, 80.990143 ], [ -67.719727, 80.932322 ], [ -67.719727, 81.127169 ], [ -66.975403, 81.127169 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.030273, 81.127169 ], [ -56.030273, 79.129976 ], [ -67.719727, 79.129976 ], [ -67.719727, 79.133601 ], [ -67.431335, 79.171335 ], [ -65.711975, 79.394526 ], [ -65.324707, 79.758237 ], [ -67.500000, 80.049036 ], [ -67.719727, 80.077946 ], [ -67.719727, 80.258040 ], [ -67.500000, 80.358376 ], [ -67.153931, 80.516245 ], [ -64.308472, 81.093214 ], [ -64.135437, 81.127169 ], [ -56.030273, 81.127169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -62.355652, 82.704241 ], [ -62.168884, 82.676285 ], [ -61.850281, 82.628867 ], [ -61.894226, 82.362009 ], [ -64.335938, 81.927816 ], [ -66.755676, 81.725560 ], [ -67.500000, 81.540928 ], [ -67.659302, 81.501646 ], [ -67.500000, 81.502052 ], [ -65.481262, 81.506921 ], [ -67.107239, 81.093214 ], [ -67.239075, 81.059130 ], [ -67.719727, 81.059130 ], [ -67.719727, 82.704241 ], [ -62.355652, 82.704241 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.030273, 82.194472 ], [ -56.030273, 81.059130 ], [ -64.481506, 81.059130 ], [ -64.308472, 81.093214 ], [ -63.690491, 81.214014 ], [ -62.234802, 81.321178 ], [ -62.652283, 81.770499 ], [ -60.284729, 82.033949 ], [ -57.208557, 82.190741 ], [ -56.250000, 82.193726 ], [ -56.030273, 82.194472 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -67.719727, 83.083674 ], [ -67.500000, 83.077387 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900043 ], [ -62.168884, 82.676285 ], [ -61.982117, 82.648222 ], [ -67.719727, 82.648222 ], [ -67.719727, 83.083674 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 19 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -51.564331, -31.765537 ], [ -51.830750, -31.952162 ], [ -52.256470, -32.245329 ], [ -52.712402, -33.195029 ], [ -53.374329, -33.767732 ], [ -53.651733, -33.201924 ], [ -53.212280, -32.727220 ], [ -53.789062, -32.045333 ], [ -53.923645, -31.952162 ], [ -54.190063, -31.765537 ], [ -51.564331, -31.765537 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Uruguay", "sov_a3": "URY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uruguay", "adm0_a3": "URY", "geou_dif": 0, "geounit": "Uruguay", "gu_a3": "URY", "su_dif": 0, "subunit": "Uruguay", "su_a3": "URY", "brk_diff": 0, "name": "Uruguay", "name_long": "Uruguay", "brk_a3": "URY", "brk_name": "Uruguay", "abbrev": "Ury.", "postal": "UY", "formal_en": "Oriental Republic of Uruguay", "name_sort": "Uruguay", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 3494382, "gdp_md_est": 43160, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "UY", "iso_a3": "URY", "iso_n3": "858", "un_a3": "858", "wb_a2": "UY", "wb_a3": "URY", "woe_id": -99, "adm0_a3_is": "URY", "adm0_a3_us": "URY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.190063, -31.765537 ], [ -53.923645, -31.952162 ], [ -53.789062, -32.045333 ], [ -53.212280, -32.727220 ], [ -53.651733, -33.201924 ], [ -53.374329, -33.767732 ], [ -53.808289, -34.395579 ], [ -54.937134, -34.951242 ], [ -55.675964, -34.750640 ], [ -56.217041, -34.858890 ], [ -56.250000, -34.843113 ], [ -56.469727, -34.741612 ], [ -56.469727, -31.765537 ], [ -54.190063, -31.765537 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 18 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -44.780273, -21.739091 ], [ -44.780273, -23.435529 ], [ -45.000000, -23.574057 ], [ -45.354309, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.650452, -24.883945 ], [ -48.496399, -25.876523 ], [ -48.641968, -26.622908 ], [ -48.477173, -27.174026 ], [ -48.663940, -28.185823 ], [ -48.889160, -28.673721 ], [ -49.589539, -29.224096 ], [ -50.699158, -30.982319 ], [ -51.578064, -31.777213 ], [ -51.830750, -31.952162 ], [ -52.102661, -32.138409 ], [ -53.712158, -32.138409 ], [ -53.789062, -32.045333 ], [ -53.923645, -31.952162 ], [ -54.574585, -31.494262 ], [ -55.601807, -30.852721 ], [ -55.975342, -30.881012 ], [ -56.250000, -30.668628 ], [ -56.469727, -30.500751 ], [ -56.469727, -29.034559 ], [ -56.291199, -28.851891 ], [ -56.250000, -28.815800 ], [ -55.162354, -27.880356 ], [ -54.492188, -27.474161 ], [ -53.648987, -26.922070 ], [ -53.629761, -26.123384 ], [ -54.132385, -25.547398 ], [ -54.626770, -25.738055 ], [ -54.429016, -25.160201 ], [ -54.294434, -24.569606 ], [ -54.294434, -24.018871 ], [ -54.654236, -23.838113 ], [ -55.030518, -23.998799 ], [ -55.401306, -23.956136 ], [ -55.519409, -23.571540 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.355156 ], [ -56.250000, -22.174688 ], [ -56.469727, -22.085640 ], [ -56.469727, -21.739091 ], [ -44.780273, -21.739091 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Paraguay", "sov_a3": "PRY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Paraguay", "adm0_a3": "PRY", "geou_dif": 0, "geounit": "Paraguay", "gu_a3": "PRY", "su_dif": 0, "subunit": "Paraguay", "su_a3": "PRY", "brk_diff": 0, "name": "Paraguay", "name_long": "Paraguay", "brk_a3": "PRY", "brk_name": "Paraguay", "abbrev": "Para.", "postal": "PY", "formal_en": "Republic of Paraguay", "name_sort": "Paraguay", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 2, "pop_est": 6995655, "gdp_md_est": 28890, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PY", "iso_a3": "PRY", "iso_n3": "600", "un_a3": "600", "wb_a2": "PY", "wb_a3": "PRY", "woe_id": -99, "adm0_a3_is": "PRY", "adm0_a3_us": "PRY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.469727, -22.085640 ], [ -56.250000, -22.174688 ], [ -55.799561, -22.355156 ], [ -55.612793, -22.654572 ], [ -55.519409, -23.571540 ], [ -55.401306, -23.956136 ], [ -55.030518, -23.998799 ], [ -54.654236, -23.838113 ], [ -54.294434, -24.018871 ], [ -54.294434, -24.569606 ], [ -54.429016, -25.160201 ], [ -54.626770, -25.738055 ], [ -54.788818, -26.620452 ], [ -55.697937, -27.386401 ], [ -56.250000, -27.498527 ], [ -56.469727, -27.544806 ], [ -56.469727, -22.085640 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.132385, -25.547398 ], [ -53.629761, -26.123384 ], [ -53.648987, -26.922070 ], [ -54.492188, -27.474161 ], [ -55.162354, -27.880356 ], [ -56.250000, -28.815800 ], [ -56.291199, -28.851891 ], [ -56.469727, -29.034559 ], [ -56.469727, -27.544806 ], [ -56.250000, -27.498527 ], [ -55.697937, -27.386401 ], [ -54.788818, -26.620452 ], [ -54.626770, -25.738055 ], [ -54.132385, -25.547398 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Uruguay", "sov_a3": "URY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uruguay", "adm0_a3": "URY", "geou_dif": 0, "geounit": "Uruguay", "gu_a3": "URY", "su_dif": 0, "subunit": "Uruguay", "su_a3": "URY", "brk_diff": 0, "name": "Uruguay", "name_long": "Uruguay", "brk_a3": "URY", "brk_name": "Uruguay", "abbrev": "Ury.", "postal": "UY", "formal_en": "Oriental Republic of Uruguay", "name_sort": "Uruguay", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 3494382, "gdp_md_est": 43160, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "UY", "iso_a3": "URY", "iso_n3": "858", "un_a3": "858", "wb_a2": "UY", "wb_a3": "URY", "woe_id": -99, "adm0_a3_is": "URY", "adm0_a3_us": "URY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.469727, -30.500751 ], [ -56.250000, -30.668628 ], [ -55.975342, -30.881012 ], [ -55.601807, -30.852721 ], [ -54.574585, -31.494262 ], [ -53.923645, -31.952162 ], [ -53.789062, -32.045333 ], [ -53.712158, -32.138409 ], [ -56.469727, -32.138409 ], [ -56.469727, -30.500751 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 17 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -44.780273, -10.962764 ], [ -44.780273, -22.146708 ], [ -56.324158, -22.146708 ], [ -56.469727, -22.085640 ], [ -56.469727, -10.962764 ], [ -44.780273, -10.962764 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Paraguay", "sov_a3": "PRY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Paraguay", "adm0_a3": "PRY", "geou_dif": 0, "geounit": "Paraguay", "gu_a3": "PRY", "su_dif": 0, "subunit": "Paraguay", "su_a3": "PRY", "brk_diff": 0, "name": "Paraguay", "name_long": "Paraguay", "brk_a3": "PRY", "brk_name": "Paraguay", "abbrev": "Para.", "postal": "PY", "formal_en": "Republic of Paraguay", "name_sort": "Paraguay", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 2, "pop_est": 6995655, "gdp_md_est": 28890, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PY", "iso_a3": "PRY", "iso_n3": "600", "un_a3": "600", "wb_a2": "PY", "wb_a3": "PRY", "woe_id": -99, "adm0_a3_is": "PRY", "adm0_a3_us": "PRY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.469727, -22.085640 ], [ -56.324158, -22.146708 ], [ -56.469727, -22.146708 ], [ -56.469727, -22.085640 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 16 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -50.696411, 0.219726 ], [ -50.471191, 0.000000 ], [ -50.388794, -0.076904 ], [ -48.622742, -0.233459 ], [ -48.587036, -1.235866 ], [ -47.826233, -0.579519 ], [ -46.568298, -0.939289 ], [ -45.000000, -1.515936 ], [ -44.906616, -1.551629 ], [ -44.780273, -1.699885 ], [ -44.780273, -11.393879 ], [ -56.469727, -11.393879 ], [ -56.469727, 0.219726 ], [ -50.696411, 0.219726 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Suriname", "sov_a3": "SUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Suriname", "adm0_a3": "SUR", "geou_dif": 0, "geounit": "Suriname", "gu_a3": "SUR", "su_dif": 0, "subunit": "Suriname", "su_a3": "SUR", "brk_diff": 0, "name": "Suriname", "name_long": "Suriname", "brk_a3": "SUR", "brk_name": "Suriname", "abbrev": "Sur.", "postal": "SR", "formal_en": "Republic of Suriname", "name_sort": "Suriname", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 481267, "gdp_md_est": 4254, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "SR", "iso_a3": "SUR", "iso_n3": "740", "un_a3": "740", "wb_a2": "SR", "wb_a3": "SUR", "woe_id": -99, "adm0_a3_is": "SUR", "adm0_a3_us": "SUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.033264, 6.025848 ], [ -53.959351, 5.758105 ], [ -54.481201, 4.899414 ], [ -54.401550, 4.214943 ], [ -54.008789, 3.620330 ], [ -54.181824, 3.189879 ], [ -54.269714, 2.734557 ], [ -54.525146, 2.311994 ], [ -55.099182, 2.526037 ], [ -55.571594, 2.421764 ], [ -55.975342, 2.512317 ], [ -56.074219, 2.221428 ], [ -55.906677, 2.023810 ], [ -55.997314, 1.817932 ], [ -56.250000, 1.856365 ], [ -56.469727, 1.889306 ], [ -56.469727, 5.861939 ], [ -56.250000, 5.823687 ], [ -55.950623, 5.774501 ], [ -55.843506, 5.954827 ], [ -55.033264, 6.025848 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.959351, 5.758105 ], [ -52.882690, 5.410945 ], [ -51.825256, 4.568211 ], [ -51.660461, 4.157419 ], [ -52.250977, 3.241982 ], [ -52.558594, 2.506829 ], [ -52.940369, 2.125367 ], [ -53.421021, 2.054003 ], [ -53.555603, 2.336693 ], [ -53.780823, 2.377857 ], [ -54.088440, 2.106154 ], [ -54.525146, 2.311994 ], [ -54.272461, 2.740044 ], [ -54.184570, 3.195364 ], [ -54.011536, 3.623071 ], [ -54.401550, 4.214943 ], [ -54.481201, 4.899414 ], [ -53.959351, 5.758105 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ -51.319885, 4.203986 ], [ -51.069946, 3.650482 ], [ -50.509644, 1.903031 ], [ -49.976807, 1.738320 ], [ -49.949341, 1.046390 ], [ -50.701904, 0.225219 ], [ -50.471191, 0.000000 ], [ -50.388794, -0.076904 ], [ -48.798523, -0.219726 ], [ -56.469727, -0.219726 ], [ -56.469727, 1.889306 ], [ -56.250000, 1.856365 ], [ -55.997314, 1.817932 ], [ -55.906677, 2.023810 ], [ -56.074219, 2.221428 ], [ -55.975342, 2.512317 ], [ -55.571594, 2.421764 ], [ -55.099182, 2.526037 ], [ -54.525146, 2.311994 ], [ -54.088440, 2.106154 ], [ -53.780823, 2.377857 ], [ -53.555603, 2.336693 ], [ -53.421021, 2.054003 ], [ -52.940369, 2.125367 ], [ -52.558594, 2.506829 ], [ -52.250977, 3.241982 ], [ -51.660461, 4.157419 ], [ -51.319885, 4.203986 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -53.555603, 49.066668 ], [ -53.616028, 48.922499 ], [ -53.786316, 48.518424 ], [ -53.088684, 48.689147 ], [ -52.959595, 48.158757 ], [ -52.649231, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.522644, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.962097, 47.626529 ], [ -54.242249, 47.754098 ], [ -55.401306, 46.886477 ], [ -56.000061, 46.920255 ], [ -55.291443, 47.390912 ], [ -56.250000, 47.633933 ], [ -56.252747, 47.633933 ], [ -56.469727, 47.620975 ], [ -56.469727, 49.066668 ], [ -53.555603, 49.066668 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": [ [ [ [ -56.469727, 49.983020 ], [ -56.250000, 50.095917 ], [ -56.145630, 50.150506 ], [ -55.472717, 49.937080 ], [ -55.824280, 49.587568 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.478699, 49.249879 ], [ -53.616028, 48.922499 ], [ -53.676453, 48.777913 ], [ -56.469727, 48.777913 ], [ -56.469727, 49.983020 ] ] ], [ [ [ -56.469727, 53.701585 ], [ -56.250000, 53.664171 ], [ -56.159363, 53.647894 ], [ -55.758362, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.250000, 51.854442 ], [ -56.409302, 51.771239 ], [ -56.469727, 51.742337 ], [ -56.469727, 53.701585 ] ] ], [ [ [ -56.469727, 50.245448 ], [ -56.469727, 51.395778 ], [ -56.250000, 51.483093 ], [ -55.873718, 51.633362 ], [ -55.409546, 51.589016 ], [ -55.601807, 51.318597 ], [ -56.134644, 50.687758 ], [ -56.250000, 50.536126 ], [ -56.469727, 50.245448 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.780273, 61.710706 ], [ -44.780273, 60.037417 ], [ -44.788513, 60.037417 ], [ -45.000000, 60.156543 ], [ -46.266174, 60.854276 ], [ -48.265686, 60.859626 ], [ -49.235229, 61.407236 ], [ -49.369812, 61.606396 ], [ -49.438477, 61.710706 ], [ -44.780273, 61.710706 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.780273, 66.600676 ], [ -44.780273, 61.501734 ], [ -49.298401, 61.501734 ], [ -49.369812, 61.606396 ], [ -49.902649, 62.384004 ], [ -51.635742, 63.627965 ], [ -52.141113, 64.279184 ], [ -52.278442, 65.177265 ], [ -53.662720, 66.100494 ], [ -53.462219, 66.513260 ], [ -53.418274, 66.600676 ], [ -44.780273, 66.600676 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.780273, 70.685421 ], [ -44.780273, 66.425537 ], [ -53.506165, 66.425537 ], [ -53.462219, 66.513260 ], [ -53.302917, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.357686 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.147898 ], [ -50.872192, 69.929358 ], [ -52.014771, 69.575772 ], [ -52.558594, 69.426691 ], [ -53.456726, 69.284342 ], [ -54.684448, 69.610249 ], [ -54.750366, 70.290043 ], [ -54.514160, 70.612614 ], [ -54.461975, 70.685421 ], [ -52.275696, 70.685421 ], [ -51.718140, 70.612614 ], [ -51.391296, 70.570631 ], [ -51.506653, 70.612614 ], [ -51.701660, 70.685421 ], [ -44.780273, 70.685421 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.780273, 74.079925 ], [ -44.780273, 70.539543 ], [ -54.569092, 70.539543 ], [ -54.514160, 70.612614 ], [ -54.360352, 70.822129 ], [ -53.432007, 70.836560 ], [ -51.718140, 70.612614 ], [ -51.391296, 70.570631 ], [ -51.506653, 70.612614 ], [ -53.110657, 71.205460 ], [ -54.006042, 71.547525 ], [ -55.000305, 71.407048 ], [ -55.835266, 71.655020 ], [ -54.720154, 72.586583 ], [ -55.327148, 72.959120 ], [ -56.120911, 73.650226 ], [ -56.250000, 73.768104 ], [ -56.469727, 73.965768 ], [ -56.469727, 74.079925 ], [ -44.780273, 74.079925 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.780273, 76.890745 ], [ -44.780273, 73.958939 ], [ -56.464233, 73.958939 ], [ -56.469727, 73.965768 ], [ -56.469727, 76.890745 ], [ -44.780273, 76.890745 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.780273, 79.212538 ], [ -44.780273, 76.790701 ], [ -56.469727, 76.790701 ], [ -56.469727, 79.212538 ], [ -44.780273, 79.212538 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.780273, 81.127169 ], [ -44.780273, 79.129976 ], [ -56.469727, 79.129976 ], [ -56.469727, 81.127169 ], [ -44.780273, 81.127169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -44.780273, 81.701809 ], [ -44.780273, 81.059130 ], [ -56.469727, 81.059130 ], [ -56.469727, 82.192980 ], [ -56.250000, 82.193726 ], [ -54.135132, 82.199693 ], [ -53.044739, 81.888381 ], [ -50.391541, 82.439013 ], [ -48.004761, 82.065101 ], [ -46.601257, 81.986228 ], [ -45.000000, 81.736620 ], [ -44.780273, 81.701809 ] ] ], [ [ [ -44.780273, 81.720815 ], [ -45.000000, 81.772072 ], [ -46.903381, 82.200065 ], [ -46.766052, 82.628162 ], [ -46.502380, 82.676285 ], [ -46.351318, 82.704241 ], [ -44.780273, 82.704241 ], [ -44.780273, 81.720815 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 11, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.780273, 82.987093 ], [ -44.780273, 82.648222 ], [ -46.656189, 82.648222 ], [ -46.502380, 82.676285 ], [ -45.000000, 82.948087 ], [ -44.780273, 82.987093 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 18 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -40.913086, -21.739091 ], [ -40.946045, -21.935403 ], [ -40.957031, -21.943046 ], [ -41.756287, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.965980 ], [ -44.648438, -23.349821 ], [ -45.000000, -23.574057 ], [ -45.219727, -23.712439 ], [ -45.219727, -21.739091 ], [ -40.913086, -21.739091 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 17 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -36.968994, -10.962764 ], [ -37.048645, -11.038255 ], [ -37.125549, -11.178402 ], [ -37.685852, -12.170911 ], [ -38.424683, -13.036669 ], [ -38.674622, -13.055399 ], [ -38.954773, -13.792739 ], [ -38.883362, -15.665354 ], [ -39.163513, -17.206394 ], [ -39.267883, -17.866361 ], [ -39.583740, -18.260653 ], [ -39.762268, -19.598607 ], [ -40.775757, -20.902437 ], [ -40.946045, -21.935403 ], [ -40.957031, -21.943046 ], [ -41.336060, -22.146708 ], [ -45.219727, -22.146708 ], [ -45.219727, -10.962764 ], [ -36.968994, -10.962764 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 16 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ -45.219727, -1.433566 ], [ -45.000000, -1.515936 ], [ -44.906616, -1.551629 ], [ -44.417725, -2.136346 ], [ -44.582520, -2.690661 ], [ -43.420715, -2.380601 ], [ -41.473389, -2.910125 ], [ -39.979248, -2.871722 ], [ -38.501587, -3.699819 ], [ -37.224426, -4.820049 ], [ -36.455383, -5.107358 ], [ -35.598450, -5.148392 ], [ -35.235901, -5.462896 ], [ -34.898071, -6.735531 ], [ -34.730530, -7.340675 ], [ -35.128784, -8.996313 ], [ -35.639648, -9.646785 ], [ -37.048645, -11.038255 ], [ -37.125549, -11.178402 ], [ -37.246399, -11.393879 ], [ -45.219727, -11.393879 ], [ -45.219727, -1.433566 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -42.522583, 61.710706 ], [ -42.580261, 61.606396 ], [ -43.379517, 60.099088 ], [ -44.788513, 60.037417 ], [ -45.000000, 60.156543 ], [ -45.219727, 60.279324 ], [ -45.219727, 61.710706 ], [ -42.522583, 61.710706 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -34.450378, 66.600676 ], [ -34.719543, 66.513260 ], [ -36.353760, 65.978916 ], [ -37.045898, 65.938634 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.459402 ], [ -40.671387, 64.840765 ], [ -40.685120, 64.139369 ], [ -41.190491, 63.483636 ], [ -42.821960, 62.682968 ], [ -42.418213, 61.901459 ], [ -42.580261, 61.606396 ], [ -42.635193, 61.501734 ], [ -45.219727, 61.501734 ], [ -45.219727, 66.600676 ], [ -34.450378, 66.600676 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.530273, 70.685421 ], [ -33.530273, 67.195518 ], [ -33.750000, 67.028876 ], [ -34.203186, 66.680174 ], [ -34.719543, 66.513260 ], [ -34.991455, 66.425537 ], [ -45.219727, 66.425537 ], [ -45.219727, 70.685421 ], [ -33.530273, 70.685421 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.530273, 74.079925 ], [ -33.530273, 70.539543 ], [ -45.219727, 70.539543 ], [ -45.219727, 74.079925 ], [ -33.530273, 74.079925 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.530273, 76.890745 ], [ -33.530273, 73.958939 ], [ -45.219727, 73.958939 ], [ -45.219727, 76.890745 ], [ -33.530273, 76.890745 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.530273, 79.212538 ], [ -33.530273, 76.790701 ], [ -45.219727, 76.790701 ], [ -45.219727, 79.212538 ], [ -33.530273, 79.212538 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.530273, 81.127169 ], [ -33.530273, 79.129976 ], [ -45.219727, 79.129976 ], [ -45.219727, 81.127169 ], [ -33.530273, 81.127169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.530273, 82.704241 ], [ -33.530273, 81.059130 ], [ -45.219727, 81.059130 ], [ -45.219727, 81.771285 ], [ -45.000000, 81.736620 ], [ -44.524841, 81.660880 ], [ -45.000000, 81.772072 ], [ -45.219727, 81.822622 ], [ -45.219727, 82.704241 ], [ -33.530273, 82.704241 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 12, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.090332, 83.645406 ], [ -33.750000, 83.624396 ], [ -33.530273, 83.621040 ], [ -33.530273, 82.648222 ], [ -45.219727, 82.648222 ], [ -45.219727, 82.908864 ], [ -45.000000, 82.948087 ], [ -43.406982, 83.225420 ], [ -39.899597, 83.180235 ], [ -38.622437, 83.549234 ], [ -35.090332, 83.645406 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 13, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iceland", "sov_a3": "ISL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iceland", "adm0_a3": "ISL", "geou_dif": 0, "geounit": "Iceland", "gu_a3": "ISL", "su_dif": 0, "subunit": "Iceland", "su_a3": "ISL", "brk_diff": 0, "name": "Iceland", "name_long": "Iceland", "brk_a3": "ISL", "brk_name": "Iceland", "abbrev": "Iceland", "postal": "IS", "formal_en": "Republic of Iceland", "name_sort": "Iceland", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 306694, "gdp_md_est": 12710, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IS", "iso_a3": "ISL", "iso_n3": "352", "un_a3": "352", "wb_a2": "IS", "wb_a3": "ISL", "woe_id": -99, "adm0_a3_is": "ISL", "adm0_a3_us": "ISL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.280273, 65.385147 ], [ -22.500000, 65.409160 ], [ -24.326477, 65.611818 ], [ -23.650818, 66.263540 ], [ -22.500000, 66.374956 ], [ -22.280273, 66.396961 ], [ -22.280273, 65.385147 ] ] ], [ [ [ -22.280273, 64.178876 ], [ -22.280273, 63.905980 ], [ -22.500000, 63.931338 ], [ -22.763672, 63.960291 ], [ -22.500000, 64.079404 ], [ -22.280273, 64.178876 ] ] ], [ [ [ -22.280273, 65.075603 ], [ -22.280273, 64.516552 ], [ -22.500000, 64.566139 ], [ -23.955688, 64.892093 ], [ -22.500000, 65.051285 ], [ -22.280273, 65.075603 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 13, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -25.350952, 70.685421 ], [ -25.513000, 70.612614 ], [ -26.364441, 70.226957 ], [ -23.727722, 70.184172 ], [ -22.500000, 70.135698 ], [ -22.351685, 70.130098 ], [ -22.500000, 70.081498 ], [ -25.029602, 69.259067 ], [ -27.748718, 68.470856 ], [ -30.673828, 68.125553 ], [ -31.777954, 68.121459 ], [ -32.813416, 67.735476 ], [ -33.750000, 67.028876 ], [ -33.969727, 66.860003 ], [ -33.969727, 70.685421 ], [ -25.350952, 70.685421 ] ] ], [ [ [ -22.280273, 70.685421 ], [ -22.280273, 70.607143 ], [ -22.500000, 70.583418 ], [ -23.538208, 70.471717 ], [ -23.818359, 70.612614 ], [ -23.963928, 70.685421 ], [ -22.280273, 70.685421 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 13, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.280273, 74.079925 ], [ -22.280273, 73.309725 ], [ -22.500000, 73.308936 ], [ -23.568420, 73.307358 ], [ -22.500000, 72.732297 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.184325 ], [ -22.500000, 72.227132 ], [ -24.279785, 72.598087 ], [ -24.793396, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.500000, 71.642914 ], [ -22.280273, 71.538830 ], [ -22.280273, 70.607143 ], [ -22.906494, 70.539543 ], [ -23.672791, 70.539543 ], [ -23.818359, 70.612614 ], [ -24.307251, 70.857286 ], [ -25.545959, 71.431552 ], [ -25.202637, 70.752534 ], [ -25.513000, 70.612614 ], [ -25.675049, 70.539543 ], [ -33.969727, 70.539543 ], [ -33.969727, 74.079925 ], [ -22.280273, 74.079925 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 13, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.280273, 76.890745 ], [ -22.280273, 73.958939 ], [ -33.969727, 73.958939 ], [ -33.969727, 76.890745 ], [ -22.280273, 76.890745 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 13, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.280273, 79.212538 ], [ -22.280273, 76.790701 ], [ -33.969727, 76.790701 ], [ -33.969727, 79.212538 ], [ -22.280273, 79.212538 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 13, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.280273, 81.127169 ], [ -22.280273, 79.129976 ], [ -33.969727, 79.129976 ], [ -33.969727, 81.127169 ], [ -22.280273, 81.127169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 13, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.280273, 82.704241 ], [ -22.280273, 82.429248 ], [ -22.692261, 82.341904 ], [ -26.518250, 82.297857 ], [ -31.901550, 82.200065 ], [ -31.398926, 82.021759 ], [ -27.858582, 82.131931 ], [ -24.845581, 81.786995 ], [ -22.903748, 82.093487 ], [ -22.500000, 81.921257 ], [ -22.280273, 81.826138 ], [ -22.280273, 81.627353 ], [ -22.500000, 81.512599 ], [ -23.170166, 81.152974 ], [ -22.500000, 81.252109 ], [ -22.280273, 81.284631 ], [ -22.280273, 81.059130 ], [ -33.969727, 81.059130 ], [ -33.969727, 82.704241 ], [ -22.280273, 82.704241 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 13, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.969727, 83.627750 ], [ -33.750000, 83.624396 ], [ -27.100525, 83.519852 ], [ -22.500000, 82.945388 ], [ -22.280273, 82.916997 ], [ -22.280273, 82.648222 ], [ -33.969727, 82.648222 ], [ -33.969727, 83.627750 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Guinea Bissau", "sov_a3": "GNB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea Bissau", "adm0_a3": "GNB", "geou_dif": 0, "geounit": "Guinea Bissau", "gu_a3": "GNB", "su_dif": 0, "subunit": "Guinea Bissau", "su_a3": "GNB", "brk_diff": 0, "name": "Guinea-Bissau", "name_long": "Guinea-Bissau", "brk_a3": "GNB", "brk_name": "Guinea-Bissau", "abbrev": "GnB.", "postal": "GW", "formal_en": "Republic of Guinea-Bissau", "name_sort": "Guinea-Bissau", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 1533964, "gdp_md_est": 904.2, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GW", "iso_a3": "GNB", "iso_n3": "624", "un_a3": "624", "wb_a2": "GW", "wb_a3": "GNB", "woe_id": -99, "adm0_a3_is": "GNB", "adm0_a3_us": "GNB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 13, "long_len": 13, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.809570, 11.393879 ], [ -15.004578, 11.178402 ], [ -15.130920, 11.040951 ], [ -15.306702, 11.178402 ], [ -15.584106, 11.393879 ], [ -14.809570, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guinea", "sov_a3": "GIN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea", "adm0_a3": "GIN", "geou_dif": 0, "geounit": "Guinea", "gu_a3": "GIN", "su_dif": 0, "subunit": "Guinea", "su_a3": "GIN", "brk_diff": 0, "name": "Guinea", "name_long": "Guinea", "brk_a3": "GIN", "brk_name": "Guinea", "abbrev": "Gin.", "postal": "GN", "formal_en": "Republic of Guinea", "name_sort": "Guinea", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 10057975, "gdp_md_est": 10600, "pop_year": -99, "lastcensus": 1996, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GN", "iso_a3": "GIN", "iso_n3": "324", "un_a3": "324", "wb_a2": "GN", "wb_a3": "GIN", "woe_id": -99, "adm0_a3_is": "GIN", "adm0_a3_us": "GIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, 11.393879 ], [ -11.030273, 9.936388 ], [ -11.118164, 10.047289 ], [ -11.917419, 10.047289 ], [ -12.150879, 9.860628 ], [ -12.428284, 9.836273 ], [ -12.598572, 9.622414 ], [ -12.713928, 9.343382 ], [ -13.246765, 8.904067 ], [ -13.686218, 9.495117 ], [ -14.076233, 9.887687 ], [ -14.331665, 10.017539 ], [ -14.581604, 10.214922 ], [ -14.694214, 10.657909 ], [ -14.839783, 10.879162 ], [ -15.130920, 11.040951 ], [ -15.004578, 11.178402 ], [ -14.809570, 11.393879 ], [ -11.030273, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Sierra Leone", "sov_a3": "SLE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sierra Leone", "adm0_a3": "SLE", "geou_dif": 0, "geounit": "Sierra Leone", "gu_a3": "SLE", "su_dif": 0, "subunit": "Sierra Leone", "su_a3": "SLE", "brk_diff": 0, "name": "Sierra Leone", "name_long": "Sierra Leone", "brk_a3": "SLE", "brk_name": "Sierra Leone", "abbrev": "S.L.", "postal": "SL", "formal_en": "Republic of Sierra Leone", "name_sort": "Sierra Leone", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 6440053, "gdp_md_est": 4285, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SL", "iso_a3": "SLE", "iso_n3": "694", "un_a3": "694", "wb_a2": "SL", "wb_a3": "SLE", "woe_id": -99, "adm0_a3_is": "SLE", "adm0_a3_us": "SLE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.118164, 10.047289 ], [ -11.030273, 9.936388 ], [ -11.030273, 7.539487 ], [ -11.148376, 7.397877 ], [ -11.200562, 7.106344 ], [ -11.250000, 7.040927 ], [ -11.439514, 6.787353 ], [ -11.708679, 6.860985 ], [ -12.428284, 7.264394 ], [ -12.950134, 7.800800 ], [ -13.125916, 8.165274 ], [ -13.246765, 8.904067 ], [ -12.713928, 9.343382 ], [ -12.598572, 9.622414 ], [ -12.428284, 9.836273 ], [ -12.150879, 9.860628 ], [ -11.917419, 10.047289 ], [ -11.118164, 10.047289 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Liberia", "sov_a3": "LBR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Liberia", "adm0_a3": "LBR", "geou_dif": 0, "geounit": "Liberia", "gu_a3": "LBR", "su_dif": 0, "subunit": "Liberia", "su_a3": "LBR", "brk_diff": 0, "name": "Liberia", "name_long": "Liberia", "brk_a3": "LBR", "brk_name": "Liberia", "abbrev": "Liberia", "postal": "LR", "formal_en": "Republic of Liberia", "name_sort": "Liberia", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 3441790, "gdp_md_est": 1526, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "LR", "iso_a3": "LBR", "iso_n3": "430", "un_a3": "430", "wb_a2": "LR", "wb_a3": "LBR", "woe_id": -99, "adm0_a3_is": "LBR", "adm0_a3_us": "LBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, 7.539487 ], [ -11.030273, 6.397189 ], [ -11.250000, 6.607316 ], [ -11.439514, 6.787353 ], [ -11.250000, 7.040927 ], [ -11.200562, 7.106344 ], [ -11.148376, 7.397877 ], [ -11.030273, 7.539487 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 7, "sovereignt": "Western Sahara", "sov_a3": "SAH", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Western Sahara", "adm0_a3": "SAH", "geou_dif": 0, "geounit": "Western Sahara", "gu_a3": "SAH", "su_dif": 0, "subunit": "Western Sahara", "su_a3": "SAH", "brk_diff": 1, "name": "W. Sahara", "name_long": "Western Sahara", "brk_a3": "B28", "brk_name": "W. Sahara", "abbrev": "W. Sah.", "postal": "WS", "formal_en": "Sahrawi Arab Democratic Republic", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Morocco", "name_sort": "Western Sahara", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 4, "mapcolor13": 4, "pop_est": -99, "gdp_md_est": -99, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "EH", "iso_a3": "ESH", "iso_n3": "732", "un_a3": "732", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "SAH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 14, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.038025, 22.146708 ], [ -13.010559, 21.943046 ], [ -12.930908, 21.327757 ], [ -16.847534, 21.335432 ], [ -17.064514, 20.999907 ], [ -17.020569, 21.422390 ], [ -14.751892, 21.501630 ], [ -14.631042, 21.861499 ], [ -14.556885, 21.943046 ], [ -14.372864, 22.146708 ], [ -13.038025, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.372864, 22.146708 ], [ -14.556885, 21.943046 ], [ -14.631042, 21.861499 ], [ -14.751892, 21.501630 ], [ -17.020569, 21.422390 ], [ -16.973877, 21.886987 ], [ -16.894226, 21.943046 ], [ -16.605835, 22.146708 ], [ -14.372864, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "name_sort": "Senegal", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.578857, 16.599346 ], [ -14.100952, 16.304323 ], [ -13.436279, 16.040534 ], [ -12.832031, 15.305380 ], [ -12.172852, 14.618136 ], [ -12.126160, 13.995372 ], [ -11.928406, 13.424352 ], [ -11.554871, 13.143678 ], [ -11.469727, 12.755553 ], [ -11.516418, 12.444623 ], [ -11.659241, 12.388294 ], [ -12.205811, 12.466078 ], [ -12.279968, 12.356100 ], [ -12.499695, 12.334636 ], [ -13.219299, 12.576010 ], [ -15.551147, 12.629618 ], [ -15.817566, 12.517028 ], [ -16.149902, 12.549202 ], [ -16.679993, 12.385611 ], [ -16.842041, 13.151702 ], [ -15.932922, 13.130304 ], [ -15.691223, 13.272026 ], [ -15.512695, 13.280046 ], [ -15.141907, 13.509826 ], [ -14.713440, 13.298757 ], [ -14.279480, 13.282719 ], [ -13.845520, 13.507155 ], [ -14.048767, 13.795406 ], [ -14.378357, 13.627303 ], [ -14.688721, 13.632641 ], [ -15.084229, 13.878079 ], [ -15.400085, 13.862080 ], [ -15.625305, 13.624633 ], [ -16.715698, 13.595269 ], [ -17.127686, 14.376155 ], [ -17.627563, 14.729730 ], [ -17.185364, 14.920900 ], [ -16.701965, 15.623037 ], [ -16.465759, 16.135539 ], [ -16.122437, 16.457159 ], [ -15.625305, 16.370215 ], [ -15.136414, 16.588817 ], [ -14.578857, 16.599346 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Gambia", "sov_a3": "GMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gambia", "adm0_a3": "GMB", "geou_dif": 0, "geounit": "Gambia", "gu_a3": "GMB", "su_dif": 0, "subunit": "Gambia", "su_a3": "GMB", "brk_diff": 0, "name": "Gambia", "name_long": "The Gambia", "brk_a3": "GMB", "brk_name": "Gambia", "abbrev": "Gambia", "postal": "GM", "formal_en": "Republic of the Gambia", "name_sort": "Gambia, The", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 1782893, "gdp_md_est": 2272, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GM", "iso_a3": "GMB", "iso_n3": "270", "un_a3": "270", "wb_a2": "GM", "wb_a3": "GMB", "woe_id": -99, "adm0_a3_is": "GMB", "adm0_a3_us": "GMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.084229, 13.878079 ], [ -14.688721, 13.632641 ], [ -14.378357, 13.627303 ], [ -14.048767, 13.795406 ], [ -13.845520, 13.507155 ], [ -14.279480, 13.282719 ], [ -14.713440, 13.298757 ], [ -15.141907, 13.509826 ], [ -15.512695, 13.280046 ], [ -15.691223, 13.272026 ], [ -15.932922, 13.130304 ], [ -16.842041, 13.151702 ], [ -16.715698, 13.595269 ], [ -15.625305, 13.624633 ], [ -15.400085, 13.862080 ], [ -15.084229, 13.878079 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Guinea Bissau", "sov_a3": "GNB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea Bissau", "adm0_a3": "GNB", "geou_dif": 0, "geounit": "Guinea Bissau", "gu_a3": "GNB", "su_dif": 0, "subunit": "Guinea Bissau", "su_a3": "GNB", "brk_diff": 0, "name": "Guinea-Bissau", "name_long": "Guinea-Bissau", "brk_a3": "GNB", "brk_name": "Guinea-Bissau", "abbrev": "GnB.", "postal": "GW", "formal_en": "Republic of Guinea-Bissau", "name_sort": "Guinea-Bissau", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 1533964, "gdp_md_est": 904.2, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GW", "iso_a3": "GNB", "iso_n3": "624", "un_a3": "624", "wb_a2": "GW", "wb_a3": "GNB", "woe_id": -99, "adm0_a3_is": "GNB", "adm0_a3_us": "GNB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 13, "long_len": 13, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.551147, 12.629618 ], [ -13.702698, 12.586732 ], [ -13.719177, 12.248760 ], [ -13.829041, 12.144061 ], [ -13.743896, 11.813588 ], [ -13.903198, 11.679135 ], [ -14.122925, 11.679135 ], [ -14.383850, 11.509631 ], [ -14.685974, 11.528470 ], [ -15.004578, 11.178402 ], [ -15.130920, 11.040951 ], [ -15.306702, 11.178402 ], [ -15.666504, 11.458491 ], [ -16.086731, 11.525779 ], [ -16.317444, 11.808211 ], [ -16.309204, 11.958723 ], [ -16.614075, 12.173595 ], [ -16.679993, 12.385611 ], [ -16.149902, 12.549202 ], [ -15.817566, 12.517028 ], [ -15.551147, 12.629618 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guinea", "sov_a3": "GIN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea", "adm0_a3": "GIN", "geou_dif": 0, "geounit": "Guinea", "gu_a3": "GIN", "su_dif": 0, "subunit": "Guinea", "su_a3": "GIN", "brk_diff": 0, "name": "Guinea", "name_long": "Guinea", "brk_a3": "GIN", "brk_name": "Guinea", "abbrev": "Gin.", "postal": "GN", "formal_en": "Republic of Guinea", "name_sort": "Guinea", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 10057975, "gdp_md_est": 10600, "pop_year": -99, "lastcensus": 1996, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GN", "iso_a3": "GIN", "iso_n3": "324", "un_a3": "324", "wb_a2": "GN", "wb_a3": "GIN", "woe_id": -99, "adm0_a3_is": "GIN", "adm0_a3_us": "GIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.702698, 12.586732 ], [ -13.219299, 12.576010 ], [ -12.499695, 12.334636 ], [ -12.279968, 12.356100 ], [ -12.205811, 12.466078 ], [ -11.659241, 12.388294 ], [ -11.516418, 12.444623 ], [ -11.458740, 12.076924 ], [ -11.299438, 12.079610 ], [ -11.250000, 12.103781 ], [ -11.038513, 12.213865 ], [ -11.030273, 12.211180 ], [ -11.030273, 10.962764 ], [ -14.993591, 10.962764 ], [ -15.130920, 11.040951 ], [ -15.004578, 11.178402 ], [ -14.685974, 11.528470 ], [ -14.383850, 11.509631 ], [ -14.122925, 11.679135 ], [ -13.903198, 11.679135 ], [ -13.743896, 11.813588 ], [ -13.829041, 12.144061 ], [ -13.719177, 12.248760 ], [ -13.702698, 12.586732 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, 22.146708 ], [ -11.030273, 15.284185 ], [ -11.250000, 15.374247 ], [ -11.351624, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.835022, 14.801439 ], [ -12.172852, 14.618136 ], [ -12.832031, 15.305380 ], [ -13.436279, 16.040534 ], [ -14.100952, 16.304323 ], [ -14.578857, 16.599346 ], [ -15.136414, 16.588817 ], [ -15.625305, 16.370215 ], [ -16.122437, 16.457159 ], [ -16.465759, 16.135539 ], [ -16.550903, 16.675662 ], [ -16.270752, 17.167034 ], [ -16.147156, 18.109308 ], [ -16.257019, 19.098458 ], [ -16.377869, 19.596019 ], [ -16.278992, 20.094627 ], [ -16.537170, 20.568510 ], [ -17.064514, 20.999907 ], [ -16.847534, 21.335432 ], [ -12.930908, 21.327757 ], [ -13.010559, 21.943046 ], [ -13.038025, 22.146708 ], [ -11.030273, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.351624, 15.411319 ], [ -11.250000, 15.374247 ], [ -11.030273, 15.284185 ], [ -11.030273, 12.211180 ], [ -11.038513, 12.213865 ], [ -11.250000, 12.103781 ], [ -11.299438, 12.079610 ], [ -11.458740, 12.076924 ], [ -11.516418, 12.444623 ], [ -11.469727, 12.755553 ], [ -11.554871, 13.143678 ], [ -11.928406, 13.424352 ], [ -12.126160, 13.995372 ], [ -12.172852, 14.618136 ], [ -11.835022, 14.801439 ], [ -11.667480, 15.390136 ], [ -11.351624, 15.411319 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 7, "sovereignt": "Western Sahara", "sov_a3": "SAH", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Western Sahara", "adm0_a3": "SAH", "geou_dif": 0, "geounit": "Western Sahara", "gu_a3": "SAH", "su_dif": 0, "subunit": "Western Sahara", "su_a3": "SAH", "brk_diff": 1, "name": "W. Sahara", "name_long": "Western Sahara", "brk_a3": "B28", "brk_name": "W. Sahara", "abbrev": "W. Sah.", "postal": "WS", "formal_en": "Sahrawi Arab Democratic Republic", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Morocco", "name_sort": "Western Sahara", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 4, "mapcolor13": 4, "pop_est": -99, "gdp_md_est": -99, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "EH", "iso_a3": "ESH", "iso_n3": "732", "un_a3": "732", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "SAH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 14, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, 26.931865 ], [ -11.030273, 25.918526 ], [ -11.250000, 25.923467 ], [ -11.969604, 25.935817 ], [ -11.939392, 23.375035 ], [ -12.875977, 23.286765 ], [ -13.120422, 22.773649 ], [ -13.010559, 21.943046 ], [ -12.983093, 21.739091 ], [ -14.672241, 21.739091 ], [ -14.631042, 21.861499 ], [ -14.556885, 21.943046 ], [ -14.221802, 22.311967 ], [ -13.892212, 23.692320 ], [ -12.502441, 24.771772 ], [ -12.032776, 26.032106 ], [ -11.719666, 26.106121 ], [ -11.392822, 26.885330 ], [ -11.250000, 26.902477 ], [ -11.030273, 26.931865 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, 28.721905 ], [ -11.030273, 26.931865 ], [ -11.250000, 26.902477 ], [ -11.392822, 26.885330 ], [ -11.719666, 26.106121 ], [ -12.032776, 26.032106 ], [ -12.502441, 24.771772 ], [ -13.892212, 23.692320 ], [ -14.221802, 22.311967 ], [ -14.556885, 21.943046 ], [ -14.631042, 21.861499 ], [ -14.672241, 21.739091 ], [ -16.990356, 21.739091 ], [ -16.973877, 21.886987 ], [ -16.894226, 21.943046 ], [ -16.589355, 22.159427 ], [ -16.262512, 22.679916 ], [ -16.328430, 23.019076 ], [ -15.985107, 23.725012 ], [ -15.427551, 24.359608 ], [ -15.089722, 24.522137 ], [ -14.826050, 25.105497 ], [ -14.801331, 25.636574 ], [ -14.441528, 26.256473 ], [ -13.774109, 26.620452 ], [ -13.142395, 27.642173 ], [ -12.620544, 28.040471 ], [ -11.689453, 28.149503 ], [ -11.030273, 28.721905 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.969604, 25.935817 ], [ -11.250000, 25.923467 ], [ -11.030273, 25.918526 ], [ -11.030273, 21.739091 ], [ -12.983093, 21.739091 ], [ -13.010559, 21.943046 ], [ -13.120422, 22.773649 ], [ -12.875977, 23.286765 ], [ -11.939392, 23.375035 ], [ -11.969604, 25.935817 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iceland", "sov_a3": "ISL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iceland", "adm0_a3": "ISL", "geou_dif": 0, "geounit": "Iceland", "gu_a3": "ISL", "su_dif": 0, "subunit": "Iceland", "su_a3": "ISL", "brk_diff": 0, "name": "Iceland", "name_long": "Iceland", "brk_a3": "ISL", "brk_name": "Iceland", "abbrev": "Iceland", "postal": "IS", "formal_en": "Republic of Iceland", "name_sort": "Iceland", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 306694, "gdp_md_est": 12710, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IS", "iso_a3": "ISL", "iso_n3": "352", "un_a3": "352", "wb_a2": "IS", "wb_a3": "ISL", "woe_id": -99, "adm0_a3_is": "ISL", "adm0_a3_us": "ISL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.169128, 66.527486 ], [ -15.853271, 66.513260 ], [ -14.510193, 66.456275 ], [ -14.740906, 65.809530 ], [ -13.612061, 65.127638 ], [ -14.911194, 64.364873 ], [ -17.795105, 63.679160 ], [ -18.657532, 63.497122 ], [ -19.973145, 63.643821 ], [ -22.500000, 63.931338 ], [ -22.719727, 63.955467 ], [ -22.719727, 63.980781 ], [ -22.500000, 64.079404 ], [ -21.780396, 64.402872 ], [ -22.500000, 64.566139 ], [ -22.719727, 64.615636 ], [ -22.719727, 65.026945 ], [ -22.500000, 65.051285 ], [ -22.186890, 65.086018 ], [ -22.228088, 65.379427 ], [ -22.500000, 65.409160 ], [ -22.719727, 65.434293 ], [ -22.719727, 66.354035 ], [ -22.500000, 66.374956 ], [ -22.137451, 66.411253 ], [ -20.577393, 65.732884 ], [ -19.058533, 66.276803 ], [ -17.800598, 65.994564 ], [ -16.210327, 66.513260 ], [ -16.169128, 66.527486 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.719727, 70.559664 ], [ -22.719727, 70.685421 ], [ -21.763916, 70.685421 ], [ -21.755676, 70.664516 ], [ -22.228088, 70.612614 ], [ -22.500000, 70.583418 ], [ -22.719727, 70.559664 ] ] ], [ [ [ -22.719727, 70.145029 ], [ -22.500000, 70.135698 ], [ -22.351685, 70.130098 ], [ -22.500000, 70.081498 ], [ -22.719727, 70.011201 ], [ -22.719727, 70.145029 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iceland", "sov_a3": "ISL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iceland", "adm0_a3": "ISL", "geou_dif": 0, "geounit": "Iceland", "gu_a3": "ISL", "su_dif": 0, "subunit": "Iceland", "su_a3": "ISL", "brk_diff": 0, "name": "Iceland", "name_long": "Iceland", "brk_a3": "ISL", "brk_name": "Iceland", "abbrev": "Iceland", "postal": "IS", "formal_en": "Republic of Iceland", "name_sort": "Iceland", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 306694, "gdp_md_est": 12710, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IS", "iso_a3": "ISL", "iso_n3": "352", "un_a3": "352", "wb_a2": "IS", "wb_a3": "ISL", "woe_id": -99, "adm0_a3_is": "ISL", "adm0_a3_us": "ISL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.169128, 66.527486 ], [ -15.853271, 66.513260 ], [ -14.510193, 66.456275 ], [ -14.521179, 66.425537 ], [ -16.482239, 66.425537 ], [ -16.210327, 66.513260 ], [ -16.169128, 66.527486 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.719727, 73.308936 ], [ -22.719727, 74.079925 ], [ -21.181641, 74.079925 ], [ -21.008606, 74.019543 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.173157, 73.309725 ], [ -22.500000, 73.308936 ], [ -22.719727, 73.308936 ] ] ], [ [ [ -22.719727, 71.745571 ], [ -22.500000, 71.642914 ], [ -22.134705, 71.469124 ], [ -21.755676, 70.664516 ], [ -22.228088, 70.612614 ], [ -22.719727, 70.559664 ], [ -22.719727, 71.745571 ] ] ], [ [ [ -22.719727, 72.852551 ], [ -22.500000, 72.732297 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.184325 ], [ -22.500000, 72.227132 ], [ -22.719727, 72.273185 ], [ -22.719727, 72.852551 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -20.316467, 76.890745 ], [ -20.577393, 76.840816 ], [ -21.681519, 76.628432 ], [ -19.835815, 76.098157 ], [ -19.599609, 75.248861 ], [ -20.670776, 75.156266 ], [ -19.374390, 74.296206 ], [ -21.596375, 74.223935 ], [ -21.008606, 74.019543 ], [ -20.838318, 73.958939 ], [ -22.719727, 73.958939 ], [ -22.719727, 76.890745 ], [ -20.316467, 76.890745 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -19.138184, 79.212538 ], [ -19.190369, 79.171335 ], [ -19.706726, 78.751731 ], [ -19.673767, 77.638894 ], [ -18.473511, 76.985717 ], [ -20.036316, 76.944832 ], [ -20.577393, 76.840816 ], [ -20.841064, 76.790701 ], [ -22.719727, 76.790701 ], [ -22.719727, 79.212538 ], [ -19.138184, 79.212538 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.180847, 81.127169 ], [ -13.378601, 81.093214 ], [ -16.287231, 80.580292 ], [ -16.850281, 80.350092 ], [ -20.047302, 80.177308 ], [ -17.731934, 80.129399 ], [ -18.901978, 79.400085 ], [ -19.190369, 79.171335 ], [ -19.242554, 79.129976 ], [ -22.719727, 79.129976 ], [ -22.719727, 81.127169 ], [ -13.180847, 81.127169 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.719727, 81.219886 ], [ -22.500000, 81.252109 ], [ -20.624084, 81.524751 ], [ -15.770874, 81.912760 ], [ -12.771606, 81.719233 ], [ -12.208557, 81.291703 ], [ -13.378601, 81.093214 ], [ -13.576355, 81.059130 ], [ -22.719727, 81.059130 ], [ -22.719727, 81.219886 ] ] ], [ [ [ -22.719727, 82.341538 ], [ -22.719727, 82.704241 ], [ -20.956421, 82.704241 ], [ -21.093750, 82.676285 ], [ -22.500000, 82.382789 ], [ -22.692261, 82.341904 ], [ -22.719727, 82.341538 ] ] ], [ [ [ -22.719727, 82.015657 ], [ -22.500000, 81.921257 ], [ -22.074280, 81.734646 ], [ -22.500000, 81.512599 ], [ -22.719727, 81.395872 ], [ -22.719727, 82.015657 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.719727, 82.974003 ], [ -22.500000, 82.945388 ], [ -20.846558, 82.726878 ], [ -21.093750, 82.676285 ], [ -21.231079, 82.648222 ], [ -22.719727, 82.648222 ], [ -22.719727, 82.974003 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guinea", "sov_a3": "GIN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea", "adm0_a3": "GIN", "geou_dif": 0, "geounit": "Guinea", "gu_a3": "GIN", "su_dif": 0, "subunit": "Guinea", "su_a3": "GIN", "brk_diff": 0, "name": "Guinea", "name_long": "Guinea", "brk_a3": "GIN", "brk_name": "Guinea", "abbrev": "Gin.", "postal": "GN", "formal_en": "Republic of Guinea", "name_sort": "Guinea", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 10057975, "gdp_md_est": 10600, "pop_year": -99, "lastcensus": 1996, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GN", "iso_a3": "GIN", "iso_n3": "324", "un_a3": "324", "wb_a2": "GN", "wb_a3": "GIN", "woe_id": -99, "adm0_a3_is": "GIN", "adm0_a3_us": "GIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.377075, 11.393879 ], [ -8.550110, 11.178402 ], [ -8.583069, 11.137982 ], [ -8.621521, 10.811724 ], [ -8.410034, 10.911527 ], [ -8.283691, 10.792839 ], [ -8.335876, 10.495914 ], [ -8.031006, 10.206813 ], [ -8.231506, 10.131117 ], [ -8.311157, 9.790264 ], [ -8.080444, 9.378612 ], [ -7.833252, 8.578305 ], [ -8.204041, 8.456072 ], [ -8.300171, 8.317495 ], [ -8.223267, 8.124491 ], [ -8.280945, 7.689217 ], [ -8.440247, 7.686495 ], [ -8.723145, 7.713713 ], [ -8.926392, 7.310709 ], [ -9.209290, 7.316158 ], [ -9.404297, 7.528596 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.542998 ], [ -10.016785, 8.428904 ], [ -10.231018, 8.407168 ], [ -10.505676, 8.350106 ], [ -10.494690, 8.716789 ], [ -10.656738, 8.977323 ], [ -10.623779, 9.270201 ], [ -10.840759, 9.690106 ], [ -11.118164, 10.047289 ], [ -11.469727, 10.047289 ], [ -11.469727, 11.393879 ], [ -8.377075, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Sierra Leone", "sov_a3": "SLE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sierra Leone", "adm0_a3": "SLE", "geou_dif": 0, "geounit": "Sierra Leone", "gu_a3": "SLE", "su_dif": 0, "subunit": "Sierra Leone", "su_a3": "SLE", "brk_diff": 0, "name": "Sierra Leone", "name_long": "Sierra Leone", "brk_a3": "SLE", "brk_name": "Sierra Leone", "abbrev": "S.L.", "postal": "SL", "formal_en": "Republic of Sierra Leone", "name_sort": "Sierra Leone", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 6440053, "gdp_md_est": 4285, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SL", "iso_a3": "SLE", "iso_n3": "694", "un_a3": "694", "wb_a2": "SL", "wb_a3": "SLE", "woe_id": -99, "adm0_a3_is": "SLE", "adm0_a3_us": "SLE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.118164, 10.047289 ], [ -10.840759, 9.690106 ], [ -10.623779, 9.270201 ], [ -10.656738, 8.977323 ], [ -10.494690, 8.716789 ], [ -10.505676, 8.350106 ], [ -10.231018, 8.407168 ], [ -10.697937, 7.939556 ], [ -11.148376, 7.397877 ], [ -11.200562, 7.106344 ], [ -11.250000, 7.040927 ], [ -11.439514, 6.787353 ], [ -11.469727, 6.795535 ], [ -11.469727, 10.047289 ], [ -11.118164, 10.047289 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.199280, 11.393879 ], [ -5.199280, 11.377724 ], [ -5.325623, 11.178402 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.371660 ], [ -5.817261, 10.223031 ], [ -6.050720, 10.098670 ], [ -6.207275, 10.525619 ], [ -6.495667, 10.412183 ], [ -6.668701, 10.431092 ], [ -6.852722, 10.139228 ], [ -7.624512, 10.147339 ], [ -7.901917, 10.298706 ], [ -8.031006, 10.206813 ], [ -8.335876, 10.495914 ], [ -8.283691, 10.792839 ], [ -8.410034, 10.911527 ], [ -8.621521, 10.811724 ], [ -8.583069, 11.137982 ], [ -8.550110, 11.178402 ], [ -8.377075, 11.393879 ], [ -5.199280, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, 11.393879 ], [ 0.219727, 11.013993 ], [ 0.021973, 11.019384 ], [ 0.000000, 11.024776 ], [ -0.439453, 11.100252 ], [ -0.763550, 10.938495 ], [ -1.205750, 11.011297 ], [ -2.941589, 10.962764 ], [ -2.966309, 10.395975 ], [ -2.828979, 9.644077 ], [ -3.512878, 9.901216 ], [ -3.982544, 9.863334 ], [ -4.331360, 9.611582 ], [ -4.781799, 9.822742 ], [ -4.954834, 10.152746 ], [ -5.405273, 10.371660 ], [ -5.471191, 10.951978 ], [ -5.325623, 11.178402 ], [ -5.199280, 11.377724 ], [ -5.199280, 11.393879 ], [ 0.219727, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Liberia", "sov_a3": "LBR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Liberia", "adm0_a3": "LBR", "geou_dif": 0, "geounit": "Liberia", "gu_a3": "LBR", "su_dif": 0, "subunit": "Liberia", "su_a3": "LBR", "brk_diff": 0, "name": "Liberia", "name_long": "Liberia", "brk_a3": "LBR", "brk_name": "Liberia", "abbrev": "Liberia", "postal": "LR", "formal_en": "Republic of Liberia", "name_sort": "Liberia", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 3441790, "gdp_md_est": 1526, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "LR", "iso_a3": "LBR", "iso_n3": "430", "un_a3": "430", "wb_a2": "LR", "wb_a3": "LBR", "woe_id": -99, "adm0_a3_is": "LBR", "adm0_a3_us": "LBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.755859, 8.542998 ], [ -9.338379, 7.928675 ], [ -9.404297, 7.528596 ], [ -9.209290, 7.316158 ], [ -8.926392, 7.310709 ], [ -8.723145, 7.713713 ], [ -8.440247, 7.686495 ], [ -8.486938, 7.397877 ], [ -8.388062, 6.912794 ], [ -8.605042, 6.468151 ], [ -8.313904, 6.195168 ], [ -7.995300, 6.126900 ], [ -7.572327, 5.708914 ], [ -7.542114, 5.315236 ], [ -7.635498, 5.189423 ], [ -7.712402, 4.365582 ], [ -7.976074, 4.357366 ], [ -9.006042, 4.833733 ], [ -9.915161, 5.594118 ], [ -10.766602, 6.143286 ], [ -11.250000, 6.607316 ], [ -11.439514, 6.787353 ], [ -11.250000, 7.040927 ], [ -11.200562, 7.106344 ], [ -11.148376, 7.397877 ], [ -10.697937, 7.939556 ], [ -10.231018, 8.407168 ], [ -10.016785, 8.428904 ], [ -9.755859, 8.542998 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ivory Coast", "sov_a3": "CIV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ivory Coast", "adm0_a3": "CIV", "geou_dif": 0, "geounit": "Ivory Coast", "gu_a3": "CIV", "su_dif": 0, "subunit": "Ivory Coast", "su_a3": "CIV", "brk_diff": 0, "name": "Côte d'Ivoire", "name_long": "Côte d'Ivoire", "brk_a3": "CIV", "brk_name": "Côte d'Ivoire", "abbrev": "I.C.", "postal": "CI", "formal_en": "Republic of Ivory Coast", "formal_fr": "Republic of Cote D'Ivoire", "name_sort": "Côte d'Ivoire", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 20617068, "gdp_md_est": 33850, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CI", "iso_a3": "CIV", "iso_n3": "384", "un_a3": "384", "wb_a2": "CI", "wb_a3": "CIV", "woe_id": -99, "adm0_a3_is": "CIV", "adm0_a3_us": "CIV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 13, "long_len": 13, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.207275, 10.525619 ], [ -6.050720, 10.098670 ], [ -5.817261, 10.223031 ], [ -5.405273, 10.371660 ], [ -4.954834, 10.152746 ], [ -4.781799, 9.822742 ], [ -4.331360, 9.611582 ], [ -3.982544, 9.863334 ], [ -3.512878, 9.901216 ], [ -2.828979, 9.644077 ], [ -2.562561, 8.219646 ], [ -2.985535, 7.381534 ], [ -3.246460, 6.252507 ], [ -2.812500, 5.389070 ], [ -2.856445, 4.995186 ], [ -3.312378, 4.986977 ], [ -4.010010, 5.181217 ], [ -4.649963, 5.170276 ], [ -5.836487, 4.995186 ], [ -6.531372, 4.705091 ], [ -7.520142, 4.340934 ], [ -7.712402, 4.365582 ], [ -7.635498, 5.189423 ], [ -7.542114, 5.315236 ], [ -7.572327, 5.708914 ], [ -7.995300, 6.126900 ], [ -8.313904, 6.195168 ], [ -8.605042, 6.468151 ], [ -8.388062, 6.912794 ], [ -8.486938, 7.397877 ], [ -8.440247, 7.686495 ], [ -8.280945, 7.689217 ], [ -8.223267, 8.124491 ], [ -8.300171, 8.317495 ], [ -8.204041, 8.456072 ], [ -7.833252, 8.578305 ], [ -8.080444, 9.378612 ], [ -8.311157, 9.790264 ], [ -8.231506, 10.131117 ], [ -8.031006, 10.206813 ], [ -7.901917, 10.298706 ], [ -7.624512, 10.147339 ], [ -6.852722, 10.139228 ], [ -6.668701, 10.431092 ], [ -6.495667, 10.412183 ], [ -6.207275, 10.525619 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.100252 ], [ 0.000000, 11.024776 ], [ 0.021973, 11.019384 ], [ 0.000000, 10.919618 ], [ -0.052185, 10.709189 ], [ 0.000000, 10.647112 ], [ 0.219727, 10.374362 ], [ 0.219727, 5.615986 ], [ 0.000000, 5.533978 ], [ -0.508118, 5.345317 ], [ -1.065674, 5.000658 ], [ -1.966553, 4.710566 ], [ -2.856445, 4.995186 ], [ -2.812500, 5.389070 ], [ -3.246460, 6.252507 ], [ -2.985535, 7.381534 ], [ -2.562561, 8.219646 ], [ -2.828979, 9.644077 ], [ -2.966309, 10.395975 ], [ -2.941589, 10.962764 ], [ -1.205750, 11.011297 ], [ -0.763550, 10.938495 ], [ -0.439453, 11.100252 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.019384 ], [ 0.219727, 11.013993 ], [ 0.219727, 10.374362 ], [ 0.000000, 10.647112 ], [ -0.052185, 10.709189 ], [ 0.000000, 10.919618 ], [ 0.021973, 11.019384 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guinea", "sov_a3": "GIN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea", "adm0_a3": "GIN", "geou_dif": 0, "geounit": "Guinea", "gu_a3": "GIN", "su_dif": 0, "subunit": "Guinea", "su_a3": "GIN", "brk_diff": 0, "name": "Guinea", "name_long": "Guinea", "brk_a3": "GIN", "brk_name": "Guinea", "abbrev": "Gin.", "postal": "GN", "formal_en": "Republic of Guinea", "name_sort": "Guinea", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 10057975, "gdp_md_est": 10600, "pop_year": -99, "lastcensus": 1996, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GN", "iso_a3": "GIN", "iso_n3": "324", "un_a3": "324", "wb_a2": "GN", "wb_a3": "GIN", "woe_id": -99, "adm0_a3_is": "GIN", "adm0_a3_us": "GIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.330139, 12.334636 ], [ -9.129639, 12.310486 ], [ -8.907166, 12.090353 ], [ -8.786316, 11.813588 ], [ -8.377075, 11.393879 ], [ -8.550110, 11.178402 ], [ -8.583069, 11.137982 ], [ -8.602295, 10.962764 ], [ -11.469727, 10.962764 ], [ -11.469727, 12.162856 ], [ -11.458740, 12.076924 ], [ -11.299438, 12.079610 ], [ -11.250000, 12.103781 ], [ -11.038513, 12.213865 ], [ -10.870972, 12.178965 ], [ -10.593567, 11.926478 ], [ -10.167847, 11.845847 ], [ -9.893188, 12.060809 ], [ -9.569092, 12.195073 ], [ -9.330139, 12.334636 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.138611, 22.146708 ], [ -6.116638, 21.943046 ], [ -5.973816, 20.643066 ], [ -5.490417, 16.325411 ], [ -5.317383, 16.204125 ], [ -5.539856, 15.503972 ], [ -9.552612, 15.488092 ], [ -9.700928, 15.265638 ], [ -10.088196, 15.331870 ], [ -10.651245, 15.133113 ], [ -11.250000, 15.374247 ], [ -11.351624, 15.411319 ], [ -11.469727, 15.403376 ], [ -11.469727, 22.146708 ], [ -6.138611, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.546570, 22.146708 ], [ -0.230713, 21.943046 ], [ 0.000000, 21.795208 ], [ 0.219727, 21.652323 ], [ 0.219727, 14.928862 ], [ 0.000000, 14.928862 ], [ -0.266418, 14.926208 ], [ -0.516357, 15.117204 ], [ -1.068420, 14.973973 ], [ -2.002258, 14.559659 ], [ -2.194519, 14.248411 ], [ -2.969055, 13.800741 ], [ -3.106384, 13.541871 ], [ -3.523865, 13.338848 ], [ -4.007263, 13.475106 ], [ -4.281921, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.221252, 11.714099 ], [ -5.199280, 11.377724 ], [ -5.325623, 11.178402 ], [ -5.465698, 10.962764 ], [ -8.602295, 10.962764 ], [ -8.583069, 11.137982 ], [ -8.550110, 11.178402 ], [ -8.377075, 11.393879 ], [ -8.786316, 11.813588 ], [ -8.907166, 12.090353 ], [ -9.129639, 12.310486 ], [ -9.330139, 12.334636 ], [ -9.569092, 12.195073 ], [ -9.893188, 12.060809 ], [ -10.167847, 11.845847 ], [ -10.593567, 11.926478 ], [ -10.870972, 12.178965 ], [ -11.038513, 12.213865 ], [ -11.250000, 12.103781 ], [ -11.299438, 12.079610 ], [ -11.458740, 12.076924 ], [ -11.469727, 12.162856 ], [ -11.469727, 15.403376 ], [ -11.351624, 15.411319 ], [ -11.250000, 15.374247 ], [ -10.651245, 15.133113 ], [ -10.088196, 15.331870 ], [ -9.700928, 15.265638 ], [ -9.552612, 15.488092 ], [ -5.539856, 15.503972 ], [ -5.317383, 16.204125 ], [ -5.490417, 16.325411 ], [ -5.973816, 20.643066 ], [ -6.116638, 21.943046 ], [ -6.138611, 22.146708 ], [ -0.546570, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.516357, 15.117204 ], [ -0.266418, 14.926208 ], [ 0.000000, 14.928862 ], [ 0.219727, 14.928862 ], [ 0.219727, 11.013993 ], [ 0.021973, 11.019384 ], [ -0.439453, 11.100252 ], [ -0.711365, 10.962764 ], [ -0.920105, 10.962764 ], [ -1.205750, 11.011297 ], [ -2.938843, 10.962764 ], [ -5.465698, 10.962764 ], [ -5.325623, 11.178402 ], [ -5.199280, 11.377724 ], [ -5.221252, 11.714099 ], [ -4.427490, 12.543840 ], [ -4.281921, 13.229251 ], [ -4.007263, 13.475106 ], [ -3.523865, 13.338848 ], [ -3.106384, 13.541871 ], [ -2.969055, 13.800741 ], [ -2.194519, 14.248411 ], [ -2.002258, 14.559659 ], [ -1.068420, 14.973973 ], [ -0.516357, 15.117204 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -1.205750, 11.011297 ], [ -0.920105, 10.962764 ], [ -2.938843, 10.962764 ], [ -1.205750, 11.011297 ] ] ], [ [ [ 0.021973, 11.019384 ], [ 0.008240, 10.962764 ], [ -0.711365, 10.962764 ], [ -0.439453, 11.100252 ], [ 0.021973, 11.019384 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, 22.146708 ], [ 0.219727, 21.652323 ], [ 0.000000, 21.795208 ], [ -0.230713, 21.943046 ], [ -0.546570, 22.146708 ], [ 0.219727, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.019384 ], [ 0.219727, 11.013993 ], [ 0.219727, 10.962764 ], [ 0.008240, 10.962764 ], [ 0.021973, 11.019384 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 7, "sovereignt": "Western Sahara", "sov_a3": "SAH", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Western Sahara", "adm0_a3": "SAH", "geou_dif": 0, "geounit": "Western Sahara", "gu_a3": "SAH", "su_dif": 0, "subunit": "Western Sahara", "su_a3": "SAH", "brk_diff": 1, "name": "W. Sahara", "name_long": "Western Sahara", "brk_a3": "B28", "brk_name": "W. Sahara", "abbrev": "W. Sah.", "postal": "WS", "formal_en": "Sahrawi Arab Democratic Republic", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Morocco", "name_sort": "Western Sahara", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 4, "mapcolor13": 4, "pop_est": -99, "gdp_md_est": -99, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "EH", "iso_a3": "ESH", "iso_n3": "732", "un_a3": "732", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "SAH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 14, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.668213, 27.656771 ], [ -8.665466, 27.591066 ], [ -8.684692, 27.396155 ], [ -8.687439, 25.881466 ], [ -11.250000, 25.923467 ], [ -11.469727, 25.925937 ], [ -11.469727, 26.701453 ], [ -11.392822, 26.885330 ], [ -11.250000, 26.902477 ], [ -10.552368, 26.993066 ], [ -10.189819, 26.863281 ], [ -9.736633, 26.863281 ], [ -9.415283, 27.090918 ], [ -8.797302, 27.122702 ], [ -8.819275, 27.656771 ], [ -8.668213, 27.656771 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.276917, 32.138409 ], [ -2.617493, 32.096536 ], [ -2.793274, 31.952162 ], [ -3.070679, 31.725831 ], [ -3.650208, 31.639352 ], [ -3.691406, 30.897511 ], [ -4.861450, 30.503117 ], [ -5.243225, 30.002517 ], [ -6.061707, 29.733377 ], [ -7.061462, 29.580623 ], [ -8.676453, 28.842268 ], [ -8.668213, 27.656771 ], [ -8.819275, 27.656771 ], [ -8.797302, 27.122702 ], [ -9.415283, 27.090918 ], [ -9.736633, 26.863281 ], [ -10.189819, 26.863281 ], [ -10.552368, 26.993066 ], [ -11.250000, 26.902477 ], [ -11.392822, 26.885330 ], [ -11.469727, 26.701453 ], [ -11.469727, 28.340648 ], [ -11.250000, 28.531449 ], [ -10.901184, 28.832644 ], [ -10.401306, 29.099377 ], [ -9.566345, 29.935895 ], [ -9.816284, 31.179910 ], [ -9.472961, 31.952162 ], [ -9.437256, 32.038348 ], [ -9.409790, 32.138409 ], [ -2.276917, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.684692, 27.396155 ], [ -4.924622, 24.976099 ], [ -6.454468, 24.958670 ], [ -6.116638, 21.943046 ], [ -6.094666, 21.739091 ], [ -11.469727, 21.739091 ], [ -11.469727, 25.925937 ], [ -11.250000, 25.923467 ], [ -8.687439, 25.881466 ], [ -8.684692, 27.396155 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.924622, 24.976099 ], [ -1.551819, 22.793907 ], [ -0.230713, 21.943046 ], [ 0.085144, 21.739091 ], [ -6.094666, 21.739091 ], [ -6.116638, 21.943046 ], [ -6.454468, 24.958670 ], [ -4.924622, 24.976099 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, 32.138409 ], [ 0.219727, 21.739091 ], [ 0.085144, 21.739091 ], [ -0.230713, 21.943046 ], [ -1.551819, 22.793907 ], [ -4.924622, 24.976099 ], [ -8.684692, 27.396155 ], [ -8.665466, 27.591066 ], [ -8.676453, 28.842268 ], [ -7.061462, 29.580623 ], [ -6.061707, 29.733377 ], [ -5.243225, 30.002517 ], [ -4.861450, 30.503117 ], [ -3.691406, 30.897511 ], [ -3.650208, 31.639352 ], [ -3.070679, 31.725831 ], [ -2.793274, 31.952162 ], [ -2.617493, 32.096536 ], [ -2.276917, 32.138409 ], [ 0.219727, 32.138409 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Portugal", "sov_a3": "PRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Portugal", "adm0_a3": "PRT", "geou_dif": 0, "geounit": "Portugal", "gu_a3": "PRT", "su_dif": 1, "subunit": "Portugal", "su_a3": "PR1", "brk_diff": 0, "name": "Portugal", "name_long": "Portugal", "brk_a3": "PR1", "brk_name": "Portugal", "abbrev": "Port.", "postal": "P", "formal_en": "Portuguese Republic", "name_sort": "Portugal", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 10707924, "gdp_md_est": 208627, "pop_year": -99, "lastcensus": 2011, "gdp_year": 0, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PT", "iso_a3": "PRT", "iso_n3": "620", "un_a3": "620", "wb_a2": "PT", "wb_a3": "PRT", "woe_id": -99, "adm0_a3_is": "PRT", "adm0_a3_us": "PRT", "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": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.795044, 41.145570 ], [ -6.852722, 41.112469 ], [ -6.855469, 40.979898 ], [ -6.866455, 40.331890 ], [ -7.028503, 40.185168 ], [ -7.066956, 39.713525 ], [ -7.500916, 39.631077 ], [ -7.099915, 39.031986 ], [ -7.374573, 38.373962 ], [ -7.031250, 38.076204 ], [ -7.168579, 37.805444 ], [ -7.539368, 37.429069 ], [ -7.454224, 37.099003 ], [ -7.857971, 36.840065 ], [ -8.385315, 36.980615 ], [ -8.898926, 36.870832 ], [ -8.747864, 37.653383 ], [ -8.841248, 38.268376 ], [ -9.288940, 38.358888 ], [ -9.527893, 38.739088 ], [ -9.448242, 39.393755 ], [ -9.049988, 39.755769 ], [ -8.978577, 40.159984 ], [ -8.769836, 40.761821 ], [ -8.780823, 40.979898 ], [ -8.789062, 41.145570 ], [ -6.795044, 41.145570 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, 41.145570 ], [ 0.219727, 40.227121 ], [ 0.104370, 40.124291 ], [ 0.000000, 39.901309 ], [ -0.280151, 39.310925 ], [ 0.000000, 38.903858 ], [ 0.109863, 38.739088 ], [ 0.000000, 38.653343 ], [ -0.469666, 38.294248 ], [ -0.683899, 37.642510 ], [ -1.439209, 37.444335 ], [ -2.147827, 36.675028 ], [ -3.416748, 36.659606 ], [ -4.369812, 36.679433 ], [ -4.996033, 36.326190 ], [ -5.377808, 35.946883 ], [ -5.866699, 36.031332 ], [ -6.237488, 36.368222 ], [ -6.520386, 36.943307 ], [ -7.454224, 37.099003 ], [ -7.539368, 37.429069 ], [ -7.168579, 37.805444 ], [ -7.031250, 38.076204 ], [ -7.374573, 38.373962 ], [ -7.099915, 39.031986 ], [ -7.500916, 39.631077 ], [ -7.066956, 39.713525 ], [ -7.028503, 40.185168 ], [ -6.866455, 40.331890 ], [ -6.855469, 40.979898 ], [ -6.852722, 41.112469 ], [ -6.795044, 41.145570 ], [ 0.219727, 41.145570 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.932617, 35.762115 ], [ -5.196533, 35.755428 ], [ -4.592285, 35.330812 ], [ -3.641968, 35.400245 ], [ -2.606506, 35.180543 ], [ -2.172546, 35.169318 ], [ -1.793518, 34.529187 ], [ -1.735840, 33.920572 ], [ -1.389771, 32.865746 ], [ -1.126099, 32.653251 ], [ -1.310120, 32.263911 ], [ -2.617493, 32.096536 ], [ -2.793274, 31.952162 ], [ -3.021240, 31.765537 ], [ -9.558105, 31.765537 ], [ -9.472961, 31.952162 ], [ -9.437256, 32.038348 ], [ -9.302673, 32.565333 ], [ -8.659973, 33.240985 ], [ -7.654724, 33.699208 ], [ -6.913147, 34.111805 ], [ -6.245728, 35.146863 ], [ -5.932617, 35.762115 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, 36.117909 ], [ 0.219727, 31.765537 ], [ -3.021240, 31.765537 ], [ -2.793274, 31.952162 ], [ -2.617493, 32.096536 ], [ -1.310120, 32.263911 ], [ -1.126099, 32.653251 ], [ -1.389771, 32.865746 ], [ -1.735840, 33.920572 ], [ -1.793518, 34.529187 ], [ -2.172546, 35.169318 ], [ -1.211243, 35.715298 ], [ -0.129089, 35.889050 ], [ 0.000000, 35.973561 ], [ 0.219727, 36.117909 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, 49.066668 ], [ 0.219727, 42.609706 ], [ 0.000000, 42.664261 ], [ -1.505127, 43.034768 ], [ -1.903381, 43.423004 ], [ -1.384277, 44.024422 ], [ -1.194763, 46.016039 ], [ -2.227478, 47.064509 ], [ -2.963562, 47.570967 ], [ -4.493408, 47.954984 ], [ -4.595032, 48.685521 ], [ -3.295898, 48.902643 ], [ -1.617737, 48.645613 ], [ -1.694641, 48.922499 ], [ -1.735840, 49.066668 ], [ 0.219727, 49.066668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Portugal", "sov_a3": "PRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Portugal", "adm0_a3": "PRT", "geou_dif": 0, "geounit": "Portugal", "gu_a3": "PRT", "su_dif": 1, "subunit": "Portugal", "su_a3": "PR1", "brk_diff": 0, "name": "Portugal", "name_long": "Portugal", "brk_a3": "PR1", "brk_name": "Portugal", "abbrev": "Port.", "postal": "P", "formal_en": "Portuguese Republic", "name_sort": "Portugal", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 10707924, "gdp_md_est": 208627, "pop_year": -99, "lastcensus": 2011, "gdp_year": 0, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PT", "iso_a3": "PRT", "iso_n3": "620", "un_a3": "620", "wb_a2": "PT", "wb_a3": "PRT", "woe_id": -99, "adm0_a3_is": "PRT", "adm0_a3_us": "PRT", "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": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.264465, 42.281373 ], [ -8.014526, 41.791793 ], [ -7.424011, 41.793840 ], [ -7.253723, 41.918629 ], [ -6.668701, 41.883876 ], [ -6.391296, 41.382991 ], [ -6.852722, 41.112469 ], [ -6.855469, 40.979898 ], [ -6.858215, 40.813809 ], [ -8.772583, 40.813809 ], [ -8.780823, 40.979898 ], [ -8.791809, 41.184855 ], [ -8.992310, 41.543533 ], [ -9.036255, 41.881831 ], [ -8.673706, 42.134895 ], [ -8.264465, 42.281373 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.978821, 43.749273 ], [ -6.756592, 43.568452 ], [ -5.413513, 43.574422 ], [ -4.350586, 43.405047 ], [ -3.518372, 43.456906 ], [ -1.903381, 43.423004 ], [ -1.505127, 43.034768 ], [ 0.000000, 42.664261 ], [ 0.219727, 42.609706 ], [ 0.219727, 40.813809 ], [ -6.858215, 40.813809 ], [ -6.855469, 40.979898 ], [ -6.852722, 41.112469 ], [ -6.391296, 41.382991 ], [ -6.668701, 41.883876 ], [ -7.253723, 41.918629 ], [ -7.424011, 41.793840 ], [ -8.014526, 41.791793 ], [ -8.264465, 42.281373 ], [ -8.673706, 42.134895 ], [ -9.036255, 41.881831 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.026737 ], [ -7.978821, 43.749273 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ireland", "sov_a3": "IRL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ireland", "adm0_a3": "IRL", "geou_dif": 0, "geounit": "Ireland", "gu_a3": "IRL", "su_dif": 0, "subunit": "Ireland", "su_a3": "IRL", "brk_diff": 0, "name": "Ireland", "name_long": "Ireland", "brk_a3": "IRL", "brk_name": "Ireland", "abbrev": "Ire.", "postal": "IRL", "formal_en": "Ireland", "name_sort": "Ireland", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 4203200, "gdp_md_est": 188400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IE", "iso_a3": "IRL", "iso_n3": "372", "un_a3": "372", "wb_a2": "IE", "wb_a3": "IRL", "woe_id": -99, "adm0_a3_is": "IRL", "adm0_a3_us": "IRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.572327, 55.131790 ], [ -7.366333, 54.595937 ], [ -7.572327, 54.061000 ], [ -6.954346, 54.073894 ], [ -6.199036, 53.868725 ], [ -6.034241, 53.153359 ], [ -6.789551, 52.261434 ], [ -8.563843, 51.670852 ], [ -9.978333, 51.820500 ], [ -9.168091, 52.865814 ], [ -9.689941, 53.881679 ], [ -8.330383, 54.665889 ], [ -7.572327, 55.131790 ] ] ] } } +, +{ "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.079163, 55.899956 ], [ -1.985779, 55.776573 ], [ -1.115112, 54.626158 ], [ -0.431213, 54.465249 ], [ 0.000000, 53.672307 ], [ 0.184021, 53.325952 ], [ 0.219727, 53.278353 ], [ 0.219727, 50.769471 ], [ 0.000000, 50.771208 ], [ -0.788269, 50.776419 ], [ -2.491150, 50.501199 ], [ -2.958069, 50.698197 ], [ -3.619995, 50.229638 ], [ -4.542847, 50.341955 ], [ -5.245972, 49.960055 ], [ -5.778809, 50.161065 ], [ -4.312134, 51.210325 ], [ -3.416748, 51.426614 ], [ -4.985046, 51.594135 ], [ -5.267944, 51.991646 ], [ -4.224243, 52.301761 ], [ -4.770813, 52.840936 ], [ -4.581299, 53.496216 ], [ -3.092651, 53.404620 ], [ -2.947083, 53.985165 ], [ -3.630981, 54.615027 ], [ -4.844971, 54.791185 ], [ -5.083923, 55.062641 ], [ -4.721375, 55.509971 ], [ -5.039978, 55.776573 ], [ -5.048218, 55.784296 ], [ -5.059204, 55.776573 ], [ -5.586548, 55.311954 ], [ -5.616760, 55.776573 ], [ -5.622253, 55.899956 ], [ -2.079163, 55.899956 ] ] ], [ [ [ -6.734619, 55.174162 ], [ -5.663452, 54.556137 ], [ -6.199036, 53.868725 ], [ -6.954346, 54.073894 ], [ -7.572327, 54.061000 ], [ -7.366333, 54.595937 ], [ -7.572327, 55.131790 ], [ -6.734619, 55.174162 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.295898, 48.902643 ], [ -2.488403, 48.777913 ], [ -4.034729, 48.777913 ], [ -3.295898, 48.902643 ] ] ], [ [ [ -0.991516, 49.348388 ], [ 0.000000, 49.681847 ], [ 0.219727, 49.754654 ], [ 0.219727, 48.777913 ], [ -1.656189, 48.777913 ], [ -1.694641, 48.922499 ], [ -1.933594, 49.777717 ], [ -0.991516, 49.348388 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -3.007507, 58.635506 ], [ -4.075928, 57.554155 ], [ -3.056946, 57.690938 ], [ -1.961060, 57.685065 ], [ -2.221985, 56.871495 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.910734 ], [ -1.985779, 55.776573 ], [ -1.889648, 55.652798 ], [ -4.891663, 55.652798 ], [ -5.039978, 55.776573 ], [ -5.048218, 55.784296 ], [ -5.059204, 55.776573 ], [ -5.199280, 55.652798 ], [ -5.608521, 55.652798 ], [ -5.616760, 55.776573 ], [ -5.646973, 56.275386 ], [ -6.152344, 56.785836 ], [ -5.787048, 57.819892 ], [ -5.012512, 58.631217 ], [ -4.213257, 58.551061 ], [ -3.007507, 58.635506 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 16 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Gabon", "sov_a3": "GAB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gabon", "adm0_a3": "GAB", "geou_dif": 0, "geounit": "Gabon", "gu_a3": "GAB", "su_dif": 0, "subunit": "Gabon", "su_a3": "GAB", "brk_diff": 0, "name": "Gabon", "name_long": "Gabon", "brk_a3": "GAB", "brk_name": "Gabon", "abbrev": "Gabon", "postal": "GA", "formal_en": "Gabonese Republic", "name_sort": "Gabon", "mapcolor7": 6, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 1514993, "gdp_md_est": 21110, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "GA", "iso_a3": "GAB", "iso_n3": "266", "un_a3": "266", "wb_a2": "GA", "wb_a3": "GAB", "woe_id": -99, "adm0_a3_is": "GAB", "adm0_a3_us": "GAB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": 3, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 0.219726 ], [ 11.469727, -3.705300 ], [ 11.250000, -3.864255 ], [ 11.093445, -3.976601 ], [ 10.063477, -2.967727 ], [ 9.404297, -2.141835 ], [ 8.797302, -1.109550 ], [ 8.827515, -0.777259 ], [ 9.047241, -0.458674 ], [ 9.201050, 0.000000 ], [ 9.272461, 0.219726 ], [ 11.469727, 0.219726 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, -3.705300 ], [ 11.469727, -4.461427 ], [ 11.250000, -4.179333 ], [ 11.093445, -3.976601 ], [ 11.250000, -3.864255 ], [ 11.469727, -3.705300 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.373291, 11.393879 ], [ 1.274414, 11.178402 ], [ 1.241455, 11.111032 ], [ 0.898132, 10.997816 ], [ 0.021973, 11.019384 ], [ 0.000000, 11.024776 ], [ -0.219727, 11.062516 ], [ -0.219727, 11.393879 ], [ 1.373291, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.219727, 11.062516 ], [ 0.000000, 11.024776 ], [ 0.021973, 11.019384 ], [ 0.000000, 10.919618 ], [ -0.052185, 10.709189 ], [ 0.000000, 10.647112 ], [ 0.365295, 10.193297 ], [ 0.365295, 9.465317 ], [ 0.458679, 8.678779 ], [ 0.711365, 8.314777 ], [ 0.488892, 7.414219 ], [ 0.568542, 6.915521 ], [ 0.834961, 6.282539 ], [ 1.057434, 5.930240 ], [ 0.000000, 5.533978 ], [ -0.219727, 5.451959 ], [ -0.219727, 11.062516 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.019384 ], [ 0.898132, 10.997816 ], [ 0.771790, 10.471607 ], [ 1.076660, 10.177077 ], [ 1.422729, 9.825448 ], [ 1.461182, 9.335252 ], [ 1.664429, 9.129216 ], [ 1.617737, 6.833716 ], [ 1.864929, 6.143286 ], [ 1.057434, 5.930240 ], [ 0.834961, 6.282539 ], [ 0.568542, 6.915521 ], [ 0.488892, 7.414219 ], [ 0.711365, 8.314777 ], [ 0.458679, 8.678779 ], [ 0.365295, 9.465317 ], [ 0.365295, 10.193297 ], [ 0.000000, 10.647112 ], [ -0.052185, 10.709189 ], [ 0.000000, 10.919618 ], [ 0.021973, 11.019384 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Benin", "sov_a3": "BEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Benin", "adm0_a3": "BEN", "geou_dif": 0, "geounit": "Benin", "gu_a3": "BEN", "su_dif": 0, "subunit": "Benin", "su_a3": "BEN", "brk_diff": 0, "name": "Benin", "name_long": "Benin", "brk_a3": "BEN", "brk_name": "Benin", "abbrev": "Benin", "postal": "BJ", "formal_en": "Republic of Benin", "name_sort": "Benin", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 8791832, "gdp_md_est": 12830, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BJ", "iso_a3": "BEN", "iso_n3": "204", "un_a3": "204", "wb_a2": "BJ", "wb_a3": "BEN", "woe_id": -99, "adm0_a3_is": "BEN", "adm0_a3_us": "BEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.578796, 11.393879 ], [ 3.570557, 11.329253 ], [ 3.628235, 11.178402 ], [ 3.795776, 10.736175 ], [ 3.598022, 10.333834 ], [ 3.705139, 10.063516 ], [ 3.218994, 9.446352 ], [ 2.911377, 9.140063 ], [ 2.721863, 8.507687 ], [ 2.746582, 7.871544 ], [ 2.691650, 6.260697 ], [ 1.864929, 6.143286 ], [ 1.617737, 6.833716 ], [ 1.664429, 9.129216 ], [ 1.461182, 9.335252 ], [ 1.422729, 9.825448 ], [ 1.076660, 10.177077 ], [ 0.771790, 10.471607 ], [ 0.898132, 10.997816 ], [ 1.241455, 11.111032 ], [ 1.274414, 11.178402 ], [ 1.373291, 11.393879 ], [ 3.578796, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 11.393879 ], [ 11.469727, 6.847351 ], [ 11.250000, 6.738259 ], [ 11.057739, 6.645511 ], [ 10.494690, 7.057282 ], [ 10.115662, 7.040927 ], [ 9.522400, 6.454505 ], [ 9.231262, 6.446318 ], [ 8.756104, 5.482034 ], [ 8.497925, 4.773521 ], [ 7.459717, 4.412137 ], [ 7.080688, 4.466904 ], [ 6.696167, 4.242334 ], [ 5.896912, 4.264246 ], [ 5.361328, 4.888467 ], [ 5.031738, 5.613252 ], [ 4.323120, 6.271618 ], [ 3.573303, 6.260697 ], [ 2.691650, 6.260697 ], [ 2.746582, 7.871544 ], [ 2.721863, 8.507687 ], [ 2.911377, 9.140063 ], [ 3.218994, 9.446352 ], [ 3.705139, 10.063516 ], [ 3.598022, 10.333834 ], [ 3.795776, 10.736175 ], [ 3.628235, 11.178402 ], [ 3.570557, 11.329253 ], [ 3.578796, 11.393879 ], [ 11.469727, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Equatorial Guinea", "sov_a3": "GNQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Equatorial Guinea", "adm0_a3": "GNQ", "geou_dif": 0, "geounit": "Equatorial Guinea", "gu_a3": "GNQ", "su_dif": 0, "subunit": "Equatorial Guinea", "su_a3": "GNQ", "brk_diff": 0, "name": "Eq. Guinea", "name_long": "Equatorial Guinea", "brk_a3": "GNQ", "brk_name": "Eq. Guinea", "abbrev": "Eq. G.", "postal": "GQ", "formal_en": "Republic of Equatorial Guinea", "name_sort": "Equatorial Guinea", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 650702, "gdp_md_est": 14060, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "7. Least developed region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GQ", "iso_a3": "GNQ", "iso_n3": "226", "un_a3": "226", "wb_a2": "GQ", "wb_a3": "GNQ", "woe_id": -99, "adm0_a3_is": "GNQ", "adm0_a3_us": "GNQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 17, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.648743, 2.284551 ], [ 11.250000, 2.262595 ], [ 11.274719, 2.262595 ], [ 11.282959, 1.060120 ], [ 11.250000, 1.060120 ], [ 9.830017, 1.068358 ], [ 9.492188, 1.010690 ], [ 9.305420, 1.161725 ], [ 9.648743, 2.284551 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.494690, 7.057282 ], [ 11.057739, 6.645511 ], [ 11.250000, 6.738259 ], [ 11.469727, 6.847351 ], [ 11.469727, 2.290039 ], [ 11.274719, 2.262595 ], [ 11.250000, 2.262595 ], [ 9.648743, 2.284551 ], [ 9.794312, 3.074695 ], [ 9.404297, 3.735449 ], [ 8.945618, 3.905359 ], [ 8.742371, 4.354627 ], [ 8.486938, 4.497024 ], [ 8.497925, 4.773521 ], [ 8.756104, 5.482034 ], [ 9.231262, 6.446318 ], [ 9.522400, 6.454505 ], [ 10.115662, 7.040927 ], [ 10.494690, 7.057282 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Gabon", "sov_a3": "GAB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gabon", "adm0_a3": "GAB", "geou_dif": 0, "geounit": "Gabon", "gu_a3": "GAB", "su_dif": 0, "subunit": "Gabon", "su_a3": "GAB", "brk_diff": 0, "name": "Gabon", "name_long": "Gabon", "brk_a3": "GAB", "brk_name": "Gabon", "abbrev": "Gabon", "postal": "GA", "formal_en": "Gabonese Republic", "name_sort": "Gabon", "mapcolor7": 6, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 1514993, "gdp_md_est": 21110, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "GA", "iso_a3": "GAB", "iso_n3": "266", "un_a3": "266", "wb_a2": "GA", "wb_a3": "GAB", "woe_id": -99, "adm0_a3_is": "GAB", "adm0_a3_us": "GAB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": 3, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 2.290039 ], [ 11.469727, -0.219726 ], [ 9.126892, -0.219726 ], [ 9.201050, 0.000000 ], [ 9.288940, 0.269164 ], [ 9.492188, 1.010690 ], [ 9.830017, 1.068358 ], [ 11.250000, 1.060120 ], [ 11.282959, 1.060120 ], [ 11.274719, 2.262595 ], [ 11.469727, 2.290039 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.219727, 21.937950 ], [ 0.000000, 21.795208 ], [ 1.820984, 20.612220 ], [ 2.059937, 20.143628 ], [ 2.683411, 19.857144 ], [ 3.144836, 19.694314 ], [ 3.155823, 19.059522 ], [ 4.265442, 19.155547 ], [ 4.268188, 16.854491 ], [ 3.721619, 16.185662 ], [ 3.636475, 15.570128 ], [ 2.749329, 15.411319 ], [ 1.384277, 15.323923 ], [ 1.013489, 14.968667 ], [ 0.373535, 14.931516 ], [ 0.000000, 14.928862 ], [ -0.219727, 14.926208 ], [ -0.219727, 21.937950 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.373535, 14.931516 ], [ 0.293884, 14.445319 ], [ 0.428467, 13.990041 ], [ 0.991516, 13.336175 ], [ 1.021729, 12.851971 ], [ 2.175293, 12.626938 ], [ 2.153320, 11.942601 ], [ 1.933594, 11.641476 ], [ 1.444702, 11.549998 ], [ 1.274414, 11.178402 ], [ 1.241455, 11.111032 ], [ 0.898132, 10.997816 ], [ 0.021973, 11.019384 ], [ -0.219727, 11.062516 ], [ -0.219727, 14.926208 ], [ 0.000000, 14.928862 ], [ 0.373535, 14.931516 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.219727, 11.062516 ], [ 0.021973, 11.019384 ], [ 0.008240, 10.962764 ], [ -0.219727, 10.962764 ], [ -0.219727, 11.062516 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.610291, 22.146708 ], [ 9.244995, 21.943046 ], [ 8.572083, 21.568056 ], [ 5.677185, 19.603782 ], [ 4.265442, 19.155547 ], [ 3.155823, 19.059522 ], [ 3.144836, 19.694314 ], [ 2.683411, 19.857144 ], [ 2.059937, 20.143628 ], [ 1.820984, 20.612220 ], [ 0.000000, 21.795208 ], [ -0.219727, 21.937950 ], [ -0.219727, 22.146708 ], [ 9.610291, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 22.146708 ], [ 11.469727, 13.336175 ], [ 11.250000, 13.360227 ], [ 10.989075, 13.389620 ], [ 10.700684, 13.247966 ], [ 10.112915, 13.277373 ], [ 9.522400, 12.851971 ], [ 9.014282, 12.827870 ], [ 7.803040, 13.344193 ], [ 7.330627, 13.098205 ], [ 6.819763, 13.116930 ], [ 6.443481, 13.493802 ], [ 5.440979, 13.867414 ], [ 4.367065, 13.750057 ], [ 4.106140, 13.533860 ], [ 3.966064, 12.956383 ], [ 3.680420, 12.554564 ], [ 3.609009, 11.660306 ], [ 2.848206, 12.238023 ], [ 2.488403, 12.235339 ], [ 2.153320, 11.942601 ], [ 2.175293, 12.626938 ], [ 1.021729, 12.851971 ], [ 0.991516, 13.336175 ], [ 0.428467, 13.990041 ], [ 0.293884, 14.445319 ], [ 0.373535, 14.931516 ], [ 1.013489, 14.968667 ], [ 1.384277, 15.323923 ], [ 2.749329, 15.411319 ], [ 3.636475, 15.570128 ], [ 3.721619, 16.185662 ], [ 4.268188, 16.854491 ], [ 4.265442, 19.155547 ], [ 5.677185, 19.603782 ], [ 8.572083, 21.568056 ], [ 9.244995, 21.943046 ], [ 9.610291, 22.146708 ], [ 11.469727, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.019384 ], [ 0.898132, 10.997816 ], [ 0.889893, 10.962764 ], [ 0.008240, 10.962764 ], [ 0.021973, 11.019384 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Benin", "sov_a3": "BEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Benin", "adm0_a3": "BEN", "geou_dif": 0, "geounit": "Benin", "gu_a3": "BEN", "su_dif": 0, "subunit": "Benin", "su_a3": "BEN", "brk_diff": 0, "name": "Benin", "name_long": "Benin", "brk_a3": "BEN", "brk_name": "Benin", "abbrev": "Benin", "postal": "BJ", "formal_en": "Republic of Benin", "name_sort": "Benin", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 8791832, "gdp_md_est": 12830, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BJ", "iso_a3": "BEN", "iso_n3": "204", "un_a3": "204", "wb_a2": "BJ", "wb_a3": "BEN", "woe_id": -99, "adm0_a3_is": "BEN", "adm0_a3_us": "BEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.848206, 12.238023 ], [ 3.609009, 11.660306 ], [ 3.570557, 11.329253 ], [ 3.710632, 10.962764 ], [ 0.889893, 10.962764 ], [ 0.898132, 10.997816 ], [ 1.241455, 11.111032 ], [ 1.274414, 11.178402 ], [ 1.444702, 11.549998 ], [ 1.933594, 11.641476 ], [ 2.153320, 11.942601 ], [ 2.488403, 12.235339 ], [ 2.848206, 12.238023 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.440979, 13.867414 ], [ 6.443481, 13.493802 ], [ 6.819763, 13.116930 ], [ 7.330627, 13.098205 ], [ 7.803040, 13.344193 ], [ 9.014282, 12.827870 ], [ 9.522400, 12.851971 ], [ 10.112915, 13.277373 ], [ 10.700684, 13.247966 ], [ 10.989075, 13.389620 ], [ 11.250000, 13.360227 ], [ 11.469727, 13.336175 ], [ 11.469727, 10.962764 ], [ 3.710632, 10.962764 ], [ 3.570557, 11.329253 ], [ 3.609009, 11.660306 ], [ 3.680420, 12.554564 ], [ 3.966064, 12.956383 ], [ 4.106140, 13.533860 ], [ 4.367065, 13.750057 ], [ 5.440979, 13.867414 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.219727, 21.937950 ], [ 0.085144, 21.739091 ], [ -0.219727, 21.739091 ], [ -0.219727, 21.937950 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Tunisia", "sov_a3": "TUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tunisia", "adm0_a3": "TUN", "geou_dif": 0, "geounit": "Tunisia", "gu_a3": "TUN", "su_dif": 0, "subunit": "Tunisia", "su_a3": "TUN", "brk_diff": 0, "name": "Tunisia", "name_long": "Tunisia", "brk_a3": "TUN", "brk_name": "Tunisia", "abbrev": "Tun.", "postal": "TN", "formal_en": "Republic of Tunisia", "name_sort": "Tunisia", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 10486339, "gdp_md_est": 81710, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TN", "iso_a3": "TUN", "iso_n3": "788", "un_a3": "788", "wb_a2": "TN", "wb_a3": "TUN", "woe_id": -99, "adm0_a3_is": "TUN", "adm0_a3_us": "TUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.038513, 32.138409 ], [ 10.942383, 32.082575 ], [ 10.818787, 31.952162 ], [ 10.634766, 31.763202 ], [ 9.948120, 31.377089 ], [ 10.055237, 30.963479 ], [ 9.967346, 30.540973 ], [ 9.481201, 30.308874 ], [ 9.091187, 31.952162 ], [ 9.055481, 32.103516 ], [ 9.000549, 32.138409 ], [ 11.038513, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.000549, 32.138409 ], [ 9.055481, 32.103516 ], [ 9.091187, 31.952162 ], [ 9.481201, 30.308874 ], [ 9.805298, 29.425245 ], [ 9.857483, 28.960089 ], [ 9.681702, 28.144660 ], [ 9.755859, 27.688392 ], [ 9.626770, 27.142257 ], [ 9.714661, 26.512362 ], [ 9.319153, 26.096255 ], [ 9.909668, 25.366364 ], [ 9.948120, 24.938748 ], [ 10.302429, 24.379623 ], [ 10.769348, 24.564610 ], [ 11.250000, 24.282020 ], [ 11.469727, 24.151766 ], [ 11.469727, 23.180764 ], [ 11.250000, 23.059516 ], [ 9.244995, 21.943046 ], [ 8.882446, 21.739091 ], [ 0.085144, 21.739091 ], [ -0.219727, 21.937950 ], [ -0.219727, 32.138409 ], [ 9.000549, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 32.138409 ], [ 11.469727, 24.151766 ], [ 11.250000, 24.282020 ], [ 10.769348, 24.564610 ], [ 10.302429, 24.379623 ], [ 9.948120, 24.938748 ], [ 9.909668, 25.366364 ], [ 9.319153, 26.096255 ], [ 9.714661, 26.512362 ], [ 9.626770, 27.142257 ], [ 9.755859, 27.688392 ], [ 9.681702, 28.144660 ], [ 9.857483, 28.960089 ], [ 9.805298, 29.425245 ], [ 9.481201, 30.308874 ], [ 9.967346, 30.540973 ], [ 10.055237, 30.963479 ], [ 9.948120, 31.377089 ], [ 10.634766, 31.763202 ], [ 10.818787, 31.952162 ], [ 10.942383, 32.082575 ], [ 11.038513, 32.138409 ], [ 11.469727, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 23.180764 ], [ 11.469727, 21.739091 ], [ 8.882446, 21.739091 ], [ 9.244995, 21.943046 ], [ 11.250000, 23.059516 ], [ 11.469727, 23.180764 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.219727, 39.436193 ], [ -0.219727, 41.145570 ], [ 1.601257, 41.145570 ], [ 0.810242, 41.015138 ], [ 0.799255, 40.979898 ], [ 0.719604, 40.678555 ], [ 0.104370, 40.124291 ], [ 0.000000, 39.901309 ], [ -0.219727, 39.436193 ] ] ], [ [ [ -0.219727, 39.225870 ], [ 0.000000, 38.903858 ], [ 0.109863, 38.739088 ], [ 0.000000, 38.653343 ], [ -0.219727, 38.483695 ], [ -0.219727, 39.225870 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.264221, 41.145570 ], [ 9.404297, 40.979898 ], [ 9.808044, 40.501269 ], [ 9.667969, 39.179046 ], [ 9.214783, 39.240763 ], [ 8.805542, 38.908133 ], [ 8.426514, 39.172659 ], [ 8.388062, 40.380028 ], [ 8.157349, 40.950863 ], [ 8.709412, 40.901058 ], [ 8.838501, 40.979898 ], [ 9.104919, 41.145570 ], [ 9.264221, 41.145570 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Tunisia", "sov_a3": "TUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tunisia", "adm0_a3": "TUN", "geou_dif": 0, "geounit": "Tunisia", "gu_a3": "TUN", "su_dif": 0, "subunit": "Tunisia", "su_a3": "TUN", "brk_diff": 0, "name": "Tunisia", "name_long": "Tunisia", "brk_a3": "TUN", "brk_name": "Tunisia", "abbrev": "Tun.", "postal": "TN", "formal_en": "Republic of Tunisia", "name_sort": "Tunisia", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 10486339, "gdp_md_est": 81710, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TN", "iso_a3": "TUN", "iso_n3": "788", "un_a3": "788", "wb_a2": "TN", "wb_a3": "TUN", "woe_id": -99, "adm0_a3_is": "TUN", "adm0_a3_us": "TUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.508667, 37.350509 ], [ 10.209045, 37.230328 ], [ 10.178833, 36.725677 ], [ 11.027527, 37.092431 ], [ 11.098938, 36.901587 ], [ 10.599060, 36.410231 ], [ 10.590820, 35.949106 ], [ 10.936890, 35.699686 ], [ 10.807800, 34.834096 ], [ 10.148621, 34.332096 ], [ 10.338135, 33.785996 ], [ 10.854492, 33.770015 ], [ 11.107178, 33.293804 ], [ 11.250000, 33.236390 ], [ 11.469727, 33.146750 ], [ 11.469727, 32.879587 ], [ 11.431274, 32.370683 ], [ 11.250000, 32.263911 ], [ 10.942383, 32.082575 ], [ 10.818787, 31.952162 ], [ 10.640259, 31.765537 ], [ 9.135132, 31.765537 ], [ 9.055481, 32.103516 ], [ 8.437500, 32.507446 ], [ 8.429260, 32.750323 ], [ 7.610779, 33.344296 ], [ 7.522888, 34.098159 ], [ 8.140869, 34.655804 ], [ 8.374329, 35.480802 ], [ 8.217773, 36.434542 ], [ 8.418274, 36.947697 ], [ 9.508667, 37.350509 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.327881, 37.118716 ], [ 7.734375, 36.886211 ], [ 8.418274, 36.947697 ], [ 8.217773, 36.434542 ], [ 8.374329, 35.480802 ], [ 8.140869, 34.655804 ], [ 7.522888, 34.098159 ], [ 7.610779, 33.344296 ], [ 8.429260, 32.750323 ], [ 8.437500, 32.507446 ], [ 9.055481, 32.103516 ], [ 9.135132, 31.765537 ], [ -0.219727, 31.765537 ], [ -0.219727, 35.875698 ], [ -0.129089, 35.889050 ], [ 0.000000, 35.973561 ], [ 0.502625, 36.301845 ], [ 1.466675, 36.606709 ], [ 3.161316, 36.785092 ], [ 4.814758, 36.866438 ], [ 5.317383, 36.716871 ], [ 6.259460, 37.112146 ], [ 7.327881, 37.118716 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 32.879587 ], [ 11.469727, 31.765537 ], [ 10.640259, 31.765537 ], [ 10.818787, 31.952162 ], [ 10.942383, 32.082575 ], [ 11.250000, 32.263911 ], [ 11.431274, 32.370683 ], [ 11.469727, 32.879587 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.387817, 43.010673 ], [ 9.558105, 42.153223 ], [ 9.228516, 41.380930 ], [ 8.775330, 41.584634 ], [ 8.541870, 42.256984 ], [ 8.745117, 42.629917 ], [ 9.387817, 43.010673 ] ] ], [ [ [ 7.715149, 49.066668 ], [ 8.096924, 49.018058 ], [ 8.028259, 48.922499 ], [ 7.591553, 48.334343 ], [ 7.465210, 47.620975 ], [ 7.190552, 47.450380 ], [ 6.734619, 47.543164 ], [ 6.767578, 47.288545 ], [ 6.036987, 46.726683 ], [ 6.020508, 46.274834 ], [ 6.498413, 46.430285 ], [ 6.841736, 45.991237 ], [ 6.800537, 45.710015 ], [ 7.094421, 45.334771 ], [ 6.748352, 45.028892 ], [ 7.006531, 44.255036 ], [ 7.547607, 44.128999 ], [ 7.434998, 43.695680 ], [ 6.528625, 43.129052 ], [ 4.556580, 43.401056 ], [ 3.098145, 43.076913 ], [ 2.985535, 42.474123 ], [ 1.826477, 42.344335 ], [ 0.700378, 42.797416 ], [ 0.337830, 42.581400 ], [ 0.000000, 42.664261 ], [ -0.219727, 42.718768 ], [ -0.219727, 49.066668 ], [ 7.715149, 49.066668 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.700378, 42.797416 ], [ 1.826477, 42.344335 ], [ 2.985535, 42.474123 ], [ 3.037720, 41.894100 ], [ 2.090149, 41.226183 ], [ 0.810242, 41.015138 ], [ 0.799255, 40.979898 ], [ 0.755310, 40.813809 ], [ -0.219727, 40.813809 ], [ -0.219727, 42.718768 ], [ 0.000000, 42.664261 ], [ 0.337830, 42.581400 ], [ 0.700378, 42.797416 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 49.066668 ], [ 11.469727, 47.535747 ], [ 11.425781, 47.524620 ], [ 11.250000, 47.533893 ], [ 10.544128, 47.567261 ], [ 10.401306, 47.303447 ], [ 9.895935, 47.580231 ], [ 9.593811, 47.526475 ], [ 8.519897, 47.831596 ], [ 8.316650, 47.615421 ], [ 7.465210, 47.620975 ], [ 7.591553, 48.334343 ], [ 8.028259, 48.922499 ], [ 8.096924, 49.018058 ], [ 7.715149, 49.066668 ], [ 11.469727, 49.066668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Switzerland", "sov_a3": "CHE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Switzerland", "adm0_a3": "CHE", "geou_dif": 0, "geounit": "Switzerland", "gu_a3": "CHE", "su_dif": 0, "subunit": "Switzerland", "su_a3": "CHE", "brk_diff": 0, "name": "Switzerland", "name_long": "Switzerland", "brk_a3": "CHE", "brk_name": "Switzerland", "abbrev": "Switz.", "postal": "CH", "formal_en": "Swiss Confederation", "name_sort": "Switzerland", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 7604467, "gdp_md_est": 316700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CH", "iso_a3": "CHE", "iso_n3": "756", "un_a3": "756", "wb_a2": "CH", "wb_a3": "CHE", "woe_id": -99, "adm0_a3_is": "CHE", "adm0_a3_us": "CHE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 11, "long_len": 11, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.519897, 47.831596 ], [ 9.593811, 47.526475 ], [ 9.632263, 47.348128 ], [ 9.478455, 47.103784 ], [ 9.931641, 46.922131 ], [ 10.442505, 46.893985 ], [ 10.362854, 46.485156 ], [ 9.920654, 46.316584 ], [ 9.181824, 46.441642 ], [ 8.964844, 46.037016 ], [ 8.489685, 46.006501 ], [ 8.313904, 46.164614 ], [ 7.753601, 45.824971 ], [ 7.272949, 45.777102 ], [ 6.841736, 45.991237 ], [ 6.498413, 46.430285 ], [ 6.020508, 46.274834 ], [ 6.036987, 46.726683 ], [ 6.767578, 47.288545 ], [ 6.734619, 47.543164 ], [ 7.190552, 47.450380 ], [ 7.465210, 47.620975 ], [ 8.316650, 47.615421 ], [ 8.519897, 47.831596 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Austria", "sov_a3": "AUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Austria", "adm0_a3": "AUT", "geou_dif": 0, "geounit": "Austria", "gu_a3": "AUT", "su_dif": 0, "subunit": "Austria", "su_a3": "AUT", "brk_diff": 0, "name": "Austria", "name_long": "Austria", "brk_a3": "AUT", "brk_name": "Austria", "abbrev": "Aust.", "postal": "A", "formal_en": "Republic of Austria", "name_sort": "Austria", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 8210281, "gdp_md_est": 329500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AT", "iso_a3": "AUT", "iso_n3": "040", "un_a3": "040", "wb_a2": "AT", "wb_a3": "AUT", "woe_id": -99, "adm0_a3_is": "AUT", "adm0_a3_us": "AUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.895935, 47.580231 ], [ 10.401306, 47.303447 ], [ 10.544128, 47.567261 ], [ 11.250000, 47.533893 ], [ 11.425781, 47.524620 ], [ 11.469727, 47.535747 ], [ 11.469727, 46.997114 ], [ 11.250000, 46.957761 ], [ 11.162109, 46.942762 ], [ 11.046753, 46.753035 ], [ 10.442505, 46.893985 ], [ 9.931641, 46.922131 ], [ 9.478455, 47.103784 ], [ 9.632263, 47.348128 ], [ 9.593811, 47.526475 ], [ 9.895935, 47.580231 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209290, 41.211722 ], [ 9.404297, 40.979898 ], [ 9.544373, 40.813809 ], [ 8.212280, 40.813809 ], [ 8.157349, 40.950863 ], [ 8.709412, 40.901058 ], [ 8.838501, 40.979898 ], [ 9.209290, 41.211722 ] ] ], [ [ [ 11.469727, 46.997114 ], [ 11.469727, 42.159332 ], [ 11.250000, 42.315909 ], [ 11.189575, 42.356514 ], [ 10.511169, 42.932296 ], [ 10.198059, 43.921637 ], [ 9.700928, 44.038244 ], [ 8.887939, 44.367060 ], [ 8.426514, 44.231425 ], [ 7.849731, 43.769110 ], [ 7.434998, 43.695680 ], [ 7.547607, 44.128999 ], [ 7.006531, 44.255036 ], [ 6.748352, 45.028892 ], [ 7.094421, 45.334771 ], [ 6.800537, 45.710015 ], [ 6.841736, 45.991237 ], [ 7.272949, 45.777102 ], [ 7.753601, 45.824971 ], [ 8.313904, 46.164614 ], [ 8.489685, 46.006501 ], [ 8.964844, 46.037016 ], [ 9.181824, 46.441642 ], [ 9.920654, 46.316584 ], [ 10.362854, 46.485156 ], [ 10.442505, 46.893985 ], [ 11.046753, 46.753035 ], [ 11.162109, 46.942762 ], [ 11.250000, 46.957761 ], [ 11.469727, 46.997114 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "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": "Polygon", "coordinates": [ [ [ -0.219727, 54.078729 ], [ 0.000000, 53.672307 ], [ 0.184021, 53.325952 ], [ 0.469666, 52.930430 ], [ 1.680908, 52.739618 ], [ 1.557312, 52.101444 ], [ 1.049194, 51.806917 ], [ 1.447449, 51.291124 ], [ 0.549316, 50.765997 ], [ 0.000000, 50.771208 ], [ -0.219727, 50.771208 ], [ -0.219727, 54.078729 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.513123, 51.150063 ], [ 2.655945, 50.797255 ], [ 3.122864, 50.781629 ], [ 3.587036, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.798279, 49.986552 ], [ 5.671692, 49.530557 ], [ 5.896912, 49.443129 ], [ 6.185303, 49.464554 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.018058 ], [ 8.028259, 48.922499 ], [ 7.921143, 48.777913 ], [ -0.219727, 48.777913 ], [ -0.219727, 49.607150 ], [ 0.000000, 49.681847 ], [ 1.337585, 50.127622 ], [ 1.636963, 50.948045 ], [ 2.513123, 51.150063 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 10.077209, 55.899956 ], [ 9.953613, 55.776573 ], [ 9.648743, 55.471070 ], [ 9.920654, 54.983918 ], [ 9.280701, 54.832336 ], [ 8.525391, 54.963425 ], [ 8.118896, 55.517747 ], [ 8.110657, 55.776573 ], [ 8.107910, 55.899956 ], [ 10.077209, 55.899956 ] ] ], [ [ [ 11.469727, 55.899956 ], [ 11.469727, 55.136500 ], [ 11.250000, 55.254077 ], [ 11.041260, 55.365064 ], [ 10.903931, 55.776573 ], [ 10.901184, 55.781207 ], [ 11.431274, 55.899956 ], [ 11.469727, 55.899956 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Netherlands", "sov_a3": "NL1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Netherlands", "adm0_a3": "NLD", "geou_dif": 0, "geounit": "Netherlands", "gu_a3": "NLD", "su_dif": 0, "subunit": "Netherlands", "su_a3": "NLD", "brk_diff": 0, "name": "Netherlands", "name_long": "Netherlands", "brk_a3": "NLD", "brk_name": "Netherlands", "abbrev": "Neth.", "postal": "NL", "formal_en": "Kingdom of the Netherlands", "name_sort": "Netherlands", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 16715999, "gdp_md_est": 672000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NL", "iso_a3": "NLD", "iso_n3": "528", "un_a3": "528", "wb_a2": "NL", "wb_a3": "NLD", "woe_id": -99, "adm0_a3_is": "NLD", "adm0_a3_us": "NLD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.072693, 53.510918 ], [ 6.904907, 53.483143 ], [ 7.091675, 53.145123 ], [ 6.841736, 52.229482 ], [ 6.589050, 51.852746 ], [ 5.987549, 51.852746 ], [ 6.155090, 50.804199 ], [ 5.605774, 51.037940 ], [ 4.971313, 51.476251 ], [ 4.045715, 51.268789 ], [ 3.312378, 51.346054 ], [ 3.828735, 51.621427 ], [ 4.704895, 53.092375 ], [ 6.072693, 53.510918 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Belgium", "sov_a3": "BEL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belgium", "adm0_a3": "BEL", "geou_dif": 0, "geounit": "Belgium", "gu_a3": "BEL", "su_dif": 0, "subunit": "Belgium", "su_a3": "BEL", "brk_diff": 0, "name": "Belgium", "name_long": "Belgium", "brk_a3": "BEL", "brk_name": "Belgium", "abbrev": "Belg.", "postal": "B", "formal_en": "Kingdom of Belgium", "name_sort": "Belgium", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 10414336, "gdp_md_est": 389300, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "BE", "iso_a3": "BEL", "iso_n3": "056", "un_a3": "056", "wb_a2": "BE", "wb_a3": "BEL", "woe_id": -99, "adm0_a3_is": "BEL", "adm0_a3_us": "BEL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.971313, 51.476251 ], [ 5.605774, 51.037940 ], [ 6.155090, 50.804199 ], [ 6.042480, 50.129382 ], [ 5.781555, 50.090631 ], [ 5.671692, 49.530557 ], [ 4.798279, 49.986552 ], [ 4.284668, 49.908787 ], [ 3.587036, 50.380502 ], [ 3.122864, 50.781629 ], [ 2.655945, 50.797255 ], [ 2.513123, 51.150063 ], [ 3.312378, 51.346054 ], [ 4.045715, 51.268789 ], [ 4.971313, 51.476251 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Luxembourg", "sov_a3": "LUX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Luxembourg", "adm0_a3": "LUX", "geou_dif": 0, "geounit": "Luxembourg", "gu_a3": "LUX", "su_dif": 0, "subunit": "Luxembourg", "su_a3": "LUX", "brk_diff": 0, "name": "Luxembourg", "name_long": "Luxembourg", "brk_a3": "LUX", "brk_name": "Luxembourg", "abbrev": "Lux.", "postal": "L", "formal_en": "Grand Duchy of Luxembourg", "name_sort": "Luxembourg", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 491775, "gdp_md_est": 39370, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "LU", "iso_a3": "LUX", "iso_n3": "442", "un_a3": "442", "wb_a2": "LU", "wb_a3": "LUX", "woe_id": -99, "adm0_a3_is": "LUX", "adm0_a3_us": "LUX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.042480, 50.129382 ], [ 6.240234, 49.903480 ], [ 6.185303, 49.464554 ], [ 5.896912, 49.443129 ], [ 5.671692, 49.530557 ], [ 5.781555, 50.090631 ], [ 6.042480, 50.129382 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.920654, 54.983918 ], [ 9.937134, 54.597528 ], [ 10.947876, 54.364558 ], [ 10.936890, 54.009383 ], [ 11.250000, 54.067448 ], [ 11.469727, 54.107723 ], [ 11.469727, 48.777913 ], [ 7.921143, 48.777913 ], [ 8.028259, 48.922499 ], [ 8.096924, 49.018058 ], [ 6.657715, 49.203243 ], [ 6.185303, 49.464554 ], [ 6.240234, 49.903480 ], [ 6.042480, 50.129382 ], [ 6.155090, 50.804199 ], [ 5.987549, 51.852746 ], [ 6.589050, 51.852746 ], [ 6.841736, 52.229482 ], [ 7.091675, 53.145123 ], [ 6.904907, 53.483143 ], [ 7.099915, 53.695080 ], [ 7.934875, 53.748711 ], [ 8.121643, 53.528881 ], [ 8.800049, 54.022293 ], [ 8.572083, 54.396550 ], [ 8.525391, 54.963425 ], [ 9.280701, 54.832336 ], [ 9.920654, 54.983918 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 11.469727, 61.710706 ], [ 11.469727, 59.433903 ], [ 11.250000, 59.149178 ], [ 11.024780, 58.856383 ], [ 10.354614, 59.470199 ], [ 8.379822, 58.313817 ], [ 7.047729, 58.079329 ], [ 5.663452, 58.588299 ], [ 5.306396, 59.663579 ], [ 5.042725, 61.606396 ], [ 5.026245, 61.710706 ], [ 11.469727, 61.710706 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.469727, 55.909194 ], [ 11.469727, 55.652798 ], [ 10.945129, 55.652798 ], [ 10.903931, 55.776573 ], [ 10.901184, 55.781207 ], [ 11.250000, 55.859900 ], [ 11.469727, 55.909194 ] ] ], [ [ [ 10.579834, 57.730552 ], [ 10.544128, 57.216634 ], [ 10.247498, 56.891003 ], [ 10.368347, 56.610909 ], [ 10.912170, 56.459455 ], [ 10.667725, 56.082765 ], [ 10.368347, 56.191424 ], [ 9.953613, 55.776573 ], [ 9.830017, 55.652798 ], [ 8.116150, 55.652798 ], [ 8.110657, 55.776573 ], [ 8.088684, 56.541315 ], [ 8.256226, 56.811404 ], [ 8.541870, 57.110894 ], [ 9.423523, 57.173481 ], [ 9.775085, 57.449383 ], [ 10.579834, 57.730552 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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": "Polygon", "coordinates": [ [ [ 11.469727, 59.433903 ], [ 11.469727, 58.041550 ], [ 11.250000, 58.449170 ], [ 11.024780, 58.856383 ], [ 11.250000, 59.149178 ], [ 11.466980, 59.432506 ], [ 11.469727, 59.433903 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 11.469727, 65.212986 ], [ 11.469727, 61.501734 ], [ 5.056458, 61.501734 ], [ 5.042725, 61.606396 ], [ 4.990540, 61.971234 ], [ 5.910645, 62.614825 ], [ 8.552856, 63.454192 ], [ 10.527649, 64.486993 ], [ 11.250000, 65.045491 ], [ 11.469727, 65.212986 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 11.469727, 79.212538 ], [ 11.469727, 78.765652 ], [ 11.250000, 78.857848 ], [ 11.219788, 78.869518 ], [ 10.928650, 79.171335 ], [ 10.887451, 79.212538 ], [ 11.469727, 79.212538 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 11.469727, 79.788958 ], [ 11.469727, 79.129976 ], [ 10.967102, 79.129976 ], [ 10.928650, 79.171335 ], [ 10.442505, 79.652708 ], [ 11.250000, 79.759702 ], [ 11.469727, 79.788958 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 19 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Africa", "sov_a3": "ZAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Africa", "adm0_a3": "ZAF", "geou_dif": 0, "geounit": "South Africa", "gu_a3": "ZAF", "su_dif": 0, "subunit": "South Africa", "su_a3": "ZAF", "brk_diff": 0, "name": "South Africa", "name_long": "South Africa", "brk_a3": "ZAF", "brk_name": "South Africa", "abbrev": "S.Af.", "postal": "ZA", "formal_en": "Republic of South Africa", "name_sort": "South Africa", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 49052489, "gdp_md_est": 491000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ZA", "iso_a3": "ZAF", "iso_n3": "710", "un_a3": "710", "wb_a2": "ZA", "wb_a3": "ZAF", "woe_id": -99, "adm0_a3_is": "ZAF", "adm0_a3_us": "ZAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, -31.765537 ], [ 22.719727, -33.881817 ], [ 22.571411, -33.863574 ], [ 22.500000, -33.890937 ], [ 21.541443, -34.257216 ], [ 20.687256, -34.415973 ], [ 20.069275, -34.793506 ], [ 19.616089, -34.818313 ], [ 19.193115, -34.461277 ], [ 18.855286, -34.443159 ], [ 18.424072, -33.995750 ], [ 18.377380, -34.134542 ], [ 18.242798, -33.865854 ], [ 18.248291, -33.280028 ], [ 17.924194, -32.609303 ], [ 18.245544, -32.428658 ], [ 18.229065, -31.952162 ], [ 18.223572, -31.765537 ], [ 22.719727, -31.765537 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 18 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Namibia", "sov_a3": "NAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Namibia", "adm0_a3": "NAM", "geou_dif": 0, "geounit": "Namibia", "gu_a3": "NAM", "su_dif": 0, "subunit": "Namibia", "su_a3": "NAM", "brk_diff": 0, "name": "Namibia", "name_long": "Namibia", "brk_a3": "NAM", "brk_name": "Namibia", "abbrev": "Nam.", "postal": "NA", "formal_en": "Republic of Namibia", "name_sort": "Namibia", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 2108665, "gdp_md_est": 13250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "NA", "iso_a3": "NAM", "iso_n3": "516", "un_a3": "516", "wb_a2": "NA", "wb_a3": "NAM", "woe_id": -99, "adm0_a3_is": "NAM", "adm0_a3_us": "NAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.879517, -21.739091 ], [ 20.879517, -21.813058 ], [ 19.893494, -21.848753 ], [ 19.893494, -28.459033 ], [ 19.000854, -28.972104 ], [ 18.462524, -29.044164 ], [ 17.833557, -28.854296 ], [ 17.385864, -28.782104 ], [ 17.218323, -28.355151 ], [ 16.822815, -28.081674 ], [ 16.344910, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.207825, -27.090918 ], [ 14.988098, -26.115986 ], [ 14.740906, -25.391179 ], [ 14.405823, -23.850674 ], [ 14.383850, -22.654572 ], [ 14.257507, -22.111088 ], [ 14.098206, -21.943046 ], [ 13.905945, -21.739091 ], [ 20.879517, -21.739091 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 22.719727, -21.739091 ], [ 22.719727, -25.703413 ], [ 22.576904, -25.977799 ], [ 22.500000, -26.029638 ], [ 22.104492, -26.278640 ], [ 21.604614, -26.725987 ], [ 20.887756, -26.826522 ], [ 20.665283, -26.475490 ], [ 20.755920, -25.866638 ], [ 20.165405, -24.916331 ], [ 19.893494, -24.766785 ], [ 19.893494, -21.848753 ], [ 20.879517, -21.813058 ], [ 20.879517, -21.739091 ], [ 22.719727, -21.739091 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Africa", "sov_a3": "ZAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Africa", "adm0_a3": "ZAF", "geou_dif": 0, "geounit": "South Africa", "gu_a3": "ZAF", "su_dif": 0, "subunit": "South Africa", "su_a3": "ZAF", "brk_diff": 0, "name": "South Africa", "name_long": "South Africa", "brk_a3": "ZAF", "brk_name": "South Africa", "abbrev": "S.Af.", "postal": "ZA", "formal_en": "Republic of South Africa", "name_sort": "South Africa", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 49052489, "gdp_md_est": 491000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ZA", "iso_a3": "ZAF", "iso_n3": "710", "un_a3": "710", "wb_a2": "ZA", "wb_a3": "ZAF", "woe_id": -99, "adm0_a3_is": "ZAF", "adm0_a3_us": "ZAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.893494, -24.766785 ], [ 20.165405, -24.916331 ], [ 20.755920, -25.866638 ], [ 20.665283, -26.475490 ], [ 20.887756, -26.826522 ], [ 21.604614, -26.725987 ], [ 22.104492, -26.278640 ], [ 22.500000, -26.029638 ], [ 22.576904, -25.977799 ], [ 22.719727, -25.703413 ], [ 22.719727, -32.138409 ], [ 18.237305, -32.138409 ], [ 18.229065, -31.952162 ], [ 18.220825, -31.660395 ], [ 17.564392, -30.725310 ], [ 17.061768, -29.876374 ], [ 16.344910, -28.574874 ], [ 16.822815, -28.081674 ], [ 17.218323, -28.355151 ], [ 17.385864, -28.782104 ], [ 17.833557, -28.854296 ], [ 18.462524, -29.044164 ], [ 19.000854, -28.972104 ], [ 19.893494, -28.459033 ], [ 19.893494, -24.766785 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 17 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, -10.962764 ], [ 22.719727, -11.008601 ], [ 22.401123, -10.992424 ], [ 22.153931, -11.084080 ], [ 22.159424, -10.962764 ], [ 22.719727, -10.962764 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.159424, -10.962764 ], [ 22.153931, -11.084080 ], [ 22.401123, -10.992424 ], [ 22.719727, -11.008601 ], [ 22.719727, -12.902844 ], [ 22.500000, -12.900166 ], [ 21.931458, -12.897489 ], [ 21.887512, -16.080125 ], [ 22.500000, -16.820316 ], [ 22.560425, -16.896544 ], [ 22.719727, -17.048907 ], [ 22.719727, -17.630935 ], [ 22.500000, -17.680662 ], [ 21.376648, -17.929089 ], [ 18.954163, -17.787920 ], [ 18.262024, -17.308688 ], [ 14.208069, -17.350638 ], [ 14.057007, -17.421408 ], [ 13.460999, -16.970114 ], [ 12.812805, -16.941215 ], [ 12.214050, -17.109293 ], [ 11.733398, -17.300821 ], [ 11.640015, -16.673031 ], [ 11.777344, -15.792254 ], [ 12.123413, -14.875778 ], [ 12.175598, -14.447979 ], [ 12.499695, -13.547211 ], [ 12.735901, -13.135654 ], [ 13.312683, -12.482169 ], [ 13.631287, -12.036634 ], [ 13.738403, -11.296934 ], [ 13.727417, -11.178402 ], [ 13.705444, -10.962764 ], [ 22.159424, -10.962764 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Namibia", "sov_a3": "NAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Namibia", "adm0_a3": "NAM", "geou_dif": 0, "geounit": "Namibia", "gu_a3": "NAM", "su_dif": 0, "subunit": "Namibia", "su_a3": "NAM", "brk_diff": 0, "name": "Namibia", "name_long": "Namibia", "brk_a3": "NAM", "brk_name": "Namibia", "abbrev": "Nam.", "postal": "NA", "formal_en": "Republic of Namibia", "name_sort": "Namibia", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 2108665, "gdp_md_est": 13250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "NA", "iso_a3": "NAM", "iso_n3": "516", "un_a3": "516", "wb_a2": "NA", "wb_a3": "NAM", "woe_id": -99, "adm0_a3_is": "NAM", "adm0_a3_us": "NAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.812805, -16.941215 ], [ 13.460999, -16.970114 ], [ 14.057007, -17.421408 ], [ 14.208069, -17.350638 ], [ 18.262024, -17.308688 ], [ 18.954163, -17.787920 ], [ 21.376648, -17.929089 ], [ 22.500000, -17.680662 ], [ 22.719727, -17.630935 ], [ 22.719727, -17.976121 ], [ 22.500000, -18.025751 ], [ 21.654053, -18.218916 ], [ 20.909729, -18.250220 ], [ 20.879517, -21.813058 ], [ 19.893494, -21.848753 ], [ 19.893494, -22.146708 ], [ 14.265747, -22.146708 ], [ 14.257507, -22.111088 ], [ 14.098206, -21.943046 ], [ 13.867493, -21.698265 ], [ 13.351135, -20.871644 ], [ 12.826538, -19.671039 ], [ 12.606812, -19.043945 ], [ 11.793823, -18.067535 ], [ 11.733398, -17.300821 ], [ 12.214050, -17.109293 ], [ 12.812805, -16.941215 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.931458, -12.897489 ], [ 22.500000, -12.900166 ], [ 22.719727, -12.902844 ], [ 22.719727, -17.048907 ], [ 22.560425, -16.896544 ], [ 22.500000, -16.820316 ], [ 21.887512, -16.080125 ], [ 21.931458, -12.897489 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 22.719727, -17.976121 ], [ 22.719727, -22.146708 ], [ 19.893494, -22.146708 ], [ 19.893494, -21.848753 ], [ 20.879517, -21.813058 ], [ 20.909729, -18.250220 ], [ 21.654053, -18.218916 ], [ 22.500000, -18.025751 ], [ 22.719727, -17.976121 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 16 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Gabon", "sov_a3": "GAB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gabon", "adm0_a3": "GAB", "geou_dif": 0, "geounit": "Gabon", "gu_a3": "GAB", "su_dif": 0, "subunit": "Gabon", "su_a3": "GAB", "brk_diff": 0, "name": "Gabon", "name_long": "Gabon", "brk_a3": "GAB", "brk_name": "Gabon", "abbrev": "Gabon", "postal": "GA", "formal_en": "Gabonese Republic", "name_sort": "Gabon", "mapcolor7": 6, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 1514993, "gdp_md_est": 21110, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "GA", "iso_a3": "GAB", "iso_n3": "266", "un_a3": "266", "wb_a2": "GA", "wb_a3": "GAB", "woe_id": -99, "adm0_a3_is": "GAB", "adm0_a3_us": "GAB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": 3, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.908691, 0.219726 ], [ 13.842773, 0.041199 ], [ 13.872986, 0.000000 ], [ 14.315186, -0.552054 ], [ 14.425049, -1.331972 ], [ 14.298706, -1.996361 ], [ 13.991089, -2.468413 ], [ 13.109436, -2.427252 ], [ 12.573853, -1.946952 ], [ 12.494202, -2.391578 ], [ 11.818542, -2.512317 ], [ 11.477966, -2.764735 ], [ 11.854248, -3.425692 ], [ 11.250000, -3.864255 ], [ 11.093445, -3.976601 ], [ 11.030273, -3.916319 ], [ 11.030273, 0.219726 ], [ 13.908691, 0.219726 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.792358, 0.219726 ], [ 17.690735, 0.000000 ], [ 17.663269, -0.057678 ], [ 17.638550, -0.422970 ], [ 17.523193, -0.741556 ], [ 16.864014, -1.224882 ], [ 16.405334, -1.738320 ], [ 15.971375, -2.709866 ], [ 16.004333, -3.532611 ], [ 15.751648, -3.853293 ], [ 15.169373, -4.340934 ], [ 14.581604, -4.967824 ], [ 14.208069, -4.792680 ], [ 14.144897, -4.507976 ], [ 13.598328, -4.499762 ], [ 13.257751, -4.880258 ], [ 12.994080, -4.778995 ], [ 12.620544, -4.436782 ], [ 12.318420, -4.603803 ], [ 11.914673, -5.036227 ], [ 11.250000, -4.179333 ], [ 11.093445, -3.976601 ], [ 11.250000, -3.864255 ], [ 11.854248, -3.425692 ], [ 11.477966, -2.764735 ], [ 11.818542, -2.512317 ], [ 12.494202, -2.391578 ], [ 12.573853, -1.946952 ], [ 13.109436, -2.427252 ], [ 13.991089, -2.468413 ], [ 14.298706, -1.996361 ], [ 14.425049, -1.331972 ], [ 14.315186, -0.552054 ], [ 13.872986, 0.000000 ], [ 13.842773, 0.041199 ], [ 13.908691, 0.219726 ], [ 17.792358, 0.219726 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 0.219726 ], [ 22.719727, -11.008601 ], [ 22.500000, -10.997816 ], [ 22.401123, -10.992424 ], [ 22.153931, -11.084080 ], [ 22.206116, -9.893099 ], [ 21.873779, -9.522206 ], [ 21.799622, -8.906780 ], [ 21.947937, -8.303906 ], [ 21.744690, -7.917793 ], [ 21.725464, -7.288914 ], [ 20.514221, -7.297088 ], [ 20.599365, -6.937333 ], [ 20.091248, -6.942786 ], [ 20.036316, -7.114520 ], [ 19.415588, -7.155400 ], [ 19.165649, -7.735487 ], [ 19.014587, -7.985798 ], [ 18.462524, -7.844336 ], [ 18.132935, -7.985798 ], [ 17.471008, -8.067388 ], [ 17.089233, -7.544933 ], [ 16.858521, -7.220800 ], [ 16.572876, -6.620957 ], [ 16.325684, -5.875600 ], [ 13.373108, -5.861939 ], [ 13.024292, -5.982144 ], [ 12.733154, -5.963022 ], [ 12.321167, -6.099591 ], [ 12.181091, -5.788164 ], [ 12.436523, -5.681584 ], [ 12.466736, -5.246863 ], [ 12.631531, -4.989714 ], [ 12.994080, -4.778995 ], [ 13.257751, -4.880258 ], [ 13.598328, -4.499762 ], [ 14.144897, -4.507976 ], [ 14.208069, -4.792680 ], [ 14.581604, -4.967824 ], [ 15.169373, -4.340934 ], [ 15.751648, -3.853293 ], [ 16.004333, -3.532611 ], [ 15.971375, -2.709866 ], [ 16.405334, -1.738320 ], [ 16.864014, -1.224882 ], [ 17.523193, -0.741556 ], [ 17.638550, -0.422970 ], [ 17.663269, -0.057678 ], [ 17.690735, 0.000000 ], [ 17.792358, 0.219726 ], [ 22.719727, 0.219726 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.373108, -5.861939 ], [ 16.325684, -5.875600 ], [ 16.572876, -6.620957 ], [ 16.858521, -7.220800 ], [ 17.089233, -7.544933 ], [ 17.471008, -8.067388 ], [ 18.132935, -7.985798 ], [ 18.462524, -7.844336 ], [ 19.014587, -7.985798 ], [ 19.165649, -7.735487 ], [ 19.415588, -7.155400 ], [ 20.036316, -7.114520 ], [ 20.091248, -6.942786 ], [ 20.599365, -6.937333 ], [ 20.514221, -7.297088 ], [ 21.725464, -7.288914 ], [ 21.744690, -7.917793 ], [ 21.947937, -8.303906 ], [ 21.799622, -8.906780 ], [ 21.873779, -9.522206 ], [ 22.206116, -9.893099 ], [ 22.153931, -11.084080 ], [ 22.401123, -10.992424 ], [ 22.500000, -10.997816 ], [ 22.719727, -11.008601 ], [ 22.719727, -11.393879 ], [ 13.724670, -11.393879 ], [ 13.738403, -11.296934 ], [ 13.727417, -11.178402 ], [ 13.686218, -10.730778 ], [ 13.386841, -10.371660 ], [ 13.120422, -9.765904 ], [ 12.873230, -9.164467 ], [ 12.928162, -8.958332 ], [ 13.235779, -8.562010 ], [ 12.930908, -7.593940 ], [ 12.727661, -6.926427 ], [ 12.225037, -6.293459 ], [ 12.321167, -6.099591 ], [ 12.733154, -5.963022 ], [ 13.024292, -5.982144 ], [ 13.373108, -5.861939 ] ] ], [ [ [ 12.620544, -4.436782 ], [ 12.994080, -4.778995 ], [ 12.631531, -4.989714 ], [ 12.466736, -5.246863 ], [ 12.436523, -5.681584 ], [ 12.181091, -5.788164 ], [ 11.914673, -5.036227 ], [ 12.318420, -4.603803 ], [ 12.620544, -4.436782 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.219055, 11.393879 ], [ 13.985596, 11.178402 ], [ 13.570862, 10.800933 ], [ 13.307190, 10.160857 ], [ 13.167114, 9.641369 ], [ 12.952881, 9.419258 ], [ 12.752380, 8.719503 ], [ 12.216797, 8.306624 ], [ 12.062988, 7.800800 ], [ 11.837769, 7.397877 ], [ 11.744385, 6.983681 ], [ 11.250000, 6.738259 ], [ 11.057739, 6.645511 ], [ 11.030273, 6.667336 ], [ 11.030273, 11.393879 ], [ 14.219055, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Equatorial Guinea", "sov_a3": "GNQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Equatorial Guinea", "adm0_a3": "GNQ", "geou_dif": 0, "geounit": "Equatorial Guinea", "gu_a3": "GNQ", "su_dif": 0, "subunit": "Equatorial Guinea", "su_a3": "GNQ", "brk_diff": 0, "name": "Eq. Guinea", "name_long": "Equatorial Guinea", "brk_a3": "GNQ", "brk_name": "Eq. Guinea", "abbrev": "Eq. G.", "postal": "GQ", "formal_en": "Republic of Equatorial Guinea", "name_sort": "Equatorial Guinea", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 650702, "gdp_md_est": 14060, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "7. Least developed region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GQ", "iso_a3": "GNQ", "iso_n3": "226", "un_a3": "226", "wb_a2": "GQ", "wb_a3": "GNQ", "woe_id": -99, "adm0_a3_is": "GNQ", "adm0_a3_us": "GNQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 17, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.030273, 2.265340 ], [ 11.250000, 2.262595 ], [ 11.274719, 2.262595 ], [ 11.282959, 1.060120 ], [ 11.030273, 1.060120 ], [ 11.030273, 2.265340 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 11.393879 ], [ 22.719727, 11.105642 ], [ 22.500000, 11.046343 ], [ 22.230835, 10.973550 ], [ 21.722717, 10.568822 ], [ 21.000366, 9.476154 ], [ 20.058289, 9.015302 ], [ 19.091492, 9.074976 ], [ 18.811340, 8.985462 ], [ 18.910217, 8.632619 ], [ 18.388367, 8.282163 ], [ 17.962646, 7.893309 ], [ 16.704712, 7.509535 ], [ 16.454773, 7.735487 ], [ 16.289978, 7.754537 ], [ 16.105957, 7.498643 ], [ 15.279236, 7.422389 ], [ 15.435791, 7.694661 ], [ 15.119934, 8.382714 ], [ 14.979858, 8.798225 ], [ 14.543152, 8.966471 ], [ 13.952637, 9.552000 ], [ 14.169617, 10.022948 ], [ 14.625549, 9.922860 ], [ 14.908447, 9.993196 ], [ 15.466003, 9.982376 ], [ 14.922180, 10.892648 ], [ 14.938660, 11.178402 ], [ 14.949646, 11.393879 ], [ 22.719727, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.949646, 11.393879 ], [ 14.938660, 11.178402 ], [ 14.922180, 10.892648 ], [ 15.466003, 9.982376 ], [ 14.908447, 9.993196 ], [ 14.625549, 9.922860 ], [ 14.169617, 10.022948 ], [ 13.952637, 9.552000 ], [ 14.543152, 8.966471 ], [ 14.979858, 8.798225 ], [ 15.119934, 8.382714 ], [ 15.435791, 7.694661 ], [ 15.279236, 7.422389 ], [ 14.773865, 6.410837 ], [ 14.534912, 6.227934 ], [ 14.458008, 5.451959 ], [ 14.556885, 5.030755 ], [ 14.477234, 4.735201 ], [ 14.949646, 4.212204 ], [ 15.034790, 3.853293 ], [ 15.402832, 3.337954 ], [ 15.861511, 3.014356 ], [ 15.905457, 2.558963 ], [ 16.012573, 2.268084 ], [ 15.938416, 1.730084 ], [ 15.144653, 1.966167 ], [ 14.337158, 2.229662 ], [ 13.073730, 2.268084 ], [ 12.950134, 2.322972 ], [ 12.356873, 2.193983 ], [ 11.749878, 2.328460 ], [ 11.274719, 2.262595 ], [ 11.250000, 2.262595 ], [ 11.030273, 2.265340 ], [ 11.030273, 6.667336 ], [ 11.057739, 6.645511 ], [ 11.250000, 6.738259 ], [ 11.744385, 6.983681 ], [ 11.837769, 7.397877 ], [ 12.062988, 7.800800 ], [ 12.216797, 8.306624 ], [ 12.752380, 8.719503 ], [ 12.952881, 9.419258 ], [ 13.167114, 9.641369 ], [ 13.307190, 10.160857 ], [ 13.570862, 10.800933 ], [ 13.985596, 11.178402 ], [ 14.219055, 11.393879 ], [ 14.949646, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 11.105642 ], [ 22.719727, 4.642130 ], [ 22.703247, 4.633917 ], [ 22.500000, 4.223161 ], [ 22.403870, 4.031399 ], [ 21.656799, 4.225900 ], [ 20.926208, 4.324501 ], [ 20.289001, 4.694142 ], [ 19.467773, 5.033491 ], [ 18.932190, 4.710566 ], [ 18.542175, 4.203986 ], [ 18.451538, 3.505197 ], [ 17.808838, 3.562765 ], [ 17.130432, 3.729968 ], [ 16.534424, 3.200848 ], [ 16.012573, 2.268084 ], [ 15.905457, 2.558963 ], [ 15.861511, 3.014356 ], [ 15.402832, 3.337954 ], [ 15.034790, 3.853293 ], [ 14.949646, 4.212204 ], [ 14.477234, 4.735201 ], [ 14.556885, 5.030755 ], [ 14.458008, 5.451959 ], [ 14.534912, 6.227934 ], [ 14.773865, 6.410837 ], [ 15.279236, 7.422389 ], [ 16.105957, 7.498643 ], [ 16.289978, 7.754537 ], [ 16.454773, 7.735487 ], [ 16.704712, 7.509535 ], [ 17.962646, 7.893309 ], [ 18.388367, 8.282163 ], [ 18.910217, 8.632619 ], [ 18.811340, 8.985462 ], [ 19.091492, 9.074976 ], [ 20.058289, 9.015302 ], [ 21.000366, 9.476154 ], [ 21.722717, 10.568822 ], [ 22.230835, 10.973550 ], [ 22.500000, 11.046343 ], [ 22.719727, 11.105642 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Gabon", "sov_a3": "GAB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gabon", "adm0_a3": "GAB", "geou_dif": 0, "geounit": "Gabon", "gu_a3": "GAB", "su_dif": 0, "subunit": "Gabon", "su_a3": "GAB", "brk_diff": 0, "name": "Gabon", "name_long": "Gabon", "brk_a3": "GAB", "brk_name": "Gabon", "abbrev": "Gabon", "postal": "GA", "formal_en": "Gabonese Republic", "name_sort": "Gabon", "mapcolor7": 6, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 1514993, "gdp_md_est": 21110, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "GA", "iso_a3": "GAB", "iso_n3": "266", "un_a3": "266", "wb_a2": "GA", "wb_a3": "GAB", "woe_id": -99, "adm0_a3_is": "GAB", "adm0_a3_us": "GAB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": 3, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.749878, 2.328460 ], [ 12.356873, 2.193983 ], [ 12.950134, 2.322972 ], [ 13.073730, 2.268084 ], [ 13.002319, 1.831658 ], [ 13.282471, 1.315497 ], [ 14.024048, 1.397872 ], [ 14.273987, 1.197423 ], [ 13.842773, 0.041199 ], [ 13.872986, 0.000000 ], [ 14.048767, -0.219726 ], [ 11.030273, -0.219726 ], [ 11.030273, 1.060120 ], [ 11.282959, 1.060120 ], [ 11.274719, 2.262595 ], [ 11.749878, 2.328460 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.130432, 3.729968 ], [ 17.808838, 3.562765 ], [ 18.451538, 3.505197 ], [ 18.391113, 2.901896 ], [ 18.091736, 2.366880 ], [ 17.896729, 1.743810 ], [ 17.773132, 0.856902 ], [ 17.825317, 0.291136 ], [ 17.690735, 0.000000 ], [ 17.663269, -0.057678 ], [ 17.652283, -0.219726 ], [ 14.048767, -0.219726 ], [ 13.872986, 0.000000 ], [ 13.842773, 0.041199 ], [ 14.273987, 1.197423 ], [ 14.024048, 1.397872 ], [ 13.282471, 1.315497 ], [ 13.002319, 1.831658 ], [ 13.073730, 2.268084 ], [ 14.337158, 2.229662 ], [ 15.144653, 1.966167 ], [ 15.938416, 1.730084 ], [ 16.012573, 2.268084 ], [ 16.534424, 3.200848 ], [ 17.130432, 3.729968 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.467773, 5.033491 ], [ 20.289001, 4.694142 ], [ 20.926208, 4.324501 ], [ 21.656799, 4.225900 ], [ 22.403870, 4.031399 ], [ 22.500000, 4.223161 ], [ 22.703247, 4.633917 ], [ 22.719727, 4.642130 ], [ 22.719727, -0.219726 ], [ 17.652283, -0.219726 ], [ 17.663269, -0.057678 ], [ 17.690735, 0.000000 ], [ 17.825317, 0.291136 ], [ 17.773132, 0.856902 ], [ 17.896729, 1.743810 ], [ 18.091736, 2.366880 ], [ 18.391113, 2.901896 ], [ 18.451538, 3.505197 ], [ 18.542175, 4.203986 ], [ 18.932190, 4.710566 ], [ 19.467773, 5.033491 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 22.146708 ], [ 22.719727, 20.120419 ], [ 22.500000, 20.226120 ], [ 19.846802, 21.496519 ], [ 18.918457, 21.943046 ], [ 18.495483, 22.146708 ], [ 22.719727, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.963379, 22.146708 ], [ 14.996338, 21.943046 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.048618 ], [ 15.485229, 20.730428 ], [ 15.902710, 20.388400 ], [ 15.685730, 19.957860 ], [ 15.298462, 17.929089 ], [ 15.246277, 16.628297 ], [ 13.971863, 15.686510 ], [ 13.537903, 14.368173 ], [ 13.955383, 13.998037 ], [ 13.952637, 13.354882 ], [ 14.595337, 13.330830 ], [ 14.493713, 12.860004 ], [ 14.210815, 12.803767 ], [ 14.180603, 12.484850 ], [ 13.993835, 12.463396 ], [ 13.318176, 13.557892 ], [ 13.081970, 13.597939 ], [ 12.301941, 13.039345 ], [ 11.527405, 13.330830 ], [ 11.250000, 13.360227 ], [ 11.030273, 13.384276 ], [ 11.030273, 22.146708 ], [ 14.963379, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.081970, 13.597939 ], [ 13.318176, 13.557892 ], [ 13.993835, 12.463396 ], [ 14.180603, 12.484850 ], [ 14.576111, 12.087667 ], [ 14.466248, 11.904979 ], [ 14.414062, 11.574216 ], [ 13.985596, 11.178402 ], [ 13.749390, 10.962764 ], [ 11.030273, 10.962764 ], [ 11.030273, 13.384276 ], [ 11.250000, 13.360227 ], [ 11.527405, 13.330830 ], [ 12.301941, 13.039345 ], [ 13.081970, 13.597939 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.495483, 22.146708 ], [ 18.918457, 21.943046 ], [ 19.846802, 21.496519 ], [ 22.500000, 20.226120 ], [ 22.719727, 20.120419 ], [ 22.719727, 15.191434 ], [ 22.565918, 14.944785 ], [ 22.500000, 14.788161 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.107276 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.083301 ], [ 22.181396, 13.787404 ], [ 22.294006, 13.373588 ], [ 22.035828, 12.956383 ], [ 21.934204, 12.589413 ], [ 22.285767, 12.648378 ], [ 22.497253, 12.262180 ], [ 22.500000, 12.136005 ], [ 22.508240, 11.681825 ], [ 22.719727, 11.512322 ], [ 22.719727, 11.105642 ], [ 22.230835, 10.973550 ], [ 22.217102, 10.962764 ], [ 14.924927, 10.962764 ], [ 14.938660, 11.178402 ], [ 14.957886, 11.558071 ], [ 14.891968, 12.219233 ], [ 14.493713, 12.860004 ], [ 14.595337, 13.330830 ], [ 13.952637, 13.354882 ], [ 13.955383, 13.998037 ], [ 13.537903, 14.368173 ], [ 13.971863, 15.686510 ], [ 15.246277, 16.628297 ], [ 15.298462, 17.929089 ], [ 15.685730, 19.957860 ], [ 15.902710, 20.388400 ], [ 15.485229, 20.730428 ], [ 15.468750, 21.048618 ], [ 15.095215, 21.309846 ], [ 14.996338, 21.943046 ], [ 14.963379, 22.146708 ], [ 18.495483, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.493713, 12.860004 ], [ 14.891968, 12.219233 ], [ 14.957886, 11.558071 ], [ 14.938660, 11.178402 ], [ 14.924927, 10.962764 ], [ 13.749390, 10.962764 ], [ 13.985596, 11.178402 ], [ 14.414062, 11.574216 ], [ 14.466248, 11.904979 ], [ 14.576111, 12.087667 ], [ 14.180603, 12.484850 ], [ 14.210815, 12.803767 ], [ 14.493713, 12.860004 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 11.105642 ], [ 22.719727, 10.962764 ], [ 22.217102, 10.962764 ], [ 22.230835, 10.973550 ], [ 22.719727, 11.105642 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 22.719727, 15.191434 ], [ 22.719727, 11.512322 ], [ 22.508240, 11.681825 ], [ 22.500000, 12.136005 ], [ 22.497253, 12.262180 ], [ 22.285767, 12.648378 ], [ 21.934204, 12.589413 ], [ 22.035828, 12.956383 ], [ 22.294006, 13.373588 ], [ 22.181396, 13.787404 ], [ 22.500000, 14.083301 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.107276 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.788161 ], [ 22.565918, 14.944785 ], [ 22.719727, 15.191434 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Tunisia", "sov_a3": "TUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tunisia", "adm0_a3": "TUN", "geou_dif": 0, "geounit": "Tunisia", "gu_a3": "TUN", "su_dif": 0, "subunit": "Tunisia", "su_a3": "TUN", "brk_diff": 0, "name": "Tunisia", "name_long": "Tunisia", "brk_a3": "TUN", "brk_name": "Tunisia", "abbrev": "Tun.", "postal": "TN", "formal_en": "Republic of Tunisia", "name_sort": "Tunisia", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 10486339, "gdp_md_est": 81710, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TN", "iso_a3": "TUN", "iso_n3": "788", "un_a3": "788", "wb_a2": "TN", "wb_a3": "TUN", "woe_id": -99, "adm0_a3_is": "TUN", "adm0_a3_us": "TUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.038513, 32.138409 ], [ 11.030273, 32.133757 ], [ 11.030273, 32.138409 ], [ 11.038513, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.030273, 24.412140 ], [ 11.250000, 24.282020 ], [ 11.560364, 24.099126 ], [ 11.997070, 23.473324 ], [ 11.250000, 23.059516 ], [ 11.030273, 22.935630 ], [ 11.030273, 24.412140 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 32.138409 ], [ 22.719727, 21.739091 ], [ 19.341431, 21.739091 ], [ 18.918457, 21.943046 ], [ 15.858765, 23.410327 ], [ 14.850769, 22.864787 ], [ 14.142151, 22.492257 ], [ 13.579102, 23.041825 ], [ 11.997070, 23.473324 ], [ 11.560364, 24.099126 ], [ 11.250000, 24.282020 ], [ 11.030273, 24.412140 ], [ 11.030273, 32.133757 ], [ 11.038513, 32.138409 ], [ 15.312195, 32.138409 ], [ 15.408325, 31.952162 ], [ 15.713196, 31.377089 ], [ 16.611328, 31.182259 ], [ 18.020325, 30.765439 ], [ 19.085999, 30.268556 ], [ 19.572144, 30.526779 ], [ 20.052795, 30.987028 ], [ 19.819336, 31.753861 ], [ 19.948425, 31.952162 ], [ 20.069275, 32.138409 ], [ 22.719727, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.997070, 23.473324 ], [ 13.579102, 23.041825 ], [ 14.142151, 22.492257 ], [ 14.850769, 22.864787 ], [ 14.996338, 21.943046 ], [ 15.026550, 21.739091 ], [ 11.030273, 21.739091 ], [ 11.030273, 22.935630 ], [ 11.250000, 23.059516 ], [ 11.997070, 23.473324 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.858765, 23.410327 ], [ 18.918457, 21.943046 ], [ 19.341431, 21.739091 ], [ 15.026550, 21.739091 ], [ 14.996338, 21.943046 ], [ 14.850769, 22.864787 ], [ 15.858765, 23.410327 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.518188, 38.231708 ], [ 15.158386, 37.444335 ], [ 15.309448, 37.136235 ], [ 15.097961, 36.622141 ], [ 14.334412, 36.998166 ], [ 13.826294, 37.105575 ], [ 12.428284, 37.614231 ], [ 12.568359, 38.128075 ], [ 13.741150, 38.035112 ], [ 14.760132, 38.145358 ], [ 15.518188, 38.231708 ] ] ], [ [ [ 16.866760, 41.145570 ], [ 17.267761, 40.979898 ], [ 17.517700, 40.878218 ], [ 18.374634, 40.357010 ], [ 18.479004, 40.170479 ], [ 18.292236, 39.812756 ], [ 17.737427, 40.279526 ], [ 16.869507, 40.442767 ], [ 16.446533, 39.795876 ], [ 17.168884, 39.425586 ], [ 17.050781, 38.903858 ], [ 16.633301, 38.843986 ], [ 16.100464, 37.987504 ], [ 15.682983, 37.909534 ], [ 15.685730, 38.216604 ], [ 15.891724, 38.751941 ], [ 16.108704, 38.965816 ], [ 15.718689, 39.544294 ], [ 15.411072, 40.048643 ], [ 14.996338, 40.174676 ], [ 14.702454, 40.605612 ], [ 14.059753, 40.786780 ], [ 13.851013, 40.979898 ], [ 13.672485, 41.145570 ], [ 16.866760, 41.145570 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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.582886, 41.145570 ], [ 20.604858, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.019592, 40.842905 ], [ 20.997620, 40.580585 ], [ 20.673523, 40.436495 ], [ 20.613098, 40.111689 ], [ 20.148926, 39.626846 ], [ 19.978638, 39.696621 ], [ 19.959412, 39.916056 ], [ 19.404602, 40.252280 ], [ 19.316711, 40.728527 ], [ 19.349670, 40.979898 ], [ 19.368896, 41.145570 ], [ 20.582886, 41.145570 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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": "MultiPolygon", "coordinates": [ [ [ [ 22.046814, 41.145570 ], [ 21.758423, 40.979898 ], [ 21.673279, 40.932190 ], [ 21.019592, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.087632 ], [ 20.582886, 41.145570 ], [ 22.046814, 41.145570 ] ] ], [ [ [ 22.609863, 41.145570 ], [ 22.596130, 41.131090 ], [ 22.173157, 41.145570 ], [ 22.609863, 41.145570 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Tunisia", "sov_a3": "TUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tunisia", "adm0_a3": "TUN", "geou_dif": 0, "geounit": "Tunisia", "gu_a3": "TUN", "su_dif": 0, "subunit": "Tunisia", "su_a3": "TUN", "brk_diff": 0, "name": "Tunisia", "name_long": "Tunisia", "brk_a3": "TUN", "brk_name": "Tunisia", "abbrev": "Tun.", "postal": "TN", "formal_en": "Republic of Tunisia", "name_sort": "Tunisia", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 10486339, "gdp_md_est": 81710, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TN", "iso_a3": "TUN", "iso_n3": "788", "un_a3": "788", "wb_a2": "TN", "wb_a3": "TUN", "woe_id": -99, "adm0_a3_is": "TUN", "adm0_a3_us": "TUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.030273, 33.442901 ], [ 11.107178, 33.293804 ], [ 11.250000, 33.236390 ], [ 11.486206, 33.137551 ], [ 11.431274, 32.370683 ], [ 11.250000, 32.263911 ], [ 11.030273, 32.133757 ], [ 11.030273, 33.442901 ] ] ], [ [ [ 11.030273, 36.833470 ], [ 11.030273, 37.090240 ], [ 11.098938, 36.901587 ], [ 11.030273, 36.833470 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.486206, 33.137551 ], [ 12.661743, 32.794201 ], [ 13.081970, 32.879587 ], [ 13.916931, 32.713355 ], [ 15.243530, 32.266233 ], [ 15.408325, 31.952162 ], [ 15.507202, 31.765537 ], [ 11.030273, 31.765537 ], [ 11.030273, 32.133757 ], [ 11.250000, 32.263911 ], [ 11.431274, 32.370683 ], [ 11.486206, 33.137551 ] ] ], [ [ [ 22.500000, 32.699489 ], [ 22.719727, 32.667125 ], [ 22.719727, 31.765537 ], [ 19.827576, 31.765537 ], [ 19.948425, 31.952162 ], [ 20.132446, 32.238359 ], [ 20.852051, 32.708733 ], [ 21.541443, 32.844981 ], [ 22.500000, 32.699489 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "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": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 41.145570 ], [ 22.719727, 40.367474 ], [ 22.623596, 40.258569 ], [ 22.719727, 40.008683 ], [ 22.719727, 36.414652 ], [ 22.500000, 36.410231 ], [ 22.489014, 36.410231 ], [ 21.667786, 36.846659 ], [ 21.294250, 37.646859 ], [ 21.118469, 38.311491 ], [ 20.728455, 38.771216 ], [ 20.217590, 39.340670 ], [ 20.148926, 39.626846 ], [ 20.613098, 40.111689 ], [ 20.673523, 40.436495 ], [ 20.997620, 40.580585 ], [ 21.019592, 40.842905 ], [ 21.673279, 40.932190 ], [ 21.758423, 40.979898 ], [ 22.046814, 41.145570 ], [ 22.173157, 41.145570 ], [ 22.596130, 41.131090 ], [ 22.609863, 41.145570 ], [ 22.719727, 41.145570 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.345642, 49.066668 ], [ 13.535156, 48.922499 ], [ 13.595581, 48.877361 ], [ 13.241272, 48.416442 ], [ 12.881470, 48.290503 ], [ 13.024292, 47.637634 ], [ 12.930908, 47.468950 ], [ 12.620544, 47.672786 ], [ 12.139893, 47.704217 ], [ 11.425781, 47.524620 ], [ 11.250000, 47.533893 ], [ 11.030273, 47.543164 ], [ 11.030273, 49.066668 ], [ 13.345642, 49.066668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Czech Republic", "sov_a3": "CZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Czech Republic", "adm0_a3": "CZE", "geou_dif": 0, "geounit": "Czech Republic", "gu_a3": "CZE", "su_dif": 0, "subunit": "Czech Republic", "su_a3": "CZE", "brk_diff": 0, "name": "Czech Rep.", "name_long": "Czech Republic", "brk_a3": "CZE", "brk_name": "Czech Rep.", "abbrev": "Cz. Rep.", "postal": "CZ", "formal_en": "Czech Republic", "name_sort": "Czech Republic", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 10211904, "gdp_md_est": 265200, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CZ", "iso_a3": "CZE", "iso_n3": "203", "un_a3": "203", "wb_a2": "CZ", "wb_a3": "CZE", "woe_id": -99, "adm0_a3_is": "CZE", "adm0_a3_us": "CZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 14, "abbrev_len": 8, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.110962, 49.066668 ], [ 18.102722, 49.045070 ], [ 17.913208, 48.998240 ], [ 17.891235, 48.922499 ], [ 17.885742, 48.904449 ], [ 17.542419, 48.801436 ], [ 17.100220, 48.817716 ], [ 16.960144, 48.598409 ], [ 16.498718, 48.786962 ], [ 16.029053, 48.734455 ], [ 15.548401, 48.922499 ], [ 15.251770, 49.039668 ], [ 14.900208, 48.965794 ], [ 14.842529, 48.922499 ], [ 14.337158, 48.556614 ], [ 13.595581, 48.877361 ], [ 13.535156, 48.922499 ], [ 13.345642, 49.066668 ], [ 18.110962, 49.066668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Poland", "sov_a3": "POL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Poland", "adm0_a3": "POL", "geou_dif": 0, "geounit": "Poland", "gu_a3": "POL", "su_dif": 0, "subunit": "Poland", "su_a3": "POL", "brk_diff": 0, "name": "Poland", "name_long": "Poland", "brk_a3": "POL", "brk_name": "Poland", "abbrev": "Pol.", "postal": "PL", "formal_en": "Republic of Poland", "name_sort": "Poland", "mapcolor7": 3, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 38482919, "gdp_md_est": 667900, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PL", "iso_a3": "POL", "iso_n3": "616", "un_a3": "616", "wb_a2": "PL", "wb_a3": "POL", "woe_id": -99, "adm0_a3_is": "POL", "adm0_a3_us": "POL", "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": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 49.066668 ], [ 22.719727, 49.043269 ], [ 22.629089, 49.066668 ], [ 22.719727, 49.066668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Austria", "sov_a3": "AUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Austria", "adm0_a3": "AUT", "geou_dif": 0, "geounit": "Austria", "gu_a3": "AUT", "su_dif": 0, "subunit": "Austria", "su_a3": "AUT", "brk_diff": 0, "name": "Austria", "name_long": "Austria", "brk_a3": "AUT", "brk_name": "Austria", "abbrev": "Aust.", "postal": "A", "formal_en": "Republic of Austria", "name_sort": "Austria", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 8210281, "gdp_md_est": 329500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AT", "iso_a3": "AUT", "iso_n3": "040", "un_a3": "040", "wb_a2": "AT", "wb_a3": "AUT", "woe_id": -99, "adm0_a3_is": "AUT", "adm0_a3_us": "AUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.251770, 49.039668 ], [ 15.548401, 48.922499 ], [ 16.029053, 48.734455 ], [ 16.498718, 48.786962 ], [ 16.960144, 48.598409 ], [ 16.877747, 48.471100 ], [ 16.979370, 48.123934 ], [ 16.902466, 47.715306 ], [ 16.339417, 47.713458 ], [ 16.531677, 47.496792 ], [ 16.202087, 46.852678 ], [ 16.009827, 46.685247 ], [ 15.136414, 46.658862 ], [ 14.631042, 46.432178 ], [ 13.804321, 46.509735 ], [ 12.376099, 46.768087 ], [ 12.150879, 47.116869 ], [ 11.250000, 46.957761 ], [ 11.162109, 46.942762 ], [ 11.046753, 46.753035 ], [ 11.030273, 46.756798 ], [ 11.030273, 47.543164 ], [ 11.250000, 47.533893 ], [ 11.425781, 47.524620 ], [ 12.139893, 47.704217 ], [ 12.620544, 47.672786 ], [ 12.930908, 47.468950 ], [ 13.024292, 47.637634 ], [ 12.881470, 48.290503 ], [ 13.241272, 48.416442 ], [ 13.595581, 48.877361 ], [ 14.337158, 48.556614 ], [ 14.842529, 48.922499 ], [ 14.900208, 48.965794 ], [ 15.251770, 49.039668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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.202087, 46.852678 ], [ 16.369629, 46.841407 ], [ 16.564636, 46.504064 ], [ 15.768127, 46.238752 ], [ 15.669250, 45.834540 ], [ 15.323181, 45.733025 ], [ 15.325928, 45.452424 ], [ 14.933167, 45.473614 ], [ 14.592590, 45.635167 ], [ 14.411316, 45.467836 ], [ 13.713684, 45.500572 ], [ 13.936157, 45.592900 ], [ 13.697205, 46.017946 ], [ 13.804321, 46.509735 ], [ 14.631042, 46.432178 ], [ 15.136414, 46.658862 ], [ 16.009827, 46.685247 ], [ 16.202087, 46.852678 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.150879, 47.116869 ], [ 12.376099, 46.768087 ], [ 13.804321, 46.509735 ], [ 13.697205, 46.017946 ], [ 13.936157, 45.592900 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.381592, 44.887012 ], [ 12.260742, 44.602202 ], [ 12.587585, 44.091531 ], [ 13.524170, 43.588349 ], [ 14.029541, 42.761129 ], [ 15.141907, 41.955405 ], [ 15.924683, 41.961532 ], [ 16.169128, 41.740578 ], [ 15.888977, 41.541478 ], [ 17.267761, 40.979898 ], [ 17.517700, 40.878218 ], [ 17.622070, 40.813809 ], [ 14.029541, 40.813809 ], [ 13.851013, 40.979898 ], [ 13.625793, 41.188989 ], [ 12.886963, 41.255097 ], [ 12.104187, 41.705729 ], [ 11.250000, 42.315909 ], [ 11.189575, 42.356514 ], [ 11.030273, 42.494378 ], [ 11.030273, 46.756798 ], [ 11.046753, 46.753035 ], [ 11.162109, 46.942762 ], [ 11.250000, 46.957761 ], [ 12.150879, 47.116869 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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": "Polygon", "coordinates": [ [ [ 16.564636, 46.504064 ], [ 16.880493, 46.381044 ], [ 17.627563, 45.953059 ], [ 18.454285, 45.759859 ], [ 18.827820, 45.909122 ], [ 19.072266, 45.521744 ], [ 19.388123, 45.238152 ], [ 19.003601, 44.861710 ], [ 18.553162, 45.083218 ], [ 17.861023, 45.069641 ], [ 17.001343, 45.234283 ], [ 16.534424, 45.213004 ], [ 16.317444, 45.005593 ], [ 15.957642, 45.234283 ], [ 15.748901, 44.818864 ], [ 16.237793, 44.351350 ], [ 16.454773, 44.042193 ], [ 16.913452, 43.667872 ], [ 17.295227, 43.446937 ], [ 17.674255, 43.028745 ], [ 18.558655, 42.650122 ], [ 18.448792, 42.480200 ], [ 17.509460, 42.851806 ], [ 16.929932, 43.211182 ], [ 16.015320, 43.508721 ], [ 15.172119, 44.243231 ], [ 15.375366, 44.317953 ], [ 14.919434, 44.738930 ], [ 14.900208, 45.077400 ], [ 14.257507, 45.234283 ], [ 13.949890, 44.803276 ], [ 13.656006, 45.137493 ], [ 13.677979, 45.485169 ], [ 13.713684, 45.500572 ], [ 14.411316, 45.467836 ], [ 14.592590, 45.635167 ], [ 14.933167, 45.473614 ], [ 15.325928, 45.452424 ], [ 15.323181, 45.733025 ], [ 15.669250, 45.834540 ], [ 15.768127, 46.238752 ], [ 16.564636, 46.504064 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Hungary", "sov_a3": "HUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Hungary", "adm0_a3": "HUN", "geou_dif": 0, "geounit": "Hungary", "gu_a3": "HUN", "su_dif": 0, "subunit": "Hungary", "su_a3": "HUN", "brk_diff": 0, "name": "Hungary", "name_long": "Hungary", "brk_a3": "HUN", "brk_name": "Hungary", "abbrev": "Hun.", "postal": "HU", "formal_en": "Republic of Hungary", "name_sort": "Hungary", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 9905596, "gdp_md_est": 196600, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "HU", "iso_a3": "HUN", "iso_n3": "348", "un_a3": "348", "wb_a2": "HU", "wb_a3": "HUN", "woe_id": -99, "adm0_a3_is": "HUN", "adm0_a3_us": "HUN", "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": "Polygon", "coordinates": [ [ [ 20.799866, 48.625647 ], [ 21.871033, 48.321560 ], [ 22.085266, 48.423733 ], [ 22.500000, 48.221013 ], [ 22.640076, 48.151428 ], [ 22.708740, 47.883197 ], [ 22.500000, 47.811310 ], [ 22.098999, 47.672786 ], [ 21.623840, 46.995241 ], [ 21.019592, 46.316584 ], [ 20.217590, 46.128460 ], [ 19.594116, 46.172223 ], [ 18.827820, 45.909122 ], [ 18.454285, 45.759859 ], [ 17.627563, 45.953059 ], [ 16.880493, 46.381044 ], [ 16.564636, 46.504064 ], [ 16.369629, 46.841407 ], [ 16.202087, 46.852678 ], [ 16.531677, 47.496792 ], [ 16.339417, 47.713458 ], [ 16.902466, 47.715306 ], [ 16.979370, 48.123934 ], [ 17.487488, 47.868459 ], [ 17.855530, 47.759637 ], [ 18.695984, 47.881355 ], [ 18.775635, 48.083584 ], [ 19.173889, 48.112933 ], [ 19.660034, 48.266741 ], [ 19.767151, 48.202710 ], [ 20.236816, 48.328865 ], [ 20.473022, 48.563885 ], [ 20.799866, 48.625647 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.535706, 49.066668 ], [ 22.381897, 48.922499 ], [ 22.280273, 48.826757 ], [ 22.085266, 48.423733 ], [ 21.871033, 48.321560 ], [ 20.799866, 48.625647 ], [ 20.473022, 48.563885 ], [ 20.236816, 48.328865 ], [ 19.767151, 48.202710 ], [ 19.660034, 48.266741 ], [ 19.173889, 48.112933 ], [ 18.775635, 48.083584 ], [ 18.695984, 47.881355 ], [ 17.855530, 47.759637 ], [ 17.487488, 47.868459 ], [ 16.979370, 48.123934 ], [ 16.877747, 48.471100 ], [ 17.100220, 48.817716 ], [ 17.542419, 48.801436 ], [ 17.885742, 48.904449 ], [ 17.891235, 48.922499 ], [ 17.913208, 48.998240 ], [ 18.102722, 49.045070 ], [ 18.110962, 49.066668 ], [ 22.535706, 49.066668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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.001343, 45.234283 ], [ 17.861023, 45.069641 ], [ 18.553162, 45.083218 ], [ 19.003601, 44.861710 ], [ 19.366150, 44.863656 ], [ 19.116211, 44.423973 ], [ 19.599609, 44.040219 ], [ 19.451294, 43.568452 ], [ 19.217834, 43.524655 ], [ 19.031067, 43.432977 ], [ 18.704224, 43.201172 ], [ 18.558655, 42.650122 ], [ 17.674255, 43.028745 ], [ 17.295227, 43.446937 ], [ 16.913452, 43.667872 ], [ 16.454773, 44.042193 ], [ 16.237793, 44.351350 ], [ 15.748901, 44.818864 ], [ 15.957642, 45.234283 ], [ 16.317444, 45.005593 ], [ 16.534424, 45.213004 ], [ 17.001343, 45.234283 ] ] ] } } +, +{ "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.217834, 43.524655 ], [ 19.481506, 43.353144 ], [ 19.629822, 43.215185 ], [ 19.956665, 43.106999 ], [ 20.338440, 42.900113 ], [ 20.256042, 42.813537 ], [ 20.069275, 42.589489 ], [ 19.800110, 42.500453 ], [ 19.736938, 42.688492 ], [ 19.302979, 42.195969 ], [ 19.371643, 41.877741 ], [ 19.160156, 41.955405 ], [ 18.880005, 42.283405 ], [ 18.448792, 42.480200 ], [ 18.558655, 42.650122 ], [ 18.704224, 43.201172 ], [ 19.031067, 43.432977 ], [ 19.217834, 43.524655 ] ] ] } } +, +{ "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.594116, 46.172223 ], [ 20.217590, 46.128460 ], [ 20.761414, 45.734943 ], [ 20.874023, 45.417732 ], [ 21.481018, 45.182037 ], [ 21.560669, 44.770137 ], [ 22.142944, 44.478871 ], [ 22.458801, 44.703802 ], [ 22.500000, 44.682325 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.429857 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.384729 ], [ 22.656555, 44.235360 ], [ 22.500000, 44.091531 ], [ 22.409363, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.719727, 43.448931 ], [ 22.719727, 42.994603 ], [ 22.604370, 42.900113 ], [ 22.500000, 42.700604 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.512602 ], [ 22.543945, 42.461967 ], [ 22.500000, 42.423457 ], [ 22.379150, 42.322001 ], [ 21.914978, 42.303722 ], [ 21.574402, 42.246819 ], [ 21.541443, 42.322001 ], [ 21.662292, 42.439674 ], [ 21.774902, 42.684454 ], [ 21.632080, 42.678397 ], [ 21.437073, 42.863886 ], [ 21.272278, 42.910172 ], [ 21.143188, 43.068888 ], [ 20.956421, 43.131057 ], [ 20.813599, 43.273206 ], [ 20.635071, 43.217187 ], [ 20.494995, 42.886027 ], [ 20.256042, 42.813537 ], [ 20.338440, 42.900113 ], [ 19.956665, 43.106999 ], [ 19.629822, 43.215185 ], [ 19.481506, 43.353144 ], [ 19.217834, 43.524655 ], [ 19.451294, 43.568452 ], [ 19.599609, 44.040219 ], [ 19.116211, 44.423973 ], [ 19.366150, 44.863656 ], [ 19.003601, 44.861710 ], [ 19.388123, 45.238152 ], [ 19.072266, 45.521744 ], [ 18.827820, 45.909122 ], [ 19.594116, 46.172223 ] ] ] } } +, +{ "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.813599, 43.273206 ], [ 20.956421, 43.131057 ], [ 21.143188, 43.068888 ], [ 21.272278, 42.910172 ], [ 21.437073, 42.863886 ], [ 21.632080, 42.678397 ], [ 21.774902, 42.684454 ], [ 21.662292, 42.439674 ], [ 21.541443, 42.322001 ], [ 21.574402, 42.246819 ], [ 21.351929, 42.208176 ], [ 20.761414, 42.053372 ], [ 20.714722, 41.849105 ], [ 20.588379, 41.857288 ], [ 20.522461, 42.218348 ], [ 20.283508, 42.322001 ], [ 20.069275, 42.589489 ], [ 20.256042, 42.813537 ], [ 20.494995, 42.886027 ], [ 20.635071, 43.217187 ], [ 20.813599, 43.273206 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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.736938, 42.688492 ], [ 19.800110, 42.500453 ], [ 20.069275, 42.589489 ], [ 20.283508, 42.322001 ], [ 20.522461, 42.218348 ], [ 20.588379, 41.857288 ], [ 20.462036, 41.516804 ], [ 20.604858, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.019592, 40.842905 ], [ 21.016846, 40.813809 ], [ 19.327698, 40.813809 ], [ 19.349670, 40.979898 ], [ 19.401855, 41.409776 ], [ 19.539185, 41.720081 ], [ 19.371643, 41.877741 ], [ 19.302979, 42.195969 ], [ 19.736938, 42.688492 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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.379150, 42.322001 ], [ 22.500000, 42.244785 ], [ 22.719727, 42.104336 ], [ 22.719727, 41.261291 ], [ 22.596130, 41.131090 ], [ 22.500000, 41.135227 ], [ 22.055054, 41.151774 ], [ 21.758423, 40.979898 ], [ 21.673279, 40.932190 ], [ 21.019592, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.087632 ], [ 20.462036, 41.516804 ], [ 20.588379, 41.857288 ], [ 20.714722, 41.849105 ], [ 20.761414, 42.053372 ], [ 21.351929, 42.208176 ], [ 21.914978, 42.303722 ], [ 22.379150, 42.322001 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "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": "Polygon", "coordinates": [ [ [ 22.719727, 47.886881 ], [ 22.719727, 44.146740 ], [ 22.656555, 44.235360 ], [ 22.500000, 44.384729 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.429857 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.682325 ], [ 22.458801, 44.703802 ], [ 22.142944, 44.478871 ], [ 21.560669, 44.770137 ], [ 21.481018, 45.182037 ], [ 20.874023, 45.417732 ], [ 20.761414, 45.734943 ], [ 20.217590, 46.128460 ], [ 21.019592, 46.316584 ], [ 21.623840, 46.995241 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.811310 ], [ 22.708740, 47.883197 ], [ 22.719727, 47.886881 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.719727, 42.994603 ], [ 22.719727, 42.104336 ], [ 22.500000, 42.244785 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.423457 ], [ 22.543945, 42.461967 ], [ 22.500000, 42.512602 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.700604 ], [ 22.604370, 42.900113 ], [ 22.719727, 42.994603 ] ] ], [ [ [ 22.719727, 43.448931 ], [ 22.500000, 43.644026 ], [ 22.409363, 44.008620 ], [ 22.500000, 44.091531 ], [ 22.656555, 44.235360 ], [ 22.719727, 44.146740 ], [ 22.719727, 43.448931 ] ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 22.629089, 49.066668 ], [ 22.719727, 49.043269 ], [ 22.719727, 47.886881 ], [ 22.708740, 47.883197 ], [ 22.640076, 48.151428 ], [ 22.500000, 48.221013 ], [ 22.085266, 48.423733 ], [ 22.280273, 48.826757 ], [ 22.381897, 48.922499 ], [ 22.535706, 49.066668 ], [ 22.629089, 49.066668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "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": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 41.261291 ], [ 22.719727, 40.813809 ], [ 21.016846, 40.813809 ], [ 21.019592, 40.842905 ], [ 21.673279, 40.932190 ], [ 21.758423, 40.979898 ], [ 22.055054, 41.151774 ], [ 22.500000, 41.135227 ], [ 22.596130, 41.131090 ], [ 22.719727, 41.261291 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 21.266785, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.500000, 54.949231 ], [ 22.719727, 54.870285 ], [ 22.719727, 54.759501 ], [ 22.648315, 54.583205 ], [ 22.719727, 54.364558 ], [ 22.719727, 54.327736 ], [ 22.500000, 54.326135 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.426920 ], [ 19.888000, 54.867124 ], [ 21.266785, 55.191412 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.505188, 55.899956 ], [ 12.582092, 55.776573 ], [ 12.689209, 55.610935 ], [ 12.087708, 54.800685 ], [ 11.250000, 55.254077 ], [ 11.041260, 55.365064 ], [ 11.030273, 55.405629 ], [ 11.030273, 55.808999 ], [ 11.431274, 55.899956 ], [ 12.505188, 55.899956 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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": "Polygon", "coordinates": [ [ [ 14.449768, 55.899956 ], [ 14.361877, 55.776573 ], [ 14.098206, 55.408748 ], [ 12.941895, 55.361942 ], [ 12.801819, 55.776573 ], [ 12.760620, 55.899956 ], [ 14.449768, 55.899956 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.516174, 54.471634 ], [ 13.645020, 54.077117 ], [ 14.117432, 53.758454 ], [ 14.350891, 53.248782 ], [ 14.073486, 52.981723 ], [ 14.436035, 52.626395 ], [ 14.683228, 52.091320 ], [ 14.606323, 51.745738 ], [ 15.015564, 51.106971 ], [ 14.570618, 51.003386 ], [ 14.306946, 51.117317 ], [ 14.054260, 50.927276 ], [ 13.337402, 50.734717 ], [ 12.966614, 50.485474 ], [ 12.238770, 50.266521 ], [ 12.414551, 49.970656 ], [ 12.518921, 49.548380 ], [ 13.029785, 49.307217 ], [ 13.535156, 48.922499 ], [ 13.595581, 48.877361 ], [ 13.518677, 48.777913 ], [ 11.030273, 48.777913 ], [ 11.030273, 54.025520 ], [ 11.250000, 54.067448 ], [ 11.955872, 54.197797 ], [ 12.516174, 54.471634 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Czech Republic", "sov_a3": "CZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Czech Republic", "adm0_a3": "CZE", "geou_dif": 0, "geounit": "Czech Republic", "gu_a3": "CZE", "su_dif": 0, "subunit": "Czech Republic", "su_a3": "CZE", "brk_diff": 0, "name": "Czech Rep.", "name_long": "Czech Republic", "brk_a3": "CZE", "brk_name": "Czech Rep.", "abbrev": "Cz. Rep.", "postal": "CZ", "formal_en": "Czech Republic", "name_sort": "Czech Republic", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 10211904, "gdp_md_est": 265200, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CZ", "iso_a3": "CZE", "iso_n3": "203", "un_a3": "203", "wb_a2": "CZ", "wb_a3": "CZE", "woe_id": -99, "adm0_a3_is": "CZE", "adm0_a3_us": "CZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 14, "abbrev_len": 8, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.306946, 51.117317 ], [ 14.570618, 51.003386 ], [ 15.015564, 51.106971 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.698197 ], [ 16.174622, 50.424269 ], [ 16.718445, 50.217337 ], [ 16.866760, 50.474987 ], [ 17.553406, 50.362985 ], [ 17.646790, 50.050085 ], [ 18.391113, 49.990084 ], [ 18.852539, 49.496675 ], [ 18.553162, 49.496675 ], [ 18.399353, 49.316171 ], [ 18.168640, 49.273181 ], [ 18.102722, 49.045070 ], [ 17.913208, 48.998240 ], [ 17.891235, 48.922499 ], [ 17.885742, 48.904449 ], [ 17.542419, 48.801436 ], [ 17.100220, 48.817716 ], [ 17.075500, 48.777913 ], [ 16.517944, 48.777913 ], [ 16.498718, 48.786962 ], [ 16.427307, 48.777913 ], [ 15.916443, 48.777913 ], [ 15.548401, 48.922499 ], [ 15.251770, 49.039668 ], [ 14.900208, 48.965794 ], [ 14.842529, 48.922499 ], [ 14.642029, 48.777913 ], [ 13.823547, 48.777913 ], [ 13.595581, 48.877361 ], [ 13.535156, 48.922499 ], [ 13.029785, 49.307217 ], [ 12.518921, 49.548380 ], [ 12.414551, 49.970656 ], [ 12.238770, 50.266521 ], [ 12.966614, 50.485474 ], [ 13.337402, 50.734717 ], [ 14.054260, 50.927276 ], [ 14.306946, 51.117317 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Poland", "sov_a3": "POL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Poland", "adm0_a3": "POL", "geou_dif": 0, "geounit": "Poland", "gu_a3": "POL", "su_dif": 0, "subunit": "Poland", "su_a3": "POL", "brk_diff": 0, "name": "Poland", "name_long": "Poland", "brk_a3": "POL", "brk_name": "Poland", "abbrev": "Pol.", "postal": "PL", "formal_en": "Republic of Poland", "name_sort": "Poland", "mapcolor7": 3, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 38482919, "gdp_md_est": 667900, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PL", "iso_a3": "POL", "iso_n3": "616", "un_a3": "616", "wb_a2": "PL", "wb_a3": "POL", "woe_id": -99, "adm0_a3_is": "POL", "adm0_a3_us": "POL", "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": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.622070, 54.852896 ], [ 18.619080, 54.683359 ], [ 18.695984, 54.439700 ], [ 19.660034, 54.426920 ], [ 20.890503, 54.313319 ], [ 22.500000, 54.326135 ], [ 22.719727, 54.327736 ], [ 22.719727, 49.664072 ], [ 22.516479, 49.477048 ], [ 22.719727, 49.127814 ], [ 22.719727, 49.043269 ], [ 22.557678, 49.086459 ], [ 22.500000, 49.109838 ], [ 21.607361, 49.471694 ], [ 20.887756, 49.330492 ], [ 20.415344, 49.432413 ], [ 19.824829, 49.217597 ], [ 19.319458, 49.573321 ], [ 18.907471, 49.435985 ], [ 18.391113, 49.990084 ], [ 17.646790, 50.050085 ], [ 17.553406, 50.362985 ], [ 16.866760, 50.474987 ], [ 16.718445, 50.217337 ], [ 16.174622, 50.424269 ], [ 16.237793, 50.698197 ], [ 15.490723, 50.785102 ], [ 15.015564, 51.106971 ], [ 14.606323, 51.745738 ], [ 14.683228, 52.091320 ], [ 14.436035, 52.626395 ], [ 14.073486, 52.981723 ], [ 14.350891, 53.248782 ], [ 14.117432, 53.758454 ], [ 14.801331, 54.051327 ], [ 16.361389, 54.514704 ], [ 17.622070, 54.852896 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Austria", "sov_a3": "AUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Austria", "adm0_a3": "AUT", "geou_dif": 0, "geounit": "Austria", "gu_a3": "AUT", "su_dif": 0, "subunit": "Austria", "su_a3": "AUT", "brk_diff": 0, "name": "Austria", "name_long": "Austria", "brk_a3": "AUT", "brk_name": "Austria", "abbrev": "Aust.", "postal": "A", "formal_en": "Republic of Austria", "name_sort": "Austria", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 8210281, "gdp_md_est": 329500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AT", "iso_a3": "AUT", "iso_n3": "040", "un_a3": "040", "wb_a2": "AT", "wb_a3": "AUT", "woe_id": -99, "adm0_a3_is": "AUT", "adm0_a3_us": "AUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.595581, 48.877361 ], [ 13.823547, 48.777913 ], [ 13.518677, 48.777913 ], [ 13.595581, 48.877361 ] ] ], [ [ [ 15.548401, 48.922499 ], [ 15.916443, 48.777913 ], [ 14.642029, 48.777913 ], [ 14.842529, 48.922499 ], [ 14.900208, 48.965794 ], [ 15.251770, 49.039668 ], [ 15.548401, 48.922499 ] ] ], [ [ [ 16.517944, 48.777913 ], [ 16.427307, 48.777913 ], [ 16.498718, 48.786962 ], [ 16.517944, 48.777913 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.319458, 49.573321 ], [ 19.824829, 49.217597 ], [ 20.415344, 49.432413 ], [ 20.887756, 49.330492 ], [ 21.607361, 49.471694 ], [ 22.500000, 49.109838 ], [ 22.557678, 49.086459 ], [ 22.500000, 49.032466 ], [ 22.381897, 48.922499 ], [ 22.280273, 48.826757 ], [ 22.255554, 48.777913 ], [ 17.075500, 48.777913 ], [ 17.100220, 48.817716 ], [ 17.542419, 48.801436 ], [ 17.885742, 48.904449 ], [ 17.891235, 48.922499 ], [ 17.913208, 48.998240 ], [ 18.102722, 49.045070 ], [ 18.168640, 49.273181 ], [ 18.399353, 49.316171 ], [ 18.553162, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.907471, 49.435985 ], [ 19.319458, 49.573321 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.719727, 54.870285 ], [ 22.500000, 54.949231 ], [ 22.313232, 55.015426 ], [ 21.266785, 55.191412 ], [ 21.118469, 55.776573 ], [ 21.088257, 55.899956 ], [ 22.719727, 55.899956 ], [ 22.719727, 54.870285 ] ] ], [ [ [ 22.719727, 54.759501 ], [ 22.719727, 54.364558 ], [ 22.648315, 54.583205 ], [ 22.719727, 54.759501 ] ] ] ] } } +, +{ "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": [ [ [ [ 22.719727, 49.043269 ], [ 22.719727, 48.777913 ], [ 22.255554, 48.777913 ], [ 22.280273, 48.826757 ], [ 22.381897, 48.922499 ], [ 22.500000, 49.032466 ], [ 22.557678, 49.086459 ], [ 22.719727, 49.043269 ] ] ], [ [ [ 22.719727, 49.127814 ], [ 22.516479, 49.477048 ], [ 22.719727, 49.664072 ], [ 22.719727, 49.127814 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 12.104187, 61.710706 ], [ 12.236023, 61.606396 ], [ 12.628784, 61.293988 ], [ 12.299194, 60.118251 ], [ 11.466980, 59.432506 ], [ 11.250000, 59.149178 ], [ 11.030273, 58.860644 ], [ 11.030273, 61.710706 ], [ 12.104187, 61.710706 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.370605, 56.111873 ], [ 12.582092, 55.776573 ], [ 12.661743, 55.652798 ], [ 11.030273, 55.652798 ], [ 11.030273, 55.808999 ], [ 11.250000, 55.859900 ], [ 12.370605, 56.111873 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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": "Polygon", "coordinates": [ [ [ 17.306213, 61.710706 ], [ 17.254028, 61.606396 ], [ 17.119446, 61.341444 ], [ 17.830811, 60.636836 ], [ 18.786621, 60.082653 ], [ 17.866516, 58.954258 ], [ 16.828308, 58.721173 ], [ 16.446533, 57.042224 ], [ 15.877991, 56.105747 ], [ 14.664001, 56.202121 ], [ 14.361877, 55.776573 ], [ 14.273987, 55.652798 ], [ 12.845764, 55.652798 ], [ 12.801819, 55.776573 ], [ 12.623291, 56.307396 ], [ 11.785583, 57.441993 ], [ 11.250000, 58.449170 ], [ 11.030273, 58.852121 ], [ 11.030273, 58.860644 ], [ 11.250000, 59.149178 ], [ 11.466980, 59.432506 ], [ 12.299194, 60.118251 ], [ 12.628784, 61.293988 ], [ 12.236023, 61.606396 ], [ 12.104187, 61.710706 ], [ 17.306213, 61.710706 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 61.710706 ], [ 22.719727, 59.989371 ], [ 22.500000, 60.196156 ], [ 22.288513, 60.392148 ], [ 21.321716, 60.720228 ], [ 21.519470, 61.606396 ], [ 21.544189, 61.705499 ], [ 21.541443, 61.710706 ], [ 22.719727, 61.710706 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "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": "Polygon", "coordinates": [ [ [ 22.521973, 57.754007 ], [ 22.719727, 57.571834 ], [ 22.719727, 56.318060 ], [ 22.500000, 56.327198 ], [ 22.200623, 56.337856 ], [ 21.055298, 56.032157 ], [ 21.088257, 56.784332 ], [ 21.579895, 57.412420 ], [ 22.500000, 57.745213 ], [ 22.521973, 57.754007 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.200623, 56.337856 ], [ 22.500000, 56.327198 ], [ 22.719727, 56.318060 ], [ 22.719727, 55.652798 ], [ 21.151428, 55.652798 ], [ 21.118469, 55.776573 ], [ 21.055298, 56.032157 ], [ 22.200623, 56.337856 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 15.468750, 66.600676 ], [ 15.391846, 66.513260 ], [ 15.106201, 66.194900 ], [ 13.554382, 64.788168 ], [ 13.919678, 64.445557 ], [ 13.570862, 64.049373 ], [ 12.579346, 64.067396 ], [ 11.928406, 63.129538 ], [ 11.991577, 61.800390 ], [ 12.236023, 61.606396 ], [ 12.367859, 61.501734 ], [ 11.030273, 61.501734 ], [ 11.030273, 64.876938 ], [ 11.250000, 65.045491 ], [ 12.356873, 65.880337 ], [ 13.125916, 66.513260 ], [ 13.233032, 66.600676 ], [ 15.468750, 66.600676 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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": "Polygon", "coordinates": [ [ [ 22.719727, 66.600676 ], [ 22.719727, 65.812906 ], [ 22.500000, 65.776871 ], [ 22.181396, 65.723852 ], [ 21.211853, 65.026945 ], [ 21.368408, 64.414735 ], [ 19.778137, 63.609658 ], [ 17.847290, 62.749696 ], [ 17.254028, 61.606396 ], [ 17.199097, 61.501734 ], [ 12.367859, 61.501734 ], [ 12.236023, 61.606396 ], [ 11.991577, 61.800390 ], [ 11.928406, 63.129538 ], [ 12.579346, 64.067396 ], [ 13.570862, 64.049373 ], [ 13.919678, 64.445557 ], [ 13.554382, 64.788168 ], [ 15.106201, 66.194900 ], [ 15.391846, 66.513260 ], [ 15.468750, 66.600676 ], [ 22.719727, 66.600676 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 63.951849 ], [ 22.719727, 61.501734 ], [ 21.497498, 61.501734 ], [ 21.519470, 61.606396 ], [ 21.544189, 61.705499 ], [ 21.058044, 62.608508 ], [ 21.535950, 63.190302 ], [ 22.442322, 63.818864 ], [ 22.500000, 63.845512 ], [ 22.719727, 63.951849 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 21.376648, 70.255741 ], [ 22.500000, 70.219523 ], [ 22.719727, 70.212085 ], [ 22.719727, 68.855592 ], [ 22.500000, 68.847665 ], [ 22.354431, 68.842709 ], [ 21.244812, 69.370638 ], [ 20.643311, 69.106797 ], [ 20.022583, 69.065619 ], [ 19.877014, 68.407268 ], [ 17.992859, 68.567410 ], [ 17.726440, 68.010656 ], [ 16.767883, 68.014770 ], [ 16.108704, 67.302797 ], [ 15.391846, 66.513260 ], [ 15.312195, 66.425537 ], [ 13.016052, 66.425537 ], [ 13.125916, 66.513260 ], [ 14.760132, 67.811319 ], [ 16.435547, 68.563395 ], [ 19.182129, 69.817839 ], [ 21.376648, 70.255741 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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": "Polygon", "coordinates": [ [ [ 20.643311, 69.106797 ], [ 21.978149, 68.617535 ], [ 22.500000, 68.392101 ], [ 22.719727, 68.296827 ], [ 22.719727, 66.425537 ], [ 15.312195, 66.425537 ], [ 15.391846, 66.513260 ], [ 16.108704, 67.302797 ], [ 16.767883, 68.014770 ], [ 17.726440, 68.010656 ], [ 17.992859, 68.567410 ], [ 19.877014, 68.407268 ], [ 20.022583, 69.065619 ], [ 20.643311, 69.106797 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.244812, 69.370638 ], [ 22.354431, 68.842709 ], [ 22.500000, 68.847665 ], [ 22.719727, 68.855592 ], [ 22.719727, 68.296827 ], [ 22.500000, 68.392101 ], [ 21.978149, 68.617535 ], [ 20.643311, 69.106797 ], [ 21.244812, 69.370638 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 17.163391, 76.890745 ], [ 17.133179, 76.840816 ], [ 17.116699, 76.809516 ], [ 15.910950, 76.770602 ], [ 15.669250, 76.840816 ], [ 15.496216, 76.890745 ], [ 17.163391, 76.890745 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 20.434570, 79.212538 ], [ 20.615845, 79.171335 ], [ 21.541443, 78.956138 ], [ 19.025574, 78.562667 ], [ 18.470764, 77.826799 ], [ 17.591858, 77.638306 ], [ 17.133179, 76.840816 ], [ 17.116699, 76.809516 ], [ 16.537170, 76.790701 ], [ 15.842285, 76.790701 ], [ 15.669250, 76.840816 ], [ 13.760376, 77.380506 ], [ 14.669495, 77.736118 ], [ 13.169861, 78.025004 ], [ 11.250000, 78.857848 ], [ 11.219788, 78.869518 ], [ 11.030273, 79.068167 ], [ 11.030273, 79.212538 ], [ 20.434570, 79.212538 ] ] ], [ [ [ 22.719727, 78.439474 ], [ 22.719727, 77.488064 ], [ 22.500000, 77.446940 ], [ 22.489014, 77.445149 ], [ 20.725708, 77.677053 ], [ 21.415100, 77.935203 ], [ 20.810852, 78.254743 ], [ 22.500000, 78.418539 ], [ 22.719727, 78.439474 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 16.990356, 80.050934 ], [ 18.251038, 79.701925 ], [ 20.615845, 79.171335 ], [ 20.794373, 79.129976 ], [ 11.030273, 79.129976 ], [ 11.030273, 79.730854 ], [ 11.250000, 79.759702 ], [ 13.169861, 80.010518 ], [ 13.716431, 79.660599 ], [ 15.141907, 79.674392 ], [ 15.520935, 80.016233 ], [ 16.990356, 80.050934 ] ] ], [ [ [ 22.719727, 80.599153 ], [ 22.719727, 79.417753 ], [ 22.500000, 79.430356 ], [ 20.074768, 79.567014 ], [ 19.896240, 79.842378 ], [ 18.459778, 79.860284 ], [ 17.366638, 80.319196 ], [ 20.453796, 80.598255 ], [ 21.906738, 80.357916 ], [ 22.500000, 80.534330 ], [ 22.719727, 80.599153 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 19 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Africa", "sov_a3": "ZAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Africa", "adm0_a3": "ZAF", "geou_dif": 0, "geounit": "South Africa", "gu_a3": "ZAF", "su_dif": 0, "subunit": "South Africa", "su_a3": "ZAF", "brk_diff": 0, "name": "South Africa", "name_long": "South Africa", "brk_a3": "ZAF", "brk_name": "South Africa", "abbrev": "S.Af.", "postal": "ZA", "formal_en": "Republic of South Africa", "name_sort": "South Africa", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 49052489, "gdp_md_est": 491000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ZA", "iso_a3": "ZAF", "iso_n3": "710", "un_a3": "710", "wb_a2": "ZA", "wb_a3": "ZAF", "woe_id": -99, "adm0_a3_is": "ZAF", "adm0_a3_us": "ZAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.371948, -31.765537 ], [ 29.165955, -31.952162 ], [ 28.924255, -32.170963 ], [ 28.218384, -32.771110 ], [ 27.463074, -33.224903 ], [ 26.419373, -33.614619 ], [ 25.908508, -33.664925 ], [ 25.779419, -33.943360 ], [ 25.172424, -33.795126 ], [ 24.675293, -33.986641 ], [ 23.593140, -33.792844 ], [ 22.986145, -33.916013 ], [ 22.571411, -33.863574 ], [ 22.500000, -33.890937 ], [ 22.280273, -33.975253 ], [ 22.280273, -31.765537 ], [ 29.371948, -31.765537 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 18 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zimbabwe", "sov_a3": "ZWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zimbabwe", "adm0_a3": "ZWE", "geou_dif": 0, "geounit": "Zimbabwe", "gu_a3": "ZWE", "su_dif": 0, "subunit": "Zimbabwe", "su_a3": "ZWE", "brk_diff": 0, "name": "Zimbabwe", "name_long": "Zimbabwe", "brk_a3": "ZWE", "brk_name": "Zimbabwe", "abbrev": "Zimb.", "postal": "ZW", "formal_en": "Republic of Zimbabwe", "name_sort": "Zimbabwe", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 12619600, "gdp_md_est": 9323, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ZW", "iso_a3": "ZWE", "iso_n3": "716", "un_a3": "716", "wb_a2": "ZW", "wb_a3": "ZWE", "woe_id": -99, "adm0_a3_is": "ZWE", "adm0_a3_us": "ZWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.665344, -21.739091 ], [ 31.475830, -21.943046 ], [ 31.190186, -22.250971 ], [ 30.657349, -22.149252 ], [ 30.322266, -22.271306 ], [ 29.838867, -22.100909 ], [ 29.429626, -22.090730 ], [ 29.220886, -21.943046 ], [ 28.932495, -21.739091 ], [ 31.665344, -21.739091 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mozambique", "sov_a3": "MOZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mozambique", "adm0_a3": "MOZ", "geou_dif": 0, "geounit": "Mozambique", "gu_a3": "MOZ", "su_dif": 0, "subunit": "Mozambique", "su_a3": "MOZ", "brk_diff": 0, "name": "Mozambique", "name_long": "Mozambique", "brk_a3": "MOZ", "brk_name": "Mozambique", "abbrev": "Moz.", "postal": "MZ", "formal_en": "Republic of Mozambique", "name_sort": "Mozambique", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 21669278, "gdp_md_est": 18940, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MZ", "iso_a3": "MOZ", "iso_n3": "508", "un_a3": "508", "wb_a2": "MZ", "wb_a3": "MOZ", "woe_id": -99, "adm0_a3_is": "MOZ", "adm0_a3_us": "MOZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, -21.739091 ], [ 33.969727, -24.926295 ], [ 33.750000, -25.025884 ], [ 33.011169, -25.356437 ], [ 32.574463, -25.725684 ], [ 32.659607, -26.148042 ], [ 32.915039, -26.214591 ], [ 32.829895, -26.740705 ], [ 32.069092, -26.733346 ], [ 31.983948, -26.290953 ], [ 31.835632, -25.841921 ], [ 31.750488, -25.482951 ], [ 31.929016, -24.367114 ], [ 31.668091, -23.657104 ], [ 31.190186, -22.250971 ], [ 31.475830, -21.943046 ], [ 31.665344, -21.739091 ], [ 33.969727, -21.739091 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 28.932495, -21.739091 ], [ 29.220886, -21.943046 ], [ 29.429626, -22.090730 ], [ 28.015137, -22.826820 ], [ 27.117004, -23.574057 ], [ 26.784668, -24.239451 ], [ 26.485291, -24.614560 ], [ 25.941467, -24.694439 ], [ 25.765686, -25.172631 ], [ 25.664062, -25.485431 ], [ 25.024109, -25.718261 ], [ 24.211121, -25.668760 ], [ 23.733215, -25.388698 ], [ 23.310242, -25.267052 ], [ 22.824097, -25.500306 ], [ 22.576904, -25.977799 ], [ 22.500000, -26.029638 ], [ 22.280273, -26.167764 ], [ 22.280273, -21.739091 ], [ 28.932495, -21.739091 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Africa", "sov_a3": "ZAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Africa", "adm0_a3": "ZAF", "geou_dif": 0, "geounit": "South Africa", "gu_a3": "ZAF", "su_dif": 0, "subunit": "South Africa", "su_a3": "ZAF", "brk_diff": 0, "name": "South Africa", "name_long": "South Africa", "brk_a3": "ZAF", "brk_name": "South Africa", "abbrev": "S.Af.", "postal": "ZA", "formal_en": "Republic of South Africa", "name_sort": "South Africa", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 49052489, "gdp_md_est": 491000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ZA", "iso_a3": "ZAF", "iso_n3": "710", "un_a3": "710", "wb_a2": "ZA", "wb_a3": "ZAF", "woe_id": -99, "adm0_a3_is": "ZAF", "adm0_a3_us": "ZAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.429626, -22.090730 ], [ 29.838867, -22.100909 ], [ 30.322266, -22.271306 ], [ 30.657349, -22.149252 ], [ 31.190186, -22.250971 ], [ 31.668091, -23.657104 ], [ 31.929016, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.835632, -25.841921 ], [ 31.333008, -25.658858 ], [ 31.041870, -25.730633 ], [ 30.948486, -26.022234 ], [ 30.676575, -26.396790 ], [ 30.684814, -26.743158 ], [ 31.280823, -27.283926 ], [ 31.865845, -27.176469 ], [ 32.069092, -26.733346 ], [ 32.829895, -26.740705 ], [ 32.579956, -27.469287 ], [ 32.461853, -28.299544 ], [ 32.200928, -28.750805 ], [ 31.519775, -29.255252 ], [ 31.324768, -29.401320 ], [ 30.899048, -29.909710 ], [ 30.621643, -30.422625 ], [ 30.053101, -31.139954 ], [ 29.165955, -31.952162 ], [ 28.959961, -32.138409 ], [ 22.280273, -32.138409 ], [ 22.280273, -26.167764 ], [ 22.500000, -26.029638 ], [ 22.576904, -25.977799 ], [ 22.824097, -25.500306 ], [ 23.310242, -25.267052 ], [ 23.733215, -25.388698 ], [ 24.211121, -25.668760 ], [ 25.024109, -25.718261 ], [ 25.664062, -25.485431 ], [ 25.765686, -25.172631 ], [ 25.941467, -24.694439 ], [ 26.485291, -24.614560 ], [ 26.784668, -24.239451 ], [ 27.117004, -23.574057 ], [ 28.015137, -22.826820 ], [ 29.429626, -22.090730 ] ], [ [ 28.539734, -28.647210 ], [ 28.072815, -28.849485 ], [ 27.531738, -29.240874 ], [ 26.998901, -29.873992 ], [ 27.748718, -30.645001 ], [ 28.105774, -30.545704 ], [ 28.289795, -30.225848 ], [ 28.847351, -30.069094 ], [ 29.017639, -29.742917 ], [ 29.322510, -29.255252 ], [ 28.976440, -28.955282 ], [ 28.539734, -28.647210 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Swaziland", "sov_a3": "SWZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Swaziland", "adm0_a3": "SWZ", "geou_dif": 0, "geounit": "Swaziland", "gu_a3": "SWZ", "su_dif": 0, "subunit": "Swaziland", "su_a3": "SWZ", "brk_diff": 0, "name": "Swaziland", "name_long": "Swaziland", "brk_a3": "SWZ", "brk_name": "Swaziland", "abbrev": "Swz.", "postal": "SW", "formal_en": "Kingdom of Swaziland", "name_sort": "Swaziland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 1123913, "gdp_md_est": 5702, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SZ", "iso_a3": "SWZ", "iso_n3": "748", "un_a3": "748", "wb_a2": "SZ", "wb_a3": "SWZ", "woe_id": -99, "adm0_a3_is": "SWZ", "adm0_a3_us": "SWZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.333008, -25.658858 ], [ 31.835632, -25.841921 ], [ 31.983948, -26.290953 ], [ 32.069092, -26.733346 ], [ 31.865845, -27.176469 ], [ 31.280823, -27.283926 ], [ 30.684814, -26.743158 ], [ 30.676575, -26.396790 ], [ 30.948486, -26.022234 ], [ 31.041870, -25.730633 ], [ 31.333008, -25.658858 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Lesotho", "sov_a3": "LSO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lesotho", "adm0_a3": "LSO", "geou_dif": 0, "geounit": "Lesotho", "gu_a3": "LSO", "su_dif": 0, "subunit": "Lesotho", "su_a3": "LSO", "brk_diff": 0, "name": "Lesotho", "name_long": "Lesotho", "brk_a3": "LSO", "brk_name": "Lesotho", "abbrev": "Les.", "postal": "LS", "formal_en": "Kingdom of Lesotho", "name_sort": "Lesotho", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 2130819, "gdp_md_est": 3293, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LS", "iso_a3": "LSO", "iso_n3": "426", "un_a3": "426", "wb_a2": "LS", "wb_a3": "LSO", "woe_id": -99, "adm0_a3_is": "LSO", "adm0_a3_us": "LSO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.539734, -28.647210 ], [ 28.976440, -28.955282 ], [ 29.322510, -29.255252 ], [ 29.017639, -29.742917 ], [ 28.847351, -30.069094 ], [ 28.289795, -30.225848 ], [ 28.105774, -30.545704 ], [ 27.748718, -30.645001 ], [ 26.998901, -29.873992 ], [ 27.531738, -29.240874 ], [ 28.072815, -28.849485 ], [ 28.539734, -28.647210 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 17 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.473816, -10.962764 ], [ 28.446350, -11.178402 ], [ 28.372192, -11.792080 ], [ 28.641357, -11.969471 ], [ 29.338989, -12.358783 ], [ 29.613647, -12.176280 ], [ 29.698792, -13.255986 ], [ 28.932495, -13.247966 ], [ 28.523254, -12.696612 ], [ 28.152466, -12.270231 ], [ 27.386169, -12.130635 ], [ 27.163696, -11.606503 ], [ 26.551208, -11.923790 ], [ 25.751953, -11.784014 ], [ 25.416870, -11.329253 ], [ 24.782410, -11.237674 ], [ 24.312744, -11.261919 ], [ 24.296265, -11.178402 ], [ 24.257812, -10.962764 ], [ 28.473816, -10.962764 ] ] ], [ [ [ 23.063049, -10.962764 ], [ 22.835083, -11.016689 ], [ 22.401123, -10.992424 ], [ 22.280273, -11.038255 ], [ 22.280273, -10.962764 ], [ 23.063049, -10.962764 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.280273, -12.900166 ], [ 22.280273, -11.038255 ], [ 22.401123, -10.992424 ], [ 22.835083, -11.016689 ], [ 23.063049, -10.962764 ], [ 23.922729, -10.962764 ], [ 23.996887, -11.178402 ], [ 24.016113, -11.234980 ], [ 23.903503, -11.722167 ], [ 24.079285, -12.189704 ], [ 23.928223, -12.565287 ], [ 24.016113, -12.910875 ], [ 22.500000, -12.900166 ], [ 22.280273, -12.900166 ] ] ], [ [ [ 22.280273, -16.554594 ], [ 22.500000, -16.820316 ], [ 22.560425, -16.896544 ], [ 23.214111, -17.520963 ], [ 22.500000, -17.680662 ], [ 22.280273, -17.730375 ], [ 22.280273, -16.554594 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Namibia", "sov_a3": "NAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Namibia", "adm0_a3": "NAM", "geou_dif": 0, "geounit": "Namibia", "gu_a3": "NAM", "su_dif": 0, "subunit": "Namibia", "su_a3": "NAM", "brk_diff": 0, "name": "Namibia", "name_long": "Namibia", "brk_a3": "NAM", "brk_name": "Namibia", "abbrev": "Nam.", "postal": "NA", "formal_en": "Republic of Namibia", "name_sort": "Namibia", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 2108665, "gdp_md_est": 13250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "NA", "iso_a3": "NAM", "iso_n3": "516", "un_a3": "516", "wb_a2": "NA", "wb_a3": "NAM", "woe_id": -99, "adm0_a3_is": "NAM", "adm0_a3_us": "NAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.032593, -17.295576 ], [ 24.680786, -17.353260 ], [ 25.076294, -17.578576 ], [ 25.081787, -17.659726 ], [ 24.518738, -17.884659 ], [ 24.216614, -17.887273 ], [ 23.576660, -18.278910 ], [ 23.194885, -17.868975 ], [ 22.500000, -18.025751 ], [ 22.280273, -18.075368 ], [ 22.280273, -17.730375 ], [ 22.500000, -17.680662 ], [ 23.214111, -17.520963 ], [ 24.032593, -17.295576 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.272095, -10.962764 ], [ 33.219910, -11.178402 ], [ 33.112793, -11.606503 ], [ 33.305054, -12.433894 ], [ 32.989197, -12.782339 ], [ 32.687073, -13.712704 ], [ 33.211670, -13.971385 ], [ 30.179443, -14.793472 ], [ 30.272827, -15.506619 ], [ 29.514771, -15.644197 ], [ 28.946228, -16.040534 ], [ 28.825378, -16.388661 ], [ 28.465576, -16.467695 ], [ 27.597656, -17.290332 ], [ 27.042847, -17.936929 ], [ 26.705017, -17.960445 ], [ 26.380920, -17.845447 ], [ 25.263062, -17.735607 ], [ 25.081787, -17.659726 ], [ 25.076294, -17.578576 ], [ 24.680786, -17.353260 ], [ 24.032593, -17.295576 ], [ 23.214111, -17.520963 ], [ 22.560425, -16.896544 ], [ 22.500000, -16.820316 ], [ 22.280273, -16.554594 ], [ 22.280273, -12.900166 ], [ 22.500000, -12.900166 ], [ 24.016113, -12.910875 ], [ 23.928223, -12.565287 ], [ 24.079285, -12.189704 ], [ 23.903503, -11.722167 ], [ 24.016113, -11.234980 ], [ 23.996887, -11.178402 ], [ 23.922729, -10.962764 ], [ 24.257812, -10.962764 ], [ 24.296265, -11.178402 ], [ 24.312744, -11.261919 ], [ 24.782410, -11.237674 ], [ 25.416870, -11.329253 ], [ 25.751953, -11.784014 ], [ 26.551208, -11.923790 ], [ 27.163696, -11.606503 ], [ 27.386169, -12.130635 ], [ 28.152466, -12.270231 ], [ 28.523254, -12.696612 ], [ 28.932495, -13.247966 ], [ 29.698792, -13.255986 ], [ 29.613647, -12.176280 ], [ 29.338989, -12.358783 ], [ 28.641357, -11.969471 ], [ 28.372192, -11.792080 ], [ 28.446350, -11.178402 ], [ 28.473816, -10.962764 ], [ 33.272095, -10.962764 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zimbabwe", "sov_a3": "ZWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zimbabwe", "adm0_a3": "ZWE", "geou_dif": 0, "geounit": "Zimbabwe", "gu_a3": "ZWE", "su_dif": 0, "subunit": "Zimbabwe", "su_a3": "ZWE", "brk_diff": 0, "name": "Zimbabwe", "name_long": "Zimbabwe", "brk_a3": "ZWE", "brk_name": "Zimbabwe", "abbrev": "Zimb.", "postal": "ZW", "formal_en": "Republic of Zimbabwe", "name_sort": "Zimbabwe", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 12619600, "gdp_md_est": 9323, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ZW", "iso_a3": "ZWE", "iso_n3": "716", "un_a3": "716", "wb_a2": "ZW", "wb_a3": "ZWE", "woe_id": -99, "adm0_a3_is": "ZWE", "adm0_a3_us": "ZWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.272827, -15.506619 ], [ 30.338745, -15.879451 ], [ 31.170959, -15.858316 ], [ 31.635132, -16.069568 ], [ 31.849365, -16.317504 ], [ 32.327271, -16.391296 ], [ 32.846375, -16.712494 ], [ 32.849121, -17.978733 ], [ 32.654114, -18.669665 ], [ 32.610168, -19.417383 ], [ 32.772217, -19.715000 ], [ 32.659607, -20.303418 ], [ 32.508545, -20.393549 ], [ 32.244873, -21.115249 ], [ 31.475830, -21.943046 ], [ 31.286316, -22.146708 ], [ 29.965210, -22.146708 ], [ 29.838867, -22.100909 ], [ 29.429626, -22.090730 ], [ 29.220886, -21.943046 ], [ 28.792419, -21.637005 ], [ 28.020630, -21.483741 ], [ 27.726746, -20.851112 ], [ 27.723999, -20.496492 ], [ 27.295532, -20.390974 ], [ 26.163940, -19.292998 ], [ 25.848083, -18.713894 ], [ 25.647583, -18.534304 ], [ 25.263062, -17.735607 ], [ 26.380920, -17.845447 ], [ 26.705017, -17.960445 ], [ 27.042847, -17.936929 ], [ 27.597656, -17.290332 ], [ 28.465576, -16.467695 ], [ 28.825378, -16.388661 ], [ 28.946228, -16.040534 ], [ 29.514771, -15.644197 ], [ 30.272827, -15.506619 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, -10.962764 ], [ 33.969727, -14.389458 ], [ 33.788452, -14.450639 ], [ 33.211670, -13.971385 ], [ 32.687073, -13.712704 ], [ 32.989197, -12.782339 ], [ 33.305054, -12.433894 ], [ 33.112793, -11.606503 ], [ 33.219910, -11.178402 ], [ 33.272095, -10.962764 ], [ 33.969727, -10.962764 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mozambique", "sov_a3": "MOZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mozambique", "adm0_a3": "MOZ", "geou_dif": 0, "geounit": "Mozambique", "gu_a3": "MOZ", "su_dif": 0, "subunit": "Mozambique", "su_a3": "MOZ", "brk_diff": 0, "name": "Mozambique", "name_long": "Mozambique", "brk_a3": "MOZ", "brk_name": "Mozambique", "abbrev": "Moz.", "postal": "MZ", "formal_en": "Republic of Mozambique", "name_sort": "Mozambique", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 21669278, "gdp_md_est": 18940, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MZ", "iso_a3": "MOZ", "iso_n3": "508", "un_a3": "508", "wb_a2": "MZ", "wb_a3": "MOZ", "woe_id": -99, "adm0_a3_is": "MOZ", "adm0_a3_us": "MOZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.211670, -13.971385 ], [ 33.788452, -14.450639 ], [ 33.969727, -14.389458 ], [ 33.969727, -22.146708 ], [ 31.286316, -22.146708 ], [ 31.475830, -21.943046 ], [ 32.244873, -21.115249 ], [ 32.508545, -20.393549 ], [ 32.659607, -20.303418 ], [ 32.772217, -19.715000 ], [ 32.610168, -19.417383 ], [ 32.654114, -18.669665 ], [ 32.849121, -17.978733 ], [ 32.846375, -16.712494 ], [ 32.327271, -16.391296 ], [ 31.849365, -16.317504 ], [ 31.635132, -16.069568 ], [ 31.170959, -15.858316 ], [ 30.338745, -15.879451 ], [ 30.272827, -15.506619 ], [ 30.179443, -14.793472 ], [ 33.211670, -13.971385 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 25.081787, -17.659726 ], [ 25.263062, -17.735607 ], [ 25.647583, -18.534304 ], [ 25.848083, -18.713894 ], [ 26.163940, -19.292998 ], [ 27.295532, -20.390974 ], [ 27.723999, -20.496492 ], [ 27.726746, -20.851112 ], [ 28.020630, -21.483741 ], [ 28.792419, -21.637005 ], [ 29.220886, -21.943046 ], [ 29.429626, -22.090730 ], [ 29.325256, -22.146708 ], [ 22.280273, -22.146708 ], [ 22.280273, -18.075368 ], [ 22.500000, -18.025751 ], [ 23.194885, -17.868975 ], [ 23.576660, -18.278910 ], [ 24.216614, -17.887273 ], [ 24.518738, -17.884659 ], [ 25.081787, -17.659726 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Africa", "sov_a3": "ZAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Africa", "adm0_a3": "ZAF", "geou_dif": 0, "geounit": "South Africa", "gu_a3": "ZAF", "su_dif": 0, "subunit": "South Africa", "su_a3": "ZAF", "brk_diff": 0, "name": "South Africa", "name_long": "South Africa", "brk_a3": "ZAF", "brk_name": "South Africa", "abbrev": "S.Af.", "postal": "ZA", "formal_en": "Republic of South Africa", "name_sort": "South Africa", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 49052489, "gdp_md_est": 491000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ZA", "iso_a3": "ZAF", "iso_n3": "710", "un_a3": "710", "wb_a2": "ZA", "wb_a3": "ZAF", "woe_id": -99, "adm0_a3_is": "ZAF", "adm0_a3_us": "ZAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.429626, -22.090730 ], [ 29.838867, -22.100909 ], [ 29.965210, -22.146708 ], [ 29.325256, -22.146708 ], [ 29.429626, -22.090730 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 16 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 0.219726 ], [ 33.892822, 0.109863 ], [ 33.901062, -0.947528 ], [ 33.750000, -0.955766 ], [ 31.865845, -1.027167 ], [ 30.767212, -1.013436 ], [ 30.418396, -1.134264 ], [ 29.819641, -1.441803 ], [ 29.577942, -1.340210 ], [ 29.586182, -0.585012 ], [ 29.816895, -0.203247 ], [ 29.833374, 0.000000 ], [ 29.847107, 0.219726 ], [ 33.969727, 0.219726 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 0.219726 ], [ 33.969727, -0.991467 ], [ 33.901062, -0.947528 ], [ 33.892822, 0.109863 ], [ 33.969727, 0.219726 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.847107, 0.219726 ], [ 29.833374, 0.000000 ], [ 29.816895, -0.203247 ], [ 29.586182, -0.585012 ], [ 29.577942, -1.340210 ], [ 29.289551, -1.617522 ], [ 29.253845, -2.213195 ], [ 29.116516, -2.290039 ], [ 29.023132, -2.838804 ], [ 29.275818, -3.291340 ], [ 29.338989, -4.499762 ], [ 29.517517, -5.419148 ], [ 29.418640, -5.938436 ], [ 29.619141, -6.520001 ], [ 30.198669, -7.079088 ], [ 30.739746, -8.339236 ], [ 30.344238, -8.235955 ], [ 29.001160, -8.404451 ], [ 28.734741, -8.523984 ], [ 28.449097, -9.164467 ], [ 28.671570, -9.603458 ], [ 28.495789, -10.787443 ], [ 28.446350, -11.178402 ], [ 28.418884, -11.393879 ], [ 25.463562, -11.393879 ], [ 25.416870, -11.329253 ], [ 24.782410, -11.237674 ], [ 24.312744, -11.261919 ], [ 24.296265, -11.178402 ], [ 24.255066, -10.951978 ], [ 23.911743, -10.925011 ], [ 23.455811, -10.865676 ], [ 22.835083, -11.016689 ], [ 22.500000, -10.997816 ], [ 22.401123, -10.992424 ], [ 22.280273, -11.038255 ], [ 22.280273, 0.219726 ], [ 29.847107, 0.219726 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.455811, -10.865676 ], [ 23.911743, -10.925011 ], [ 23.996887, -11.178402 ], [ 24.016113, -11.234980 ], [ 23.980408, -11.393879 ], [ 22.280273, -11.393879 ], [ 22.280273, -11.038255 ], [ 22.401123, -10.992424 ], [ 22.500000, -10.997816 ], [ 22.835083, -11.016689 ], [ 23.455811, -10.865676 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Rwanda", "sov_a3": "RWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Rwanda", "adm0_a3": "RWA", "geou_dif": 0, "geounit": "Rwanda", "gu_a3": "RWA", "su_dif": 0, "subunit": "Rwanda", "su_a3": "RWA", "brk_diff": 0, "name": "Rwanda", "name_long": "Rwanda", "brk_a3": "RWA", "brk_name": "Rwanda", "abbrev": "Rwa.", "postal": "RW", "formal_en": "Republic of Rwanda", "name_sort": "Rwanda", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 10473282, "gdp_md_est": 9706, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "RW", "iso_a3": "RWA", "iso_n3": "646", "un_a3": "646", "wb_a2": "RW", "wb_a3": "RWA", "woe_id": -99, "adm0_a3_is": "RWA", "adm0_a3_us": "RWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.418396, -1.134264 ], [ 30.813904, -1.697139 ], [ 30.756226, -2.284551 ], [ 30.467834, -2.413532 ], [ 29.937744, -2.347670 ], [ 29.630127, -2.915611 ], [ 29.023132, -2.838804 ], [ 29.116516, -2.290039 ], [ 29.253845, -2.213195 ], [ 29.289551, -1.617522 ], [ 29.577942, -1.340210 ], [ 29.819641, -1.441803 ], [ 30.418396, -1.134264 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Burundi", "sov_a3": "BDI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burundi", "adm0_a3": "BDI", "geou_dif": 0, "geounit": "Burundi", "gu_a3": "BDI", "su_dif": 0, "subunit": "Burundi", "su_a3": "BDI", "brk_diff": 0, "name": "Burundi", "name_long": "Burundi", "brk_a3": "BDI", "brk_name": "Burundi", "abbrev": "Bur.", "postal": "BI", "formal_en": "Republic of Burundi", "name_sort": "Burundi", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8988091, "gdp_md_est": 3102, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BI", "iso_a3": "BDI", "iso_n3": "108", "un_a3": "108", "wb_a2": "BI", "wb_a3": "BDI", "woe_id": -99, "adm0_a3_is": "BDI", "adm0_a3_us": "BDI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.937744, -2.347670 ], [ 30.467834, -2.413532 ], [ 30.525513, -2.805885 ], [ 30.742493, -3.033555 ], [ 30.750732, -3.357147 ], [ 30.503540, -3.568248 ], [ 30.116272, -4.088932 ], [ 29.750977, -4.450474 ], [ 29.338989, -4.499762 ], [ 29.275818, -3.291340 ], [ 29.023132, -2.838804 ], [ 29.630127, -2.915611 ], [ 29.937744, -2.347670 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.911743, -10.925011 ], [ 24.255066, -10.951978 ], [ 24.296265, -11.178402 ], [ 24.312744, -11.261919 ], [ 24.782410, -11.237674 ], [ 25.416870, -11.329253 ], [ 25.463562, -11.393879 ], [ 23.980408, -11.393879 ], [ 24.016113, -11.234980 ], [ 23.996887, -11.178402 ], [ 23.911743, -10.925011 ] ] ], [ [ [ 30.739746, -8.339236 ], [ 31.157227, -8.591884 ], [ 31.555481, -8.760224 ], [ 32.189941, -8.928487 ], [ 32.758484, -9.229538 ], [ 33.230896, -9.676569 ], [ 33.483582, -10.522919 ], [ 33.313293, -10.795537 ], [ 33.219910, -11.178402 ], [ 33.164978, -11.393879 ], [ 28.418884, -11.393879 ], [ 28.446350, -11.178402 ], [ 28.495789, -10.787443 ], [ 28.671570, -9.603458 ], [ 28.449097, -9.164467 ], [ 28.734741, -8.523984 ], [ 29.001160, -8.404451 ], [ 30.344238, -8.235955 ], [ 30.739746, -8.339236 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "United Republic of Tanzania", "sov_a3": "TZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Republic of Tanzania", "adm0_a3": "TZA", "geou_dif": 0, "geounit": "Tanzania", "gu_a3": "TZA", "su_dif": 0, "subunit": "Tanzania", "su_a3": "TZA", "brk_diff": 0, "name": "Tanzania", "name_long": "Tanzania", "brk_a3": "TZA", "brk_name": "Tanzania", "abbrev": "Tanz.", "postal": "TZ", "formal_en": "United Republic of Tanzania", "name_sort": "Tanzania", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 41048532, "gdp_md_est": 54250, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TZ", "iso_a3": "TZA", "iso_n3": "834", "un_a3": "834", "wb_a2": "TZ", "wb_a3": "TZA", "woe_id": -99, "adm0_a3_is": "TZA", "adm0_a3_us": "TZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.901062, -0.947528 ], [ 33.969727, -0.991467 ], [ 33.969727, -9.730714 ], [ 33.750000, -9.430096 ], [ 33.739014, -9.416548 ], [ 32.758484, -9.229538 ], [ 32.189941, -8.928487 ], [ 31.555481, -8.760224 ], [ 31.157227, -8.591884 ], [ 30.739746, -8.339236 ], [ 30.198669, -7.079088 ], [ 29.619141, -6.517272 ], [ 29.418640, -5.938436 ], [ 29.517517, -5.419148 ], [ 29.338989, -4.499762 ], [ 29.750977, -4.450474 ], [ 30.116272, -4.088932 ], [ 30.503540, -3.568248 ], [ 30.750732, -3.357147 ], [ 30.742493, -3.033555 ], [ 30.525513, -2.805885 ], [ 30.467834, -2.413532 ], [ 30.756226, -2.284551 ], [ 30.813904, -1.697139 ], [ 30.418396, -1.134264 ], [ 30.767212, -1.013436 ], [ 31.865845, -1.027167 ], [ 33.750000, -0.955766 ], [ 33.901062, -0.947528 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.758484, -9.229538 ], [ 33.739014, -9.416548 ], [ 33.750000, -9.430096 ], [ 33.939514, -9.692813 ], [ 33.969727, -9.730714 ], [ 33.969727, -11.393879 ], [ 33.164978, -11.393879 ], [ 33.219910, -11.178402 ], [ 33.313293, -10.795537 ], [ 33.483582, -10.522919 ], [ 33.230896, -9.676569 ], [ 32.758484, -9.229538 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.862549, 11.393879 ], [ 22.873535, 11.385802 ], [ 22.865295, 11.178402 ], [ 22.862549, 11.143372 ], [ 22.500000, 11.046343 ], [ 22.280273, 10.987031 ], [ 22.280273, 11.393879 ], [ 22.862549, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.862549, 11.143372 ], [ 22.975159, 10.714587 ], [ 23.551941, 10.090558 ], [ 23.554688, 9.681984 ], [ 23.392639, 9.267490 ], [ 23.458557, 8.955619 ], [ 23.804626, 8.667918 ], [ 24.565430, 8.230519 ], [ 25.114746, 7.825289 ], [ 25.122986, 7.501366 ], [ 25.795898, 6.980954 ], [ 26.213379, 6.547289 ], [ 26.463318, 5.949363 ], [ 27.213135, 5.553114 ], [ 27.372437, 5.235922 ], [ 27.042847, 5.129243 ], [ 26.400146, 5.151128 ], [ 25.650330, 5.257803 ], [ 25.276794, 5.173011 ], [ 25.128479, 4.929515 ], [ 24.804382, 4.899414 ], [ 24.408875, 5.110094 ], [ 23.296509, 4.612016 ], [ 22.840576, 4.710566 ], [ 22.703247, 4.633917 ], [ 22.500000, 4.223161 ], [ 22.403870, 4.031399 ], [ 22.280273, 4.064275 ], [ 22.280273, 10.987031 ], [ 22.500000, 11.046343 ], [ 22.862549, 11.143372 ] ] ] } } +, +{ "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": [ [ [ [ 32.354736, 11.393879 ], [ 32.384949, 11.178402 ], [ 32.398682, 11.081385 ], [ 31.849365, 10.533720 ], [ 31.352234, 9.811916 ], [ 30.835876, 9.709057 ], [ 29.995422, 10.293301 ], [ 29.616394, 10.085150 ], [ 29.514771, 9.795678 ], [ 28.998413, 9.606166 ], [ 28.965454, 9.400291 ], [ 27.968445, 9.400291 ], [ 27.831116, 9.606166 ], [ 27.111511, 9.638661 ], [ 26.751709, 9.468027 ], [ 26.477051, 9.554709 ], [ 25.960693, 10.136524 ], [ 25.790405, 10.412183 ], [ 25.068054, 10.274384 ], [ 24.793396, 9.811916 ], [ 24.535217, 8.917634 ], [ 24.191895, 8.730363 ], [ 23.884277, 8.621757 ], [ 23.804626, 8.667918 ], [ 23.458557, 8.955619 ], [ 23.392639, 9.267490 ], [ 23.554688, 9.681984 ], [ 23.551941, 10.090558 ], [ 22.975159, 10.714587 ], [ 22.862549, 11.143372 ], [ 22.865295, 11.178402 ], [ 22.873535, 11.385802 ], [ 22.862549, 11.393879 ], [ 32.354736, 11.393879 ] ] ], [ [ [ 33.969727, 11.393879 ], [ 33.969727, 9.614290 ], [ 33.961487, 9.584501 ], [ 33.961487, 9.465317 ], [ 33.824158, 9.484281 ], [ 33.840637, 9.982376 ], [ 33.750000, 10.247357 ], [ 33.719788, 10.325728 ], [ 33.206177, 10.722683 ], [ 33.129272, 11.178402 ], [ 33.093567, 11.393879 ], [ 33.969727, 11.393879 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.093567, 11.393879 ], [ 33.129272, 11.178402 ], [ 33.206177, 10.722683 ], [ 33.719788, 10.325728 ], [ 33.750000, 10.247357 ], [ 33.840637, 9.982376 ], [ 33.824158, 9.484281 ], [ 33.961487, 9.465317 ], [ 33.969727, 9.039715 ], [ 33.969727, 8.676064 ], [ 33.824158, 8.379997 ], [ 33.750000, 8.377279 ], [ 33.294067, 8.355540 ], [ 32.953491, 7.787194 ], [ 33.565979, 7.713713 ], [ 33.750000, 7.539487 ], [ 33.969727, 7.329778 ], [ 33.969727, 4.225900 ], [ 33.387451, 3.790262 ], [ 32.684326, 3.793003 ], [ 31.879578, 3.560024 ], [ 31.245117, 3.782041 ], [ 30.833130, 3.510680 ], [ 29.951477, 4.173855 ], [ 29.715271, 4.601065 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.427124, 4.288897 ], [ 27.979431, 4.409398 ], [ 27.372437, 5.235922 ], [ 27.213135, 5.553114 ], [ 26.463318, 5.949363 ], [ 26.213379, 6.547289 ], [ 25.795898, 6.980954 ], [ 25.122986, 7.501366 ], [ 25.114746, 7.825289 ], [ 24.565430, 8.230519 ], [ 23.884277, 8.621757 ], [ 24.191895, 8.730363 ], [ 24.535217, 8.917634 ], [ 24.793396, 9.811916 ], [ 25.068054, 10.274384 ], [ 25.790405, 10.412183 ], [ 25.960693, 10.136524 ], [ 26.477051, 9.554709 ], [ 26.751709, 9.468027 ], [ 27.111511, 9.638661 ], [ 27.831116, 9.606166 ], [ 27.968445, 9.400291 ], [ 28.965454, 9.400291 ], [ 28.998413, 9.606166 ], [ 29.514771, 9.795678 ], [ 29.616394, 10.085150 ], [ 29.995422, 10.293301 ], [ 30.835876, 9.709057 ], [ 31.352234, 9.811916 ], [ 31.849365, 10.533720 ], [ 32.398682, 11.081385 ], [ 32.384949, 11.178402 ], [ 32.354736, 11.393879 ], [ 33.093567, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 4.225900 ], [ 33.969727, 0.219726 ], [ 33.892822, 0.109863 ], [ 33.895569, -0.219726 ], [ 29.808655, -0.219726 ], [ 29.816895, -0.203247 ], [ 29.833374, 0.000000 ], [ 29.874573, 0.598744 ], [ 30.086060, 1.062866 ], [ 30.467834, 1.584576 ], [ 30.852356, 1.850874 ], [ 31.173706, 2.204961 ], [ 30.772705, 2.342182 ], [ 30.833130, 3.510680 ], [ 31.245117, 3.782041 ], [ 31.879578, 3.560024 ], [ 32.684326, 3.793003 ], [ 33.387451, 3.790262 ], [ 33.969727, 4.225900 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 0.219726 ], [ 33.969727, -0.219726 ], [ 33.895569, -0.219726 ], [ 33.892822, 0.109863 ], [ 33.969727, 0.219726 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.969727, 8.676064 ], [ 33.969727, 7.329778 ], [ 33.750000, 7.539487 ], [ 33.565979, 7.713713 ], [ 32.953491, 7.787194 ], [ 33.294067, 8.355540 ], [ 33.750000, 8.377279 ], [ 33.824158, 8.379997 ], [ 33.969727, 8.676064 ] ] ], [ [ [ 33.969727, 9.039715 ], [ 33.961487, 9.584501 ], [ 33.969727, 9.614290 ], [ 33.969727, 9.039715 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.650330, 5.257803 ], [ 26.400146, 5.151128 ], [ 27.042847, 5.129243 ], [ 27.372437, 5.235922 ], [ 27.979431, 4.409398 ], [ 28.427124, 4.288897 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.715271, 4.601065 ], [ 29.951477, 4.173855 ], [ 30.833130, 3.510680 ], [ 30.772705, 2.342182 ], [ 31.173706, 2.204961 ], [ 30.852356, 1.850874 ], [ 30.467834, 1.584576 ], [ 30.086060, 1.062866 ], [ 29.874573, 0.598744 ], [ 29.833374, 0.000000 ], [ 29.816895, -0.203247 ], [ 29.808655, -0.219726 ], [ 22.280273, -0.219726 ], [ 22.280273, 4.064275 ], [ 22.403870, 4.031399 ], [ 22.500000, 4.223161 ], [ 22.703247, 4.633917 ], [ 22.840576, 4.710566 ], [ 23.296509, 4.612016 ], [ 24.408875, 5.110094 ], [ 24.804382, 4.899414 ], [ 25.128479, 4.929515 ], [ 25.276794, 5.173011 ], [ 25.650330, 5.257803 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.999390, 22.146708 ], [ 24.999390, 20.004322 ], [ 23.848572, 20.001741 ], [ 23.837585, 19.580493 ], [ 22.500000, 20.226120 ], [ 22.280273, 20.331750 ], [ 22.280273, 22.146708 ], [ 24.999390, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.280273, 13.878079 ], [ 22.280273, 20.331750 ], [ 22.500000, 20.226120 ], [ 23.837585, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.021851, 15.681221 ], [ 22.565918, 14.944785 ], [ 22.500000, 14.788161 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.107276 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.083301 ], [ 22.280273, 13.878079 ] ] ], [ [ [ 22.280273, 12.645698 ], [ 22.285767, 12.648378 ], [ 22.497253, 12.262180 ], [ 22.500000, 12.136005 ], [ 22.508240, 11.681825 ], [ 22.873535, 11.385802 ], [ 22.865295, 11.178402 ], [ 22.862549, 11.143372 ], [ 22.280273, 10.987031 ], [ 22.280273, 12.645698 ] ] ], [ [ [ 22.280273, 13.432367 ], [ 22.294006, 13.373588 ], [ 22.280273, 13.346865 ], [ 22.280273, 13.432367 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.862549, 11.143372 ], [ 22.909241, 10.962764 ], [ 22.280273, 10.962764 ], [ 22.280273, 10.987031 ], [ 22.862549, 11.143372 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 22.146708 ], [ 33.969727, 22.001628 ], [ 24.999390, 22.001628 ], [ 24.999390, 22.146708 ], [ 33.969727, 22.146708 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 33.969727, 22.001628 ], [ 33.969727, 10.962764 ], [ 33.164978, 10.962764 ], [ 33.129272, 11.178402 ], [ 33.085327, 11.442339 ], [ 33.206177, 12.181650 ], [ 32.742004, 12.248760 ], [ 32.673340, 12.025889 ], [ 32.071838, 11.974845 ], [ 32.313538, 11.681825 ], [ 32.384949, 11.178402 ], [ 32.398682, 11.081385 ], [ 32.280579, 10.962764 ], [ 22.909241, 10.962764 ], [ 22.862549, 11.143372 ], [ 22.865295, 11.178402 ], [ 22.873535, 11.385802 ], [ 22.508240, 11.681825 ], [ 22.500000, 12.136005 ], [ 22.497253, 12.262180 ], [ 22.285767, 12.648378 ], [ 22.280273, 12.645698 ], [ 22.280273, 13.346865 ], [ 22.294006, 13.373588 ], [ 22.280273, 13.432367 ], [ 22.280273, 13.878079 ], [ 22.500000, 14.083301 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.107276 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.788161 ], [ 22.565918, 14.944785 ], [ 23.021851, 15.681221 ], [ 23.884277, 15.612456 ], [ 23.837585, 19.580493 ], [ 23.848572, 20.001741 ], [ 24.999390, 20.004322 ], [ 24.999390, 22.001628 ], [ 33.969727, 22.001628 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.742004, 12.248760 ], [ 33.206177, 12.181650 ], [ 33.085327, 11.442339 ], [ 33.129272, 11.178402 ], [ 33.164978, 10.962764 ], [ 32.280579, 10.962764 ], [ 32.398682, 11.081385 ], [ 32.384949, 11.178402 ], [ 32.313538, 11.681825 ], [ 32.071838, 11.974845 ], [ 32.673340, 12.025889 ], [ 32.742004, 12.248760 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.700256, 32.138409 ], [ 23.925476, 32.017392 ], [ 24.472046, 31.952162 ], [ 24.919739, 31.900878 ], [ 25.164185, 31.569175 ], [ 24.801636, 31.090574 ], [ 24.955444, 30.663903 ], [ 24.700012, 30.045322 ], [ 24.999390, 29.240874 ], [ 24.999390, 21.739091 ], [ 22.280273, 21.739091 ], [ 22.280273, 32.138409 ], [ 23.700256, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.493530, 31.587894 ], [ 27.457581, 31.323140 ], [ 28.449097, 31.027048 ], [ 28.913269, 30.871583 ], [ 29.682312, 31.186959 ], [ 30.094299, 31.475524 ], [ 30.975952, 31.557474 ], [ 31.687317, 31.431007 ], [ 31.959229, 30.935213 ], [ 32.189941, 31.262118 ], [ 32.991943, 31.024694 ], [ 33.750000, 30.970544 ], [ 33.771973, 30.968189 ], [ 33.969727, 31.069403 ], [ 33.969727, 27.685960 ], [ 33.920288, 27.649472 ], [ 33.750000, 27.814786 ], [ 33.134766, 28.417975 ], [ 32.420654, 29.852555 ], [ 32.319031, 29.761993 ], [ 32.733765, 28.707452 ], [ 33.346252, 27.700552 ], [ 33.750000, 26.877981 ], [ 33.969727, 26.423849 ], [ 33.969727, 22.001628 ], [ 24.999390, 22.001628 ], [ 24.999390, 29.240874 ], [ 24.700012, 30.045322 ], [ 24.955444, 30.663903 ], [ 24.801636, 31.090574 ], [ 25.164185, 31.569175 ], [ 26.493530, 31.587894 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 33.969727, 22.001628 ], [ 33.969727, 21.739091 ], [ 24.999390, 21.739091 ], [ 24.999390, 22.001628 ], [ 33.969727, 22.001628 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "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.609863, 41.145570 ], [ 22.596130, 41.131090 ], [ 22.280273, 41.143501 ], [ 22.280273, 41.145570 ], [ 22.609863, 41.145570 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.280273, 32.731841 ], [ 22.500000, 32.699489 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.191884 ], [ 23.606873, 32.189560 ], [ 23.925476, 32.017392 ], [ 24.472046, 31.952162 ], [ 24.919739, 31.900878 ], [ 25.018616, 31.765537 ], [ 22.280273, 31.765537 ], [ 22.280273, 32.731841 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "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": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.697510, 35.706377 ], [ 24.244080, 35.368895 ], [ 25.024109, 35.427106 ], [ 25.768433, 35.355456 ], [ 25.743713, 35.180543 ], [ 26.287537, 35.301677 ], [ 26.163940, 35.005253 ], [ 24.724731, 34.921971 ], [ 24.732971, 35.086203 ], [ 23.513489, 35.281501 ], [ 23.697510, 35.706377 ] ] ], [ [ [ 26.397400, 41.145570 ], [ 26.315002, 40.979898 ], [ 26.293030, 40.936340 ], [ 26.056824, 40.824202 ], [ 25.447083, 40.853293 ], [ 24.925232, 40.948788 ], [ 23.713989, 40.688969 ], [ 24.406128, 40.126391 ], [ 23.898010, 39.962386 ], [ 23.340454, 39.962386 ], [ 22.813110, 40.476203 ], [ 22.623596, 40.258569 ], [ 22.848816, 39.660685 ], [ 23.348694, 39.191820 ], [ 22.972412, 38.972222 ], [ 23.529968, 38.511639 ], [ 24.024353, 38.220920 ], [ 24.038086, 37.655558 ], [ 23.112488, 37.920368 ], [ 23.409119, 37.411619 ], [ 22.774658, 37.306829 ], [ 23.153687, 36.423493 ], [ 22.500000, 36.410231 ], [ 22.489014, 36.410231 ], [ 22.280273, 36.522881 ], [ 22.280273, 41.143501 ], [ 22.596130, 41.131090 ], [ 22.609863, 41.145570 ], [ 26.397400, 41.145570 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Northern Cyprus", "sov_a3": "CYN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Northern Cyprus", "adm0_a3": "CYN", "geou_dif": 0, "geounit": "Northern Cyprus", "gu_a3": "CYN", "su_dif": 0, "subunit": "Northern Cyprus", "su_a3": "CYN", "brk_diff": 1, "name": "N. Cyprus", "name_long": "Northern Cyprus", "brk_a3": "B20", "brk_name": "N. Cyprus", "abbrev": "N. Cy.", "postal": "CN", "formal_en": "Turkish Republic of Northern Cyprus", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Cyprus", "name_sort": "Cyprus, Northern", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 265100, "gdp_md_est": 3600, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "CYP", "adm0_a3_us": "CYP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 15, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 35.474092 ], [ 33.969727, 35.290469 ], [ 33.898315, 35.247862 ], [ 33.969727, 35.070469 ], [ 33.969727, 35.061477 ], [ 33.865356, 35.095193 ], [ 33.750000, 35.047987 ], [ 33.673096, 35.018750 ], [ 33.524780, 35.038992 ], [ 33.475342, 35.000754 ], [ 33.453369, 35.101934 ], [ 33.381958, 35.164828 ], [ 33.189697, 35.173808 ], [ 32.917786, 35.088451 ], [ 32.731018, 35.140125 ], [ 32.802429, 35.146863 ], [ 32.945251, 35.386811 ], [ 33.664856, 35.373375 ], [ 33.750000, 35.402484 ], [ 33.969727, 35.474092 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Cyprus", "sov_a3": "CYP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cyprus", "adm0_a3": "CYP", "geou_dif": 0, "geounit": "Cyprus", "gu_a3": "CYP", "su_dif": 0, "subunit": "Cyprus", "su_a3": "CYP", "brk_diff": 0, "name": "Cyprus", "name_long": "Cyprus", "brk_a3": "CYP", "brk_name": "Cyprus", "abbrev": "Cyp.", "postal": "CY", "formal_en": "Republic of Cyprus", "name_sort": "Cyprus", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 531640, "gdp_md_est": 22700, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "CY", "iso_a3": "CYP", "iso_n3": "196", "un_a3": "196", "wb_a2": "CY", "wb_a3": "CYP", "woe_id": -99, "adm0_a3_is": "CYP", "adm0_a3_us": "CYP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.189697, 35.173808 ], [ 33.381958, 35.164828 ], [ 33.453369, 35.101934 ], [ 33.475342, 35.000754 ], [ 33.524780, 35.038992 ], [ 33.673096, 35.018750 ], [ 33.750000, 35.047987 ], [ 33.865356, 35.095193 ], [ 33.969727, 35.061477 ], [ 33.969727, 34.964748 ], [ 33.750000, 34.879172 ], [ 32.978210, 34.572168 ], [ 32.489319, 34.703235 ], [ 32.255859, 35.104181 ], [ 32.731018, 35.140125 ], [ 32.917786, 35.088451 ], [ 33.189697, 35.173808 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.969727, 41.145570 ], [ 33.969727, 36.217687 ], [ 33.750000, 36.199958 ], [ 32.508545, 36.109034 ], [ 31.698303, 36.646385 ], [ 30.618896, 36.679433 ], [ 30.390930, 36.264207 ], [ 29.698792, 36.144529 ], [ 28.731995, 36.677231 ], [ 27.638855, 36.659606 ], [ 27.048340, 37.653383 ], [ 26.317749, 38.210130 ], [ 26.803894, 38.987168 ], [ 26.169434, 39.463764 ], [ 27.279053, 40.421860 ], [ 28.819885, 40.461577 ], [ 29.105530, 40.979898 ], [ 29.196167, 41.145570 ], [ 30.311279, 41.145570 ], [ 31.143494, 41.087632 ], [ 31.250610, 41.145570 ], [ 33.969727, 41.145570 ] ] ], [ [ [ 28.872070, 41.145570 ], [ 28.806152, 41.056573 ], [ 27.616882, 41.000630 ], [ 27.589417, 40.979898 ], [ 27.191162, 40.691052 ], [ 26.356201, 40.153687 ], [ 26.043091, 40.618122 ], [ 26.056824, 40.824202 ], [ 26.293030, 40.936340 ], [ 26.315002, 40.979898 ], [ 26.397400, 41.145570 ], [ 28.872070, 41.145570 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Poland", "sov_a3": "POL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Poland", "adm0_a3": "POL", "geou_dif": 0, "geounit": "Poland", "gu_a3": "POL", "su_dif": 0, "subunit": "Poland", "su_a3": "POL", "brk_diff": 0, "name": "Poland", "name_long": "Poland", "brk_a3": "POL", "brk_name": "Poland", "abbrev": "Pol.", "postal": "PL", "formal_en": "Republic of Poland", "name_sort": "Poland", "mapcolor7": 3, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 38482919, "gdp_md_est": 667900, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PL", "iso_a3": "POL", "iso_n3": "616", "un_a3": "616", "wb_a2": "PL", "wb_a3": "POL", "woe_id": -99, "adm0_a3_is": "POL", "adm0_a3_us": "POL", "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": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.752686, 49.066668 ], [ 22.774658, 49.028864 ], [ 22.629089, 49.066668 ], [ 22.752686, 49.066668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Hungary", "sov_a3": "HUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Hungary", "adm0_a3": "HUN", "geou_dif": 0, "geounit": "Hungary", "gu_a3": "HUN", "su_dif": 0, "subunit": "Hungary", "su_a3": "HUN", "brk_diff": 0, "name": "Hungary", "name_long": "Hungary", "brk_a3": "HUN", "brk_name": "Hungary", "abbrev": "Hun.", "postal": "HU", "formal_en": "Republic of Hungary", "name_sort": "Hungary", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 9905596, "gdp_md_est": 196600, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "HU", "iso_a3": "HUN", "iso_n3": "348", "un_a3": "348", "wb_a2": "HU", "wb_a3": "HUN", "woe_id": -99, "adm0_a3_is": "HUN", "adm0_a3_us": "HUN", "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": "Polygon", "coordinates": [ [ [ 22.280273, 48.328865 ], [ 22.500000, 48.221013 ], [ 22.640076, 48.151428 ], [ 22.708740, 47.883197 ], [ 22.500000, 47.811310 ], [ 22.280273, 47.735629 ], [ 22.280273, 48.328865 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.535706, 49.066668 ], [ 22.280273, 48.824949 ], [ 22.280273, 49.066668 ], [ 22.535706, 49.066668 ] ] ] } } +, +{ "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": [ [ [ 22.458801, 44.703802 ], [ 22.500000, 44.682325 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.429857 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.384729 ], [ 22.656555, 44.235360 ], [ 22.500000, 44.091531 ], [ 22.409363, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.211182 ], [ 22.604370, 42.900113 ], [ 22.500000, 42.700604 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.512602 ], [ 22.543945, 42.461967 ], [ 22.500000, 42.423457 ], [ 22.379150, 42.322001 ], [ 22.280273, 42.317939 ], [ 22.280273, 44.576774 ], [ 22.458801, 44.703802 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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.379150, 42.322001 ], [ 22.500000, 42.244785 ], [ 22.879028, 42.000325 ], [ 22.950439, 41.339700 ], [ 22.760925, 41.306698 ], [ 22.596130, 41.131090 ], [ 22.500000, 41.135227 ], [ 22.280273, 41.143501 ], [ 22.280273, 42.317939 ], [ 22.379150, 42.322001 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "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": "Polygon", "coordinates": [ [ [ 26.617126, 48.221013 ], [ 26.921997, 48.123934 ], [ 27.232361, 47.827908 ], [ 27.550964, 47.405785 ], [ 28.127747, 46.811339 ], [ 28.157959, 46.371569 ], [ 28.053589, 45.945421 ], [ 28.232117, 45.489020 ], [ 28.677063, 45.305803 ], [ 29.149475, 45.465910 ], [ 29.602661, 45.294211 ], [ 29.624634, 45.036656 ], [ 29.141235, 44.820812 ], [ 28.836365, 44.914249 ], [ 28.556213, 43.707594 ], [ 27.968445, 43.812729 ], [ 27.240601, 44.176295 ], [ 26.065063, 43.945372 ], [ 25.567932, 43.689722 ], [ 24.098511, 43.741336 ], [ 23.332214, 43.897892 ], [ 22.942200, 43.824620 ], [ 22.656555, 44.235360 ], [ 22.500000, 44.384729 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.429857 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.682325 ], [ 22.458801, 44.703802 ], [ 22.280273, 44.576774 ], [ 22.280273, 47.735629 ], [ 22.500000, 47.811310 ], [ 22.708740, 47.883197 ], [ 23.139954, 48.096426 ], [ 23.760681, 47.986245 ], [ 24.400635, 47.982568 ], [ 24.864807, 47.739323 ], [ 25.205383, 47.892406 ], [ 25.944214, 47.988083 ], [ 26.196899, 48.221013 ], [ 26.617126, 48.221013 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.656555, 44.235360 ], [ 22.942200, 43.824620 ], [ 23.332214, 43.897892 ], [ 24.098511, 43.741336 ], [ 25.567932, 43.689722 ], [ 26.065063, 43.945372 ], [ 27.240601, 44.176295 ], [ 27.968445, 43.812729 ], [ 28.556213, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.671814, 42.579377 ], [ 27.995911, 42.008489 ], [ 27.133484, 42.143042 ], [ 26.114502, 41.828642 ], [ 26.103516, 41.329389 ], [ 25.197144, 41.236511 ], [ 24.491272, 41.584634 ], [ 23.692017, 41.310824 ], [ 22.950439, 41.339700 ], [ 22.879028, 42.000325 ], [ 22.500000, 42.244785 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.423457 ], [ 22.543945, 42.461967 ], [ 22.500000, 42.512602 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.700604 ], [ 22.604370, 42.900113 ], [ 22.983398, 43.211182 ], [ 22.500000, 43.644026 ], [ 22.409363, 44.008620 ], [ 22.500000, 44.091531 ], [ 22.656555, 44.235360 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Moldova", "sov_a3": "MDA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Moldova", "adm0_a3": "MDA", "geou_dif": 0, "geounit": "Moldova", "gu_a3": "MDA", "su_dif": 0, "subunit": "Moldova", "su_a3": "MDA", "brk_diff": 0, "name": "Moldova", "name_long": "Moldova", "brk_a3": "MDA", "brk_name": "Moldova", "abbrev": "Mda.", "postal": "MD", "formal_en": "Republic of Moldova", "name_sort": "Moldova", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 4, "mapcolor13": 12, "pop_est": 4320748, "gdp_md_est": 10670, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MD", "iso_a3": "MDA", "iso_n3": "498", "un_a3": "498", "wb_a2": "MD", "wb_a3": "MDA", "woe_id": -99, "adm0_a3_is": "MDA", "adm0_a3_us": "MDA", "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": "Polygon", "coordinates": [ [ [ 27.520752, 48.467458 ], [ 28.256836, 48.156925 ], [ 28.668823, 48.118434 ], [ 29.122009, 47.850031 ], [ 29.050598, 47.511636 ], [ 29.413147, 47.348128 ], [ 29.558716, 46.929634 ], [ 29.907532, 46.675826 ], [ 29.836121, 46.526745 ], [ 30.022888, 46.424606 ], [ 29.759216, 46.350719 ], [ 29.168701, 46.381044 ], [ 29.069824, 46.519186 ], [ 28.861084, 46.439750 ], [ 28.932495, 46.259645 ], [ 28.657837, 45.941601 ], [ 28.484802, 45.598666 ], [ 28.232117, 45.489020 ], [ 28.053589, 45.945421 ], [ 28.157959, 46.371569 ], [ 28.127747, 46.811339 ], [ 27.550964, 47.405785 ], [ 27.232361, 47.827908 ], [ 26.921997, 48.123934 ], [ 26.617126, 48.221013 ], [ 26.856079, 48.369023 ], [ 27.520752, 48.467458 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 33.969727, 49.066668 ], [ 33.969727, 44.400430 ], [ 33.881836, 44.363133 ], [ 33.750000, 44.410240 ], [ 33.324280, 44.565034 ], [ 33.546753, 45.036656 ], [ 32.453613, 45.328979 ], [ 32.629395, 45.519820 ], [ 33.587952, 45.851760 ], [ 33.296814, 46.080852 ], [ 31.742249, 46.333654 ], [ 31.673584, 46.707853 ], [ 30.747986, 46.583406 ], [ 30.377197, 46.033203 ], [ 29.602661, 45.294211 ], [ 29.149475, 45.465910 ], [ 28.677063, 45.305803 ], [ 28.232117, 45.489020 ], [ 28.484802, 45.598666 ], [ 28.657837, 45.941601 ], [ 28.932495, 46.259645 ], [ 28.861084, 46.439750 ], [ 29.069824, 46.519186 ], [ 29.168701, 46.381044 ], [ 29.759216, 46.350719 ], [ 30.022888, 46.424606 ], [ 29.836121, 46.526745 ], [ 29.907532, 46.675826 ], [ 29.558716, 46.929634 ], [ 29.413147, 47.348128 ], [ 29.050598, 47.511636 ], [ 29.122009, 47.850031 ], [ 28.668823, 48.118434 ], [ 28.256836, 48.156925 ], [ 27.520752, 48.467458 ], [ 26.856079, 48.369023 ], [ 26.617126, 48.221013 ], [ 26.196899, 48.221013 ], [ 25.944214, 47.988083 ], [ 25.205383, 47.892406 ], [ 24.864807, 47.739323 ], [ 24.400635, 47.982568 ], [ 23.760681, 47.986245 ], [ 23.139954, 48.096426 ], [ 22.708740, 47.883197 ], [ 22.640076, 48.151428 ], [ 22.500000, 48.221013 ], [ 22.280273, 48.328865 ], [ 22.280273, 48.824949 ], [ 22.535706, 49.066668 ], [ 22.629089, 49.066668 ], [ 22.774658, 49.028864 ], [ 22.752686, 49.066668 ], [ 33.969727, 49.066668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "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": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.114502, 41.828642 ], [ 26.603394, 41.564087 ], [ 26.315002, 40.979898 ], [ 26.293030, 40.936340 ], [ 26.056824, 40.824202 ], [ 25.447083, 40.853293 ], [ 24.925232, 40.948788 ], [ 24.301758, 40.813809 ], [ 22.280273, 40.813809 ], [ 22.280273, 41.143501 ], [ 22.500000, 41.135227 ], [ 22.596130, 41.131090 ], [ 22.760925, 41.306698 ], [ 22.950439, 41.339700 ], [ 23.692017, 41.310824 ], [ 24.491272, 41.584634 ], [ 25.197144, 41.236511 ], [ 26.103516, 41.329389 ], [ 26.114502, 41.828642 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.969727, 42.026854 ], [ 33.969727, 40.813809 ], [ 29.014893, 40.813809 ], [ 29.105530, 40.979898 ], [ 29.237366, 41.222052 ], [ 31.143494, 41.087632 ], [ 32.346497, 41.736479 ], [ 33.511047, 42.020733 ], [ 33.750000, 42.022773 ], [ 33.969727, 42.026854 ] ] ], [ [ [ 27.133484, 42.143042 ], [ 27.995911, 42.008489 ], [ 28.114014, 41.623655 ], [ 28.987427, 41.300508 ], [ 28.806152, 41.056573 ], [ 27.616882, 41.000630 ], [ 27.589417, 40.979898 ], [ 27.361450, 40.813809 ], [ 26.054077, 40.813809 ], [ 26.056824, 40.824202 ], [ 26.293030, 40.936340 ], [ 26.315002, 40.979898 ], [ 26.603394, 41.564087 ], [ 26.114502, 41.828642 ], [ 27.133484, 42.143042 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 33.969727, 55.899956 ], [ 33.969727, 52.143602 ], [ 33.750000, 52.335339 ], [ 32.714539, 52.239574 ], [ 32.409668, 52.290003 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.539001, 52.742943 ], [ 31.302795, 53.074228 ], [ 31.495056, 53.168180 ], [ 32.302551, 53.133590 ], [ 32.692566, 53.352191 ], [ 32.404175, 53.618579 ], [ 31.731262, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.157609 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.083084 ], [ 30.871582, 55.551942 ], [ 29.948730, 55.776573 ], [ 29.893799, 55.790473 ], [ 29.838867, 55.776573 ], [ 29.369202, 55.671389 ], [ 29.308777, 55.776573 ], [ 29.237366, 55.899956 ], [ 33.969727, 55.899956 ] ] ], [ [ [ 22.280273, 55.021725 ], [ 22.313232, 55.015426 ], [ 22.500000, 54.949231 ], [ 22.755432, 54.857640 ], [ 22.648315, 54.583205 ], [ 22.730713, 54.327736 ], [ 22.500000, 54.326135 ], [ 22.280273, 54.324533 ], [ 22.280273, 55.021725 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Poland", "sov_a3": "POL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Poland", "adm0_a3": "POL", "geou_dif": 0, "geounit": "Poland", "gu_a3": "POL", "su_dif": 0, "subunit": "Poland", "su_a3": "POL", "brk_diff": 0, "name": "Poland", "name_long": "Poland", "brk_a3": "POL", "brk_name": "Poland", "abbrev": "Pol.", "postal": "PL", "formal_en": "Republic of Poland", "name_sort": "Poland", "mapcolor7": 3, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 38482919, "gdp_md_est": 667900, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PL", "iso_a3": "POL", "iso_n3": "616", "un_a3": "616", "wb_a2": "PL", "wb_a3": "POL", "woe_id": -99, "adm0_a3_is": "POL", "adm0_a3_us": "POL", "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": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.730713, 54.327736 ], [ 23.241577, 54.221891 ], [ 23.483276, 53.914046 ], [ 23.527222, 53.471700 ], [ 23.804626, 53.090725 ], [ 23.799133, 52.691367 ], [ 23.197632, 52.487798 ], [ 23.507996, 52.023769 ], [ 23.524475, 51.578776 ], [ 24.029846, 50.706895 ], [ 23.922729, 50.426019 ], [ 23.425598, 50.308638 ], [ 22.516479, 49.477048 ], [ 22.774658, 49.028864 ], [ 22.557678, 49.086459 ], [ 22.500000, 49.109838 ], [ 22.280273, 49.199654 ], [ 22.280273, 54.324533 ], [ 22.500000, 54.326135 ], [ 22.730713, 54.327736 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.280273, 49.199654 ], [ 22.500000, 49.109838 ], [ 22.557678, 49.086459 ], [ 22.500000, 49.032466 ], [ 22.280273, 48.826757 ], [ 22.280273, 49.199654 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "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": "Polygon", "coordinates": [ [ [ 27.424622, 55.899956 ], [ 27.100525, 55.784296 ], [ 27.075806, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.174927, 55.776573 ], [ 25.930481, 55.899956 ], [ 27.424622, 55.899956 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.930481, 55.899956 ], [ 26.174927, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.586914, 55.167888 ], [ 25.768433, 54.848153 ], [ 25.534973, 54.282865 ], [ 24.450073, 53.905956 ], [ 23.483276, 53.914046 ], [ 23.241577, 54.221891 ], [ 22.730713, 54.327736 ], [ 22.648315, 54.583205 ], [ 22.755432, 54.857640 ], [ 22.500000, 54.949231 ], [ 22.313232, 55.015426 ], [ 22.280273, 55.021725 ], [ 22.280273, 55.899956 ], [ 25.930481, 55.899956 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Belarus", "sov_a3": "BLR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belarus", "adm0_a3": "BLR", "geou_dif": 0, "geounit": "Belarus", "gu_a3": "BLR", "su_dif": 0, "subunit": "Belarus", "su_a3": "BLR", "brk_diff": 0, "name": "Belarus", "name_long": "Belarus", "brk_a3": "BLR", "brk_name": "Belarus", "abbrev": "Bela.", "postal": "BY", "formal_en": "Republic of Belarus", "name_sort": "Belarus", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 9648533, "gdp_md_est": 114100, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BY", "iso_a3": "BLR", "iso_n3": "112", "un_a3": "112", "wb_a2": "BY", "wb_a3": "BLR", "woe_id": -99, "adm0_a3_is": "BLR", "adm0_a3_us": "BLR", "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": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.237366, 55.899956 ], [ 29.308777, 55.776573 ], [ 29.369202, 55.671389 ], [ 29.838867, 55.776573 ], [ 29.893799, 55.790473 ], [ 29.948730, 55.776573 ], [ 30.871582, 55.551942 ], [ 30.970459, 55.083084 ], [ 30.756226, 54.813348 ], [ 31.382446, 54.157609 ], [ 31.788940, 53.975474 ], [ 31.731262, 53.794162 ], [ 32.404175, 53.618579 ], [ 32.692566, 53.352191 ], [ 32.302551, 53.133590 ], [ 31.495056, 53.168180 ], [ 31.302795, 53.074228 ], [ 31.539001, 52.742943 ], [ 31.783447, 52.103131 ], [ 30.926514, 52.042355 ], [ 30.618896, 51.823896 ], [ 30.552979, 51.320314 ], [ 30.154724, 51.416338 ], [ 29.253845, 51.368351 ], [ 28.990173, 51.602666 ], [ 28.616638, 51.428327 ], [ 28.240356, 51.573656 ], [ 27.452087, 51.592429 ], [ 26.336975, 51.832383 ], [ 25.326233, 51.912085 ], [ 24.551697, 51.890054 ], [ 24.002380, 51.618017 ], [ 23.524475, 51.578776 ], [ 23.507996, 52.023769 ], [ 23.197632, 52.487798 ], [ 23.799133, 52.691367 ], [ 23.804626, 53.090725 ], [ 23.527222, 53.471700 ], [ 23.483276, 53.914046 ], [ 24.450073, 53.905956 ], [ 25.534973, 54.282865 ], [ 25.768433, 54.848153 ], [ 26.586914, 55.167888 ], [ 26.493530, 55.615589 ], [ 27.075806, 55.776573 ], [ 27.100525, 55.784296 ], [ 27.424622, 55.899956 ], [ 29.237366, 55.899956 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 33.750000, 52.335339 ], [ 33.969727, 52.143602 ], [ 33.969727, 48.777913 ], [ 22.280273, 48.777913 ], [ 22.280273, 48.826757 ], [ 22.500000, 49.032466 ], [ 22.557678, 49.086459 ], [ 22.774658, 49.028864 ], [ 22.516479, 49.477048 ], [ 23.425598, 50.308638 ], [ 23.922729, 50.426019 ], [ 24.029846, 50.706895 ], [ 23.524475, 51.578776 ], [ 24.002380, 51.618017 ], [ 24.551697, 51.890054 ], [ 25.326233, 51.912085 ], [ 26.336975, 51.832383 ], [ 27.452087, 51.592429 ], [ 28.240356, 51.573656 ], [ 28.616638, 51.428327 ], [ 28.990173, 51.602666 ], [ 29.253845, 51.368351 ], [ 30.154724, 51.416338 ], [ 30.552979, 51.320314 ], [ 30.618896, 51.823896 ], [ 30.926514, 52.042355 ], [ 31.783447, 52.103131 ], [ 32.156982, 52.062623 ], [ 32.409668, 52.290003 ], [ 32.714539, 52.239574 ], [ 33.750000, 52.335339 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 33.969727, 61.710706 ], [ 33.969727, 55.652798 ], [ 30.456848, 55.652798 ], [ 29.948730, 55.776573 ], [ 29.893799, 55.790473 ], [ 29.838867, 55.776573 ], [ 29.369202, 55.671389 ], [ 29.308777, 55.776573 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.853088, 56.760251 ], [ 27.767944, 57.244880 ], [ 27.287292, 57.475973 ], [ 27.715759, 57.792089 ], [ 27.419128, 58.725451 ], [ 28.130493, 59.300954 ], [ 27.979431, 59.475779 ], [ 29.116516, 60.029186 ], [ 28.067322, 60.504583 ], [ 29.913025, 61.606396 ], [ 30.091553, 61.710706 ], [ 33.969727, 61.710706 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.091553, 61.710706 ], [ 29.913025, 61.606396 ], [ 28.067322, 60.504583 ], [ 26.254578, 60.424699 ], [ 24.494019, 60.057987 ], [ 22.868042, 59.847574 ], [ 22.500000, 60.196156 ], [ 22.288513, 60.392148 ], [ 22.280273, 60.396219 ], [ 22.280273, 61.710706 ], [ 30.091553, 61.710706 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "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": "Polygon", "coordinates": [ [ [ 25.164185, 57.970244 ], [ 25.600891, 57.847674 ], [ 26.463318, 57.477450 ], [ 27.287292, 57.475973 ], [ 27.767944, 57.244880 ], [ 27.853088, 56.760251 ], [ 28.174438, 56.170023 ], [ 27.100525, 55.784296 ], [ 27.075806, 55.776573 ], [ 26.628113, 55.652798 ], [ 26.419373, 55.652798 ], [ 26.174927, 55.776573 ], [ 25.532227, 56.101152 ], [ 24.999390, 56.165435 ], [ 24.859314, 56.372856 ], [ 23.876038, 56.273861 ], [ 22.500000, 56.327198 ], [ 22.280273, 56.334812 ], [ 22.280273, 57.665973 ], [ 22.500000, 57.745213 ], [ 22.521973, 57.754007 ], [ 23.315735, 57.006346 ], [ 24.120483, 57.025784 ], [ 24.312744, 57.793553 ], [ 25.164185, 57.970244 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Estonia", "sov_a3": "EST", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Estonia", "adm0_a3": "EST", "geou_dif": 0, "geounit": "Estonia", "gu_a3": "EST", "su_dif": 0, "subunit": "Estonia", "su_a3": "EST", "brk_diff": 0, "name": "Estonia", "name_long": "Estonia", "brk_a3": "EST", "brk_name": "Estonia", "abbrev": "Est.", "postal": "EST", "formal_en": "Republic of Estonia", "name_sort": "Estonia", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 10, "pop_est": 1299371, "gdp_md_est": 27410, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "EE", "iso_a3": "EST", "iso_n3": "233", "un_a3": "233", "wb_a2": "EE", "wb_a3": "EST", "woe_id": -99, "adm0_a3_is": "EST", "adm0_a3_us": "EST", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.861816, 59.612212 ], [ 26.946716, 59.446471 ], [ 27.979431, 59.475779 ], [ 28.130493, 59.300954 ], [ 27.419128, 58.725451 ], [ 27.715759, 57.792089 ], [ 27.287292, 57.475973 ], [ 26.463318, 57.477450 ], [ 25.600891, 57.847674 ], [ 25.164185, 57.970244 ], [ 24.312744, 57.793553 ], [ 24.428101, 58.384438 ], [ 24.060059, 58.257508 ], [ 23.425598, 58.614056 ], [ 23.337708, 59.188592 ], [ 24.603882, 59.466013 ], [ 25.861816, 59.612212 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.859314, 56.372856 ], [ 24.999390, 56.165435 ], [ 25.532227, 56.101152 ], [ 26.174927, 55.776573 ], [ 26.419373, 55.652798 ], [ 22.280273, 55.652798 ], [ 22.280273, 56.334812 ], [ 22.500000, 56.327198 ], [ 23.876038, 56.273861 ], [ 24.859314, 56.372856 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Belarus", "sov_a3": "BLR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belarus", "adm0_a3": "BLR", "geou_dif": 0, "geounit": "Belarus", "gu_a3": "BLR", "su_dif": 0, "subunit": "Belarus", "su_a3": "BLR", "brk_diff": 0, "name": "Belarus", "name_long": "Belarus", "brk_a3": "BLR", "brk_name": "Belarus", "abbrev": "Bela.", "postal": "BY", "formal_en": "Republic of Belarus", "name_sort": "Belarus", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 9648533, "gdp_md_est": 114100, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BY", "iso_a3": "BLR", "iso_n3": "112", "un_a3": "112", "wb_a2": "BY", "wb_a3": "BLR", "woe_id": -99, "adm0_a3_is": "BLR", "adm0_a3_us": "BLR", "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": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.174438, 56.170023 ], [ 29.229126, 55.918430 ], [ 29.308777, 55.776573 ], [ 29.369202, 55.671389 ], [ 29.838867, 55.776573 ], [ 29.893799, 55.790473 ], [ 29.948730, 55.776573 ], [ 30.456848, 55.652798 ], [ 26.628113, 55.652798 ], [ 27.075806, 55.776573 ], [ 27.100525, 55.784296 ], [ 28.174438, 56.170023 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 33.255615, 66.600676 ], [ 33.450623, 66.513260 ], [ 33.750000, 66.381560 ], [ 33.969727, 66.283432 ], [ 33.969727, 61.501734 ], [ 29.734497, 61.501734 ], [ 29.913025, 61.606396 ], [ 30.209656, 61.780916 ], [ 31.138000, 62.358530 ], [ 31.514282, 62.868926 ], [ 30.033875, 63.553446 ], [ 30.443115, 64.205182 ], [ 29.542236, 64.949139 ], [ 30.215149, 65.806153 ], [ 29.501038, 66.513260 ], [ 29.410400, 66.600676 ], [ 33.255615, 66.600676 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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": "Polygon", "coordinates": [ [ [ 23.560181, 66.600676 ], [ 23.562927, 66.513260 ], [ 23.565674, 66.396961 ], [ 23.900757, 66.007969 ], [ 22.500000, 65.776871 ], [ 22.280273, 65.740785 ], [ 22.280273, 66.600676 ], [ 23.560181, 66.600676 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.410400, 66.600676 ], [ 29.501038, 66.513260 ], [ 30.215149, 65.806153 ], [ 29.542236, 64.949139 ], [ 30.443115, 64.205182 ], [ 30.033875, 63.553446 ], [ 31.514282, 62.868926 ], [ 31.138000, 62.358530 ], [ 30.209656, 61.780916 ], [ 29.913025, 61.606396 ], [ 29.734497, 61.501734 ], [ 22.280273, 61.501734 ], [ 22.280273, 63.707156 ], [ 22.442322, 63.818864 ], [ 22.500000, 63.845512 ], [ 24.730225, 64.902580 ], [ 25.397644, 65.111460 ], [ 25.293274, 65.534584 ], [ 23.900757, 66.007969 ], [ 23.565674, 66.396961 ], [ 23.562927, 66.513260 ], [ 23.560181, 66.600676 ], [ 29.410400, 66.600676 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 32.132263, 69.906724 ], [ 33.750000, 69.311529 ], [ 33.774719, 69.301823 ], [ 33.969727, 69.285314 ], [ 33.969727, 66.751830 ], [ 33.917542, 66.760501 ], [ 33.750000, 66.731223 ], [ 33.184204, 66.633377 ], [ 33.450623, 66.513260 ], [ 33.648376, 66.425537 ], [ 29.588928, 66.425537 ], [ 29.501038, 66.513260 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.065619 ], [ 29.399414, 69.157672 ], [ 31.099548, 69.558512 ], [ 32.132263, 69.906724 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 30.314026, 70.685421 ], [ 30.621643, 70.612614 ], [ 31.291809, 70.454265 ], [ 30.003662, 70.186965 ], [ 31.099548, 69.558512 ], [ 29.399414, 69.157672 ], [ 28.591919, 69.065619 ], [ 29.014893, 69.766607 ], [ 27.732239, 70.164610 ], [ 26.177673, 69.825418 ], [ 25.688782, 69.093080 ], [ 24.732971, 68.650556 ], [ 23.661804, 68.892220 ], [ 22.500000, 68.847665 ], [ 22.354431, 68.842709 ], [ 22.280273, 68.878368 ], [ 22.280273, 70.226957 ], [ 22.500000, 70.219523 ], [ 23.021851, 70.202785 ], [ 23.768921, 70.612614 ], [ 23.903503, 70.685421 ], [ 30.314026, 70.685421 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "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": "Polygon", "coordinates": [ [ [ 22.280273, 68.486977 ], [ 22.500000, 68.392101 ], [ 23.538208, 67.936492 ], [ 23.562927, 66.513260 ], [ 23.562927, 66.425537 ], [ 22.280273, 66.425537 ], [ 22.280273, 68.486977 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.732239, 70.164610 ], [ 29.014893, 69.766607 ], [ 28.591919, 69.065619 ], [ 28.443604, 68.364776 ], [ 29.976196, 67.699025 ], [ 29.053345, 66.945123 ], [ 29.501038, 66.513260 ], [ 29.588928, 66.425537 ], [ 23.562927, 66.425537 ], [ 23.562927, 66.513260 ], [ 23.538208, 67.936492 ], [ 22.500000, 68.392101 ], [ 22.280273, 68.486977 ], [ 22.280273, 68.878368 ], [ 22.354431, 68.842709 ], [ 22.500000, 68.847665 ], [ 23.661804, 68.892220 ], [ 24.732971, 68.650556 ], [ 25.688782, 69.093080 ], [ 26.177673, 69.825418 ], [ 27.732239, 70.164610 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 28.163452, 71.185982 ], [ 30.621643, 70.612614 ], [ 30.932007, 70.539543 ], [ 23.634338, 70.539543 ], [ 23.768921, 70.612614 ], [ 24.546204, 71.031249 ], [ 26.369934, 70.986560 ], [ 28.163452, 71.185982 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 22.881775, 78.455425 ], [ 23.280029, 78.079589 ], [ 24.721985, 77.853989 ], [ 22.500000, 77.446940 ], [ 22.489014, 77.445149 ], [ 22.280273, 77.473179 ], [ 22.280273, 78.397015 ], [ 22.500000, 78.418539 ], [ 22.881775, 78.455425 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 22.917480, 80.657296 ], [ 25.447083, 80.407473 ], [ 27.405396, 80.056627 ], [ 25.922241, 79.518159 ], [ 23.021851, 79.400085 ], [ 22.500000, 79.430356 ], [ 22.280273, 79.442440 ], [ 22.280273, 80.469064 ], [ 22.500000, 80.534330 ], [ 22.917480, 80.657296 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 18 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mozambique", "sov_a3": "MOZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mozambique", "adm0_a3": "MOZ", "geou_dif": 0, "geounit": "Mozambique", "gu_a3": "MOZ", "su_dif": 0, "subunit": "Mozambique", "su_a3": "MOZ", "brk_diff": 0, "name": "Mozambique", "name_long": "Mozambique", "brk_a3": "MOZ", "brk_name": "Mozambique", "abbrev": "Moz.", "postal": "MZ", "formal_en": "Republic of Mozambique", "name_sort": "Mozambique", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 21669278, "gdp_md_est": 18940, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MZ", "iso_a3": "MOZ", "iso_n3": "508", "un_a3": "508", "wb_a2": "MZ", "wb_a3": "MOZ", "woe_id": -99, "adm0_a3_is": "MOZ", "adm0_a3_us": "MOZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.337524, -21.739091 ], [ 35.373230, -21.838555 ], [ 35.375977, -21.943046 ], [ 35.384216, -22.139076 ], [ 35.559998, -22.088185 ], [ 35.532532, -23.069624 ], [ 35.370483, -23.533773 ], [ 35.606689, -23.704895 ], [ 35.458374, -24.121689 ], [ 35.038147, -24.477150 ], [ 34.214172, -24.814161 ], [ 33.750000, -25.025884 ], [ 33.530273, -25.122906 ], [ 33.530273, -21.739091 ], [ 35.337524, -21.739091 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Madagascar", "sov_a3": "MDG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Madagascar", "adm0_a3": "MDG", "geou_dif": 0, "geounit": "Madagascar", "gu_a3": "MDG", "su_dif": 0, "subunit": "Madagascar", "su_a3": "MDG", "brk_diff": 0, "name": "Madagascar", "name_long": "Madagascar", "brk_a3": "MDG", "brk_name": "Madagascar", "abbrev": "Mad.", "postal": "MG", "formal_en": "Republic of Madagascar", "name_sort": "Madagascar", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 20653556, "gdp_md_est": 20130, "pop_year": -99, "lastcensus": 1993, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MG", "iso_a3": "MDG", "iso_n3": "450", "un_a3": "450", "wb_a2": "MG", "wb_a3": "MDG", "woe_id": -99, "adm0_a3_is": "MDG", "adm0_a3_us": "MDG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, -21.739091 ], [ 45.219727, -25.515179 ], [ 45.000000, -25.418470 ], [ 44.038696, -24.986058 ], [ 43.761292, -24.459651 ], [ 43.695374, -23.574057 ], [ 43.343811, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.280640, -21.943046 ], [ 43.332825, -21.739091 ], [ 45.219727, -21.739091 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 17 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "United Republic of Tanzania", "sov_a3": "TZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Republic of Tanzania", "adm0_a3": "TZA", "geou_dif": 0, "geounit": "Tanzania", "gu_a3": "TZA", "su_dif": 0, "subunit": "Tanzania", "su_a3": "TZA", "brk_diff": 0, "name": "Tanzania", "name_long": "Tanzania", "brk_a3": "TZA", "brk_name": "Tanzania", "abbrev": "Tanz.", "postal": "TZ", "formal_en": "United Republic of Tanzania", "name_sort": "Tanzania", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 41048532, "gdp_md_est": 54250, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TZ", "iso_a3": "TZA", "iso_n3": "834", "un_a3": "834", "wb_a2": "TZ", "wb_a3": "TZA", "woe_id": -99, "adm0_a3_is": "TZA", "adm0_a3_us": "TZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.333801, -10.962764 ], [ 38.726807, -11.178402 ], [ 38.427429, -11.283467 ], [ 37.825928, -11.267306 ], [ 37.468872, -11.566144 ], [ 36.773987, -11.593051 ], [ 36.513062, -11.719478 ], [ 35.310059, -11.436955 ], [ 34.557495, -11.517705 ], [ 34.488831, -11.178402 ], [ 34.444885, -10.962764 ], [ 39.333801, -10.962764 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.444885, -10.962764 ], [ 34.488831, -11.178402 ], [ 34.557495, -11.517705 ], [ 34.277344, -12.278283 ], [ 34.557495, -13.579251 ], [ 34.906311, -13.563232 ], [ 35.266113, -13.886079 ], [ 35.686340, -14.610163 ], [ 35.771484, -15.895301 ], [ 35.337524, -16.106514 ], [ 35.032654, -16.799282 ], [ 34.378967, -16.183024 ], [ 34.304810, -15.477504 ], [ 34.516296, -15.011117 ], [ 34.458618, -14.612821 ], [ 34.063110, -14.357530 ], [ 33.788452, -14.450639 ], [ 33.750000, -14.418720 ], [ 33.530273, -14.235100 ], [ 33.530273, -10.962764 ], [ 34.444885, -10.962764 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mozambique", "sov_a3": "MOZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mozambique", "adm0_a3": "MOZ", "geou_dif": 0, "geounit": "Mozambique", "gu_a3": "MOZ", "su_dif": 0, "subunit": "Mozambique", "su_a3": "MOZ", "brk_diff": 0, "name": "Mozambique", "name_long": "Mozambique", "brk_a3": "MOZ", "brk_name": "Mozambique", "abbrev": "Moz.", "postal": "MZ", "formal_en": "Republic of Mozambique", "name_sort": "Mozambique", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 21669278, "gdp_md_est": 18940, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MZ", "iso_a3": "MOZ", "iso_n3": "508", "un_a3": "508", "wb_a2": "MZ", "wb_a3": "MOZ", "woe_id": -99, "adm0_a3_is": "MOZ", "adm0_a3_us": "MOZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.468140, -10.962764 ], [ 40.459900, -11.178402 ], [ 40.435181, -11.759815 ], [ 40.558777, -12.637658 ], [ 40.597229, -14.200488 ], [ 40.773010, -14.689881 ], [ 40.476379, -15.406024 ], [ 40.089111, -16.098598 ], [ 39.451904, -16.720385 ], [ 38.537292, -17.098792 ], [ 37.408447, -17.583812 ], [ 36.279602, -18.659257 ], [ 35.895081, -18.841314 ], [ 35.197449, -19.552026 ], [ 34.785461, -19.782211 ], [ 34.700317, -20.496492 ], [ 35.175476, -21.253542 ], [ 35.373230, -21.838555 ], [ 35.375977, -21.943046 ], [ 35.384216, -22.139076 ], [ 35.559998, -22.088185 ], [ 35.559998, -22.146708 ], [ 33.530273, -22.146708 ], [ 33.530273, -14.235100 ], [ 33.750000, -14.418720 ], [ 33.788452, -14.450639 ], [ 34.063110, -14.357530 ], [ 34.458618, -14.612821 ], [ 34.516296, -15.011117 ], [ 34.304810, -15.477504 ], [ 34.378967, -16.183024 ], [ 35.032654, -16.799282 ], [ 35.337524, -16.106514 ], [ 35.771484, -15.895301 ], [ 35.686340, -14.610163 ], [ 35.266113, -13.886079 ], [ 34.906311, -13.563232 ], [ 34.557495, -13.579251 ], [ 34.277344, -12.278283 ], [ 34.557495, -11.517705 ], [ 35.310059, -11.436955 ], [ 36.513062, -11.719478 ], [ 36.773987, -11.593051 ], [ 37.468872, -11.566144 ], [ 37.825928, -11.267306 ], [ 38.427429, -11.283467 ], [ 38.726807, -11.178402 ], [ 39.333801, -10.962764 ], [ 40.468140, -10.962764 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Madagascar", "sov_a3": "MDG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Madagascar", "adm0_a3": "MDG", "geou_dif": 0, "geounit": "Madagascar", "gu_a3": "MDG", "su_dif": 0, "subunit": "Madagascar", "su_a3": "MDG", "brk_diff": 0, "name": "Madagascar", "name_long": "Madagascar", "brk_a3": "MDG", "brk_name": "Madagascar", "abbrev": "Mad.", "postal": "MG", "formal_en": "Republic of Madagascar", "name_sort": "Madagascar", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 20653556, "gdp_md_est": 20130, "pop_year": -99, "lastcensus": 1993, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MG", "iso_a3": "MDG", "iso_n3": "450", "un_a3": "450", "wb_a2": "MG", "wb_a3": "MDG", "woe_id": -99, "adm0_a3_is": "MDG", "adm0_a3_us": "MDG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, -16.077486 ], [ 45.219727, -22.146708 ], [ 43.264160, -22.146708 ], [ 43.253174, -22.055096 ], [ 43.280640, -21.943046 ], [ 43.431702, -21.335432 ], [ 43.893127, -21.161361 ], [ 43.895874, -20.828010 ], [ 44.373779, -20.071411 ], [ 44.461670, -19.432924 ], [ 44.230957, -18.960844 ], [ 44.041443, -18.331062 ], [ 43.961792, -17.408305 ], [ 44.310608, -16.849234 ], [ 44.445190, -16.214675 ], [ 44.942322, -16.177749 ], [ 45.000000, -16.156645 ], [ 45.219727, -16.077486 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 16 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 0.219726 ], [ 33.892822, 0.109863 ], [ 33.892822, 0.000000 ], [ 33.901062, -0.947528 ], [ 33.750000, -0.955766 ], [ 33.530273, -0.964005 ], [ 33.530273, 0.219726 ], [ 33.969727, 0.219726 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.987244, 0.219726 ], [ 40.989990, 0.000000 ], [ 40.992737, -0.856902 ], [ 41.583252, -1.680667 ], [ 40.882874, -2.081451 ], [ 40.635681, -2.498597 ], [ 40.262146, -2.572682 ], [ 40.119324, -3.277630 ], [ 39.797974, -3.680632 ], [ 39.602966, -4.346411 ], [ 39.201965, -4.674980 ], [ 37.765503, -3.675151 ], [ 37.696838, -3.096636 ], [ 34.071350, -1.057374 ], [ 33.901062, -0.947528 ], [ 33.892822, 0.000000 ], [ 33.892822, 0.109863 ], [ 33.969727, 0.219726 ], [ 40.987244, 0.219726 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.069153, 0.219726 ], [ 42.871399, 0.000000 ], [ 42.039185, -0.917319 ], [ 41.808472, -1.444549 ], [ 41.583252, -1.680667 ], [ 40.992737, -0.856902 ], [ 40.989990, 0.000000 ], [ 40.987244, 0.219726 ], [ 43.069153, 0.219726 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "United Republic of Tanzania", "sov_a3": "TZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Republic of Tanzania", "adm0_a3": "TZA", "geou_dif": 0, "geounit": "Tanzania", "gu_a3": "TZA", "su_dif": 0, "subunit": "Tanzania", "su_a3": "TZA", "brk_diff": 0, "name": "Tanzania", "name_long": "Tanzania", "brk_a3": "TZA", "brk_name": "Tanzania", "abbrev": "Tanz.", "postal": "TZ", "formal_en": "United Republic of Tanzania", "name_sort": "Tanzania", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 41048532, "gdp_md_est": 54250, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TZ", "iso_a3": "TZA", "iso_n3": "834", "un_a3": "834", "wb_a2": "TZ", "wb_a3": "TZA", "woe_id": -99, "adm0_a3_is": "TZA", "adm0_a3_us": "TZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.901062, -0.947528 ], [ 34.071350, -1.057374 ], [ 37.696838, -3.096636 ], [ 37.765503, -3.675151 ], [ 39.201965, -4.674980 ], [ 38.740540, -5.908385 ], [ 38.798218, -6.473609 ], [ 39.438171, -6.839170 ], [ 39.468384, -7.098167 ], [ 39.193726, -7.702826 ], [ 39.251404, -8.007557 ], [ 39.185486, -8.483239 ], [ 39.534302, -9.110233 ], [ 39.949036, -10.095966 ], [ 40.314331, -10.314919 ], [ 39.520569, -10.895345 ], [ 38.726807, -11.178402 ], [ 38.427429, -11.283467 ], [ 37.825928, -11.267306 ], [ 37.677612, -11.393879 ], [ 34.532776, -11.393879 ], [ 34.488831, -11.178402 ], [ 34.277344, -10.158153 ], [ 33.750000, -9.430096 ], [ 33.739014, -9.416548 ], [ 33.530273, -9.375903 ], [ 33.530273, -0.964005 ], [ 33.750000, -0.955766 ], [ 33.901062, -0.947528 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.530273, -9.375903 ], [ 33.739014, -9.416548 ], [ 33.750000, -9.430096 ], [ 34.277344, -10.158153 ], [ 34.488831, -11.178402 ], [ 34.532776, -11.393879 ], [ 33.530273, -11.393879 ], [ 33.530273, -9.375903 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mozambique", "sov_a3": "MOZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mozambique", "adm0_a3": "MOZ", "geou_dif": 0, "geounit": "Mozambique", "gu_a3": "MOZ", "su_dif": 0, "subunit": "Mozambique", "su_a3": "MOZ", "brk_diff": 0, "name": "Mozambique", "name_long": "Mozambique", "brk_a3": "MOZ", "brk_name": "Mozambique", "abbrev": "Moz.", "postal": "MZ", "formal_en": "Republic of Mozambique", "name_sort": "Mozambique", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 21669278, "gdp_md_est": 18940, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MZ", "iso_a3": "MOZ", "iso_n3": "508", "un_a3": "508", "wb_a2": "MZ", "wb_a3": "MOZ", "woe_id": -99, "adm0_a3_is": "MOZ", "adm0_a3_us": "MOZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.314331, -10.314919 ], [ 40.476379, -10.763159 ], [ 40.459900, -11.178402 ], [ 40.451660, -11.393879 ], [ 37.677612, -11.393879 ], [ 37.825928, -11.267306 ], [ 38.427429, -11.283467 ], [ 38.726807, -11.178402 ], [ 39.520569, -10.895345 ], [ 40.314331, -10.314919 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 34.873352, 11.393879 ], [ 34.829407, 11.321174 ], [ 34.796448, 11.178402 ], [ 34.730530, 10.911527 ], [ 34.255371, 10.630916 ], [ 33.961487, 9.584501 ], [ 33.961487, 9.465317 ], [ 33.824158, 9.484281 ], [ 33.840637, 9.982376 ], [ 33.750000, 10.247357 ], [ 33.719788, 10.325728 ], [ 33.530273, 10.474308 ], [ 33.530273, 11.393879 ], [ 34.873352, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.530273, 7.719157 ], [ 33.565979, 7.713713 ], [ 33.750000, 7.539487 ], [ 34.074097, 7.226249 ], [ 34.249878, 6.828261 ], [ 34.705811, 6.596402 ], [ 35.296326, 5.506640 ], [ 34.002686, 4.250551 ], [ 33.530273, 3.897138 ], [ 33.530273, 7.719157 ] ] ], [ [ [ 33.530273, 8.366410 ], [ 33.530273, 10.474308 ], [ 33.719788, 10.325728 ], [ 33.750000, 10.247357 ], [ 33.840637, 9.982376 ], [ 33.824158, 9.484281 ], [ 33.961487, 9.465317 ], [ 33.972473, 8.686924 ], [ 33.824158, 8.379997 ], [ 33.750000, 8.377279 ], [ 33.530273, 8.366410 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.002686, 4.250551 ], [ 34.477844, 3.557283 ], [ 34.595947, 3.055497 ], [ 35.035400, 1.908521 ], [ 34.670105, 1.178201 ], [ 34.178467, 0.516350 ], [ 33.892822, 0.109863 ], [ 33.892822, 0.000000 ], [ 33.895569, -0.219726 ], [ 33.530273, -0.219726 ], [ 33.530273, 3.897138 ], [ 34.002686, 4.250551 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Djibouti", "sov_a3": "DJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Djibouti", "adm0_a3": "DJI", "geou_dif": 0, "geounit": "Djibouti", "gu_a3": "DJI", "su_dif": 0, "subunit": "Djibouti", "su_a3": "DJI", "brk_diff": 0, "name": "Djibouti", "name_long": "Djibouti", "brk_a3": "DJI", "brk_name": "Djibouti", "abbrev": "Dji.", "postal": "DJ", "formal_en": "Republic of Djibouti", "name_sort": "Djibouti", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 516055, "gdp_md_est": 1885, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "DJ", "iso_a3": "DJI", "iso_n3": "262", "un_a3": "262", "wb_a2": "DJ", "wb_a3": "DJI", "woe_id": -99, "adm0_a3_is": "DJI", "adm0_a3_us": "DJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Middle East & North Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.096619, 11.393879 ], [ 42.948303, 11.178402 ], [ 42.775269, 10.927708 ], [ 42.552795, 11.105642 ], [ 42.313843, 11.035560 ], [ 41.753540, 11.051734 ], [ 41.748047, 11.178402 ], [ 41.737061, 11.356182 ], [ 41.726074, 11.393879 ], [ 43.096619, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.296326, 5.506640 ], [ 35.815430, 5.339848 ], [ 35.815430, 4.778995 ], [ 36.158752, 4.450474 ], [ 36.853638, 4.450474 ], [ 38.119812, 3.601142 ], [ 38.435669, 3.590178 ], [ 38.669128, 3.617589 ], [ 38.891602, 3.502455 ], [ 39.559021, 3.422950 ], [ 39.852905, 3.839591 ], [ 40.767517, 4.258768 ], [ 41.171265, 3.921800 ], [ 41.852417, 3.919060 ], [ 40.979004, 2.786681 ], [ 40.989990, 0.000000 ], [ 40.989990, -0.219726 ], [ 33.895569, -0.219726 ], [ 33.892822, 0.000000 ], [ 33.892822, 0.109863 ], [ 34.178467, 0.516350 ], [ 34.670105, 1.178201 ], [ 35.035400, 1.908521 ], [ 34.595947, 3.055497 ], [ 34.477844, 3.557283 ], [ 34.002686, 4.250551 ], [ 35.296326, 5.506640 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.726074, 11.393879 ], [ 41.737061, 11.356182 ], [ 41.748047, 11.178402 ], [ 41.753540, 11.051734 ], [ 42.313843, 11.035560 ], [ 42.552795, 11.105642 ], [ 42.775269, 10.927708 ], [ 42.558289, 10.574222 ], [ 42.926331, 10.022948 ], [ 43.294373, 9.541166 ], [ 43.676147, 9.186159 ], [ 45.000000, 8.705929 ], [ 45.219727, 8.627188 ], [ 45.219727, 5.276948 ], [ 45.000000, 5.041699 ], [ 44.961548, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.767029, 4.253290 ], [ 42.127075, 4.236856 ], [ 41.852417, 3.919060 ], [ 41.171265, 3.921800 ], [ 40.767517, 4.258768 ], [ 39.852905, 3.839591 ], [ 39.559021, 3.422950 ], [ 38.891602, 3.502455 ], [ 38.669128, 3.617589 ], [ 38.435669, 3.590178 ], [ 38.119812, 3.601142 ], [ 36.853638, 4.450474 ], [ 36.158752, 4.450474 ], [ 35.815430, 4.778995 ], [ 35.815430, 5.339848 ], [ 35.296326, 5.506640 ], [ 34.705811, 6.596402 ], [ 34.249878, 6.828261 ], [ 34.074097, 7.226249 ], [ 33.750000, 7.539487 ], [ 33.565979, 7.713713 ], [ 33.530273, 7.719157 ], [ 33.530273, 8.366410 ], [ 33.750000, 8.377279 ], [ 33.824158, 8.379997 ], [ 33.972473, 8.686924 ], [ 33.961487, 9.584501 ], [ 34.255371, 10.630916 ], [ 34.730530, 10.911527 ], [ 34.796448, 11.178402 ], [ 34.829407, 11.321174 ], [ 34.873352, 11.393879 ], [ 41.726074, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "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": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.264160, 11.393879 ], [ 43.470154, 11.278080 ], [ 43.516846, 11.178402 ], [ 43.665161, 10.865676 ], [ 44.115601, 10.447299 ], [ 44.612732, 10.444598 ], [ 45.000000, 10.547221 ], [ 45.219727, 10.606620 ], [ 45.219727, 8.627188 ], [ 45.000000, 8.705929 ], [ 43.676147, 9.186159 ], [ 43.294373, 9.541166 ], [ 42.926331, 10.022948 ], [ 42.558289, 10.574222 ], [ 42.775269, 10.927708 ], [ 42.948303, 11.178402 ], [ 43.096619, 11.393879 ], [ 43.264160, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, 5.276948 ], [ 45.219727, 1.817932 ], [ 45.000000, 1.672431 ], [ 44.066162, 1.054628 ], [ 43.135071, 0.293883 ], [ 42.871399, 0.000000 ], [ 42.670898, -0.219726 ], [ 40.989990, -0.219726 ], [ 40.989990, 0.000000 ], [ 40.979004, 2.786681 ], [ 41.852417, 3.919060 ], [ 42.127075, 4.236856 ], [ 42.767029, 4.253290 ], [ 43.659668, 4.959615 ], [ 44.961548, 5.003394 ], [ 45.000000, 5.041699 ], [ 45.219727, 5.276948 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.738281, 22.146708 ], [ 36.864624, 22.001628 ], [ 33.530273, 22.001628 ], [ 33.530273, 22.146708 ], [ 36.738281, 22.146708 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 36.864624, 22.001628 ], [ 36.883850, 21.943046 ], [ 37.185974, 21.020419 ], [ 36.968994, 20.838278 ], [ 37.114563, 19.808054 ], [ 37.479858, 18.615013 ], [ 37.861633, 18.370166 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.429270 ], [ 37.166748, 17.264105 ], [ 36.850891, 16.956979 ], [ 36.752014, 16.293779 ], [ 36.320801, 14.822681 ], [ 36.427917, 14.424040 ], [ 36.268616, 13.565902 ], [ 35.862122, 12.578691 ], [ 35.257874, 12.084982 ], [ 34.829407, 11.321174 ], [ 34.796448, 11.178402 ], [ 34.741516, 10.962764 ], [ 33.530273, 10.962764 ], [ 33.530273, 22.001628 ], [ 36.864624, 22.001628 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Eritrea", "sov_a3": "ERI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Eritrea", "adm0_a3": "ERI", "geou_dif": 0, "geounit": "Eritrea", "gu_a3": "ERI", "su_dif": 0, "subunit": "Eritrea", "su_a3": "ERI", "brk_diff": 0, "name": "Eritrea", "name_long": "Eritrea", "brk_a3": "ERI", "brk_name": "Eritrea", "abbrev": "Erit.", "postal": "ER", "formal_en": "State of Eritrea", "name_sort": "Eritrea", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 5647168, "gdp_md_est": 3945, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ER", "iso_a3": "ERI", "iso_n3": "232", "un_a3": "232", "wb_a2": "ER", "wb_a3": "ERI", "woe_id": -99, "adm0_a3_is": "ERI", "adm0_a3_us": "ERI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.408203, 17.999632 ], [ 38.990479, 16.841348 ], [ 39.265137, 15.924356 ], [ 39.811707, 15.437796 ], [ 41.176758, 14.493190 ], [ 41.734314, 13.923404 ], [ 42.275391, 13.344193 ], [ 42.588501, 13.001882 ], [ 43.080139, 12.701971 ], [ 42.778015, 12.458033 ], [ 42.349548, 12.543840 ], [ 42.008972, 12.868037 ], [ 41.596985, 13.453737 ], [ 41.154785, 13.774066 ], [ 40.893860, 14.120595 ], [ 40.025940, 14.519780 ], [ 39.339294, 14.533074 ], [ 39.097595, 14.743011 ], [ 38.512573, 14.506485 ], [ 37.905579, 14.960706 ], [ 37.592468, 14.213801 ], [ 36.427917, 14.424040 ], [ 36.320801, 14.822681 ], [ 36.752014, 16.293779 ], [ 36.850891, 16.956979 ], [ 37.166748, 17.264105 ], [ 37.902832, 17.429270 ], [ 38.408203, 17.999632 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Djibouti", "sov_a3": "DJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Djibouti", "adm0_a3": "DJI", "geou_dif": 0, "geounit": "Djibouti", "gu_a3": "DJI", "su_dif": 0, "subunit": "Djibouti", "su_a3": "DJI", "brk_diff": 0, "name": "Djibouti", "name_long": "Djibouti", "brk_a3": "DJI", "brk_name": "Djibouti", "abbrev": "Dji.", "postal": "DJ", "formal_en": "Republic of Djibouti", "name_sort": "Djibouti", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 516055, "gdp_md_est": 1885, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "DJ", "iso_a3": "DJI", "iso_n3": "262", "un_a3": "262", "wb_a2": "DJ", "wb_a3": "DJI", "woe_id": -99, "adm0_a3_is": "DJI", "adm0_a3_us": "DJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Middle East & North Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.080139, 12.701971 ], [ 43.316345, 12.390976 ], [ 43.286133, 11.977532 ], [ 42.714844, 11.738302 ], [ 43.143311, 11.463874 ], [ 42.948303, 11.178402 ], [ 42.799988, 10.962764 ], [ 42.731323, 10.962764 ], [ 42.552795, 11.105642 ], [ 42.313843, 11.035560 ], [ 41.753540, 11.051734 ], [ 41.748047, 11.178402 ], [ 41.737061, 11.356182 ], [ 41.660156, 11.633406 ], [ 41.997986, 12.101095 ], [ 42.349548, 12.543840 ], [ 42.778015, 12.458033 ], [ 43.080139, 12.701971 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.905579, 14.960706 ], [ 38.512573, 14.506485 ], [ 39.097595, 14.743011 ], [ 39.339294, 14.533074 ], [ 40.025940, 14.519780 ], [ 40.893860, 14.120595 ], [ 41.154785, 13.774066 ], [ 41.596985, 13.453737 ], [ 42.008972, 12.868037 ], [ 42.349548, 12.543840 ], [ 41.997986, 12.101095 ], [ 41.660156, 11.633406 ], [ 41.737061, 11.356182 ], [ 41.748047, 11.178402 ], [ 41.753540, 11.051734 ], [ 42.313843, 11.035560 ], [ 42.552795, 11.105642 ], [ 42.731323, 10.962764 ], [ 34.741516, 10.962764 ], [ 34.796448, 11.178402 ], [ 34.829407, 11.321174 ], [ 35.257874, 12.084982 ], [ 35.862122, 12.578691 ], [ 36.268616, 13.565902 ], [ 36.427917, 14.424040 ], [ 37.592468, 14.213801 ], [ 37.905579, 14.960706 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 45.219727, 22.146708 ], [ 45.219727, 17.431890 ], [ 45.000000, 17.429270 ], [ 44.060669, 17.410925 ], [ 43.791504, 17.321798 ], [ 43.379517, 17.581194 ], [ 43.113098, 17.090917 ], [ 43.217468, 16.667769 ], [ 42.778015, 16.349132 ], [ 42.648926, 16.775617 ], [ 42.346802, 17.077790 ], [ 42.269897, 17.476432 ], [ 41.753540, 17.834989 ], [ 41.220703, 18.672267 ], [ 40.937805, 19.487308 ], [ 40.245667, 20.177145 ], [ 39.800720, 20.339476 ], [ 39.138794, 21.291933 ], [ 39.028931, 21.943046 ], [ 39.023438, 21.988895 ], [ 39.034424, 22.146708 ], [ 45.219727, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Yemen", "sov_a3": "YEM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Yemen", "adm0_a3": "YEM", "geou_dif": 0, "geounit": "Yemen", "gu_a3": "YEM", "su_dif": 0, "subunit": "Yemen", "su_a3": "YEM", "brk_diff": 0, "name": "Yemen", "name_long": "Yemen", "brk_a3": "YEM", "brk_name": "Yemen", "abbrev": "Yem.", "postal": "YE", "formal_en": "Republic of Yemen", "name_sort": "Yemen, Rep.", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 23822783, "gdp_md_est": 55280, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "YE", "iso_a3": "YEM", "iso_n3": "887", "un_a3": "887", "wb_a2": "RY", "wb_a3": "YEM", "woe_id": -99, "adm0_a3_is": "YEM", "adm0_a3_us": "YEM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.379517, 17.581194 ], [ 43.791504, 17.321798 ], [ 44.060669, 17.410925 ], [ 45.000000, 17.429270 ], [ 45.214233, 17.434511 ], [ 45.219727, 17.431890 ], [ 45.219727, 12.975118 ], [ 45.142822, 12.956383 ], [ 45.000000, 12.718047 ], [ 44.989014, 12.701971 ], [ 44.491882, 12.723405 ], [ 44.173279, 12.586732 ], [ 43.481140, 12.637658 ], [ 43.220215, 13.221230 ], [ 43.250427, 13.768731 ], [ 43.085632, 14.064652 ], [ 42.890625, 14.804094 ], [ 42.602234, 15.215288 ], [ 42.802734, 15.262989 ], [ 42.701111, 15.720882 ], [ 42.821960, 15.913791 ], [ 42.778015, 16.349132 ], [ 43.217468, 16.667769 ], [ 43.113098, 17.090917 ], [ 43.379517, 17.581194 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "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": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.143311, 11.463874 ], [ 43.470154, 11.278080 ], [ 43.516846, 11.178402 ], [ 43.618469, 10.962764 ], [ 42.799988, 10.962764 ], [ 42.948303, 11.178402 ], [ 43.143311, 11.463874 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.530273, 27.327855 ], [ 33.750000, 26.877981 ], [ 34.104309, 26.143111 ], [ 34.472351, 25.599425 ], [ 34.793701, 25.035839 ], [ 35.691833, 23.928524 ], [ 35.491333, 23.752668 ], [ 35.524292, 23.102471 ], [ 36.688843, 22.205206 ], [ 36.864624, 22.001628 ], [ 33.530273, 22.001628 ], [ 33.530273, 27.327855 ] ] ], [ [ [ 33.530273, 28.030773 ], [ 33.530273, 30.987028 ], [ 33.750000, 30.970544 ], [ 33.771973, 30.968189 ], [ 34.263611, 31.219848 ], [ 34.920044, 29.501769 ], [ 34.639893, 29.101777 ], [ 34.425659, 28.345482 ], [ 34.153748, 27.824503 ], [ 33.920288, 27.649472 ], [ 33.750000, 27.814786 ], [ 33.530273, 28.030773 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, 32.138409 ], [ 45.219727, 29.159357 ], [ 45.000000, 29.166552 ], [ 44.708862, 29.180941 ], [ 41.888123, 31.191658 ], [ 40.399475, 31.891551 ], [ 40.122070, 31.952162 ], [ 39.295349, 32.138409 ], [ 45.219727, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Israel", "adm0_a3": "ISR", "geou_dif": 0, "geounit": "Israel", "gu_a3": "ISR", "su_dif": 0, "subunit": "Israel", "su_a3": "ISR", "brk_diff": 0, "name": "Israel", "name_long": "Israel", "brk_a3": "ISR", "brk_name": "Israel", "abbrev": "Isr.", "postal": "IS", "formal_en": "State of Israel", "name_sort": "Israel", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 7233701, "gdp_md_est": 201400, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IL", "iso_a3": "ISR", "iso_n3": "376", "un_a3": "376", "wb_a2": "IL", "wb_a3": "ISR", "woe_id": -99, "adm0_a3_is": "ISR", "adm0_a3_us": "ISR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.057373, 32.138409 ], [ 34.999695, 31.952162 ], [ 34.972229, 31.868228 ], [ 35.224915, 31.756196 ], [ 34.969482, 31.618305 ], [ 34.925537, 31.353637 ], [ 35.395203, 31.489578 ], [ 35.419922, 31.102334 ], [ 34.920044, 29.501769 ], [ 34.263611, 31.219848 ], [ 34.554749, 31.550453 ], [ 34.486084, 31.606610 ], [ 34.683838, 31.952162 ], [ 34.752502, 32.073266 ], [ 34.768982, 32.138409 ], [ 35.057373, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 1, "level": 2, "type": "Disputed", "admin": "Palestine", "adm0_a3": "PSX", "geou_dif": 0, "geounit": "Palestine", "gu_a3": "PSX", "su_dif": 0, "subunit": "Palestine", "su_a3": "PSX", "brk_diff": 0, "name": "Palestine", "name_long": "Palestine", "brk_a3": "PSX", "brk_name": "Palestine", "abbrev": "Pal.", "postal": "PAL", "formal_en": "West Bank and Gaza", "note_adm0": "Partial self-admin.", "note_brk": "Partial self-admin.", "name_sort": "Palestine (West Bank and Gaza)", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 4119083, "gdp_md_est": 11950.8, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PS", "iso_a3": "PSE", "iso_n3": "275", "un_a3": "275", "wb_a2": "GZ", "wb_a3": "WBG", "woe_id": -99, "adm0_a3_is": "PSE", "adm0_a3_us": "PSX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.543518, 32.138409 ], [ 35.543518, 31.784217 ], [ 35.395203, 31.489578 ], [ 34.925537, 31.353637 ], [ 34.969482, 31.618305 ], [ 35.224915, 31.756196 ], [ 34.972229, 31.868228 ], [ 34.999695, 31.952162 ], [ 35.057373, 32.138409 ], [ 35.543518, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Jordan", "sov_a3": "JOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Jordan", "adm0_a3": "JOR", "geou_dif": 0, "geounit": "Jordan", "gu_a3": "JOR", "su_dif": 0, "subunit": "Jordan", "su_a3": "JOR", "brk_diff": 0, "name": "Jordan", "name_long": "Jordan", "brk_a3": "JOR", "brk_name": "Jordan", "abbrev": "Jord.", "postal": "J", "formal_en": "Hashemite Kingdom of Jordan", "name_sort": "Jordan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 6342948, "gdp_md_est": 31610, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "JO", "iso_a3": "JOR", "iso_n3": "400", "un_a3": "400", "wb_a2": "JO", "wb_a3": "JOR", "woe_id": -99, "adm0_a3_is": "JOR", "adm0_a3_us": "JOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.166260, 32.138409 ], [ 39.004211, 32.010405 ], [ 38.770752, 31.952162 ], [ 37.001953, 31.510654 ], [ 37.996216, 30.510217 ], [ 37.666626, 30.339695 ], [ 37.501831, 30.004895 ], [ 36.738281, 29.866847 ], [ 36.499329, 29.506549 ], [ 36.068115, 29.197726 ], [ 34.955750, 29.358239 ], [ 34.920044, 29.501769 ], [ 35.419922, 31.102334 ], [ 35.395203, 31.489578 ], [ 35.543518, 31.784217 ], [ 35.543518, 32.138409 ], [ 39.166260, 32.138409 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 36.864624, 22.001628 ], [ 36.883850, 21.943046 ], [ 36.949768, 21.739091 ], [ 33.530273, 21.739091 ], [ 33.530273, 22.001628 ], [ 36.864624, 22.001628 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 39.295349, 32.138409 ], [ 40.122070, 31.952162 ], [ 40.399475, 31.891551 ], [ 41.888123, 31.191658 ], [ 44.708862, 29.180941 ], [ 45.000000, 29.166552 ], [ 45.219727, 29.159357 ], [ 45.219727, 21.739091 ], [ 39.064636, 21.739091 ], [ 39.028931, 21.943046 ], [ 39.023438, 21.988895 ], [ 39.064636, 22.581047 ], [ 38.490601, 23.689805 ], [ 38.023682, 24.079067 ], [ 37.482605, 24.287027 ], [ 37.153015, 24.859026 ], [ 37.207947, 25.085599 ], [ 36.930542, 25.604379 ], [ 36.639404, 25.827089 ], [ 36.246643, 26.571333 ], [ 35.639648, 27.376645 ], [ 35.128784, 28.064710 ], [ 34.631653, 28.059862 ], [ 34.785461, 28.608637 ], [ 34.832153, 28.957686 ], [ 34.955750, 29.358239 ], [ 36.068115, 29.197726 ], [ 36.499329, 29.506549 ], [ 36.738281, 29.866847 ], [ 37.501831, 30.004895 ], [ 37.666626, 30.339695 ], [ 37.996216, 30.510217 ], [ 37.001953, 31.510654 ], [ 38.770752, 31.952162 ], [ 39.004211, 32.010405 ], [ 39.166260, 32.138409 ], [ 39.295349, 32.138409 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.057922, 41.145570 ], [ 43.580017, 41.093842 ], [ 43.475647, 41.145570 ], [ 44.057922, 41.145570 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Northern Cyprus", "sov_a3": "CYN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Northern Cyprus", "adm0_a3": "CYN", "geou_dif": 0, "geounit": "Northern Cyprus", "gu_a3": "CYN", "su_dif": 0, "subunit": "Northern Cyprus", "su_a3": "CYN", "brk_diff": 1, "name": "N. Cyprus", "name_long": "Northern Cyprus", "brk_a3": "B20", "brk_name": "N. Cyprus", "abbrev": "N. Cy.", "postal": "CN", "formal_en": "Turkish Republic of Northern Cyprus", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Cyprus", "name_sort": "Cyprus, Northern", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 265100, "gdp_md_est": 3600, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "CYP", "adm0_a3_us": "CYP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 15, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.573975, 35.672916 ], [ 33.898315, 35.247862 ], [ 33.972473, 35.059229 ], [ 33.865356, 35.095193 ], [ 33.750000, 35.047987 ], [ 33.673096, 35.018750 ], [ 33.530273, 35.038992 ], [ 33.530273, 35.377854 ], [ 33.664856, 35.373375 ], [ 33.750000, 35.402484 ], [ 34.573975, 35.672916 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Cyprus", "sov_a3": "CYP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cyprus", "adm0_a3": "CYP", "geou_dif": 0, "geounit": "Cyprus", "gu_a3": "CYP", "su_dif": 0, "subunit": "Cyprus", "su_a3": "CYP", "brk_diff": 0, "name": "Cyprus", "name_long": "Cyprus", "brk_a3": "CYP", "brk_name": "Cyprus", "abbrev": "Cyp.", "postal": "CY", "formal_en": "Republic of Cyprus", "name_sort": "Cyprus", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 531640, "gdp_md_est": 22700, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "CY", "iso_a3": "CYP", "iso_n3": "196", "un_a3": "196", "wb_a2": "CY", "wb_a3": "CYP", "woe_id": -99, "adm0_a3_is": "CYP", "adm0_a3_us": "CYP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.865356, 35.095193 ], [ 33.972473, 35.059229 ], [ 34.002686, 34.978252 ], [ 33.750000, 34.879172 ], [ 33.530273, 34.791250 ], [ 33.530273, 35.038992 ], [ 33.673096, 35.018750 ], [ 33.750000, 35.047987 ], [ 33.865356, 35.095193 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.475647, 41.145570 ], [ 43.580017, 41.093842 ], [ 43.634949, 40.979898 ], [ 43.750305, 40.741014 ], [ 43.654175, 40.254377 ], [ 44.398499, 40.006580 ], [ 44.791260, 39.713525 ], [ 44.107361, 39.429829 ], [ 44.420471, 38.281313 ], [ 44.225464, 37.972350 ], [ 44.772034, 37.171260 ], [ 44.291382, 37.002553 ], [ 43.939819, 37.256566 ], [ 42.778015, 37.385435 ], [ 42.349548, 37.230328 ], [ 41.209717, 37.074902 ], [ 40.671387, 37.092431 ], [ 39.520569, 36.716871 ], [ 38.699341, 36.714669 ], [ 38.166504, 36.901587 ], [ 37.065125, 36.624345 ], [ 36.738281, 36.818080 ], [ 36.683350, 36.259778 ], [ 36.147766, 35.822267 ], [ 35.779724, 36.275279 ], [ 36.158752, 36.650793 ], [ 35.549011, 36.567012 ], [ 34.714050, 36.796090 ], [ 34.024658, 36.222119 ], [ 33.750000, 36.199958 ], [ 33.530273, 36.184442 ], [ 33.530273, 41.145570 ], [ 37.617188, 41.145570 ], [ 38.229675, 40.979898 ], [ 38.345032, 40.948788 ], [ 38.583984, 40.979898 ], [ 39.512329, 41.104191 ], [ 40.372009, 41.015138 ], [ 40.668640, 41.145570 ], [ 43.475647, 41.145570 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lebanon", "sov_a3": "LBN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lebanon", "adm0_a3": "LBN", "geou_dif": 0, "geounit": "Lebanon", "gu_a3": "LBN", "su_dif": 0, "subunit": "Lebanon", "su_a3": "LBN", "brk_diff": 0, "name": "Lebanon", "name_long": "Lebanon", "brk_a3": "LBN", "brk_name": "Lebanon", "abbrev": "Leb.", "postal": "LB", "formal_en": "Lebanese Republic", "name_sort": "Lebanon", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 12, "pop_est": 4017095, "gdp_md_est": 44060, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LB", "iso_a3": "LBN", "iso_n3": "422", "un_a3": "422", "wb_a2": "LB", "wb_a3": "LBN", "woe_id": -99, "adm0_a3_is": "LBN", "adm0_a3_us": "LBN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.996704, 34.646766 ], [ 36.447144, 34.594781 ], [ 36.609192, 34.202716 ], [ 36.065369, 33.827075 ], [ 35.820923, 33.277732 ], [ 35.551758, 33.266250 ], [ 35.458374, 33.089240 ], [ 35.126038, 33.091542 ], [ 35.480347, 33.906896 ], [ 35.977478, 34.610606 ], [ 35.996704, 34.646766 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Syria", "sov_a3": "SYR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Syria", "adm0_a3": "SYR", "geou_dif": 0, "geounit": "Syria", "gu_a3": "SYR", "su_dif": 0, "subunit": "Syria", "su_a3": "SYR", "brk_diff": 0, "name": "Syria", "name_long": "Syria", "brk_a3": "SYR", "brk_name": "Syria", "abbrev": "Syria", "postal": "SYR", "formal_en": "Syrian Arab Republic", "name_sort": "Syrian Arab Republic", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 20178485, "gdp_md_est": 98830, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SY", "iso_a3": "SYR", "iso_n3": "760", "un_a3": "760", "wb_a2": "SY", "wb_a3": "SYR", "woe_id": -99, "adm0_a3_is": "SYR", "adm0_a3_us": "SYR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.349548, 37.230328 ], [ 41.835938, 36.606709 ], [ 41.289368, 36.359375 ], [ 41.382751, 35.630512 ], [ 41.003723, 34.420505 ], [ 38.789978, 33.378706 ], [ 36.831665, 32.314991 ], [ 35.700073, 32.717977 ], [ 35.834656, 32.870360 ], [ 35.820923, 33.277732 ], [ 36.065369, 33.827075 ], [ 36.609192, 34.202716 ], [ 36.447144, 34.594781 ], [ 35.996704, 34.646766 ], [ 35.903320, 35.411438 ], [ 36.147766, 35.822267 ], [ 36.683350, 36.259778 ], [ 36.738281, 36.818080 ], [ 37.065125, 36.624345 ], [ 38.166504, 36.901587 ], [ 38.699341, 36.714669 ], [ 39.520569, 36.716871 ], [ 40.671387, 37.092431 ], [ 41.209717, 37.074902 ], [ 42.349548, 37.230328 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.778015, 37.385435 ], [ 43.939819, 37.256566 ], [ 44.291382, 37.002553 ], [ 44.772034, 37.171260 ], [ 45.000000, 36.754290 ], [ 45.219727, 36.350527 ], [ 45.219727, 31.765537 ], [ 40.663147, 31.765537 ], [ 40.399475, 31.891551 ], [ 40.122070, 31.952162 ], [ 39.193726, 32.161663 ], [ 38.789978, 33.378706 ], [ 41.003723, 34.420505 ], [ 41.382751, 35.630512 ], [ 41.289368, 36.359375 ], [ 41.835938, 36.606709 ], [ 42.349548, 37.230328 ], [ 42.778015, 37.385435 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Israel", "adm0_a3": "ISR", "geou_dif": 0, "geounit": "Israel", "gu_a3": "ISR", "su_dif": 0, "subunit": "Israel", "su_a3": "ISR", "brk_diff": 0, "name": "Israel", "name_long": "Israel", "brk_a3": "ISR", "brk_name": "Israel", "abbrev": "Isr.", "postal": "IS", "formal_en": "State of Israel", "name_sort": "Israel", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 7233701, "gdp_md_est": 201400, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IL", "iso_a3": "ISR", "iso_n3": "376", "un_a3": "376", "wb_a2": "IL", "wb_a3": "ISR", "woe_id": -99, "adm0_a3_is": "ISR", "adm0_a3_us": "ISR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.820923, 33.277732 ], [ 35.834656, 32.870360 ], [ 35.700073, 32.717977 ], [ 35.719299, 32.711044 ], [ 35.543518, 32.396197 ], [ 35.183716, 32.532921 ], [ 34.999695, 31.952162 ], [ 34.972229, 31.868228 ], [ 35.200195, 31.765537 ], [ 34.576721, 31.765537 ], [ 34.683838, 31.952162 ], [ 34.752502, 32.073266 ], [ 34.953003, 32.828827 ], [ 35.095825, 33.082337 ], [ 35.126038, 33.091542 ], [ 35.458374, 33.089240 ], [ 35.551758, 33.266250 ], [ 35.820923, 33.277732 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 1, "level": 2, "type": "Disputed", "admin": "Palestine", "adm0_a3": "PSX", "geou_dif": 0, "geounit": "Palestine", "gu_a3": "PSX", "su_dif": 0, "subunit": "Palestine", "su_a3": "PSX", "brk_diff": 0, "name": "Palestine", "name_long": "Palestine", "brk_a3": "PSX", "brk_name": "Palestine", "abbrev": "Pal.", "postal": "PAL", "formal_en": "West Bank and Gaza", "note_adm0": "Partial self-admin.", "note_brk": "Partial self-admin.", "name_sort": "Palestine (West Bank and Gaza)", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 4119083, "gdp_md_est": 11950.8, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PS", "iso_a3": "PSE", "iso_n3": "275", "un_a3": "275", "wb_a2": "GZ", "wb_a3": "WBG", "woe_id": -99, "adm0_a3_is": "PSE", "adm0_a3_us": "PSX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.183716, 32.532921 ], [ 35.543518, 32.396197 ], [ 35.543518, 31.784217 ], [ 35.535278, 31.765537 ], [ 35.200195, 31.765537 ], [ 34.972229, 31.868228 ], [ 34.999695, 31.952162 ], [ 35.183716, 32.532921 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Jordan", "sov_a3": "JOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Jordan", "adm0_a3": "JOR", "geou_dif": 0, "geounit": "Jordan", "gu_a3": "JOR", "su_dif": 0, "subunit": "Jordan", "su_a3": "JOR", "brk_diff": 0, "name": "Jordan", "name_long": "Jordan", "brk_a3": "JOR", "brk_name": "Jordan", "abbrev": "Jord.", "postal": "J", "formal_en": "Hashemite Kingdom of Jordan", "name_sort": "Jordan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 6342948, "gdp_md_est": 31610, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "JO", "iso_a3": "JOR", "iso_n3": "400", "un_a3": "400", "wb_a2": "JO", "wb_a3": "JOR", "woe_id": -99, "adm0_a3_is": "JOR", "adm0_a3_us": "JOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.789978, 33.378706 ], [ 39.193726, 32.161663 ], [ 39.004211, 32.010405 ], [ 38.770752, 31.952162 ], [ 38.026428, 31.765537 ], [ 35.535278, 31.765537 ], [ 35.543518, 31.784217 ], [ 35.543518, 32.396197 ], [ 35.719299, 32.711044 ], [ 36.831665, 32.314991 ], [ 38.789978, 33.378706 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.052185, 41.145570 ], [ 45.178528, 40.986118 ], [ 45.219727, 40.967456 ], [ 45.219727, 39.544294 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.713525 ], [ 44.398499, 40.006580 ], [ 43.654175, 40.254377 ], [ 43.750305, 40.741014 ], [ 43.634949, 40.979898 ], [ 43.580017, 41.093842 ], [ 44.057922, 41.145570 ], [ 45.052185, 41.145570 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 39.740986 ], [ 45.219727, 39.544294 ], [ 45.219727, 39.093831 ], [ 45.000000, 39.293923 ], [ 44.950562, 39.336422 ], [ 44.791260, 39.713525 ], [ 45.000000, 39.740986 ] ] ], [ [ [ 45.219727, 41.145570 ], [ 45.219727, 40.967456 ], [ 45.178528, 40.986118 ], [ 45.052185, 41.145570 ], [ 45.219727, 41.145570 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.791260, 39.713525 ], [ 44.950562, 39.336422 ], [ 45.000000, 39.293923 ], [ 45.219727, 39.093831 ], [ 45.219727, 36.350527 ], [ 45.000000, 36.754290 ], [ 44.772034, 37.171260 ], [ 44.225464, 37.972350 ], [ 44.420471, 38.281313 ], [ 44.107361, 39.429829 ], [ 44.791260, 39.713525 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 39.193726, 32.161663 ], [ 40.122070, 31.952162 ], [ 40.399475, 31.891551 ], [ 40.663147, 31.765537 ], [ 38.026428, 31.765537 ], [ 38.770752, 31.952162 ], [ 39.004211, 32.010405 ], [ 39.193726, 32.161663 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 45.219727, 49.066668 ], [ 45.219727, 42.559150 ], [ 45.000000, 42.609706 ], [ 44.535828, 42.712714 ], [ 43.928833, 42.555104 ], [ 43.755798, 42.740961 ], [ 42.393494, 43.221190 ], [ 40.921326, 43.383094 ], [ 40.075378, 43.554520 ], [ 39.954529, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.537537, 44.658885 ], [ 36.675110, 45.245887 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.242552 ], [ 37.672119, 46.638122 ], [ 39.147034, 47.045797 ], [ 39.119568, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.768005, 47.826064 ], [ 39.737549, 47.899772 ], [ 39.894104, 48.233821 ], [ 39.674377, 48.785152 ], [ 39.781494, 48.922499 ], [ 39.891357, 49.066668 ], [ 45.219727, 49.066668 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 39.891357, 49.066668 ], [ 39.781494, 48.922499 ], [ 39.674377, 48.785152 ], [ 39.894104, 48.233821 ], [ 39.737549, 47.899772 ], [ 38.768005, 47.826064 ], [ 38.254395, 47.546872 ], [ 38.221436, 47.103784 ], [ 37.424927, 47.023334 ], [ 36.757507, 46.700319 ], [ 35.823669, 46.647551 ], [ 34.961243, 46.274834 ], [ 35.018921, 45.652448 ], [ 35.507812, 45.410020 ], [ 36.529541, 45.471688 ], [ 36.334534, 45.114238 ], [ 35.238647, 44.941473 ], [ 33.881836, 44.363133 ], [ 33.750000, 44.410240 ], [ 33.530273, 44.490628 ], [ 33.530273, 44.999767 ], [ 33.546753, 45.036656 ], [ 33.530273, 45.040537 ], [ 33.530273, 45.832627 ], [ 33.587952, 45.851760 ], [ 33.530273, 45.897655 ], [ 33.530273, 49.066668 ], [ 39.891357, 49.066668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.075378, 43.554520 ], [ 40.921326, 43.383094 ], [ 42.393494, 43.221190 ], [ 43.755798, 42.740961 ], [ 43.928833, 42.555104 ], [ 44.535828, 42.712714 ], [ 45.000000, 42.609706 ], [ 45.219727, 42.559150 ], [ 45.219727, 41.411836 ], [ 45.000000, 41.267485 ], [ 44.969788, 41.248903 ], [ 43.580017, 41.093842 ], [ 42.618713, 41.584634 ], [ 41.553040, 41.537366 ], [ 41.701355, 41.963575 ], [ 41.451416, 42.646081 ], [ 40.874634, 43.014689 ], [ 40.319824, 43.129052 ], [ 39.954529, 43.436966 ], [ 40.075378, 43.554520 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.167236, 42.041134 ], [ 36.911316, 41.335576 ], [ 38.229675, 40.979898 ], [ 38.345032, 40.948788 ], [ 38.583984, 40.979898 ], [ 39.512329, 41.104191 ], [ 40.372009, 41.015138 ], [ 41.553040, 41.537366 ], [ 42.618713, 41.584634 ], [ 43.580017, 41.093842 ], [ 43.634949, 40.979898 ], [ 43.714600, 40.813809 ], [ 33.530273, 40.813809 ], [ 33.530273, 42.020733 ], [ 33.750000, 42.022773 ], [ 35.167236, 42.041134 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.969788, 41.248903 ], [ 45.000000, 41.213788 ], [ 45.178528, 40.986118 ], [ 45.219727, 40.967456 ], [ 45.219727, 40.813809 ], [ 43.714600, 40.813809 ], [ 43.634949, 40.979898 ], [ 43.580017, 41.093842 ], [ 44.969788, 41.248903 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, 41.411836 ], [ 45.219727, 40.967456 ], [ 45.178528, 40.986118 ], [ 45.000000, 41.213788 ], [ 44.969788, 41.248903 ], [ 45.000000, 41.267485 ], [ 45.216980, 41.411836 ], [ 45.219727, 41.411836 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 45.219727, 55.899956 ], [ 45.219727, 48.777913 ], [ 39.674377, 48.777913 ], [ 39.674377, 48.785152 ], [ 39.781494, 48.922499 ], [ 40.078125, 49.309008 ], [ 40.067139, 49.601811 ], [ 38.594971, 49.926472 ], [ 38.009949, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.625671, 50.226124 ], [ 35.354004, 50.578004 ], [ 35.375977, 50.774682 ], [ 35.021667, 51.208604 ], [ 34.222412, 51.256758 ], [ 34.140015, 51.566827 ], [ 34.389954, 51.769540 ], [ 33.750000, 52.335339 ], [ 33.530273, 52.315195 ], [ 33.530273, 55.899956 ], [ 45.219727, 55.899956 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 33.750000, 52.335339 ], [ 34.389954, 51.769540 ], [ 34.140015, 51.566827 ], [ 34.222412, 51.256758 ], [ 35.021667, 51.208604 ], [ 35.375977, 50.774682 ], [ 35.354004, 50.578004 ], [ 36.625671, 50.226124 ], [ 37.391968, 50.384005 ], [ 38.009949, 49.915862 ], [ 38.594971, 49.926472 ], [ 40.067139, 49.601811 ], [ 40.078125, 49.309008 ], [ 39.781494, 48.922499 ], [ 39.674377, 48.785152 ], [ 39.674377, 48.777913 ], [ 33.530273, 48.777913 ], [ 33.530273, 52.315195 ], [ 33.750000, 52.335339 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 45.219727, 61.710706 ], [ 45.219727, 55.652798 ], [ 33.530273, 55.652798 ], [ 33.530273, 61.710706 ], [ 45.219727, 61.710706 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 45.219727, 66.600676 ], [ 45.219727, 61.501734 ], [ 33.530273, 61.501734 ], [ 33.530273, 66.479304 ], [ 33.750000, 66.381560 ], [ 34.812927, 65.900532 ], [ 34.876099, 65.436577 ], [ 34.942017, 64.414735 ], [ 36.230164, 64.110602 ], [ 37.010193, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.537781, 64.764759 ], [ 37.174988, 65.143806 ], [ 39.591980, 64.521279 ], [ 40.435181, 64.764759 ], [ 39.762268, 65.497020 ], [ 42.091370, 66.477112 ], [ 43.014221, 66.418945 ], [ 43.948059, 66.069318 ], [ 44.324341, 66.513260 ], [ 44.398499, 66.600676 ], [ 45.219727, 66.600676 ] ] ], [ [ [ 40.718079, 66.600676 ], [ 40.534058, 66.513260 ], [ 40.014954, 66.266856 ], [ 38.380737, 66.000150 ], [ 35.378723, 66.513260 ], [ 34.862366, 66.600676 ], [ 40.718079, 66.600676 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 33.530273, 66.693218 ], [ 33.530273, 69.392883 ], [ 33.750000, 69.311529 ], [ 33.774719, 69.301823 ], [ 36.513062, 69.063657 ], [ 40.289612, 67.933397 ], [ 41.058655, 67.458082 ], [ 41.124573, 66.791909 ], [ 40.534058, 66.513260 ], [ 40.350037, 66.425537 ], [ 35.895081, 66.425537 ], [ 35.378723, 66.513260 ], [ 33.917542, 66.760501 ], [ 33.750000, 66.731223 ], [ 33.530273, 66.693218 ] ] ], [ [ [ 45.000000, 68.394124 ], [ 45.219727, 68.368826 ], [ 45.219727, 66.425537 ], [ 44.247437, 66.425537 ], [ 44.324341, 66.513260 ], [ 44.530334, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.950932 ], [ 43.450928, 68.571424 ], [ 45.000000, 68.394124 ] ] ], [ [ [ 41.967773, 66.425537 ], [ 42.091370, 66.477112 ], [ 42.904358, 66.425537 ], [ 41.967773, 66.425537 ] ] ], [ [ [ 33.530273, 66.479304 ], [ 33.648376, 66.425537 ], [ 33.530273, 66.425537 ], [ 33.530273, 66.479304 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 45.219727, 80.625138 ], [ 45.219727, 80.584786 ], [ 45.000000, 80.587930 ], [ 44.846191, 80.590176 ], [ 45.000000, 80.604535 ], [ 45.219727, 80.625138 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 18 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Madagascar", "sov_a3": "MDG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Madagascar", "adm0_a3": "MDG", "geou_dif": 0, "geounit": "Madagascar", "gu_a3": "MDG", "su_dif": 0, "subunit": "Madagascar", "su_a3": "MDG", "brk_diff": 0, "name": "Madagascar", "name_long": "Madagascar", "brk_a3": "MDG", "brk_name": "Madagascar", "abbrev": "Mad.", "postal": "MG", "formal_en": "Republic of Madagascar", "name_sort": "Madagascar", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 20653556, "gdp_md_est": 20130, "pop_year": -99, "lastcensus": 1993, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MG", "iso_a3": "MDG", "iso_n3": "450", "un_a3": "450", "wb_a2": "MG", "wb_a3": "MDG", "woe_id": -99, "adm0_a3_is": "MDG", "adm0_a3_us": "MDG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.142090, -21.739091 ], [ 48.076172, -21.943046 ], [ 47.930603, -22.390714 ], [ 47.546082, -23.780318 ], [ 47.095642, -24.941238 ], [ 46.279907, -25.177602 ], [ 45.409241, -25.599425 ], [ 45.000000, -25.418470 ], [ 44.832458, -25.344026 ], [ 44.780273, -25.321684 ], [ 44.780273, -21.739091 ], [ 48.142090, -21.739091 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 17 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Madagascar", "sov_a3": "MDG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Madagascar", "adm0_a3": "MDG", "geou_dif": 0, "geounit": "Madagascar", "gu_a3": "MDG", "su_dif": 0, "subunit": "Madagascar", "su_a3": "MDG", "brk_diff": 0, "name": "Madagascar", "name_long": "Madagascar", "brk_a3": "MDG", "brk_name": "Madagascar", "abbrev": "Mad.", "postal": "MG", "formal_en": "Republic of Madagascar", "name_sort": "Madagascar", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 20653556, "gdp_md_est": 20130, "pop_year": -99, "lastcensus": 1993, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MG", "iso_a3": "MDG", "iso_n3": "450", "un_a3": "450", "wb_a2": "MG", "wb_a3": "MDG", "woe_id": -99, "adm0_a3_is": "MDG", "adm0_a3_us": "MDG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.194031, -12.039321 ], [ 49.542847, -12.468760 ], [ 49.806519, -12.894812 ], [ 50.056458, -13.555222 ], [ 50.215759, -14.756291 ], [ 50.473938, -15.225889 ], [ 50.375061, -15.705019 ], [ 50.199280, -15.998295 ], [ 49.858704, -15.413967 ], [ 49.671936, -15.707663 ], [ 49.861450, -16.449256 ], [ 49.773560, -16.872890 ], [ 49.496155, -17.104043 ], [ 49.432983, -17.952606 ], [ 49.040222, -19.116624 ], [ 48.545837, -20.496492 ], [ 48.076172, -21.943046 ], [ 48.010254, -22.146708 ], [ 44.780273, -22.146708 ], [ 44.780273, -16.190937 ], [ 44.942322, -16.177749 ], [ 45.000000, -16.156645 ], [ 45.502625, -15.971892 ], [ 45.870667, -15.792254 ], [ 46.310120, -15.779039 ], [ 46.881409, -15.209988 ], [ 47.702637, -14.594216 ], [ 48.004761, -14.088629 ], [ 47.867432, -13.662001 ], [ 48.293152, -13.782069 ], [ 48.842468, -13.087504 ], [ 48.861694, -12.487532 ], [ 49.194031, -12.039321 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.780273, 8.784654 ], [ 45.000000, 8.705929 ], [ 46.947327, 7.999397 ], [ 47.787781, 8.004837 ], [ 45.000000, 5.041699 ], [ 44.961548, 5.003394 ], [ 44.780273, 4.997922 ], [ 44.780273, 8.784654 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "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": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.941345, 11.393879 ], [ 48.938599, 11.178402 ], [ 48.935852, 10.984335 ], [ 48.935852, 9.451771 ], [ 48.485413, 8.838937 ], [ 47.787781, 8.004837 ], [ 46.947327, 7.999397 ], [ 45.000000, 8.705929 ], [ 44.780273, 8.784654 ], [ 44.780273, 10.487812 ], [ 45.000000, 10.547221 ], [ 45.554810, 10.698394 ], [ 46.645203, 10.817120 ], [ 47.524109, 11.129897 ], [ 47.908630, 11.178402 ], [ 48.021240, 11.194568 ], [ 48.378296, 11.377724 ], [ 48.674927, 11.393879 ], [ 48.941345, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.075439, 11.393879 ], [ 51.042480, 11.178402 ], [ 51.045227, 10.641713 ], [ 50.833740, 10.279789 ], [ 50.550842, 9.199715 ], [ 50.070190, 8.083704 ], [ 49.452209, 6.806444 ], [ 48.592529, 5.339848 ], [ 47.738342, 4.220421 ], [ 46.562805, 2.858006 ], [ 45.563049, 2.045769 ], [ 45.000000, 1.672431 ], [ 44.780273, 1.526919 ], [ 44.780273, 4.997922 ], [ 44.961548, 5.003394 ], [ 45.000000, 5.041699 ], [ 47.787781, 8.004837 ], [ 48.485413, 8.838937 ], [ 48.935852, 9.451771 ], [ 48.938599, 11.178402 ], [ 48.941345, 11.393879 ], [ 51.075439, 11.393879 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 55.571594, 22.146708 ], [ 55.664978, 22.001628 ], [ 55.645752, 21.943046 ], [ 54.997559, 20.001741 ], [ 51.998291, 19.002400 ], [ 49.114380, 18.617616 ], [ 48.183289, 18.166730 ], [ 47.466431, 17.117168 ], [ 46.999512, 16.951724 ], [ 46.749573, 17.285087 ], [ 46.365051, 17.235252 ], [ 45.398254, 17.334908 ], [ 45.214233, 17.434511 ], [ 45.000000, 17.429270 ], [ 44.780273, 17.426649 ], [ 44.780273, 22.146708 ], [ 55.571594, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Yemen", "sov_a3": "YEM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Yemen", "adm0_a3": "YEM", "geou_dif": 0, "geounit": "Yemen", "gu_a3": "YEM", "su_dif": 0, "subunit": "Yemen", "su_a3": "YEM", "brk_diff": 0, "name": "Yemen", "name_long": "Yemen", "brk_a3": "YEM", "brk_name": "Yemen", "abbrev": "Yem.", "postal": "YE", "formal_en": "Republic of Yemen", "name_sort": "Yemen, Rep.", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 23822783, "gdp_md_est": 55280, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "YE", "iso_a3": "YEM", "iso_n3": "887", "un_a3": "887", "wb_a2": "RY", "wb_a3": "YEM", "woe_id": -99, "adm0_a3_is": "YEM", "adm0_a3_us": "YEM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.998291, 19.002400 ], [ 52.781067, 17.350638 ], [ 53.107910, 16.651981 ], [ 52.382812, 16.383391 ], [ 52.190552, 15.940202 ], [ 52.165833, 15.599229 ], [ 51.171570, 15.175530 ], [ 49.573059, 14.711135 ], [ 48.677673, 14.003367 ], [ 48.238220, 13.950061 ], [ 47.938843, 14.008696 ], [ 47.353821, 13.592600 ], [ 46.716614, 13.400307 ], [ 45.876160, 13.349537 ], [ 45.623474, 13.293411 ], [ 45.403748, 13.028642 ], [ 45.142822, 12.956383 ], [ 45.000000, 12.718047 ], [ 44.989014, 12.701971 ], [ 44.780273, 12.710009 ], [ 44.780273, 17.426649 ], [ 45.000000, 17.429270 ], [ 45.214233, 17.434511 ], [ 45.398254, 17.334908 ], [ 46.365051, 17.235252 ], [ 46.749573, 17.285087 ], [ 46.999512, 16.951724 ], [ 47.466431, 17.117168 ], [ 48.183289, 18.166730 ], [ 49.114380, 18.617616 ], [ 51.998291, 19.002400 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Oman", "sov_a3": "OMN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Oman", "adm0_a3": "OMN", "geou_dif": 0, "geounit": "Oman", "gu_a3": "OMN", "su_dif": 0, "subunit": "Oman", "su_a3": "OMN", "brk_diff": 0, "name": "Oman", "name_long": "Oman", "brk_a3": "OMN", "brk_name": "Oman", "abbrev": "Oman", "postal": "OM", "formal_en": "Sultanate of Oman", "name_sort": "Oman", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3418085, "gdp_md_est": 66980, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "OM", "iso_a3": "OMN", "iso_n3": "512", "un_a3": "512", "wb_a2": "OM", "wb_a3": "OMN", "woe_id": -99, "adm0_a3_is": "OMN", "adm0_a3_us": "OMN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, 22.146708 ], [ 56.469727, 18.049256 ], [ 56.282959, 17.876817 ], [ 56.250000, 17.876817 ], [ 55.659485, 17.884659 ], [ 55.269470, 17.633552 ], [ 55.272217, 17.230005 ], [ 54.788818, 16.951724 ], [ 54.236755, 17.046281 ], [ 53.569336, 16.709863 ], [ 53.107910, 16.651981 ], [ 51.998291, 19.002400 ], [ 54.997559, 20.001741 ], [ 55.645752, 21.943046 ], [ 55.664978, 22.001628 ], [ 55.571594, 22.146708 ], [ 56.469727, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "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": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.946838, 11.412726 ], [ 48.941345, 11.396572 ], [ 48.938599, 11.178402 ], [ 48.935852, 10.984335 ], [ 48.935852, 10.962764 ], [ 47.057190, 10.962764 ], [ 47.524109, 11.129897 ], [ 47.908630, 11.178402 ], [ 48.021240, 11.194568 ], [ 48.378296, 11.377724 ], [ 48.946838, 11.412726 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.111145, 12.025889 ], [ 51.133118, 11.749059 ], [ 51.042480, 11.178402 ], [ 51.042480, 10.962764 ], [ 48.935852, 10.962764 ], [ 48.938599, 11.178402 ], [ 48.941345, 11.396572 ], [ 48.946838, 11.412726 ], [ 49.265442, 11.431571 ], [ 49.726868, 11.579597 ], [ 50.256958, 11.681825 ], [ 50.729370, 12.023203 ], [ 51.111145, 12.025889 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.557068, 32.138409 ], [ 47.683411, 31.952162 ], [ 47.848206, 31.709476 ], [ 47.683411, 30.987028 ], [ 48.002014, 30.987028 ], [ 48.013000, 30.453409 ], [ 48.567810, 29.928755 ], [ 47.971802, 29.976349 ], [ 47.301636, 30.059586 ], [ 46.568298, 29.099377 ], [ 45.000000, 29.166552 ], [ 44.780273, 29.176145 ], [ 44.780273, 32.138409 ], [ 47.557068, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, 32.138409 ], [ 56.469727, 27.139813 ], [ 56.250000, 27.088473 ], [ 55.722656, 26.966142 ], [ 54.714661, 26.482866 ], [ 53.492432, 26.814266 ], [ 52.481689, 27.581329 ], [ 51.520386, 27.865789 ], [ 50.850220, 28.815800 ], [ 50.114136, 30.149877 ], [ 49.575806, 29.985866 ], [ 48.938599, 30.318359 ], [ 48.567810, 29.928755 ], [ 48.013000, 30.453409 ], [ 48.002014, 30.987028 ], [ 47.683411, 30.987028 ], [ 47.848206, 31.709476 ], [ 47.683411, 31.952162 ], [ 47.557068, 32.138409 ], [ 56.469727, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Kuwait", "sov_a3": "KWT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kuwait", "adm0_a3": "KWT", "geou_dif": 0, "geounit": "Kuwait", "gu_a3": "KWT", "su_dif": 0, "subunit": "Kuwait", "su_a3": "KWT", "brk_diff": 0, "name": "Kuwait", "name_long": "Kuwait", "brk_a3": "KWT", "brk_name": "Kuwait", "abbrev": "Kwt.", "postal": "KW", "formal_en": "State of Kuwait", "name_sort": "Kuwait", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 2691158, "gdp_md_est": 149100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "KW", "iso_a3": "KWT", "iso_n3": "414", "un_a3": "414", "wb_a2": "KW", "wb_a3": "KWT", "woe_id": -99, "adm0_a3_is": "KWT", "adm0_a3_us": "KWT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.301636, 30.059586 ], [ 47.971802, 29.976349 ], [ 48.180542, 29.535230 ], [ 48.092651, 29.307956 ], [ 48.414001, 28.553164 ], [ 47.708130, 28.526622 ], [ 47.458191, 29.003336 ], [ 46.568298, 29.099377 ], [ 47.301636, 30.059586 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 44.780273, 29.176145 ], [ 45.000000, 29.166552 ], [ 46.568298, 29.099377 ], [ 47.458191, 29.003336 ], [ 47.708130, 28.526622 ], [ 48.414001, 28.553164 ], [ 48.806763, 27.690824 ], [ 49.298401, 27.461976 ], [ 49.468689, 27.110479 ], [ 50.149841, 26.691637 ], [ 50.210266, 26.278640 ], [ 50.111389, 25.945697 ], [ 50.237732, 25.609333 ], [ 50.526123, 25.329132 ], [ 50.657959, 25.000994 ], [ 50.809021, 24.756808 ], [ 51.111145, 24.557116 ], [ 51.388550, 24.629541 ], [ 51.578064, 24.246965 ], [ 51.616516, 24.016362 ], [ 51.998291, 23.001380 ], [ 55.005798, 22.497332 ], [ 55.206299, 22.710323 ], [ 55.664978, 22.001628 ], [ 55.645752, 21.943046 ], [ 55.577087, 21.739091 ], [ 44.780273, 21.739091 ], [ 44.780273, 29.176145 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Qatar", "sov_a3": "QAT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Qatar", "adm0_a3": "QAT", "geou_dif": 0, "geounit": "Qatar", "gu_a3": "QAT", "su_dif": 0, "subunit": "Qatar", "su_a3": "QAT", "brk_diff": 0, "name": "Qatar", "name_long": "Qatar", "brk_a3": "QAT", "brk_name": "Qatar", "abbrev": "Qatar", "postal": "QA", "formal_en": "State of Qatar", "name_sort": "Qatar", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 833285, "gdp_md_est": 91330, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "QA", "iso_a3": "QAT", "iso_n3": "634", "un_a3": "634", "wb_a2": "QA", "wb_a3": "QAT", "woe_id": -99, "adm0_a3_is": "QAT", "adm0_a3_us": "QAT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.284180, 26.115986 ], [ 51.589050, 25.802364 ], [ 51.605530, 25.217366 ], [ 51.388550, 24.629541 ], [ 51.111145, 24.557116 ], [ 50.809021, 24.756808 ], [ 50.743103, 25.482951 ], [ 51.012268, 26.007424 ], [ 51.284180, 26.115986 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "United Arab Emirates", "sov_a3": "ARE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Arab Emirates", "adm0_a3": "ARE", "geou_dif": 0, "geounit": "United Arab Emirates", "gu_a3": "ARE", "su_dif": 0, "subunit": "United Arab Emirates", "su_a3": "ARE", "brk_diff": 0, "name": "United Arab Emirates", "name_long": "United Arab Emirates", "brk_a3": "ARE", "brk_name": "United Arab Emirates", "abbrev": "U.A.E.", "postal": "AE", "formal_en": "United Arab Emirates", "name_sort": "United Arab Emirates", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 4798491, "gdp_md_est": 184300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AE", "iso_a3": "ARE", "iso_n3": "784", "un_a3": "784", "wb_a2": "AE", "wb_a3": "ARE", "woe_id": -99, "adm0_a3_is": "ARE", "adm0_a3_us": "ARE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 20, "long_len": 20, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.068726, 26.056783 ], [ 56.250000, 25.735581 ], [ 56.260986, 25.715786 ], [ 56.395569, 24.926295 ], [ 56.250000, 24.923804 ], [ 55.884705, 24.921313 ], [ 55.802307, 24.272005 ], [ 55.980835, 24.131715 ], [ 55.527649, 23.936055 ], [ 55.524902, 23.526218 ], [ 55.233765, 23.112575 ], [ 55.206299, 22.710323 ], [ 55.005798, 22.497332 ], [ 51.998291, 23.001380 ], [ 51.616516, 24.016362 ], [ 51.578064, 24.246965 ], [ 51.756592, 24.294537 ], [ 51.792297, 24.021379 ], [ 52.575073, 24.179331 ], [ 53.401794, 24.151766 ], [ 54.006042, 24.124195 ], [ 54.692688, 24.799202 ], [ 55.437012, 25.440794 ], [ 56.068726, 26.056783 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Oman", "sov_a3": "OMN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Oman", "adm0_a3": "OMN", "geou_dif": 0, "geounit": "Oman", "gu_a3": "OMN", "su_dif": 0, "subunit": "Oman", "su_a3": "OMN", "brk_diff": 0, "name": "Oman", "name_long": "Oman", "brk_a3": "OMN", "brk_name": "Oman", "abbrev": "Oman", "postal": "OM", "formal_en": "Sultanate of Oman", "name_sort": "Oman", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3418085, "gdp_md_est": 66980, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "OM", "iso_a3": "OMN", "iso_n3": "512", "un_a3": "512", "wb_a2": "OM", "wb_a3": "OMN", "woe_id": -99, "adm0_a3_is": "OMN", "adm0_a3_us": "OMN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.395569, 24.926295 ], [ 56.469727, 24.814161 ], [ 56.469727, 21.739091 ], [ 55.577087, 21.739091 ], [ 55.645752, 21.943046 ], [ 55.664978, 22.001628 ], [ 55.206299, 22.710323 ], [ 55.233765, 23.112575 ], [ 55.524902, 23.526218 ], [ 55.527649, 23.936055 ], [ 55.980835, 24.131715 ], [ 55.802307, 24.272005 ], [ 55.884705, 24.921313 ], [ 56.250000, 24.923804 ], [ 56.395569, 24.926295 ] ] ], [ [ [ 56.359863, 26.396790 ], [ 56.469727, 26.320498 ], [ 56.469727, 26.241693 ], [ 56.390076, 25.896291 ], [ 56.260986, 25.715786 ], [ 56.250000, 25.735581 ], [ 56.068726, 26.056783 ], [ 56.250000, 26.266325 ], [ 56.359863, 26.396790 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.595764, 41.145570 ], [ 46.499634, 41.064857 ], [ 45.961304, 41.124884 ], [ 45.906372, 41.145570 ], [ 46.595764, 41.145570 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.780273, 39.724089 ], [ 44.791260, 39.713525 ], [ 44.780273, 39.709300 ], [ 44.780273, 39.724089 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.780273, 37.158128 ], [ 45.000000, 36.754290 ], [ 45.420227, 35.978006 ], [ 46.073914, 35.679610 ], [ 46.150818, 35.095193 ], [ 45.648193, 34.748383 ], [ 45.414734, 33.968420 ], [ 46.106873, 33.017876 ], [ 47.334595, 32.470378 ], [ 47.683411, 31.952162 ], [ 47.809753, 31.765537 ], [ 44.780273, 31.765537 ], [ 44.780273, 37.158128 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.052185, 41.145570 ], [ 45.178528, 40.986118 ], [ 45.189514, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.357056, 40.561808 ], [ 45.889893, 40.218733 ], [ 45.609741, 39.901309 ], [ 46.032715, 39.628961 ], [ 46.483154, 39.465885 ], [ 46.505127, 38.771216 ], [ 46.142578, 38.741231 ], [ 45.733337, 39.321550 ], [ 45.738831, 39.474365 ], [ 45.296631, 39.472245 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.713525 ], [ 44.780273, 39.724089 ], [ 44.780273, 41.145570 ], [ 45.052185, 41.145570 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 49.207764, 41.145570 ], [ 49.325867, 40.979898 ], [ 49.617004, 40.574326 ], [ 50.083923, 40.526327 ], [ 50.391541, 40.258569 ], [ 49.567566, 40.176775 ], [ 49.394531, 39.400122 ], [ 49.221497, 39.051185 ], [ 48.856201, 38.816171 ], [ 48.880920, 38.322266 ], [ 48.633728, 38.270532 ], [ 48.010254, 38.794768 ], [ 48.353577, 39.289671 ], [ 48.059692, 39.582407 ], [ 47.683411, 39.510398 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.465885 ], [ 46.032715, 39.628961 ], [ 45.609741, 39.901309 ], [ 45.889893, 40.218733 ], [ 45.357056, 40.561808 ], [ 45.560303, 40.813809 ], [ 45.189514, 40.979898 ], [ 45.178528, 40.986118 ], [ 45.052185, 41.145570 ], [ 45.906372, 41.145570 ], [ 45.961304, 41.124884 ], [ 46.499634, 41.064857 ], [ 46.595764, 41.145570 ], [ 49.207764, 41.145570 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.472245 ], [ 45.738831, 39.474365 ], [ 45.733337, 39.321550 ], [ 46.142578, 38.741231 ], [ 45.455933, 38.876067 ], [ 45.000000, 39.293923 ], [ 44.950562, 39.336422 ], [ 44.791260, 39.713525 ], [ 45.000000, 39.740986 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.791260, 39.713525 ], [ 44.950562, 39.336422 ], [ 45.000000, 39.293923 ], [ 45.455933, 38.876067 ], [ 46.142578, 38.741231 ], [ 46.505127, 38.771216 ], [ 47.683411, 39.510398 ], [ 48.059692, 39.582407 ], [ 48.353577, 39.289671 ], [ 48.010254, 38.794768 ], [ 48.633728, 38.270532 ], [ 48.880920, 38.322266 ], [ 49.199524, 37.583766 ], [ 50.147095, 37.376705 ], [ 50.841980, 36.873029 ], [ 52.261963, 36.701458 ], [ 53.824768, 36.965255 ], [ 53.920898, 37.199706 ], [ 54.799805, 37.394164 ], [ 55.511169, 37.965854 ], [ 56.178589, 37.935533 ], [ 56.250000, 37.965854 ], [ 56.469727, 38.058905 ], [ 56.469727, 31.765537 ], [ 47.809753, 31.765537 ], [ 47.683411, 31.952162 ], [ 47.334595, 32.470378 ], [ 46.106873, 33.017876 ], [ 45.414734, 33.968420 ], [ 45.648193, 34.748383 ], [ 46.150818, 35.095193 ], [ 46.073914, 35.679610 ], [ 45.420227, 35.978006 ], [ 45.000000, 36.754290 ], [ 44.780273, 37.158128 ], [ 44.780273, 39.709300 ], [ 44.791260, 39.713525 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.469727, 41.145570 ], [ 56.469727, 38.058905 ], [ 56.250000, 37.965854 ], [ 56.178589, 37.935533 ], [ 55.511169, 37.965854 ], [ 54.799805, 37.394164 ], [ 53.920898, 37.199706 ], [ 53.734131, 37.907367 ], [ 53.879700, 38.953001 ], [ 53.099670, 39.291797 ], [ 53.355103, 39.977120 ], [ 52.693176, 40.033924 ], [ 52.912903, 40.878218 ], [ 53.857727, 40.632714 ], [ 54.736633, 40.952937 ], [ 54.700928, 40.979898 ], [ 54.500427, 41.145570 ], [ 56.469727, 41.145570 ] ] ], [ [ [ 52.814026, 41.145570 ], [ 52.814026, 41.137296 ], [ 52.808533, 41.145570 ], [ 52.814026, 41.145570 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 46.977539, 49.066668 ], [ 46.867676, 48.922499 ], [ 46.463928, 48.394562 ], [ 47.312622, 47.717154 ], [ 48.056946, 47.744864 ], [ 48.694153, 47.075734 ], [ 48.592529, 46.562637 ], [ 49.100647, 46.399988 ], [ 48.644714, 45.807743 ], [ 47.675171, 45.642848 ], [ 46.680908, 44.610023 ], [ 47.590027, 43.661911 ], [ 47.491150, 42.988576 ], [ 48.584290, 41.810220 ], [ 47.985535, 41.407716 ], [ 47.815247, 41.151774 ], [ 47.373047, 41.219986 ], [ 46.683655, 41.828642 ], [ 46.403503, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.469666, 42.504503 ], [ 45.000000, 42.609706 ], [ 44.780273, 42.658202 ], [ 44.780273, 49.066668 ], [ 46.977539, 49.066668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.780273, 42.658202 ], [ 45.000000, 42.609706 ], [ 45.469666, 42.504503 ], [ 45.774536, 42.094146 ], [ 46.403503, 41.861379 ], [ 46.145325, 41.724181 ], [ 46.636963, 41.182788 ], [ 46.499634, 41.064857 ], [ 45.961304, 41.124884 ], [ 45.216980, 41.411836 ], [ 45.000000, 41.267485 ], [ 44.969788, 41.248903 ], [ 44.780273, 41.228249 ], [ 44.780273, 42.658202 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, 49.066668 ], [ 56.469727, 45.121991 ], [ 56.250000, 45.071581 ], [ 55.928650, 44.995883 ], [ 55.967102, 41.308761 ], [ 55.453491, 41.261291 ], [ 54.753113, 42.045213 ], [ 54.077454, 42.326062 ], [ 52.943115, 42.116561 ], [ 52.500916, 41.783601 ], [ 52.445984, 42.028894 ], [ 52.690430, 42.445755 ], [ 52.500916, 42.793385 ], [ 51.341858, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.336609, 44.284537 ], [ 50.303650, 44.610023 ], [ 51.275940, 44.516093 ], [ 51.314392, 45.247821 ], [ 52.165833, 45.410020 ], [ 53.039246, 45.259422 ], [ 53.220520, 46.234953 ], [ 53.041992, 46.854557 ], [ 52.039490, 46.805700 ], [ 51.190796, 47.049540 ], [ 50.031738, 46.609828 ], [ 49.100647, 46.399988 ], [ 48.592529, 46.562637 ], [ 48.694153, 47.075734 ], [ 48.056946, 47.744864 ], [ 47.312622, 47.717154 ], [ 46.463928, 48.394562 ], [ 46.867676, 48.922499 ], [ 46.977539, 49.066668 ], [ 56.469727, 49.066668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, 45.121991 ], [ 56.469727, 41.314950 ], [ 56.250000, 41.312887 ], [ 55.967102, 41.308761 ], [ 55.928650, 44.995883 ], [ 56.250000, 45.071581 ], [ 56.469727, 45.121991 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.969788, 41.248903 ], [ 45.000000, 41.213788 ], [ 45.178528, 40.986118 ], [ 45.189514, 40.979898 ], [ 45.554810, 40.813809 ], [ 44.780273, 40.813809 ], [ 44.780273, 41.228249 ], [ 44.969788, 41.248903 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.403503, 41.861379 ], [ 46.683655, 41.828642 ], [ 47.373047, 41.219986 ], [ 47.815247, 41.151774 ], [ 47.985535, 41.407716 ], [ 48.584290, 41.810220 ], [ 49.108887, 41.283999 ], [ 49.325867, 40.979898 ], [ 49.446716, 40.813809 ], [ 45.554810, 40.813809 ], [ 45.189514, 40.979898 ], [ 45.178528, 40.986118 ], [ 45.000000, 41.213788 ], [ 44.969788, 41.248903 ], [ 45.000000, 41.267485 ], [ 45.216980, 41.411836 ], [ 45.961304, 41.124884 ], [ 46.499634, 41.064857 ], [ 46.636963, 41.182788 ], [ 46.145325, 41.724181 ], [ 46.403503, 41.861379 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 52.912903, 40.878218 ], [ 53.154602, 40.813809 ], [ 52.896423, 40.813809 ], [ 52.912903, 40.878218 ] ] ], [ [ [ 54.753113, 42.045213 ], [ 55.453491, 41.261291 ], [ 55.967102, 41.308761 ], [ 56.250000, 41.312887 ], [ 56.469727, 41.314950 ], [ 56.469727, 40.813809 ], [ 54.357605, 40.813809 ], [ 54.736633, 40.952937 ], [ 54.700928, 40.979898 ], [ 54.006042, 41.551756 ], [ 53.720398, 42.124710 ], [ 52.915649, 41.869561 ], [ 52.814026, 41.137296 ], [ 52.500916, 41.783601 ], [ 52.943115, 42.116561 ], [ 54.077454, 42.326062 ], [ 54.753113, 42.045213 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 56.469727, 55.899956 ], [ 56.469727, 50.922082 ], [ 56.250000, 50.835432 ], [ 55.714417, 50.623331 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.765076, 51.692990 ], [ 48.699646, 50.605903 ], [ 48.576050, 49.875168 ], [ 47.548828, 50.455755 ], [ 46.749573, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.867676, 48.922499 ], [ 46.755066, 48.777913 ], [ 44.780273, 48.777913 ], [ 44.780273, 55.899956 ], [ 56.469727, 55.899956 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 52.327881, 51.720223 ], [ 54.530640, 51.027576 ], [ 55.714417, 50.623331 ], [ 56.250000, 50.835432 ], [ 56.469727, 50.922082 ], [ 56.469727, 48.777913 ], [ 46.755066, 48.777913 ], [ 46.867676, 48.922499 ], [ 47.043457, 49.152970 ], [ 46.749573, 49.357334 ], [ 47.548828, 50.455755 ], [ 48.576050, 49.875168 ], [ 48.699646, 50.605903 ], [ 50.765076, 51.692990 ], [ 52.327881, 51.720223 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 56.469727, 61.710706 ], [ 56.469727, 55.652798 ], [ 44.780273, 55.652798 ], [ 44.780273, 61.710706 ], [ 56.469727, 61.710706 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 56.469727, 66.600676 ], [ 56.469727, 61.501734 ], [ 44.780273, 61.501734 ], [ 44.780273, 66.600676 ], [ 56.469727, 66.600676 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 53.714905, 68.857574 ], [ 54.470215, 68.808978 ], [ 53.484192, 68.202172 ], [ 54.725647, 68.097907 ], [ 55.442505, 68.439589 ], [ 56.250000, 68.450689 ], [ 56.469727, 68.454724 ], [ 56.469727, 66.425537 ], [ 44.780273, 66.425537 ], [ 44.780273, 68.419393 ], [ 45.000000, 68.394124 ], [ 46.249695, 68.250057 ], [ 46.820984, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.010646 ], [ 46.348572, 66.668211 ], [ 47.892151, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.226746, 67.999341 ], [ 53.714905, 68.857574 ] ] ], [ [ [ 56.469727, 70.685421 ], [ 56.469727, 70.651781 ], [ 55.621033, 70.685421 ], [ 56.469727, 70.685421 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 56.469727, 74.079925 ], [ 56.469727, 73.021790 ], [ 56.250000, 72.888146 ], [ 55.417786, 72.371600 ], [ 55.621033, 71.541439 ], [ 56.250000, 71.276122 ], [ 56.469727, 71.182439 ], [ 56.469727, 70.651781 ], [ 56.250000, 70.660878 ], [ 53.676453, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.600037, 71.475234 ], [ 51.454468, 72.015489 ], [ 52.476196, 72.229647 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.506165, 73.750437 ], [ 54.228516, 74.019543 ], [ 54.393311, 74.079925 ], [ 56.469727, 74.079925 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 56.469727, 75.281694 ], [ 56.469727, 73.958939 ], [ 54.066467, 73.958939 ], [ 54.228516, 74.019543 ], [ 55.901184, 74.628014 ], [ 55.629272, 75.081497 ], [ 56.250000, 75.229267 ], [ 56.469727, 75.281694 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 50.037231, 80.918894 ], [ 51.520386, 80.700003 ], [ 51.135864, 80.547420 ], [ 49.792786, 80.415707 ], [ 48.891907, 80.339958 ], [ 48.754578, 80.175902 ], [ 47.584534, 80.010518 ], [ 46.502380, 80.247344 ], [ 47.070923, 80.559591 ], [ 45.000000, 80.587930 ], [ 44.846191, 80.590176 ], [ 45.000000, 80.604535 ], [ 46.799011, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.095154, 80.753998 ], [ 50.037231, 80.918894 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Oman", "sov_a3": "OMN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Oman", "adm0_a3": "OMN", "geou_dif": 0, "geounit": "Oman", "gu_a3": "OMN", "su_dif": 0, "subunit": "Oman", "su_a3": "OMN", "brk_diff": 0, "name": "Oman", "name_long": "Oman", "brk_a3": "OMN", "brk_name": "Oman", "abbrev": "Oman", "postal": "OM", "formal_en": "Sultanate of Oman", "name_sort": "Oman", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3418085, "gdp_md_est": 66980, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "OM", "iso_a3": "OMN", "iso_n3": "512", "un_a3": "512", "wb_a2": "OM", "wb_a3": "OMN", "woe_id": -99, "adm0_a3_is": "OMN", "adm0_a3_us": "OMN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.705200, 22.146708 ], [ 59.578857, 21.943046 ], [ 59.441528, 21.716128 ], [ 59.282227, 21.435173 ], [ 58.859253, 21.115249 ], [ 58.485718, 20.429587 ], [ 58.032532, 20.483628 ], [ 57.823792, 20.244160 ], [ 57.664490, 19.738269 ], [ 57.788086, 19.069906 ], [ 57.691956, 18.945258 ], [ 57.233276, 18.950454 ], [ 56.607056, 18.575965 ], [ 56.510925, 18.088423 ], [ 56.282959, 17.876817 ], [ 56.250000, 17.876817 ], [ 56.030273, 17.879431 ], [ 56.030273, 22.146708 ], [ 59.705200, 22.146708 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 60.867004, 32.138409 ], [ 60.891724, 31.952162 ], [ 60.941162, 31.548112 ], [ 61.699219, 31.381779 ], [ 61.778870, 30.737114 ], [ 60.872498, 29.831114 ], [ 61.366882, 29.305561 ], [ 61.770630, 28.700225 ], [ 62.726440, 28.260844 ], [ 62.753906, 27.379084 ], [ 63.231812, 27.217999 ], [ 63.314209, 26.757873 ], [ 61.872253, 26.241693 ], [ 61.495972, 25.080624 ], [ 59.614563, 25.381254 ], [ 58.524170, 25.611810 ], [ 57.395325, 25.740529 ], [ 56.969604, 26.966142 ], [ 56.491699, 27.144701 ], [ 56.250000, 27.088473 ], [ 56.030273, 27.037110 ], [ 56.030273, 32.138409 ], [ 60.867004, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "United Arab Emirates", "sov_a3": "ARE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Arab Emirates", "adm0_a3": "ARE", "geou_dif": 0, "geounit": "United Arab Emirates", "gu_a3": "ARE", "su_dif": 0, "subunit": "United Arab Emirates", "su_a3": "ARE", "brk_diff": 0, "name": "United Arab Emirates", "name_long": "United Arab Emirates", "brk_a3": "ARE", "brk_name": "United Arab Emirates", "abbrev": "U.A.E.", "postal": "AE", "formal_en": "United Arab Emirates", "name_sort": "United Arab Emirates", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 4798491, "gdp_md_est": 184300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AE", "iso_a3": "ARE", "iso_n3": "784", "un_a3": "784", "wb_a2": "AE", "wb_a3": "ARE", "woe_id": -99, "adm0_a3_is": "ARE", "adm0_a3_us": "ARE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 20, "long_len": 20, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.068726, 26.056783 ], [ 56.250000, 25.735581 ], [ 56.260986, 25.715786 ], [ 56.395569, 24.926295 ], [ 56.250000, 24.923804 ], [ 56.030273, 24.923804 ], [ 56.030273, 26.017298 ], [ 56.068726, 26.056783 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Oman", "sov_a3": "OMN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Oman", "adm0_a3": "OMN", "geou_dif": 0, "geounit": "Oman", "gu_a3": "OMN", "su_dif": 0, "subunit": "Oman", "su_a3": "OMN", "brk_diff": 0, "name": "Oman", "name_long": "Oman", "brk_a3": "OMN", "brk_name": "Oman", "abbrev": "Oman", "postal": "OM", "formal_en": "Sultanate of Oman", "name_sort": "Oman", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3418085, "gdp_md_est": 66980, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "OM", "iso_a3": "OMN", "iso_n3": "512", "un_a3": "512", "wb_a2": "OM", "wb_a3": "OMN", "woe_id": -99, "adm0_a3_is": "OMN", "adm0_a3_us": "OMN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.395569, 24.926295 ], [ 56.843262, 24.241956 ], [ 57.400818, 23.880815 ], [ 58.136902, 23.750154 ], [ 58.727417, 23.566505 ], [ 59.177856, 22.993795 ], [ 59.449768, 22.662175 ], [ 59.806824, 22.535391 ], [ 59.804077, 22.311967 ], [ 59.578857, 21.943046 ], [ 59.455261, 21.739091 ], [ 56.030273, 21.739091 ], [ 56.030273, 24.923804 ], [ 56.250000, 24.923804 ], [ 56.395569, 24.926295 ] ] ], [ [ [ 56.359863, 26.396790 ], [ 56.483459, 26.310651 ], [ 56.390076, 25.896291 ], [ 56.260986, 25.715786 ], [ 56.250000, 25.735581 ], [ 56.068726, 26.056783 ], [ 56.250000, 26.266325 ], [ 56.359863, 26.396790 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 32.138409 ], [ 67.719727, 31.398191 ], [ 67.681274, 31.304368 ], [ 67.500000, 31.304368 ], [ 66.936951, 31.306715 ], [ 66.379395, 30.739475 ], [ 66.346436, 29.888281 ], [ 65.044556, 29.473079 ], [ 64.349670, 29.561513 ], [ 64.146423, 29.341481 ], [ 63.547668, 29.470688 ], [ 62.547913, 29.319931 ], [ 60.872498, 29.831114 ], [ 61.778870, 30.737114 ], [ 61.699219, 31.381779 ], [ 60.941162, 31.548112 ], [ 60.891724, 31.952162 ], [ 60.867004, 32.138409 ], [ 67.719727, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 31.398191 ], [ 67.719727, 23.850674 ], [ 67.500000, 23.926013 ], [ 67.442322, 23.946096 ], [ 67.142944, 24.664490 ], [ 66.371155, 25.425912 ], [ 64.528198, 25.237243 ], [ 62.904968, 25.219851 ], [ 61.495972, 25.080624 ], [ 61.872253, 26.241693 ], [ 63.314209, 26.757873 ], [ 63.231812, 27.217999 ], [ 62.753906, 27.379084 ], [ 62.726440, 28.260844 ], [ 61.770630, 28.700225 ], [ 61.366882, 29.305561 ], [ 60.872498, 29.831114 ], [ 62.547913, 29.319931 ], [ 63.547668, 29.470688 ], [ 64.146423, 29.341481 ], [ 64.349670, 29.561513 ], [ 65.044556, 29.473079 ], [ 66.346436, 29.888281 ], [ 66.379395, 30.739475 ], [ 66.936951, 31.306715 ], [ 67.500000, 31.304368 ], [ 67.681274, 31.304368 ], [ 67.719727, 31.398191 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 41.145570 ], [ 67.719727, 41.143501 ], [ 67.609863, 41.145570 ], [ 67.719727, 41.145570 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.609863, 41.145570 ], [ 67.719727, 41.143501 ], [ 67.719727, 39.580290 ], [ 67.700500, 39.582407 ], [ 67.500000, 39.238635 ], [ 67.439575, 39.140712 ], [ 67.500000, 39.121537 ], [ 67.719727, 39.051185 ], [ 67.719727, 37.177826 ], [ 67.500000, 37.239075 ], [ 67.074280, 37.357059 ], [ 66.516724, 37.363609 ], [ 66.544189, 37.976680 ], [ 65.214844, 38.404101 ], [ 64.168396, 38.893171 ], [ 63.517456, 39.364032 ], [ 62.372131, 40.054950 ], [ 61.932678, 40.979898 ], [ 61.880493, 41.085562 ], [ 61.767883, 41.145570 ], [ 67.609863, 41.145570 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.618042, 38.121593 ], [ 57.329407, 38.030786 ], [ 58.433533, 37.522797 ], [ 59.232788, 37.413800 ], [ 60.375366, 36.529502 ], [ 61.122437, 36.491973 ], [ 61.210327, 35.650601 ], [ 60.801086, 34.404644 ], [ 60.526428, 33.678640 ], [ 60.963135, 33.529948 ], [ 60.534668, 32.983324 ], [ 60.861511, 32.184911 ], [ 60.891724, 31.952162 ], [ 60.913696, 31.765537 ], [ 56.030273, 31.765537 ], [ 56.030273, 37.942031 ], [ 56.178589, 37.935533 ], [ 56.250000, 37.965854 ], [ 56.618042, 38.121593 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.767883, 41.145570 ], [ 61.880493, 41.085562 ], [ 61.932678, 40.979898 ], [ 62.372131, 40.054950 ], [ 63.517456, 39.364032 ], [ 64.168396, 38.893171 ], [ 65.214844, 38.404101 ], [ 66.544189, 37.976680 ], [ 66.516724, 37.363609 ], [ 66.217346, 37.394164 ], [ 65.744934, 37.662081 ], [ 65.588379, 37.306829 ], [ 64.745178, 37.112146 ], [ 64.544678, 36.312912 ], [ 63.981628, 36.009117 ], [ 63.193359, 35.857892 ], [ 62.984619, 35.404722 ], [ 62.229309, 35.272532 ], [ 61.210327, 35.650601 ], [ 61.122437, 36.491973 ], [ 60.375366, 36.529502 ], [ 59.232788, 37.413800 ], [ 58.433533, 37.522797 ], [ 57.329407, 38.030786 ], [ 56.618042, 38.121593 ], [ 56.250000, 37.965854 ], [ 56.178589, 37.935533 ], [ 56.030273, 37.942031 ], [ 56.030273, 41.145570 ], [ 61.767883, 41.145570 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.700500, 39.582407 ], [ 67.719727, 39.580290 ], [ 67.719727, 39.051185 ], [ 67.500000, 39.121537 ], [ 67.439575, 39.140712 ], [ 67.500000, 39.238635 ], [ 67.700500, 39.582407 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 65.744934, 37.662081 ], [ 66.217346, 37.394164 ], [ 66.516724, 37.363609 ], [ 67.074280, 37.357059 ], [ 67.500000, 37.239075 ], [ 67.719727, 37.177826 ], [ 67.719727, 31.765537 ], [ 60.913696, 31.765537 ], [ 60.891724, 31.952162 ], [ 60.861511, 32.184911 ], [ 60.534668, 32.983324 ], [ 60.963135, 33.529948 ], [ 60.526428, 33.678640 ], [ 60.801086, 34.404644 ], [ 61.210327, 35.650601 ], [ 62.229309, 35.272532 ], [ 62.984619, 35.404722 ], [ 63.193359, 35.857892 ], [ 63.981628, 36.009117 ], [ 64.544678, 36.312912 ], [ 64.745178, 37.112146 ], [ 65.588379, 37.306829 ], [ 65.744934, 37.662081 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 49.066668 ], [ 67.719727, 41.143501 ], [ 67.500000, 41.149706 ], [ 66.711731, 41.170384 ], [ 66.508484, 41.988077 ], [ 66.022339, 41.996243 ], [ 66.096497, 42.998621 ], [ 64.898987, 43.729429 ], [ 63.185120, 43.651975 ], [ 62.012329, 43.504737 ], [ 61.056519, 44.406316 ], [ 60.238037, 44.785734 ], [ 58.502197, 45.587134 ], [ 56.250000, 45.071581 ], [ 56.030273, 45.021127 ], [ 56.030273, 49.066668 ], [ 67.719727, 49.066668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.502197, 45.587134 ], [ 60.238037, 44.785734 ], [ 61.056519, 44.406316 ], [ 62.012329, 43.504737 ], [ 63.185120, 43.651975 ], [ 64.898987, 43.729429 ], [ 66.096497, 42.998621 ], [ 66.022339, 41.996243 ], [ 66.508484, 41.988077 ], [ 66.711731, 41.170384 ], [ 67.500000, 41.149706 ], [ 67.719727, 41.143501 ], [ 67.719727, 40.813809 ], [ 62.012329, 40.813809 ], [ 61.932678, 40.979898 ], [ 61.880493, 41.085562 ], [ 61.545410, 41.267485 ], [ 60.463257, 41.222052 ], [ 60.081482, 41.426253 ], [ 59.974365, 42.224450 ], [ 58.628540, 42.753063 ], [ 57.785339, 42.171546 ], [ 56.931152, 41.826595 ], [ 57.095947, 41.323201 ], [ 56.250000, 41.312887 ], [ 56.030273, 41.310824 ], [ 56.030273, 45.021127 ], [ 56.250000, 45.071581 ], [ 58.502197, 45.587134 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.628540, 42.753063 ], [ 59.974365, 42.224450 ], [ 60.081482, 41.426253 ], [ 60.463257, 41.222052 ], [ 61.545410, 41.267485 ], [ 61.880493, 41.085562 ], [ 61.932678, 40.979898 ], [ 62.012329, 40.813809 ], [ 56.030273, 40.813809 ], [ 56.030273, 41.310824 ], [ 56.250000, 41.312887 ], [ 57.095947, 41.323201 ], [ 56.931152, 41.826595 ], [ 57.785339, 42.171546 ], [ 58.628540, 42.753063 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 67.719727, 55.899956 ], [ 67.719727, 54.905041 ], [ 67.500000, 54.873446 ], [ 65.665283, 54.602301 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.976868, 53.665798 ], [ 61.699219, 52.980070 ], [ 60.737915, 52.721322 ], [ 60.924683, 52.447640 ], [ 59.966125, 51.961192 ], [ 61.586609, 51.273944 ], [ 61.336670, 50.800727 ], [ 59.930420, 50.842370 ], [ 59.642029, 50.546599 ], [ 58.362122, 51.063839 ], [ 56.777344, 51.044848 ], [ 56.250000, 50.835432 ], [ 56.030273, 50.746884 ], [ 56.030273, 55.899956 ], [ 67.719727, 55.899956 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 54.905041 ], [ 67.719727, 48.777913 ], [ 56.030273, 48.777913 ], [ 56.030273, 50.746884 ], [ 56.250000, 50.835432 ], [ 56.777344, 51.044848 ], [ 58.362122, 51.063839 ], [ 59.642029, 50.546599 ], [ 59.930420, 50.842370 ], [ 61.336670, 50.800727 ], [ 61.586609, 51.273944 ], [ 59.966125, 51.961192 ], [ 60.924683, 52.447640 ], [ 60.737915, 52.721322 ], [ 61.699219, 52.980070 ], [ 60.976868, 53.665798 ], [ 61.435547, 54.007769 ], [ 65.176392, 54.354956 ], [ 65.665283, 54.602301 ], [ 67.500000, 54.873446 ], [ 67.719727, 54.905041 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 67.719727, 61.710706 ], [ 67.719727, 55.652798 ], [ 56.030273, 55.652798 ], [ 56.030273, 61.710706 ], [ 67.719727, 61.710706 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 67.719727, 66.600676 ], [ 67.719727, 61.501734 ], [ 56.030273, 61.501734 ], [ 56.030273, 66.600676 ], [ 67.719727, 66.600676 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 67.719727, 68.347554 ], [ 67.719727, 66.425537 ], [ 56.030273, 66.425537 ], [ 56.030273, 68.447662 ], [ 56.250000, 68.450689 ], [ 57.315674, 68.466824 ], [ 58.801575, 68.881337 ], [ 59.941406, 68.278537 ], [ 61.075745, 68.941620 ], [ 60.029297, 69.520108 ], [ 60.548401, 69.850032 ], [ 63.503723, 69.547958 ], [ 64.888000, 69.235711 ], [ 67.500000, 68.417373 ], [ 67.719727, 68.347554 ] ] ], [ [ [ 57.299194, 70.685421 ], [ 56.944885, 70.633573 ], [ 56.030273, 70.669972 ], [ 56.030273, 70.685421 ], [ 57.299194, 70.685421 ] ] ], [ [ [ 67.719727, 69.390950 ], [ 67.500000, 69.408345 ], [ 66.928711, 69.454662 ], [ 67.258301, 69.929358 ], [ 66.791382, 70.612614 ], [ 66.739197, 70.685421 ], [ 67.719727, 70.685421 ], [ 67.719727, 69.390950 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 67.719727, 71.537960 ], [ 67.719727, 70.539543 ], [ 66.840820, 70.539543 ], [ 66.791382, 70.612614 ], [ 66.722717, 70.709027 ], [ 66.692505, 71.029464 ], [ 67.500000, 71.429803 ], [ 67.719727, 71.537960 ] ] ], [ [ [ 56.030273, 72.752667 ], [ 56.030273, 74.079925 ], [ 58.117676, 74.079925 ], [ 58.024292, 74.019543 ], [ 56.986084, 73.333373 ], [ 56.250000, 72.888146 ], [ 56.030273, 72.752667 ] ] ], [ [ [ 56.030273, 71.369355 ], [ 56.250000, 71.276122 ], [ 57.535400, 70.720820 ], [ 56.944885, 70.633573 ], [ 56.250000, 70.660878 ], [ 56.030273, 70.669972 ], [ 56.030273, 71.369355 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 67.719727, 76.890745 ], [ 67.719727, 76.170559 ], [ 67.500000, 76.140327 ], [ 64.635315, 75.737979 ], [ 61.581116, 75.261444 ], [ 58.474731, 74.309582 ], [ 58.024292, 74.019543 ], [ 57.930908, 73.958939 ], [ 56.030273, 73.958939 ], [ 56.030273, 75.177360 ], [ 56.250000, 75.229267 ], [ 57.867737, 75.609532 ], [ 61.169128, 76.252386 ], [ 64.497986, 76.439112 ], [ 66.209106, 76.810143 ], [ 66.673279, 76.840816 ], [ 67.420349, 76.890745 ], [ 67.719727, 76.890745 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 67.719727, 76.910665 ], [ 67.719727, 76.790701 ], [ 66.121216, 76.790701 ], [ 66.209106, 76.810143 ], [ 66.673279, 76.840816 ], [ 67.500000, 76.896351 ], [ 67.719727, 76.910665 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 21 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 3, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "French Southern and Antarctic Lands", "adm0_a3": "ATF", "geou_dif": 0, "geounit": "French Southern and Antarctic Lands", "gu_a3": "ATF", "su_dif": 0, "subunit": "French Southern and Antarctic Lands", "su_a3": "ATF", "brk_diff": 0, "name": "Fr. S. Antarctic Lands", "name_long": "French Southern and Antarctic Lands", "brk_a3": "ATF", "brk_name": "Fr. S. and Antarctic Lands", "abbrev": "Fr. S.A.L.", "postal": "TF", "formal_en": "Territory of the French Southern and Antarctic Lands", "note_adm0": "Fr.", "name_sort": "French Southern and Antarctic Lands", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 140, "gdp_md_est": 16, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TF", "iso_a3": "ATF", "iso_n3": "260", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATF", "adm0_a3_us": "ATF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Seven seas (open ocean)", "region_un": "Seven seas (open ocean)", "subregion": "Seven seas (open ocean)", "region_wb": "Sub-Saharan Africa", "name_len": 22, "long_len": 35, "abbrev_len": 10, "tiny": 2, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.246826, -48.777913 ], [ 69.543457, -48.922499 ], [ 69.579163, -48.938739 ], [ 70.523987, -49.064869 ], [ 70.559692, -49.253465 ], [ 70.279541, -49.708496 ], [ 68.744202, -49.774170 ], [ 68.719482, -49.240914 ], [ 68.832092, -48.922499 ], [ 68.865051, -48.828566 ], [ 68.884277, -48.777913 ], [ 69.246826, -48.777913 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 20 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 3, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "French Southern and Antarctic Lands", "adm0_a3": "ATF", "geou_dif": 0, "geounit": "French Southern and Antarctic Lands", "gu_a3": "ATF", "su_dif": 0, "subunit": "French Southern and Antarctic Lands", "su_a3": "ATF", "brk_diff": 0, "name": "Fr. S. Antarctic Lands", "name_long": "French Southern and Antarctic Lands", "brk_a3": "ATF", "brk_name": "Fr. S. and Antarctic Lands", "abbrev": "Fr. S.A.L.", "postal": "TF", "formal_en": "Territory of the French Southern and Antarctic Lands", "note_adm0": "Fr.", "name_sort": "French Southern and Antarctic Lands", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 140, "gdp_md_est": 16, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TF", "iso_a3": "ATF", "iso_n3": "260", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATF", "adm0_a3_us": "ATF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Seven seas (open ocean)", "region_un": "Seven seas (open ocean)", "subregion": "Seven seas (open ocean)", "region_wb": "Sub-Saharan Africa", "name_len": 22, "long_len": 35, "abbrev_len": 10, "tiny": 2, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.933716, -48.623832 ], [ 69.543457, -48.922499 ], [ 69.579163, -48.938739 ], [ 70.523987, -49.066668 ], [ 68.782654, -49.066668 ], [ 68.832092, -48.922499 ], [ 68.865051, -48.828566 ], [ 68.933716, -48.623832 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.969727, 11.393879 ], [ 78.969727, 9.690106 ], [ 78.884583, 9.546583 ], [ 78.969727, 9.457190 ], [ 78.969727, 9.148198 ], [ 78.750000, 9.080400 ], [ 78.277588, 8.933914 ], [ 77.939758, 8.254983 ], [ 77.538757, 7.966758 ], [ 76.591187, 8.901353 ], [ 76.129761, 10.301408 ], [ 75.794678, 11.178402 ], [ 75.745239, 11.310401 ], [ 75.682068, 11.393879 ], [ 78.969727, 11.393879 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.969727, 22.146708 ], [ 78.969727, 10.962764 ], [ 75.877075, 10.962764 ], [ 75.794678, 11.178402 ], [ 75.745239, 11.310401 ], [ 75.393677, 11.781325 ], [ 74.863586, 12.742158 ], [ 74.616394, 13.992706 ], [ 74.443359, 14.618136 ], [ 73.531494, 15.993015 ], [ 73.119507, 17.929089 ], [ 72.820129, 19.210022 ], [ 72.822876, 20.421865 ], [ 72.627869, 21.358455 ], [ 71.174927, 20.758682 ], [ 70.469055, 20.879343 ], [ 69.320984, 21.943046 ], [ 69.161682, 22.090730 ], [ 69.238586, 22.146708 ], [ 78.969727, 22.146708 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.293518, 32.138409 ], [ 69.312744, 31.952162 ], [ 69.315491, 31.903210 ], [ 68.925476, 31.620644 ], [ 68.554688, 31.714149 ], [ 67.791138, 31.583215 ], [ 67.681274, 31.304368 ], [ 67.280273, 31.304368 ], [ 67.280273, 32.138409 ], [ 69.293518, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.061340, 32.138409 ], [ 74.786682, 31.952162 ], [ 74.404907, 31.693119 ], [ 74.418640, 30.979964 ], [ 73.449097, 29.978729 ], [ 72.822876, 28.962492 ], [ 71.776428, 27.914340 ], [ 70.614624, 27.989551 ], [ 69.513245, 26.941660 ], [ 70.166931, 26.492699 ], [ 70.282288, 25.723210 ], [ 70.842590, 25.217366 ], [ 71.043091, 24.357105 ], [ 68.840332, 24.359608 ], [ 68.175659, 23.692320 ], [ 67.500000, 23.926013 ], [ 67.442322, 23.946096 ], [ 67.280273, 24.339589 ], [ 67.280273, 31.304368 ], [ 67.681274, 31.304368 ], [ 67.791138, 31.583215 ], [ 68.554688, 31.714149 ], [ 68.925476, 31.620644 ], [ 69.315491, 31.903210 ], [ 69.312744, 31.952162 ], [ 69.293518, 32.138409 ], [ 75.061340, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.579712, 32.138409 ], [ 78.626404, 31.952162 ], [ 78.736267, 31.517679 ], [ 78.750000, 31.510654 ], [ 78.969727, 31.367709 ], [ 78.969727, 21.739091 ], [ 69.540710, 21.739091 ], [ 69.161682, 22.090730 ], [ 69.642334, 22.451649 ], [ 69.348450, 22.844540 ], [ 68.175659, 23.692320 ], [ 68.840332, 24.359608 ], [ 71.043091, 24.357105 ], [ 70.842590, 25.217366 ], [ 70.282288, 25.723210 ], [ 70.166931, 26.492699 ], [ 69.513245, 26.941660 ], [ 70.614624, 27.989551 ], [ 71.776428, 27.914340 ], [ 72.822876, 28.962492 ], [ 73.449097, 29.978729 ], [ 74.418640, 30.979964 ], [ 74.404907, 31.693119 ], [ 74.786682, 31.952162 ], [ 75.061340, 32.138409 ], [ 78.579712, 32.138409 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 78.969727, 32.138409 ], [ 78.969727, 31.367709 ], [ 78.750000, 31.510654 ], [ 78.736267, 31.517679 ], [ 78.626404, 31.952162 ], [ 78.579712, 32.138409 ], [ 78.969727, 32.138409 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.922729, 41.145570 ], [ 68.821106, 40.979898 ], [ 68.631592, 40.670223 ], [ 68.258057, 40.663973 ], [ 68.074036, 40.979898 ], [ 67.983398, 41.137296 ], [ 67.609863, 41.145570 ], [ 68.922729, 41.145570 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 72.427368, 41.145570 ], [ 72.798157, 40.979898 ], [ 73.053589, 40.867834 ], [ 71.773682, 40.147389 ], [ 71.012878, 40.245992 ], [ 70.600891, 40.218733 ], [ 70.458069, 40.497092 ], [ 70.664062, 40.961234 ], [ 69.329224, 40.728527 ], [ 69.010620, 40.086477 ], [ 68.535461, 39.533703 ], [ 67.700500, 39.582407 ], [ 67.500000, 39.238635 ], [ 67.439575, 39.140712 ], [ 67.500000, 39.121537 ], [ 68.175659, 38.901721 ], [ 68.389893, 38.158317 ], [ 67.829590, 37.147182 ], [ 67.280273, 37.300275 ], [ 67.280273, 41.145570 ], [ 67.609863, 41.145570 ], [ 67.983398, 41.137296 ], [ 68.074036, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.670223 ], [ 68.821106, 40.979898 ], [ 68.922729, 41.145570 ], [ 72.427368, 41.145570 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.755737, 41.145570 ], [ 76.904297, 41.066928 ], [ 76.852112, 40.979898 ], [ 76.525269, 40.428133 ], [ 75.465088, 40.563895 ], [ 74.775696, 40.367474 ], [ 73.819885, 39.894987 ], [ 73.959961, 39.660685 ], [ 73.674316, 39.431950 ], [ 71.784668, 39.281168 ], [ 70.548706, 39.605688 ], [ 69.463806, 39.527348 ], [ 69.557190, 40.103286 ], [ 70.647583, 39.937119 ], [ 71.012878, 40.245992 ], [ 71.773682, 40.147389 ], [ 73.053589, 40.867834 ], [ 72.798157, 40.979898 ], [ 72.427368, 41.145570 ], [ 77.755737, 41.145570 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.961234 ], [ 70.458069, 40.497092 ], [ 70.600891, 40.218733 ], [ 71.012878, 40.245992 ], [ 70.647583, 39.937119 ], [ 69.557190, 40.103286 ], [ 69.463806, 39.527348 ], [ 70.548706, 39.605688 ], [ 71.784668, 39.281168 ], [ 73.674316, 39.431950 ], [ 73.927002, 38.507341 ], [ 74.256592, 38.608286 ], [ 74.863586, 38.380422 ], [ 74.827881, 37.991834 ], [ 74.978943, 37.420345 ], [ 73.946228, 37.422526 ], [ 73.259583, 37.496652 ], [ 72.636108, 37.048601 ], [ 72.191162, 36.949892 ], [ 71.842346, 36.738884 ], [ 71.446838, 37.066136 ], [ 71.540222, 37.907367 ], [ 71.238098, 37.955027 ], [ 71.347961, 38.259750 ], [ 70.804138, 38.487995 ], [ 70.375671, 38.138877 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.590295 ], [ 69.518738, 37.609880 ], [ 69.194641, 37.151561 ], [ 68.856812, 37.346143 ], [ 68.134460, 37.024484 ], [ 67.829590, 37.147182 ], [ 68.389893, 38.158317 ], [ 68.175659, 38.901721 ], [ 67.500000, 39.121537 ], [ 67.439575, 39.140712 ], [ 67.500000, 39.238635 ], [ 67.700500, 39.582407 ], [ 68.535461, 39.533703 ], [ 69.010620, 40.086477 ], [ 69.329224, 40.728527 ], [ 70.664062, 40.961234 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.804138, 38.487995 ], [ 71.347961, 38.259750 ], [ 71.238098, 37.955027 ], [ 71.540222, 37.907367 ], [ 71.446838, 37.066136 ], [ 71.842346, 36.738884 ], [ 72.191162, 36.949892 ], [ 72.636108, 37.048601 ], [ 73.259583, 37.496652 ], [ 73.946228, 37.422526 ], [ 74.978943, 37.420345 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.022291 ], [ 74.067078, 36.837866 ], [ 72.919006, 36.721274 ], [ 71.845093, 36.511844 ], [ 71.260071, 36.075742 ], [ 71.496277, 35.650601 ], [ 71.611633, 35.153600 ], [ 71.114502, 34.734841 ], [ 71.155701, 34.350239 ], [ 70.881042, 33.988918 ], [ 69.927979, 34.020795 ], [ 70.323486, 33.360356 ], [ 69.686279, 33.107648 ], [ 69.260559, 32.502813 ], [ 69.312744, 31.952162 ], [ 69.315491, 31.903210 ], [ 69.125977, 31.765537 ], [ 67.280273, 31.765537 ], [ 67.280273, 37.300275 ], [ 67.829590, 37.147182 ], [ 68.134460, 37.024484 ], [ 68.856812, 37.346143 ], [ 69.194641, 37.151561 ], [ 69.518738, 37.609880 ], [ 70.114746, 37.590295 ], [ 70.268555, 37.735969 ], [ 70.375671, 38.138877 ], [ 70.804138, 38.487995 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.157471, 37.134045 ], [ 75.896301, 36.668419 ], [ 76.190186, 35.900175 ], [ 77.835388, 35.494220 ], [ 76.871338, 34.653545 ], [ 75.756226, 34.506557 ], [ 74.240112, 34.750640 ], [ 73.748474, 34.318487 ], [ 74.102783, 33.442901 ], [ 74.448853, 32.766491 ], [ 75.256348, 32.273200 ], [ 74.786682, 31.952162 ], [ 74.512024, 31.765537 ], [ 69.125977, 31.765537 ], [ 69.315491, 31.903210 ], [ 69.312744, 31.952162 ], [ 69.260559, 32.502813 ], [ 69.686279, 33.107648 ], [ 70.323486, 33.360356 ], [ 69.927979, 34.020795 ], [ 70.881042, 33.988918 ], [ 71.155701, 34.350239 ], [ 71.114502, 34.734841 ], [ 71.611633, 35.153600 ], [ 71.496277, 35.650601 ], [ 71.260071, 36.075742 ], [ 71.845093, 36.511844 ], [ 72.919006, 36.721274 ], [ 74.067078, 36.837866 ], [ 74.575195, 37.022291 ], [ 75.157471, 37.134045 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.835388, 35.494220 ], [ 78.750000, 34.502030 ], [ 78.912048, 34.323024 ], [ 78.810425, 33.507049 ], [ 78.969727, 33.302986 ], [ 78.969727, 32.523658 ], [ 78.750000, 32.565333 ], [ 78.456116, 32.618557 ], [ 78.626404, 31.952162 ], [ 78.673096, 31.765537 ], [ 74.512024, 31.765537 ], [ 74.786682, 31.952162 ], [ 75.256348, 32.273200 ], [ 74.448853, 32.766491 ], [ 74.102783, 33.442901 ], [ 73.748474, 34.318487 ], [ 74.240112, 34.750640 ], [ 75.756226, 34.506557 ], [ 76.871338, 34.653545 ], [ 77.835388, 35.494220 ] ] ] } } +, +{ "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": [ [ [ [ 78.969727, 33.302986 ], [ 78.810425, 33.507049 ], [ 78.912048, 34.323024 ], [ 78.750000, 34.502030 ], [ 77.835388, 35.494220 ], [ 76.190186, 35.900175 ], [ 75.896301, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.978943, 37.420345 ], [ 74.827881, 37.991834 ], [ 74.863586, 38.380422 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.507341 ], [ 73.674316, 39.431950 ], [ 73.959961, 39.660685 ], [ 73.819885, 39.894987 ], [ 74.775696, 40.367474 ], [ 75.465088, 40.563895 ], [ 76.525269, 40.428133 ], [ 76.852112, 40.979898 ], [ 76.904297, 41.066928 ], [ 77.755737, 41.145570 ], [ 78.969727, 41.145570 ], [ 78.969727, 33.302986 ] ] ], [ [ [ 78.969727, 32.523658 ], [ 78.969727, 31.765537 ], [ 78.673096, 31.765537 ], [ 78.626404, 31.952162 ], [ 78.456116, 32.618557 ], [ 78.750000, 32.565333 ], [ 78.969727, 32.523658 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.969727, 49.066668 ], [ 78.969727, 42.869925 ], [ 78.750000, 42.884015 ], [ 77.656860, 42.962453 ], [ 75.997925, 42.988576 ], [ 75.635376, 42.877977 ], [ 74.212646, 43.299197 ], [ 73.644104, 43.092961 ], [ 73.487549, 42.502478 ], [ 71.842346, 42.845765 ], [ 71.185913, 42.704641 ], [ 70.960693, 42.267147 ], [ 70.386658, 42.081917 ], [ 69.068298, 41.385052 ], [ 68.821106, 40.979898 ], [ 68.719482, 40.813809 ], [ 68.170166, 40.813809 ], [ 68.074036, 40.979898 ], [ 67.983398, 41.137296 ], [ 67.500000, 41.149706 ], [ 67.280273, 41.155910 ], [ 67.280273, 49.066668 ], [ 78.969727, 49.066668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.280273, 41.155910 ], [ 67.500000, 41.149706 ], [ 67.983398, 41.137296 ], [ 68.074036, 40.979898 ], [ 68.170166, 40.813809 ], [ 67.280273, 40.813809 ], [ 67.280273, 41.155910 ] ] ], [ [ [ 71.257324, 42.169511 ], [ 70.419617, 41.520917 ], [ 71.155701, 41.145570 ], [ 71.869812, 41.393294 ], [ 72.798157, 40.979898 ], [ 73.053589, 40.867834 ], [ 72.960205, 40.813809 ], [ 70.598145, 40.813809 ], [ 70.664062, 40.961234 ], [ 69.823608, 40.813809 ], [ 68.719482, 40.813809 ], [ 68.821106, 40.979898 ], [ 69.068298, 41.385052 ], [ 70.386658, 42.081917 ], [ 70.960693, 42.267147 ], [ 71.257324, 42.169511 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.212646, 43.299197 ], [ 75.635376, 42.877977 ], [ 75.997925, 42.988576 ], [ 77.656860, 42.962453 ], [ 78.750000, 42.884015 ], [ 78.969727, 42.869925 ], [ 78.969727, 41.730330 ], [ 78.750000, 41.654445 ], [ 78.541260, 41.582580 ], [ 78.186951, 41.186922 ], [ 76.904297, 41.066928 ], [ 76.852112, 40.979898 ], [ 76.753235, 40.813809 ], [ 72.960205, 40.813809 ], [ 73.053589, 40.867834 ], [ 72.798157, 40.979898 ], [ 71.869812, 41.393294 ], [ 71.155701, 41.145570 ], [ 70.419617, 41.520917 ], [ 71.257324, 42.169511 ], [ 70.960693, 42.267147 ], [ 71.185913, 42.704641 ], [ 71.842346, 42.845765 ], [ 73.487549, 42.502478 ], [ 73.644104, 43.092961 ], [ 74.212646, 43.299197 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.961234 ], [ 70.598145, 40.813809 ], [ 69.823608, 40.813809 ], [ 70.664062, 40.961234 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 78.969727, 41.730330 ], [ 78.969727, 40.813809 ], [ 76.753235, 40.813809 ], [ 76.852112, 40.979898 ], [ 76.904297, 41.066928 ], [ 78.186951, 41.186922 ], [ 78.541260, 41.582580 ], [ 78.750000, 41.654445 ], [ 78.969727, 41.730330 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 78.969727, 55.899956 ], [ 78.969727, 52.094695 ], [ 78.750000, 52.343730 ], [ 77.799683, 53.404620 ], [ 76.522522, 54.178512 ], [ 76.890564, 54.490782 ], [ 74.382935, 53.548467 ], [ 73.424377, 53.491314 ], [ 73.506775, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.177673, 54.133478 ], [ 70.864563, 55.171025 ], [ 69.065552, 55.385352 ], [ 68.167419, 54.971308 ], [ 67.500000, 54.873446 ], [ 67.280273, 54.840245 ], [ 67.280273, 55.899956 ], [ 78.969727, 55.899956 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.065552, 55.385352 ], [ 70.864563, 55.171025 ], [ 71.177673, 54.133478 ], [ 72.224121, 54.377358 ], [ 73.506775, 54.036812 ], [ 73.424377, 53.491314 ], [ 74.382935, 53.548467 ], [ 76.890564, 54.490782 ], [ 76.522522, 54.178512 ], [ 77.799683, 53.404620 ], [ 78.750000, 52.343730 ], [ 78.969727, 52.094695 ], [ 78.969727, 48.777913 ], [ 67.280273, 48.777913 ], [ 67.280273, 54.840245 ], [ 67.500000, 54.873446 ], [ 68.167419, 54.971308 ], [ 69.065552, 55.385352 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 78.969727, 61.710706 ], [ 78.969727, 55.652798 ], [ 67.280273, 55.652798 ], [ 67.280273, 61.710706 ], [ 78.969727, 61.710706 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 78.969727, 66.600676 ], [ 78.969727, 61.501734 ], [ 67.280273, 61.501734 ], [ 67.280273, 66.600676 ], [ 71.655579, 66.600676 ], [ 71.537476, 66.513260 ], [ 71.279297, 66.320965 ], [ 72.421875, 66.172719 ], [ 72.798157, 66.513260 ], [ 72.820129, 66.532956 ], [ 73.108521, 66.600676 ], [ 78.969727, 66.600676 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 72.655334, 70.685421 ], [ 72.691040, 70.612614 ], [ 72.789917, 70.391684 ], [ 72.564697, 69.021414 ], [ 73.666077, 68.408278 ], [ 73.237610, 67.740678 ], [ 71.537476, 66.513260 ], [ 71.419373, 66.425537 ], [ 67.280273, 66.425537 ], [ 67.280273, 68.487984 ], [ 67.500000, 68.417373 ], [ 68.510742, 68.092783 ], [ 69.178162, 68.616534 ], [ 68.161926, 69.144965 ], [ 68.134460, 69.357086 ], [ 67.500000, 69.408345 ], [ 67.280273, 69.426691 ], [ 67.280273, 70.685421 ], [ 72.655334, 70.685421 ] ] ], [ [ [ 78.969727, 66.425537 ], [ 72.699280, 66.425537 ], [ 72.798157, 66.513260 ], [ 72.820129, 66.532956 ], [ 73.918762, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.050354, 67.761477 ], [ 74.468079, 68.329305 ], [ 74.934998, 68.989925 ], [ 73.841858, 69.071507 ], [ 73.600159, 69.628422 ], [ 74.382935, 70.612614 ], [ 74.399414, 70.631752 ], [ 74.314270, 70.685421 ], [ 78.969727, 70.685421 ], [ 78.969727, 66.425537 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.847839, 71.409675 ], [ 72.468567, 71.090975 ], [ 72.691040, 70.612614 ], [ 72.723999, 70.539543 ], [ 67.280273, 70.539543 ], [ 67.280273, 71.321035 ], [ 67.500000, 71.429803 ], [ 68.538208, 71.934751 ], [ 69.194641, 72.843642 ], [ 69.938965, 73.040226 ] ] ], [ [ [ 75.682068, 72.300761 ], [ 75.286560, 71.335983 ], [ 76.357727, 71.153182 ], [ 75.901794, 71.874181 ], [ 77.574463, 72.267330 ], [ 78.750000, 72.297421 ], [ 78.969727, 72.303266 ], [ 78.969727, 70.539543 ], [ 74.322510, 70.539543 ], [ 74.382935, 70.612614 ], [ 74.399414, 70.631752 ], [ 73.100281, 71.447289 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.682068, 72.300761 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 68.244324, 76.890745 ], [ 68.332214, 76.840816 ], [ 68.851318, 76.544967 ], [ 68.178406, 76.234098 ], [ 67.500000, 76.140327 ], [ 67.280273, 76.109370 ], [ 67.280273, 76.881398 ], [ 67.420349, 76.890745 ], [ 68.244324, 76.890745 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 68.156433, 76.939868 ], [ 68.332214, 76.840816 ], [ 68.420105, 76.790701 ], [ 67.280273, 76.790701 ], [ 67.280273, 76.881398 ], [ 67.500000, 76.896351 ], [ 68.156433, 76.939868 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 79.859619, 11.393879 ], [ 79.859619, 11.178402 ], [ 79.856873, 10.358151 ], [ 79.337769, 10.309515 ], [ 78.884583, 9.546583 ], [ 79.189453, 9.218694 ], [ 78.750000, 9.080400 ], [ 78.530273, 9.012590 ], [ 78.530273, 11.393879 ], [ 79.859619, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sri Lanka", "sov_a3": "LKA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sri Lanka", "adm0_a3": "LKA", "geou_dif": 0, "geounit": "Sri Lanka", "gu_a3": "LKA", "su_dif": 0, "subunit": "Sri Lanka", "su_a3": "LKA", "brk_diff": 0, "name": "Sri Lanka", "name_long": "Sri Lanka", "brk_a3": "LKA", "brk_name": "Sri Lanka", "abbrev": "Sri L.", "postal": "LK", "formal_en": "Democratic Socialist Republic of Sri Lanka", "name_sort": "Sri Lanka", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 21324791, "gdp_md_est": 91870, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LK", "iso_a3": "LKA", "iso_n3": "144", "un_a3": "144", "wb_a2": "LK", "wb_a3": "LKA", "woe_id": -99, "adm0_a3_is": "LKA", "adm0_a3_us": "LKA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.145264, 9.825448 ], [ 80.837402, 9.270201 ], [ 81.301575, 8.564726 ], [ 81.787720, 7.523150 ], [ 81.636658, 6.481796 ], [ 81.216431, 6.197899 ], [ 80.345764, 5.968485 ], [ 79.870605, 6.765534 ], [ 79.694824, 8.203335 ], [ 80.145264, 9.825448 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.013977, 22.146708 ], [ 89.030457, 22.057642 ], [ 88.986511, 21.943046 ], [ 88.887634, 21.690609 ], [ 88.206482, 21.703369 ], [ 86.973267, 21.496519 ], [ 87.030945, 20.745840 ], [ 86.498108, 20.153942 ], [ 85.058899, 19.479540 ], [ 83.938293, 18.302381 ], [ 83.188477, 17.672811 ], [ 82.191467, 17.017394 ], [ 82.188721, 16.557227 ], [ 81.691589, 16.312232 ], [ 80.790710, 15.953407 ], [ 80.323792, 15.900584 ], [ 80.024414, 15.138416 ], [ 80.233154, 13.838080 ], [ 80.285339, 13.007234 ], [ 79.862366, 12.058123 ], [ 79.859619, 11.178402 ], [ 79.856873, 10.962764 ], [ 78.530273, 10.962764 ], [ 78.530273, 22.146708 ], [ 89.013977, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bangladesh", "sov_a3": "BGD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bangladesh", "adm0_a3": "BGD", "geou_dif": 0, "geounit": "Bangladesh", "gu_a3": "BGD", "su_dif": 0, "subunit": "Bangladesh", "su_a3": "BGD", "brk_diff": 0, "name": "Bangladesh", "name_long": "Bangladesh", "brk_a3": "BGD", "brk_name": "Bangladesh", "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "name_sort": "Bangladesh", "mapcolor7": 3, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 156050883, "gdp_md_est": 224000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BD", "iso_a3": "BGD", "iso_n3": "050", "un_a3": "050", "wb_a2": "BD", "wb_a3": "BGD", "woe_id": -99, "adm0_a3_is": "BGD", "adm0_a3_us": "BGD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.219727, 22.146708 ], [ 90.219727, 21.864048 ], [ 89.846191, 22.039822 ], [ 89.769287, 21.943046 ], [ 89.700623, 21.858950 ], [ 89.478149, 21.943046 ], [ 89.417725, 21.968519 ], [ 89.030457, 22.057642 ], [ 89.013977, 22.146708 ], [ 90.219727, 22.146708 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Nepal", "sov_a3": "NPL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nepal", "adm0_a3": "NPL", "geou_dif": 0, "geounit": "Nepal", "gu_a3": "NPL", "su_dif": 0, "subunit": "Nepal", "su_a3": "NPL", "brk_diff": 0, "name": "Nepal", "name_long": "Nepal", "brk_a3": "NPL", "brk_name": "Nepal", "abbrev": "Nepal", "postal": "NP", "formal_en": "Nepal", "name_sort": "Nepal", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 28563377, "gdp_md_est": 31080, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NP", "iso_a3": "NPL", "iso_n3": "524", "un_a3": "524", "wb_a2": "NP", "wb_a3": "NPL", "woe_id": -99, "adm0_a3_is": "NPL", "adm0_a3_us": "NPL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.524048, 30.424993 ], [ 82.326050, 30.116622 ], [ 83.336792, 29.465905 ], [ 83.897095, 29.322326 ], [ 84.232178, 28.842268 ], [ 85.009460, 28.644800 ], [ 85.822449, 28.205188 ], [ 86.954041, 27.974998 ], [ 88.118591, 27.877928 ], [ 88.041687, 27.447353 ], [ 88.173523, 26.811815 ], [ 88.058167, 26.416470 ], [ 87.225952, 26.399250 ], [ 86.022949, 26.632729 ], [ 85.251160, 26.728440 ], [ 84.674377, 27.235095 ], [ 83.303833, 27.366889 ], [ 81.999207, 27.926474 ], [ 81.057129, 28.417975 ], [ 80.087585, 28.796546 ], [ 80.474854, 29.730992 ], [ 81.109314, 30.185496 ], [ 81.524048, 30.424993 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.579712, 32.138409 ], [ 78.736267, 31.517679 ], [ 78.750000, 31.510654 ], [ 79.719543, 30.883369 ], [ 81.109314, 30.185496 ], [ 80.474854, 29.730992 ], [ 80.087585, 28.796546 ], [ 81.057129, 28.417975 ], [ 81.999207, 27.926474 ], [ 83.303833, 27.366889 ], [ 84.674377, 27.235095 ], [ 85.251160, 26.728440 ], [ 86.022949, 26.632729 ], [ 87.225952, 26.399250 ], [ 88.058167, 26.416470 ], [ 88.173523, 26.811815 ], [ 88.041687, 27.447353 ], [ 88.118591, 27.877928 ], [ 88.728333, 28.088943 ], [ 88.835449, 27.100699 ], [ 89.741821, 26.721080 ], [ 90.000000, 26.784847 ], [ 90.219727, 26.838776 ], [ 90.219727, 25.227305 ], [ 90.000000, 25.259601 ], [ 89.920349, 25.272020 ], [ 89.832458, 25.965453 ], [ 89.354553, 26.014829 ], [ 88.560791, 26.448443 ], [ 88.209229, 25.770214 ], [ 88.928833, 25.239727 ], [ 88.305359, 24.866503 ], [ 88.082886, 24.502145 ], [ 88.698120, 24.234442 ], [ 88.527832, 23.631944 ], [ 88.873901, 22.879971 ], [ 89.030457, 22.057642 ], [ 88.986511, 21.943046 ], [ 88.906860, 21.739091 ], [ 78.530273, 21.739091 ], [ 78.530273, 32.138409 ], [ 78.579712, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bhutan", "sov_a3": "BTN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bhutan", "adm0_a3": "BTN", "geou_dif": 0, "geounit": "Bhutan", "gu_a3": "BTN", "su_dif": 0, "subunit": "Bhutan", "su_a3": "BTN", "brk_diff": 0, "name": "Bhutan", "name_long": "Bhutan", "brk_a3": "BTN", "brk_name": "Bhutan", "abbrev": "Bhutan", "postal": "BT", "formal_en": "Kingdom of Bhutan", "name_sort": "Bhutan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 691141, "gdp_md_est": 3524, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BT", "iso_a3": "BTN", "iso_n3": "064", "un_a3": "064", "wb_a2": "BT", "wb_a3": "BTN", "woe_id": -99, "adm0_a3_is": "BTN", "adm0_a3_us": "BTN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.013733, 28.297126 ], [ 90.219727, 28.231810 ], [ 90.219727, 26.838776 ], [ 90.000000, 26.784847 ], [ 89.741821, 26.721080 ], [ 88.835449, 27.100699 ], [ 88.813477, 27.301011 ], [ 89.475403, 28.042895 ], [ 90.000000, 28.289870 ], [ 90.013733, 28.297126 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bangladesh", "sov_a3": "BGD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bangladesh", "adm0_a3": "BGD", "geou_dif": 0, "geounit": "Bangladesh", "gu_a3": "BGD", "su_dif": 0, "subunit": "Bangladesh", "su_a3": "BGD", "brk_diff": 0, "name": "Bangladesh", "name_long": "Bangladesh", "brk_a3": "BGD", "brk_name": "Bangladesh", "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "name_sort": "Bangladesh", "mapcolor7": 3, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 156050883, "gdp_md_est": 224000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BD", "iso_a3": "BGD", "iso_n3": "050", "un_a3": "050", "wb_a2": "BD", "wb_a3": "BGD", "woe_id": -99, "adm0_a3_is": "BGD", "adm0_a3_us": "BGD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.560791, 26.448443 ], [ 89.354553, 26.014829 ], [ 89.832458, 25.965453 ], [ 89.920349, 25.272020 ], [ 90.000000, 25.259601 ], [ 90.219727, 25.227305 ], [ 90.219727, 21.864048 ], [ 90.000000, 21.968519 ], [ 89.846191, 22.039822 ], [ 89.769287, 21.943046 ], [ 89.700623, 21.858950 ], [ 89.478149, 21.943046 ], [ 89.417725, 21.968519 ], [ 89.030457, 22.057642 ], [ 88.873901, 22.879971 ], [ 88.527832, 23.631944 ], [ 88.698120, 24.234442 ], [ 88.082886, 24.502145 ], [ 88.305359, 24.866503 ], [ 88.928833, 25.239727 ], [ 88.209229, 25.770214 ], [ 88.560791, 26.448443 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 90.219727, 32.138409 ], [ 90.219727, 28.231810 ], [ 90.013733, 28.297126 ], [ 90.000000, 28.289870 ], [ 89.475403, 28.042895 ], [ 88.813477, 27.301011 ], [ 88.728333, 28.088943 ], [ 88.118591, 27.877928 ], [ 86.954041, 27.974998 ], [ 85.822449, 28.205188 ], [ 85.009460, 28.644800 ], [ 84.232178, 28.842268 ], [ 83.897095, 29.322326 ], [ 83.336792, 29.465905 ], [ 82.326050, 30.116622 ], [ 81.524048, 30.424993 ], [ 81.109314, 30.185496 ], [ 79.719543, 30.883369 ], [ 78.750000, 31.510654 ], [ 78.736267, 31.517679 ], [ 78.579712, 32.138409 ], [ 90.219727, 32.138409 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 78.530273, 32.606989 ], [ 78.530273, 34.741612 ], [ 78.750000, 34.502030 ], [ 78.912048, 34.323024 ], [ 78.810425, 33.507049 ], [ 79.208679, 32.994843 ], [ 79.175720, 32.484280 ], [ 78.750000, 32.565333 ], [ 78.530273, 32.606989 ] ] ], [ [ [ 78.530273, 32.338200 ], [ 78.673096, 31.765537 ], [ 78.530273, 31.765537 ], [ 78.530273, 32.338200 ] ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 90.219727, 41.145570 ], [ 90.219727, 31.765537 ], [ 78.673096, 31.765537 ], [ 78.530273, 32.338200 ], [ 78.530273, 32.606989 ], [ 78.750000, 32.565333 ], [ 79.175720, 32.484280 ], [ 79.208679, 32.994843 ], [ 78.810425, 33.507049 ], [ 78.912048, 34.323024 ], [ 78.750000, 34.502030 ], [ 78.530273, 34.741612 ], [ 78.530273, 41.145570 ], [ 90.219727, 41.145570 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.187500, 49.066668 ], [ 87.022705, 48.922499 ], [ 86.596985, 48.549342 ], [ 85.767517, 48.456530 ], [ 85.718079, 47.454094 ], [ 85.163269, 47.002734 ], [ 83.180237, 47.331377 ], [ 82.457886, 45.540984 ], [ 81.947021, 45.317392 ], [ 79.963989, 44.918139 ], [ 80.864868, 43.181147 ], [ 80.178223, 42.920229 ], [ 80.257874, 42.350425 ], [ 79.642639, 42.498428 ], [ 79.140015, 42.857846 ], [ 78.750000, 42.884015 ], [ 78.530273, 42.900113 ], [ 78.530273, 49.066668 ], [ 87.187500, 49.066668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.530273, 42.900113 ], [ 78.750000, 42.884015 ], [ 79.140015, 42.857846 ], [ 79.642639, 42.498428 ], [ 80.257874, 42.350425 ], [ 80.117798, 42.124710 ], [ 78.750000, 41.654445 ], [ 78.541260, 41.582580 ], [ 78.530273, 41.568197 ], [ 78.530273, 42.900113 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.219727, 49.066668 ], [ 90.219727, 47.709762 ], [ 90.000000, 47.768868 ], [ 88.851929, 48.070738 ], [ 88.011475, 48.600225 ], [ 87.890625, 48.922499 ], [ 87.835693, 49.066668 ], [ 90.219727, 49.066668 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 87.835693, 49.066668 ], [ 87.890625, 48.922499 ], [ 88.011475, 48.600225 ], [ 88.851929, 48.070738 ], [ 90.000000, 47.768868 ], [ 90.219727, 47.709762 ], [ 90.219727, 40.813809 ], [ 78.530273, 40.813809 ], [ 78.530273, 41.568197 ], [ 78.541260, 41.582580 ], [ 78.750000, 41.654445 ], [ 80.117798, 42.124710 ], [ 80.257874, 42.350425 ], [ 80.178223, 42.920229 ], [ 80.864868, 43.181147 ], [ 79.963989, 44.918139 ], [ 81.947021, 45.317392 ], [ 82.457886, 45.540984 ], [ 83.180237, 47.331377 ], [ 85.163269, 47.002734 ], [ 85.718079, 47.454094 ], [ 85.767517, 48.456530 ], [ 86.596985, 48.549342 ], [ 87.022705, 48.922499 ], [ 87.187500, 49.066668 ], [ 87.835693, 49.066668 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 90.219727, 55.899956 ], [ 90.219727, 50.111772 ], [ 90.000000, 50.013034 ], [ 88.805237, 49.471694 ], [ 87.750549, 49.298263 ], [ 87.357788, 49.215803 ], [ 86.827698, 49.827353 ], [ 85.539551, 49.694285 ], [ 85.113831, 50.118817 ], [ 84.416199, 50.312146 ], [ 83.932800, 50.890907 ], [ 83.380737, 51.070743 ], [ 81.944275, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 78.750000, 52.343730 ], [ 78.530273, 52.593038 ], [ 78.530273, 55.899956 ], [ 90.219727, 55.899956 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.530273, 52.593038 ], [ 78.750000, 52.343730 ], [ 80.035400, 50.864911 ], [ 80.568237, 51.388923 ], [ 81.944275, 50.812877 ], [ 83.380737, 51.070743 ], [ 83.932800, 50.890907 ], [ 84.416199, 50.312146 ], [ 85.113831, 50.118817 ], [ 85.539551, 49.694285 ], [ 86.827698, 49.827353 ], [ 87.357788, 49.215803 ], [ 87.022705, 48.922499 ], [ 86.857910, 48.777913 ], [ 78.530273, 48.777913 ], [ 78.530273, 52.593038 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.219727, 50.111772 ], [ 90.219727, 48.777913 ], [ 87.945557, 48.777913 ], [ 87.890625, 48.922499 ], [ 87.750549, 49.298263 ], [ 88.805237, 49.471694 ], [ 90.000000, 50.013034 ], [ 90.219727, 50.111772 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 87.750549, 49.298263 ], [ 87.890625, 48.922499 ], [ 87.945557, 48.777913 ], [ 86.857910, 48.777913 ], [ 87.022705, 48.922499 ], [ 87.357788, 49.215803 ], [ 87.750549, 49.298263 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 90.219727, 61.710706 ], [ 90.219727, 55.652798 ], [ 78.530273, 55.652798 ], [ 78.530273, 61.710706 ], [ 90.219727, 61.710706 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 90.219727, 66.600676 ], [ 90.219727, 61.501734 ], [ 78.530273, 61.501734 ], [ 78.530273, 66.600676 ], [ 90.219727, 66.600676 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 90.219727, 70.685421 ], [ 90.219727, 66.425537 ], [ 78.530273, 66.425537 ], [ 78.530273, 70.685421 ], [ 90.219727, 70.685421 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 90.219727, 74.079925 ], [ 90.219727, 70.539543 ], [ 78.530273, 70.539543 ], [ 78.530273, 72.291574 ], [ 78.750000, 72.297421 ], [ 79.650879, 72.320791 ], [ 81.499329, 71.750733 ], [ 80.609436, 72.583295 ], [ 80.510559, 73.648679 ], [ 82.249146, 73.850050 ], [ 84.655151, 73.806447 ], [ 86.822205, 73.936915 ], [ 86.693115, 74.019543 ], [ 86.602478, 74.079925 ], [ 90.219727, 74.079925 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 90.219727, 75.629996 ], [ 90.219727, 73.958939 ], [ 86.786499, 73.958939 ], [ 86.693115, 74.019543 ], [ 86.009216, 74.460399 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.144299 ], [ 90.000000, 75.574678 ], [ 90.219727, 75.629996 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 16 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.469727, 0.219726 ], [ 101.469727, -2.874465 ], [ 101.398315, -2.797655 ], [ 101.250000, -2.572682 ], [ 100.901184, -2.048514 ], [ 100.140381, -0.648180 ], [ 99.456482, 0.000000 ], [ 99.261475, 0.184021 ], [ 99.250488, 0.219726 ], [ 101.469727, 0.219726 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.291687, 11.393879 ], [ 99.165344, 11.178402 ], [ 99.036255, 10.962764 ], [ 98.552856, 9.933682 ], [ 98.456726, 10.676803 ], [ 98.657227, 11.178402 ], [ 98.745117, 11.393879 ], [ 99.291687, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.678955, 11.393879 ], [ 99.599304, 11.178402 ], [ 99.151611, 9.963440 ], [ 99.220276, 9.240382 ], [ 99.871216, 9.210560 ], [ 100.277710, 8.295752 ], [ 100.458984, 7.430560 ], [ 101.016541, 6.858259 ], [ 101.250000, 6.814626 ], [ 101.469727, 6.770989 ], [ 101.469727, 5.749907 ], [ 101.250000, 5.708914 ], [ 101.153870, 5.692516 ], [ 101.074219, 6.206090 ], [ 100.258484, 6.645511 ], [ 100.085449, 6.465422 ], [ 99.689941, 6.850078 ], [ 99.516907, 7.346123 ], [ 98.986816, 7.909632 ], [ 98.503418, 8.382714 ], [ 98.338623, 7.795357 ], [ 98.149109, 8.350106 ], [ 98.258972, 8.974610 ], [ 98.552856, 9.933682 ], [ 99.036255, 10.962764 ], [ 99.165344, 11.178402 ], [ 99.291687, 11.393879 ], [ 99.678955, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.258484, 6.645511 ], [ 101.074219, 6.206090 ], [ 101.153870, 5.692516 ], [ 101.250000, 5.708914 ], [ 101.469727, 5.749907 ], [ 101.469727, 2.709866 ], [ 101.390076, 2.761991 ], [ 101.271973, 3.272146 ], [ 101.250000, 3.299566 ], [ 100.695190, 3.940981 ], [ 100.555115, 4.768047 ], [ 100.195312, 5.312501 ], [ 100.305176, 6.042236 ], [ 100.085449, 6.465422 ], [ 100.258484, 6.645511 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 95.292664, 5.482034 ], [ 95.935364, 5.441022 ], [ 97.484436, 5.246863 ], [ 98.368835, 4.269724 ], [ 99.140625, 3.592919 ], [ 99.692688, 3.176167 ], [ 100.640259, 2.100664 ], [ 101.250000, 2.092430 ], [ 101.469727, 2.086941 ], [ 101.469727, -0.219726 ], [ 99.687195, -0.219726 ], [ 99.456482, 0.000000 ], [ 99.261475, 0.184021 ], [ 98.967590, 1.043643 ], [ 98.599548, 1.826168 ], [ 97.698669, 2.454693 ], [ 97.176819, 3.310534 ], [ 96.421509, 3.869735 ], [ 95.380554, 4.973296 ], [ 95.292664, 5.482034 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 92.889404, 22.146708 ], [ 92.672424, 22.042367 ], [ 92.636719, 22.146708 ], [ 92.889404, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bangladesh", "sov_a3": "BGD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bangladesh", "adm0_a3": "BGD", "geou_dif": 0, "geounit": "Bangladesh", "gu_a3": "BGD", "su_dif": 0, "subunit": "Bangladesh", "su_a3": "BGD", "brk_diff": 0, "name": "Bangladesh", "name_long": "Bangladesh", "brk_a3": "BGD", "brk_name": "Bangladesh", "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "name_sort": "Bangladesh", "mapcolor7": 3, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 156050883, "gdp_md_est": 224000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BD", "iso_a3": "BGD", "iso_n3": "050", "un_a3": "050", "wb_a2": "BD", "wb_a3": "BGD", "woe_id": -99, "adm0_a3_is": "BGD", "adm0_a3_us": "BGD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 92.636719, 22.146708 ], [ 92.672424, 22.042367 ], [ 92.669678, 21.943046 ], [ 92.650452, 21.325198 ], [ 92.301636, 21.476073 ], [ 92.367554, 20.671336 ], [ 92.081909, 21.194655 ], [ 92.024231, 21.703369 ], [ 91.928101, 21.943046 ], [ 91.848450, 22.146708 ], [ 92.636719, 22.146708 ] ] ], [ [ [ 90.447693, 22.146708 ], [ 90.332336, 21.943046 ], [ 90.271912, 21.838555 ], [ 90.046692, 21.943046 ], [ 89.846191, 22.039822 ], [ 89.780273, 21.955783 ], [ 89.780273, 22.146708 ], [ 90.447693, 22.146708 ] ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 101.469727, 22.146708 ], [ 101.469727, 21.192094 ], [ 101.269226, 21.202337 ], [ 101.250000, 21.256102 ], [ 101.178589, 21.437730 ], [ 101.148376, 21.851302 ], [ 100.415039, 21.560393 ], [ 99.981079, 21.744194 ], [ 99.585571, 21.943046 ], [ 99.239502, 22.118722 ], [ 99.250488, 22.146708 ], [ 101.469727, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.250488, 22.146708 ], [ 99.239502, 22.118722 ], [ 99.585571, 21.943046 ], [ 99.981079, 21.744194 ], [ 100.415039, 21.560393 ], [ 101.148376, 21.851302 ], [ 101.178589, 21.437730 ], [ 100.327148, 20.786931 ], [ 100.115662, 20.419291 ], [ 99.541626, 20.187457 ], [ 98.959351, 19.753779 ], [ 98.253479, 19.709829 ], [ 97.797546, 18.628027 ], [ 97.374573, 18.445741 ], [ 97.857971, 17.568102 ], [ 98.492432, 16.838719 ], [ 98.901672, 16.180386 ], [ 98.536377, 15.310678 ], [ 98.190308, 15.125159 ], [ 98.429260, 14.623451 ], [ 99.096680, 13.830079 ], [ 99.209290, 13.269353 ], [ 99.195557, 12.806445 ], [ 99.585571, 11.894228 ], [ 99.165344, 11.178402 ], [ 99.039001, 10.962764 ], [ 98.572083, 10.962764 ], [ 98.657227, 11.178402 ], [ 98.764343, 11.442339 ], [ 98.426514, 12.033948 ], [ 98.508911, 13.124955 ], [ 98.102417, 13.640649 ], [ 97.775574, 14.838612 ], [ 97.597046, 16.101237 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.428182 ], [ 95.366821, 15.715595 ], [ 94.806519, 15.805468 ], [ 94.188538, 16.040534 ], [ 94.531860, 17.279841 ], [ 94.323120, 18.213698 ], [ 93.540344, 19.368159 ], [ 93.661194, 19.727928 ], [ 93.076172, 19.857144 ], [ 92.367554, 20.671336 ], [ 92.301636, 21.476073 ], [ 92.650452, 21.325198 ], [ 92.669678, 21.943046 ], [ 92.672424, 22.042367 ], [ 92.889404, 22.146708 ], [ 99.250488, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Laos", "sov_a3": "LAO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Laos", "adm0_a3": "LAO", "geou_dif": 0, "geounit": "Laos", "gu_a3": "LAO", "su_dif": 0, "subunit": "Laos", "su_a3": "LAO", "brk_diff": 0, "name": "Lao PDR", "name_long": "Lao PDR", "brk_a3": "LAO", "brk_name": "Laos", "abbrev": "Laos", "postal": "LA", "formal_en": "Lao People's Democratic Republic", "name_sort": "Lao PDR", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 6834942, "gdp_md_est": 13980, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LA", "iso_a3": "LAO", "iso_n3": "418", "un_a3": "418", "wb_a2": "LA", "wb_a3": "LAO", "woe_id": -99, "adm0_a3_is": "LAO", "adm0_a3_us": "LAO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.178589, 21.437730 ], [ 101.250000, 21.256102 ], [ 101.269226, 21.202337 ], [ 101.469727, 21.192094 ], [ 101.469727, 17.746071 ], [ 101.250000, 17.620464 ], [ 101.057739, 17.513106 ], [ 101.035767, 18.409261 ], [ 101.250000, 19.326695 ], [ 101.280212, 19.464003 ], [ 101.250000, 19.466592 ], [ 100.604553, 19.510609 ], [ 100.546875, 20.110102 ], [ 100.115662, 20.419291 ], [ 100.327148, 20.786931 ], [ 101.178589, 21.437730 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.115662, 20.419291 ], [ 100.546875, 20.110102 ], [ 100.604553, 19.510609 ], [ 101.250000, 19.466592 ], [ 101.280212, 19.464003 ], [ 101.250000, 19.326695 ], [ 101.035767, 18.409261 ], [ 101.057739, 17.513106 ], [ 101.250000, 17.620464 ], [ 101.469727, 17.746071 ], [ 101.469727, 12.643018 ], [ 101.250000, 12.637658 ], [ 100.829773, 12.629618 ], [ 100.978088, 13.413666 ], [ 100.096436, 13.408322 ], [ 100.016785, 12.307802 ], [ 99.599304, 11.178402 ], [ 99.519653, 10.962764 ], [ 99.039001, 10.962764 ], [ 99.165344, 11.178402 ], [ 99.585571, 11.894228 ], [ 99.195557, 12.806445 ], [ 99.209290, 13.269353 ], [ 99.096680, 13.830079 ], [ 98.429260, 14.623451 ], [ 98.190308, 15.125159 ], [ 98.536377, 15.310678 ], [ 98.901672, 16.180386 ], [ 98.492432, 16.838719 ], [ 97.857971, 17.568102 ], [ 97.374573, 18.445741 ], [ 97.797546, 18.628027 ], [ 98.253479, 19.709829 ], [ 98.959351, 19.753779 ], [ 99.541626, 20.187457 ], [ 100.115662, 20.419291 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.116638, 29.453948 ], [ 96.586304, 28.832644 ], [ 96.248474, 28.413144 ], [ 97.325134, 28.263263 ], [ 97.402039, 27.882784 ], [ 97.050476, 27.700552 ], [ 97.132874, 27.086028 ], [ 96.418762, 27.266837 ], [ 95.122375, 26.573790 ], [ 95.152588, 26.002487 ], [ 94.600525, 25.162687 ], [ 94.551086, 24.676970 ], [ 94.106140, 23.853186 ], [ 93.323364, 24.079067 ], [ 93.284912, 23.044353 ], [ 93.059692, 22.705255 ], [ 93.164062, 22.278931 ], [ 92.672424, 22.042367 ], [ 92.145081, 23.629427 ], [ 91.867676, 23.624395 ], [ 91.705627, 22.986210 ], [ 91.156311, 23.503552 ], [ 91.466675, 24.074051 ], [ 91.914368, 24.131715 ], [ 92.375793, 24.978589 ], [ 91.799011, 25.147771 ], [ 90.870667, 25.132852 ], [ 90.000000, 25.259601 ], [ 89.920349, 25.272020 ], [ 89.832458, 25.965453 ], [ 89.780273, 25.972861 ], [ 89.780273, 26.728440 ], [ 90.000000, 26.784847 ], [ 90.370789, 26.877981 ], [ 91.216736, 26.809364 ], [ 92.032471, 26.838776 ], [ 92.101135, 27.454665 ], [ 91.694641, 27.773481 ], [ 92.502136, 27.897349 ], [ 93.411255, 28.642389 ], [ 94.564819, 29.279212 ], [ 95.402527, 29.032158 ], [ 96.116638, 29.453948 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bhutan", "sov_a3": "BTN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bhutan", "adm0_a3": "BTN", "geou_dif": 0, "geounit": "Bhutan", "gu_a3": "BTN", "su_dif": 0, "subunit": "Bhutan", "su_a3": "BTN", "brk_diff": 0, "name": "Bhutan", "name_long": "Bhutan", "brk_a3": "BTN", "brk_name": "Bhutan", "abbrev": "Bhutan", "postal": "BT", "formal_en": "Kingdom of Bhutan", "name_sort": "Bhutan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 691141, "gdp_md_est": 3524, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BT", "iso_a3": "BTN", "iso_n3": "064", "un_a3": "064", "wb_a2": "BT", "wb_a3": "BTN", "woe_id": -99, "adm0_a3_is": "BTN", "adm0_a3_us": "BTN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.013733, 28.297126 ], [ 90.727844, 28.067133 ], [ 91.257935, 28.042895 ], [ 91.694641, 27.773481 ], [ 92.101135, 27.454665 ], [ 92.032471, 26.838776 ], [ 91.216736, 26.809364 ], [ 90.370789, 26.877981 ], [ 90.000000, 26.784847 ], [ 89.780273, 26.728440 ], [ 89.780273, 28.188244 ], [ 90.000000, 28.289870 ], [ 90.013733, 28.297126 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bangladesh", "sov_a3": "BGD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bangladesh", "adm0_a3": "BGD", "geou_dif": 0, "geounit": "Bangladesh", "gu_a3": "BGD", "su_dif": 0, "subunit": "Bangladesh", "su_a3": "BGD", "brk_diff": 0, "name": "Bangladesh", "name_long": "Bangladesh", "brk_a3": "BGD", "brk_name": "Bangladesh", "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "name_sort": "Bangladesh", "mapcolor7": 3, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 156050883, "gdp_md_est": 224000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BD", "iso_a3": "BGD", "iso_n3": "050", "un_a3": "050", "wb_a2": "BD", "wb_a3": "BGD", "woe_id": -99, "adm0_a3_is": "BGD", "adm0_a3_us": "BGD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.780273, 25.972861 ], [ 89.832458, 25.965453 ], [ 89.920349, 25.272020 ], [ 90.000000, 25.259601 ], [ 90.870667, 25.132852 ], [ 91.799011, 25.147771 ], [ 92.375793, 24.978589 ], [ 91.914368, 24.131715 ], [ 91.466675, 24.074051 ], [ 91.156311, 23.503552 ], [ 91.705627, 22.986210 ], [ 91.867676, 23.624395 ], [ 92.145081, 23.629427 ], [ 92.672424, 22.042367 ], [ 92.669678, 21.943046 ], [ 92.661438, 21.739091 ], [ 92.007751, 21.739091 ], [ 91.928101, 21.943046 ], [ 91.834717, 22.184862 ], [ 91.414490, 22.766051 ], [ 90.494385, 22.806567 ], [ 90.585022, 22.393253 ], [ 90.332336, 21.943046 ], [ 90.271912, 21.838555 ], [ 90.046692, 21.943046 ], [ 90.000000, 21.968519 ], [ 89.846191, 22.039822 ], [ 89.780273, 21.955783 ], [ 89.780273, 25.972861 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 101.469727, 32.138409 ], [ 101.469727, 21.739091 ], [ 101.156616, 21.739091 ], [ 101.148376, 21.851302 ], [ 100.868225, 21.739091 ], [ 99.992065, 21.739091 ], [ 99.585571, 21.943046 ], [ 99.239502, 22.118722 ], [ 99.530640, 22.950806 ], [ 98.896179, 23.142886 ], [ 98.659973, 24.064020 ], [ 97.602539, 23.898394 ], [ 97.723389, 25.085599 ], [ 98.670959, 25.920996 ], [ 98.709412, 26.745610 ], [ 98.681946, 27.510707 ], [ 98.245239, 27.749177 ], [ 97.910156, 28.338230 ], [ 97.325134, 28.263263 ], [ 96.248474, 28.413144 ], [ 96.586304, 28.832644 ], [ 96.116638, 29.453948 ], [ 95.402527, 29.032158 ], [ 94.564819, 29.279212 ], [ 93.411255, 28.642389 ], [ 92.502136, 27.897349 ], [ 91.694641, 27.773481 ], [ 91.257935, 28.042895 ], [ 90.727844, 28.067133 ], [ 90.013733, 28.297126 ], [ 90.000000, 28.289870 ], [ 89.780273, 28.188244 ], [ 89.780273, 32.138409 ], [ 101.469727, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 97.910156, 28.338230 ], [ 98.245239, 27.749177 ], [ 98.681946, 27.510707 ], [ 98.709412, 26.745610 ], [ 98.670959, 25.920996 ], [ 97.723389, 25.085599 ], [ 97.602539, 23.898394 ], [ 98.659973, 24.064020 ], [ 98.896179, 23.142886 ], [ 99.530640, 22.950806 ], [ 99.239502, 22.118722 ], [ 99.585571, 21.943046 ], [ 99.992065, 21.739091 ], [ 92.661438, 21.739091 ], [ 92.669678, 21.943046 ], [ 92.672424, 22.042367 ], [ 93.164062, 22.278931 ], [ 93.059692, 22.705255 ], [ 93.284912, 23.044353 ], [ 93.323364, 24.079067 ], [ 94.106140, 23.853186 ], [ 94.551086, 24.676970 ], [ 94.600525, 25.162687 ], [ 95.152588, 26.002487 ], [ 95.122375, 26.573790 ], [ 96.418762, 27.266837 ], [ 97.132874, 27.086028 ], [ 97.050476, 27.700552 ], [ 97.402039, 27.882784 ], [ 97.325134, 28.263263 ], [ 97.910156, 28.338230 ] ] ], [ [ [ 101.156616, 21.739091 ], [ 100.868225, 21.739091 ], [ 101.148376, 21.851302 ], [ 101.156616, 21.739091 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 101.469727, 41.145570 ], [ 101.469727, 31.765537 ], [ 89.780273, 31.765537 ], [ 89.780273, 41.145570 ], [ 101.469727, 41.145570 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.469727, 49.066668 ], [ 101.469727, 42.571287 ], [ 101.250000, 42.603642 ], [ 100.843506, 42.664261 ], [ 99.514160, 42.524748 ], [ 97.451477, 42.749029 ], [ 96.347351, 42.726839 ], [ 95.762329, 43.321181 ], [ 95.306396, 44.243231 ], [ 94.688416, 44.353314 ], [ 93.479919, 44.976457 ], [ 92.131348, 45.116177 ], [ 90.944824, 45.286482 ], [ 90.585022, 45.721522 ], [ 90.969543, 46.888355 ], [ 90.280151, 47.694974 ], [ 90.000000, 47.768868 ], [ 89.780273, 47.826064 ], [ 89.780273, 49.066668 ], [ 101.469727, 49.066668 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 89.780273, 47.826064 ], [ 90.000000, 47.768868 ], [ 90.280151, 47.694974 ], [ 90.969543, 46.888355 ], [ 90.585022, 45.721522 ], [ 90.944824, 45.286482 ], [ 92.131348, 45.116177 ], [ 93.479919, 44.976457 ], [ 94.688416, 44.353314 ], [ 95.306396, 44.243231 ], [ 95.762329, 43.321181 ], [ 96.347351, 42.726839 ], [ 97.451477, 42.749029 ], [ 99.514160, 42.524748 ], [ 100.843506, 42.664261 ], [ 101.250000, 42.603642 ], [ 101.469727, 42.571287 ], [ 101.469727, 40.813809 ], [ 89.780273, 40.813809 ], [ 89.780273, 47.826064 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 101.469727, 55.899956 ], [ 101.469727, 51.390637 ], [ 101.250000, 51.438601 ], [ 100.887451, 51.517289 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.047423 ], [ 97.825012, 51.012027 ], [ 98.231506, 50.422519 ], [ 97.259216, 49.726255 ], [ 95.811768, 49.977722 ], [ 94.814758, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.232971, 50.802463 ], [ 90.711365, 50.333190 ], [ 90.000000, 50.013034 ], [ 89.780273, 49.914093 ], [ 89.780273, 55.899956 ], [ 101.469727, 55.899956 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.860474, 52.047423 ], [ 99.981079, 51.635067 ], [ 100.887451, 51.517289 ], [ 101.250000, 51.438601 ], [ 101.469727, 51.390637 ], [ 101.469727, 48.777913 ], [ 89.780273, 48.777913 ], [ 89.780273, 49.914093 ], [ 90.000000, 50.013034 ], [ 90.711365, 50.333190 ], [ 92.232971, 50.802463 ], [ 93.103638, 50.495958 ], [ 94.147339, 50.481978 ], [ 94.814758, 50.014799 ], [ 95.811768, 49.977722 ], [ 97.259216, 49.726255 ], [ 98.231506, 50.422519 ], [ 97.825012, 51.012027 ], [ 98.860474, 52.047423 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 101.469727, 61.710706 ], [ 101.469727, 55.652798 ], [ 89.780273, 55.652798 ], [ 89.780273, 61.710706 ], [ 101.469727, 61.710706 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 101.469727, 66.600676 ], [ 101.469727, 61.501734 ], [ 89.780273, 61.501734 ], [ 89.780273, 66.600676 ], [ 101.469727, 66.600676 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 101.469727, 70.685421 ], [ 101.469727, 66.425537 ], [ 89.780273, 66.425537 ], [ 89.780273, 70.685421 ], [ 101.469727, 70.685421 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 101.469727, 74.079925 ], [ 101.469727, 70.539543 ], [ 89.780273, 70.539543 ], [ 89.780273, 74.079925 ], [ 101.469727, 74.079925 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 101.469727, 76.890745 ], [ 101.469727, 73.958939 ], [ 89.780273, 73.958939 ], [ 89.780273, 75.519151 ], [ 90.000000, 75.574678 ], [ 90.258179, 75.640217 ], [ 92.900391, 75.773797 ], [ 93.232727, 76.047254 ], [ 95.858459, 76.140327 ], [ 96.676941, 75.915521 ], [ 98.920898, 76.447482 ], [ 100.758362, 76.430738 ], [ 101.033020, 76.862059 ], [ 101.098938, 76.890745 ], [ 101.469727, 76.890745 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 101.469727, 77.057270 ], [ 101.469727, 76.790701 ], [ 100.989075, 76.790701 ], [ 101.019287, 76.840816 ], [ 101.033020, 76.862059 ], [ 101.250000, 76.959094 ], [ 101.469727, 77.057270 ] ] ], [ [ [ 101.469727, 79.212538 ], [ 101.469727, 78.061989 ], [ 101.250000, 78.046640 ], [ 99.437256, 77.921418 ], [ 101.170349, 79.171335 ], [ 101.230774, 79.212538 ], [ 101.469727, 79.212538 ] ] ], [ [ [ 100.027771, 79.212538 ], [ 100.016785, 79.171335 ], [ 99.937134, 78.881177 ], [ 97.756348, 78.756551 ], [ 94.971313, 79.045225 ], [ 94.427490, 79.171335 ], [ 94.248962, 79.212538 ], [ 100.027771, 79.212538 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 101.469727, 79.262288 ], [ 101.469727, 79.129976 ], [ 101.109924, 79.129976 ], [ 101.170349, 79.171335 ], [ 101.250000, 79.224355 ], [ 101.263733, 79.234107 ], [ 101.469727, 79.262288 ] ] ], [ [ [ 96.424255, 81.127169 ], [ 96.558838, 81.093214 ], [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 100.016785, 79.171335 ], [ 100.005798, 79.129976 ], [ 94.606018, 79.129976 ], [ 94.427490, 79.171335 ], [ 93.312378, 79.426828 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.341801 ], [ 93.776550, 81.024916 ], [ 94.427490, 81.093214 ], [ 94.751587, 81.127169 ], [ 96.424255, 81.127169 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 95.940857, 81.250438 ], [ 96.558838, 81.093214 ], [ 96.690674, 81.059130 ], [ 94.103394, 81.059130 ], [ 94.427490, 81.093214 ], [ 95.940857, 81.250438 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 16 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.051025, -5.894725 ], [ 107.262268, -5.954827 ], [ 108.069763, -6.345327 ], [ 108.484497, -6.421754 ], [ 108.621826, -6.776444 ], [ 110.538940, -6.877347 ], [ 110.758667, -6.462693 ], [ 112.500000, -6.915521 ], [ 112.612610, -6.945512 ], [ 112.719727, -7.130872 ], [ 112.719727, -8.369127 ], [ 112.557678, -8.374562 ], [ 112.500000, -8.371845 ], [ 111.519470, -8.301188 ], [ 110.585632, -8.121772 ], [ 109.426575, -7.738208 ], [ 108.693237, -7.640220 ], [ 108.275757, -7.765423 ], [ 106.452026, -7.354295 ], [ 106.278992, -6.923700 ], [ 105.364380, -6.850078 ], [ 106.051025, -5.894725 ] ] ], [ [ [ 103.645020, 0.219726 ], [ 103.837280, 0.107117 ], [ 103.785095, 0.000000 ], [ 103.436279, -0.711346 ], [ 104.010315, -1.057374 ], [ 104.367371, -1.084835 ], [ 104.537659, -1.782244 ], [ 104.886475, -2.339438 ], [ 105.619812, -2.427252 ], [ 106.105957, -3.060982 ], [ 105.856018, -4.305330 ], [ 105.817566, -5.851010 ], [ 104.707947, -5.872868 ], [ 103.867493, -5.036227 ], [ 102.582092, -4.217682 ], [ 102.153625, -3.612107 ], [ 101.398315, -2.797655 ], [ 101.250000, -2.572682 ], [ 101.030273, -2.240640 ], [ 101.030273, 0.219726 ], [ 103.645020, 0.219726 ] ] ], [ [ [ 112.719727, 0.219726 ], [ 112.719727, -3.280372 ], [ 112.500000, -3.346180 ], [ 112.066040, -3.477782 ], [ 111.700745, -2.992413 ], [ 111.047058, -3.047268 ], [ 110.223083, -2.932069 ], [ 110.069275, -1.592812 ], [ 109.569397, -1.312751 ], [ 109.091492, -0.458674 ], [ 109.017334, 0.000000 ], [ 108.981628, 0.219726 ], [ 112.719727, 0.219726 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.030273, 6.855532 ], [ 101.250000, 6.814626 ], [ 101.620789, 6.740986 ], [ 102.139893, 6.222473 ], [ 101.813049, 5.812757 ], [ 101.250000, 5.708914 ], [ 101.153870, 5.692516 ], [ 101.074219, 6.206090 ], [ 101.030273, 6.230664 ], [ 101.030273, 6.855532 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Vietnam", "sov_a3": "VNM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vietnam", "adm0_a3": "VNM", "geou_dif": 0, "geounit": "Vietnam", "gu_a3": "VNM", "su_dif": 0, "subunit": "Vietnam", "su_a3": "VNM", "brk_diff": 0, "name": "Vietnam", "name_long": "Vietnam", "brk_a3": "VNM", "brk_name": "Vietnam", "abbrev": "Viet.", "postal": "VN", "formal_en": "Socialist Republic of Vietnam", "name_sort": "Vietnam", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 86967524, "gdp_md_est": 241700, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VN", "iso_a3": "VNM", "iso_n3": "704", "un_a3": "704", "wb_a2": "VN", "wb_a3": "VNM", "woe_id": -99, "adm0_a3_is": "VNM", "adm0_a3_us": "VNM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 108.852539, 11.393879 ], [ 108.580627, 11.178402 ], [ 108.363647, 11.008601 ], [ 107.218323, 10.366257 ], [ 106.402588, 9.533040 ], [ 105.155640, 8.600032 ], [ 104.793091, 9.243093 ], [ 105.075989, 9.920155 ], [ 104.331665, 10.487812 ], [ 105.199585, 10.889951 ], [ 106.248779, 10.962764 ], [ 105.935669, 11.393879 ], [ 108.852539, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cambodia", "sov_a3": "KHM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cambodia", "adm0_a3": "KHM", "geou_dif": 0, "geounit": "Cambodia", "gu_a3": "KHM", "su_dif": 0, "subunit": "Cambodia", "su_a3": "KHM", "brk_diff": 0, "name": "Cambodia", "name_long": "Cambodia", "brk_a3": "KHM", "brk_name": "Cambodia", "abbrev": "Camb.", "postal": "KH", "formal_en": "Kingdom of Cambodia", "name_sort": "Cambodia", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 5, "pop_est": 14494293, "gdp_md_est": 27940, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KH", "iso_a3": "KHM", "iso_n3": "116", "un_a3": "116", "wb_a2": "KH", "wb_a3": "KHM", "woe_id": -99, "adm0_a3_is": "KHM", "adm0_a3_us": "KHM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.935669, 11.393879 ], [ 106.248779, 10.962764 ], [ 105.199585, 10.889951 ], [ 104.331665, 10.487812 ], [ 103.496704, 10.633615 ], [ 103.090210, 11.154151 ], [ 103.076477, 11.178402 ], [ 102.972107, 11.393879 ], [ 105.935669, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.719727, 3.052754 ], [ 112.719727, 1.474752 ], [ 112.500000, 1.433566 ], [ 112.379150, 1.411600 ], [ 111.796875, 0.906334 ], [ 111.156921, 0.977736 ], [ 110.511475, 0.774513 ], [ 109.827576, 1.340210 ], [ 109.662781, 2.007341 ], [ 110.396118, 1.664195 ], [ 111.167908, 1.850874 ], [ 111.368408, 2.698892 ], [ 111.796875, 2.888180 ], [ 112.500000, 3.014356 ], [ 112.719727, 3.052754 ] ] ], [ [ [ 101.030273, 6.230664 ], [ 101.074219, 6.206090 ], [ 101.153870, 5.692516 ], [ 101.250000, 5.708914 ], [ 101.813049, 5.812757 ], [ 102.139893, 6.222473 ], [ 102.370605, 6.129631 ], [ 102.961121, 5.525777 ], [ 103.378601, 4.855628 ], [ 103.436279, 4.182073 ], [ 103.331909, 3.727227 ], [ 103.428040, 3.384566 ], [ 103.502197, 2.792168 ], [ 103.853760, 2.517805 ], [ 104.246521, 1.631249 ], [ 104.227295, 1.293530 ], [ 103.518677, 1.227628 ], [ 102.571106, 1.968912 ], [ 101.390076, 2.761991 ], [ 101.271973, 3.272146 ], [ 101.250000, 3.299566 ], [ 101.030273, 3.554541 ], [ 101.030273, 6.230664 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 109.662781, 2.007341 ], [ 109.827576, 1.340210 ], [ 110.511475, 0.774513 ], [ 111.156921, 0.977736 ], [ 111.796875, 0.906334 ], [ 112.379150, 1.411600 ], [ 112.500000, 1.433566 ], [ 112.719727, 1.474752 ], [ 112.719727, -0.219726 ], [ 109.053040, -0.219726 ], [ 109.017334, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.066772, 1.342956 ], [ 109.662781, 2.007341 ] ] ], [ [ [ 101.030273, 2.095175 ], [ 101.250000, 2.092430 ], [ 101.656494, 2.084196 ], [ 102.496948, 1.400617 ], [ 103.076477, 0.563040 ], [ 103.837280, 0.107117 ], [ 103.785095, 0.000000 ], [ 103.677979, -0.219726 ], [ 101.030273, -0.219726 ], [ 101.030273, 2.095175 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 110.209351, 20.102365 ], [ 110.786133, 20.079150 ], [ 111.008606, 19.696900 ], [ 110.569153, 19.256701 ], [ 110.338440, 18.680073 ], [ 109.473267, 18.198044 ], [ 108.654785, 18.508261 ], [ 108.624573, 19.368159 ], [ 109.118958, 19.823558 ], [ 110.209351, 20.102365 ] ] ], [ [ [ 112.719727, 22.146708 ], [ 112.719727, 21.866597 ], [ 112.500000, 21.787557 ], [ 111.843567, 21.552730 ], [ 110.783386, 21.399377 ], [ 110.442810, 20.342052 ], [ 109.888000, 20.282809 ], [ 109.627075, 21.010163 ], [ 109.863281, 21.396819 ], [ 108.520203, 21.716128 ], [ 108.047791, 21.552730 ], [ 107.042542, 21.813058 ], [ 106.888733, 21.943046 ], [ 106.649780, 22.146708 ], [ 112.719727, 22.146708 ] ] ], [ [ [ 101.672974, 22.146708 ], [ 101.700439, 21.943046 ], [ 101.802063, 21.176729 ], [ 101.269226, 21.202337 ], [ 101.250000, 21.256102 ], [ 101.178589, 21.437730 ], [ 101.148376, 21.851302 ], [ 101.030273, 21.802858 ], [ 101.030273, 22.146708 ], [ 101.672974, 22.146708 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.148376, 21.851302 ], [ 101.178589, 21.437730 ], [ 101.030273, 21.322640 ], [ 101.030273, 21.802858 ], [ 101.148376, 21.851302 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Laos", "sov_a3": "LAO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Laos", "adm0_a3": "LAO", "geou_dif": 0, "geounit": "Laos", "gu_a3": "LAO", "su_dif": 0, "subunit": "Laos", "su_a3": "LAO", "brk_diff": 0, "name": "Lao PDR", "name_long": "Lao PDR", "brk_a3": "LAO", "brk_name": "Laos", "abbrev": "Laos", "postal": "LA", "formal_en": "Lao People's Democratic Republic", "name_sort": "Lao PDR", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 6834942, "gdp_md_est": 13980, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LA", "iso_a3": "LAO", "iso_n3": "418", "un_a3": "418", "wb_a2": "LA", "wb_a3": "LAO", "woe_id": -99, "adm0_a3_is": "LAO", "adm0_a3_us": "LAO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.403564, 22.146708 ], [ 102.554626, 21.943046 ], [ 102.752380, 21.675296 ], [ 103.202820, 20.768955 ], [ 104.433289, 20.761250 ], [ 104.820557, 19.888140 ], [ 104.183350, 19.627066 ], [ 103.894958, 19.267073 ], [ 105.092468, 18.667063 ], [ 105.924683, 17.486911 ], [ 106.553650, 16.604610 ], [ 107.311707, 15.911150 ], [ 107.564392, 15.204687 ], [ 107.380371, 14.203151 ], [ 106.495972, 14.572951 ], [ 106.042786, 13.883412 ], [ 105.216064, 14.275030 ], [ 105.542908, 14.724417 ], [ 105.586853, 15.572774 ], [ 104.776611, 16.443988 ], [ 104.716187, 17.429270 ], [ 103.955383, 18.242395 ], [ 103.200073, 18.310203 ], [ 102.996826, 17.963058 ], [ 102.411804, 17.934316 ], [ 102.112427, 18.109308 ], [ 101.250000, 17.620464 ], [ 101.057739, 17.513106 ], [ 101.035767, 18.409261 ], [ 101.250000, 19.326695 ], [ 101.280212, 19.464003 ], [ 101.250000, 19.466592 ], [ 101.030273, 19.482129 ], [ 101.030273, 21.322640 ], [ 101.178589, 21.437730 ], [ 101.250000, 21.256102 ], [ 101.269226, 21.202337 ], [ 101.802063, 21.176729 ], [ 101.700439, 21.943046 ], [ 101.672974, 22.146708 ], [ 102.403564, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.030273, 19.482129 ], [ 101.250000, 19.466592 ], [ 101.280212, 19.464003 ], [ 101.250000, 19.326695 ], [ 101.035767, 18.409261 ], [ 101.057739, 17.513106 ], [ 101.250000, 17.620464 ], [ 102.112427, 18.109308 ], [ 102.411804, 17.934316 ], [ 102.996826, 17.963058 ], [ 103.200073, 18.310203 ], [ 103.955383, 18.242395 ], [ 104.716187, 17.429270 ], [ 104.776611, 16.443988 ], [ 105.586853, 15.572774 ], [ 105.542908, 14.724417 ], [ 105.216064, 14.275030 ], [ 104.279480, 14.418720 ], [ 102.985840, 14.227113 ], [ 102.345886, 13.394963 ], [ 102.584839, 12.187019 ], [ 101.686707, 12.648378 ], [ 101.250000, 12.637658 ], [ 101.030273, 12.632298 ], [ 101.030273, 19.482129 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Vietnam", "sov_a3": "VNM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vietnam", "adm0_a3": "VNM", "geou_dif": 0, "geounit": "Vietnam", "gu_a3": "VNM", "su_dif": 0, "subunit": "Vietnam", "su_a3": "VNM", "brk_diff": 0, "name": "Vietnam", "name_long": "Vietnam", "brk_a3": "VNM", "brk_name": "Vietnam", "abbrev": "Viet.", "postal": "VN", "formal_en": "Socialist Republic of Vietnam", "name_sort": "Vietnam", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 86967524, "gdp_md_est": 241700, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VN", "iso_a3": "VNM", "iso_n3": "704", "un_a3": "704", "wb_a2": "VN", "wb_a3": "VNM", "woe_id": -99, "adm0_a3_is": "VNM", "adm0_a3_us": "VNM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.649780, 22.146708 ], [ 106.888733, 21.943046 ], [ 107.042542, 21.813058 ], [ 108.047791, 21.552730 ], [ 106.712952, 20.697031 ], [ 105.880737, 19.753779 ], [ 105.661011, 19.059522 ], [ 107.361145, 16.699340 ], [ 108.267517, 16.080125 ], [ 108.874512, 15.278886 ], [ 109.333191, 13.427024 ], [ 109.198608, 11.668376 ], [ 108.580627, 11.178402 ], [ 108.363647, 11.008601 ], [ 108.283997, 10.962764 ], [ 106.248779, 10.962764 ], [ 106.092224, 11.178402 ], [ 105.809326, 11.568835 ], [ 107.490234, 12.337319 ], [ 107.613831, 13.536530 ], [ 107.380371, 14.203151 ], [ 107.564392, 15.204687 ], [ 107.311707, 15.911150 ], [ 106.553650, 16.604610 ], [ 105.924683, 17.486911 ], [ 105.092468, 18.667063 ], [ 103.894958, 19.267073 ], [ 104.183350, 19.627066 ], [ 104.820557, 19.888140 ], [ 104.433289, 20.761250 ], [ 103.202820, 20.768955 ], [ 102.752380, 21.675296 ], [ 102.554626, 21.943046 ], [ 102.403564, 22.146708 ], [ 106.649780, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cambodia", "sov_a3": "KHM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cambodia", "adm0_a3": "KHM", "geou_dif": 0, "geounit": "Cambodia", "gu_a3": "KHM", "su_dif": 0, "subunit": "Cambodia", "su_a3": "KHM", "brk_diff": 0, "name": "Cambodia", "name_long": "Cambodia", "brk_a3": "KHM", "brk_name": "Cambodia", "abbrev": "Camb.", "postal": "KH", "formal_en": "Kingdom of Cambodia", "name_sort": "Cambodia", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 5, "pop_est": 14494293, "gdp_md_est": 27940, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KH", "iso_a3": "KHM", "iso_n3": "116", "un_a3": "116", "wb_a2": "KH", "wb_a3": "KHM", "woe_id": -99, "adm0_a3_is": "KHM", "adm0_a3_us": "KHM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.495972, 14.572951 ], [ 107.380371, 14.203151 ], [ 107.613831, 13.536530 ], [ 107.490234, 12.337319 ], [ 105.809326, 11.568835 ], [ 106.092224, 11.178402 ], [ 106.248779, 10.962764 ], [ 103.238525, 10.962764 ], [ 103.090210, 11.154151 ], [ 103.076477, 11.178402 ], [ 102.584839, 12.187019 ], [ 102.345886, 13.394963 ], [ 102.985840, 14.227113 ], [ 104.279480, 14.418720 ], [ 105.216064, 14.275030 ], [ 106.042786, 13.883412 ], [ 106.495972, 14.572951 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 112.719727, 32.138409 ], [ 112.719727, 21.866597 ], [ 112.368164, 21.739091 ], [ 107.325439, 21.739091 ], [ 107.042542, 21.813058 ], [ 106.888733, 21.943046 ], [ 106.564636, 22.220463 ], [ 106.723938, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.328674, 23.352343 ], [ 104.474487, 22.819226 ], [ 103.502197, 22.705255 ], [ 102.705688, 22.710323 ], [ 102.170105, 22.466878 ], [ 101.651001, 22.319589 ], [ 101.700439, 21.943046 ], [ 101.727905, 21.739091 ], [ 101.156616, 21.739091 ], [ 101.148376, 21.851302 ], [ 101.030273, 21.802858 ], [ 101.030273, 32.138409 ], [ 112.719727, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.148376, 21.851302 ], [ 101.156616, 21.739091 ], [ 101.030273, 21.739091 ], [ 101.030273, 21.802858 ], [ 101.148376, 21.851302 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Laos", "sov_a3": "LAO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Laos", "adm0_a3": "LAO", "geou_dif": 0, "geounit": "Laos", "gu_a3": "LAO", "su_dif": 0, "subunit": "Laos", "su_a3": "LAO", "brk_diff": 0, "name": "Lao PDR", "name_long": "Lao PDR", "brk_a3": "LAO", "brk_name": "Laos", "abbrev": "Laos", "postal": "LA", "formal_en": "Lao People's Democratic Republic", "name_sort": "Lao PDR", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 6834942, "gdp_md_est": 13980, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LA", "iso_a3": "LAO", "iso_n3": "418", "un_a3": "418", "wb_a2": "LA", "wb_a3": "LAO", "woe_id": -99, "adm0_a3_is": "LAO", "adm0_a3_us": "LAO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.170105, 22.466878 ], [ 102.554626, 21.943046 ], [ 102.705688, 21.739091 ], [ 101.727905, 21.739091 ], [ 101.700439, 21.943046 ], [ 101.651001, 22.319589 ], [ 102.170105, 22.466878 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Vietnam", "sov_a3": "VNM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vietnam", "adm0_a3": "VNM", "geou_dif": 0, "geounit": "Vietnam", "gu_a3": "VNM", "su_dif": 0, "subunit": "Vietnam", "su_a3": "VNM", "brk_diff": 0, "name": "Vietnam", "name_long": "Vietnam", "brk_a3": "VNM", "brk_name": "Vietnam", "abbrev": "Viet.", "postal": "VN", "formal_en": "Socialist Republic of Vietnam", "name_sort": "Vietnam", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 86967524, "gdp_md_est": 241700, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VN", "iso_a3": "VNM", "iso_n3": "704", "un_a3": "704", "wb_a2": "VN", "wb_a3": "VNM", "woe_id": -99, "adm0_a3_is": "VNM", "adm0_a3_us": "VNM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.328674, 23.352343 ], [ 105.809326, 22.978624 ], [ 106.723938, 22.796439 ], [ 106.564636, 22.220463 ], [ 106.888733, 21.943046 ], [ 107.042542, 21.813058 ], [ 107.325439, 21.739091 ], [ 102.705688, 21.739091 ], [ 102.554626, 21.943046 ], [ 102.170105, 22.466878 ], [ 102.705688, 22.710323 ], [ 103.502197, 22.705255 ], [ 104.474487, 22.819226 ], [ 105.328674, 23.352343 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 112.719727, 41.145570 ], [ 112.719727, 31.765537 ], [ 101.030273, 31.765537 ], [ 101.030273, 41.145570 ], [ 112.719727, 41.145570 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.719727, 49.066668 ], [ 112.719727, 44.957024 ], [ 112.500000, 44.999767 ], [ 112.434082, 45.013360 ], [ 111.871033, 45.102608 ], [ 111.346436, 44.459270 ], [ 111.665039, 44.073774 ], [ 111.827087, 43.743321 ], [ 111.129456, 43.407043 ], [ 110.409851, 42.871938 ], [ 109.242554, 42.520700 ], [ 107.742920, 42.482226 ], [ 106.127930, 42.134895 ], [ 104.963379, 41.599013 ], [ 104.521179, 41.908409 ], [ 103.309937, 41.908409 ], [ 101.832275, 42.516651 ], [ 101.250000, 42.603642 ], [ 101.030273, 42.638000 ], [ 101.030273, 49.066668 ], [ 112.719727, 49.066668 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 111.871033, 45.102608 ], [ 112.434082, 45.013360 ], [ 112.500000, 44.999767 ], [ 112.719727, 44.957024 ], [ 112.719727, 40.813809 ], [ 101.030273, 40.813809 ], [ 101.030273, 42.638000 ], [ 101.250000, 42.603642 ], [ 101.832275, 42.516651 ], [ 103.309937, 41.908409 ], [ 104.521179, 41.908409 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.134895 ], [ 107.742920, 42.482226 ], [ 109.242554, 42.520700 ], [ 110.409851, 42.871938 ], [ 111.129456, 43.407043 ], [ 111.827087, 43.743321 ], [ 111.665039, 44.073774 ], [ 111.346436, 44.459270 ], [ 111.871033, 45.102608 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 112.719727, 55.899956 ], [ 112.719727, 49.521643 ], [ 112.500000, 49.494891 ], [ 111.579895, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.294680 ], [ 108.473511, 49.283932 ], [ 107.866516, 49.795450 ], [ 106.888733, 50.275299 ], [ 105.886230, 50.406767 ], [ 104.620056, 50.277054 ], [ 103.675232, 50.090631 ], [ 102.255249, 50.511680 ], [ 102.062988, 51.260196 ], [ 101.250000, 51.438601 ], [ 101.030273, 51.486514 ], [ 101.030273, 55.899956 ], [ 112.719727, 55.899956 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.030273, 51.486514 ], [ 101.250000, 51.438601 ], [ 102.062988, 51.260196 ], [ 102.255249, 50.511680 ], [ 103.675232, 50.090631 ], [ 104.620056, 50.277054 ], [ 105.886230, 50.406767 ], [ 106.888733, 50.275299 ], [ 107.866516, 49.795450 ], [ 108.473511, 49.283932 ], [ 109.401855, 49.294680 ], [ 110.659790, 49.131408 ], [ 111.579895, 49.378797 ], [ 112.500000, 49.494891 ], [ 112.719727, 49.521643 ], [ 112.719727, 48.777913 ], [ 101.030273, 48.777913 ], [ 101.030273, 51.486514 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 112.719727, 61.710706 ], [ 112.719727, 55.652798 ], [ 101.030273, 55.652798 ], [ 101.030273, 61.710706 ], [ 112.719727, 61.710706 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 112.719727, 66.600676 ], [ 112.719727, 61.501734 ], [ 101.030273, 61.501734 ], [ 101.030273, 66.600676 ], [ 112.719727, 66.600676 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 112.719727, 70.685421 ], [ 112.719727, 66.425537 ], [ 101.030273, 66.425537 ], [ 101.030273, 70.685421 ], [ 112.719727, 70.685421 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 110.286255, 74.079925 ], [ 110.637817, 74.040702 ], [ 110.758667, 74.019543 ], [ 112.118225, 73.788054 ], [ 112.500000, 73.868376 ], [ 112.719727, 73.914861 ], [ 112.719727, 70.539543 ], [ 101.030273, 70.539543 ], [ 101.030273, 74.079925 ], [ 110.286255, 74.079925 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 107.015076, 76.890745 ], [ 107.042542, 76.840816 ], [ 107.237549, 76.480268 ], [ 108.152161, 76.723377 ], [ 111.074524, 76.710125 ], [ 112.500000, 76.404292 ], [ 112.719727, 76.356432 ], [ 112.719727, 75.019856 ], [ 112.500000, 74.974352 ], [ 110.148926, 74.477314 ], [ 109.399109, 74.180566 ], [ 110.637817, 74.040702 ], [ 110.758667, 74.019543 ], [ 111.115723, 73.958939 ], [ 101.030273, 73.958939 ], [ 101.030273, 76.854565 ], [ 101.033020, 76.862059 ], [ 101.098938, 76.890745 ], [ 107.015076, 76.890745 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 104.350891, 77.698138 ], [ 106.064758, 77.373904 ], [ 104.702454, 77.127825 ], [ 106.968384, 76.974579 ], [ 107.042542, 76.840816 ], [ 107.070007, 76.790701 ], [ 101.030273, 76.790701 ], [ 101.030273, 76.854565 ], [ 101.033020, 76.862059 ], [ 101.250000, 76.959094 ], [ 101.988831, 77.287763 ], [ 104.350891, 77.698138 ] ] ], [ [ [ 103.150635, 79.212538 ], [ 103.337402, 79.171335 ], [ 105.369873, 78.713629 ], [ 105.073242, 78.307182 ], [ 101.250000, 78.046640 ], [ 101.030273, 78.031271 ], [ 101.030273, 79.073895 ], [ 101.230774, 79.212538 ], [ 103.150635, 79.212538 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 102.084961, 79.346904 ], [ 102.837524, 79.281717 ], [ 103.337402, 79.171335 ], [ 103.524170, 79.129976 ], [ 101.109924, 79.129976 ], [ 101.250000, 79.224355 ], [ 101.263733, 79.234107 ], [ 102.084961, 79.346904 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 19 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.969727, -31.765537 ], [ 123.969727, -33.548262 ], [ 123.750000, -33.790561 ], [ 123.659363, -33.888658 ], [ 122.810669, -33.913734 ], [ 122.181702, -34.002581 ], [ 121.297302, -33.820230 ], [ 120.577698, -33.929688 ], [ 119.891052, -33.975253 ], [ 119.297791, -34.508820 ], [ 119.006653, -34.463542 ], [ 118.504028, -34.746126 ], [ 118.023376, -35.063725 ], [ 117.292786, -35.023249 ], [ 116.622620, -35.023249 ], [ 115.562439, -34.384246 ], [ 115.024109, -34.195901 ], [ 115.046082, -33.621481 ], [ 115.543213, -33.486435 ], [ 115.713501, -33.259360 ], [ 115.677795, -32.900344 ], [ 115.801392, -32.203505 ], [ 115.751953, -31.952162 ], [ 115.716248, -31.765537 ], [ 123.969727, -31.765537 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 18 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.969727, -21.739091 ], [ 123.969727, -32.138409 ], [ 115.787659, -32.138409 ], [ 115.751953, -31.952162 ], [ 115.688782, -31.611288 ], [ 115.158691, -30.600094 ], [ 114.996643, -30.028678 ], [ 115.037842, -29.458731 ], [ 114.639587, -28.808580 ], [ 114.614868, -28.514556 ], [ 114.172668, -28.118016 ], [ 114.046326, -27.332735 ], [ 113.475037, -26.541851 ], [ 113.337708, -26.115986 ], [ 113.777161, -26.546766 ], [ 113.439331, -25.619239 ], [ 113.936462, -25.911115 ], [ 114.230347, -26.298340 ], [ 114.213867, -25.785053 ], [ 113.719482, -24.998505 ], [ 113.623352, -24.681961 ], [ 113.392639, -24.384626 ], [ 113.499756, -23.805450 ], [ 113.705750, -23.558952 ], [ 113.843079, -23.059516 ], [ 113.735962, -22.474493 ], [ 114.040833, -21.943046 ], [ 114.147949, -21.754398 ], [ 114.167175, -21.943046 ], [ 114.224854, -22.515094 ], [ 114.576416, -21.943046 ], [ 114.645081, -21.828357 ], [ 114.867554, -21.739091 ], [ 123.969727, -21.739091 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 17 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.147949, -21.754398 ], [ 114.167175, -21.943046 ], [ 114.186401, -22.146708 ], [ 113.925476, -22.146708 ], [ 114.040833, -21.943046 ], [ 114.147949, -21.754398 ] ] ], [ [ [ 123.969727, -16.185662 ], [ 123.969727, -22.146708 ], [ 114.452820, -22.146708 ], [ 114.576416, -21.943046 ], [ 114.645081, -21.828357 ], [ 115.458069, -21.493964 ], [ 115.946960, -21.066560 ], [ 116.710510, -20.699600 ], [ 117.163696, -20.622502 ], [ 117.441101, -20.745840 ], [ 118.229370, -20.372952 ], [ 118.833618, -20.262197 ], [ 118.987427, -20.043031 ], [ 119.251099, -19.952696 ], [ 119.803162, -19.975930 ], [ 120.855103, -19.681384 ], [ 121.398926, -19.238550 ], [ 121.654358, -18.703489 ], [ 122.239380, -18.195434 ], [ 122.286072, -17.798381 ], [ 122.310791, -17.253613 ], [ 123.011169, -16.404470 ], [ 123.431396, -17.266728 ], [ 123.750000, -17.119793 ], [ 123.857117, -17.067287 ], [ 123.750000, -16.922822 ], [ 123.502808, -16.594081 ], [ 123.750000, -16.214675 ], [ 123.815918, -16.109153 ], [ 123.969727, -16.185662 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 16 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 123.969727, -9.302728 ], [ 123.969727, -10.258168 ], [ 123.750000, -10.314919 ], [ 123.579712, -10.358151 ], [ 123.458862, -10.239249 ], [ 123.549500, -9.898510 ], [ 123.750000, -9.614290 ], [ 123.969727, -9.302728 ] ] ], [ [ [ 119.899292, -9.359643 ], [ 120.423889, -9.665738 ], [ 120.775452, -9.968851 ], [ 120.715027, -10.239249 ], [ 120.294800, -10.258168 ], [ 118.965454, -9.557417 ], [ 119.899292, -9.359643 ] ] ], [ [ [ 117.899780, -8.094581 ], [ 118.259583, -8.360975 ], [ 118.877563, -8.279445 ], [ 119.124756, -8.703214 ], [ 117.968445, -8.904067 ], [ 117.276306, -9.039715 ], [ 116.737976, -9.031578 ], [ 117.081299, -8.456072 ], [ 117.630615, -8.447922 ], [ 117.899780, -8.094581 ] ] ], [ [ [ 122.901306, -8.091862 ], [ 122.755737, -8.648911 ], [ 121.253357, -8.931200 ], [ 119.924011, -8.809082 ], [ 119.918518, -8.442488 ], [ 120.715027, -8.235955 ], [ 121.341248, -8.534849 ], [ 122.005920, -8.458789 ], [ 122.901306, -8.091862 ] ] ], [ [ [ 112.280273, -6.858259 ], [ 112.500000, -6.915521 ], [ 112.612610, -6.945512 ], [ 112.977905, -7.593940 ], [ 114.477539, -7.776309 ], [ 115.705261, -8.369127 ], [ 114.562683, -8.749366 ], [ 113.464050, -8.347388 ], [ 112.557678, -8.374562 ], [ 112.500000, -8.371845 ], [ 112.280273, -8.355540 ], [ 112.280273, -6.858259 ] ] ], [ [ [ 120.179443, 0.219726 ], [ 120.138245, 0.000000 ], [ 120.039368, -0.519097 ], [ 120.934753, -1.408855 ], [ 121.473083, -0.955766 ], [ 123.338013, -0.615223 ], [ 123.258362, -1.073851 ], [ 122.821655, -0.928304 ], [ 122.387695, -1.515936 ], [ 121.506042, -1.903031 ], [ 122.453613, -3.184394 ], [ 122.269592, -3.527128 ], [ 123.170471, -4.683192 ], [ 123.162231, -5.339848 ], [ 122.626648, -5.632386 ], [ 122.233887, -5.282418 ], [ 122.717285, -4.464165 ], [ 121.736755, -4.850154 ], [ 121.486816, -4.573687 ], [ 121.618652, -4.187551 ], [ 120.896301, -3.601142 ], [ 120.970459, -2.627558 ], [ 120.303040, -2.929326 ], [ 120.388184, -4.097151 ], [ 120.429382, -5.525777 ], [ 119.794922, -5.673384 ], [ 119.366455, -5.378132 ], [ 119.652100, -4.458689 ], [ 119.498291, -3.494231 ], [ 119.078064, -3.486006 ], [ 118.767700, -2.800398 ], [ 119.179688, -2.144580 ], [ 119.322510, -1.351193 ], [ 119.825134, 0.156555 ], [ 119.858093, 0.219726 ], [ 120.179443, 0.219726 ] ] ], [ [ [ 117.534485, 0.219726 ], [ 117.476807, 0.104370 ], [ 117.482300, 0.000000 ], [ 117.520752, -0.801976 ], [ 116.559448, -1.485734 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.012220 ], [ 115.999146, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.494231 ], [ 113.755188, -3.436658 ], [ 113.255310, -3.118576 ], [ 112.500000, -3.346180 ], [ 112.280273, -3.411983 ], [ 112.280273, 0.219726 ], [ 117.534485, 0.219726 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.127991, 6.929153 ], [ 117.641602, 6.424484 ], [ 117.688293, 5.987607 ], [ 118.347473, 5.708914 ], [ 119.179688, 5.408211 ], [ 119.108276, 5.017075 ], [ 118.438110, 4.967824 ], [ 118.616638, 4.480595 ], [ 117.880554, 4.138243 ], [ 117.012634, 4.308069 ], [ 115.864563, 4.308069 ], [ 115.518494, 3.170683 ], [ 115.133972, 2.822344 ], [ 114.620361, 1.430820 ], [ 113.804626, 1.219390 ], [ 112.859802, 1.499463 ], [ 112.500000, 1.433566 ], [ 112.379150, 1.411600 ], [ 112.280273, 1.323735 ], [ 112.280273, 2.973213 ], [ 112.500000, 3.014356 ], [ 112.994385, 3.104864 ], [ 113.711243, 3.894398 ], [ 114.202881, 4.527142 ], [ 114.658813, 4.009480 ], [ 114.867554, 4.349150 ], [ 115.345459, 4.319024 ], [ 115.449829, 5.449225 ], [ 116.218872, 6.143286 ], [ 116.724243, 6.926427 ], [ 117.127991, 6.929153 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Philippines", "sov_a3": "PHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Philippines", "adm0_a3": "PHL", "geou_dif": 0, "geounit": "Philippines", "gu_a3": "PHL", "su_dif": 0, "subunit": "Philippines", "su_a3": "PHL", "brk_diff": 0, "name": "Philippines", "name_long": "Philippines", "brk_a3": "PHL", "brk_name": "Philippines", "abbrev": "Phil.", "postal": "PH", "formal_en": "Republic of the Philippines", "name_sort": "Philippines", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 97976603, "gdp_md_est": 317500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PH", "iso_a3": "PHL", "iso_n3": "608", "un_a3": "608", "wb_a2": "PH", "wb_a3": "PHL", "woe_id": -99, "adm0_a3_is": "PHL", "adm0_a3_us": "PHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 123.969727, 7.566715 ], [ 123.750000, 7.730043 ], [ 123.609924, 7.836173 ], [ 123.294067, 7.419666 ], [ 122.824402, 7.457794 ], [ 122.082825, 6.901887 ], [ 121.918030, 7.193551 ], [ 122.310791, 8.037473 ], [ 122.939758, 8.317495 ], [ 123.486328, 8.695069 ], [ 123.750000, 8.358258 ], [ 123.840637, 8.241392 ], [ 123.969727, 8.287599 ], [ 123.969727, 7.566715 ] ] ], [ [ [ 119.509277, 11.372339 ], [ 119.553223, 11.178402 ], [ 119.687805, 10.555322 ], [ 119.028625, 10.004015 ], [ 118.504028, 9.318990 ], [ 117.171936, 8.369127 ], [ 117.663574, 9.069551 ], [ 118.385925, 9.684691 ], [ 118.984680, 10.377064 ], [ 119.410400, 11.178402 ], [ 119.509277, 11.372339 ] ] ], [ [ [ 123.969727, 11.092166 ], [ 123.969727, 10.268979 ], [ 123.750000, 10.066220 ], [ 123.620911, 9.952620 ], [ 123.307800, 9.318990 ], [ 122.994690, 9.023440 ], [ 122.379456, 9.714472 ], [ 122.585449, 9.982376 ], [ 122.835388, 10.263573 ], [ 122.945251, 10.884557 ], [ 123.497314, 10.941192 ], [ 123.335266, 10.268979 ], [ 123.750000, 10.806328 ], [ 123.969727, 11.092166 ] ] ], [ [ [ 123.110046, 11.393879 ], [ 123.099060, 11.178402 ], [ 123.099060, 11.167624 ], [ 122.637634, 10.741572 ], [ 122.000427, 10.441897 ], [ 121.964722, 10.906133 ], [ 122.003174, 11.178402 ], [ 122.033386, 11.393879 ], [ 123.110046, 11.393879 ] ] ], [ [ [ 123.969727, 6.934606 ], [ 123.969727, 6.806444 ], [ 123.936768, 6.885527 ], [ 123.969727, 6.934606 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Brunei", "sov_a3": "BRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brunei", "adm0_a3": "BRN", "geou_dif": 0, "geounit": "Brunei", "gu_a3": "BRN", "su_dif": 0, "subunit": "Brunei", "su_a3": "BRN", "brk_diff": 0, "name": "Brunei", "name_long": "Brunei Darussalam", "brk_a3": "BRN", "brk_name": "Brunei", "abbrev": "Brunei", "postal": "BN", "formal_en": "Negara Brunei Darussalam", "name_sort": "Brunei", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 12, "pop_est": 388190, "gdp_md_est": 20250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BN", "iso_a3": "BRN", "iso_n3": "096", "un_a3": "096", "wb_a2": "BN", "wb_a3": "BRN", "woe_id": -99, "adm0_a3_is": "BRN", "adm0_a3_us": "BRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 17, "abbrev_len": 6, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.449829, 5.449225 ], [ 115.345459, 4.319024 ], [ 114.867554, 4.349150 ], [ 114.658813, 4.009480 ], [ 114.202881, 4.527142 ], [ 114.598389, 4.902150 ], [ 115.449829, 5.449225 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 120.885315, 1.310005 ], [ 121.665344, 1.016182 ], [ 122.926025, 0.876126 ], [ 123.750000, 0.906334 ], [ 123.969727, 0.914573 ], [ 123.969727, 0.310362 ], [ 123.750000, 0.252685 ], [ 123.684082, 0.236205 ], [ 122.722778, 0.431209 ], [ 121.055603, 0.381772 ], [ 120.182190, 0.238952 ], [ 120.138245, 0.000000 ], [ 120.097046, -0.219726 ], [ 119.698792, -0.219726 ], [ 119.772949, 0.000000 ], [ 119.825134, 0.156555 ], [ 120.033875, 0.568533 ], [ 120.885315, 1.310005 ] ] ], [ [ [ 117.012634, 4.308069 ], [ 117.880554, 4.138243 ], [ 117.312012, 3.236498 ], [ 118.048096, 2.290039 ], [ 117.875061, 1.828913 ], [ 118.995667, 0.903588 ], [ 117.809143, 0.785498 ], [ 117.476807, 0.104370 ], [ 117.482300, 0.000000 ], [ 117.493286, -0.219726 ], [ 112.280273, -0.219726 ], [ 112.280273, 1.323735 ], [ 112.379150, 1.411600 ], [ 112.500000, 1.433566 ], [ 112.859802, 1.499463 ], [ 113.804626, 1.219390 ], [ 114.620361, 1.430820 ], [ 115.133972, 2.822344 ], [ 115.518494, 3.170683 ], [ 115.864563, 4.308069 ], [ 117.012634, 4.308069 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 113.348694, 22.146708 ], [ 113.238831, 22.052550 ], [ 112.936707, 21.943046 ], [ 112.500000, 21.787557 ], [ 112.280273, 21.708473 ], [ 112.280273, 22.146708 ], [ 113.348694, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Taiwan", "sov_a3": "TWN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Taiwan", "adm0_a3": "TWN", "geou_dif": 0, "geounit": "Taiwan", "gu_a3": "TWN", "su_dif": 0, "subunit": "Taiwan", "su_a3": "TWN", "brk_diff": 1, "name": "Taiwan", "name_long": "Taiwan", "brk_a3": "B77", "brk_name": "Taiwan", "abbrev": "Taiwan", "postal": "TW", "note_brk": "Self admin.; Claimed by China", "name_sort": "Taiwan", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 22974347, "gdp_md_est": 712000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TW", "iso_a3": "TWN", "iso_n3": "158", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "TWN", "adm0_a3_us": "TWN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 120.838623, 22.146708 ], [ 120.745239, 21.971066 ], [ 120.635376, 22.146708 ], [ 120.838623, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Philippines", "sov_a3": "PHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Philippines", "adm0_a3": "PHL", "geou_dif": 0, "geounit": "Philippines", "gu_a3": "PHL", "su_dif": 0, "subunit": "Philippines", "su_a3": "PHL", "brk_diff": 0, "name": "Philippines", "name_long": "Philippines", "brk_a3": "PHL", "brk_name": "Philippines", "abbrev": "Phil.", "postal": "PH", "formal_en": "Republic of the Philippines", "name_sort": "Philippines", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 97976603, "gdp_md_est": 317500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PH", "iso_a3": "PHL", "iso_n3": "608", "un_a3": "608", "wb_a2": "PH", "wb_a3": "PHL", "woe_id": -99, "adm0_a3_is": "PHL", "adm0_a3_us": "PHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 123.969727, 11.092166 ], [ 123.969727, 10.962764 ], [ 123.868103, 10.962764 ], [ 123.969727, 11.092166 ] ] ], [ [ [ 119.509277, 11.372339 ], [ 119.553223, 11.178402 ], [ 119.599915, 10.962764 ], [ 119.295044, 10.962764 ], [ 119.410400, 11.178402 ], [ 119.509277, 11.372339 ] ] ], [ [ [ 121.882324, 11.894228 ], [ 122.481079, 11.582288 ], [ 123.118286, 11.584979 ], [ 123.099060, 11.178402 ], [ 123.099060, 11.167624 ], [ 122.876587, 10.962764 ], [ 121.972961, 10.962764 ], [ 122.003174, 11.178402 ], [ 122.036133, 11.418110 ], [ 121.882324, 11.894228 ] ] ], [ [ [ 120.322266, 13.467093 ], [ 121.179199, 13.432367 ], [ 121.525269, 13.071452 ], [ 121.261597, 12.205811 ], [ 120.833130, 12.704651 ], [ 120.322266, 13.467093 ] ] ], [ [ [ 121.319275, 18.505657 ], [ 121.937256, 18.218916 ], [ 122.244873, 18.479609 ], [ 122.335510, 18.226743 ], [ 122.173462, 17.811456 ], [ 122.514038, 17.093542 ], [ 122.250366, 16.264777 ], [ 121.662598, 15.932279 ], [ 121.503296, 15.125159 ], [ 121.728516, 14.330921 ], [ 122.258606, 14.219126 ], [ 122.700806, 14.338904 ], [ 123.750000, 13.872747 ], [ 123.947754, 13.784737 ], [ 123.854370, 13.239945 ], [ 123.969727, 13.154376 ], [ 123.969727, 12.605496 ], [ 123.750000, 12.744837 ], [ 123.296814, 13.028642 ], [ 122.926025, 13.555222 ], [ 122.670593, 13.186468 ], [ 122.033386, 13.784737 ], [ 121.124268, 13.637980 ], [ 120.627136, 13.859414 ], [ 120.679321, 14.272369 ], [ 120.989685, 14.527756 ], [ 120.693054, 14.758947 ], [ 120.563965, 14.397439 ], [ 120.069580, 14.971320 ], [ 119.918518, 15.408672 ], [ 119.882812, 16.364945 ], [ 120.283813, 16.035255 ], [ 120.388184, 17.599521 ], [ 120.715027, 18.505657 ], [ 121.319275, 18.505657 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 121.514282, 32.138409 ], [ 121.676331, 31.952162 ], [ 121.907043, 31.693119 ], [ 121.890564, 30.951702 ], [ 121.261597, 30.678078 ], [ 121.503296, 30.145127 ], [ 122.091064, 29.833496 ], [ 121.937256, 29.020150 ], [ 121.681824, 28.226970 ], [ 121.124268, 28.137394 ], [ 120.393677, 27.054234 ], [ 119.583435, 25.743003 ], [ 118.655090, 24.549622 ], [ 117.279053, 23.626911 ], [ 115.889282, 22.783779 ], [ 114.763184, 22.669779 ], [ 114.150696, 22.225548 ], [ 113.804626, 22.550611 ], [ 113.238831, 22.052550 ], [ 112.936707, 21.943046 ], [ 112.368164, 21.739091 ], [ 112.280273, 21.739091 ], [ 112.280273, 32.138409 ], [ 121.514282, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Taiwan", "sov_a3": "TWN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Taiwan", "adm0_a3": "TWN", "geou_dif": 0, "geounit": "Taiwan", "gu_a3": "TWN", "su_dif": 0, "subunit": "Taiwan", "su_a3": "TWN", "brk_diff": 1, "name": "Taiwan", "name_long": "Taiwan", "brk_a3": "B77", "brk_name": "Taiwan", "abbrev": "Taiwan", "postal": "TW", "note_brk": "Self admin.; Claimed by China", "name_sort": "Taiwan", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 22974347, "gdp_md_est": 712000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TW", "iso_a3": "TWN", "iso_n3": "158", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "TWN", "adm0_a3_us": "TWN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.492310, 25.296854 ], [ 121.950989, 24.998505 ], [ 121.775208, 24.394632 ], [ 121.173706, 22.791375 ], [ 120.745239, 21.971066 ], [ 120.217896, 22.816694 ], [ 120.105286, 23.556434 ], [ 120.693054, 24.539628 ], [ 121.492310, 25.296854 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 123.969727, 41.145570 ], [ 123.969727, 39.867588 ], [ 123.750000, 39.823304 ], [ 122.865601, 39.639538 ], [ 122.129517, 39.170529 ], [ 121.052856, 38.899583 ], [ 121.585693, 39.361909 ], [ 121.374207, 39.751545 ], [ 122.167969, 40.423951 ], [ 121.637878, 40.946714 ], [ 120.767212, 40.595185 ], [ 119.638367, 39.899202 ], [ 119.023132, 39.253525 ], [ 118.042603, 39.204591 ], [ 117.531738, 38.739088 ], [ 118.059082, 38.063230 ], [ 118.877563, 37.898698 ], [ 118.910522, 37.448697 ], [ 119.701538, 37.158128 ], [ 120.822144, 37.870517 ], [ 121.709290, 37.481397 ], [ 122.357483, 37.455238 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.652996 ], [ 120.635376, 36.113471 ], [ 119.663086, 35.610418 ], [ 119.149475, 34.910710 ], [ 120.226135, 34.361576 ], [ 120.618896, 33.378706 ], [ 121.228638, 32.461109 ], [ 121.676331, 31.952162 ], [ 121.841125, 31.765537 ], [ 112.280273, 31.765537 ], [ 112.280273, 41.145570 ], [ 123.969727, 41.145570 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.141968, 49.066668 ], [ 116.040344, 48.922499 ], [ 115.482788, 48.136767 ], [ 115.740967, 47.728240 ], [ 116.306763, 47.853717 ], [ 117.292786, 47.698672 ], [ 118.061829, 48.067068 ], [ 118.863831, 47.748558 ], [ 119.770203, 47.049540 ], [ 119.663086, 46.692783 ], [ 118.872070, 46.805700 ], [ 117.419128, 46.673941 ], [ 116.716003, 46.388622 ], [ 115.982666, 45.727274 ], [ 114.458313, 45.340563 ], [ 113.461304, 44.809122 ], [ 112.500000, 44.999767 ], [ 112.434082, 45.013360 ], [ 112.280273, 45.038597 ], [ 112.280273, 49.066668 ], [ 116.141968, 49.066668 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 123.969727, 49.066668 ], [ 123.969727, 40.813809 ], [ 121.772461, 40.813809 ], [ 121.637878, 40.946714 ], [ 121.311035, 40.813809 ], [ 112.280273, 40.813809 ], [ 112.280273, 45.038597 ], [ 112.500000, 44.999767 ], [ 113.461304, 44.809122 ], [ 114.458313, 45.340563 ], [ 115.982666, 45.727274 ], [ 116.716003, 46.388622 ], [ 117.419128, 46.673941 ], [ 118.872070, 46.805700 ], [ 119.663086, 46.692783 ], [ 119.770203, 47.049540 ], [ 118.863831, 47.748558 ], [ 118.061829, 48.067068 ], [ 117.292786, 47.698672 ], [ 116.306763, 47.853717 ], [ 115.740967, 47.728240 ], [ 115.482788, 48.136767 ], [ 116.040344, 48.922499 ], [ 116.141968, 49.066668 ], [ 123.969727, 49.066668 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 123.969727, 55.899956 ], [ 123.969727, 53.380052 ], [ 123.750000, 53.424264 ], [ 123.568726, 53.460255 ], [ 122.244873, 53.432447 ], [ 121.000671, 53.252069 ], [ 120.176697, 52.754581 ], [ 120.723267, 52.517892 ], [ 120.737000, 51.964577 ], [ 120.179443, 51.643590 ], [ 119.278564, 50.583237 ], [ 119.286804, 50.143466 ], [ 117.877808, 49.512727 ], [ 116.677551, 49.889326 ], [ 115.485535, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.248961 ], [ 112.895508, 49.544816 ], [ 112.500000, 49.494891 ], [ 112.280273, 49.466339 ], [ 112.280273, 55.899956 ], [ 123.969727, 55.899956 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 114.362183, 50.248961 ], [ 114.960938, 50.141706 ], [ 115.485535, 49.806087 ], [ 116.677551, 49.889326 ], [ 116.191406, 49.135003 ], [ 116.040344, 48.922499 ], [ 115.935974, 48.777913 ], [ 112.280273, 48.777913 ], [ 112.280273, 49.466339 ], [ 112.500000, 49.494891 ], [ 112.895508, 49.544816 ], [ 114.362183, 50.248961 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 123.571472, 53.460255 ], [ 123.750000, 53.424264 ], [ 123.969727, 53.380052 ], [ 123.969727, 48.777913 ], [ 115.935974, 48.777913 ], [ 116.040344, 48.922499 ], [ 116.191406, 49.135003 ], [ 116.677551, 49.889326 ], [ 117.877808, 49.512727 ], [ 119.286804, 50.143466 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.643590 ], [ 120.737000, 51.964577 ], [ 120.723267, 52.517892 ], [ 120.176697, 52.754581 ], [ 121.000671, 53.252069 ], [ 122.244873, 53.432447 ], [ 123.571472, 53.460255 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 123.969727, 61.710706 ], [ 123.969727, 55.652798 ], [ 112.280273, 55.652798 ], [ 112.280273, 61.710706 ], [ 123.969727, 61.710706 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 123.969727, 66.600676 ], [ 123.969727, 61.501734 ], [ 112.280273, 61.501734 ], [ 112.280273, 66.600676 ], [ 123.969727, 66.600676 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 123.969727, 70.685421 ], [ 123.969727, 66.425537 ], [ 112.280273, 66.425537 ], [ 112.280273, 70.685421 ], [ 123.969727, 70.685421 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 113.019104, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.753511 ], [ 118.775940, 73.588258 ], [ 119.017639, 73.120161 ], [ 123.197937, 72.971993 ], [ 123.255615, 73.735059 ], [ 123.750000, 73.695009 ], [ 123.969727, 73.677264 ], [ 123.969727, 70.539543 ], [ 112.280273, 70.539543 ], [ 112.280273, 73.821760 ], [ 112.500000, 73.868376 ], [ 113.019104, 73.977144 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 113.032837, 73.958939 ], [ 112.931213, 73.958939 ], [ 113.019104, 73.977144 ], [ 113.032837, 73.958939 ] ] ], [ [ [ 112.280273, 76.451987 ], [ 112.500000, 76.404292 ], [ 113.329468, 76.222329 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.777405, 75.031921 ], [ 112.500000, 74.974352 ], [ 112.280273, 74.927999 ], [ 112.280273, 76.451987 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 19 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.219727, -33.925130 ], [ 135.000000, -33.669497 ], [ 134.612732, -33.222605 ], [ 134.085388, -32.847289 ], [ 134.272156, -32.616243 ], [ 132.989502, -32.010405 ], [ 132.286377, -31.982453 ], [ 132.225952, -31.952162 ], [ 131.857910, -31.765537 ], [ 135.219727, -31.765537 ], [ 135.219727, -33.925130 ] ] ], [ [ [ 128.902588, -31.765537 ], [ 128.226929, -31.952162 ], [ 127.100830, -32.280167 ], [ 126.147766, -32.215125 ], [ 125.087585, -32.727220 ], [ 124.219666, -32.957977 ], [ 124.027405, -33.481854 ], [ 123.750000, -33.790561 ], [ 123.659363, -33.888658 ], [ 123.530273, -33.893217 ], [ 123.530273, -31.765537 ], [ 128.902588, -31.765537 ] ] ], [ [ [ 135.219727, -34.279914 ], [ 135.219727, -34.483920 ], [ 135.205994, -34.477128 ], [ 135.219727, -34.279914 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 18 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.219727, -21.739091 ], [ 135.219727, -32.138409 ], [ 133.258667, -32.138409 ], [ 132.989502, -32.010405 ], [ 132.286377, -31.982453 ], [ 132.225952, -31.952162 ], [ 131.325073, -31.494262 ], [ 129.534302, -31.590234 ], [ 128.226929, -31.952162 ], [ 127.592468, -32.138409 ], [ 123.530273, -32.138409 ], [ 123.530273, -21.739091 ], [ 135.219727, -21.739091 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 17 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 132.355042, -11.127202 ], [ 132.489624, -11.178402 ], [ 133.016968, -11.375031 ], [ 133.549805, -11.784014 ], [ 134.393005, -12.042007 ], [ 134.675903, -11.939914 ], [ 135.000000, -12.098410 ], [ 135.219727, -12.208496 ], [ 135.219727, -22.146708 ], [ 123.530273, -22.146708 ], [ 123.530273, -17.222135 ], [ 123.750000, -17.119793 ], [ 123.857117, -17.067287 ], [ 123.750000, -16.922822 ], [ 123.530273, -16.630929 ], [ 123.530273, -16.554594 ], [ 123.750000, -16.214675 ], [ 123.815918, -16.109153 ], [ 124.258118, -16.325411 ], [ 124.378967, -15.564836 ], [ 124.925537, -15.074776 ], [ 125.167236, -14.679254 ], [ 125.669861, -14.509144 ], [ 125.683594, -14.229776 ], [ 126.123047, -14.346887 ], [ 126.142273, -14.093957 ], [ 126.581726, -13.952727 ], [ 127.065125, -13.816744 ], [ 127.803955, -14.275030 ], [ 128.358765, -14.867814 ], [ 128.984985, -14.875778 ], [ 129.619446, -14.968667 ], [ 129.407959, -14.418720 ], [ 129.888611, -13.616625 ], [ 130.339050, -13.354882 ], [ 130.182495, -13.106230 ], [ 130.616455, -12.535796 ], [ 131.223450, -12.181650 ], [ 131.734314, -12.302435 ], [ 132.574768, -12.111837 ], [ 132.555542, -11.601122 ], [ 131.822205, -11.272693 ], [ 132.173767, -11.178402 ], [ 132.355042, -11.127202 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 16 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.966736, -8.890499 ], [ 125.068359, -9.088536 ], [ 125.087585, -9.392161 ], [ 124.433899, -10.139228 ], [ 123.750000, -10.314919 ], [ 123.579712, -10.358151 ], [ 123.530273, -10.309515 ], [ 123.530273, -9.974261 ], [ 123.549500, -9.898510 ], [ 123.750000, -9.614290 ], [ 123.977966, -9.289175 ], [ 124.966736, -8.890499 ] ] ], [ [ [ 134.497375, -5.443757 ], [ 134.725342, -5.736243 ], [ 134.722595, -6.214282 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.288635, -5.782699 ], [ 134.497375, -5.443757 ] ] ], [ [ [ 132.379761, -0.368039 ], [ 133.983765, -0.780005 ], [ 134.143066, -1.150740 ], [ 134.420471, -2.767478 ], [ 135.000000, -3.102121 ], [ 135.219727, -3.228271 ], [ 135.219727, -4.466904 ], [ 135.162048, -4.461427 ], [ 135.000000, -4.360105 ], [ 133.662415, -3.538093 ], [ 133.365784, -4.023179 ], [ 132.981262, -4.110848 ], [ 132.756042, -3.743671 ], [ 132.753296, -3.310534 ], [ 131.989746, -2.819601 ], [ 133.066406, -2.460181 ], [ 133.777771, -2.479389 ], [ 133.695374, -2.213195 ], [ 132.231445, -2.210450 ], [ 131.835938, -1.614776 ], [ 130.940552, -1.430820 ], [ 130.517578, -0.936543 ], [ 131.866150, -0.694868 ], [ 132.379761, -0.368039 ] ] ], [ [ [ 129.369507, -2.800398 ], [ 130.470886, -3.091151 ], [ 130.833435, -3.856034 ], [ 129.990234, -3.444883 ], [ 129.152527, -3.362631 ], [ 128.589478, -3.428433 ], [ 127.897339, -3.392791 ], [ 128.133545, -2.841547 ], [ 129.369507, -2.800398 ] ] ], [ [ [ 126.999207, -3.126804 ], [ 127.249146, -3.458591 ], [ 126.872864, -3.790262 ], [ 126.183472, -3.606625 ], [ 125.988464, -3.176167 ], [ 126.999207, -3.126804 ] ] ], [ [ [ 128.084106, 0.219726 ], [ 128.029175, 0.000000 ], [ 127.966003, -0.249938 ], [ 128.377991, -0.777259 ], [ 128.097839, -0.898096 ], [ 127.694092, -0.266417 ], [ 127.633667, 0.000000 ], [ 127.581482, 0.219726 ], [ 128.084106, 0.219726 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "East Timor", "sov_a3": "TLS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "East Timor", "adm0_a3": "TLS", "geou_dif": 0, "geounit": "East Timor", "gu_a3": "TLS", "su_dif": 0, "subunit": "East Timor", "su_a3": "TLS", "brk_diff": 0, "name": "Timor-Leste", "name_long": "Timor-Leste", "brk_a3": "TLS", "brk_name": "Timor-Leste", "abbrev": "T.L.", "postal": "TL", "formal_en": "Democratic Republic of Timor-Leste", "name_sort": "Timor-Leste", "name_alt": "East Timor", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1131612, "gdp_md_est": 2520, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "TL", "iso_a3": "TLS", "iso_n3": "626", "un_a3": "626", "wb_a2": "TP", "wb_a3": "TMP", "woe_id": -99, "adm0_a3_is": "TLS", "adm0_a3_us": "TLS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.955261, -8.271291 ], [ 127.334290, -8.396300 ], [ 126.966248, -8.667918 ], [ 125.925293, -9.104809 ], [ 125.087585, -9.392161 ], [ 125.068359, -9.088536 ], [ 124.966736, -8.890499 ], [ 125.084839, -8.654342 ], [ 125.944519, -8.431621 ], [ 126.642151, -8.396300 ], [ 126.955261, -8.271291 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 132.355042, -11.127202 ], [ 132.489624, -11.178402 ], [ 133.016968, -11.375031 ], [ 133.041687, -11.393879 ], [ 132.091370, -11.393879 ], [ 131.822205, -11.272693 ], [ 132.173767, -11.178402 ], [ 132.355042, -11.127202 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 15 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Philippines", "sov_a3": "PHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Philippines", "adm0_a3": "PHL", "geou_dif": 0, "geounit": "Philippines", "gu_a3": "PHL", "su_dif": 0, "subunit": "Philippines", "su_a3": "PHL", "brk_diff": 0, "name": "Philippines", "name_long": "Philippines", "brk_a3": "PHL", "brk_name": "Philippines", "abbrev": "Phil.", "postal": "PH", "formal_en": "Republic of the Philippines", "name_sort": "Philippines", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 97976603, "gdp_md_est": 317500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PH", "iso_a3": "PHL", "iso_n3": "608", "un_a3": "608", "wb_a2": "PH", "wb_a3": "PHL", "woe_id": -99, "adm0_a3_is": "PHL", "adm0_a3_us": "PHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.411682, 9.760491 ], [ 126.221924, 9.286465 ], [ 126.304321, 8.784654 ], [ 126.375732, 8.415319 ], [ 126.477356, 7.751816 ], [ 126.535034, 7.190826 ], [ 126.194458, 6.274348 ], [ 125.829163, 7.294363 ], [ 125.362244, 6.787353 ], [ 125.680847, 6.050430 ], [ 125.395203, 5.583184 ], [ 124.219666, 6.162401 ], [ 123.936768, 6.885527 ], [ 124.241638, 7.362467 ], [ 123.750000, 7.730043 ], [ 123.609924, 7.836173 ], [ 123.530273, 7.730043 ], [ 123.530273, 8.640765 ], [ 123.750000, 8.358258 ], [ 123.840637, 8.241392 ], [ 124.601440, 8.515836 ], [ 124.763489, 8.961045 ], [ 125.469360, 8.988175 ], [ 125.411682, 9.760491 ] ] ], [ [ [ 124.076843, 11.234980 ], [ 124.071350, 11.178402 ], [ 123.980713, 10.279789 ], [ 123.750000, 10.066220 ], [ 123.620911, 9.952620 ], [ 123.530273, 9.763198 ], [ 123.530273, 10.520219 ], [ 123.750000, 10.806328 ], [ 124.035645, 11.178402 ], [ 124.076843, 11.234980 ] ] ], [ [ [ 125.694580, 11.393879 ], [ 125.749512, 11.178402 ], [ 125.782471, 11.046343 ], [ 125.397949, 11.178402 ], [ 125.010681, 11.313094 ], [ 125.018921, 11.178402 ], [ 125.032654, 10.976246 ], [ 125.277100, 10.360853 ], [ 124.799194, 10.136524 ], [ 124.757996, 10.838701 ], [ 124.458618, 10.889951 ], [ 124.384460, 11.178402 ], [ 124.326782, 11.393879 ], [ 125.694580, 11.393879 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 127.930298, 2.174771 ], [ 128.001709, 1.631249 ], [ 128.592224, 1.543392 ], [ 128.685608, 1.134264 ], [ 128.633423, 0.260924 ], [ 128.119812, 0.357053 ], [ 128.029175, 0.000000 ], [ 127.974243, -0.219726 ], [ 127.683105, -0.219726 ], [ 127.633667, 0.000000 ], [ 127.397461, 1.013436 ], [ 127.597961, 1.812442 ], [ 127.930298, 2.174771 ] ] ], [ [ [ 125.065613, 1.644977 ], [ 125.238647, 1.419838 ], [ 124.436646, 0.428463 ], [ 123.750000, 0.252685 ], [ 123.684082, 0.236205 ], [ 123.530273, 0.269164 ], [ 123.530273, 0.898096 ], [ 123.750000, 0.906334 ], [ 124.076843, 0.917319 ], [ 125.065613, 1.644977 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 14 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Philippines", "sov_a3": "PHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Philippines", "adm0_a3": "PHL", "geou_dif": 0, "geounit": "Philippines", "gu_a3": "PHL", "su_dif": 0, "subunit": "Philippines", "su_a3": "PHL", "brk_diff": 0, "name": "Philippines", "name_long": "Philippines", "brk_a3": "PHL", "brk_name": "Philippines", "abbrev": "Phil.", "postal": "PH", "formal_en": "Republic of the Philippines", "name_sort": "Philippines", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 97976603, "gdp_md_est": 317500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PH", "iso_a3": "PHL", "iso_n3": "608", "un_a3": "608", "wb_a2": "PH", "wb_a3": "PHL", "woe_id": -99, "adm0_a3_is": "PHL", "adm0_a3_us": "PHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.076843, 11.234980 ], [ 124.071350, 11.178402 ], [ 124.049377, 10.962764 ], [ 123.868103, 10.962764 ], [ 124.035645, 11.178402 ], [ 124.076843, 11.234980 ] ] ], [ [ [ 124.266357, 12.559925 ], [ 125.224915, 12.535796 ], [ 125.502319, 12.162856 ], [ 125.749512, 11.178402 ], [ 125.782471, 11.046343 ], [ 125.397949, 11.178402 ], [ 125.010681, 11.313094 ], [ 125.018921, 11.178402 ], [ 125.032654, 10.976246 ], [ 125.035400, 10.962764 ], [ 124.439392, 10.962764 ], [ 124.384460, 11.178402 ], [ 124.302063, 11.496174 ], [ 124.889832, 11.418110 ], [ 124.876099, 11.794769 ], [ 124.266357, 12.559925 ] ] ], [ [ [ 123.530273, 13.968719 ], [ 123.750000, 13.872747 ], [ 123.947754, 13.784737 ], [ 123.854370, 13.239945 ], [ 124.181213, 12.999205 ], [ 124.076843, 12.538478 ], [ 123.750000, 12.744837 ], [ 123.530273, 12.881425 ], [ 123.530273, 13.968719 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 13 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "name_sort": "Japan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "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": "Polygon", "coordinates": [ [ [ 131.599731, 32.138409 ], [ 131.528320, 31.952162 ], [ 131.330566, 31.452096 ], [ 130.685120, 31.031755 ], [ 130.201721, 31.419288 ], [ 130.347290, 31.952162 ], [ 130.396729, 32.138409 ], [ 131.599731, 32.138409 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 126.216431, 41.145570 ], [ 126.180725, 41.108330 ], [ 125.919800, 40.979898 ], [ 125.079346, 40.570154 ], [ 124.263611, 39.928695 ], [ 123.750000, 39.823304 ], [ 123.530273, 39.776880 ], [ 123.530273, 41.145570 ], [ 126.216431, 41.145570 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "North Korea", "sov_a3": "PRK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "North Korea", "adm0_a3": "PRK", "geou_dif": 0, "geounit": "North Korea", "gu_a3": "PRK", "su_dif": 0, "subunit": "North Korea", "su_a3": "PRK", "brk_diff": 0, "name": "Dem. Rep. Korea", "name_long": "Dem. Rep. Korea", "brk_a3": "PRK", "brk_name": "Dem. Rep. Korea", "abbrev": "N.K.", "postal": "KP", "formal_en": "Democratic People's Republic of Korea", "name_sort": "Korea, Dem. Rep.", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 22665345, "gdp_md_est": 40000, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KP", "iso_a3": "PRK", "iso_n3": "408", "un_a3": "408", "wb_a2": "KP", "wb_a3": "PRK", "woe_id": -99, "adm0_a3_is": "PRK", "adm0_a3_us": "PRK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 15, "long_len": 15, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.690857, 41.145570 ], [ 129.699097, 40.979898 ], [ 129.704590, 40.884448 ], [ 129.185486, 40.661889 ], [ 129.009705, 40.486649 ], [ 128.630676, 40.191463 ], [ 127.966003, 40.025511 ], [ 127.532043, 39.757880 ], [ 127.501831, 39.325799 ], [ 127.383728, 39.215231 ], [ 127.781982, 39.051185 ], [ 128.347778, 38.612578 ], [ 128.204956, 38.371809 ], [ 127.779236, 38.305025 ], [ 127.070618, 38.257593 ], [ 126.683350, 37.805444 ], [ 126.235657, 37.842326 ], [ 126.172485, 37.751172 ], [ 125.689087, 37.942031 ], [ 125.568237, 37.753344 ], [ 125.274353, 37.670777 ], [ 125.238647, 37.857507 ], [ 124.980469, 37.950695 ], [ 124.711304, 38.108628 ], [ 124.985962, 38.550313 ], [ 125.219421, 38.666212 ], [ 125.131531, 38.850403 ], [ 125.384216, 39.389509 ], [ 125.321045, 39.552765 ], [ 124.736023, 39.660685 ], [ 124.263611, 39.928695 ], [ 125.079346, 40.570154 ], [ 125.919800, 40.979898 ], [ 126.180725, 41.108330 ], [ 126.216431, 41.145570 ], [ 129.690857, 41.145570 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Korea", "sov_a3": "KOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Korea", "adm0_a3": "KOR", "geou_dif": 0, "geounit": "South Korea", "gu_a3": "KOR", "su_dif": 0, "subunit": "South Korea", "su_a3": "KOR", "brk_diff": 0, "name": "Korea", "name_long": "Republic of Korea", "brk_a3": "KOR", "brk_name": "Republic of Korea", "abbrev": "S.K.", "postal": "KR", "formal_en": "Republic of Korea", "name_sort": "Korea, Rep.", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 48508972, "gdp_md_est": 1335000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "KR", "iso_a3": "KOR", "iso_n3": "410", "un_a3": "410", "wb_a2": "KR", "wb_a3": "KOR", "woe_id": -99, "adm0_a3_is": "KOR", "adm0_a3_us": "KOR", "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": 17, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.347778, 38.612578 ], [ 129.210205, 37.433431 ], [ 129.460144, 36.785092 ], [ 129.465637, 35.632744 ], [ 129.089355, 35.083956 ], [ 128.185730, 34.890437 ], [ 127.386475, 34.477128 ], [ 126.485596, 34.391046 ], [ 126.372986, 34.935482 ], [ 126.557007, 35.686302 ], [ 126.114807, 36.725677 ], [ 126.859131, 36.894998 ], [ 126.172485, 37.751172 ], [ 126.235657, 37.842326 ], [ 126.683350, 37.805444 ], [ 127.070618, 38.257593 ], [ 127.779236, 38.305025 ], [ 128.204956, 38.371809 ], [ 128.347778, 38.612578 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "name_sort": "Japan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "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": [ [ [ [ 134.607239, 35.733136 ], [ 135.000000, 35.657296 ], [ 135.219727, 35.614884 ], [ 135.219727, 33.792844 ], [ 135.120850, 33.849889 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 133.338318, 34.377446 ], [ 132.154541, 33.906896 ], [ 130.984497, 33.886377 ], [ 131.997986, 33.151349 ], [ 131.528320, 31.952162 ], [ 131.454163, 31.765537 ], [ 130.295105, 31.765537 ], [ 130.347290, 31.952162 ], [ 130.446167, 32.319634 ], [ 129.814453, 32.611616 ], [ 129.407959, 33.296099 ], [ 130.352783, 33.605470 ], [ 130.877380, 34.234512 ], [ 131.882629, 34.750640 ], [ 132.615967, 35.433820 ], [ 134.607239, 35.733136 ] ] ], [ [ [ 133.901367, 34.366111 ], [ 134.637451, 34.150454 ], [ 134.763794, 33.806538 ], [ 134.200745, 33.201924 ], [ 133.791504, 33.523079 ], [ 133.277893, 33.291508 ], [ 133.014221, 32.706422 ], [ 132.360535, 32.990236 ], [ 132.368774, 33.465817 ], [ 132.923584, 34.061761 ], [ 133.492126, 33.945638 ], [ 133.901367, 34.366111 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 135.219727, 49.066668 ], [ 135.219727, 43.719505 ], [ 135.000000, 43.518680 ], [ 134.868164, 43.399061 ], [ 133.536072, 42.811522 ], [ 132.904358, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.778503, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.930285 ], [ 131.286621, 44.113226 ], [ 131.022949, 44.968684 ], [ 131.882629, 45.321254 ], [ 133.096619, 45.145242 ], [ 133.769531, 46.117038 ], [ 134.110107, 47.213971 ], [ 134.500122, 47.580231 ], [ 135.000000, 48.434668 ], [ 135.024719, 48.478384 ], [ 135.000000, 48.474742 ], [ 133.371277, 48.184401 ], [ 132.506104, 47.789171 ], [ 130.987244, 47.791016 ], [ 130.580750, 48.730832 ], [ 130.262146, 48.922499 ], [ 130.020447, 49.066668 ], [ 135.219727, 49.066668 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 130.020447, 49.066668 ], [ 130.262146, 48.922499 ], [ 130.580750, 48.730832 ], [ 130.987244, 47.791016 ], [ 132.506104, 47.789171 ], [ 133.371277, 48.184401 ], [ 135.000000, 48.474742 ], [ 135.024719, 48.478384 ], [ 135.000000, 48.434668 ], [ 134.500122, 47.580231 ], [ 134.110107, 47.213971 ], [ 133.769531, 46.117038 ], [ 133.096619, 45.145242 ], [ 131.882629, 45.321254 ], [ 131.022949, 44.968684 ], [ 131.286621, 44.113226 ], [ 131.143799, 42.930285 ], [ 130.632935, 42.904136 ], [ 130.638428, 42.395066 ], [ 129.992981, 42.986567 ], [ 129.594727, 42.425484 ], [ 128.051147, 41.996243 ], [ 128.207703, 41.467428 ], [ 127.342529, 41.504464 ], [ 126.867371, 41.818408 ], [ 126.180725, 41.108330 ], [ 125.919800, 40.979898 ], [ 125.576477, 40.813809 ], [ 123.530273, 40.813809 ], [ 123.530273, 49.066668 ], [ 130.020447, 49.066668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "North Korea", "sov_a3": "PRK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "North Korea", "adm0_a3": "PRK", "geou_dif": 0, "geounit": "North Korea", "gu_a3": "PRK", "su_dif": 0, "subunit": "North Korea", "su_a3": "PRK", "brk_diff": 0, "name": "Dem. Rep. Korea", "name_long": "Dem. Rep. Korea", "brk_a3": "PRK", "brk_name": "Dem. Rep. Korea", "abbrev": "N.K.", "postal": "KP", "formal_en": "Democratic People's Republic of Korea", "name_sort": "Korea, Dem. Rep.", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 22665345, "gdp_md_est": 40000, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KP", "iso_a3": "PRK", "iso_n3": "408", "un_a3": "408", "wb_a2": "KP", "wb_a3": "PRK", "woe_id": -99, "adm0_a3_is": "PRK", "adm0_a3_us": "PRK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 15, "long_len": 15, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.992981, 42.986567 ], [ 130.638428, 42.395066 ], [ 130.778503, 42.220382 ], [ 130.399475, 42.281373 ], [ 129.965515, 41.943149 ], [ 129.666138, 41.603121 ], [ 129.699097, 40.979898 ], [ 129.704590, 40.884448 ], [ 129.542542, 40.813809 ], [ 125.576477, 40.813809 ], [ 125.919800, 40.979898 ], [ 126.180725, 41.108330 ], [ 126.867371, 41.818408 ], [ 127.342529, 41.504464 ], [ 128.207703, 41.467428 ], [ 128.051147, 41.996243 ], [ 129.594727, 42.425484 ], [ 129.992981, 42.986567 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 135.219727, 55.899956 ], [ 135.219727, 54.789601 ], [ 135.123596, 54.730964 ], [ 135.219727, 54.723034 ], [ 135.219727, 48.777913 ], [ 130.501099, 48.777913 ], [ 130.262146, 48.922499 ], [ 129.396973, 49.441343 ], [ 127.655640, 49.761752 ], [ 127.284851, 50.739932 ], [ 126.938782, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.944519, 52.794458 ], [ 125.065613, 53.161594 ], [ 123.750000, 53.424264 ], [ 123.568726, 53.460255 ], [ 123.530273, 53.458620 ], [ 123.530273, 55.899956 ], [ 135.219727, 55.899956 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 123.571472, 53.460255 ], [ 123.750000, 53.424264 ], [ 125.065613, 53.161594 ], [ 125.944519, 52.794458 ], [ 126.562500, 51.784834 ], [ 126.938782, 51.354631 ], [ 127.284851, 50.739932 ], [ 127.655640, 49.761752 ], [ 129.396973, 49.441343 ], [ 130.262146, 48.922499 ], [ 130.501099, 48.777913 ], [ 123.530273, 48.777913 ], [ 123.530273, 53.458620 ], [ 123.571472, 53.460255 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 135.219727, 61.710706 ], [ 135.219727, 55.652798 ], [ 123.530273, 55.652798 ], [ 123.530273, 61.710706 ], [ 135.219727, 61.710706 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 135.219727, 66.600676 ], [ 135.219727, 61.501734 ], [ 123.530273, 61.501734 ], [ 123.530273, 66.600676 ], [ 135.219727, 66.600676 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 135.219727, 70.685421 ], [ 135.219727, 66.425537 ], [ 123.530273, 66.425537 ], [ 123.530273, 70.685421 ], [ 135.219727, 70.685421 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 123.530273, 73.712735 ], [ 123.750000, 73.695009 ], [ 125.378723, 73.560299 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.039425 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.787814 ], [ 132.253418, 71.836547 ], [ 133.857422, 71.386895 ], [ 135.000000, 71.567510 ], [ 135.219727, 71.602216 ], [ 135.219727, 70.539543 ], [ 123.530273, 70.539543 ], [ 123.530273, 73.712735 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 20 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 145.456238, -40.813809 ], [ 145.920410, -40.979898 ], [ 146.250000, -41.095912 ], [ 146.362610, -41.137296 ], [ 146.469727, -41.110399 ], [ 146.469727, -43.570442 ], [ 146.250000, -43.558501 ], [ 146.046753, -43.548548 ], [ 145.431519, -42.692530 ], [ 145.294189, -42.032974 ], [ 144.717407, -41.162114 ], [ 144.725647, -40.979898 ], [ 144.736633, -40.813809 ], [ 145.456238, -40.813809 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 19 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.742126, -40.703546 ], [ 145.395813, -40.790939 ], [ 145.920410, -40.979898 ], [ 146.362610, -41.137296 ], [ 146.469727, -41.110399 ], [ 146.469727, -41.145570 ], [ 144.717407, -41.145570 ], [ 144.725647, -40.979898 ], [ 144.742126, -40.703546 ] ] ], [ [ [ 146.469727, -31.765537 ], [ 146.469727, -38.927366 ], [ 146.315918, -39.034120 ], [ 146.250000, -38.997841 ], [ 145.489197, -38.593261 ], [ 144.876709, -38.417014 ], [ 145.030518, -37.894363 ], [ 144.483948, -38.084851 ], [ 143.607788, -38.807611 ], [ 142.745361, -38.537424 ], [ 142.176819, -38.378269 ], [ 141.605530, -38.307181 ], [ 140.635986, -38.017804 ], [ 139.990540, -37.402892 ], [ 139.806519, -36.641978 ], [ 139.573059, -36.137875 ], [ 139.081421, -35.730907 ], [ 138.120117, -35.610418 ], [ 138.446960, -35.126648 ], [ 138.205261, -34.384246 ], [ 137.719116, -35.074965 ], [ 136.829224, -35.259077 ], [ 137.351074, -34.705493 ], [ 137.502136, -34.129995 ], [ 137.889404, -33.639776 ], [ 137.809753, -32.898038 ], [ 136.996765, -33.751748 ], [ 136.370544, -34.093610 ], [ 135.988770, -34.888184 ], [ 135.205994, -34.477128 ], [ 135.238953, -33.947917 ], [ 135.000000, -33.669497 ], [ 134.780273, -33.415395 ], [ 134.780273, -31.765537 ], [ 146.469727, -31.765537 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 18 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 146.469727, -21.739091 ], [ 146.469727, -32.138409 ], [ 134.780273, -32.138409 ], [ 134.780273, -21.739091 ], [ 146.469727, -21.739091 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 17 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 142.684937, -10.962764 ], [ 142.794800, -11.156845 ], [ 142.797546, -11.178402 ], [ 142.866211, -11.784014 ], [ 143.113403, -11.904979 ], [ 143.157349, -12.323903 ], [ 143.519897, -12.833226 ], [ 143.596802, -13.400307 ], [ 143.561096, -13.763396 ], [ 143.920898, -14.546367 ], [ 144.563599, -14.168534 ], [ 144.893188, -14.594216 ], [ 145.373840, -14.984586 ], [ 145.269470, -15.427206 ], [ 145.483704, -16.283233 ], [ 145.634766, -16.783506 ], [ 145.887451, -16.904428 ], [ 146.159363, -17.759150 ], [ 146.063232, -18.278910 ], [ 146.250000, -18.669665 ], [ 146.387329, -18.958246 ], [ 146.469727, -18.997206 ], [ 146.469727, -22.146708 ], [ 134.780273, -22.146708 ], [ 134.780273, -11.990965 ], [ 135.000000, -12.098410 ], [ 135.296631, -12.246076 ], [ 135.881653, -11.961410 ], [ 136.257935, -12.047379 ], [ 136.491394, -11.856599 ], [ 136.950073, -12.350734 ], [ 136.683655, -12.886780 ], [ 136.304626, -13.290738 ], [ 135.961304, -13.322812 ], [ 136.076660, -13.723377 ], [ 135.782776, -14.221789 ], [ 135.428467, -14.713791 ], [ 135.499878, -14.995199 ], [ 136.293640, -15.548960 ], [ 137.062683, -15.868883 ], [ 137.579041, -16.214675 ], [ 138.301392, -16.807170 ], [ 138.584290, -16.804541 ], [ 139.106140, -17.062036 ], [ 139.259949, -17.368989 ], [ 140.213013, -17.709445 ], [ 140.874939, -17.368989 ], [ 141.069946, -16.830832 ], [ 141.273193, -16.388661 ], [ 141.396790, -15.839820 ], [ 141.701660, -15.042948 ], [ 141.561584, -14.559659 ], [ 141.632996, -14.269707 ], [ 141.517639, -13.696693 ], [ 141.649475, -12.942999 ], [ 141.841736, -12.739479 ], [ 141.685181, -12.407071 ], [ 141.926880, -11.875414 ], [ 142.116394, -11.326560 ], [ 142.130127, -11.178402 ], [ 142.141113, -11.040951 ], [ 142.220764, -10.962764 ], [ 142.684937, -10.962764 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 16 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 138.328857, -1.702630 ], [ 139.183044, -2.051258 ], [ 139.924622, -2.408043 ], [ 140.998535, -2.600120 ], [ 141.031494, -9.115656 ], [ 140.141602, -8.295752 ], [ 139.125366, -8.094581 ], [ 138.880920, -8.379997 ], [ 137.612000, -8.409885 ], [ 138.037720, -7.596663 ], [ 138.666687, -7.318882 ], [ 138.405762, -6.230664 ], [ 137.925110, -5.391805 ], [ 135.988770, -4.546308 ], [ 135.162048, -4.461427 ], [ 135.000000, -4.360105 ], [ 134.780273, -4.225900 ], [ 134.780273, -2.975956 ], [ 135.000000, -3.102121 ], [ 135.455933, -3.365373 ], [ 136.290894, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 142.514648, -10.666006 ], [ 142.794800, -11.156845 ], [ 142.797546, -11.178402 ], [ 142.822266, -11.393879 ], [ 142.094421, -11.393879 ], [ 142.116394, -11.326560 ], [ 142.130127, -11.178402 ], [ 142.141113, -11.040951 ], [ 142.514648, -10.666006 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Papua New Guinea", "sov_a3": "PNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Papua New Guinea", "adm0_a3": "PNG", "geou_dif": 0, "geounit": "Papua New Guinea", "gu_a3": "PNG", "su_dif": 1, "subunit": "Papua New Guinea", "su_a3": "PN1", "brk_diff": 0, "name": "Papua New Guinea", "name_long": "Papua New Guinea", "brk_a3": "PN1", "brk_name": "Papua New Guinea", "abbrev": "P.N.G.", "postal": "PG", "formal_en": "Independent State of Papua New Guinea", "name_sort": "Papua New Guinea", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 6057263, "gdp_md_est": 13210, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PG", "iso_a3": "PNG", "iso_n3": "598", "un_a3": "598", "wb_a2": "PG", "wb_a3": "PNG", "woe_id": -99, "adm0_a3_is": "PNG", "adm0_a3_us": "PNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 16, "long_len": 16, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 140.998535, -2.600120 ], [ 142.734375, -3.288598 ], [ 144.582825, -3.858774 ], [ 145.272217, -4.371059 ], [ 145.829773, -4.874784 ], [ 145.980835, -5.462896 ], [ 146.250000, -5.564049 ], [ 146.469727, -5.646052 ], [ 146.469727, -8.776511 ], [ 146.250000, -8.407168 ], [ 146.046753, -8.067388 ], [ 144.742126, -7.629331 ], [ 143.896179, -7.915073 ], [ 143.283691, -8.244110 ], [ 143.412781, -8.982749 ], [ 142.627258, -9.324411 ], [ 142.066956, -9.159044 ], [ 141.031494, -9.115656 ], [ 140.998535, -2.600120 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "name_sort": "Japan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "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": "Polygon", "coordinates": [ [ [ 141.459961, 41.145570 ], [ 141.525879, 40.979898 ], [ 141.913147, 39.991851 ], [ 141.882935, 39.181175 ], [ 140.957336, 38.175592 ], [ 140.973816, 37.142803 ], [ 140.597534, 36.346103 ], [ 140.773315, 35.844535 ], [ 140.251465, 35.140125 ], [ 138.974304, 34.669359 ], [ 137.216492, 34.608345 ], [ 135.791016, 33.465817 ], [ 135.120850, 33.849889 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 134.780273, 34.560859 ], [ 134.780273, 35.699686 ], [ 135.000000, 35.657296 ], [ 135.675659, 35.527756 ], [ 136.722107, 37.306829 ], [ 137.389526, 36.829073 ], [ 138.856201, 37.829311 ], [ 139.424744, 38.216604 ], [ 140.053711, 39.440435 ], [ 139.880676, 40.563895 ], [ 140.160828, 40.979898 ], [ 140.270691, 41.145570 ], [ 141.459961, 41.145570 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 11 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 140.234985, 49.066668 ], [ 140.193787, 48.922499 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.000861 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.145242 ], [ 135.513611, 43.990839 ], [ 135.000000, 43.518680 ], [ 134.868164, 43.399061 ], [ 134.780273, 43.361132 ], [ 134.780273, 48.059725 ], [ 135.000000, 48.434668 ], [ 135.024719, 48.478384 ], [ 135.000000, 48.474742 ], [ 134.780273, 48.434668 ], [ 134.780273, 49.066668 ], [ 140.234985, 49.066668 ] ] ], [ [ [ 143.069458, 49.066668 ], [ 143.006287, 48.922499 ], [ 142.558594, 47.862931 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.741743 ], [ 142.091675, 45.968334 ], [ 141.904907, 46.807580 ], [ 142.017517, 47.781789 ], [ 141.902161, 48.859294 ], [ 141.965332, 49.066668 ], [ 143.069458, 49.066668 ] ] ], [ [ [ 144.602051, 49.066668 ], [ 144.651489, 48.976612 ], [ 144.247742, 49.066668 ], [ 144.602051, 49.066668 ] ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 135.024719, 48.478384 ], [ 135.000000, 48.434668 ], [ 134.780273, 48.059725 ], [ 134.780273, 48.434668 ], [ 135.000000, 48.474742 ], [ 135.024719, 48.478384 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "name_sort": "Japan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "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": [ [ [ [ 141.366577, 41.378870 ], [ 141.525879, 40.979898 ], [ 141.591797, 40.813809 ], [ 140.048218, 40.813809 ], [ 140.160828, 40.979898 ], [ 140.303650, 41.195190 ], [ 141.366577, 41.378870 ] ] ], [ [ [ 141.965332, 45.552525 ], [ 143.140869, 44.512176 ], [ 143.909912, 44.174325 ], [ 144.613037, 43.961191 ], [ 145.318909, 44.386692 ], [ 145.541382, 43.263206 ], [ 144.058228, 42.988576 ], [ 143.182068, 41.996243 ], [ 141.611023, 42.680416 ], [ 141.067200, 41.584634 ], [ 139.954834, 41.570252 ], [ 139.817505, 42.565219 ], [ 140.311890, 43.335167 ], [ 141.380310, 43.389082 ], [ 141.671448, 44.774036 ], [ 141.965332, 45.552525 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 142.654724, 54.366158 ], [ 142.912903, 53.704836 ], [ 143.258972, 52.741280 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.748622 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 143.006287, 48.922499 ], [ 142.945862, 48.777913 ], [ 141.910400, 48.777913 ], [ 141.902161, 48.859294 ], [ 141.921387, 48.922499 ], [ 142.135620, 49.616049 ], [ 142.179565, 50.953236 ], [ 141.591797, 51.935799 ], [ 141.682434, 53.302980 ], [ 142.605286, 53.763325 ], [ 142.207031, 54.226708 ], [ 142.654724, 54.366158 ] ] ], [ [ [ 136.996765, 55.899956 ], [ 136.796265, 55.776573 ], [ 135.123596, 54.730964 ], [ 136.700134, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.804016, 54.255598 ], [ 139.899902, 54.189763 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.239574 ], [ 140.594788, 51.241286 ], [ 140.512390, 50.046557 ], [ 140.193787, 48.922499 ], [ 140.152588, 48.777913 ], [ 134.780273, 48.777913 ], [ 134.780273, 55.899956 ], [ 136.996765, 55.899956 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 146.469727, 61.710706 ], [ 146.469727, 59.281317 ], [ 146.250000, 59.293942 ], [ 145.486450, 59.337392 ], [ 142.196045, 59.040555 ], [ 138.957825, 57.088515 ], [ 136.796265, 55.776573 ], [ 136.598511, 55.652798 ], [ 134.780273, 55.652798 ], [ 134.780273, 61.710706 ], [ 146.469727, 61.710706 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 146.469727, 66.600676 ], [ 146.469727, 61.501734 ], [ 134.780273, 61.501734 ], [ 134.780273, 66.600676 ], [ 146.469727, 66.600676 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 146.469727, 70.685421 ], [ 146.469727, 66.425537 ], [ 134.780273, 66.425537 ], [ 134.780273, 70.685421 ], [ 146.469727, 70.685421 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 140.465698, 72.850122 ], [ 146.250000, 72.437192 ], [ 146.469727, 72.420609 ], [ 146.469727, 70.539543 ], [ 134.780273, 70.539543 ], [ 134.780273, 71.532741 ], [ 135.560303, 71.655885 ], [ 137.496643, 71.348285 ], [ 138.232727, 71.628203 ], [ 139.869690, 71.488319 ], [ 139.147339, 72.416461 ], [ 140.465698, 72.850122 ] ] ], [ [ [ 142.061462, 73.857688 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.213220 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.317611 ], [ 139.861450, 73.370356 ], [ 140.809021, 73.765801 ], [ 142.061462, 73.857688 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 28, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 138.828735, 76.137037 ], [ 141.470947, 76.093537 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.611267, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262143 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137037 ] ] ], [ [ [ 146.357117, 75.497157 ], [ 146.469727, 75.488213 ], [ 146.469727, 75.099871 ], [ 146.118164, 75.173143 ], [ 146.250000, 75.351314 ], [ 146.357117, 75.497157 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 20 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 147.738647, -40.813809 ], [ 148.287964, -40.874065 ], [ 148.293457, -40.979898 ], [ 148.359375, -42.061529 ], [ 148.016052, -42.405207 ], [ 147.911682, -43.211182 ], [ 147.562866, -42.936318 ], [ 146.867981, -43.634087 ], [ 146.661987, -43.580391 ], [ 146.250000, -43.558501 ], [ 146.046753, -43.548548 ], [ 146.030273, -43.524655 ], [ 146.030273, -41.017211 ], [ 146.250000, -41.095912 ], [ 146.362610, -41.137296 ], [ 146.991577, -40.979898 ], [ 147.664490, -40.813809 ], [ 147.738647, -40.813809 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 19 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 147.689209, -40.807573 ], [ 148.287964, -40.874065 ], [ 148.293457, -40.979898 ], [ 148.304443, -41.145570 ], [ 146.030273, -41.145570 ], [ 146.030273, -41.017211 ], [ 146.362610, -41.137296 ], [ 146.991577, -40.979898 ], [ 147.689209, -40.807573 ] ] ], [ [ [ 152.830811, -31.765537 ], [ 152.740173, -31.952162 ], [ 152.449036, -32.549128 ], [ 151.707458, -33.040903 ], [ 151.342163, -33.815666 ], [ 151.009827, -34.309413 ], [ 150.713196, -35.171563 ], [ 150.325928, -35.670685 ], [ 150.073242, -36.419072 ], [ 149.944153, -37.107765 ], [ 149.996338, -37.424707 ], [ 149.422302, -37.770715 ], [ 148.304443, -37.807614 ], [ 147.381592, -38.218762 ], [ 146.920166, -38.606140 ], [ 146.315918, -39.034120 ], [ 146.250000, -38.997841 ], [ 146.030273, -38.882481 ], [ 146.030273, -31.765537 ], [ 152.830811, -31.765537 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 18 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 149.460754, -21.739091 ], [ 149.532166, -21.943046 ], [ 149.677734, -22.342455 ], [ 150.075989, -22.121266 ], [ 150.482483, -22.555684 ], [ 150.726929, -22.400872 ], [ 150.897217, -23.460727 ], [ 151.608582, -24.074051 ], [ 152.072754, -24.457151 ], [ 152.852783, -25.267052 ], [ 153.135681, -26.069119 ], [ 153.160400, -26.640094 ], [ 153.091736, -27.259513 ], [ 153.566895, -28.108326 ], [ 153.511963, -28.993727 ], [ 153.338928, -29.456340 ], [ 153.067017, -30.349176 ], [ 153.088989, -30.923433 ], [ 152.891235, -31.639352 ], [ 152.740173, -31.952162 ], [ 152.649536, -32.138409 ], [ 146.030273, -32.138409 ], [ 146.030273, -21.739091 ], [ 149.460754, -21.739091 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 17 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 146.030273, -17.350638 ], [ 146.159363, -17.759150 ], [ 146.063232, -18.278910 ], [ 146.250000, -18.669665 ], [ 146.387329, -18.958246 ], [ 147.469482, -19.479540 ], [ 148.175354, -19.955278 ], [ 148.848267, -20.390974 ], [ 148.716431, -20.632784 ], [ 149.287720, -21.258661 ], [ 149.532166, -21.943046 ], [ 149.606323, -22.146708 ], [ 146.030273, -22.146708 ], [ 146.030273, -17.350638 ] ] ], [ [ [ 150.097961, -22.146708 ], [ 150.032043, -22.146708 ], [ 150.075989, -22.121266 ], [ 150.097961, -22.146708 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 16 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Papua New Guinea", "sov_a3": "PNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Papua New Guinea", "adm0_a3": "PNG", "geou_dif": 0, "geounit": "Papua New Guinea", "gu_a3": "PNG", "su_dif": 1, "subunit": "Papua New Guinea", "su_a3": "PN1", "brk_diff": 0, "name": "Papua New Guinea", "name_long": "Papua New Guinea", "brk_a3": "PN1", "brk_name": "Papua New Guinea", "abbrev": "P.N.G.", "postal": "PG", "formal_en": "Independent State of Papua New Guinea", "name_sort": "Papua New Guinea", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 6057263, "gdp_md_est": 13210, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PG", "iso_a3": "PNG", "iso_n3": "598", "un_a3": "598", "wb_a2": "PG", "wb_a3": "PNG", "woe_id": -99, "adm0_a3_is": "PNG", "adm0_a3_us": "PNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 16, "long_len": 16, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 146.030273, -5.482034 ], [ 146.250000, -5.564049 ], [ 147.648010, -6.083204 ], [ 147.889709, -6.612772 ], [ 146.969604, -6.719165 ], [ 147.189331, -7.386982 ], [ 148.081970, -8.042913 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.069551 ], [ 149.265747, -9.514079 ], [ 150.037537, -9.681984 ], [ 149.738159, -9.871452 ], [ 150.801086, -10.293301 ], [ 150.688477, -10.582322 ], [ 150.026550, -10.649811 ], [ 149.782104, -10.390572 ], [ 148.922424, -10.279789 ], [ 147.911682, -10.128413 ], [ 147.134399, -9.492408 ], [ 146.565857, -8.942053 ], [ 146.250000, -8.407168 ], [ 146.046753, -8.067388 ], [ 146.030273, -8.059230 ], [ 146.030273, -5.482034 ] ] ], [ [ [ 154.651794, -5.041699 ], [ 154.758911, -5.339848 ], [ 155.061035, -5.566783 ], [ 155.547180, -6.200629 ], [ 156.019592, -6.539103 ], [ 155.879517, -6.817353 ], [ 155.599365, -6.918247 ], [ 155.165405, -6.533645 ], [ 154.728699, -5.900189 ], [ 154.511719, -5.137450 ], [ 154.651794, -5.041699 ] ] ], [ [ [ 152.135925, -4.146461 ], [ 152.336426, -4.310808 ], [ 152.317200, -4.866574 ], [ 151.982117, -5.476566 ], [ 151.457520, -5.558582 ], [ 151.300964, -5.840081 ], [ 150.754395, -6.083204 ], [ 150.240784, -6.315299 ], [ 149.707947, -6.315299 ], [ 148.889465, -6.025848 ], [ 148.318176, -5.744441 ], [ 148.400574, -5.435554 ], [ 149.295959, -5.583184 ], [ 149.845276, -5.503906 ], [ 149.993591, -5.025283 ], [ 150.139160, -5.000658 ], [ 150.235291, -5.531244 ], [ 150.806580, -5.454693 ], [ 151.089478, -5.112830 ], [ 151.647034, -4.754361 ], [ 151.537170, -4.165637 ], [ 152.135925, -4.146461 ] ] ], [ [ [ 150.938416, -2.498597 ], [ 151.479492, -2.778451 ], [ 151.817322, -2.997899 ], [ 152.237549, -3.239240 ], [ 152.638550, -3.658705 ], [ 153.017578, -3.979341 ], [ 153.138428, -4.499762 ], [ 152.825317, -4.765310 ], [ 152.638550, -4.173855 ], [ 152.405090, -3.787522 ], [ 151.951904, -3.461333 ], [ 151.383362, -3.033555 ], [ 150.661011, -2.740044 ], [ 150.938416, -2.498597 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Solomon Islands", "sov_a3": "SLB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Solomon Islands", "adm0_a3": "SLB", "geou_dif": 0, "geounit": "Solomon Islands", "gu_a3": "SLB", "su_dif": 0, "subunit": "Solomon Islands", "su_a3": "SLB", "brk_diff": 0, "name": "Solomon Is.", "name_long": "Solomon Islands", "brk_a3": "SLB", "brk_name": "Solomon Is.", "abbrev": "S. Is.", "postal": "SB", "name_sort": "Solomon Islands", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 595613, "gdp_md_est": 1078, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SB", "iso_a3": "SLB", "iso_n3": "090", "un_a3": "090", "wb_a2": "SB", "wb_a3": "SLB", "woe_id": -99, "adm0_a3_is": "SLB", "adm0_a3_us": "SLB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 15, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 156.541443, -6.599131 ], [ 157.137451, -7.019120 ], [ 157.500000, -7.316158 ], [ 157.535706, -7.346123 ], [ 157.500000, -7.357019 ], [ 157.337952, -7.403324 ], [ 156.901245, -7.174476 ], [ 156.489258, -6.765534 ], [ 156.541443, -6.599131 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 157.719727, 55.899956 ], [ 157.719727, 51.614606 ], [ 157.500000, 51.472830 ], [ 156.788635, 51.012027 ], [ 156.417847, 51.701502 ], [ 155.989380, 53.159947 ], [ 155.431824, 55.382231 ], [ 155.566406, 55.776573 ], [ 155.610352, 55.899956 ], [ 157.719727, 55.899956 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 157.719727, 61.567189 ], [ 157.500000, 61.538406 ], [ 156.719971, 61.434828 ], [ 154.217834, 59.759162 ], [ 155.041809, 59.144952 ], [ 152.811584, 58.884781 ], [ 151.265259, 58.781015 ], [ 151.336670, 59.505061 ], [ 149.782104, 59.656642 ], [ 148.543396, 59.164668 ], [ 146.250000, 59.293942 ], [ 146.030273, 59.306562 ], [ 146.030273, 61.710706 ], [ 157.719727, 61.710706 ], [ 157.719727, 61.567189 ] ] ], [ [ [ 157.719727, 57.964417 ], [ 157.719727, 55.652798 ], [ 155.525208, 55.652798 ], [ 155.566406, 55.776573 ], [ 155.912476, 56.769283 ], [ 156.755676, 57.365052 ], [ 156.807861, 57.833055 ], [ 157.500000, 57.932351 ], [ 157.719727, 57.964417 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 157.719727, 66.600676 ], [ 157.719727, 61.567189 ], [ 157.228088, 61.501734 ], [ 146.030273, 61.501734 ], [ 146.030273, 66.600676 ], [ 157.719727, 66.600676 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 157.719727, 70.685421 ], [ 157.719727, 66.425537 ], [ 146.030273, 66.425537 ], [ 146.030273, 70.685421 ], [ 157.719727, 70.685421 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 146.030273, 72.452932 ], [ 146.250000, 72.437192 ], [ 149.499207, 72.200284 ], [ 150.350647, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.032142 ], [ 157.500000, 70.991033 ], [ 157.719727, 70.973133 ], [ 157.719727, 70.539543 ], [ 146.030273, 70.539543 ], [ 146.030273, 72.452932 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 29, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 146.357117, 75.497157 ], [ 148.222046, 75.346451 ], [ 150.729675, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.250000, 75.145707 ], [ 146.118164, 75.173143 ], [ 146.250000, 75.351314 ], [ 146.357117, 75.497157 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 20 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "New Zealand", "sov_a3": "NZ1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "New Zealand", "adm0_a3": "NZL", "geou_dif": 0, "geounit": "New Zealand", "gu_a3": "NZL", "su_dif": 0, "subunit": "New Zealand", "su_a3": "NZL", "brk_diff": 0, "name": "New Zealand", "name_long": "New Zealand", "brk_a3": "NZL", "brk_name": "New Zealand", "abbrev": "N.Z.", "postal": "NZ", "formal_en": "New Zealand", "name_sort": "New Zealand", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 4213418, "gdp_md_est": 116700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NZ", "iso_a3": "NZL", "iso_n3": "554", "un_a3": "554", "wb_a2": "NZ", "wb_a3": "NZL", "woe_id": -99, "adm0_a3_is": "NZL", "adm0_a3_us": "NZL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 168.969727, -43.923615 ], [ 168.969727, -46.632465 ], [ 168.750000, -46.626806 ], [ 168.409424, -46.619261 ], [ 167.761230, -46.290020 ], [ 166.676331, -46.219752 ], [ 166.508789, -45.851760 ], [ 167.044373, -45.110362 ], [ 168.302307, -44.123085 ], [ 168.750000, -43.992815 ], [ 168.947754, -43.935484 ], [ 168.969727, -43.923615 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 18 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "New Caledonia", "adm0_a3": "NCL", "geou_dif": 0, "geounit": "New Caledonia", "gu_a3": "NCL", "su_dif": 0, "subunit": "New Caledonia", "su_a3": "NCL", "brk_diff": 0, "name": "New Caledonia", "name_long": "New Caledonia", "brk_a3": "NCL", "brk_name": "New Caledonia", "abbrev": "New C.", "postal": "NC", "formal_en": "New Caledonia", "formal_fr": "Nouvelle-Calédonie", "note_adm0": "Fr.", "name_sort": "New Caledonia", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 227436, "gdp_md_est": 3158, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "NC", "iso_a3": "NCL", "iso_n3": "540", "un_a3": "540", "wb_a2": "NC", "wb_a3": "NCL", "woe_id": -99, "adm0_a3_is": "NCL", "adm0_a3_us": "NCL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 166.643372, -21.739091 ], [ 166.874084, -21.943046 ], [ 167.118530, -22.159427 ], [ 166.739502, -22.398332 ], [ 166.187439, -22.128899 ], [ 165.890808, -21.943046 ], [ 165.566711, -21.739091 ], [ 166.643372, -21.739091 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 17 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Vanuatu", "sov_a3": "VUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vanuatu", "adm0_a3": "VUT", "geou_dif": 0, "geounit": "Vanuatu", "gu_a3": "VUT", "su_dif": 0, "subunit": "Vanuatu", "su_a3": "VUT", "brk_diff": 0, "name": "Vanuatu", "name_long": "Vanuatu", "brk_a3": "VUT", "brk_name": "Vanuatu", "abbrev": "Van.", "postal": "VU", "formal_en": "Republic of Vanuatu", "name_sort": "Vanuatu", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 218519, "gdp_md_est": 988.5, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VU", "iso_a3": "VUT", "iso_n3": "548", "un_a3": "548", "wb_a2": "VU", "wb_a3": "VUT", "woe_id": -99, "adm0_a3_is": "VUT", "adm0_a3_us": "VUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": 2, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.214661, -15.890018 ], [ 167.843628, -16.465061 ], [ 167.514038, -16.596714 ], [ 167.178955, -16.159283 ], [ 167.214661, -15.890018 ] ] ], [ [ [ 166.626892, -14.626109 ], [ 167.107544, -14.931516 ], [ 167.269592, -15.739388 ], [ 167.000427, -15.612456 ], [ 166.791687, -15.667999 ], [ 166.648865, -15.390136 ], [ 166.626892, -14.626109 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "New Caledonia", "adm0_a3": "NCL", "geou_dif": 0, "geounit": "New Caledonia", "gu_a3": "NCL", "su_dif": 0, "subunit": "New Caledonia", "su_a3": "NCL", "brk_diff": 0, "name": "New Caledonia", "name_long": "New Caledonia", "brk_a3": "NCL", "brk_name": "New Caledonia", "abbrev": "New C.", "postal": "NC", "formal_en": "New Caledonia", "formal_fr": "Nouvelle-Calédonie", "note_adm0": "Fr.", "name_sort": "New Caledonia", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 227436, "gdp_md_est": 3158, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "NC", "iso_a3": "NCL", "iso_n3": "540", "un_a3": "540", "wb_a2": "NC", "wb_a3": "NCL", "woe_id": -99, "adm0_a3_is": "NCL", "adm0_a3_us": "NCL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.028625, -20.104944 ], [ 164.459839, -20.117840 ], [ 165.017395, -20.457896 ], [ 165.459595, -20.799769 ], [ 165.778198, -21.079375 ], [ 166.599426, -21.698265 ], [ 166.874084, -21.943046 ], [ 167.104797, -22.146708 ], [ 166.223145, -22.146708 ], [ 166.187439, -22.128899 ], [ 165.890808, -21.943046 ], [ 165.473328, -21.677848 ], [ 164.827881, -21.148554 ], [ 164.165955, -20.442455 ], [ 164.028625, -20.104944 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 16 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Solomon Islands", "sov_a3": "SLB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Solomon Islands", "adm0_a3": "SLB", "geou_dif": 0, "geounit": "Solomon Islands", "gu_a3": "SLB", "su_dif": 0, "subunit": "Solomon Islands", "su_a3": "SLB", "brk_diff": 0, "name": "Solomon Is.", "name_long": "Solomon Islands", "brk_a3": "SLB", "brk_name": "Solomon Is.", "abbrev": "S. Is.", "postal": "SB", "name_sort": "Solomon Islands", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 595613, "gdp_md_est": 1078, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SB", "iso_a3": "SLB", "iso_n3": "090", "un_a3": "090", "wb_a2": "SB", "wb_a3": "SLB", "woe_id": -99, "adm0_a3_is": "SLB", "adm0_a3_us": "SLB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 15, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.317749, -10.204110 ], [ 161.916504, -10.444598 ], [ 162.117004, -10.482410 ], [ 162.397156, -10.825213 ], [ 161.699524, -10.819818 ], [ 161.317749, -10.204110 ] ] ], [ [ [ 159.702759, -9.240382 ], [ 160.361938, -9.400291 ], [ 160.686035, -9.608874 ], [ 160.850830, -9.871452 ], [ 160.460815, -9.893099 ], [ 159.848328, -9.792971 ], [ 159.639587, -9.638661 ], [ 159.702759, -9.240382 ] ] ], [ [ [ 160.919495, -8.317495 ], [ 161.279297, -9.118368 ], [ 161.677551, -9.598042 ], [ 161.529236, -9.782145 ], [ 160.787659, -8.914920 ], [ 160.578918, -8.317495 ], [ 160.919495, -8.317495 ] ] ], [ [ [ 158.359680, -7.318882 ], [ 158.818359, -7.558547 ], [ 159.639587, -8.018436 ], [ 159.873047, -8.336518 ], [ 159.916992, -8.537565 ], [ 159.131470, -8.113615 ], [ 158.584900, -7.754537 ], [ 158.208618, -7.419666 ], [ 158.359680, -7.318882 ] ] ], [ [ [ 157.280273, -7.136323 ], [ 157.500000, -7.316158 ], [ 157.535706, -7.346123 ], [ 157.500000, -7.357019 ], [ 157.337952, -7.403324 ], [ 157.280273, -7.373362 ], [ 157.280273, -7.136323 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 10 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 162.012634, 55.899956 ], [ 161.949463, 55.776573 ], [ 161.699524, 55.286937 ], [ 162.117004, 54.856059 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.529968, 52.960221 ], [ 158.230591, 51.944265 ], [ 157.500000, 51.472830 ], [ 157.280273, 51.330612 ], [ 157.280273, 55.899956 ], [ 162.012634, 55.899956 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": [ [ [ [ 168.969727, 61.710706 ], [ 168.969727, 60.541074 ], [ 168.898315, 60.574825 ], [ 168.750000, 60.528915 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.874573, 59.732869 ], [ 163.536987, 59.869641 ], [ 163.215637, 59.211094 ], [ 162.015381, 58.244500 ], [ 162.051086, 57.840365 ], [ 163.190918, 57.615992 ], [ 163.056335, 56.159318 ], [ 162.127991, 56.122591 ], [ 161.949463, 55.776573 ], [ 161.886292, 55.652798 ], [ 157.280273, 55.652798 ], [ 157.280273, 57.900256 ], [ 157.500000, 57.932351 ], [ 158.362427, 58.056085 ], [ 160.150452, 59.314973 ], [ 161.869812, 60.343260 ], [ 163.668823, 61.141910 ], [ 163.929749, 61.606396 ], [ 163.990173, 61.710706 ], [ 168.969727, 61.710706 ] ] ], [ [ [ 162.704773, 61.710706 ], [ 162.655334, 61.642945 ], [ 162.572937, 61.606396 ], [ 160.120239, 60.545126 ], [ 159.414368, 61.606396 ], [ 159.342957, 61.710706 ], [ 162.704773, 61.710706 ] ] ], [ [ [ 158.818359, 61.710706 ], [ 158.024597, 61.606396 ], [ 157.500000, 61.538406 ], [ 157.280273, 61.509596 ], [ 157.280273, 61.710706 ], [ 158.818359, 61.710706 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 168.969727, 66.600676 ], [ 168.969727, 61.501734 ], [ 163.869324, 61.501734 ], [ 163.929749, 61.606396 ], [ 164.470825, 62.551591 ], [ 163.256836, 62.466646 ], [ 162.655334, 61.642945 ], [ 162.572937, 61.606396 ], [ 162.325745, 61.501734 ], [ 159.485779, 61.501734 ], [ 159.414368, 61.606396 ], [ 159.301758, 61.774422 ], [ 158.024597, 61.606396 ], [ 157.280273, 61.509596 ], [ 157.280273, 66.600676 ], [ 168.969727, 66.600676 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 159.364929, 70.685421 ], [ 159.510498, 70.612614 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.722867 ], [ 160.938721, 69.437305 ], [ 162.279053, 69.642759 ], [ 164.050598, 69.668541 ], [ 165.940247, 69.472005 ], [ 167.835388, 69.583438 ], [ 168.750000, 69.121485 ], [ 168.969727, 69.008627 ], [ 168.969727, 66.425537 ], [ 157.280273, 66.425537 ], [ 157.280273, 70.685421 ], [ 159.364929, 70.685421 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 30, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 157.280273, 71.008917 ], [ 157.500000, 70.991033 ], [ 158.996887, 70.867191 ], [ 159.510498, 70.612614 ], [ 159.656067, 70.539543 ], [ 157.280273, 70.539543 ], [ 157.280273, 71.008917 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 20 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "New Zealand", "sov_a3": "NZ1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "New Zealand", "adm0_a3": "NZL", "geou_dif": 0, "geounit": "New Zealand", "gu_a3": "NZL", "su_dif": 0, "subunit": "New Zealand", "su_a3": "NZL", "brk_diff": 0, "name": "New Zealand", "name_long": "New Zealand", "brk_a3": "NZL", "brk_name": "New Zealand", "abbrev": "N.Z.", "postal": "NZ", "formal_en": "New Zealand", "name_sort": "New Zealand", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 4213418, "gdp_md_est": 116700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NZ", "iso_a3": "NZL", "iso_n3": "554", "un_a3": "554", "wb_a2": "NZ", "wb_a3": "NZL", "woe_id": -99, "adm0_a3_is": "NZL", "adm0_a3_us": "NZL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.963257, -40.813809 ], [ 173.051147, -40.979898 ], [ 173.246155, -41.331451 ], [ 173.864136, -40.979898 ], [ 173.957520, -40.925965 ], [ 173.993225, -40.979898 ], [ 174.245911, -41.347948 ], [ 174.245911, -41.769263 ], [ 173.875122, -42.232585 ], [ 173.221436, -42.968482 ], [ 172.710571, -43.371116 ], [ 173.078613, -43.852355 ], [ 172.306824, -43.864238 ], [ 171.452637, -44.241264 ], [ 171.183472, -44.896741 ], [ 170.614929, -45.907211 ], [ 169.332275, -46.640008 ], [ 168.750000, -46.626806 ], [ 168.530273, -46.621147 ], [ 168.530273, -44.057986 ], [ 168.750000, -43.992815 ], [ 168.947754, -43.935484 ], [ 169.667358, -43.554520 ], [ 170.524292, -43.030753 ], [ 171.123047, -42.512602 ], [ 171.567993, -41.767215 ], [ 171.947021, -41.512691 ], [ 172.089844, -40.979898 ], [ 172.095337, -40.955011 ], [ 172.312317, -40.813809 ], [ 172.963257, -40.813809 ] ] ], [ [ [ 176.355286, -40.813809 ], [ 176.237183, -40.979898 ], [ 176.011963, -41.288126 ], [ 175.237427, -41.687271 ], [ 175.067139, -41.424194 ], [ 174.649658, -41.279871 ], [ 174.861145, -40.979898 ], [ 174.979248, -40.813809 ], [ 176.355286, -40.813809 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 19 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "New Zealand", "sov_a3": "NZ1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "New Zealand", "adm0_a3": "NZL", "geou_dif": 0, "geounit": "New Zealand", "gu_a3": "NZL", "su_dif": 0, "subunit": "New Zealand", "su_a3": "NZL", "brk_diff": 0, "name": "New Zealand", "name_long": "New Zealand", "brk_a3": "NZL", "brk_name": "New Zealand", "abbrev": "N.Z.", "postal": "NZ", "formal_en": "New Zealand", "name_sort": "New Zealand", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 4213418, "gdp_md_est": 116700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NZ", "iso_a3": "NZL", "iso_n3": "554", "un_a3": "554", "wb_a2": "NZ", "wb_a3": "NZL", "woe_id": -99, "adm0_a3_is": "NZL", "adm0_a3_us": "NZL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.798462, -40.492915 ], [ 173.018188, -40.917664 ], [ 173.051147, -40.979898 ], [ 173.144531, -41.145570 ], [ 172.045898, -41.145570 ], [ 172.089844, -40.979898 ], [ 172.095337, -40.955011 ], [ 172.798462, -40.492915 ] ] ], [ [ [ 173.004456, -34.449954 ], [ 173.551025, -35.005253 ], [ 174.328308, -35.263562 ], [ 174.611206, -36.155618 ], [ 175.336304, -37.208457 ], [ 175.355530, -36.525088 ], [ 175.808716, -36.798289 ], [ 175.957031, -37.553288 ], [ 176.761780, -37.879189 ], [ 177.437439, -37.959358 ], [ 178.008728, -37.579413 ], [ 178.516846, -37.694688 ], [ 178.272400, -38.582526 ], [ 177.970276, -39.166271 ], [ 177.206726, -39.144973 ], [ 176.937561, -39.448919 ], [ 177.030945, -39.878127 ], [ 176.885376, -40.065461 ], [ 176.506348, -40.603527 ], [ 176.237183, -40.979898 ], [ 176.116333, -41.145570 ], [ 174.745789, -41.145570 ], [ 174.861145, -40.979898 ], [ 175.226440, -40.457397 ], [ 174.899597, -39.907629 ], [ 173.822937, -39.508279 ], [ 173.850403, -39.144973 ], [ 174.572754, -38.796908 ], [ 174.743042, -38.026459 ], [ 174.696350, -37.381070 ], [ 174.289856, -36.710265 ], [ 174.317322, -36.533916 ], [ 173.839417, -36.120128 ], [ 173.053894, -35.236646 ], [ 172.633667, -34.526924 ], [ 173.004456, -34.449954 ] ] ], [ [ [ 173.993225, -40.979898 ], [ 174.105835, -41.145570 ], [ 173.572998, -41.145570 ], [ 173.864136, -40.979898 ], [ 173.957520, -40.925965 ], [ 173.993225, -40.979898 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 17 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Fiji", "sov_a3": "FJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Fiji", "adm0_a3": "FJI", "geou_dif": 0, "geounit": "Fiji", "gu_a3": "FJI", "su_dif": 0, "subunit": "Fiji", "su_a3": "FJI", "brk_diff": 0, "name": "Fiji", "name_long": "Fiji", "brk_a3": "FJI", "brk_name": "Fiji", "abbrev": "Fiji", "postal": "FJ", "formal_en": "Republic of Fiji", "name_sort": "Fiji", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 944720, "gdp_md_est": 3579, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "FJ", "iso_a3": "FJI", "iso_n3": "242", "un_a3": "242", "wb_a2": "FJ", "wb_a3": "FJI", "woe_id": -99, "adm0_a3_is": "FJI", "adm0_a3_us": "FJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.371277, -17.337530 ], [ 178.717346, -17.628317 ], [ 178.552551, -18.148462 ], [ 177.931824, -18.286734 ], [ 177.379761, -18.164121 ], [ 177.283630, -17.722526 ], [ 177.668152, -17.379474 ], [ 178.124084, -17.502628 ], [ 178.371277, -17.337530 ] ] ], [ [ [ 180.000000, -16.066929 ], [ 180.000000, -16.554594 ], [ 179.362793, -16.799282 ], [ 178.722839, -17.009515 ], [ 178.596497, -16.638823 ], [ 179.096375, -16.433451 ], [ 179.412231, -16.378121 ], [ 180.000000, -16.066929 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 9 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 174.122314, 61.710706 ], [ 173.680115, 61.653379 ], [ 173.575745, 61.606396 ], [ 172.147522, 60.950443 ], [ 170.697327, 60.336464 ], [ 170.329285, 59.882047 ], [ 168.898315, 60.574825 ], [ 168.750000, 60.528915 ], [ 168.530273, 60.463988 ], [ 168.530273, 61.710706 ], [ 174.122314, 61.710706 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 8 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 180.000000, 66.600676 ], [ 180.000000, 64.980521 ], [ 179.991760, 64.974712 ], [ 178.706360, 64.535453 ], [ 177.409973, 64.608571 ], [ 178.310852, 64.077003 ], [ 178.906860, 63.252175 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.569310 ], [ 179.228210, 62.304964 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.769226 ], [ 173.680115, 61.653379 ], [ 173.575745, 61.606396 ], [ 173.347778, 61.501734 ], [ 168.530273, 61.501734 ], [ 168.530273, 66.600676 ], [ 180.000000, 66.600676 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 7 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 170.452881, 70.097399 ], [ 173.641663, 69.817839 ], [ 175.723572, 69.877452 ], [ 178.599243, 69.400615 ], [ 180.000000, 68.964307 ], [ 180.000000, 66.425537 ], [ 168.530273, 66.425537 ], [ 168.530273, 69.232789 ], [ 168.750000, 69.121485 ], [ 169.576721, 68.694509 ], [ 170.815430, 69.014530 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 31, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "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": "Polygon", "coordinates": [ [ [ 180.000000, 71.516203 ], [ 180.000000, 70.832953 ], [ 178.901367, 70.781486 ], [ 178.722839, 71.098984 ], [ 180.000000, 71.516203 ] ] ] } } +] } +] } +] } 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 281eede..3549140 100644 --- a/tests/ne_110m_admin_0_countries/out/-zg_-yname.json +++ b/tests/ne_110m_admin_0_countries/out/-zg_-yname.json @@ -1,10 +1,10 @@ { "type": "FeatureCollection", "properties": { "bounds": "-180.000000,-85.051129,180.000000,83.645130", -"center": "45.000000,33.256630,2", +"center": "0.000000,0.000000,0", "description": "tests/ne_110m_admin_0_countries/out/-zg_-yname.json.check.mbtiles", "format": "pbf", -"json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 2, \"fields\": {\"name\": \"String\"} } ] }", -"maxzoom": "2", +"json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 0, \"fields\": {\"name\": \"String\"} } ] }", +"maxzoom": "0", "minzoom": "0", "name": "tests/ne_110m_admin_0_countries/out/-zg_-yname.json.check.mbtiles", "type": "overlay", @@ -367,996 +367,4 @@ { "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.792969, -40.446947 ], [ 172.968750, -40.913513 ], [ 173.232422, -41.310824 ], [ 173.935547, -40.913513 ], [ 174.199219, -41.310824 ], [ 174.199219, -41.705729 ], [ 173.144531, -42.940339 ], [ 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 ] ] ], [ [ [ 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.668419 ], [ 174.287109, -36.527295 ], [ 172.968750, -35.173808 ], [ 172.617188, -34.524661 ], [ 172.968750, -34.379713 ] ] ] ] } } ] } ] } -, -{ "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.368164, 3.513421 ], [ -67.324219, 3.337954 ], [ -67.851562, 2.855263 ], [ -67.456055, 2.635789 ], [ -67.192383, 2.284551 ], [ -66.884766, 1.274309 ], [ -67.104492, 1.142502 ], [ -67.280273, 1.757537 ], [ -67.543945, 2.064982 ], [ -67.895508, 1.713612 ], [ -69.829102, 1.757537 ], [ -69.829102, 1.098565 ], [ -69.257812, 1.010690 ], [ -69.257812, 0.615223 ], [ -69.477539, 0.747049 ], [ -70.048828, 0.571280 ], [ -70.048828, -0.175781 ], [ -69.609375, -0.527336 ], [ -69.433594, -1.098565 ], [ -69.916992, -4.258768 ], [ -70.400391, -3.732708 ], [ -70.708008, -3.732708 ], [ -70.048828, -2.723583 ], [ -70.839844, -2.240640 ], [ -71.455078, -2.328460 ], [ -71.806641, -2.152814 ], [ -72.333984, -2.416276 ], [ -73.081055, -2.284551 ], [ -73.696289, -1.230374 ], [ -74.135742, -0.966751 ], [ -74.443359, -0.527336 ], [ -75.146484, -0.043945 ], [ -75.410156, -0.131836 ], [ -75.673828, 0.000000 ], [ -76.333008, 0.439449 ], [ -76.596680, 0.263671 ], [ -77.431641, 0.439449 ], [ -77.695312, 0.834931 ], [ -77.871094, 0.834931 ], [ -78.881836, 1.406109 ], [ -79.013672, 1.713612 ], [ -78.618164, 1.801461 ], [ -78.706055, 2.284551 ], [ -78.442383, 2.635789 ], [ -77.958984, 2.723583 ], [ -77.387695, 3.513421 ], [ -67.368164, 3.513421 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.423828, 3.513421 ], [ -64.423828, 3.162456 ], [ -64.291992, 2.504085 ], [ -63.457031, 2.416276 ], [ -63.369141, 2.240640 ], [ -64.116211, 1.933227 ], [ -64.204102, 1.493971 ], [ -65.390625, 1.098565 ], [ -65.566406, 0.790990 ], [ -66.357422, 0.747049 ], [ -66.884766, 1.274309 ], [ -67.192383, 2.284551 ], [ -67.456055, 2.635789 ], [ -67.851562, 2.855263 ], [ -67.324219, 3.337954 ], [ -67.368164, 3.513421 ], [ -64.423828, 3.513421 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.744141, 3.513421 ], [ -57.612305, 3.337954 ], [ -57.304688, 3.337954 ], [ -57.172852, 2.811371 ], [ -56.557617, 1.933227 ], [ -56.821289, 1.889306 ], [ -57.348633, 1.977147 ], [ -57.700195, 1.713612 ], [ -58.139648, 1.537901 ], [ -58.447266, 1.493971 ], [ -58.579102, 1.274309 ], [ -59.062500, 1.318243 ], [ -59.677734, 1.801461 ], [ -59.721680, 2.284551 ], [ -59.985352, 2.767478 ], [ -59.853516, 3.513421 ], [ -57.744141, 3.513421 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.052734, 3.513421 ], [ -54.272461, 2.767478 ], [ -54.536133, 2.328460 ], [ -55.107422, 2.547988 ], [ -55.590820, 2.460181 ], [ -55.986328, 2.547988 ], [ -56.074219, 2.240640 ], [ -55.942383, 2.064982 ], [ -56.030273, 1.845384 ], [ -56.557617, 1.933227 ], [ -57.172852, 2.811371 ], [ -57.304688, 3.337954 ], [ -57.612305, 3.337954 ], [ -57.744141, 3.513421 ], [ -54.052734, 3.513421 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.075195, 3.513421 ], [ -52.558594, 2.547988 ], [ -52.954102, 2.152814 ], [ -53.437500, 2.064982 ], [ -53.569336, 2.372369 ], [ -53.789062, 2.416276 ], [ -54.096680, 2.108899 ], [ -54.536133, 2.328460 ], [ -54.272461, 2.767478 ], [ -54.096680, 3.513421 ], [ -52.075195, 3.513421 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.881836, 1.406109 ], [ -77.871094, 0.834931 ], [ -77.695312, 0.834931 ], [ -77.431641, 0.439449 ], [ -76.596680, 0.263671 ], [ -76.333008, 0.439449 ], [ -75.673828, 0.000000 ], [ -75.410156, -0.131836 ], [ -75.234375, -0.878872 ], [ -75.585938, -1.537901 ], [ -76.640625, -2.591889 ], [ -77.871094, -2.986927 ], [ -78.486328, -3.864255 ], [ -78.662109, -4.521666 ], [ -79.233398, -4.915833 ], [ -79.628906, -4.434044 ], [ -80.068359, -4.302591 ], [ -80.463867, -4.390229 ], [ -80.507812, -4.039618 ], [ -80.200195, -3.820408 ], [ -80.332031, -3.381824 ], [ -79.804688, -2.635789 ], [ -80.024414, -2.196727 ], [ -80.375977, -2.679687 ], [ -80.991211, -2.240640 ], [ -80.771484, -1.933227 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.878872 ], [ -80.419922, -0.263671 ], [ -80.244141, 0.000000 ], [ -80.024414, 0.395505 ], [ -80.112305, 0.790990 ], [ -79.584961, 1.010690 ], [ -78.881836, 1.406109 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.146484, -0.043945 ], [ -74.443359, -0.527336 ], [ -74.135742, -0.966751 ], [ -73.696289, -1.230374 ], [ -73.081055, -2.284551 ], [ -72.333984, -2.416276 ], [ -71.806641, -2.152814 ], [ -71.455078, -2.328460 ], [ -70.839844, -2.240640 ], [ -70.048828, -2.723583 ], [ -70.708008, -3.732708 ], [ -70.400391, -3.732708 ], [ -69.916992, -4.258768 ], [ -70.795898, -4.214943 ], [ -70.971680, -4.390229 ], [ -71.762695, -4.565474 ], [ -72.905273, -5.266008 ], [ -72.993164, -5.703448 ], [ -73.256836, -6.053161 ], [ -73.125000, -6.620957 ], [ -73.740234, -6.882800 ], [ -73.740234, -7.318882 ], [ -74.003906, -7.493196 ], [ -73.608398, -8.407168 ], [ -73.037109, -9.015302 ], [ -73.256836, -9.449062 ], [ -72.597656, -9.492408 ], [ -72.202148, -10.012130 ], [ -71.323242, -10.055403 ], [ -70.488281, -9.449062 ], [ -70.576172, -11.005904 ], [ -70.136719, -11.092166 ], [ -69.565430, -10.919618 ], [ -68.686523, -12.554564 ], [ -68.906250, -12.897489 ], [ -68.950195, -14.434680 ], [ -69.345703, -14.944785 ], [ -69.169922, -15.284185 ], [ -69.433594, -15.623037 ], [ -68.994141, -16.467695 ], [ -69.609375, -17.560247 ], [ -69.873047, -18.062312 ], [ -70.400391, -18.312811 ], [ -71.411133, -17.769612 ], [ -71.499023, -17.350638 ], [ -73.476562, -16.341226 ], [ -75.278320, -15.241790 ], [ -76.025391, -14.647368 ], [ -76.464844, -13.795406 ], [ -76.289062, -13.496473 ], [ -77.124023, -12.211180 ], [ -78.134766, -10.358151 ], [ -79.057617, -8.363693 ], [ -79.453125, -7.928675 ], [ -79.760742, -7.188101 ], [ -80.551758, -6.533645 ], [ -81.254883, -6.096860 ], [ -80.947266, -5.659719 ], [ -81.430664, -4.696879 ], [ -81.123047, -3.995781 ], [ -80.332031, -3.381824 ], [ -80.200195, -3.820408 ], [ -80.507812, -4.039618 ], [ -80.463867, -4.390229 ], [ -80.068359, -4.302591 ], [ -79.628906, -4.434044 ], [ -79.233398, -4.915833 ], [ -78.662109, -4.521666 ], [ -78.486328, -3.864255 ], [ -77.871094, -2.986927 ], [ -76.640625, -2.591889 ], [ -75.585938, -1.537901 ], [ -75.234375, -0.878872 ], [ -75.410156, -0.131836 ], [ -75.146484, -0.043945 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.509535 ], [ -68.642578, -52.616390 ], [ -68.642578, -54.851315 ], [ -66.972656, -54.876607 ], [ -67.324219, -55.279115 ], [ -68.159180, -55.603178 ], [ -69.257812, -55.478853 ], [ -69.960938, -55.178868 ], [ -71.015625, -55.053203 ], [ -72.290039, -54.470038 ], [ -73.300781, -53.956086 ], [ -74.663086, -52.829321 ], [ -73.872070, -53.041213 ], [ -72.465820, -53.696706 ], [ -71.147461, -54.059388 ], [ -70.620117, -53.592505 ], [ -70.268555, -52.908902 ], [ -69.345703, -52.509535 ] ] ], [ [ [ -69.609375, -17.560247 ], [ -69.125977, -18.229351 ], [ -68.994141, -18.979026 ], [ -68.466797, -19.394068 ], [ -68.774414, -20.344627 ], [ -68.247070, -21.493964 ], [ -67.851562, -22.836946 ], [ -67.148438, -22.715390 ], [ -67.016602, -22.958393 ], [ -67.368164, -24.006326 ], [ -68.422852, -24.487149 ], [ -68.422852, -26.155438 ], [ -68.598633, -26.470573 ], [ -68.334961, -26.863281 ], [ -69.038086, -27.488781 ], [ -69.697266, -28.459033 ], [ -70.048828, -29.343875 ], [ -69.960938, -30.334954 ], [ -70.576172, -31.353637 ], [ -70.092773, -33.063924 ], [ -69.829102, -33.247876 ], [ -69.829102, -34.161818 ], [ -70.400391, -35.137879 ], [ -70.400391, -35.995785 ], [ -71.147461, -36.633162 ], [ -71.147461, -37.544577 ], [ -70.839844, -38.548165 ], [ -71.455078, -38.891033 ], [ -71.938477, -40.813809 ], [ -71.762695, -42.032974 ], [ -72.158203, -42.228517 ], [ -71.938477, -43.389082 ], [ -71.499023, -43.771094 ], [ -71.806641, -44.182204 ], [ -71.367188, -44.402392 ], [ -71.235352, -44.777936 ], [ -71.674805, -44.964798 ], [ -71.586914, -45.552525 ], [ -71.938477, -46.860191 ], [ -72.465820, -47.724545 ], [ -72.333984, -48.224673 ], [ -72.685547, -48.864715 ], [ -73.432617, -49.296472 ], [ -73.344727, -50.373496 ], [ -72.993164, -50.736455 ], [ -72.333984, -50.652943 ], [ -72.333984, -51.399206 ], [ -71.938477, -51.998410 ], [ -69.521484, -52.133488 ], [ -68.598633, -52.295042 ], [ -69.477539, -52.268157 ], [ -69.960938, -52.536273 ], [ -70.883789, -52.882391 ], [ -71.015625, -53.826597 ], [ -71.455078, -53.852527 ], [ -72.597656, -53.514185 ], [ -73.740234, -52.829321 ], [ -74.970703, -52.241256 ], [ -75.278320, -51.618017 ], [ -75.014648, -51.041394 ], [ -75.498047, -50.373496 ], [ -75.629883, -48.661943 ], [ -75.190430, -47.694974 ], [ -74.135742, -46.920255 ], [ -75.673828, -46.619261 ], [ -74.707031, -45.736860 ], [ -74.355469, -44.087585 ], [ -73.256836, -44.433780 ], [ -72.729492, -42.358544 ], [ -73.432617, -42.098222 ], [ -73.740234, -43.357138 ], [ -74.355469, -43.197167 ], [ -73.696289, -39.909736 ], [ -73.256836, -39.232253 ], [ -73.520508, -38.272689 ], [ -73.608398, -37.125286 ], [ -73.168945, -37.090240 ], [ -72.553711, -35.496456 ], [ -71.894531, -33.906896 ], [ -71.455078, -32.398516 ], [ -71.674805, -30.902225 ], [ -71.411133, -30.069094 ], [ -71.499023, -28.844674 ], [ -70.927734, -27.605671 ], [ -70.751953, -25.681137 ], [ -70.092773, -21.371244 ], [ -70.180664, -19.725342 ], [ -70.400391, -18.312811 ], [ -69.873047, -18.062312 ], [ -69.609375, -17.560247 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.346680, -9.752370 ], [ -65.478516, -10.487812 ], [ -65.346680, -10.876465 ], [ -65.434570, -11.566144 ], [ -64.335938, -12.425848 ], [ -63.237305, -12.597455 ], [ -62.841797, -12.983148 ], [ -62.138672, -13.197165 ], [ -61.743164, -13.453737 ], [ -61.127930, -13.453737 ], [ -60.512695, -13.752725 ], [ -60.468750, -14.349548 ], [ -60.292969, -14.604847 ], [ -60.292969, -15.072124 ], [ -60.556641, -15.072124 ], [ -60.161133, -16.256867 ], [ -58.271484, -16.299051 ], [ -58.403320, -16.846605 ], [ -58.315430, -17.266728 ], [ -57.744141, -17.518344 ], [ -57.524414, -18.145852 ], [ -57.700195, -18.937464 ], [ -57.963867, -19.394068 ], [ -57.875977, -19.932041 ], [ -58.183594, -20.138470 ], [ -58.183594, -19.849394 ], [ -59.150391, -19.352611 ], [ -60.073242, -19.311143 ], [ -61.787109, -19.601194 ], [ -62.270508, -20.509355 ], [ -62.314453, -21.043491 ], [ -62.709961, -22.228090 ], [ -62.885742, -22.024546 ], [ -64.028320, -21.983801 ], [ -64.379883, -22.796439 ], [ -64.995117, -22.065278 ], [ -66.313477, -21.820708 ], [ -67.148438, -22.715390 ], [ -67.851562, -22.836946 ], [ -68.247070, -21.493964 ], [ -68.774414, -20.344627 ], [ -68.466797, -19.394068 ], [ -68.994141, -18.979026 ], [ -69.125977, -18.229351 ], [ -69.609375, -17.560247 ], [ -68.994141, -16.467695 ], [ -69.433594, -15.623037 ], [ -69.169922, -15.284185 ], [ -69.345703, -14.944785 ], [ -68.950195, -14.434680 ], [ -68.906250, -12.897489 ], [ -68.686523, -12.554564 ], [ -69.565430, -10.919618 ], [ -68.818359, -11.005904 ], [ -68.291016, -11.005904 ], [ -68.071289, -10.703792 ], [ -67.192383, -10.271681 ], [ -66.665039, -9.925566 ], [ -65.346680, -9.752370 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -51.064453, 3.513421 ], [ -50.537109, 1.933227 ], [ -50.009766, 1.757537 ], [ -49.965820, 1.054628 ], [ -50.712891, 0.263671 ], [ -50.493164, 0.000000 ], [ -50.405273, -0.043945 ], [ -48.647461, -0.219726 ], [ -48.603516, -1.230374 ], [ -47.856445, -0.571280 ], [ -46.582031, -0.922812 ], [ -44.912109, -1.537901 ], [ -44.428711, -2.108899 ], [ -44.604492, -2.679687 ], [ -43.461914, -2.372369 ], [ -41.484375, -2.899153 ], [ -39.990234, -2.855263 ], [ -38.540039, -3.688855 ], [ -37.265625, -4.784469 ], [ -36.474609, -5.090944 ], [ -35.639648, -5.134715 ], [ -35.244141, -5.441022 ], [ -34.760742, -7.318882 ], [ -35.156250, -8.971897 ], [ -35.639648, -9.622414 ], [ -37.089844, -11.005904 ], [ -37.705078, -12.168226 ], [ -38.452148, -13.025966 ], [ -38.715820, -13.025966 ], [ -38.979492, -13.752725 ], [ -38.891602, -15.665354 ], [ -39.287109, -17.853290 ], [ -39.594727, -18.229351 ], [ -39.770508, -19.559790 ], [ -40.781250, -20.879343 ], [ -40.957031, -21.902278 ], [ -41.791992, -22.350076 ], [ -42.011719, -22.958393 ], [ -43.110352, -22.958393 ], [ -44.648438, -23.322080 ], [ -45.395508, -23.765237 ], [ -46.494141, -24.086589 ], [ -47.680664, -24.846565 ], [ -48.515625, -25.839449 ], [ -48.647461, -26.588527 ], [ -48.515625, -27.137368 ], [ -48.691406, -28.149503 ], [ -48.911133, -28.652031 ], [ -49.614258, -29.190533 ], [ -50.712891, -30.977609 ], [ -51.591797, -31.765537 ], [ -52.294922, -32.212801 ], [ -52.734375, -33.174342 ], [ -53.393555, -33.760882 ], [ -53.657227, -33.174342 ], [ -53.217773, -32.694866 ], [ -53.789062, -32.026706 ], [ -55.634766, -30.826781 ], [ -55.986328, -30.864510 ], [ -56.997070, -30.107118 ], [ -57.656250, -30.183122 ], [ -56.293945, -28.844674 ], [ -55.195312, -27.877928 ], [ -53.657227, -26.902477 ], [ -53.657227, -26.115986 ], [ -54.140625, -25.522615 ], [ -54.667969, -25.720735 ], [ -54.316406, -24.567108 ], [ -54.316406, -24.006326 ], [ -54.667969, -23.805450 ], [ -55.063477, -23.966176 ], [ -55.415039, -23.926013 ], [ -55.546875, -23.563987 ], [ -55.634766, -22.634293 ], [ -55.810547, -22.350076 ], [ -56.513672, -22.065278 ], [ -56.909180, -22.268764 ], [ -57.963867, -22.065278 ], [ -57.875977, -20.715015 ], [ -58.183594, -20.138470 ], [ -57.875977, -19.932041 ], [ -57.963867, -19.394068 ], [ -57.700195, -18.937464 ], [ -57.524414, -18.145852 ], [ -57.744141, -17.518344 ], [ -58.315430, -17.266728 ], [ -58.403320, -16.846605 ], [ -58.271484, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.556641, -15.072124 ], [ -60.292969, -15.072124 ], [ -60.292969, -14.604847 ], [ -60.468750, -14.349548 ], [ -60.512695, -13.752725 ], [ -61.127930, -13.453737 ], [ -61.743164, -13.453737 ], [ -62.138672, -13.197165 ], [ -62.841797, -12.983148 ], [ -63.237305, -12.597455 ], [ -64.335938, -12.425848 ], [ -65.434570, -11.566144 ], [ -65.346680, -10.876465 ], [ -65.478516, -10.487812 ], [ -65.346680, -9.752370 ], [ -66.665039, -9.925566 ], [ -67.192383, -10.271681 ], [ -68.071289, -10.703792 ], [ -68.291016, -11.005904 ], [ -68.818359, -11.005904 ], [ -69.565430, -10.919618 ], [ -70.136719, -11.092166 ], [ -70.576172, -11.005904 ], [ -70.488281, -9.449062 ], [ -71.323242, -10.055403 ], [ -72.202148, -10.012130 ], [ -72.597656, -9.492408 ], [ -73.256836, -9.449062 ], [ -73.037109, -9.015302 ], [ -73.608398, -8.407168 ], [ -74.003906, -7.493196 ], [ -73.740234, -7.318882 ], [ -73.740234, -6.882800 ], [ -73.125000, -6.620957 ], [ -73.256836, -6.053161 ], [ -72.993164, -5.703448 ], [ -72.905273, -5.266008 ], [ -71.762695, -4.565474 ], [ -70.971680, -4.390229 ], [ -70.795898, -4.214943 ], [ -69.916992, -4.258768 ], [ -69.433594, -1.098565 ], [ -69.609375, -0.527336 ], [ -70.048828, -0.175781 ], [ -70.048828, 0.571280 ], [ -69.477539, 0.747049 ], [ -69.257812, 0.615223 ], [ -69.257812, 1.010690 ], [ -69.829102, 1.098565 ], [ -69.829102, 1.757537 ], [ -67.895508, 1.713612 ], [ -67.543945, 2.064982 ], [ -67.280273, 1.757537 ], [ -67.104492, 1.142502 ], [ -66.884766, 1.274309 ], [ -66.357422, 0.747049 ], [ -65.566406, 0.790990 ], [ -65.390625, 1.098565 ], [ -64.204102, 1.493971 ], [ -64.116211, 1.933227 ], [ -63.369141, 2.240640 ], [ -63.457031, 2.416276 ], [ -64.291992, 2.504085 ], [ -64.423828, 3.162456 ], [ -64.423828, 3.513421 ], [ -59.853516, 3.513421 ], [ -59.985352, 2.767478 ], [ -59.721680, 2.284551 ], [ -59.677734, 1.801461 ], [ -59.062500, 1.318243 ], [ -58.579102, 1.274309 ], [ -58.447266, 1.493971 ], [ -58.139648, 1.537901 ], [ -57.700195, 1.713612 ], [ -57.348633, 1.977147 ], [ -56.030273, 1.845384 ], [ -55.942383, 2.064982 ], [ -56.074219, 2.240640 ], [ -55.986328, 2.547988 ], [ -55.590820, 2.460181 ], [ -55.107422, 2.547988 ], [ -54.096680, 2.108899 ], [ -53.789062, 2.416276 ], [ -53.569336, 2.372369 ], [ -53.437500, 2.064982 ], [ -52.954102, 2.152814 ], [ -52.558594, 2.547988 ], [ -52.075195, 3.513421 ], [ -51.064453, 3.513421 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.073242, -19.311143 ], [ -59.150391, -19.352611 ], [ -58.183594, -19.849394 ], [ -58.183594, -20.138470 ], [ -57.875977, -20.715015 ], [ -57.963867, -22.065278 ], [ -56.909180, -22.268764 ], [ -56.513672, -22.065278 ], [ -55.810547, -22.350076 ], [ -55.634766, -22.634293 ], [ -55.546875, -23.563987 ], [ -55.415039, -23.926013 ], [ -55.063477, -23.966176 ], [ -54.667969, -23.805450 ], [ -54.316406, -24.006326 ], [ -54.316406, -24.567108 ], [ -54.667969, -25.720735 ], [ -54.799805, -26.588527 ], [ -55.722656, -27.371767 ], [ -56.513672, -27.527758 ], [ -57.612305, -27.371767 ], [ -58.623047, -27.098254 ], [ -57.656250, -25.601902 ], [ -57.788086, -25.125393 ], [ -58.842773, -24.766785 ], [ -60.029297, -24.006326 ], [ -60.864258, -23.845650 ], [ -62.709961, -22.228090 ], [ -62.314453, -21.043491 ], [ -62.270508, -20.509355 ], [ -61.787109, -19.601194 ], [ -60.073242, -19.311143 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.642578, -52.616390 ], [ -68.291016, -53.094024 ], [ -67.763672, -53.826597 ], [ -66.489258, -54.444492 ], [ -65.083008, -54.699234 ], [ -65.522461, -55.178868 ], [ -66.489258, -55.229023 ], [ -66.972656, -54.876607 ], [ -68.642578, -54.851315 ], [ -68.642578, -52.616390 ] ] ], [ [ [ -66.313477, -21.820708 ], [ -64.995117, -22.065278 ], [ -64.379883, -22.796439 ], [ -64.028320, -21.983801 ], [ -62.885742, -22.024546 ], [ -62.709961, -22.228090 ], [ -60.864258, -23.845650 ], [ -60.029297, -24.006326 ], [ -58.842773, -24.766785 ], [ -57.788086, -25.125393 ], [ -57.656250, -25.601902 ], [ -58.623047, -27.098254 ], [ -57.612305, -27.371767 ], [ -56.513672, -27.527758 ], [ -55.722656, -27.371767 ], [ -54.799805, -26.588527 ], [ -54.667969, -25.720735 ], [ -54.140625, -25.522615 ], [ -53.657227, -26.115986 ], [ -53.657227, -26.902477 ], [ -55.195312, -27.877928 ], [ -56.293945, -28.844674 ], [ -57.656250, -30.183122 ], [ -58.183594, -32.026706 ], [ -58.139648, -33.027088 ], [ -58.359375, -33.247876 ], [ -58.535156, -34.415973 ], [ -57.260742, -35.281501 ], [ -57.392578, -35.960223 ], [ -56.777344, -36.385913 ], [ -56.821289, -36.879621 ], [ -57.788086, -38.169114 ], [ -59.238281, -38.719805 ], [ -61.259766, -38.925229 ], [ -62.358398, -38.822591 ], [ -62.138672, -39.402244 ], [ -62.358398, -40.145289 ], [ -62.182617, -40.647304 ], [ -62.753906, -41.013066 ], [ -63.808594, -41.145570 ], [ -64.775391, -40.780541 ], [ -65.126953, -41.046217 ], [ -64.995117, -42.032974 ], [ -64.335938, -42.358544 ], [ -63.764648, -42.032974 ], [ -63.500977, -42.553080 ], [ -64.379883, -42.843751 ], [ -65.214844, -43.484812 ], [ -65.346680, -44.496505 ], [ -65.566406, -45.026950 ], [ -66.533203, -45.026950 ], [ -67.324219, -45.521744 ], [ -67.587891, -46.286224 ], [ -66.621094, -47.010226 ], [ -65.654297, -47.219568 ], [ -66.005859, -48.107431 ], [ -67.192383, -48.690960 ], [ -67.851562, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.169922, -50.708634 ], [ -68.818359, -51.754240 ], [ -68.159180, -52.348763 ], [ -69.521484, -52.133488 ], [ -71.938477, -51.998410 ], [ -72.333984, -51.399206 ], [ -72.333984, -50.652943 ], [ -72.993164, -50.736455 ], [ -73.344727, -50.373496 ], [ -73.432617, -49.296472 ], [ -72.685547, -48.864715 ], [ -72.333984, -48.224673 ], [ -72.465820, -47.724545 ], [ -71.938477, -46.860191 ], [ -71.586914, -45.552525 ], [ -71.674805, -44.964798 ], [ -71.235352, -44.777936 ], [ -71.367188, -44.402392 ], [ -71.806641, -44.182204 ], [ -71.499023, -43.771094 ], [ -71.938477, -43.389082 ], [ -72.158203, -42.228517 ], [ -71.762695, -42.032974 ], [ -71.938477, -40.813809 ], [ -71.455078, -38.891033 ], [ -70.839844, -38.548165 ], [ -71.147461, -37.544577 ], [ -71.147461, -36.633162 ], [ -70.400391, -35.995785 ], [ -70.400391, -35.137879 ], [ -69.829102, -34.161818 ], [ -69.829102, -33.247876 ], [ -70.092773, -33.063924 ], [ -70.576172, -31.353637 ], [ -69.960938, -30.334954 ], [ -70.048828, -29.343875 ], [ -69.697266, -28.459033 ], [ -69.038086, -27.488781 ], [ -68.334961, -26.863281 ], [ -68.598633, -26.470573 ], [ -68.422852, -26.155438 ], [ -68.422852, -24.487149 ], [ -67.368164, -24.006326 ], [ -67.016602, -22.958393 ], [ -67.148438, -22.715390 ], [ -66.313477, -21.820708 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.997070, -30.107118 ], [ -55.986328, -30.864510 ], [ -55.634766, -30.826781 ], [ -53.789062, -32.026706 ], [ -53.217773, -32.694866 ], [ -53.657227, -33.174342 ], [ -53.393555, -33.760882 ], [ -53.833008, -34.379713 ], [ -54.975586, -34.921971 ], [ -55.678711, -34.741612 ], [ -56.250000, -34.849875 ], [ -57.172852, -34.415973 ], [ -57.832031, -34.452218 ], [ -58.447266, -33.906896 ], [ -58.359375, -33.247876 ], [ -58.139648, -33.027088 ], [ -58.183594, -32.026706 ], [ -57.656250, -30.183122 ], [ -56.997070, -30.107118 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.579102, -51.096623 ], [ -57.788086, -51.536086 ], [ -58.051758, -51.890054 ], [ -59.414062, -52.187405 ], [ -59.853516, -51.835778 ], [ -60.732422, -52.295042 ], [ -61.215820, -51.835778 ], [ -60.029297, -51.234407 ], [ -59.150391, -51.481383 ], [ -58.579102, -51.096623 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -169.980469, -83.881684 ], [ -167.036133, -84.566386 ], [ -164.223633, -84.822341 ], [ -162.597656, -85.051129 ], [ -161.938477, -85.137560 ], [ -158.554688, -85.345325 ], [ -180.000000, -85.345325 ], [ -180.000000, -84.710102 ], [ -179.956055, -84.718199 ], [ -179.077148, -84.138452 ], [ -177.275391, -84.452865 ], [ -176.088867, -84.097922 ], [ -175.869141, -84.115970 ], [ -174.418945, -84.532994 ], [ -173.144531, -84.115970 ], [ -172.924805, -84.057113 ], [ -169.980469, -83.881684 ] ] ], [ [ [ -150.952148, -85.295131 ], [ -150.600586, -85.345325 ], [ -157.763672, -85.345325 ], [ -155.214844, -85.096413 ], [ -150.952148, -85.295131 ] ] ], [ [ [ -57.260742, -63.509375 ], [ -57.612305, -63.840668 ], [ -58.623047, -64.148952 ], [ -59.062500, -64.358931 ], [ -59.809570, -64.206377 ], [ -60.644531, -64.301822 ], [ -62.050781, -64.792848 ], [ -62.534180, -65.090646 ], [ -62.666016, -65.476508 ], [ -62.622070, -65.856756 ], [ -62.138672, -66.178266 ], [ -62.841797, -66.407955 ], [ -63.764648, -66.495740 ], [ -64.907227, -67.135829 ], [ -65.522461, -67.575717 ], [ -65.698242, -67.941650 ], [ -65.346680, -68.350594 ], [ -64.819336, -68.672544 ], [ -63.984375, -68.911005 ], [ -63.237305, -69.224997 ], [ -62.797852, -69.611206 ], [ -62.314453, -70.377854 ], [ -61.831055, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.391602, -72.006158 ], [ -61.083984, -72.369105 ], [ -61.040039, -72.764065 ], [ -60.732422, -73.163173 ], [ -60.864258, -73.689611 ], [ -61.391602, -74.104015 ], [ -62.006836, -74.437572 ], [ -63.325195, -74.566736 ], [ -63.764648, -74.925142 ], [ -64.379883, -75.253057 ], [ -65.874023, -75.628632 ], [ -67.236328, -75.791336 ], [ -69.829102, -76.216441 ], [ -70.620117, -76.629067 ], [ -72.246094, -76.669656 ], [ -74.003906, -76.629067 ], [ -75.585938, -76.710125 ], [ -77.255859, -76.710125 ], [ -76.948242, -77.098423 ], [ -75.410156, -77.273855 ], [ -74.311523, -77.551572 ], [ -73.696289, -77.906466 ], [ -74.794922, -78.215541 ], [ -76.508789, -78.116408 ], [ -77.958984, -78.376004 ], [ -78.046875, -79.179588 ], [ -76.860352, -79.512662 ], [ -76.640625, -79.882020 ], [ -75.366211, -80.253391 ], [ -73.256836, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.048828, -80.997452 ], [ -68.203125, -81.314959 ], [ -65.742188, -81.472780 ], [ -63.281250, -81.748454 ], [ -61.567383, -82.039656 ], [ -59.721680, -82.373317 ], [ -58.754883, -82.842440 ], [ -58.227539, -83.215693 ], [ -57.041016, -82.864308 ], [ -53.657227, -82.255779 ], [ -51.547852, -82.003058 ], [ -49.790039, -81.723188 ], [ -47.285156, -81.704187 ], [ -44.868164, -81.842522 ], [ -42.846680, -82.076089 ], [ -42.187500, -81.646927 ], [ -40.781250, -81.354684 ], [ -38.276367, -81.334844 ], [ -34.409180, -80.900669 ], [ -32.343750, -80.767668 ], [ -30.102539, -80.589727 ], [ -28.564453, -80.334887 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.631968 ], [ -29.707031, -79.253586 ], [ -31.640625, -79.294479 ], [ -33.706055, -79.448477 ], [ -35.683594, -79.448477 ], [ -35.947266, -79.080140 ], [ -35.815430, -78.331648 ], [ -35.332031, -78.116408 ], [ -33.925781, -77.888038 ], [ -32.255859, -77.645947 ], [ -29.794922, -77.059116 ], [ -28.916016, -76.669656 ], [ -27.553711, -76.496311 ], [ -25.488281, -76.279122 ], [ -23.950195, -76.237366 ], [ -22.500000, -76.100796 ], [ -21.225586, -75.898801 ], [ -20.039062, -75.672197 ], [ -17.534180, -75.118222 ], [ -16.655273, -74.787379 ], [ -15.732422, -74.496413 ], [ -15.424805, -74.104015 ], [ -16.479492, -73.861506 ], [ -16.127930, -73.453473 ], [ -15.468750, -73.137697 ], [ -13.315430, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.006158 ], [ -11.030273, -71.538830 ], [ -10.327148, -71.258480 ], [ -9.140625, -71.314877 ], [ -8.613281, -71.649833 ], [ -7.426758, -71.691293 ], [ -7.382812, -71.314877 ], [ -6.899414, -70.931004 ], [ -5.800781, -71.016960 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.455153 ], [ -3.076172, -71.272595 ], [ -1.801758, -71.159391 ], [ -0.703125, -71.216075 ], [ -0.263672, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.834961, -71.300793 ], [ 1.845703, -71.116770 ], [ 3.515625, -70.916641 ], [ 3.515625, -85.345325 ], [ -146.162109, -85.345325 ], [ -143.217773, -85.051129 ], [ -143.129883, -85.039743 ], [ -142.910156, -84.566386 ], [ -146.865234, -84.528806 ], [ -150.073242, -84.293450 ], [ -150.908203, -83.900390 ], [ -153.588867, -83.686615 ], [ -153.413086, -83.236426 ], [ -152.666016, -82.448764 ], [ -152.885742, -82.039656 ], [ -154.555664, -81.767353 ], [ -155.302734, -81.413933 ], [ -156.840820, -81.100015 ], [ -154.423828, -81.154241 ], [ -152.138672, -80.997452 ], [ -150.688477, -81.334844 ], [ -148.886719, -81.038617 ], [ -147.260742, -80.668436 ], [ -146.425781, -80.334887 ], [ -146.777344, -79.920548 ], [ -148.095703, -79.647774 ], [ -149.545898, -79.351472 ], [ -151.611328, -79.294479 ], [ -153.413086, -79.154810 ], [ -155.346680, -79.063478 ], [ -156.005859, -78.690491 ], [ -157.280273, -78.376004 ], [ -158.071289, -78.025574 ], [ -158.378906, -76.880775 ], [ -157.895508, -76.980149 ], [ -157.016602, -77.293202 ], [ -155.346680, -77.196176 ], [ -153.764648, -77.059116 ], [ -152.929688, -77.494607 ], [ -151.347656, -77.389504 ], [ -150.029297, -77.176684 ], [ -148.754883, -76.900709 ], [ -147.656250, -76.567955 ], [ -146.118164, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.726472 ], [ -146.206055, -75.375605 ], [ -144.931641, -75.197021 ], [ -144.360352, -75.530136 ], [ -142.822266, -75.331158 ], [ -141.679688, -75.084326 ], [ -140.229492, -75.061686 ], [ -138.867188, -74.959392 ], [ -135.219727, -74.295463 ], [ -134.472656, -74.354828 ], [ -133.769531, -74.437572 ], [ -132.275391, -74.295463 ], [ -130.957031, -74.472903 ], [ -129.594727, -74.449358 ], [ -128.276367, -74.319235 ], [ -125.419922, -74.508155 ], [ -124.013672, -74.472903 ], [ -121.113281, -74.508155 ], [ -119.707031, -74.472903 ], [ -118.696289, -74.176073 ], [ -117.509766, -74.019543 ], [ -116.235352, -74.235878 ], [ -115.048828, -74.055799 ], [ -113.950195, -73.714276 ], [ -113.334961, -74.019543 ], [ -112.983398, -74.378513 ], [ -112.324219, -74.706450 ], [ -111.269531, -74.413974 ], [ -110.083008, -74.787379 ], [ -108.720703, -74.902266 ], [ -107.578125, -75.174549 ], [ -106.171875, -75.118222 ], [ -104.897461, -74.947983 ], [ -103.403320, -74.982183 ], [ -102.041016, -75.118222 ], [ -100.678711, -75.297735 ], [ -100.151367, -74.867889 ], [ -100.766602, -74.531614 ], [ -101.293945, -74.176073 ], [ -102.568359, -74.104015 ], [ -103.139648, -73.726595 ], [ -103.710938, -72.607120 ], [ -102.919922, -72.751039 ], [ -101.645508, -72.803086 ], [ -100.327148, -72.751039 ], [ -99.140625, -72.906723 ], [ -98.129883, -73.201317 ], [ -97.690430, -73.553302 ], [ -96.372070, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.691406, -73.277353 ], [ -92.460938, -73.163173 ], [ -91.450195, -73.390781 ], [ -90.131836, -73.315246 ], [ -89.252930, -72.554498 ], [ -88.461914, -72.996909 ], [ -87.275391, -73.175897 ], [ -86.044922, -73.086633 ], [ -85.209961, -73.478485 ], [ -83.891602, -73.515935 ], [ -82.705078, -73.627789 ], [ -81.474609, -73.849286 ], [ -80.727539, -73.478485 ], [ -80.332031, -73.124945 ], [ -79.321289, -73.515935 ], [ -77.958984, -73.415885 ], [ -76.948242, -73.627789 ], [ -76.245117, -73.958939 ], [ -74.926758, -73.861506 ], [ -73.872070, -73.652545 ], [ -72.861328, -73.390781 ], [ -71.630859, -73.252045 ], [ -70.224609, -73.137697 ], [ -68.950195, -72.996909 ], [ -67.983398, -72.790088 ], [ -67.412109, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.280273, -71.635993 ], [ -68.510742, -70.095529 ], [ -68.554688, -69.702868 ], [ -68.466797, -69.318320 ], [ -67.983398, -68.942607 ], [ -67.587891, -68.528235 ], [ -67.456055, -68.138852 ], [ -67.763672, -67.322924 ], [ -67.280273, -66.861082 ], [ -66.093750, -66.196009 ], [ -65.390625, -65.892680 ], [ -64.599609, -65.585720 ], [ -64.204102, -65.164579 ], [ -63.632812, -64.886265 ], [ -63.017578, -64.623877 ], [ -62.050781, -64.567319 ], [ -61.435547, -64.263684 ], [ -60.732422, -64.072200 ], [ -59.897461, -63.937372 ], [ -59.194336, -63.685248 ], [ -58.623047, -63.371832 ], [ -57.832031, -63.253412 ], [ -57.260742, -63.509375 ] ] ], [ [ [ -163.125000, -78.215541 ], [ -161.279297, -78.376004 ], [ -160.268555, -78.690491 ], [ -159.521484, -79.038437 ], [ -159.213867, -79.496652 ], [ -161.147461, -79.631968 ], [ -162.465820, -79.278140 ], [ -163.037109, -78.920832 ], [ -163.081055, -78.861562 ], [ -163.740234, -78.595299 ], [ -163.125000, -78.215541 ] ] ], [ [ [ -122.431641, -73.315246 ], [ -121.245117, -73.490977 ], [ -119.926758, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.311523, -73.824820 ], [ -120.234375, -74.079925 ], [ -121.640625, -74.007440 ], [ -122.651367, -73.652545 ], [ -122.431641, -73.315246 ] ] ], [ [ [ -126.562500, -73.239377 ], [ -125.595703, -73.478485 ], [ -124.057617, -73.861506 ], [ -125.947266, -73.726595 ], [ -127.309570, -73.453473 ], [ -126.562500, -73.239377 ] ] ], [ [ [ -101.733398, -71.705093 ], [ -100.458984, -71.842539 ], [ -99.008789, -71.924528 ], [ -97.910156, -72.060381 ], [ -96.811523, -71.951778 ], [ -96.240234, -72.514931 ], [ -96.987305, -72.435535 ], [ -98.217773, -72.475276 ], [ -99.448242, -72.435535 ], [ -100.810547, -72.488504 ], [ -101.821289, -72.302431 ], [ -102.348633, -71.883578 ], [ -101.733398, -71.705093 ] ] ], [ [ [ -70.268555, -68.863517 ], [ -69.741211, -69.240579 ], [ -69.521484, -69.611206 ], [ -68.730469, -70.495574 ], [ -68.466797, -70.945356 ], [ -68.334961, -71.399165 ], [ -68.510742, -71.787681 ], [ -68.818359, -72.168351 ], [ -69.960938, -72.302431 ], [ -71.103516, -72.501722 ], [ -72.421875, -72.475276 ], [ -71.938477, -72.087432 ], [ -74.223633, -72.355789 ], [ -74.970703, -72.060381 ], [ -75.014648, -71.649833 ], [ -73.916016, -71.258480 ], [ -73.256836, -71.145195 ], [ -72.114258, -71.187754 ], [ -71.806641, -70.670881 ], [ -71.762695, -70.303933 ], [ -71.762695, -69.503765 ], [ -71.191406, -69.021414 ], [ -70.268555, -68.863517 ] ] ], [ [ [ -46.669922, -77.823323 ], [ -45.175781, -78.043795 ], [ -43.945312, -78.473002 ], [ -43.505859, -79.080140 ], [ -43.374023, -79.512662 ], [ -43.374023, -80.020042 ], [ -44.912109, -80.334887 ], [ -46.538086, -80.589727 ], [ -48.427734, -80.823901 ], [ -50.493164, -81.024916 ], [ -52.866211, -80.963004 ], [ -54.184570, -80.632740 ], [ -54.008789, -80.216123 ], [ -51.855469, -79.943595 ], [ -51.020508, -79.608215 ], [ -49.921875, -78.810511 ], [ -48.691406, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.823323 ] ] ], [ [ [ -60.644531, -79.624056 ], [ -59.589844, -80.035262 ], [ -60.161133, -80.997452 ], [ -62.270508, -80.858875 ], [ -64.511719, -80.921494 ], [ -65.742188, -80.582539 ], [ -65.742188, -80.546518 ], [ -66.313477, -80.253391 ], [ -64.072266, -80.290518 ], [ -61.918945, -80.386396 ], [ -61.171875, -79.974243 ], [ -60.644531, -79.624056 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -179.824219, -16.003576 ], [ -179.956055, -16.467695 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.045813 ], [ -179.824219, -16.003576 ] ] ] } } -] } -] } -, -{ "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -95.229492, 71.924528 ], [ -93.911133, 71.760191 ], [ -92.900391, 71.328950 ], [ -91.538086, 70.199994 ], [ -92.416992, 69.702868 ], [ -90.571289, 69.503765 ], [ -90.571289, 68.479926 ], [ -89.252930, 69.271709 ], [ -88.022461, 68.624544 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.925140 ], [ -85.605469, 68.800041 ], [ -85.561523, 69.885010 ], [ -84.111328, 69.809309 ], [ -82.661133, 69.672358 ], [ -81.298828, 69.162558 ], [ -81.254883, 68.672544 ], [ -82.001953, 68.138852 ], [ -81.298828, 67.609221 ], [ -81.386719, 67.118748 ], [ -83.364258, 66.425537 ], [ -84.770508, 66.266856 ], [ -85.781250, 66.565747 ], [ -86.088867, 66.071546 ], [ -87.055664, 65.219894 ], [ -87.363281, 64.792848 ], [ -88.505859, 64.110602 ], [ -89.956055, 64.033744 ], [ -90.747070, 63.626745 ], [ -90.791016, 62.975198 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.042138 ], [ -94.262695, 60.909073 ], [ -94.658203, 60.130564 ], [ -94.702148, 58.950008 ], [ -93.251953, 58.790978 ], [ -92.768555, 57.868132 ], [ -92.329102, 57.088515 ], [ -90.922852, 57.302790 ], [ -89.077148, 56.872996 ], [ -88.066406, 56.486762 ], [ -87.363281, 56.022948 ], [ -86.088867, 55.727110 ], [ -85.034180, 55.304138 ], [ -83.364258, 55.254077 ], [ -82.309570, 55.153766 ], [ -82.441406, 54.290882 ], [ -82.133789, 53.278353 ], [ -81.430664, 52.160455 ], [ -79.936523, 51.234407 ], [ -79.145508, 51.536086 ], [ -78.618164, 52.562995 ], [ -79.145508, 54.162434 ], [ -79.848633, 54.673831 ], [ -78.266602, 55.153766 ], [ -77.124023, 55.850650 ], [ -76.552734, 56.535258 ], [ -76.640625, 57.207710 ], [ -77.343750, 58.054632 ], [ -78.530273, 58.813742 ], [ -77.343750, 59.866883 ], [ -77.783203, 60.759160 ], [ -78.134766, 62.329208 ], [ -77.431641, 62.552857 ], [ -75.717773, 62.288365 ], [ -74.707031, 62.186014 ], [ -73.872070, 62.451406 ], [ -72.949219, 62.124436 ], [ -71.718750, 61.543641 ], [ -71.411133, 61.143235 ], [ -69.609375, 61.079544 ], [ -69.653320, 60.239811 ], [ -69.301758, 58.972667 ], [ -68.378906, 58.813742 ], [ -67.675781, 58.217025 ], [ -66.225586, 58.768200 ], [ -65.258789, 59.888937 ], [ -64.599609, 60.348696 ], [ -63.808594, 59.445075 ], [ -61.435547, 56.968936 ], [ -61.831055, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.229023 ], [ -58.007812, 54.952386 ], [ -57.348633, 54.648413 ], [ -56.953125, 53.800651 ], [ -56.162109, 53.670680 ], [ -55.766602, 53.278353 ], [ -55.722656, 52.160455 ], [ -57.128906, 51.426614 ], [ -58.798828, 51.069017 ], [ -60.073242, 50.261254 ], [ -61.743164, 50.092393 ], [ -63.896484, 50.317408 ], [ -65.390625, 50.317408 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.525208 ], [ -68.554688, 49.095452 ], [ -69.960938, 47.754098 ], [ -71.147461, 46.830134 ], [ -70.268555, 47.010226 ], [ -68.686523, 48.312428 ], [ -66.577148, 49.152970 ], [ -65.083008, 49.239121 ], [ -64.204102, 48.748945 ], [ -65.126953, 48.078079 ], [ -64.819336, 47.010226 ], [ -64.511719, 46.255847 ], [ -63.193359, 45.767523 ], [ -61.523438, 45.890008 ], [ -60.556641, 47.010226 ], [ -60.468750, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.274886 ], [ -63.281250, 44.684277 ], [ -64.248047, 44.276671 ], [ -65.390625, 43.548548 ], [ -66.137695, 43.644026 ], [ -66.181641, 44.465151 ], [ -64.467773, 45.305803 ], [ -66.049805, 45.274886 ], [ -67.148438, 45.151053 ], [ -67.807617, 45.706179 ], [ -67.807617, 47.070122 ], [ -68.247070, 47.368594 ], [ -68.906250, 47.189712 ], [ -69.257812, 47.457809 ], [ -70.004883, 46.709736 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.103516, 45.305803 ], [ -71.411133, 45.274886 ], [ -71.542969, 45.026950 ], [ -74.882812, 45.026950 ], [ -75.322266, 44.840291 ], [ -76.508789, 44.024422 ], [ -76.860352, 43.644026 ], [ -78.750000, 43.644026 ], [ -79.189453, 43.484812 ], [ -79.013672, 43.293200 ], [ -78.969727, 42.875964 ], [ -80.288086, 42.391009 ], [ -81.298828, 42.228517 ], [ -82.441406, 41.705729 ], [ -82.705078, 41.705729 ], [ -83.056641, 41.836828 ], [ -83.144531, 42.000325 ], [ -83.144531, 42.098222 ], [ -82.441406, 43.004647 ], [ -82.177734, 43.580391 ], [ -82.573242, 45.367584 ], [ -83.627930, 45.828799 ], [ -83.496094, 46.012224 ], [ -83.627930, 46.134170 ], [ -83.891602, 46.134170 ], [ -84.111328, 46.286224 ], [ -84.155273, 46.528635 ], [ -84.375000, 46.437857 ], [ -84.638672, 46.468133 ], [ -84.550781, 46.558860 ], [ -84.814453, 46.649436 ], [ -84.902344, 46.920255 ], [ -88.417969, 48.312428 ], [ -89.296875, 48.048710 ], [ -89.604492, 48.019324 ], [ -90.834961, 48.283193 ], [ -91.669922, 48.166085 ], [ -92.636719, 48.458352 ], [ -94.350586, 48.690960 ], [ -94.658203, 48.864715 ], [ -94.833984, 49.410973 ], [ -95.185547, 49.410973 ], [ -95.185547, 49.009051 ], [ -123.002930, 49.009051 ], [ -124.936523, 50.007739 ], [ -125.639648, 50.429518 ], [ -127.441406, 50.847573 ], [ -128.012695, 51.727028 ], [ -127.880859, 52.348763 ], [ -129.155273, 52.776186 ], [ -129.331055, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.561523, 54.826008 ], [ -129.990234, 55.304138 ], [ -130.034180, 55.924586 ], [ -131.748047, 56.559482 ], [ -133.374023, 58.424730 ], [ -134.296875, 58.881942 ], [ -134.956055, 59.288332 ], [ -135.483398, 59.800634 ], [ -136.494141, 59.467408 ], [ -137.460938, 58.927334 ], [ -138.383789, 59.578851 ], [ -139.042969, 60.020952 ], [ -140.053711, 60.283408 ], [ -141.020508, 60.326948 ], [ -141.020508, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 69.005675 ], [ -136.538086, 68.911005 ], [ -135.659180, 69.318320 ], [ -134.428711, 69.641804 ], [ -132.934570, 69.519147 ], [ -131.440430, 69.945375 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.794136 ], [ -128.364258, 70.020587 ], [ -128.144531, 70.495574 ], [ -127.485352, 70.377854 ], [ -125.771484, 69.488372 ], [ -124.453125, 70.170201 ], [ -124.321289, 69.411242 ], [ -123.090820, 69.565226 ], [ -122.695312, 69.869892 ], [ -121.508789, 69.809309 ], [ -119.970703, 69.380313 ], [ -117.641602, 69.021414 ], [ -116.235352, 68.847665 ], [ -115.268555, 68.911005 ], [ -113.906250, 68.399180 ], [ -115.312500, 67.908619 ], [ -113.510742, 67.692771 ], [ -110.830078, 67.809245 ], [ -109.951172, 67.991108 ], [ -108.896484, 67.390599 ], [ -107.797852, 67.892086 ], [ -108.852539, 68.318146 ], [ -108.193359, 68.656555 ], [ -106.962891, 68.704486 ], [ -106.171875, 68.800041 ], [ -105.380859, 68.576441 ], [ -104.370117, 68.024022 ], [ -103.227539, 68.106102 ], [ -101.469727, 67.659386 ], [ -99.931641, 67.809245 ], [ -98.481445, 67.792641 ], [ -98.569336, 68.415352 ], [ -97.690430, 68.592487 ], [ -96.152344, 68.253111 ], [ -96.152344, 67.305976 ], [ -95.493164, 68.106102 ], [ -94.702148, 68.073305 ], [ -94.262695, 69.084257 ], [ -95.317383, 69.687618 ], [ -96.503906, 70.095529 ], [ -96.416016, 71.201920 ], [ -95.229492, 71.924528 ] ] ], [ [ [ -55.898438, 51.645294 ], [ -55.415039, 51.590723 ], [ -56.162109, 50.708634 ], [ -56.821289, 49.837982 ], [ -56.162109, 50.176898 ], [ -55.502930, 49.951220 ], [ -55.854492, 49.610710 ], [ -54.975586, 49.325122 ], [ -54.492188, 49.582226 ], [ -53.481445, 49.267805 ], [ -53.789062, 48.545705 ], [ -53.129883, 48.690960 ], [ -52.998047, 48.166085 ], [ -52.690430, 47.546872 ], [ -53.085938, 46.679594 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.830134 ], [ -53.964844, 47.635784 ], [ -54.272461, 47.754098 ], [ -55.415039, 46.890232 ], [ -56.030273, 46.920255 ], [ -55.327148, 47.398349 ], [ -56.293945, 47.635784 ], [ -57.348633, 47.576526 ], [ -59.282227, 47.606163 ], [ -59.458008, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.545705 ], [ -58.403320, 49.152970 ], [ -57.392578, 50.736455 ], [ -56.777344, 51.289406 ], [ -55.898438, 51.645294 ] ] ], [ [ [ -64.028320, 47.040182 ], [ -63.676758, 46.558860 ], [ -62.973633, 46.437857 ], [ -62.050781, 46.468133 ], [ -62.534180, 46.042736 ], [ -62.885742, 45.981695 ], [ -64.160156, 46.407564 ], [ -64.423828, 46.739861 ], [ -64.028320, 47.040182 ] ] ], [ [ [ -128.364258, 50.792047 ], [ -126.738281, 50.401515 ], [ -125.771484, 50.317408 ], [ -124.936523, 49.496675 ], [ -123.925781, 49.066668 ], [ -123.530273, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.683594, 48.835797 ], [ -125.991211, 49.181703 ], [ -126.870117, 49.553726 ], [ -127.045898, 49.837982 ], [ -128.100586, 50.007739 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.792047 ] ] ], [ [ [ -64.204102, 49.979488 ], [ -62.885742, 49.724479 ], [ -61.875000, 49.296472 ], [ -61.831055, 49.124219 ], [ -62.314453, 49.095452 ], [ -63.632812, 49.410973 ], [ -64.555664, 49.894634 ], [ -64.204102, 49.979488 ] ] ], [ [ [ -133.198242, 54.188155 ], [ -132.714844, 54.059388 ], [ -131.791992, 54.136696 ], [ -132.055664, 52.988337 ], [ -131.220703, 52.187405 ], [ -131.616211, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.583008, 53.120405 ], [ -133.066406, 53.435719 ], [ -133.242188, 53.852527 ], [ -133.198242, 54.188155 ] ] ], [ [ [ -85.869141, 73.812574 ], [ -86.572266, 73.163173 ], [ -85.781250, 72.541319 ], [ -84.858398, 73.340461 ], [ -82.353516, 73.751205 ], [ -80.639648, 72.724958 ], [ -80.771484, 72.073911 ], [ -78.793945, 72.355789 ], [ -77.827148, 72.751039 ], [ -75.629883, 72.248917 ], [ -74.267578, 71.773941 ], [ -74.135742, 71.343013 ], [ -72.246094, 71.566641 ], [ -71.235352, 70.931004 ], [ -68.818359, 70.539543 ], [ -67.939453, 70.125430 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -66.489258, 68.073305 ], [ -64.863281, 67.858985 ], [ -63.457031, 66.930060 ], [ -61.875000, 66.878345 ], [ -62.182617, 66.160511 ], [ -63.940430, 65.016506 ], [ -65.170898, 65.440002 ], [ -66.752930, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.159180, 65.694476 ], [ -67.104492, 65.109148 ], [ -65.742188, 64.661517 ], [ -65.346680, 64.396938 ], [ -64.687500, 63.411198 ], [ -65.039062, 62.694310 ], [ -66.313477, 62.955223 ], [ -68.818359, 63.763065 ], [ -66.357422, 62.288365 ], [ -66.181641, 61.938950 ], [ -68.906250, 62.349609 ], [ -71.059570, 62.915233 ], [ -72.246094, 63.411198 ], [ -71.894531, 63.685248 ], [ -74.838867, 64.680318 ], [ -74.838867, 64.396938 ], [ -77.739258, 64.244595 ], [ -78.574219, 64.586185 ], [ -77.915039, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.311523, 65.820782 ], [ -73.959961, 66.319861 ], [ -72.685547, 67.289015 ], [ -72.949219, 67.742759 ], [ -73.344727, 68.073305 ], [ -74.882812, 68.560384 ], [ -76.904297, 68.895187 ], [ -76.245117, 69.162558 ], [ -77.299805, 69.778952 ], [ -78.178711, 69.839622 ], [ -78.969727, 70.170201 ], [ -79.497070, 69.885010 ], [ -81.342773, 69.748551 ], [ -84.946289, 69.975493 ], [ -87.099609, 70.274290 ], [ -88.725586, 70.422079 ], [ -89.516602, 70.772443 ], [ -88.505859, 71.230221 ], [ -89.912109, 71.230221 ], [ -90.219727, 72.235514 ], [ -89.472656, 73.137697 ], [ -88.417969, 73.540855 ], [ -85.869141, 73.812574 ] ] ], [ [ [ -79.936523, 62.390369 ], [ -79.541016, 62.369996 ], [ -79.277344, 62.165502 ], [ -79.672852, 61.648162 ], [ -80.112305, 61.731526 ], [ -80.375977, 62.021528 ], [ -79.936523, 62.390369 ] ] ], [ [ [ -81.914062, 62.915233 ], [ -81.914062, 62.714462 ], [ -83.100586, 62.165502 ], [ -83.803711, 62.186014 ], [ -84.023438, 62.471724 ], [ -83.276367, 62.915233 ], [ -81.914062, 62.915233 ] ] ], [ [ [ -85.913086, 65.748683 ], [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.506836, 65.385147 ], [ -83.891602, 65.127638 ], [ -82.792969, 64.774125 ], [ -81.650391, 64.472794 ], [ -81.562500, 63.995235 ], [ -80.859375, 64.072200 ], [ -80.112305, 63.743631 ], [ -80.991211, 63.430860 ], [ -82.573242, 63.665760 ], [ -83.144531, 64.110602 ], [ -84.111328, 63.587675 ], [ -85.561523, 63.054959 ], [ -85.869141, 63.646259 ], [ -87.231445, 63.548552 ], [ -86.396484, 64.052978 ], [ -86.264648, 64.830254 ], [ -85.913086, 65.748683 ] ] ], [ [ [ -75.937500, 68.301905 ], [ -75.146484, 68.024022 ], [ -75.146484, 67.592475 ], [ -75.234375, 67.458082 ], [ -75.893555, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.592475 ], [ -76.816406, 68.155209 ], [ -75.937500, 68.301905 ] ] ], [ [ [ -98.261719, 70.155288 ], [ -96.591797, 69.687618 ], [ -95.668945, 69.115611 ], [ -96.284180, 68.768235 ], [ -97.646484, 69.068563 ], [ -98.437500, 68.958391 ], [ -99.799805, 69.411242 ], [ -98.920898, 69.718107 ], [ -98.261719, 70.155288 ] ] ], [ [ [ -115.224609, 73.315246 ], [ -114.169922, 73.124945 ], [ -114.697266, 72.659588 ], [ -112.456055, 72.958315 ], [ -111.093750, 72.462039 ], [ -109.951172, 72.971189 ], [ -109.028320, 72.633374 ], [ -108.193359, 71.663663 ], [ -107.709961, 72.073911 ], [ -108.413086, 73.099413 ], [ -107.534180, 73.239377 ], [ -106.523438, 73.086633 ], [ -105.424805, 72.672681 ], [ -104.809570, 71.705093 ], [ -104.501953, 71.002660 ], [ -102.788086, 70.510241 ], [ -100.986328, 70.035597 ], [ -101.118164, 69.595890 ], [ -102.744141, 69.519147 ], [ -102.128906, 69.131271 ], [ -102.436523, 68.768235 ], [ -104.282227, 68.911005 ], [ -105.996094, 69.193800 ], [ -107.138672, 69.131271 ], [ -109.028320, 68.784144 ], [ -113.334961, 68.544315 ], [ -113.862305, 69.021414 ], [ -115.224609, 69.287257 ], [ -116.147461, 69.178184 ], [ -117.377930, 69.960439 ], [ -116.674805, 70.080562 ], [ -115.136719, 70.244604 ], [ -113.730469, 70.199994 ], [ -112.456055, 70.377854 ], [ -114.389648, 70.612614 ], [ -116.499023, 70.524897 ], [ -117.905273, 70.554179 ], [ -118.432617, 70.916641 ], [ -116.147461, 71.314877 ], [ -117.685547, 71.300793 ], [ -119.443359, 71.566641 ], [ -118.564453, 72.315785 ], [ -117.905273, 72.711903 ], [ -115.224609, 73.315246 ] ] ], [ [ [ -121.552734, 74.449358 ], [ -120.146484, 74.247813 ], [ -117.597656, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.532227, 73.478485 ], [ -116.806641, 73.226700 ], [ -119.223633, 72.528130 ], [ -120.498047, 71.828840 ], [ -120.498047, 71.385142 ], [ -123.134766, 70.902268 ], [ -123.662109, 71.343013 ], [ -125.947266, 71.869909 ], [ -124.848633, 73.022592 ], [ -123.969727, 73.689611 ], [ -124.936523, 74.295463 ], [ -121.552734, 74.449358 ] ] ], [ [ [ -100.371094, 73.849286 ], [ -99.184570, 73.640171 ], [ -97.382812, 73.763497 ], [ -97.163086, 73.478485 ], [ -98.085938, 72.996909 ], [ -96.547852, 72.567668 ], [ -96.723633, 71.663663 ], [ -98.393555, 71.286699 ], [ -99.360352, 71.357067 ], [ -100.019531, 71.746432 ], [ -102.524414, 72.514931 ], [ -102.480469, 72.842021 ], [ -100.458984, 72.711903 ], [ -101.557617, 73.365639 ], [ -100.371094, 73.849286 ] ] ], [ [ [ -94.526367, 74.140084 ], [ -92.460938, 74.104015 ], [ -90.527344, 73.861506 ], [ -92.021484, 72.971189 ], [ -93.208008, 72.777081 ], [ -94.306641, 72.033289 ], [ -95.449219, 72.073911 ], [ -96.064453, 72.945431 ], [ -96.020508, 73.440953 ], [ -95.537109, 73.873717 ], [ -94.526367, 74.140084 ] ] ], [ [ [ -80.375977, 73.763497 ], [ -78.090820, 73.652545 ], [ -76.376953, 73.112184 ], [ -76.289062, 72.829052 ], [ -78.398438, 72.880871 ], [ -79.497070, 72.751039 ], [ -79.804688, 72.803086 ], [ -80.903320, 73.340461 ], [ -80.859375, 73.701948 ], [ -80.375977, 73.763497 ] ] ], [ [ [ -105.292969, 73.640171 ], [ -104.501953, 73.428424 ], [ -105.380859, 72.764065 ], [ -106.962891, 73.465984 ], [ -106.611328, 73.602996 ], [ -105.292969, 73.640171 ] ] ], [ [ [ -109.599609, 76.800739 ], [ -108.588867, 76.679785 ], [ -108.237305, 76.205967 ], [ -107.841797, 75.855911 ], [ -106.962891, 76.016094 ], [ -105.908203, 75.973553 ], [ -105.732422, 75.486148 ], [ -106.347656, 75.016306 ], [ -109.731445, 74.856413 ], [ -112.236328, 74.425777 ], [ -113.774414, 74.402163 ], [ -113.906250, 74.729615 ], [ -111.796875, 75.163300 ], [ -116.323242, 75.050354 ], [ -117.729492, 75.230667 ], [ -116.367188, 76.205967 ], [ -115.444336, 76.486046 ], [ -112.631836, 76.142958 ], [ -110.830078, 75.552081 ], [ -109.072266, 75.475131 ], [ -110.522461, 76.434604 ], [ -109.599609, 76.800739 ] ] ], [ [ [ -96.767578, 77.166927 ], [ -94.702148, 77.098423 ], [ -93.603516, 76.780655 ], [ -91.625977, 76.780655 ], [ -90.747070, 76.455203 ], [ -91.010742, 76.079668 ], [ -89.824219, 75.855911 ], [ -89.208984, 75.617721 ], [ -87.846680, 75.573993 ], [ -86.396484, 75.486148 ], [ -84.814453, 75.704786 ], [ -82.792969, 75.791336 ], [ -81.166992, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.848633, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.449358 ], [ -83.232422, 74.566736 ], [ -86.132812, 74.413974 ], [ -88.154297, 74.402163 ], [ -89.780273, 74.519889 ], [ -92.460938, 74.844929 ], [ -92.768555, 75.397779 ], [ -92.900391, 75.888091 ], [ -93.911133, 76.320754 ], [ -95.976562, 76.444907 ], [ -97.163086, 76.760541 ], [ -96.767578, 77.166927 ] ] ], [ [ [ -94.877930, 75.650431 ], [ -93.999023, 75.297735 ], [ -93.647461, 74.982183 ], [ -94.174805, 74.601781 ], [ -95.625000, 74.671638 ], [ -96.855469, 74.936567 ], [ -96.328125, 75.386696 ], [ -94.877930, 75.650431 ] ] ], [ [ [ -98.525391, 76.720223 ], [ -97.778320, 76.258260 ], [ -97.734375, 75.748125 ], [ -98.173828, 75.004940 ], [ -99.843750, 74.902266 ], [ -100.898438, 75.061686 ], [ -100.898438, 75.650431 ], [ -102.524414, 75.573993 ], [ -102.568359, 76.341523 ], [ -101.513672, 76.310358 ], [ -100.019531, 76.649377 ], [ -98.613281, 76.598545 ], [ -98.525391, 76.720223 ] ] ], [ [ [ -116.235352, 77.645947 ], [ -116.367188, 76.880775 ], [ -117.114258, 76.537296 ], [ -118.081055, 76.486046 ], [ -119.926758, 76.058508 ], [ -121.508789, 75.909504 ], [ -122.871094, 76.121893 ], [ -121.201172, 76.870796 ], [ -119.135742, 77.513624 ], [ -117.597656, 77.504119 ], [ -116.235352, 77.645947 ] ] ], [ [ [ -72.861328, 83.236426 ], [ -68.510742, 83.111071 ], [ -65.830078, 83.031552 ], [ -63.720703, 82.902419 ], [ -61.875000, 82.631333 ], [ -61.918945, 82.367483 ], [ -64.335938, 81.929358 ], [ -66.796875, 81.729511 ], [ -67.675781, 81.505299 ], [ -65.522461, 81.511788 ], [ -67.851562, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.191406, 79.804527 ], [ -73.256836, 79.639874 ], [ -73.916016, 79.432371 ], [ -76.948242, 79.327084 ], [ -75.541992, 79.204309 ], [ -76.245117, 79.021712 ], [ -75.410156, 78.534311 ], [ -76.376953, 78.188586 ], [ -77.915039, 77.906466 ], [ -78.398438, 77.513624 ], [ -79.760742, 77.215640 ], [ -79.628906, 76.990046 ], [ -77.915039, 77.029559 ], [ -77.915039, 76.780655 ], [ -80.595703, 76.184995 ], [ -83.188477, 76.455203 ], [ -86.132812, 76.299953 ], [ -87.626953, 76.424292 ], [ -89.516602, 76.475773 ], [ -89.648438, 76.960334 ], [ -87.802734, 77.186434 ], [ -88.286133, 77.906466 ], [ -87.670898, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.352539, 78.188586 ], [ -87.978516, 78.376004 ], [ -87.187500, 78.759229 ], [ -85.385742, 79.004962 ], [ -85.122070, 79.351472 ], [ -86.528320, 79.742109 ], [ -86.967773, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.452148, 80.103470 ], [ -81.870117, 80.466790 ], [ -84.111328, 80.582539 ], [ -87.626953, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.219727, 81.261711 ], [ -91.406250, 81.557074 ], [ -91.625977, 81.898451 ], [ -90.131836, 82.088196 ], [ -88.945312, 82.118384 ], [ -87.011719, 82.285331 ], [ -85.517578, 82.653843 ], [ -84.287109, 82.603099 ], [ -83.188477, 82.320646 ], [ -82.441406, 82.864308 ], [ -81.123047, 83.020881 ], [ -79.321289, 83.132123 ], [ -76.289062, 83.174035 ], [ -75.761719, 83.068774 ], [ -72.861328, 83.236426 ] ] ], [ [ [ -111.269531, 78.161570 ], [ -109.863281, 77.998190 ], [ -110.214844, 77.702234 ], [ -112.060547, 77.418254 ], [ -113.554688, 77.739618 ], [ -112.763672, 78.052896 ], [ -111.269531, 78.161570 ] ] ], [ [ [ -96.459961, 77.841848 ], [ -94.438477, 77.823323 ], [ -93.735352, 77.636542 ], [ -93.867188, 77.523122 ], [ -94.306641, 77.494607 ], [ -96.196289, 77.561042 ], [ -96.459961, 77.841848 ] ] ], [ [ [ -98.657227, 78.878528 ], [ -97.338867, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.581055, 78.420193 ], [ -95.844727, 78.061989 ], [ -97.338867, 77.851100 ], [ -98.129883, 78.089229 ], [ -98.569336, 78.464217 ], [ -98.657227, 78.878528 ] ] ], [ [ [ -105.512695, 79.302640 ], [ -103.535156, 79.171335 ], [ -100.854492, 78.801980 ], [ -100.063477, 78.331648 ], [ -99.711914, 77.915669 ], [ -101.337891, 78.025574 ], [ -102.963867, 78.349411 ], [ -105.205078, 78.384855 ], [ -104.238281, 78.681870 ], [ -105.424805, 78.920832 ], [ -105.512695, 79.302640 ] ] ], [ [ [ -92.416992, 81.261711 ], [ -91.142578, 80.725269 ], [ -89.472656, 80.510360 ], [ -87.846680, 80.320120 ], [ -87.055664, 79.663556 ], [ -85.825195, 79.343349 ], [ -87.231445, 79.046790 ], [ -89.077148, 78.296044 ], [ -90.834961, 78.215541 ], [ -92.900391, 78.349411 ], [ -93.955078, 78.759229 ], [ -93.955078, 79.121686 ], [ -93.164062, 79.383905 ], [ -95.009766, 79.375806 ], [ -96.108398, 79.710759 ], [ -96.723633, 80.163710 ], [ -96.020508, 80.604086 ], [ -95.361328, 80.907616 ], [ -94.306641, 80.983688 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.261711 ] ] ], [ [ [ -111.533203, 78.853070 ], [ -111.005859, 78.810511 ], [ -109.687500, 78.603986 ], [ -110.917969, 78.411369 ], [ -112.543945, 78.411369 ], [ -112.543945, 78.551769 ], [ -111.533203, 78.853070 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.874023, 20.303418 ], [ -155.258789, 20.014645 ], [ -154.819336, 19.518375 ], [ -155.566406, 19.103648 ], [ -155.698242, 18.937464 ], [ -155.961914, 19.062118 ], [ -155.917969, 19.352611 ], [ -156.093750, 19.725342 ], [ -155.874023, 20.014645 ], [ -155.961914, 20.179724 ], [ -155.874023, 20.303418 ] ] ], [ [ [ -156.621094, 21.043491 ], [ -156.269531, 20.920397 ], [ -156.005859, 20.797201 ], [ -156.093750, 20.673905 ], [ -156.445312, 20.591652 ], [ -156.752930, 20.961440 ], [ -156.621094, 21.043491 ] ] ], [ [ [ -157.280273, 21.248422 ], [ -156.796875, 21.207459 ], [ -156.796875, 21.084500 ], [ -157.368164, 21.125498 ], [ -157.280273, 21.248422 ] ] ], [ [ [ -158.027344, 21.739091 ], [ -157.675781, 21.330315 ], [ -157.719727, 21.289374 ], [ -158.159180, 21.330315 ], [ -158.334961, 21.616579 ], [ -158.027344, 21.739091 ] ] ], [ [ [ -159.609375, 22.268764 ], [ -159.389648, 22.228090 ], [ -159.345703, 21.983801 ], [ -159.477539, 21.902278 ], [ -159.829102, 22.105999 ], [ -159.609375, 22.268764 ] ] ], [ [ [ -94.833984, 49.410973 ], [ -94.658203, 48.864715 ], [ -94.350586, 48.690960 ], [ -92.636719, 48.458352 ], [ -91.669922, 48.166085 ], [ -90.834961, 48.283193 ], [ -89.604492, 48.019324 ], [ -89.296875, 48.048710 ], [ -88.417969, 48.312428 ], [ -84.902344, 46.920255 ], [ -84.814453, 46.649436 ], [ -84.550781, 46.558860 ], [ -84.638672, 46.468133 ], [ -84.375000, 46.437857 ], [ -84.155273, 46.528635 ], [ -84.111328, 46.286224 ], [ -83.891602, 46.134170 ], [ -83.627930, 46.134170 ], [ -83.496094, 46.012224 ], [ -83.627930, 45.828799 ], [ -82.573242, 45.367584 ], [ -82.177734, 43.580391 ], [ -82.441406, 43.004647 ], [ -83.144531, 42.098222 ], [ -83.144531, 42.000325 ], [ -83.056641, 41.836828 ], [ -82.705078, 41.705729 ], [ -82.441406, 41.705729 ], [ -81.298828, 42.228517 ], [ -80.288086, 42.391009 ], [ -78.969727, 42.875964 ], [ -79.013672, 43.293200 ], [ -79.189453, 43.484812 ], [ -78.750000, 43.644026 ], [ -76.860352, 43.644026 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.840291 ], [ -74.882812, 45.026950 ], [ -71.542969, 45.026950 ], [ -71.411133, 45.274886 ], [ -71.103516, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.709736 ], [ -69.257812, 47.457809 ], [ -68.906250, 47.189712 ], [ -68.247070, 47.368594 ], [ -67.807617, 47.070122 ], [ -67.807617, 45.706179 ], [ -67.148438, 45.151053 ], [ -66.972656, 44.840291 ], [ -68.071289, 44.339565 ], [ -70.136719, 43.707594 ], [ -70.839844, 42.875964 ], [ -70.839844, 42.358544 ], [ -70.532227, 41.836828 ], [ -70.092773, 41.804078 ], [ -70.224609, 42.163403 ], [ -69.916992, 41.934977 ], [ -70.004883, 41.640078 ], [ -70.664062, 41.475660 ], [ -71.147461, 41.508577 ], [ -71.894531, 41.343825 ], [ -72.905273, 41.244772 ], [ -73.740234, 40.946714 ], [ -72.246094, 41.145570 ], [ -71.982422, 40.946714 ], [ -73.388672, 40.647304 ], [ -74.003906, 40.647304 ], [ -73.959961, 40.780541 ], [ -74.267578, 40.480381 ], [ -74.003906, 40.446947 ], [ -74.179688, 39.740986 ], [ -74.926758, 38.959409 ], [ -75.014648, 39.198205 ], [ -75.234375, 39.266284 ], [ -75.541992, 39.504041 ], [ -75.322266, 38.993572 ], [ -75.102539, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.981445, 37.230328 ], [ -76.069336, 37.265310 ], [ -75.761719, 37.961523 ], [ -76.245117, 38.341656 ], [ -76.376953, 39.164141 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.099983 ], [ -76.992188, 38.272689 ], [ -76.333008, 37.926868 ], [ -76.289062, 36.985003 ], [ -75.981445, 36.914764 ], [ -75.761719, 35.567980 ], [ -76.376953, 34.813803 ], [ -77.431641, 34.524661 ], [ -78.090820, 33.943360 ], [ -78.574219, 33.870416 ], [ -79.101562, 33.504759 ], [ -79.233398, 33.174342 ], [ -80.332031, 32.509762 ], [ -80.903320, 32.063956 ], [ -81.342773, 31.466154 ], [ -81.518555, 30.751278 ], [ -81.342773, 30.069094 ], [ -80.991211, 29.190533 ], [ -80.551758, 28.497661 ], [ -80.551758, 28.071980 ], [ -80.068359, 26.902477 ], [ -80.156250, 25.839449 ], [ -80.419922, 25.244696 ], [ -80.683594, 25.085599 ], [ -81.210938, 25.204941 ], [ -81.342773, 25.641526 ], [ -81.738281, 25.878994 ], [ -82.749023, 27.527758 ], [ -82.880859, 27.916767 ], [ -82.661133, 28.574874 ], [ -82.968750, 29.113775 ], [ -83.715820, 29.954935 ], [ -84.111328, 30.107118 ], [ -85.122070, 29.649869 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.183122 ], [ -86.440430, 30.410782 ], [ -87.539062, 30.297018 ], [ -88.417969, 30.410782 ], [ -89.208984, 30.334954 ], [ -89.604492, 30.183122 ], [ -89.428711, 29.916852 ], [ -89.472656, 29.496988 ], [ -89.252930, 29.305561 ], [ -89.428711, 29.190533 ], [ -89.780273, 29.343875 ], [ -90.175781, 29.152161 ], [ -90.922852, 29.152161 ], [ -91.669922, 29.688053 ], [ -92.504883, 29.573457 ], [ -93.251953, 29.802518 ], [ -93.867188, 29.726222 ], [ -94.702148, 29.496988 ], [ -95.625000, 28.767659 ], [ -96.635742, 28.343065 ], [ -97.163086, 27.839076 ], [ -97.382812, 27.410786 ], [ -97.382812, 26.706360 ], [ -97.338867, 26.234302 ], [ -97.163086, 25.878994 ], [ -97.558594, 25.878994 ], [ -98.261719, 26.076521 ], [ -99.052734, 26.391870 ], [ -99.316406, 26.863281 ], [ -99.536133, 27.566721 ], [ -100.151367, 28.110749 ], [ -100.986328, 29.382175 ], [ -101.689453, 29.802518 ], [ -102.480469, 29.764377 ], [ -103.139648, 28.998532 ], [ -103.974609, 29.305561 ], [ -104.458008, 29.573457 ], [ -105.073242, 30.675715 ], [ -106.171875, 31.428663 ], [ -106.523438, 31.765537 ], [ -108.281250, 31.765537 ], [ -108.281250, 31.353637 ], [ -111.049805, 31.353637 ], [ -114.829102, 32.546813 ], [ -114.741211, 32.731841 ], [ -117.158203, 32.546813 ], [ -117.333984, 33.063924 ], [ -117.949219, 33.651208 ], [ -118.432617, 33.760882 ], [ -118.520508, 34.052659 ], [ -119.091797, 34.089061 ], [ -119.443359, 34.379713 ], [ -120.410156, 34.452218 ], [ -120.629883, 34.633208 ], [ -120.761719, 35.173808 ], [ -121.728516, 36.173357 ], [ -122.563477, 37.579413 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.134557 ], [ -123.750000, 38.959409 ], [ -123.881836, 39.774769 ], [ -124.409180, 40.346544 ], [ -124.189453, 41.145570 ], [ -124.233398, 42.000325 ], [ -124.541016, 42.779275 ], [ -124.145508, 43.739352 ], [ -123.925781, 45.552525 ], [ -124.101562, 46.890232 ], [ -124.409180, 47.724545 ], [ -124.716797, 48.195387 ], [ -124.584961, 48.400032 ], [ -123.134766, 48.048710 ], [ -122.607422, 47.100045 ], [ -122.343750, 47.368594 ], [ -122.519531, 48.195387 ], [ -122.871094, 49.009051 ], [ -95.185547, 49.009051 ], [ -95.185547, 49.410973 ], [ -94.833984, 49.410973 ] ] ], [ [ [ -156.621094, 71.371109 ], [ -155.083008, 71.159391 ], [ -154.379883, 70.699951 ], [ -153.940430, 70.902268 ], [ -152.226562, 70.830248 ], [ -152.270508, 70.612614 ], [ -150.776367, 70.436799 ], [ -149.721680, 70.539543 ], [ -147.656250, 70.214875 ], [ -145.722656, 70.125430 ], [ -144.931641, 69.990535 ], [ -143.613281, 70.155288 ], [ -142.075195, 69.854762 ], [ -141.020508, 69.718107 ], [ -141.020508, 60.326948 ], [ -140.053711, 60.283408 ], [ -139.042969, 60.020952 ], [ -138.383789, 59.578851 ], [ -137.460938, 58.927334 ], [ -136.494141, 59.467408 ], [ -135.483398, 59.800634 ], [ -134.956055, 59.288332 ], [ -134.296875, 58.881942 ], [ -133.374023, 58.424730 ], [ -131.748047, 56.559482 ], [ -130.034180, 55.924586 ], [ -129.990234, 55.304138 ], [ -130.561523, 54.826008 ], [ -131.088867, 55.203953 ], [ -131.967773, 55.503750 ], [ -132.275391, 56.389584 ], [ -133.549805, 57.183902 ], [ -134.121094, 58.124320 ], [ -135.043945, 58.193871 ], [ -136.669922, 58.217025 ], [ -137.812500, 58.516652 ], [ -139.877930, 59.556592 ], [ -142.602539, 60.086763 ], [ -143.964844, 60.020952 ], [ -145.942383, 60.478879 ], [ -147.128906, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.051758, 59.998986 ], [ -148.579102, 59.933000 ], [ -149.765625, 59.712097 ], [ -150.644531, 59.377988 ], [ -151.743164, 59.175928 ], [ -151.875000, 59.756395 ], [ -151.435547, 60.737686 ], [ -150.380859, 61.037012 ], [ -150.644531, 61.291349 ], [ -151.918945, 60.737686 ], [ -152.622070, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.325195, 58.881942 ], [ -154.248047, 58.147519 ], [ -155.346680, 57.751076 ], [ -156.313477, 57.444949 ], [ -156.577148, 56.992883 ], [ -158.159180, 56.486762 ], [ -158.466797, 55.998381 ], [ -159.609375, 55.578345 ], [ -160.312500, 55.652798 ], [ -162.246094, 55.028022 ], [ -163.081055, 54.699234 ], [ -164.794922, 54.418930 ], [ -164.970703, 54.597528 ], [ -163.872070, 55.053203 ], [ -162.905273, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.576172, 56.022948 ], [ -160.092773, 56.438204 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.231503 ], [ -157.763672, 57.586559 ], [ -157.587891, 58.332567 ], [ -157.060547, 58.927334 ], [ -158.203125, 58.631217 ], [ -158.554688, 58.790978 ], [ -159.082031, 58.424730 ], [ -159.741211, 58.950008 ], [ -160.004883, 58.585436 ], [ -160.356445, 59.085739 ], [ -161.367188, 58.676938 ], [ -161.982422, 58.676938 ], [ -162.070312, 59.288332 ], [ -161.894531, 59.645540 ], [ -162.553711, 59.998986 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.283408 ], [ -165.366211, 60.522158 ], [ -165.366211, 61.079544 ], [ -166.157227, 61.501734 ], [ -165.761719, 62.083315 ], [ -164.926758, 62.633770 ], [ -164.575195, 63.154355 ], [ -163.784180, 63.233627 ], [ -163.081055, 63.074866 ], [ -162.290039, 63.548552 ], [ -161.542969, 63.470145 ], [ -160.795898, 63.782486 ], [ -160.971680, 64.225493 ], [ -161.542969, 64.415921 ], [ -160.795898, 64.792848 ], [ -161.411133, 64.792848 ], [ -162.465820, 64.567319 ], [ -162.773438, 64.339908 ], [ -163.564453, 64.567319 ], [ -164.970703, 64.453849 ], [ -166.464844, 64.699105 ], [ -166.860352, 65.090646 ], [ -168.134766, 65.676381 ], [ -166.728516, 66.089364 ], [ -164.487305, 66.583217 ], [ -163.696289, 66.583217 ], [ -163.828125, 66.089364 ], [ -161.718750, 66.124962 ], [ -162.509766, 66.739902 ], [ -163.740234, 67.118748 ], [ -164.443359, 67.625954 ], [ -165.410156, 68.056889 ], [ -166.772461, 68.366801 ], [ -166.245117, 68.895187 ], [ -164.443359, 68.926811 ], [ -163.168945, 69.380313 ], [ -162.949219, 69.869892 ], [ -161.938477, 70.333533 ], [ -160.971680, 70.451508 ], [ -159.082031, 70.902268 ], [ -158.159180, 70.830248 ], [ -156.621094, 71.371109 ] ] ], [ [ [ -153.237305, 57.984808 ], [ -152.578125, 57.914848 ], [ -152.182617, 57.610107 ], [ -153.017578, 57.136239 ], [ -154.028320, 56.752723 ], [ -154.555664, 56.992883 ], [ -154.687500, 57.468589 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.984808 ] ] ], [ [ [ -166.508789, 60.392148 ], [ -165.717773, 60.305185 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.860352, 59.955010 ], [ -167.475586, 60.217991 ], [ -166.508789, 60.392148 ] ] ], [ [ [ -171.738281, 63.801894 ], [ -171.123047, 63.607217 ], [ -170.507812, 63.704722 ], [ -169.716797, 63.450509 ], [ -168.706055, 63.312683 ], [ -168.793945, 63.194018 ], [ -169.541016, 62.995158 ], [ -170.332031, 63.213830 ], [ -170.683594, 63.391522 ], [ -171.562500, 63.332413 ], [ -171.826172, 63.411198 ], [ -171.738281, 63.801894 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.741211, 32.731841 ], [ -114.829102, 32.546813 ], [ -111.049805, 31.353637 ], [ -108.281250, 31.353637 ], [ -108.281250, 31.765537 ], [ -106.523438, 31.765537 ], [ -106.171875, 31.428663 ], [ -105.073242, 30.675715 ], [ -104.458008, 29.573457 ], [ -103.974609, 29.305561 ], [ -103.139648, 28.998532 ], [ -102.480469, 29.764377 ], [ -101.689453, 29.802518 ], [ -100.986328, 29.382175 ], [ -100.151367, 28.110749 ], [ -99.536133, 27.566721 ], [ -99.316406, 26.863281 ], [ -99.052734, 26.391870 ], [ -97.558594, 25.878994 ], [ -97.163086, 25.878994 ], [ -97.558594, 25.005973 ], [ -97.734375, 24.287027 ], [ -97.778320, 22.958393 ], [ -97.910156, 22.471955 ], [ -97.734375, 21.902278 ], [ -97.426758, 21.412162 ], [ -97.207031, 20.673905 ], [ -96.547852, 19.932041 ], [ -96.328125, 19.352611 ], [ -95.932617, 18.854310 ], [ -94.877930, 18.562947 ], [ -94.438477, 18.145852 ], [ -93.559570, 18.437925 ], [ -92.812500, 18.562947 ], [ -91.450195, 18.895893 ], [ -90.791016, 19.311143 ], [ -90.571289, 19.890723 ], [ -90.483398, 20.715015 ], [ -90.307617, 21.002471 ], [ -89.604492, 21.289374 ], [ -88.549805, 21.493964 ], [ -87.670898, 21.493964 ], [ -87.055664, 21.575719 ], [ -86.835938, 21.371244 ], [ -86.879883, 20.879343 ], [ -87.407227, 20.262197 ], [ -87.626953, 19.683970 ], [ -87.451172, 19.476950 ], [ -87.846680, 18.271086 ], [ -88.110352, 18.521283 ], [ -88.505859, 18.521283 ], [ -88.857422, 17.895114 ], [ -89.033203, 18.020528 ], [ -89.165039, 17.978733 ], [ -89.165039, 17.811456 ], [ -91.010742, 17.853290 ], [ -91.010742, 17.266728 ], [ -91.494141, 17.266728 ], [ -90.747070, 16.720385 ], [ -90.615234, 16.509833 ], [ -90.439453, 16.425548 ], [ -90.483398, 16.088042 ], [ -91.757812, 16.088042 ], [ -92.241211, 15.284185 ], [ -92.109375, 15.072124 ], [ -92.241211, 14.859850 ], [ -92.241211, 14.562318 ], [ -93.383789, 15.623037 ], [ -93.911133, 15.961329 ], [ -94.702148, 16.214675 ], [ -95.273438, 16.130262 ], [ -96.064453, 15.792254 ], [ -96.591797, 15.665354 ], [ -98.041992, 16.130262 ], [ -98.964844, 16.594081 ], [ -99.711914, 16.720385 ], [ -100.854492, 17.182779 ], [ -101.689453, 17.685895 ], [ -101.953125, 17.936929 ], [ -102.480469, 17.978733 ], [ -103.535156, 18.312811 ], [ -103.930664, 18.771115 ], [ -105.029297, 19.352611 ], [ -105.512695, 19.973349 ], [ -105.732422, 20.468189 ], [ -105.424805, 20.550509 ], [ -105.512695, 20.838278 ], [ -105.292969, 21.084500 ], [ -105.292969, 21.453069 ], [ -105.644531, 21.902278 ], [ -105.732422, 22.309426 ], [ -106.040039, 22.796439 ], [ -106.918945, 23.805450 ], [ -107.929688, 24.567108 ], [ -108.413086, 25.204941 ], [ -109.291992, 25.601902 ], [ -109.467773, 25.839449 ], [ -109.291992, 26.470573 ], [ -109.819336, 26.706360 ], [ -110.434570, 27.176469 ], [ -110.654297, 27.877928 ], [ -111.181641, 27.955591 ], [ -112.236328, 28.960089 ], [ -112.280273, 29.267233 ], [ -112.851562, 30.031055 ], [ -113.203125, 30.789037 ], [ -113.159180, 31.203405 ], [ -113.906250, 31.578535 ], [ -114.213867, 31.541090 ], [ -114.785156, 31.802893 ], [ -114.960938, 31.428663 ], [ -114.785156, 30.939924 ], [ -114.697266, 30.183122 ], [ -113.466797, 28.844674 ], [ -113.291016, 28.767659 ], [ -113.159180, 28.420391 ], [ -112.983398, 28.459033 ], [ -112.763672, 27.800210 ], [ -112.500000, 27.527758 ], [ -112.280273, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.313477, 25.760320 ], [ -110.742188, 24.846565 ], [ -110.698242, 24.327077 ], [ -110.214844, 24.287027 ], [ -109.423828, 23.402765 ], [ -109.467773, 23.200961 ], [ -109.863281, 22.836946 ], [ -110.039062, 22.836946 ], [ -110.302734, 23.443089 ], [ -110.961914, 24.006326 ], [ -111.708984, 24.487149 ], [ -112.192383, 24.766785 ], [ -112.192383, 25.482951 ], [ -112.324219, 26.037042 ], [ -113.466797, 26.784847 ], [ -113.598633, 26.667096 ], [ -113.862305, 26.902477 ], [ -114.477539, 27.176469 ], [ -115.092773, 27.761330 ], [ -115.004883, 27.800210 ], [ -114.609375, 27.761330 ], [ -114.213867, 28.149503 ], [ -114.169922, 28.574874 ], [ -114.960938, 29.305561 ], [ -115.532227, 29.573457 ], [ -116.762695, 31.653381 ], [ -117.158203, 32.546813 ], [ -114.741211, 32.731841 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -91.010742, 17.853290 ], [ -89.165039, 17.811456 ], [ -89.252930, 15.919074 ], [ -88.945312, 15.919074 ], [ -88.637695, 15.707663 ], [ -88.549805, 15.876809 ], [ -88.242188, 15.749963 ], [ -88.681641, 15.368950 ], [ -89.165039, 15.072124 ], [ -89.252930, 14.902322 ], [ -89.165039, 14.689881 ], [ -89.384766, 14.434680 ], [ -89.604492, 14.392118 ], [ -89.560547, 14.264383 ], [ -90.087891, 13.923404 ], [ -90.131836, 13.752725 ], [ -90.615234, 13.923404 ], [ -91.274414, 13.966054 ], [ -91.713867, 14.136576 ], [ -92.241211, 14.562318 ], [ -92.241211, 14.859850 ], [ -92.109375, 15.072124 ], [ -92.241211, 15.284185 ], [ -91.757812, 16.088042 ], [ -90.483398, 16.088042 ], [ -90.439453, 16.425548 ], [ -90.615234, 16.509833 ], [ -90.747070, 16.720385 ], [ -91.494141, 17.266728 ], [ -91.010742, 17.266728 ], [ -91.010742, 17.853290 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.112305, 83.647837 ], [ -27.114258, 83.520162 ], [ -20.874023, 82.732092 ], [ -22.719727, 82.344100 ], [ -26.542969, 82.303009 ], [ -31.904297, 82.202302 ], [ -31.420898, 82.027475 ], [ -27.861328, 82.136441 ], [ -24.873047, 81.792486 ], [ -22.939453, 82.094243 ], [ -22.104492, 81.735830 ], [ -23.203125, 81.154241 ], [ -20.654297, 81.524751 ], [ -15.776367, 81.917010 ], [ -12.788086, 81.723188 ], [ -12.216797, 81.295029 ], [ -16.303711, 80.582539 ], [ -16.875000, 80.356995 ], [ -20.083008, 80.178713 ], [ -17.753906, 80.133635 ], [ -18.940430, 79.400085 ], [ -19.731445, 78.759229 ], [ -19.687500, 77.645947 ], [ -18.500977, 76.990046 ], [ -20.039062, 76.950415 ], [ -21.708984, 76.629067 ], [ -19.863281, 76.100796 ], [ -19.599609, 75.253057 ], [ -20.698242, 75.163300 ], [ -19.379883, 74.307353 ], [ -21.621094, 74.223935 ], [ -20.434570, 73.824820 ], [ -20.786133, 73.465984 ], [ -22.192383, 73.315246 ], [ -23.598633, 73.315246 ], [ -22.324219, 72.633374 ], [ -22.324219, 72.195246 ], [ -24.301758, 72.607120 ], [ -24.829102, 72.342464 ], [ -23.466797, 72.087432 ], [ -22.148438, 71.469124 ], [ -21.796875, 70.670881 ], [ -23.554688, 70.480896 ], [ -25.576172, 71.441171 ], [ -25.224609, 70.757966 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.368164, 70.140364 ], [ -25.048828, 69.271709 ], [ -27.773438, 68.479926 ], [ -30.673828, 68.138852 ], [ -31.816406, 68.122482 ], [ -32.827148, 67.742759 ], [ -34.233398, 66.687784 ], [ -36.386719, 65.982270 ], [ -37.045898, 65.946472 ], [ -39.814453, 65.476508 ], [ -40.693359, 64.848937 ], [ -40.693359, 64.148952 ], [ -41.220703, 63.489767 ], [ -42.846680, 62.694310 ], [ -42.451172, 61.918271 ], [ -43.417969, 60.108670 ], [ -44.824219, 60.042904 ], [ -46.274414, 60.866312 ], [ -48.295898, 60.866312 ], [ -49.262695, 61.417750 ], [ -49.921875, 62.390369 ], [ -51.635742, 63.646259 ], [ -52.163086, 64.282760 ], [ -52.294922, 65.183030 ], [ -53.701172, 66.107170 ], [ -53.305664, 66.843807 ], [ -54.008789, 67.204032 ], [ -52.998047, 68.366801 ], [ -51.503906, 68.736383 ], [ -51.108398, 69.162558 ], [ -50.888672, 69.930300 ], [ -52.558594, 69.426691 ], [ -53.481445, 69.287257 ], [ -54.711914, 69.611206 ], [ -54.755859, 70.303933 ], [ -54.360352, 70.830248 ], [ -53.437500, 70.844673 ], [ -51.416016, 70.583418 ], [ -54.008789, 71.552741 ], [ -55.019531, 71.413177 ], [ -55.854492, 71.663663 ], [ -54.755859, 72.593979 ], [ -55.327148, 72.971189 ], [ -57.348633, 74.718037 ], [ -58.623047, 75.106932 ], [ -58.623047, 75.519151 ], [ -61.303711, 76.111348 ], [ -63.413086, 76.184995 ], [ -66.093750, 76.142958 ], [ -68.510742, 76.069092 ], [ -69.697266, 76.382969 ], [ -71.411133, 77.009817 ], [ -68.818359, 77.331809 ], [ -66.796875, 77.379906 ], [ -71.059570, 77.636542 ], [ -73.300781, 78.052896 ], [ -73.168945, 78.437823 ], [ -69.389648, 78.920832 ], [ -65.742188, 79.400085 ], [ -65.346680, 79.765560 ], [ -68.027344, 80.118564 ], [ -67.192383, 80.517603 ], [ -63.720703, 81.214853 ], [ -62.270508, 81.321593 ], [ -62.666016, 81.773644 ], [ -60.292969, 82.039656 ], [ -57.216797, 82.196337 ], [ -54.140625, 82.202302 ], [ -53.085938, 81.892256 ], [ -50.405273, 82.442987 ], [ -48.032227, 82.070028 ], [ -46.625977, 81.990821 ], [ -44.560547, 81.666057 ], [ -46.933594, 82.202302 ], [ -46.801758, 82.631333 ], [ -43.417969, 83.226067 ], [ -39.902344, 83.184473 ], [ -38.627930, 83.549851 ], [ -35.112305, 83.647837 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.222656, 25.244696 ], [ -77.915039, 25.204941 ], [ -77.563477, 24.367114 ], [ -77.563477, 23.765237 ], [ -77.783203, 23.725012 ], [ -78.046875, 24.287027 ], [ -78.442383, 24.607069 ], [ -78.222656, 25.244696 ] ] ], [ [ [ -77.827148, 27.059126 ], [ -77.036133, 26.627818 ], [ -77.211914, 25.918526 ], [ -77.387695, 26.037042 ], [ -77.343750, 26.549223 ], [ -77.827148, 26.941660 ], [ -77.827148, 27.059126 ] ] ], [ [ [ -78.530273, 26.902477 ], [ -77.871094, 26.863281 ], [ -77.827148, 26.588527 ], [ -78.925781, 26.431228 ], [ -79.013672, 26.824071 ], [ -78.530273, 26.902477 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.330078, 18.521283 ], [ -88.330078, 18.354526 ], [ -88.110352, 18.354526 ], [ -88.154297, 18.104087 ], [ -88.286133, 17.685895 ], [ -88.198242, 17.518344 ], [ -88.330078, 17.140790 ], [ -88.242188, 17.056785 ], [ -88.374023, 16.551962 ], [ -88.593750, 16.299051 ], [ -88.769531, 16.256867 ], [ -88.945312, 15.919074 ], [ -89.252930, 15.919074 ], [ -89.165039, 17.811456 ], [ -89.165039, 17.978733 ], [ -89.033203, 18.020528 ], [ -88.857422, 17.895114 ], [ -88.505859, 18.521283 ], [ -88.330078, 18.521283 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.384766, 14.434680 ], [ -89.077148, 14.349548 ], [ -88.549805, 14.008696 ], [ -88.505859, 13.880746 ], [ -88.066406, 13.966054 ], [ -87.890625, 13.923404 ], [ -87.758789, 13.795406 ], [ -87.802734, 13.410994 ], [ -87.934570, 13.154376 ], [ -88.505859, 13.197165 ], [ -89.296875, 13.496473 ], [ -89.824219, 13.539201 ], [ -90.131836, 13.752725 ], [ -90.087891, 13.923404 ], [ -89.560547, 14.264383 ], [ -89.604492, 14.392118 ], [ -89.384766, 14.434680 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.044922, 16.045813 ], [ -85.473633, 15.919074 ], [ -84.990234, 16.003576 ], [ -84.375000, 15.876809 ], [ -83.803711, 15.453680 ], [ -83.452148, 15.284185 ], [ -83.188477, 15.029686 ], [ -83.496094, 15.029686 ], [ -83.671875, 14.902322 ], [ -83.979492, 14.774883 ], [ -84.243164, 14.774883 ], [ -84.462891, 14.647368 ], [ -84.682617, 14.689881 ], [ -84.858398, 14.859850 ], [ -84.946289, 14.817371 ], [ -85.078125, 14.562318 ], [ -85.166016, 14.562318 ], [ -85.166016, 14.392118 ], [ -85.825195, 13.838080 ], [ -86.132812, 14.051331 ], [ -86.352539, 13.795406 ], [ -86.791992, 13.795406 ], [ -86.748047, 13.282719 ], [ -86.923828, 13.282719 ], [ -87.011719, 13.025966 ], [ -87.319336, 13.025966 ], [ -87.495117, 13.325485 ], [ -87.802734, 13.410994 ], [ -87.758789, 13.795406 ], [ -87.890625, 13.923404 ], [ -88.066406, 13.966054 ], [ -88.505859, 13.880746 ], [ -88.549805, 14.008696 ], [ -89.077148, 14.349548 ], [ -89.384766, 14.434680 ], [ -89.165039, 14.689881 ], [ -89.252930, 14.902322 ], [ -89.165039, 15.072124 ], [ -88.681641, 15.368950 ], [ -88.242188, 15.749963 ], [ -88.154297, 15.707663 ], [ -87.934570, 15.876809 ], [ -87.626953, 15.919074 ], [ -87.539062, 15.834536 ], [ -87.407227, 15.876809 ], [ -86.923828, 15.792254 ], [ -86.484375, 15.792254 ], [ -86.132812, 15.919074 ], [ -86.044922, 16.045813 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.188477, 15.029686 ], [ -83.320312, 14.689881 ], [ -83.188477, 14.349548 ], [ -83.452148, 14.008696 ], [ -83.540039, 13.581921 ], [ -83.583984, 13.154376 ], [ -83.496094, 12.425848 ], [ -83.627930, 12.340002 ], [ -83.759766, 11.910354 ], [ -83.671875, 11.652236 ], [ -83.891602, 11.393879 ], [ -83.847656, 11.135287 ], [ -83.671875, 10.962764 ], [ -83.935547, 10.746969 ], [ -84.199219, 10.833306 ], [ -84.375000, 11.005904 ], [ -84.682617, 11.092166 ], [ -84.946289, 10.962764 ], [ -85.605469, 11.221510 ], [ -85.737305, 11.092166 ], [ -86.528320, 11.824341 ], [ -86.748047, 12.168226 ], [ -87.670898, 12.940322 ], [ -87.583008, 13.068777 ], [ -87.407227, 12.940322 ], [ -87.319336, 13.025966 ], [ -87.011719, 13.025966 ], [ -86.923828, 13.282719 ], [ -86.748047, 13.282719 ], [ -86.791992, 13.795406 ], [ -86.352539, 13.795406 ], [ -86.132812, 14.051331 ], [ -85.825195, 13.838080 ], [ -85.166016, 14.392118 ], [ -85.166016, 14.562318 ], [ -85.078125, 14.562318 ], [ -84.946289, 14.817371 ], [ -84.858398, 14.859850 ], [ -84.682617, 14.689881 ], [ -84.462891, 14.647368 ], [ -84.243164, 14.774883 ], [ -83.979492, 14.774883 ], [ -83.671875, 14.902322 ], [ -83.496094, 15.029686 ], [ -83.188477, 15.029686 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.309570, 23.200961 ], [ -80.639648, 23.120154 ], [ -79.716797, 22.796439 ], [ -79.321289, 22.431340 ], [ -78.354492, 22.512557 ], [ -76.552734, 21.207459 ], [ -76.201172, 21.248422 ], [ -75.629883, 21.043491 ], [ -75.673828, 20.756114 ], [ -74.970703, 20.715015 ], [ -74.179688, 20.303418 ], [ -74.311523, 20.055931 ], [ -74.970703, 19.932041 ], [ -75.673828, 19.890723 ], [ -76.333008, 19.973349 ], [ -77.783203, 19.890723 ], [ -77.124023, 20.427013 ], [ -77.519531, 20.673905 ], [ -78.178711, 20.756114 ], [ -78.486328, 21.043491 ], [ -78.750000, 21.616579 ], [ -79.321289, 21.575719 ], [ -80.244141, 21.861499 ], [ -80.551758, 22.065278 ], [ -81.826172, 22.228090 ], [ -82.177734, 22.390714 ], [ -81.826172, 22.674847 ], [ -82.792969, 22.715390 ], [ -83.496094, 22.187405 ], [ -83.935547, 22.187405 ], [ -84.067383, 21.943046 ], [ -84.550781, 21.820708 ], [ -84.990234, 21.902278 ], [ -84.462891, 22.228090 ], [ -84.243164, 22.593726 ], [ -83.803711, 22.796439 ], [ -83.276367, 22.998852 ], [ -82.529297, 23.079732 ], [ -82.309570, 23.200961 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.605469, 11.221510 ], [ -84.946289, 10.962764 ], [ -84.682617, 11.092166 ], [ -84.375000, 11.005904 ], [ -84.199219, 10.833306 ], [ -83.935547, 10.746969 ], [ -83.671875, 10.962764 ], [ -83.408203, 10.401378 ], [ -82.573242, 9.579084 ], [ -82.968750, 9.492408 ], [ -82.968750, 9.102097 ], [ -82.749023, 8.928487 ], [ -82.880859, 8.841651 ], [ -82.836914, 8.667918 ], [ -82.968750, 8.233237 ], [ -83.540039, 8.450639 ], [ -83.715820, 8.667918 ], [ -83.627930, 8.841651 ], [ -83.671875, 9.058702 ], [ -83.935547, 9.318990 ], [ -84.682617, 9.622414 ], [ -84.726562, 9.925566 ], [ -84.990234, 10.098670 ], [ -84.946289, 9.838979 ], [ -85.122070, 9.579084 ], [ -85.341797, 9.838979 ], [ -85.693359, 9.968851 ], [ -85.825195, 10.141932 ], [ -85.825195, 10.444598 ], [ -85.693359, 10.790141 ], [ -85.957031, 10.919618 ], [ -85.605469, 11.221510 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.584961, 9.622414 ], [ -79.057617, 9.579084 ], [ -79.101562, 9.492408 ], [ -78.530273, 9.449062 ], [ -78.090820, 9.275622 ], [ -77.387695, 8.711359 ], [ -77.475586, 8.537565 ], [ -77.255859, 7.972198 ], [ -77.431641, 7.667441 ], [ -77.783203, 7.710992 ], [ -77.915039, 7.231699 ], [ -78.222656, 7.536764 ], [ -78.442383, 8.059230 ], [ -78.222656, 8.320212 ], [ -78.442383, 8.407168 ], [ -78.662109, 8.754795 ], [ -79.145508, 9.015302 ], [ -79.584961, 8.971897 ], [ -79.760742, 8.624472 ], [ -80.200195, 8.363693 ], [ -80.419922, 8.320212 ], [ -80.507812, 8.102739 ], [ -80.024414, 7.580328 ], [ -80.288086, 7.449624 ], [ -80.463867, 7.275292 ], [ -80.903320, 7.231699 ], [ -81.079102, 7.841615 ], [ -81.210938, 7.667441 ], [ -81.562500, 7.710992 ], [ -81.738281, 8.146243 ], [ -82.133789, 8.189742 ], [ -82.397461, 8.320212 ], [ -82.836914, 8.320212 ], [ -82.880859, 8.102739 ], [ -82.968750, 8.233237 ], [ -82.836914, 8.667918 ], [ -82.880859, 8.841651 ], [ -82.749023, 8.928487 ], [ -82.968750, 9.102097 ], [ -82.968750, 9.492408 ], [ -82.573242, 9.579084 ], [ -82.221680, 9.232249 ], [ -82.221680, 9.015302 ], [ -81.826172, 8.971897 ], [ -81.738281, 9.058702 ], [ -81.474609, 8.798225 ], [ -80.991211, 8.885072 ], [ -80.551758, 9.145486 ], [ -79.936523, 9.318990 ], [ -79.584961, 9.622414 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.827148, 18.562947 ], [ -77.607422, 18.521283 ], [ -76.904297, 18.437925 ], [ -76.376953, 18.187607 ], [ -76.201172, 17.895114 ], [ -76.904297, 17.895114 ], [ -77.211914, 17.727759 ], [ -77.783203, 17.895114 ], [ -78.354492, 18.229351 ], [ -78.222656, 18.479609 ], [ -77.827148, 18.562947 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.212891, 19.932041 ], [ -71.718750, 19.725342 ], [ -71.630859, 19.186678 ], [ -71.718750, 18.812718 ], [ -71.982422, 18.646245 ], [ -71.718750, 18.354526 ], [ -71.718750, 18.062312 ], [ -72.377930, 18.229351 ], [ -72.861328, 18.145852 ], [ -73.476562, 18.229351 ], [ -73.959961, 18.062312 ], [ -74.487305, 18.354526 ], [ -74.399414, 18.687879 ], [ -72.729492, 18.479609 ], [ -72.377930, 18.687879 ], [ -72.817383, 19.103648 ], [ -72.817383, 19.518375 ], [ -73.432617, 19.642588 ], [ -73.212891, 19.932041 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.839844, 19.890723 ], [ -70.224609, 19.642588 ], [ -69.960938, 19.683970 ], [ -69.785156, 19.311143 ], [ -69.257812, 19.352611 ], [ -69.257812, 19.020577 ], [ -68.818359, 19.020577 ], [ -68.334961, 18.646245 ], [ -68.730469, 18.229351 ], [ -69.169922, 18.437925 ], [ -69.653320, 18.396230 ], [ -69.960938, 18.437925 ], [ -70.136719, 18.271086 ], [ -70.532227, 18.187607 ], [ -70.708008, 18.437925 ], [ -71.015625, 18.312811 ], [ -71.411133, 17.602139 ], [ -71.674805, 17.769612 ], [ -71.718750, 18.354526 ], [ -71.982422, 18.646245 ], [ -71.718750, 18.812718 ], [ -71.630859, 19.186678 ], [ -71.718750, 19.725342 ], [ -71.630859, 19.890723 ], [ -70.839844, 19.890723 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.762695, 12.468760 ], [ -71.411133, 12.382928 ], [ -71.147461, 12.125264 ], [ -71.367188, 11.781325 ], [ -71.982422, 11.609193 ], [ -72.246094, 11.135287 ], [ -72.641602, 10.833306 ], [ -72.949219, 10.487812 ], [ -73.037109, 9.752370 ], [ -73.344727, 9.188870 ], [ -72.817383, 9.102097 ], [ -72.685547, 8.667918 ], [ -72.465820, 8.407168 ], [ -72.377930, 8.015716 ], [ -72.509766, 7.667441 ], [ -72.465820, 7.449624 ], [ -72.202148, 7.362467 ], [ -71.982422, 7.013668 ], [ -70.708008, 7.100893 ], [ -70.136719, 6.970049 ], [ -69.389648, 6.140555 ], [ -68.994141, 6.227934 ], [ -68.291016, 6.184246 ], [ -67.719727, 6.271618 ], [ -67.368164, 6.096860 ], [ -67.543945, 5.572250 ], [ -67.763672, 5.222247 ], [ -67.851562, 4.521666 ], [ -67.631836, 3.864255 ], [ -67.368164, 3.557283 ], [ -67.324219, 3.337954 ], [ -67.851562, 2.855263 ], [ -67.456055, 2.635789 ], [ -67.192383, 2.284551 ], [ -66.884766, 1.274309 ], [ -67.104492, 1.142502 ], [ -67.280273, 1.757537 ], [ -67.543945, 2.064982 ], [ -67.895508, 1.713612 ], [ -69.829102, 1.757537 ], [ -69.829102, 1.098565 ], [ -69.257812, 1.010690 ], [ -69.257812, 0.615223 ], [ -69.477539, 0.747049 ], [ -70.048828, 0.571280 ], [ -70.048828, -0.175781 ], [ -69.609375, -0.527336 ], [ -69.433594, -1.098565 ], [ -69.785156, -3.513421 ], [ -70.576172, -3.513421 ], [ -70.048828, -2.723583 ], [ -70.839844, -2.240640 ], [ -71.455078, -2.328460 ], [ -71.806641, -2.152814 ], [ -72.333984, -2.416276 ], [ -73.081055, -2.284551 ], [ -73.696289, -1.230374 ], [ -74.135742, -0.966751 ], [ -74.443359, -0.527336 ], [ -75.146484, -0.043945 ], [ -75.410156, -0.131836 ], [ -75.673828, 0.000000 ], [ -76.333008, 0.439449 ], [ -76.596680, 0.263671 ], [ -77.431641, 0.439449 ], [ -77.695312, 0.834931 ], [ -77.871094, 0.834931 ], [ -78.881836, 1.406109 ], [ -79.013672, 1.713612 ], [ -78.618164, 1.801461 ], [ -78.706055, 2.284551 ], [ -78.442383, 2.635789 ], [ -77.958984, 2.723583 ], [ -77.167969, 3.864255 ], [ -77.519531, 4.127285 ], [ -77.343750, 4.696879 ], [ -77.563477, 5.615986 ], [ -77.343750, 5.878332 ], [ -77.519531, 6.708254 ], [ -77.915039, 7.231699 ], [ -77.783203, 7.710992 ], [ -77.431641, 7.667441 ], [ -77.255859, 7.972198 ], [ -77.475586, 8.537565 ], [ -77.387695, 8.711359 ], [ -76.860352, 8.667918 ], [ -76.113281, 9.362353 ], [ -75.717773, 9.449062 ], [ -75.673828, 9.795678 ], [ -75.498047, 10.660608 ], [ -74.926758, 11.092166 ], [ -74.311523, 11.135287 ], [ -74.223633, 11.350797 ], [ -73.432617, 11.264612 ], [ -72.246094, 11.996338 ], [ -71.762695, 12.468760 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.313477, 18.521283 ], [ -65.786133, 18.437925 ], [ -65.610352, 18.229351 ], [ -65.874023, 17.978733 ], [ -67.192383, 17.978733 ], [ -67.280273, 18.396230 ], [ -67.104492, 18.521283 ], [ -66.313477, 18.521283 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.960938, 12.168226 ], [ -69.609375, 11.480025 ], [ -68.906250, 11.480025 ], [ -68.247070, 10.919618 ], [ -68.203125, 10.574222 ], [ -67.324219, 10.574222 ], [ -66.269531, 10.660608 ], [ -65.698242, 10.228437 ], [ -64.907227, 10.098670 ], [ -64.335938, 10.401378 ], [ -64.335938, 10.660608 ], [ -61.918945, 10.746969 ], [ -62.753906, 10.444598 ], [ -62.402344, 9.968851 ], [ -61.611328, 9.882275 ], [ -60.864258, 9.405710 ], [ -60.688477, 8.581021 ], [ -60.161133, 8.624472 ], [ -59.765625, 8.407168 ], [ -60.556641, 7.798079 ], [ -60.644531, 7.449624 ], [ -60.336914, 7.057282 ], [ -60.556641, 6.882800 ], [ -61.171875, 6.708254 ], [ -61.171875, 6.271618 ], [ -61.435547, 5.965754 ], [ -60.776367, 5.222247 ], [ -60.644531, 4.959615 ], [ -60.996094, 4.565474 ], [ -62.094727, 4.171115 ], [ -62.841797, 4.039618 ], [ -63.105469, 3.776559 ], [ -63.896484, 4.039618 ], [ -64.643555, 4.171115 ], [ -64.819336, 4.083453 ], [ -64.379883, 3.820408 ], [ -64.423828, 3.162456 ], [ -64.291992, 2.504085 ], [ -63.457031, 2.416276 ], [ -63.369141, 2.240640 ], [ -64.116211, 1.933227 ], [ -64.204102, 1.493971 ], [ -65.390625, 1.098565 ], [ -65.566406, 0.790990 ], [ -66.357422, 0.747049 ], [ -66.884766, 1.274309 ], [ -67.192383, 2.284551 ], [ -67.456055, 2.635789 ], [ -67.851562, 2.855263 ], [ -67.324219, 3.337954 ], [ -67.368164, 3.557283 ], [ -67.631836, 3.864255 ], [ -67.851562, 4.521666 ], [ -67.763672, 5.222247 ], [ -67.543945, 5.572250 ], [ -67.368164, 6.096860 ], [ -67.719727, 6.271618 ], [ -68.291016, 6.184246 ], [ -68.994141, 6.227934 ], [ -69.389648, 6.140555 ], [ -70.136719, 6.970049 ], [ -70.708008, 7.100893 ], [ -71.982422, 7.013668 ], [ -72.202148, 7.362467 ], [ -72.465820, 7.449624 ], [ -72.509766, 7.667441 ], [ -72.377930, 8.015716 ], [ -72.465820, 8.407168 ], [ -72.685547, 8.667918 ], [ -72.817383, 9.102097 ], [ -73.344727, 9.188870 ], [ -73.037109, 9.752370 ], [ -72.949219, 10.487812 ], [ -72.641602, 10.833306 ], [ -72.246094, 11.135287 ], [ -71.982422, 11.609193 ], [ -71.367188, 11.781325 ], [ -71.367188, 11.566144 ], [ -71.982422, 11.436955 ], [ -71.630859, 11.005904 ], [ -71.674805, 10.487812 ], [ -72.114258, 9.882275 ], [ -71.718750, 9.102097 ], [ -71.279297, 9.145486 ], [ -71.059570, 9.882275 ], [ -71.367188, 10.228437 ], [ -71.411133, 11.005904 ], [ -70.180664, 11.393879 ], [ -70.312500, 11.867351 ], [ -69.960938, 12.168226 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.127930, 10.919618 ], [ -60.908203, 10.876465 ], [ -60.952148, 10.141932 ], [ -61.787109, 10.012130 ], [ -61.962891, 10.098670 ], [ -61.699219, 10.401378 ], [ -61.699219, 10.790141 ], [ -61.127930, 10.919618 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.765625, 8.407168 ], [ -59.106445, 8.015716 ], [ -58.491211, 7.362467 ], [ -58.491211, 6.839170 ], [ -58.095703, 6.839170 ], [ -57.172852, 6.009459 ], [ -57.348633, 5.090944 ], [ -57.919922, 4.828260 ], [ -57.875977, 4.609278 ], [ -58.051758, 4.083453 ], [ -57.612305, 3.337954 ], [ -57.304688, 3.337954 ], [ -57.172852, 2.811371 ], [ -56.557617, 1.933227 ], [ -56.821289, 1.889306 ], [ -57.348633, 1.977147 ], [ -57.700195, 1.713612 ], [ -58.139648, 1.537901 ], [ -58.447266, 1.493971 ], [ -58.579102, 1.274309 ], [ -59.062500, 1.318243 ], [ -59.677734, 1.801461 ], [ -59.721680, 2.284551 ], [ -59.985352, 2.767478 ], [ -59.853516, 3.645000 ], [ -59.545898, 3.995781 ], [ -59.809570, 4.434044 ], [ -60.117188, 4.609278 ], [ -59.985352, 5.047171 ], [ -60.249023, 5.266008 ], [ -60.776367, 5.222247 ], [ -61.435547, 5.965754 ], [ -61.171875, 6.271618 ], [ -61.171875, 6.708254 ], [ -60.556641, 6.882800 ], [ -60.336914, 7.057282 ], [ -60.644531, 7.449624 ], [ -60.556641, 7.798079 ], [ -59.765625, 8.407168 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.063477, 6.053161 ], [ -53.964844, 5.790897 ], [ -54.492188, 4.915833 ], [ -54.404297, 4.214943 ], [ -54.008789, 3.645000 ], [ -54.184570, 3.206333 ], [ -54.272461, 2.767478 ], [ -54.536133, 2.328460 ], [ -55.107422, 2.547988 ], [ -55.590820, 2.460181 ], [ -55.986328, 2.547988 ], [ -56.074219, 2.240640 ], [ -55.942383, 2.064982 ], [ -56.030273, 1.845384 ], [ -56.557617, 1.933227 ], [ -57.172852, 2.811371 ], [ -57.304688, 3.337954 ], [ -57.612305, 3.337954 ], [ -58.051758, 4.083453 ], [ -57.875977, 4.609278 ], [ -57.919922, 4.828260 ], [ -57.348633, 5.090944 ], [ -57.172852, 6.009459 ], [ -55.986328, 5.790897 ], [ -55.854492, 5.965754 ], [ -55.063477, 6.053161 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.171875, 66.530768 ], [ -14.545898, 66.460663 ], [ -14.765625, 65.820782 ], [ -13.623047, 65.127638 ], [ -14.941406, 64.377941 ], [ -18.676758, 63.509375 ], [ -22.763672, 63.975961 ], [ -21.796875, 64.415921 ], [ -23.994141, 64.904910 ], [ -22.192383, 65.090646 ], [ -22.236328, 65.385147 ], [ -24.345703, 65.622023 ], [ -23.686523, 66.266856 ], [ -22.148438, 66.425537 ], [ -20.610352, 65.748683 ], [ -19.072266, 66.284537 ], [ -17.841797, 66.000150 ], [ -16.171875, 66.530768 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.602539, 55.153766 ], [ -7.382812, 54.597528 ], [ -7.602539, 54.085173 ], [ -6.987305, 54.085173 ], [ -6.240234, 53.878440 ], [ -6.064453, 53.173119 ], [ -6.811523, 52.268157 ], [ -8.569336, 51.672555 ], [ -10.019531, 51.835778 ], [ -9.184570, 52.882391 ], [ -9.711914, 53.904338 ], [ -7.602539, 55.153766 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.032227, 58.654085 ], [ -4.086914, 57.562995 ], [ -3.076172, 57.704147 ], [ -1.977539, 57.704147 ], [ -2.241211, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.109375, 55.924586 ], [ -1.142578, 54.648413 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.696706 ], [ 0.439453, 52.935397 ], [ 1.669922, 52.749594 ], [ 1.538086, 52.106505 ], [ 1.010742, 51.808615 ], [ 1.406250, 51.316881 ], [ 0.527344, 50.792047 ], [ -0.791016, 50.792047 ], [ -2.504883, 50.513427 ], [ -2.988281, 50.708634 ], [ -3.647461, 50.233152 ], [ -4.570312, 50.345460 ], [ -5.273438, 49.979488 ], [ -5.800781, 50.176898 ], [ -4.350586, 51.234407 ], [ -3.427734, 51.426614 ], [ -5.009766, 51.618017 ], [ -5.273438, 51.998410 ], [ -4.262695, 52.321911 ], [ -4.790039, 52.855864 ], [ -4.614258, 53.514185 ], [ -3.120117, 53.409532 ], [ -2.988281, 54.007769 ], [ -3.647461, 54.622978 ], [ -4.877930, 54.800685 ], [ -5.097656, 55.078367 ], [ -4.746094, 55.528631 ], [ -5.053711, 55.801281 ], [ -5.625000, 55.329144 ], [ -5.668945, 56.292157 ], [ -6.152344, 56.800878 ], [ -5.800781, 57.821355 ], [ -5.053711, 58.631217 ], [ -4.218750, 58.562523 ], [ -3.032227, 58.654085 ] ] ], [ [ [ -6.767578, 55.178868 ], [ -5.668945, 54.572062 ], [ -6.240234, 53.878440 ], [ -6.987305, 54.085173 ], [ -7.602539, 54.085173 ], [ -7.382812, 54.597528 ], [ -7.602539, 55.153766 ], [ -6.767578, 55.178868 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -53.964844, 5.790897 ], [ -52.910156, 5.441022 ], [ -51.855469, 4.609278 ], [ -51.679688, 4.171115 ], [ -52.250977, 3.250209 ], [ -52.558594, 2.547988 ], [ -52.954102, 2.152814 ], [ -53.437500, 2.064982 ], [ -53.569336, 2.372369 ], [ -53.789062, 2.416276 ], [ -54.096680, 2.108899 ], [ -54.536133, 2.328460 ], [ -54.272461, 2.767478 ], [ -54.184570, 3.206333 ], [ -54.052734, 3.645000 ], [ -54.404297, 4.214943 ], [ -54.492188, 4.915833 ], [ -53.964844, 5.790897 ] ] ], [ [ [ 2.504883, 51.151786 ], [ 2.636719, 50.819818 ], [ 3.120117, 50.792047 ], [ 3.515625, 50.457504 ], [ 3.515625, 43.197167 ], [ 3.076172, 43.100983 ], [ 2.944336, 42.488302 ], [ 1.801758, 42.358544 ], [ 0.659180, 42.811522 ], [ 0.307617, 42.585444 ], [ 0.000000, 42.682435 ], [ -1.538086, 43.036776 ], [ -1.933594, 43.452919 ], [ -1.406250, 44.024422 ], [ -1.230469, 46.042736 ], [ -2.241211, 47.070122 ], [ -2.988281, 47.576526 ], [ -4.526367, 47.960502 ], [ -4.614258, 48.690960 ], [ -3.295898, 48.922499 ], [ -1.625977, 48.661943 ], [ -1.933594, 49.781264 ], [ -1.010742, 49.353756 ], [ 0.000000, 49.696062 ], [ 1.318359, 50.148746 ], [ 1.625977, 50.958427 ], [ 2.504883, 51.151786 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.701172, 27.683528 ], [ -8.701172, 25.918526 ], [ -11.997070, 25.958045 ], [ -11.953125, 23.402765 ], [ -12.875977, 23.322080 ], [ -13.139648, 22.796439 ], [ -12.963867, 21.330315 ], [ -16.875000, 21.371244 ], [ -17.094727, 21.002471 ], [ -17.050781, 21.453069 ], [ -14.765625, 21.534847 ], [ -14.633789, 21.861499 ], [ -14.238281, 22.350076 ], [ -13.930664, 23.725012 ], [ -12.524414, 24.806681 ], [ -12.041016, 26.037042 ], [ -11.733398, 26.115986 ], [ -11.425781, 26.902477 ], [ -10.590820, 27.019984 ], [ -10.195312, 26.863281 ], [ -9.755859, 26.863281 ], [ -9.448242, 27.098254 ], [ -8.833008, 27.137368 ], [ -8.833008, 27.683528 ], [ -8.701172, 27.683528 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.305664, 42.293564 ], [ -8.041992, 41.804078 ], [ -7.426758, 41.804078 ], [ -7.294922, 41.934977 ], [ -6.679688, 41.902277 ], [ -6.416016, 41.409776 ], [ -6.855469, 41.112469 ], [ -6.899414, 40.346544 ], [ -7.031250, 40.212441 ], [ -7.075195, 39.740986 ], [ -7.514648, 39.639538 ], [ -7.119141, 39.061849 ], [ -7.382812, 38.376115 ], [ -7.031250, 38.099983 ], [ -7.207031, 37.822802 ], [ -7.558594, 37.439974 ], [ -7.470703, 37.125286 ], [ -7.866211, 36.844461 ], [ -8.393555, 36.985003 ], [ -8.920898, 36.879621 ], [ -8.789062, 37.683820 ], [ -8.876953, 38.272689 ], [ -9.316406, 38.376115 ], [ -9.536133, 38.754083 ], [ -9.448242, 39.402244 ], [ -9.052734, 39.774769 ], [ -8.789062, 40.780541 ], [ -8.833008, 41.211722 ], [ -9.008789, 41.574361 ], [ -9.052734, 41.902277 ], [ -8.701172, 42.163403 ], [ -8.305664, 42.293564 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.998047, 43.771094 ], [ -6.767578, 43.580391 ], [ -5.449219, 43.580391 ], [ -4.350586, 43.421009 ], [ -3.559570, 43.484812 ], [ -1.933594, 43.452919 ], [ -1.538086, 43.036776 ], [ 0.000000, 42.682435 ], [ 0.307617, 42.585444 ], [ 0.659180, 42.811522 ], [ 1.801758, 42.358544 ], [ 2.944336, 42.488302 ], [ 3.032227, 41.902277 ], [ 2.065430, 41.244772 ], [ 0.791016, 41.046217 ], [ 0.703125, 40.680638 ], [ 0.087891, 40.145289 ], [ 0.000000, 39.909736 ], [ -0.307617, 39.334297 ], [ 0.000000, 38.925229 ], [ 0.087891, 38.754083 ], [ -0.483398, 38.307181 ], [ -0.703125, 37.649034 ], [ -1.450195, 37.474858 ], [ -2.153320, 36.703660 ], [ -4.394531, 36.703660 ], [ -5.009766, 36.350527 ], [ -5.405273, 35.960223 ], [ -5.888672, 36.031332 ], [ -6.240234, 36.385913 ], [ -6.547852, 36.949892 ], [ -7.470703, 37.125286 ], [ -7.558594, 37.439974 ], [ -7.207031, 37.822802 ], [ -7.031250, 38.099983 ], [ -7.382812, 38.376115 ], [ -7.119141, 39.061849 ], [ -7.514648, 39.639538 ], [ -7.075195, 39.740986 ], [ -7.031250, 40.212441 ], [ -6.899414, 40.346544 ], [ -6.855469, 41.112469 ], [ -6.416016, 41.409776 ], [ -6.679688, 41.902277 ], [ -7.294922, 41.934977 ], [ -7.426758, 41.804078 ], [ -8.041992, 41.804078 ], [ -8.305664, 42.293564 ], [ -8.701172, 42.163403 ], [ -9.052734, 41.902277 ], [ -9.008789, 42.617791 ], [ -9.404297, 43.036776 ], [ -7.998047, 43.771094 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.229492, 35.782171 ], [ -4.614258, 35.353216 ], [ -3.647461, 35.424868 ], [ -2.636719, 35.209722 ], [ -2.197266, 35.173808 ], [ -1.801758, 34.560859 ], [ -1.757812, 33.943360 ], [ -1.406250, 32.879587 ], [ -1.142578, 32.657876 ], [ -1.318359, 32.287133 ], [ -2.636719, 32.101190 ], [ -3.076172, 31.728167 ], [ -3.691406, 31.653381 ], [ -3.691406, 30.902225 ], [ -4.877930, 30.524413 ], [ -5.273438, 30.031055 ], [ -6.064453, 29.764377 ], [ -7.075195, 29.611670 ], [ -8.701172, 28.844674 ], [ -8.701172, 27.683528 ], [ -8.833008, 27.683528 ], [ -8.833008, 27.137368 ], [ -9.448242, 27.098254 ], [ -9.755859, 26.863281 ], [ -10.195312, 26.863281 ], [ -10.590820, 27.019984 ], [ -11.425781, 26.902477 ], [ -11.733398, 26.115986 ], [ -12.041016, 26.037042 ], [ -12.524414, 24.806681 ], [ -13.930664, 23.725012 ], [ -14.238281, 22.350076 ], [ -14.633789, 21.861499 ], [ -14.765625, 21.534847 ], [ -17.050781, 21.453069 ], [ -17.006836, 21.902278 ], [ -16.611328, 22.187405 ], [ -16.303711, 22.715390 ], [ -16.347656, 23.039298 ], [ -15.996094, 23.725012 ], [ -15.468750, 24.367114 ], [ -15.117188, 24.527135 ], [ -14.853516, 25.125393 ], [ -14.809570, 25.641526 ], [ -14.458008, 26.273714 ], [ -13.798828, 26.627818 ], [ -13.183594, 27.644606 ], [ -12.656250, 28.071980 ], [ -11.689453, 28.149503 ], [ -10.942383, 28.844674 ], [ -10.415039, 29.113775 ], [ -9.580078, 29.954935 ], [ -9.843750, 31.203405 ], [ -9.448242, 32.063956 ], [ -9.316406, 32.583849 ], [ -8.701172, 33.247876 ], [ -7.690430, 33.724340 ], [ -6.943359, 34.125448 ], [ -6.284180, 35.173808 ], [ -5.932617, 35.782171 ], [ -5.229492, 35.782171 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.589844, 16.636192 ], [ -14.106445, 16.341226 ], [ -13.447266, 16.045813 ], [ -12.172852, 14.647368 ], [ -12.128906, 14.008696 ], [ -11.953125, 13.453737 ], [ -11.557617, 13.154376 ], [ -11.469727, 12.768946 ], [ -11.557617, 12.468760 ], [ -11.689453, 12.425848 ], [ -12.216797, 12.468760 ], [ -12.304688, 12.382928 ], [ -12.524414, 12.340002 ], [ -13.227539, 12.597455 ], [ -15.556641, 12.640338 ], [ -15.820312, 12.554564 ], [ -16.171875, 12.554564 ], [ -16.699219, 12.425848 ], [ -16.875000, 13.154376 ], [ -15.952148, 13.154376 ], [ -15.732422, 13.282719 ], [ -15.512695, 13.282719 ], [ -15.161133, 13.539201 ], [ -14.721680, 13.325485 ], [ -14.282227, 13.282719 ], [ -13.886719, 13.539201 ], [ -14.062500, 13.795406 ], [ -14.414062, 13.667338 ], [ -14.721680, 13.667338 ], [ -15.117188, 13.880746 ], [ -15.424805, 13.880746 ], [ -15.644531, 13.624633 ], [ -16.743164, 13.624633 ], [ -17.138672, 14.392118 ], [ -17.666016, 14.732386 ], [ -17.226562, 14.944785 ], [ -16.743164, 15.623037 ], [ -16.479492, 16.172473 ], [ -16.127930, 16.467695 ], [ -15.644531, 16.383391 ], [ -15.161133, 16.594081 ], [ -14.589844, 16.636192 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.117188, 13.880746 ], [ -14.721680, 13.667338 ], [ -14.414062, 13.667338 ], [ -14.062500, 13.795406 ], [ -13.886719, 13.539201 ], [ -14.282227, 13.282719 ], [ -14.721680, 13.325485 ], [ -15.161133, 13.539201 ], [ -15.512695, 13.282719 ], [ -15.732422, 13.282719 ], [ -15.952148, 13.154376 ], [ -16.875000, 13.154376 ], [ -16.743164, 13.624633 ], [ -15.644531, 13.624633 ], [ -15.424805, 13.880746 ], [ -15.117188, 13.880746 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.556641, 12.640338 ], [ -13.710938, 12.597455 ], [ -13.754883, 12.254128 ], [ -13.842773, 12.168226 ], [ -13.754883, 11.824341 ], [ -13.930664, 11.695273 ], [ -14.150391, 11.695273 ], [ -14.414062, 11.523088 ], [ -14.721680, 11.566144 ], [ -15.161133, 11.049038 ], [ -15.688477, 11.480025 ], [ -16.127930, 11.566144 ], [ -16.347656, 11.824341 ], [ -16.347656, 11.996338 ], [ -16.655273, 12.211180 ], [ -16.699219, 12.425848 ], [ -16.171875, 12.554564 ], [ -15.820312, 12.554564 ], [ -15.556641, 12.640338 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.227539, 12.597455 ], [ -12.524414, 12.340002 ], [ -12.304688, 12.382928 ], [ -12.216797, 12.468760 ], [ -11.689453, 12.425848 ], [ -11.557617, 12.468760 ], [ -11.469727, 12.082296 ], [ -11.337891, 12.082296 ], [ -11.074219, 12.254128 ], [ -10.898438, 12.211180 ], [ -10.634766, 11.953349 ], [ -10.195312, 11.867351 ], [ -9.931641, 12.082296 ], [ -9.360352, 12.340002 ], [ -9.140625, 12.340002 ], [ -8.920898, 12.125264 ], [ -8.789062, 11.824341 ], [ -8.393555, 11.393879 ], [ -8.613281, 11.178402 ], [ -8.657227, 10.833306 ], [ -8.437500, 10.919618 ], [ -8.305664, 10.833306 ], [ -8.349609, 10.531020 ], [ -8.041992, 10.228437 ], [ -8.261719, 10.141932 ], [ -8.349609, 9.795678 ], [ -8.085938, 9.405710 ], [ -7.866211, 8.581021 ], [ -8.217773, 8.494105 ], [ -8.305664, 8.320212 ], [ -8.261719, 8.146243 ], [ -8.305664, 7.710992 ], [ -8.481445, 7.710992 ], [ -8.745117, 7.754537 ], [ -8.964844, 7.318882 ], [ -9.228516, 7.318882 ], [ -9.404297, 7.536764 ], [ -9.360352, 7.928675 ], [ -9.755859, 8.581021 ], [ -10.019531, 8.450639 ], [ -10.546875, 8.363693 ], [ -10.502930, 8.754795 ], [ -10.678711, 9.015302 ], [ -10.634766, 9.275622 ], [ -11.118164, 10.055403 ], [ -11.953125, 10.055403 ], [ -12.172852, 9.882275 ], [ -12.436523, 9.838979 ], [ -12.744141, 9.362353 ], [ -13.271484, 8.928487 ], [ -13.710938, 9.535749 ], [ -14.106445, 9.925566 ], [ -14.589844, 10.228437 ], [ -14.721680, 10.660608 ], [ -14.853516, 10.919618 ], [ -15.161133, 11.049038 ], [ -14.721680, 11.566144 ], [ -14.414062, 11.523088 ], [ -14.150391, 11.695273 ], [ -13.930664, 11.695273 ], [ -13.754883, 11.824341 ], [ -13.842773, 12.168226 ], [ -13.754883, 12.254128 ], [ -13.710938, 12.597455 ], [ -13.227539, 12.597455 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.118164, 10.055403 ], [ -10.634766, 9.275622 ], [ -10.678711, 9.015302 ], [ -10.502930, 8.754795 ], [ -10.546875, 8.363693 ], [ -10.239258, 8.407168 ], [ -11.162109, 7.406048 ], [ -11.206055, 7.144499 ], [ -11.469727, 6.795535 ], [ -11.733398, 6.882800 ], [ -12.436523, 7.275292 ], [ -12.963867, 7.841615 ], [ -13.139648, 8.189742 ], [ -13.271484, 8.928487 ], [ -12.744141, 9.362353 ], [ -12.436523, 9.838979 ], [ -12.172852, 9.882275 ], [ -11.953125, 10.055403 ], [ -11.118164, 10.055403 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.701172, 27.410786 ], [ -4.965820, 25.005973 ], [ -6.459961, 24.966140 ], [ -5.493164, 16.341226 ], [ -5.317383, 16.214675 ], [ -5.581055, 15.538376 ], [ -9.580078, 15.496032 ], [ -9.711914, 15.284185 ], [ -10.107422, 15.368950 ], [ -10.678711, 15.156974 ], [ -11.381836, 15.411319 ], [ -11.689453, 15.411319 ], [ -11.865234, 14.817371 ], [ -12.172852, 14.647368 ], [ -13.447266, 16.045813 ], [ -14.106445, 16.341226 ], [ -14.589844, 16.636192 ], [ -15.161133, 16.594081 ], [ -15.644531, 16.383391 ], [ -16.127930, 16.467695 ], [ -16.479492, 16.172473 ], [ -16.567383, 16.678293 ], [ -16.303711, 17.182779 ], [ -16.171875, 18.145852 ], [ -16.391602, 19.601194 ], [ -16.303711, 20.097206 ], [ -16.567383, 20.591652 ], [ -17.094727, 21.002471 ], [ -16.875000, 21.371244 ], [ -12.963867, 21.330315 ], [ -13.139648, 22.796439 ], [ -12.875977, 23.322080 ], [ -11.953125, 23.402765 ], [ -11.997070, 25.958045 ], [ -8.701172, 25.918526 ], [ -8.701172, 27.410786 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.965820, 25.005973 ], [ 0.000000, 21.820708 ], [ 1.801758, 20.632784 ], [ 2.021484, 20.179724 ], [ 3.120117, 19.725342 ], [ 3.120117, 19.062118 ], [ 3.515625, 19.103648 ], [ 3.515625, 15.580711 ], [ 2.724609, 15.411319 ], [ 1.362305, 15.326572 ], [ 1.010742, 14.987240 ], [ 0.000000, 14.944785 ], [ -0.307617, 14.944785 ], [ -0.527344, 15.156974 ], [ -1.098633, 14.987240 ], [ -2.021484, 14.562318 ], [ -2.197266, 14.264383 ], [ -2.988281, 13.838080 ], [ -3.120117, 13.581921 ], [ -3.559570, 13.368243 ], [ -4.042969, 13.496473 ], [ -4.306641, 13.239945 ], [ -4.438477, 12.554564 ], [ -5.229492, 11.738302 ], [ -5.229492, 11.393879 ], [ -5.493164, 10.962764 ], [ -5.405273, 10.401378 ], [ -6.064453, 10.098670 ], [ -6.240234, 10.531020 ], [ -6.503906, 10.444598 ], [ -6.679688, 10.444598 ], [ -6.855469, 10.141932 ], [ -7.646484, 10.185187 ], [ -7.910156, 10.314919 ], [ -8.041992, 10.228437 ], [ -8.349609, 10.531020 ], [ -8.305664, 10.833306 ], [ -8.437500, 10.919618 ], [ -8.657227, 10.833306 ], [ -8.613281, 11.178402 ], [ -8.393555, 11.393879 ], [ -8.789062, 11.824341 ], [ -8.920898, 12.125264 ], [ -9.140625, 12.340002 ], [ -9.360352, 12.340002 ], [ -9.931641, 12.082296 ], [ -10.195312, 11.867351 ], [ -10.634766, 11.953349 ], [ -10.898438, 12.211180 ], [ -11.074219, 12.254128 ], [ -11.337891, 12.082296 ], [ -11.469727, 12.082296 ], [ -11.557617, 12.468760 ], [ -11.469727, 12.768946 ], [ -11.557617, 13.154376 ], [ -11.953125, 13.453737 ], [ -12.128906, 14.008696 ], [ -12.172852, 14.647368 ], [ -11.865234, 14.817371 ], [ -11.689453, 15.411319 ], [ -11.381836, 15.411319 ], [ -10.678711, 15.156974 ], [ -10.107422, 15.368950 ], [ -9.711914, 15.284185 ], [ -9.580078, 15.496032 ], [ -5.581055, 15.538376 ], [ -5.317383, 16.214675 ], [ -5.493164, 16.341226 ], [ -6.459961, 24.966140 ], [ -4.965820, 25.005973 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.527344, 15.156974 ], [ -0.307617, 14.944785 ], [ 0.351562, 14.944785 ], [ 0.263672, 14.477234 ], [ 0.395508, 14.008696 ], [ 0.966797, 13.368243 ], [ 1.010742, 12.854649 ], [ 2.153320, 12.640338 ], [ 2.153320, 11.953349 ], [ 1.933594, 11.652236 ], [ 1.406250, 11.566144 ], [ 1.230469, 11.135287 ], [ 0.878906, 11.005904 ], [ 0.000000, 11.049038 ], [ -0.439453, 11.135287 ], [ -0.791016, 10.962764 ], [ -1.230469, 11.049038 ], [ -2.944336, 10.962764 ], [ -2.988281, 10.401378 ], [ -2.856445, 9.665738 ], [ -3.515625, 9.925566 ], [ -3.999023, 9.882275 ], [ -4.350586, 9.622414 ], [ -4.790039, 9.838979 ], [ -4.965820, 10.185187 ], [ -5.405273, 10.401378 ], [ -5.493164, 10.962764 ], [ -5.229492, 11.393879 ], [ -5.229492, 11.738302 ], [ -4.438477, 12.554564 ], [ -4.306641, 13.239945 ], [ -4.042969, 13.496473 ], [ -3.559570, 13.368243 ], [ -3.120117, 13.581921 ], [ -2.988281, 13.838080 ], [ -2.197266, 14.264383 ], [ -2.021484, 14.562318 ], [ -1.098633, 14.987240 ], [ -0.527344, 15.156974 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.755859, 8.581021 ], [ -9.360352, 7.928675 ], [ -9.404297, 7.536764 ], [ -9.228516, 7.318882 ], [ -8.964844, 7.318882 ], [ -8.745117, 7.754537 ], [ -8.481445, 7.710992 ], [ -8.525391, 7.406048 ], [ -8.393555, 6.926427 ], [ -8.613281, 6.489983 ], [ -8.349609, 6.227934 ], [ -7.998047, 6.140555 ], [ -7.602539, 5.747174 ], [ -7.558594, 5.353521 ], [ -7.646484, 5.222247 ], [ -7.734375, 4.390229 ], [ -7.998047, 4.390229 ], [ -9.008789, 4.872048 ], [ -9.931641, 5.615986 ], [ -10.766602, 6.184246 ], [ -11.469727, 6.795535 ], [ -11.206055, 7.144499 ], [ -11.162109, 7.406048 ], [ -10.239258, 8.407168 ], [ -9.755859, 8.581021 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.240234, 10.531020 ], [ -6.064453, 10.098670 ], [ -5.405273, 10.401378 ], [ -4.965820, 10.185187 ], [ -4.790039, 9.838979 ], [ -4.350586, 9.622414 ], [ -3.999023, 9.882275 ], [ -3.515625, 9.925566 ], [ -2.856445, 9.665738 ], [ -2.592773, 8.233237 ], [ -2.988281, 7.406048 ], [ -3.251953, 6.271618 ], [ -2.812500, 5.397273 ], [ -2.856445, 5.003394 ], [ -3.339844, 5.003394 ], [ -4.042969, 5.222247 ], [ -4.658203, 5.178482 ], [ -5.844727, 5.003394 ], [ -7.558594, 4.346411 ], [ -7.734375, 4.390229 ], [ -7.646484, 5.222247 ], [ -7.558594, 5.353521 ], [ -7.602539, 5.747174 ], [ -7.998047, 6.140555 ], [ -8.349609, 6.227934 ], [ -8.613281, 6.489983 ], [ -8.393555, 6.926427 ], [ -8.525391, 7.406048 ], [ -8.481445, 7.710992 ], [ -8.305664, 7.710992 ], [ -8.261719, 8.146243 ], [ -8.305664, 8.320212 ], [ -8.217773, 8.494105 ], [ -7.866211, 8.581021 ], [ -8.085938, 9.405710 ], [ -8.349609, 9.795678 ], [ -8.261719, 10.141932 ], [ -7.910156, 10.314919 ], [ -7.646484, 10.185187 ], [ -6.855469, 10.141932 ], [ -6.679688, 10.444598 ], [ -6.503906, 10.444598 ], [ -6.240234, 10.531020 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.135287 ], [ 0.000000, 11.049038 ], [ 0.000000, 10.919618 ], [ -0.087891, 10.746969 ], [ 0.000000, 10.660608 ], [ 0.351562, 10.228437 ], [ 0.351562, 9.492408 ], [ 0.439453, 8.711359 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.449624 ], [ 0.527344, 6.926427 ], [ 0.834961, 6.315299 ], [ 1.054688, 5.965754 ], [ 0.000000, 5.572250 ], [ -0.527344, 5.353521 ], [ -1.098633, 5.003394 ], [ -1.977539, 4.740675 ], [ -2.856445, 5.003394 ], [ -2.812500, 5.397273 ], [ -3.251953, 6.271618 ], [ -2.988281, 7.406048 ], [ -2.592773, 8.233237 ], [ -2.988281, 10.401378 ], [ -2.944336, 10.962764 ], [ -1.230469, 11.049038 ], [ -0.791016, 10.962764 ], [ -0.439453, 11.135287 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.881836, 1.406109 ], [ -77.871094, 0.834931 ], [ -77.695312, 0.834931 ], [ -77.431641, 0.439449 ], [ -76.596680, 0.263671 ], [ -76.333008, 0.439449 ], [ -75.673828, 0.000000 ], [ -75.410156, -0.131836 ], [ -75.234375, -0.878872 ], [ -75.585938, -1.537901 ], [ -76.640625, -2.591889 ], [ -77.871094, -2.986927 ], [ -78.222656, -3.513421 ], [ -80.288086, -3.513421 ], [ -80.332031, -3.381824 ], [ -79.804688, -2.635789 ], [ -80.024414, -2.196727 ], [ -80.375977, -2.679687 ], [ -80.991211, -2.240640 ], [ -80.771484, -1.933227 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.878872 ], [ -80.419922, -0.263671 ], [ -80.244141, 0.000000 ], [ -80.024414, 0.395505 ], [ -80.112305, 0.790990 ], [ -79.584961, 1.010690 ], [ -78.881836, 1.406109 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -80.332031, -3.381824 ], [ -80.288086, -3.513421 ], [ -80.463867, -3.513421 ], [ -80.332031, -3.381824 ] ] ], [ [ [ -74.443359, -0.527336 ], [ -74.135742, -0.966751 ], [ -73.696289, -1.230374 ], [ -73.081055, -2.284551 ], [ -72.333984, -2.416276 ], [ -71.806641, -2.152814 ], [ -71.455078, -2.328460 ], [ -70.839844, -2.240640 ], [ -70.048828, -2.723583 ], [ -70.576172, -3.513421 ], [ -78.222656, -3.513421 ], [ -77.871094, -2.986927 ], [ -76.640625, -2.591889 ], [ -75.585938, -1.537901 ], [ -75.234375, -0.878872 ], [ -75.410156, -0.131836 ], [ -75.146484, -0.043945 ], [ -74.443359, -0.527336 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.249023, 5.266008 ], [ -59.985352, 5.047171 ], [ -60.117188, 4.609278 ], [ -59.809570, 4.434044 ], [ -59.545898, 3.995781 ], [ -59.853516, 3.645000 ], [ -59.985352, 2.767478 ], [ -59.721680, 2.284551 ], [ -59.677734, 1.801461 ], [ -59.062500, 1.318243 ], [ -58.579102, 1.274309 ], [ -58.447266, 1.493971 ], [ -58.139648, 1.537901 ], [ -57.700195, 1.713612 ], [ -57.348633, 1.977147 ], [ -56.030273, 1.845384 ], [ -55.942383, 2.064982 ], [ -56.074219, 2.240640 ], [ -55.986328, 2.547988 ], [ -55.590820, 2.460181 ], [ -55.107422, 2.547988 ], [ -54.096680, 2.108899 ], [ -53.789062, 2.416276 ], [ -53.569336, 2.372369 ], [ -53.437500, 2.064982 ], [ -52.954102, 2.152814 ], [ -52.558594, 2.547988 ], [ -52.250977, 3.250209 ], [ -51.679688, 4.171115 ], [ -51.328125, 4.214943 ], [ -51.108398, 3.688855 ], [ -50.537109, 1.933227 ], [ -50.009766, 1.757537 ], [ -49.965820, 1.054628 ], [ -50.712891, 0.263671 ], [ -50.493164, 0.000000 ], [ -50.405273, -0.043945 ], [ -48.647461, -0.219726 ], [ -48.603516, -1.230374 ], [ -47.856445, -0.571280 ], [ -46.582031, -0.922812 ], [ -44.912109, -1.537901 ], [ -44.428711, -2.108899 ], [ -44.604492, -2.679687 ], [ -43.461914, -2.372369 ], [ -41.484375, -2.899153 ], [ -39.990234, -2.855263 ], [ -38.847656, -3.513421 ], [ -69.785156, -3.513421 ], [ -69.433594, -1.098565 ], [ -69.609375, -0.527336 ], [ -70.048828, -0.175781 ], [ -70.048828, 0.571280 ], [ -69.477539, 0.747049 ], [ -69.257812, 0.615223 ], [ -69.257812, 1.010690 ], [ -69.829102, 1.098565 ], [ -69.829102, 1.757537 ], [ -67.895508, 1.713612 ], [ -67.543945, 2.064982 ], [ -67.280273, 1.757537 ], [ -67.104492, 1.142502 ], [ -66.884766, 1.274309 ], [ -66.357422, 0.747049 ], [ -65.566406, 0.790990 ], [ -65.390625, 1.098565 ], [ -64.204102, 1.493971 ], [ -64.116211, 1.933227 ], [ -63.369141, 2.240640 ], [ -63.457031, 2.416276 ], [ -64.291992, 2.504085 ], [ -64.423828, 3.162456 ], [ -64.379883, 3.820408 ], [ -64.819336, 4.083453 ], [ -64.643555, 4.171115 ], [ -63.896484, 4.039618 ], [ -63.105469, 3.776559 ], [ -62.841797, 4.039618 ], [ -62.094727, 4.171115 ], [ -60.996094, 4.565474 ], [ -60.644531, 4.959615 ], [ -60.776367, 5.222247 ], [ -60.249023, 5.266008 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -180.000000, 68.974164 ], [ -177.583008, 68.204212 ], [ -174.946289, 67.221053 ], [ -175.034180, 66.600676 ], [ -174.375000, 66.337505 ], [ -174.594727, 67.067433 ], [ -171.870117, 66.930060 ], [ -169.936523, 65.982270 ], [ -170.903320, 65.549367 ], [ -172.573242, 65.440002 ], [ -172.573242, 64.472794 ], [ -172.968750, 64.263684 ], [ -173.935547, 64.282760 ], [ -174.682617, 64.642704 ], [ -176.000977, 64.923542 ], [ -176.220703, 65.366837 ], [ -177.231445, 65.531171 ], [ -178.374023, 65.403445 ], [ -178.945312, 65.748683 ], [ -178.725586, 66.124962 ], [ -179.912109, 65.874725 ], [ -179.472656, 65.421730 ], [ -180.000000, 64.997939 ], [ -180.000000, 68.974164 ] ] ], [ [ [ -179.033203, 71.566641 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.145195 ], [ -178.725586, 70.902268 ], [ -180.000000, 70.844673 ], [ -180.000000, 71.524909 ], [ -179.912109, 71.566641 ], [ -179.033203, 71.566641 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 51.454007 ], [ 3.515625, 51.344339 ], [ 3.295898, 51.371780 ], [ 3.515625, 51.454007 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.295898, 51.371780 ], [ 3.515625, 51.344339 ], [ 3.515625, 50.457504 ], [ 3.120117, 50.792047 ], [ 2.636719, 50.819818 ], [ 2.504883, 51.151786 ], [ 3.295898, 51.371780 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 36.809285 ], [ 3.515625, 19.103648 ], [ 3.120117, 19.062118 ], [ 3.120117, 19.725342 ], [ 2.021484, 20.179724 ], [ 1.801758, 20.632784 ], [ 0.000000, 21.820708 ], [ -8.701172, 27.410786 ], [ -8.701172, 28.844674 ], [ -7.075195, 29.611670 ], [ -6.064453, 29.764377 ], [ -5.273438, 30.031055 ], [ -4.877930, 30.524413 ], [ -3.691406, 30.902225 ], [ -3.691406, 31.653381 ], [ -3.076172, 31.728167 ], [ -2.636719, 32.101190 ], [ -1.318359, 32.287133 ], [ -1.142578, 32.657876 ], [ -1.406250, 32.879587 ], [ -1.757812, 33.943360 ], [ -1.801758, 34.560859 ], [ -2.197266, 35.173808 ], [ -1.230469, 35.746512 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.995785 ], [ 0.483398, 36.315125 ], [ 1.450195, 36.633162 ], [ 3.515625, 36.809285 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 15.580711 ], [ 3.515625, 11.738302 ], [ 2.812500, 12.254128 ], [ 2.460938, 12.254128 ], [ 2.153320, 11.953349 ], [ 2.153320, 12.640338 ], [ 1.010742, 12.854649 ], [ 0.966797, 13.368243 ], [ 0.395508, 14.008696 ], [ 0.263672, 14.477234 ], [ 0.351562, 14.944785 ], [ 1.010742, 14.987240 ], [ 1.362305, 15.326572 ], [ 2.724609, 15.411319 ], [ 3.515625, 15.580711 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.049038 ], [ 0.878906, 11.005904 ], [ 0.747070, 10.487812 ], [ 1.406250, 9.838979 ], [ 1.450195, 9.362353 ], [ 1.625977, 9.145486 ], [ 1.582031, 6.839170 ], [ 1.845703, 6.184246 ], [ 1.054688, 5.965754 ], [ 0.527344, 6.926427 ], [ 0.483398, 7.449624 ], [ 0.703125, 8.320212 ], [ 0.439453, 8.711359 ], [ 0.351562, 9.492408 ], [ 0.351562, 10.228437 ], [ 0.000000, 10.660608 ], [ -0.087891, 10.746969 ], [ 0.000000, 10.919618 ], [ 0.000000, 11.049038 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.812500, 12.254128 ], [ 3.515625, 11.738302 ], [ 3.515625, 9.838979 ], [ 2.900391, 9.145486 ], [ 2.680664, 8.537565 ], [ 2.680664, 6.271618 ], [ 1.845703, 6.184246 ], [ 1.582031, 6.839170 ], [ 1.625977, 9.145486 ], [ 1.450195, 9.362353 ], [ 1.406250, 9.838979 ], [ 0.747070, 10.487812 ], [ 0.878906, 11.005904 ], [ 1.230469, 11.135287 ], [ 1.406250, 11.566144 ], [ 1.933594, 11.652236 ], [ 2.153320, 11.953349 ], [ 2.460938, 12.254128 ], [ 2.812500, 12.254128 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 9.838979 ], [ 3.515625, 6.271618 ], [ 2.680664, 6.271618 ], [ 2.680664, 8.537565 ], [ 2.900391, 9.145486 ], [ 3.515625, 9.838979 ] ] ] } } -] } -] } -, -{ "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.043945, -65.293468 ], [ 135.659180, -65.567550 ], [ 135.834961, -66.018018 ], [ 136.186523, -66.443107 ], [ 136.582031, -66.774586 ], [ 137.416992, -66.947274 ], [ 138.559570, -66.895596 ], [ 139.877930, -66.861082 ], [ 140.800781, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.826520 ], [ 145.458984, -66.912834 ], [ 146.162109, -67.221053 ], [ 145.986328, -67.592475 ], [ 146.645508, -67.892086 ], [ 148.798828, -68.382996 ], [ 151.479492, -68.704486 ], [ 152.490234, -68.863517 ], [ 153.632812, -68.879358 ], [ 154.248047, -68.560384 ], [ 155.126953, -68.831802 ], [ 155.917969, -69.146920 ], [ 156.796875, -69.380313 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.214875 ], [ 161.542969, -70.568803 ], [ 162.685547, -70.728979 ], [ 163.828125, -70.714471 ], [ 164.882812, -70.772443 ], [ 166.113281, -70.743478 ], [ 167.299805, -70.830248 ], [ 168.398438, -70.959697 ], [ 169.453125, -71.201920 ], [ 170.463867, -71.399165 ], [ 171.166992, -71.691293 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.435535 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.343750, -74.164085 ], [ 166.069336, -74.378513 ], [ 165.629883, -74.764299 ], [ 164.926758, -75.140778 ], [ 164.223633, -75.453071 ], [ 163.784180, -75.866646 ], [ 163.564453, -76.237366 ], [ 163.432617, -76.689906 ], [ 163.476562, -77.059116 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.823323 ], [ 164.707031, -78.179588 ], [ 166.596680, -78.313860 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.154810 ], [ 160.883789, -79.726446 ], [ 160.708008, -80.193694 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.275053 ], [ 161.586914, -81.685144 ], [ 162.465820, -82.057893 ], [ 163.696289, -82.390794 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.365234, -83.825220 ], [ 172.265625, -84.038885 ], [ 173.188477, -84.410223 ], [ 175.957031, -84.156377 ], [ 178.242188, -84.469831 ], [ 180.000000, -84.710102 ], [ 180.000000, -85.345325 ], [ -3.515625, -85.345325 ], [ -3.515625, -71.343013 ], [ -1.801758, -71.159391 ], [ -0.703125, -71.216075 ], [ -0.263672, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.834961, -71.300793 ], [ 1.845703, -71.116770 ], [ 4.130859, -70.844673 ], [ 5.141602, -70.612614 ], [ 6.240234, -70.451508 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.885010 ], [ 8.481445, -70.140364 ], [ 9.492188, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.627197 ], [ 12.392578, -70.244604 ], [ 13.403320, -69.960439 ], [ 14.721680, -70.020587 ], [ 15.117188, -70.392606 ], [ 15.908203, -70.020587 ], [ 17.006836, -69.900118 ], [ 18.193359, -69.869892 ], [ 19.248047, -69.885010 ], [ 20.346680, -70.005567 ], [ 21.445312, -70.065585 ], [ 21.884766, -70.392606 ], [ 22.543945, -70.685421 ], [ 23.642578, -70.510241 ], [ 24.829102, -70.480896 ], [ 27.070312, -70.451508 ], [ 29.135742, -70.199994 ], [ 30.014648, -69.930300 ], [ 30.937500, -69.748551 ], [ 31.948242, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.266602, -68.831802 ], [ 33.837891, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.123047, -69.240579 ], [ 37.177734, -69.162558 ], [ 37.880859, -69.519147 ], [ 38.627930, -69.763757 ], [ 39.638672, -69.534518 ], [ 39.990234, -69.099940 ], [ 40.913086, -68.926811 ], [ 41.923828, -68.592487 ], [ 44.077148, -68.253111 ], [ 46.494141, -67.592475 ], [ 47.416992, -67.709445 ], [ 48.955078, -67.084550 ], [ 49.921875, -67.101656 ], [ 50.712891, -66.861082 ], [ 50.932617, -66.513260 ], [ 51.767578, -66.231457 ], [ 52.602539, -66.035873 ], [ 53.569336, -65.892680 ], [ 54.492188, -65.802776 ], [ 56.337891, -65.964377 ], [ 57.128906, -66.231457 ], [ 57.216797, -66.670387 ], [ 58.095703, -66.998844 ], [ 58.710938, -67.272043 ], [ 59.897461, -67.390599 ], [ 60.600586, -67.676085 ], [ 61.391602, -67.941650 ], [ 62.358398, -68.007571 ], [ 63.149414, -67.809245 ], [ 64.028320, -67.390599 ], [ 64.951172, -67.609221 ], [ 66.884766, -67.842416 ], [ 67.851562, -67.925140 ], [ 68.862305, -67.925140 ], [ 69.697266, -68.958391 ], [ 69.653320, -69.224997 ], [ 69.521484, -69.672358 ], [ 68.554688, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.685421 ], [ 69.038086, -70.670881 ], [ 68.906250, -71.059798 ], [ 68.378906, -71.441171 ], [ 67.939453, -71.842539 ], [ 68.686523, -72.154890 ], [ 69.829102, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.542969, -71.691293 ], [ 71.894531, -71.314877 ], [ 72.421875, -71.002660 ], [ 73.081055, -70.714471 ], [ 73.300781, -70.363091 ], [ 73.828125, -69.869892 ], [ 74.487305, -69.763757 ], [ 75.585938, -69.733334 ], [ 76.596680, -69.611206 ], [ 77.607422, -69.457554 ], [ 78.090820, -69.068563 ], [ 78.398438, -68.688521 ], [ 79.101562, -68.318146 ], [ 80.903320, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.356785 ], [ 82.749023, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.135829 ], [ 87.451172, -66.861082 ], [ 87.978516, -66.196009 ], [ 88.330078, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.648438, -67.135829 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.101656 ], [ 92.592773, -67.187000 ], [ 93.515625, -67.204032 ], [ 94.174805, -67.101656 ], [ 95.009766, -67.169955 ], [ 95.756836, -67.373698 ], [ 96.679688, -67.238062 ], [ 97.734375, -67.238062 ], [ 98.657227, -67.101656 ], [ 99.711914, -67.238062 ], [ 100.371094, -66.912834 ], [ 100.854492, -66.565747 ], [ 101.557617, -66.302205 ], [ 102.832031, -65.549367 ], [ 103.447266, -65.694476 ], [ 104.238281, -65.964377 ], [ 106.171875, -66.930060 ], [ 108.061523, -66.947274 ], [ 110.214844, -66.687784 ], [ 111.049805, -66.407955 ], [ 111.708984, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.345703, -66.071546 ], [ 114.873047, -66.372755 ], [ 115.576172, -66.687784 ], [ 116.674805, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.794922, -67.255058 ], [ 120.849609, -67.187000 ], [ 122.299805, -66.548263 ], [ 123.178711, -66.478208 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.705169 ], [ 126.079102, -66.548263 ], [ 126.958008, -66.548263 ], [ 128.759766, -66.757250 ], [ 129.682617, -66.565747 ], [ 130.781250, -66.407955 ], [ 131.791992, -66.372755 ], [ 132.934570, -66.372755 ], [ 134.736328, -66.196009 ], [ 135.000000, -65.712557 ], [ 135.043945, -65.293468 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 2.284551 ], [ 11.250000, 1.098565 ], [ 9.799805, 1.098565 ], [ 9.492188, 1.010690 ], [ 9.272461, 1.186439 ], [ 9.624023, 2.284551 ], [ 11.250000, 2.284551 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.249023, 3.513421 ], [ 15.380859, 3.337954 ], [ 15.820312, 3.030812 ], [ 15.864258, 2.591889 ], [ 15.996094, 2.284551 ], [ 15.908203, 1.757537 ], [ 14.326172, 2.240640 ], [ 13.051758, 2.284551 ], [ 12.919922, 2.328460 ], [ 12.348633, 2.196727 ], [ 11.733398, 2.328460 ], [ 11.250000, 2.284551 ], [ 9.624023, 2.284551 ], [ 9.755859, 3.074695 ], [ 9.492188, 3.513421 ], [ 15.249023, 3.513421 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, 3.513421 ], [ 16.523438, 3.206333 ], [ 15.996094, 2.284551 ], [ 15.864258, 2.591889 ], [ 15.820312, 3.030812 ], [ 15.380859, 3.337954 ], [ 15.249023, 3.513421 ], [ 16.875000, 3.513421 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.453125, 3.513421 ], [ 34.584961, 3.074695 ], [ 35.024414, 1.933227 ], [ 34.628906, 1.186439 ], [ 33.881836, 0.131836 ], [ 33.881836, -0.922812 ], [ 31.860352, -1.010690 ], [ 30.761719, -1.010690 ], [ 29.794922, -1.406109 ], [ 29.575195, -1.318243 ], [ 29.575195, -0.571280 ], [ 29.794922, -0.175781 ], [ 29.794922, 0.000000 ], [ 29.838867, 0.615223 ], [ 30.058594, 1.098565 ], [ 30.454102, 1.625758 ], [ 30.849609, 1.889306 ], [ 31.157227, 2.240640 ], [ 30.761719, 2.372369 ], [ 30.805664, 3.513421 ], [ 34.453125, 3.513421 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.528320, 3.513421 ], [ 40.957031, 2.811371 ], [ 40.957031, -0.834931 ], [ 41.572266, -1.669686 ], [ 40.869141, -2.064982 ], [ 40.605469, -2.460181 ], [ 40.253906, -2.547988 ], [ 40.078125, -3.250209 ], [ 39.770508, -3.645000 ], [ 39.594727, -4.346411 ], [ 39.199219, -4.653080 ], [ 37.749023, -3.645000 ], [ 37.661133, -3.074695 ], [ 33.881836, -0.922812 ], [ 33.881836, 0.131836 ], [ 34.628906, 1.186439 ], [ 35.024414, 1.933227 ], [ 34.584961, 3.074695 ], [ 34.453125, 3.513421 ], [ 38.847656, 3.513421 ], [ 39.550781, 3.425692 ], [ 39.594727, 3.513421 ], [ 41.528320, 3.513421 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.594727, 3.513421 ], [ 39.550781, 3.425692 ], [ 38.847656, 3.513421 ], [ 39.594727, 3.513421 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.109375, 3.513421 ], [ 46.538086, 2.899153 ], [ 45.527344, 2.064982 ], [ 44.033203, 1.054628 ], [ 43.110352, 0.307616 ], [ 42.846680, 0.000000 ], [ 42.011719, -0.878872 ], [ 41.791992, -1.406109 ], [ 41.572266, -1.669686 ], [ 40.957031, -0.834931 ], [ 40.957031, 2.811371 ], [ 41.528320, 3.513421 ], [ 47.109375, 3.513421 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 115.620117, 3.513421 ], [ 115.488281, 3.206333 ], [ 115.092773, 2.855263 ], [ 114.609375, 1.450040 ], [ 113.774414, 1.230374 ], [ 112.851562, 1.537901 ], [ 112.368164, 1.450040 ], [ 111.796875, 0.922812 ], [ 111.137695, 1.010690 ], [ 110.478516, 0.790990 ], [ 109.819336, 1.362176 ], [ 109.643555, 2.021065 ], [ 110.390625, 1.669686 ], [ 111.137695, 1.889306 ], [ 111.357422, 2.723583 ], [ 111.796875, 2.899153 ], [ 112.983398, 3.118576 ], [ 113.334961, 3.513421 ], [ 115.620117, 3.513421 ] ] ], [ [ [ 103.359375, 3.513421 ], [ 103.491211, 2.811371 ], [ 103.842773, 2.547988 ], [ 104.238281, 1.669686 ], [ 104.194336, 1.318243 ], [ 103.491211, 1.230374 ], [ 102.568359, 1.977147 ], [ 101.381836, 2.767478 ], [ 101.250000, 3.294082 ], [ 101.030273, 3.513421 ], [ 103.359375, 3.513421 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.330078, -17.308688 ], [ 178.681641, -17.602139 ], [ 178.549805, -18.145852 ], [ 177.890625, -18.271086 ], [ 177.363281, -18.145852 ], [ 177.275391, -17.685895 ], [ 177.626953, -17.350638 ], [ 178.110352, -17.476432 ], [ 178.330078, -17.308688 ] ] ], [ [ [ 180.000000, -16.045813 ], [ 180.000000, -16.551962 ], [ 178.681641, -16.972741 ], [ 178.593750, -16.636192 ], [ 179.077148, -16.425548 ], [ 179.384766, -16.341226 ], [ 180.000000, -16.045813 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.919922, 2.328460 ], [ 13.051758, 2.284551 ], [ 12.963867, 1.845384 ], [ 13.271484, 1.318243 ], [ 14.018555, 1.406109 ], [ 14.238281, 1.230374 ], [ 13.842773, 0.000000 ], [ 14.282227, -0.527336 ], [ 14.414062, -1.318243 ], [ 14.282227, -1.977147 ], [ 13.974609, -2.460181 ], [ 13.095703, -2.416276 ], [ 12.568359, -1.933227 ], [ 12.480469, -2.372369 ], [ 11.777344, -2.504085 ], [ 11.469727, -2.723583 ], [ 11.821289, -3.425692 ], [ 11.074219, -3.951941 ], [ 10.063477, -2.943041 ], [ 9.404297, -2.108899 ], [ 8.789062, -1.098565 ], [ 8.789062, -0.747049 ], [ 9.008789, -0.439449 ], [ 9.184570, 0.000000 ], [ 9.492188, 1.010690 ], [ 9.799805, 1.098565 ], [ 11.250000, 1.098565 ], [ 11.250000, 2.284551 ], [ 11.733398, 2.328460 ], [ 12.348633, 2.196727 ], [ 12.919922, 2.328460 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.413086, 3.513421 ], [ 18.369141, 2.943041 ], [ 18.061523, 2.372369 ], [ 17.885742, 1.757537 ], [ 17.753906, 0.878872 ], [ 17.797852, 0.307616 ], [ 17.666016, 0.000000 ], [ 17.490234, -0.703107 ], [ 16.831055, -1.186439 ], [ 16.391602, -1.713612 ], [ 15.952148, -2.679687 ], [ 15.996094, -3.513421 ], [ 15.732422, -3.820408 ], [ 15.161133, -4.302591 ], [ 14.545898, -4.959615 ], [ 14.194336, -4.784469 ], [ 14.106445, -4.477856 ], [ 13.579102, -4.477856 ], [ 13.227539, -4.872048 ], [ 12.963867, -4.740675 ], [ 12.612305, -4.434044 ], [ 12.304688, -4.565474 ], [ 11.909180, -5.003394 ], [ 11.074219, -3.951941 ], [ 11.821289, -3.425692 ], [ 11.469727, -2.723583 ], [ 11.777344, -2.504085 ], [ 12.480469, -2.372369 ], [ 12.568359, -1.933227 ], [ 13.095703, -2.416276 ], [ 13.974609, -2.460181 ], [ 14.282227, -1.977147 ], [ 14.414062, -1.318243 ], [ 14.282227, -0.527336 ], [ 13.842773, 0.000000 ], [ 14.238281, 1.230374 ], [ 14.018555, 1.406109 ], [ 13.271484, 1.318243 ], [ 12.963867, 1.845384 ], [ 13.051758, 2.284551 ], [ 14.326172, 2.240640 ], [ 15.908203, 1.757537 ], [ 15.996094, 2.284551 ], [ 16.523438, 3.206333 ], [ 16.875000, 3.513421 ], [ 18.413086, 3.513421 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.805664, 3.513421 ], [ 30.761719, 2.372369 ], [ 31.157227, 2.240640 ], [ 30.849609, 1.889306 ], [ 30.454102, 1.625758 ], [ 30.058594, 1.098565 ], [ 29.838867, 0.615223 ], [ 29.794922, 0.000000 ], [ 29.794922, -0.175781 ], [ 29.575195, -0.571280 ], [ 29.575195, -1.318243 ], [ 29.267578, -1.581830 ], [ 29.223633, -2.196727 ], [ 29.091797, -2.284551 ], [ 29.003906, -2.811371 ], [ 29.267578, -3.250209 ], [ 29.311523, -4.477856 ], [ 29.487305, -5.397273 ], [ 29.399414, -5.922045 ], [ 29.619141, -6.489983 ], [ 30.190430, -7.057282 ], [ 30.717773, -8.320212 ], [ 30.322266, -8.233237 ], [ 28.959961, -8.363693 ], [ 28.696289, -8.494105 ], [ 28.432617, -9.145486 ], [ 28.652344, -9.579084 ], [ 28.344727, -11.781325 ], [ 29.311523, -12.340002 ], [ 29.575195, -12.168226 ], [ 29.663086, -13.239945 ], [ 28.916016, -13.239945 ], [ 28.125000, -12.254128 ], [ 27.377930, -12.125264 ], [ 27.158203, -11.566144 ], [ 26.542969, -11.910354 ], [ 25.751953, -11.781325 ], [ 25.400391, -11.307708 ], [ 24.741211, -11.221510 ], [ 24.301758, -11.221510 ], [ 24.213867, -10.919618 ], [ 23.422852, -10.833306 ], [ 22.807617, -11.005904 ], [ 22.368164, -10.962764 ], [ 22.148438, -11.049038 ], [ 22.192383, -9.882275 ], [ 21.840820, -9.492408 ], [ 21.796875, -8.885072 ], [ 21.928711, -8.276727 ], [ 21.708984, -7.885147 ], [ 21.708984, -7.275292 ], [ 20.478516, -7.275292 ], [ 20.566406, -6.926427 ], [ 20.083008, -6.926427 ], [ 19.995117, -7.100893 ], [ 19.379883, -7.144499 ], [ 18.984375, -7.972198 ], [ 18.457031, -7.841615 ], [ 18.105469, -7.972198 ], [ 17.446289, -8.059230 ], [ 16.831055, -7.188101 ], [ 16.567383, -6.620957 ], [ 16.303711, -5.834616 ], [ 13.359375, -5.834616 ], [ 12.304688, -6.096860 ], [ 12.172852, -5.747174 ], [ 12.436523, -5.659719 ], [ 12.436523, -5.222247 ], [ 12.612305, -4.959615 ], [ 12.963867, -4.740675 ], [ 13.227539, -4.872048 ], [ 13.579102, -4.477856 ], [ 14.106445, -4.477856 ], [ 14.194336, -4.784469 ], [ 14.545898, -4.959615 ], [ 15.161133, -4.302591 ], [ 15.732422, -3.820408 ], [ 15.996094, -3.513421 ], [ 15.952148, -2.679687 ], [ 16.391602, -1.713612 ], [ 16.831055, -1.186439 ], [ 17.490234, -0.703107 ], [ 17.666016, 0.000000 ], [ 17.797852, 0.307616 ], [ 17.753906, 0.878872 ], [ 17.885742, 1.757537 ], [ 18.061523, 2.372369 ], [ 18.369141, 2.943041 ], [ 18.413086, 3.513421 ], [ 30.805664, 3.513421 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.303711, -5.834616 ], [ 16.567383, -6.620957 ], [ 16.831055, -7.188101 ], [ 17.446289, -8.059230 ], [ 18.105469, -7.972198 ], [ 18.457031, -7.841615 ], [ 18.984375, -7.972198 ], [ 19.379883, -7.144499 ], [ 19.995117, -7.100893 ], [ 20.083008, -6.926427 ], [ 20.566406, -6.926427 ], [ 20.478516, -7.275292 ], [ 21.708984, -7.275292 ], [ 21.708984, -7.885147 ], [ 21.928711, -8.276727 ], [ 21.796875, -8.885072 ], [ 21.840820, -9.492408 ], [ 22.192383, -9.882275 ], [ 22.148438, -11.049038 ], [ 22.368164, -10.962764 ], [ 22.807617, -11.005904 ], [ 23.422852, -10.833306 ], [ 23.906250, -10.919618 ], [ 23.994141, -11.221510 ], [ 23.862305, -11.695273 ], [ 24.038086, -12.168226 ], [ 23.906250, -12.554564 ], [ 23.994141, -12.897489 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.045813 ], [ 22.543945, -16.888660 ], [ 23.203125, -17.518344 ], [ 21.357422, -17.895114 ], [ 18.940430, -17.769612 ], [ 18.237305, -17.308688 ], [ 14.194336, -17.350638 ], [ 14.018555, -17.392579 ], [ 13.447266, -16.930705 ], [ 12.788086, -16.930705 ], [ 11.733398, -17.266728 ], [ 11.601562, -16.636192 ], [ 11.777344, -15.792254 ], [ 12.084961, -14.859850 ], [ 12.172852, -14.434680 ], [ 12.480469, -13.539201 ], [ 12.700195, -13.111580 ], [ 13.623047, -11.996338 ], [ 13.710938, -11.264612 ], [ 13.666992, -10.703792 ], [ 13.359375, -10.358151 ], [ 12.832031, -9.145486 ], [ 12.919922, -8.928487 ], [ 13.227539, -8.537565 ], [ 12.700195, -6.926427 ], [ 12.216797, -6.271618 ], [ 12.304688, -6.096860 ], [ 13.359375, -5.834616 ], [ 16.303711, -5.834616 ] ] ], [ [ [ 12.612305, -4.434044 ], [ 12.963867, -4.740675 ], [ 12.612305, -4.959615 ], [ 12.436523, -5.222247 ], [ 12.436523, -5.659719 ], [ 12.172852, -5.747174 ], [ 11.909180, -5.003394 ], [ 12.304688, -4.565474 ], [ 12.612305, -4.434044 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.447266, -16.930705 ], [ 14.018555, -17.392579 ], [ 14.194336, -17.350638 ], [ 18.237305, -17.308688 ], [ 18.940430, -17.769612 ], [ 21.357422, -17.895114 ], [ 23.994141, -17.266728 ], [ 24.653320, -17.350638 ], [ 25.048828, -17.560247 ], [ 25.048828, -17.644022 ], [ 24.477539, -17.853290 ], [ 24.213867, -17.853290 ], [ 23.554688, -18.271086 ], [ 23.159180, -17.853290 ], [ 21.621094, -18.187607 ], [ 20.874023, -18.229351 ], [ 20.874023, -21.779905 ], [ 19.863281, -21.820708 ], [ 19.863281, -28.459033 ], [ 18.984375, -28.960089 ], [ 18.457031, -29.036961 ], [ 17.358398, -28.767659 ], [ 17.182617, -28.343065 ], [ 16.787109, -28.071980 ], [ 16.303711, -28.574874 ], [ 15.600586, -27.800210 ], [ 15.205078, -27.059126 ], [ 14.370117, -23.845650 ], [ 14.370117, -22.634293 ], [ 14.238281, -22.105999 ], [ 13.842773, -21.698265 ], [ 13.315430, -20.838278 ], [ 12.568359, -19.020577 ], [ 11.777344, -18.062312 ], [ 11.733398, -17.266728 ], [ 12.788086, -16.930705 ], [ 13.447266, -16.930705 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.410156, -1.098565 ], [ 30.805664, -1.669686 ], [ 30.717773, -2.284551 ], [ 30.454102, -2.372369 ], [ 29.926758, -2.328460 ], [ 29.619141, -2.899153 ], [ 29.003906, -2.811371 ], [ 29.091797, -2.284551 ], [ 29.223633, -2.196727 ], [ 29.267578, -1.581830 ], [ 29.575195, -1.318243 ], [ 29.794922, -1.406109 ], [ 30.410156, -1.098565 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.926758, -2.328460 ], [ 30.454102, -2.372369 ], [ 30.498047, -2.767478 ], [ 30.717773, -3.030812 ], [ 30.717773, -3.337954 ], [ 29.750977, -4.434044 ], [ 29.311523, -4.477856 ], [ 29.267578, -3.250209 ], [ 29.003906, -2.811371 ], [ 29.619141, -2.899153 ], [ 29.926758, -2.328460 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.322266, -8.233237 ], [ 30.717773, -8.320212 ], [ 31.552734, -8.754795 ], [ 32.167969, -8.928487 ], [ 32.739258, -9.188870 ], [ 33.222656, -9.665738 ], [ 33.442383, -10.487812 ], [ 33.310547, -10.790141 ], [ 33.090820, -11.566144 ], [ 33.266602, -12.425848 ], [ 32.958984, -12.768946 ], [ 32.651367, -13.710035 ], [ 33.178711, -13.966054 ], [ 30.146484, -14.774883 ], [ 30.234375, -15.496032 ], [ 29.487305, -15.623037 ], [ 28.916016, -16.003576 ], [ 28.784180, -16.383391 ], [ 28.432617, -16.467695 ], [ 27.597656, -17.266728 ], [ 27.026367, -17.936929 ], [ 26.674805, -17.936929 ], [ 26.367188, -17.811456 ], [ 25.224609, -17.727759 ], [ 24.653320, -17.350638 ], [ 23.994141, -17.266728 ], [ 23.203125, -17.518344 ], [ 22.543945, -16.888660 ], [ 21.884766, -16.045813 ], [ 21.928711, -12.897489 ], [ 23.994141, -12.897489 ], [ 23.906250, -12.554564 ], [ 24.038086, -12.168226 ], [ 23.862305, -11.695273 ], [ 23.994141, -11.221510 ], [ 23.906250, -10.919618 ], [ 24.213867, -10.919618 ], [ 24.301758, -11.221510 ], [ 24.741211, -11.221510 ], [ 25.400391, -11.307708 ], [ 25.751953, -11.781325 ], [ 26.542969, -11.910354 ], [ 27.158203, -11.566144 ], [ 27.377930, -12.125264 ], [ 28.125000, -12.254128 ], [ 28.916016, -13.239945 ], [ 29.663086, -13.239945 ], [ 29.575195, -12.168226 ], [ 29.311523, -12.340002 ], [ 28.344727, -11.781325 ], [ 28.652344, -9.579084 ], [ 28.432617, -9.145486 ], [ 28.696289, -8.494105 ], [ 28.959961, -8.363693 ], [ 30.322266, -8.233237 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.234375, -15.496032 ], [ 30.322266, -15.876809 ], [ 31.157227, -15.834536 ], [ 31.596680, -16.045813 ], [ 31.816406, -16.299051 ], [ 32.299805, -16.383391 ], [ 32.827148, -16.678293 ], [ 32.827148, -17.978733 ], [ 32.651367, -18.646245 ], [ 32.607422, -19.394068 ], [ 32.739258, -19.683970 ], [ 32.651367, -20.303418 ], [ 32.475586, -20.385825 ], [ 32.211914, -21.084500 ], [ 31.157227, -22.228090 ], [ 30.629883, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.065278 ], [ 29.399414, -22.065278 ], [ 28.784180, -21.616579 ], [ 27.993164, -21.453069 ], [ 27.685547, -20.838278 ], [ 27.685547, -20.468189 ], [ 27.290039, -20.385825 ], [ 26.147461, -19.269665 ], [ 25.839844, -18.687879 ], [ 25.620117, -18.521283 ], [ 25.224609, -17.727759 ], [ 26.367188, -17.811456 ], [ 26.674805, -17.936929 ], [ 27.026367, -17.936929 ], [ 27.597656, -17.266728 ], [ 28.432617, -16.467695 ], [ 28.784180, -16.383391 ], [ 28.916016, -16.003576 ], [ 29.487305, -15.623037 ], [ 30.234375, -15.496032 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.881836, -0.922812 ], [ 37.661133, -3.074695 ], [ 37.749023, -3.645000 ], [ 39.199219, -4.653080 ], [ 38.715820, -5.878332 ], [ 38.759766, -6.446318 ], [ 39.418945, -6.839170 ], [ 39.462891, -7.057282 ], [ 39.155273, -7.667441 ], [ 39.243164, -7.972198 ], [ 39.155273, -8.450639 ], [ 39.506836, -9.102097 ], [ 39.946289, -10.055403 ], [ 40.297852, -10.314919 ], [ 39.506836, -10.876465 ], [ 38.408203, -11.264612 ], [ 37.792969, -11.264612 ], [ 37.441406, -11.566144 ], [ 36.738281, -11.566144 ], [ 36.474609, -11.695273 ], [ 35.288086, -11.436955 ], [ 34.541016, -11.480025 ], [ 34.277344, -10.141932 ], [ 33.706055, -9.405710 ], [ 32.739258, -9.188870 ], [ 32.167969, -8.928487 ], [ 31.157227, -8.581021 ], [ 30.717773, -8.320212 ], [ 30.190430, -7.057282 ], [ 29.619141, -6.489983 ], [ 29.399414, -5.922045 ], [ 29.487305, -5.397273 ], [ 29.311523, -4.477856 ], [ 29.750977, -4.434044 ], [ 30.717773, -3.337954 ], [ 30.717773, -3.030812 ], [ 30.498047, -2.767478 ], [ 30.454102, -2.372369 ], [ 30.717773, -2.284551 ], [ 30.805664, -1.669686 ], [ 30.410156, -1.098565 ], [ 30.761719, -1.010690 ], [ 33.881836, -0.922812 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.739258, -9.188870 ], [ 33.706055, -9.405710 ], [ 34.277344, -10.141932 ], [ 34.541016, -11.480025 ], [ 34.277344, -12.254128 ], [ 34.541016, -13.539201 ], [ 34.892578, -13.539201 ], [ 35.244141, -13.880746 ], [ 35.683594, -14.604847 ], [ 35.771484, -15.876809 ], [ 35.332031, -16.088042 ], [ 35.024414, -16.762468 ], [ 34.365234, -16.172473 ], [ 34.277344, -15.453680 ], [ 34.497070, -14.987240 ], [ 34.453125, -14.604847 ], [ 34.057617, -14.349548 ], [ 33.750000, -14.434680 ], [ 33.178711, -13.966054 ], [ 32.651367, -13.710035 ], [ 32.958984, -12.768946 ], [ 33.266602, -12.425848 ], [ 33.090820, -11.566144 ], [ 33.310547, -10.790141 ], [ 33.442383, -10.487812 ], [ 33.222656, -9.665738 ], [ 32.739258, -9.188870 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.297852, -10.314919 ], [ 40.473633, -10.746969 ], [ 40.429688, -11.738302 ], [ 40.517578, -12.597455 ], [ 40.561523, -14.179186 ], [ 40.737305, -14.689881 ], [ 40.473633, -15.368950 ], [ 40.078125, -16.088042 ], [ 39.418945, -16.720385 ], [ 37.397461, -17.560247 ], [ 36.254883, -18.646245 ], [ 35.859375, -18.812718 ], [ 35.156250, -19.518375 ], [ 34.760742, -19.766704 ], [ 34.672852, -20.468189 ], [ 35.156250, -21.248422 ], [ 35.332031, -21.820708 ], [ 35.375977, -22.105999 ], [ 35.551758, -22.065278 ], [ 35.507812, -23.039298 ], [ 35.332031, -23.523700 ], [ 35.595703, -23.684774 ], [ 35.419922, -24.086589 ], [ 35.024414, -24.447150 ], [ 33.002930, -25.324167 ], [ 32.563477, -25.720735 ], [ 32.651367, -26.115986 ], [ 32.915039, -26.194877 ], [ 32.827148, -26.706360 ], [ 32.036133, -26.706360 ], [ 31.728516, -25.482951 ], [ 31.904297, -24.367114 ], [ 31.157227, -22.228090 ], [ 32.211914, -21.084500 ], [ 32.475586, -20.385825 ], [ 32.651367, -20.303418 ], [ 32.739258, -19.683970 ], [ 32.607422, -19.394068 ], [ 32.651367, -18.646245 ], [ 32.827148, -17.978733 ], [ 32.827148, -16.678293 ], [ 32.299805, -16.383391 ], [ 31.816406, -16.299051 ], [ 31.596680, -16.045813 ], [ 31.157227, -15.834536 ], [ 30.322266, -15.876809 ], [ 30.146484, -14.774883 ], [ 33.178711, -13.966054 ], [ 33.750000, -14.434680 ], [ 34.057617, -14.349548 ], [ 34.453125, -14.604847 ], [ 34.497070, -14.987240 ], [ 34.277344, -15.453680 ], [ 34.365234, -16.172473 ], [ 35.024414, -16.762468 ], [ 35.332031, -16.088042 ], [ 35.771484, -15.876809 ], [ 35.683594, -14.604847 ], [ 35.244141, -13.880746 ], [ 34.892578, -13.539201 ], [ 34.541016, -13.539201 ], [ 34.277344, -12.254128 ], [ 34.541016, -11.480025 ], [ 35.288086, -11.436955 ], [ 36.474609, -11.695273 ], [ 36.738281, -11.566144 ], [ 37.441406, -11.566144 ], [ 37.792969, -11.264612 ], [ 38.408203, -11.264612 ], [ 39.506836, -10.876465 ], [ 40.297852, -10.314919 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.048828, -17.644022 ], [ 25.224609, -17.727759 ], [ 25.620117, -18.521283 ], [ 25.839844, -18.687879 ], [ 26.147461, -19.269665 ], [ 27.290039, -20.385825 ], [ 27.685547, -20.468189 ], [ 27.685547, -20.838278 ], [ 27.993164, -21.453069 ], [ 28.784180, -21.616579 ], [ 29.399414, -22.065278 ], [ 27.993164, -22.796439 ], [ 27.114258, -23.563987 ], [ 26.762695, -24.206890 ], [ 26.455078, -24.607069 ], [ 25.927734, -24.686952 ], [ 25.664062, -25.482951 ], [ 25.004883, -25.681137 ], [ 24.169922, -25.641526 ], [ 23.730469, -25.363882 ], [ 23.291016, -25.244696 ], [ 22.807617, -25.482951 ], [ 22.543945, -25.958045 ], [ 22.104492, -26.273714 ], [ 21.577148, -26.706360 ], [ 20.874023, -26.824071 ], [ 20.654297, -26.470573 ], [ 20.742188, -25.839449 ], [ 20.126953, -24.886436 ], [ 19.863281, -24.766785 ], [ 19.863281, -21.820708 ], [ 20.874023, -21.779905 ], [ 20.874023, -18.229351 ], [ 21.621094, -18.187607 ], [ 23.159180, -17.853290 ], [ 23.554688, -18.271086 ], [ 24.213867, -17.853290 ], [ 24.477539, -17.853290 ], [ 25.048828, -17.644022 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.838867, -22.065278 ], [ 30.322266, -22.268764 ], [ 30.629883, -22.146708 ], [ 31.157227, -22.228090 ], [ 31.904297, -24.367114 ], [ 31.728516, -25.482951 ], [ 31.816406, -25.839449 ], [ 31.333008, -25.641526 ], [ 31.025391, -25.720735 ], [ 30.937500, -25.997550 ], [ 30.673828, -26.391870 ], [ 30.673828, -26.706360 ], [ 31.245117, -27.254630 ], [ 31.860352, -27.176469 ], [ 32.036133, -26.706360 ], [ 32.827148, -26.706360 ], [ 32.563477, -27.449790 ], [ 32.431641, -28.265682 ], [ 32.167969, -28.729130 ], [ 31.508789, -29.228890 ], [ 31.289062, -29.382175 ], [ 30.893555, -29.878755 ], [ 30.585938, -30.410782 ], [ 30.014648, -31.128199 ], [ 28.212891, -32.768800 ], [ 27.421875, -33.211116 ], [ 26.411133, -33.614619 ], [ 25.883789, -33.651208 ], [ 25.751953, -33.943360 ], [ 25.136719, -33.760882 ], [ 24.653320, -33.979809 ], [ 23.554688, -33.760882 ], [ 22.983398, -33.906896 ], [ 22.543945, -33.833920 ], [ 21.533203, -34.234512 ], [ 20.654297, -34.415973 ], [ 20.039062, -34.777716 ], [ 19.599609, -34.813803 ], [ 19.160156, -34.452218 ], [ 18.852539, -34.415973 ], [ 18.413086, -33.979809 ], [ 18.369141, -34.125448 ], [ 18.237305, -33.833920 ], [ 18.237305, -33.247876 ], [ 17.885742, -32.583849 ], [ 18.237305, -32.398516 ], [ 18.193359, -31.653381 ], [ 17.534180, -30.713504 ], [ 16.303711, -28.574874 ], [ 16.787109, -28.071980 ], [ 17.182617, -28.343065 ], [ 17.358398, -28.767659 ], [ 18.457031, -29.036961 ], [ 18.984375, -28.960089 ], [ 19.863281, -28.459033 ], [ 19.863281, -24.766785 ], [ 20.126953, -24.886436 ], [ 20.742188, -25.839449 ], [ 20.654297, -26.470573 ], [ 20.874023, -26.824071 ], [ 21.577148, -26.706360 ], [ 22.104492, -26.273714 ], [ 22.543945, -25.958045 ], [ 22.807617, -25.482951 ], [ 23.291016, -25.244696 ], [ 23.730469, -25.363882 ], [ 24.169922, -25.641526 ], [ 25.004883, -25.681137 ], [ 25.664062, -25.482951 ], [ 25.927734, -24.686952 ], [ 26.455078, -24.607069 ], [ 26.762695, -24.206890 ], [ 27.114258, -23.563987 ], [ 27.993164, -22.796439 ], [ 29.399414, -22.065278 ], [ 29.838867, -22.065278 ] ], [ [ 28.520508, -28.613459 ], [ 28.037109, -28.844674 ], [ 27.509766, -29.228890 ], [ 26.982422, -29.840644 ], [ 27.729492, -30.637912 ], [ 28.081055, -30.524413 ], [ 28.256836, -30.221102 ], [ 28.828125, -30.069094 ], [ 29.311523, -29.228890 ], [ 28.959961, -28.921631 ], [ 28.520508, -28.613459 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.333008, -25.641526 ], [ 31.816406, -25.839449 ], [ 32.036133, -26.706360 ], [ 31.860352, -27.176469 ], [ 31.245117, -27.254630 ], [ 30.673828, -26.706360 ], [ 30.673828, -26.391870 ], [ 30.937500, -25.997550 ], [ 31.025391, -25.720735 ], [ 31.333008, -25.641526 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.520508, -28.613459 ], [ 28.959961, -28.921631 ], [ 29.311523, -29.228890 ], [ 28.828125, -30.069094 ], [ 28.256836, -30.221102 ], [ 28.081055, -30.524413 ], [ 27.729492, -30.637912 ], [ 26.982422, -29.840644 ], [ 27.509766, -29.228890 ], [ 28.037109, -28.844674 ], [ 28.520508, -28.613459 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.174805, -12.039321 ], [ 49.526367, -12.468760 ], [ 49.790039, -12.854649 ], [ 50.053711, -13.539201 ], [ 50.185547, -14.732386 ], [ 50.449219, -15.199386 ], [ 50.361328, -15.665354 ], [ 50.185547, -15.961329 ], [ 49.833984, -15.411319 ], [ 49.658203, -15.707663 ], [ 49.833984, -16.425548 ], [ 49.746094, -16.846605 ], [ 49.482422, -17.098792 ], [ 49.394531, -17.936929 ], [ 47.900391, -22.390714 ], [ 47.504883, -23.765237 ], [ 47.065430, -24.926295 ], [ 46.274414, -25.165173 ], [ 45.395508, -25.562265 ], [ 44.033203, -24.966140 ], [ 43.725586, -24.447150 ], [ 43.681641, -23.563987 ], [ 43.330078, -22.755921 ], [ 43.242188, -22.024546 ], [ 43.417969, -21.330315 ], [ 43.857422, -21.125498 ], [ 43.857422, -20.797201 ], [ 44.340820, -20.055931 ], [ 44.428711, -19.394068 ], [ 44.208984, -18.937464 ], [ 44.033203, -18.312811 ], [ 43.945312, -17.392579 ], [ 44.296875, -16.846605 ], [ 44.428711, -16.214675 ], [ 44.912109, -16.172473 ], [ 45.834961, -15.792254 ], [ 46.274414, -15.749963 ], [ 46.845703, -15.199386 ], [ 47.680664, -14.562318 ], [ 47.988281, -14.051331 ], [ 47.856445, -13.624633 ], [ 48.251953, -13.752725 ], [ 48.823242, -13.068777 ], [ 48.823242, -12.468760 ], [ 49.174805, -12.039321 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.906250, -48.603858 ], [ 69.565430, -48.922499 ], [ 70.488281, -49.037868 ], [ 70.532227, -49.239121 ], [ 70.268555, -49.696062 ], [ 68.730469, -49.752880 ], [ 68.686523, -49.239121 ], [ 68.906250, -48.603858 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.936523, -8.885072 ], [ 125.068359, -9.058702 ], [ 125.068359, -9.362353 ], [ 124.409180, -10.098670 ], [ 123.574219, -10.358151 ], [ 123.442383, -10.228437 ], [ 123.530273, -9.882275 ], [ 123.969727, -9.275622 ], [ 124.936523, -8.885072 ] ] ], [ [ [ 119.882812, -9.318990 ], [ 120.410156, -9.665738 ], [ 120.761719, -9.968851 ], [ 120.673828, -10.228437 ], [ 120.278320, -10.228437 ], [ 118.959961, -9.535749 ], [ 119.882812, -9.318990 ] ] ], [ [ [ 132.363281, -0.351560 ], [ 133.945312, -0.747049 ], [ 134.121094, -1.142502 ], [ 134.384766, -2.767478 ], [ 135.439453, -3.337954 ], [ 136.274414, -2.284551 ], [ 137.416992, -1.669686 ], [ 138.295898, -1.669686 ], [ 139.921875, -2.372369 ], [ 140.976562, -2.591889 ], [ 141.020508, -9.102097 ], [ 140.141602, -8.276727 ], [ 139.086914, -8.059230 ], [ 138.867188, -8.363693 ], [ 137.592773, -8.407168 ], [ 138.032227, -7.580328 ], [ 138.647461, -7.318882 ], [ 138.383789, -6.227934 ], [ 137.900391, -5.353521 ], [ 135.966797, -4.521666 ], [ 135.131836, -4.434044 ], [ 133.637695, -3.513421 ], [ 133.330078, -3.995781 ], [ 132.978516, -4.083453 ], [ 132.714844, -3.732708 ], [ 132.714844, -3.294082 ], [ 131.967773, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.231445, -2.196727 ], [ 131.835938, -1.581830 ], [ 130.913086, -1.406109 ], [ 130.517578, -0.922812 ], [ 131.835938, -0.659165 ], [ 132.363281, -0.351560 ] ] ], [ [ [ 117.861328, -8.059230 ], [ 118.256836, -8.320212 ], [ 118.872070, -8.276727 ], [ 119.091797, -8.667918 ], [ 117.246094, -9.015302 ], [ 116.718750, -9.015302 ], [ 117.070312, -8.450639 ], [ 117.597656, -8.407168 ], [ 117.861328, -8.059230 ] ] ], [ [ [ 122.871094, -8.059230 ], [ 122.739258, -8.624472 ], [ 121.245117, -8.928487 ], [ 119.882812, -8.798225 ], [ 119.882812, -8.407168 ], [ 120.673828, -8.233237 ], [ 121.333008, -8.494105 ], [ 121.992188, -8.450639 ], [ 122.871094, -8.059230 ] ] ], [ [ [ 106.040039, -5.878332 ], [ 107.226562, -5.922045 ], [ 108.061523, -6.315299 ], [ 108.457031, -6.402648 ], [ 108.588867, -6.751896 ], [ 110.522461, -6.839170 ], [ 110.742188, -6.446318 ], [ 112.587891, -6.926427 ], [ 112.939453, -7.580328 ], [ 114.477539, -7.754537 ], [ 115.664062, -8.363693 ], [ 114.521484, -8.711359 ], [ 113.422852, -8.320212 ], [ 112.543945, -8.363693 ], [ 111.489258, -8.276727 ], [ 110.566406, -8.102739 ], [ 109.423828, -7.710992 ], [ 108.676758, -7.623887 ], [ 108.237305, -7.754537 ], [ 106.435547, -7.318882 ], [ 106.259766, -6.882800 ], [ 105.336914, -6.839170 ], [ 106.040039, -5.878332 ] ] ], [ [ [ 134.472656, -5.441022 ], [ 134.692383, -5.703448 ], [ 134.692383, -6.184246 ], [ 134.208984, -6.882800 ], [ 134.077148, -6.140555 ], [ 134.472656, -5.441022 ] ] ], [ [ [ 99.228516, 3.513421 ], [ 99.667969, 3.206333 ], [ 100.634766, 2.108899 ], [ 101.645508, 2.108899 ], [ 102.480469, 1.406109 ], [ 103.051758, 0.571280 ], [ 103.798828, 0.131836 ], [ 103.754883, 0.000000 ], [ 103.403320, -0.703107 ], [ 103.974609, -1.054628 ], [ 104.326172, -1.054628 ], [ 104.501953, -1.757537 ], [ 104.853516, -2.328460 ], [ 105.600586, -2.416276 ], [ 106.083984, -3.030812 ], [ 105.820312, -4.302591 ], [ 105.776367, -5.834616 ], [ 104.677734, -5.834616 ], [ 103.842773, -5.003394 ], [ 102.568359, -4.214943 ], [ 102.128906, -3.601142 ], [ 101.381836, -2.767478 ], [ 100.898438, -2.021065 ], [ 100.107422, -0.615223 ], [ 99.448242, 0.000000 ], [ 99.228516, 0.219726 ], [ 98.964844, 1.054628 ], [ 98.569336, 1.845384 ], [ 97.690430, 2.460181 ], [ 97.163086, 3.337954 ], [ 96.899414, 3.513421 ], [ 99.228516, 3.513421 ] ] ], [ [ [ 125.024414, 1.669686 ], [ 125.200195, 1.450040 ], [ 124.409180, 0.439449 ], [ 123.662109, 0.263671 ], [ 122.695312, 0.439449 ], [ 121.025391, 0.395505 ], [ 120.146484, 0.263671 ], [ 120.102539, 0.000000 ], [ 120.014648, -0.483393 ], [ 120.893555, -1.406109 ], [ 121.464844, -0.922812 ], [ 123.310547, -0.615223 ], [ 123.222656, -1.054628 ], [ 122.783203, -0.922812 ], [ 122.387695, -1.493971 ], [ 121.464844, -1.889306 ], [ 122.431641, -3.162456 ], [ 122.255859, -3.513421 ], [ 123.134766, -4.653080 ], [ 123.134766, -5.309766 ], [ 122.607422, -5.615986 ], [ 122.211914, -5.266008 ], [ 122.695312, -4.434044 ], [ 121.728516, -4.828260 ], [ 121.464844, -4.565474 ], [ 121.596680, -4.171115 ], [ 120.893555, -3.601142 ], [ 120.937500, -2.591889 ], [ 120.278320, -2.899153 ], [ 120.410156, -5.484768 ], [ 119.794922, -5.659719 ], [ 119.355469, -5.353521 ], [ 119.619141, -4.434044 ], [ 119.487305, -3.469557 ], [ 119.047852, -3.469557 ], [ 118.740234, -2.767478 ], [ 119.179688, -2.108899 ], [ 119.311523, -1.318243 ], [ 119.750977, 0.000000 ], [ 120.014648, 0.571280 ], [ 120.849609, 1.318243 ], [ 121.640625, 1.054628 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.024414, 1.669686 ] ] ], [ [ [ 117.465820, 3.513421 ], [ 117.290039, 3.250209 ], [ 118.037109, 2.328460 ], [ 117.861328, 1.845384 ], [ 118.959961, 0.922812 ], [ 117.773438, 0.790990 ], [ 117.465820, 0.131836 ], [ 117.465820, 0.000000 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.450040 ], [ 116.499023, -2.460181 ], [ 116.147461, -3.995781 ], [ 115.971680, -3.645000 ], [ 114.829102, -4.083453 ], [ 114.433594, -3.469557 ], [ 113.730469, -3.425692 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.665039, -2.986927 ], [ 111.005859, -3.030812 ], [ 110.214844, -2.899153 ], [ 110.039062, -1.581830 ], [ 109.555664, -1.274309 ], [ 109.072266, -0.439449 ], [ 108.984375, 0.000000 ], [ 108.940430, 0.439449 ], [ 109.028320, 1.362176 ], [ 109.643555, 2.021065 ], [ 109.819336, 1.362176 ], [ 110.478516, 0.790990 ], [ 111.137695, 1.010690 ], [ 111.796875, 0.922812 ], [ 112.368164, 1.450040 ], [ 112.851562, 1.537901 ], [ 113.774414, 1.230374 ], [ 114.609375, 1.450040 ], [ 115.092773, 2.855263 ], [ 115.488281, 3.206333 ], [ 115.620117, 3.513421 ], [ 117.465820, 3.513421 ] ] ], [ [ [ 129.331055, -2.767478 ], [ 130.429688, -3.074695 ], [ 130.825195, -3.820408 ], [ 129.990234, -3.425692 ], [ 129.111328, -3.337954 ], [ 128.583984, -3.425692 ], [ 127.880859, -3.381824 ], [ 128.100586, -2.811371 ], [ 129.331055, -2.767478 ] ] ], [ [ [ 126.958008, -3.118576 ], [ 127.221680, -3.425692 ], [ 126.870117, -3.776559 ], [ 126.166992, -3.601142 ], [ 125.947266, -3.162456 ], [ 126.958008, -3.118576 ] ] ], [ [ [ 127.924805, 2.196727 ], [ 127.968750, 1.669686 ], [ 128.583984, 1.581830 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.395505 ], [ 128.012695, 0.000000 ], [ 127.924805, -0.219726 ], [ 128.364258, -0.747049 ], [ 128.056641, -0.878872 ], [ 127.661133, -0.263671 ], [ 127.617188, 0.000000 ], [ 127.397461, 1.054628 ], [ 127.573242, 1.845384 ], [ 127.924805, 2.196727 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.914062, -8.233237 ], [ 127.309570, -8.363693 ], [ 126.958008, -8.667918 ], [ 125.068359, -9.362353 ], [ 125.068359, -9.058702 ], [ 124.936523, -8.885072 ], [ 125.068359, -8.624472 ], [ 125.903320, -8.407168 ], [ 126.606445, -8.363693 ], [ 126.914062, -8.233237 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.711914, -40.680638 ], [ 145.371094, -40.780541 ], [ 146.337891, -41.112469 ], [ 147.656250, -40.780541 ], [ 148.271484, -40.847060 ], [ 148.359375, -42.032974 ], [ 148.007812, -42.391009 ], [ 147.875977, -43.197167 ], [ 147.524414, -42.908160 ], [ 146.865234, -43.612217 ], [ 146.645508, -43.580391 ], [ 146.030273, -43.548548 ], [ 145.415039, -42.682435 ], [ 145.283203, -42.032974 ], [ 144.711914, -41.145570 ], [ 144.711914, -40.680638 ] ] ], [ [ [ 142.514648, -10.660608 ], [ 142.778320, -11.135287 ], [ 142.866211, -11.781325 ], [ 143.085938, -11.867351 ], [ 143.129883, -12.297068 ], [ 143.481445, -12.811801 ], [ 143.569336, -13.368243 ], [ 143.525391, -13.752725 ], [ 143.920898, -14.519780 ], [ 144.536133, -14.136576 ], [ 144.887695, -14.562318 ], [ 145.371094, -14.944785 ], [ 145.239258, -15.411319 ], [ 145.458984, -16.256867 ], [ 145.634766, -16.762468 ], [ 145.854492, -16.888660 ], [ 146.118164, -17.727759 ], [ 146.030273, -18.271086 ], [ 146.381836, -18.937464 ], [ 147.436523, -19.476950 ], [ 148.842773, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.282227, -21.248422 ], [ 149.677734, -22.309426 ], [ 150.073242, -22.105999 ], [ 150.468750, -22.553147 ], [ 150.688477, -22.390714 ], [ 150.864258, -23.443089 ], [ 152.050781, -24.447150 ], [ 152.841797, -25.244696 ], [ 153.105469, -26.037042 ], [ 153.149414, -26.627818 ], [ 153.061523, -27.254630 ], [ 153.544922, -28.071980 ], [ 153.500977, -28.960089 ], [ 153.061523, -30.334954 ], [ 153.061523, -30.902225 ], [ 152.885742, -31.615966 ], [ 152.446289, -32.546813 ], [ 151.699219, -33.027088 ], [ 151.303711, -33.797409 ], [ 150.996094, -34.307144 ], [ 150.688477, -35.137879 ], [ 150.292969, -35.639441 ], [ 150.073242, -36.385913 ], [ 149.941406, -37.090240 ], [ 149.985352, -37.405074 ], [ 149.414062, -37.753344 ], [ 148.271484, -37.788081 ], [ 147.348633, -38.203655 ], [ 146.293945, -39.027719 ], [ 145.458984, -38.582526 ], [ 144.843750, -38.410558 ], [ 145.019531, -37.892196 ], [ 144.448242, -38.065392 ], [ 143.569336, -38.788345 ], [ 142.163086, -38.376115 ], [ 141.591797, -38.307181 ], [ 140.625000, -37.996163 ], [ 139.965820, -37.370157 ], [ 139.790039, -36.633162 ], [ 139.570312, -36.137875 ], [ 139.042969, -35.710838 ], [ 138.120117, -35.603719 ], [ 138.427734, -35.101934 ], [ 138.164062, -34.379713 ], [ 137.680664, -35.065973 ], [ 136.801758, -35.245619 ], [ 137.329102, -34.705493 ], [ 137.460938, -34.125448 ], [ 137.856445, -33.614619 ], [ 137.768555, -32.879587 ], [ 136.977539, -33.724340 ], [ 136.362305, -34.089061 ], [ 135.966797, -34.885931 ], [ 135.175781, -34.452218 ], [ 135.219727, -33.943360 ], [ 134.604492, -33.211116 ], [ 134.077148, -32.842674 ], [ 134.252930, -32.583849 ], [ 132.978516, -31.989442 ], [ 132.275391, -31.952162 ], [ 131.308594, -31.466154 ], [ 129.506836, -31.578535 ], [ 127.089844, -32.249974 ], [ 126.123047, -32.212801 ], [ 125.068359, -32.694866 ], [ 124.189453, -32.953368 ], [ 124.013672, -33.468108 ], [ 123.618164, -33.870416 ], [ 122.783203, -33.906896 ], [ 122.167969, -33.979809 ], [ 121.289062, -33.797409 ], [ 119.882812, -33.943360 ], [ 119.267578, -34.488448 ], [ 119.003906, -34.452218 ], [ 117.993164, -35.029996 ], [ 116.586914, -34.994004 ], [ 115.532227, -34.379713 ], [ 115.004883, -34.161818 ], [ 115.004883, -33.614619 ], [ 115.532227, -33.468108 ], [ 115.708008, -33.247876 ], [ 115.664062, -32.879587 ], [ 115.795898, -32.175612 ], [ 115.664062, -31.578535 ], [ 115.136719, -30.600094 ], [ 114.960938, -29.993002 ], [ 115.004883, -29.458731 ], [ 114.609375, -28.806174 ], [ 114.609375, -28.497661 ], [ 114.169922, -28.110749 ], [ 114.038086, -27.332735 ], [ 113.466797, -26.509905 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.509905 ], [ 113.422852, -25.601902 ], [ 113.906250, -25.878994 ], [ 114.213867, -26.273714 ], [ 114.213867, -25.760320 ], [ 113.686523, -24.966140 ], [ 113.598633, -24.647017 ], [ 113.378906, -24.367114 ], [ 113.466797, -23.805450 ], [ 113.686523, -23.523700 ], [ 113.818359, -23.039298 ], [ 113.730469, -22.471955 ], [ 114.125977, -21.739091 ], [ 114.213867, -22.512557 ], [ 114.609375, -21.820708 ], [ 115.444336, -21.493964 ], [ 115.927734, -21.043491 ], [ 116.674805, -20.673905 ], [ 117.158203, -20.591652 ], [ 117.421875, -20.715015 ], [ 118.212891, -20.344627 ], [ 118.828125, -20.262197 ], [ 118.959961, -20.014645 ], [ 119.223633, -19.932041 ], [ 119.794922, -19.973349 ], [ 120.849609, -19.642588 ], [ 121.376953, -19.228177 ], [ 121.640625, -18.687879 ], [ 122.211914, -18.187607 ], [ 122.299805, -17.224758 ], [ 123.002930, -16.383391 ], [ 123.398438, -17.266728 ], [ 123.837891, -17.056785 ], [ 123.486328, -16.594081 ], [ 123.793945, -16.088042 ], [ 124.233398, -16.299051 ], [ 124.365234, -15.538376 ], [ 124.892578, -15.072124 ], [ 125.156250, -14.647368 ], [ 125.639648, -14.477234 ], [ 125.683594, -14.221789 ], [ 126.123047, -14.306969 ], [ 126.123047, -14.093957 ], [ 127.045898, -13.795406 ], [ 127.792969, -14.264383 ], [ 128.320312, -14.859850 ], [ 128.979492, -14.859850 ], [ 129.594727, -14.944785 ], [ 129.375000, -14.392118 ], [ 129.858398, -13.581921 ], [ 130.297852, -13.325485 ], [ 130.166016, -13.068777 ], [ 130.605469, -12.511665 ], [ 131.220703, -12.168226 ], [ 131.704102, -12.297068 ], [ 132.539062, -12.082296 ], [ 132.539062, -11.566144 ], [ 131.791992, -11.264612 ], [ 132.319336, -11.092166 ], [ 132.978516, -11.350797 ], [ 133.549805, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.648438, -11.910354 ], [ 135.263672, -12.211180 ], [ 135.878906, -11.953349 ], [ 136.230469, -12.039321 ], [ 136.450195, -11.824341 ], [ 136.933594, -12.340002 ], [ 136.669922, -12.854649 ], [ 136.274414, -13.282719 ], [ 135.922852, -13.282719 ], [ 136.054688, -13.710035 ], [ 135.395508, -14.689881 ], [ 135.483398, -14.987240 ], [ 136.274414, -15.538376 ], [ 137.021484, -15.834536 ], [ 138.295898, -16.804541 ], [ 138.559570, -16.804541 ], [ 139.086914, -17.056785 ], [ 139.218750, -17.350638 ], [ 140.185547, -17.685895 ], [ 140.844727, -17.350638 ], [ 141.240234, -16.383391 ], [ 141.372070, -15.834536 ], [ 141.679688, -15.029686 ], [ 141.547852, -14.519780 ], [ 141.591797, -14.264383 ], [ 141.503906, -13.667338 ], [ 141.635742, -12.940322 ], [ 141.811523, -12.726084 ], [ 141.679688, -12.382928 ], [ 142.075195, -11.307708 ], [ 142.119141, -11.005904 ], [ 142.514648, -10.660608 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.976562, -2.591889 ], [ 142.734375, -3.250209 ], [ 144.580078, -3.820408 ], [ 145.810547, -4.872048 ], [ 145.942383, -5.441022 ], [ 147.612305, -6.053161 ], [ 147.875977, -6.577303 ], [ 146.953125, -6.708254 ], [ 147.172852, -7.362467 ], [ 148.051758, -8.015716 ], [ 148.710938, -9.102097 ], [ 149.282227, -9.058702 ], [ 149.238281, -9.492408 ], [ 150.029297, -9.665738 ], [ 149.721680, -9.838979 ], [ 150.776367, -10.271681 ], [ 150.688477, -10.574222 ], [ 149.985352, -10.617418 ], [ 149.765625, -10.358151 ], [ 147.875977, -10.098670 ], [ 146.557617, -8.928487 ], [ 146.030273, -8.059230 ], [ 144.711914, -7.623887 ], [ 143.876953, -7.885147 ], [ 143.261719, -8.233237 ], [ 143.393555, -8.971897 ], [ 142.602539, -9.318990 ], [ 142.031250, -9.145486 ], [ 141.020508, -9.102097 ], [ 140.976562, -2.591889 ] ] ], [ [ [ 154.643555, -5.003394 ], [ 154.731445, -5.309766 ], [ 155.039062, -5.528511 ], [ 155.522461, -6.184246 ], [ 156.005859, -6.533645 ], [ 155.874023, -6.795535 ], [ 155.566406, -6.882800 ], [ 155.126953, -6.533645 ], [ 154.687500, -5.878332 ], [ 154.511719, -5.134715 ], [ 154.643555, -5.003394 ] ] ], [ [ [ 152.094727, -4.127285 ], [ 152.314453, -4.302591 ], [ 152.314453, -4.828260 ], [ 151.962891, -5.441022 ], [ 151.435547, -5.528511 ], [ 151.259766, -5.834616 ], [ 150.205078, -6.315299 ], [ 149.677734, -6.315299 ], [ 148.315430, -5.703448 ], [ 148.359375, -5.397273 ], [ 149.282227, -5.572250 ], [ 149.809570, -5.484768 ], [ 149.985352, -5.003394 ], [ 150.117188, -4.959615 ], [ 150.205078, -5.528511 ], [ 150.776367, -5.441022 ], [ 151.083984, -5.090944 ], [ 151.611328, -4.740675 ], [ 151.523438, -4.127285 ], [ 152.094727, -4.127285 ] ] ], [ [ [ 150.908203, -2.460181 ], [ 152.226562, -3.206333 ], [ 153.017578, -3.951941 ], [ 153.105469, -4.477856 ], [ 152.797852, -4.740675 ], [ 152.622070, -4.171115 ], [ 152.402344, -3.776559 ], [ 151.347656, -3.030812 ], [ 150.644531, -2.723583 ], [ 150.908203, -2.460181 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.279297, -10.185187 ], [ 161.894531, -10.444598 ], [ 162.114258, -10.444598 ], [ 162.377930, -10.790141 ], [ 161.674805, -10.790141 ], [ 161.279297, -10.185187 ] ] ], [ [ [ 159.697266, -9.232249 ], [ 160.356445, -9.362353 ], [ 160.664062, -9.579084 ], [ 160.839844, -9.838979 ], [ 160.444336, -9.882275 ], [ 159.829102, -9.752370 ], [ 159.609375, -9.622414 ], [ 159.697266, -9.232249 ] ] ], [ [ [ 160.883789, -8.276727 ], [ 161.279297, -9.102097 ], [ 161.674805, -9.579084 ], [ 161.499023, -9.752370 ], [ 160.751953, -8.885072 ], [ 160.576172, -8.276727 ], [ 160.883789, -8.276727 ] ] ], [ [ [ 158.334961, -7.318882 ], [ 158.818359, -7.536764 ], [ 159.609375, -8.015716 ], [ 159.873047, -8.320212 ], [ 159.916992, -8.537565 ], [ 159.125977, -8.102739 ], [ 158.203125, -7.406048 ], [ 158.334961, -7.318882 ] ] ], [ [ [ 156.533203, -6.577303 ], [ 157.104492, -7.013668 ], [ 157.500000, -7.318882 ], [ 157.324219, -7.362467 ], [ 156.884766, -7.144499 ], [ 156.489258, -6.751896 ], [ 156.533203, -6.577303 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.211914, -15.876809 ], [ 167.827148, -16.425548 ], [ 167.475586, -16.594081 ], [ 167.167969, -16.130262 ], [ 167.211914, -15.876809 ] ] ], [ [ [ 166.596680, -14.604847 ], [ 167.080078, -14.902322 ], [ 167.255859, -15.707663 ], [ 166.992188, -15.580711 ], [ 166.772461, -15.665354 ], [ 166.640625, -15.368950 ], [ 166.596680, -14.604847 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.443359, -20.097206 ], [ 165.014648, -20.427013 ], [ 165.761719, -21.043491 ], [ 167.080078, -22.146708 ], [ 166.728516, -22.390714 ], [ 165.454102, -21.657428 ], [ 164.794922, -21.125498 ], [ 164.135742, -20.427013 ], [ 164.003906, -20.097206 ], [ 164.443359, -20.097206 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.792969, -40.480381 ], [ 173.012695, -40.913513 ], [ 173.232422, -41.310824 ], [ 173.935547, -40.913513 ], [ 174.243164, -41.343825 ], [ 174.243164, -41.738528 ], [ 173.188477, -42.940339 ], [ 172.705078, -43.357138 ], [ 173.056641, -43.834527 ], [ 172.265625, -43.834527 ], [ 171.430664, -44.213710 ], [ 171.166992, -44.871443 ], [ 170.595703, -45.890008 ], [ 169.321289, -46.619261 ], [ 168.398438, -46.619261 ], [ 167.739258, -46.286224 ], [ 166.640625, -46.195042 ], [ 166.508789, -45.828799 ], [ 167.036133, -45.089036 ], [ 168.266602, -44.119142 ], [ 168.925781, -43.929550 ], [ 170.507812, -43.004647 ], [ 171.123047, -42.488302 ], [ 171.562500, -41.738528 ], [ 171.914062, -41.508577 ], [ 172.089844, -40.946714 ], [ 172.792969, -40.480381 ] ] ], [ [ [ 172.968750, -34.415973 ], [ 173.540039, -34.994004 ], [ 174.287109, -35.245619 ], [ 174.594727, -36.137875 ], [ 175.297852, -37.195331 ], [ 175.341797, -36.491973 ], [ 175.781250, -36.774092 ], [ 175.957031, -37.544577 ], [ 176.748047, -37.857507 ], [ 177.407227, -37.926868 ], [ 177.978516, -37.579413 ], [ 178.505859, -37.683820 ], [ 178.242188, -38.582526 ], [ 177.934570, -39.164141 ], [ 177.187500, -39.130060 ], [ 176.923828, -39.436193 ], [ 177.011719, -39.876019 ], [ 176.000977, -41.277806 ], [ 175.209961, -41.672912 ], [ 175.034180, -41.409776 ], [ 174.638672, -41.277806 ], [ 175.209961, -40.446947 ], [ 174.858398, -39.876019 ], [ 173.803711, -39.504041 ], [ 173.847656, -39.130060 ], [ 174.550781, -38.788345 ], [ 174.726562, -37.996163 ], [ 174.682617, -37.370157 ], [ 174.287109, -36.703660 ], [ 174.287109, -36.527295 ], [ 173.803711, -36.102376 ], [ 173.012695, -35.209722 ], [ 172.617188, -34.524661 ], [ 172.968750, -34.415973 ] ] ] ] } } -] } -] } -, -{ "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.515625, 57.633640 ], [ -3.076172, 57.704147 ], [ -1.977539, 57.704147 ], [ -2.241211, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.109375, 55.924586 ], [ -1.142578, 54.648413 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.696706 ], [ 0.439453, 52.935397 ], [ 1.669922, 52.749594 ], [ 1.538086, 52.106505 ], [ 1.010742, 51.808615 ], [ 1.406250, 51.316881 ], [ 0.527344, 50.792047 ], [ -0.791016, 50.792047 ], [ -2.504883, 50.513427 ], [ -2.988281, 50.708634 ], [ -3.515625, 50.317408 ], [ -3.515625, 51.426614 ], [ -3.427734, 51.426614 ], [ -3.515625, 51.454007 ], [ -3.515625, 53.435719 ], [ -3.120117, 53.409532 ], [ -2.988281, 54.007769 ], [ -3.515625, 54.521081 ], [ -3.515625, 57.633640 ] ] ], [ [ [ -3.515625, 58.124320 ], [ -3.515625, 58.608334 ], [ -3.032227, 58.654085 ], [ -3.515625, 58.124320 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.360352, 43.036776 ], [ 9.536133, 42.163403 ], [ 9.228516, 41.409776 ], [ 8.745117, 41.607228 ], [ 8.525391, 42.261049 ], [ 8.745117, 42.650122 ], [ 9.360352, 43.036776 ] ] ], [ [ [ 2.504883, 51.151786 ], [ 2.636719, 50.819818 ], [ 3.120117, 50.792047 ], [ 3.559570, 50.401515 ], [ 4.262695, 49.922935 ], [ 4.790039, 50.007739 ], [ 5.668945, 49.553726 ], [ 5.888672, 49.468124 ], [ 6.152344, 49.468124 ], [ 6.635742, 49.210420 ], [ 8.085938, 49.037868 ], [ 7.558594, 48.341646 ], [ 7.426758, 47.635784 ], [ 7.163086, 47.457809 ], [ 6.723633, 47.546872 ], [ 6.767578, 47.309034 ], [ 6.020508, 46.739861 ], [ 6.020508, 46.286224 ], [ 6.459961, 46.437857 ], [ 6.811523, 46.012224 ], [ 6.767578, 45.736860 ], [ 7.075195, 45.336702 ], [ 6.723633, 45.058001 ], [ 6.987305, 44.276671 ], [ 7.514648, 44.150681 ], [ 7.426758, 43.707594 ], [ 6.503906, 43.133061 ], [ 4.526367, 43.421009 ], [ 3.076172, 43.100983 ], [ 2.944336, 42.488302 ], [ 1.801758, 42.358544 ], [ 0.659180, 42.811522 ], [ 0.307617, 42.585444 ], [ 0.000000, 42.682435 ], [ -1.538086, 43.036776 ], [ -1.933594, 43.452919 ], [ -1.406250, 44.024422 ], [ -1.230469, 46.042736 ], [ -2.241211, 47.070122 ], [ -2.988281, 47.576526 ], [ -3.515625, 47.724545 ], [ -3.515625, 48.893615 ], [ -3.295898, 48.922499 ], [ -1.625977, 48.661943 ], [ -1.933594, 49.781264 ], [ -1.010742, 49.353756 ], [ 0.000000, 49.696062 ], [ 1.318359, 50.148746 ], [ 1.625977, 50.958427 ], [ 2.504883, 51.151786 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.515625, 43.484812 ], [ -1.933594, 43.452919 ], [ -1.538086, 43.036776 ], [ 0.000000, 42.682435 ], [ 0.307617, 42.585444 ], [ 0.659180, 42.811522 ], [ 1.801758, 42.358544 ], [ 2.944336, 42.488302 ], [ 3.032227, 41.902277 ], [ 2.065430, 41.244772 ], [ 0.791016, 41.046217 ], [ 0.703125, 40.680638 ], [ 0.087891, 40.145289 ], [ 0.000000, 39.909736 ], [ -0.307617, 39.334297 ], [ 0.000000, 38.925229 ], [ 0.087891, 38.754083 ], [ -0.483398, 38.307181 ], [ -0.703125, 37.649034 ], [ -1.450195, 37.474858 ], [ -2.153320, 36.703660 ], [ -3.515625, 36.668419 ], [ -3.515625, 43.484812 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.515625, 35.389050 ], [ -2.636719, 35.209722 ], [ -2.197266, 35.173808 ], [ -1.801758, 34.560859 ], [ -1.757812, 33.943360 ], [ -1.406250, 32.879587 ], [ -1.142578, 32.657876 ], [ -1.318359, 32.287133 ], [ -2.636719, 32.101190 ], [ -3.076172, 31.728167 ], [ -3.515625, 31.690782 ], [ -3.515625, 35.389050 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.515625, 24.086589 ], [ 0.000000, 21.820708 ], [ 1.801758, 20.632784 ], [ 2.021484, 20.179724 ], [ 3.120117, 19.725342 ], [ 3.120117, 19.062118 ], [ 4.262695, 19.186678 ], [ 4.262695, 16.888660 ], [ 3.691406, 16.214675 ], [ 3.603516, 15.580711 ], [ 2.724609, 15.411319 ], [ 1.362305, 15.326572 ], [ 1.010742, 14.987240 ], [ 0.000000, 14.944785 ], [ -0.307617, 14.944785 ], [ -0.527344, 15.156974 ], [ -1.098633, 14.987240 ], [ -2.021484, 14.562318 ], [ -2.197266, 14.264383 ], [ -2.988281, 13.838080 ], [ -3.120117, 13.581921 ], [ -3.515625, 13.368243 ], [ -3.515625, 24.086589 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.527344, 15.156974 ], [ -0.307617, 14.944785 ], [ 0.351562, 14.944785 ], [ 0.263672, 14.477234 ], [ 0.395508, 14.008696 ], [ 0.966797, 13.368243 ], [ 1.010742, 12.854649 ], [ 2.153320, 12.640338 ], [ 2.153320, 11.953349 ], [ 1.933594, 11.652236 ], [ 1.406250, 11.566144 ], [ 1.230469, 11.135287 ], [ 0.878906, 11.005904 ], [ 0.000000, 11.049038 ], [ -0.439453, 11.135287 ], [ -0.791016, 10.962764 ], [ -1.230469, 11.049038 ], [ -2.944336, 10.962764 ], [ -2.988281, 10.401378 ], [ -2.856445, 9.665738 ], [ -3.515625, 9.925566 ], [ -3.515625, 13.368243 ], [ -3.120117, 13.581921 ], [ -2.988281, 13.838080 ], [ -2.197266, 14.264383 ], [ -2.021484, 14.562318 ], [ -1.098633, 14.987240 ], [ -0.527344, 15.156974 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.515625, 9.925566 ], [ -2.856445, 9.665738 ], [ -2.592773, 8.233237 ], [ -2.988281, 7.406048 ], [ -3.251953, 6.271618 ], [ -2.812500, 5.397273 ], [ -2.856445, 5.003394 ], [ -3.515625, 5.047171 ], [ -3.515625, 9.925566 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.135287 ], [ 0.000000, 11.049038 ], [ 0.000000, 10.919618 ], [ -0.087891, 10.746969 ], [ 0.000000, 10.660608 ], [ 0.351562, 10.228437 ], [ 0.351562, 9.492408 ], [ 0.439453, 8.711359 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.449624 ], [ 0.527344, 6.926427 ], [ 0.834961, 6.315299 ], [ 1.054688, 5.965754 ], [ 0.000000, 5.572250 ], [ -0.527344, 5.353521 ], [ -1.098633, 5.003394 ], [ -1.977539, 4.740675 ], [ -2.856445, 5.003394 ], [ -2.812500, 5.397273 ], [ -3.251953, 6.271618 ], [ -2.988281, 7.406048 ], [ -2.592773, 8.233237 ], [ -2.988281, 10.401378 ], [ -2.944336, 10.962764 ], [ -1.230469, 11.049038 ], [ -0.791016, 10.962764 ], [ -0.439453, 11.135287 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.326172, 77.702234 ], [ 106.040039, 77.379906 ], [ 104.677734, 77.127825 ], [ 106.962891, 76.980149 ], [ 107.226562, 76.486046 ], [ 108.149414, 76.730314 ], [ 111.049805, 76.710125 ], [ 113.291016, 76.226907 ], [ 114.125977, 75.855911 ], [ 113.862305, 75.331158 ], [ 112.763672, 75.039013 ], [ 110.126953, 74.484662 ], [ 109.379883, 74.188052 ], [ 110.610352, 74.043723 ], [ 112.104492, 73.788054 ], [ 112.983398, 73.983207 ], [ 113.510742, 73.340461 ], [ 113.950195, 73.602996 ], [ 115.532227, 73.763497 ], [ 118.740234, 73.590586 ], [ 119.003906, 73.124945 ], [ 123.178711, 72.984054 ], [ 123.222656, 73.738905 ], [ 125.375977, 73.565739 ], [ 126.958008, 73.565739 ], [ 128.583984, 73.048236 ], [ 129.023438, 72.408992 ], [ 128.452148, 71.992578 ], [ 129.682617, 71.201920 ], [ 131.264648, 70.801366 ], [ 132.231445, 71.842539 ], [ 133.857422, 71.399165 ], [ 135.527344, 71.663663 ], [ 137.460938, 71.357067 ], [ 138.208008, 71.635993 ], [ 139.833984, 71.497037 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.854981 ], [ 149.458008, 72.208678 ], [ 150.336914, 71.608283 ], [ 152.929688, 70.844673 ], [ 156.972656, 71.045529 ], [ 158.994141, 70.873491 ], [ 159.829102, 70.466207 ], [ 159.697266, 69.733334 ], [ 160.927734, 69.442128 ], [ 162.246094, 69.657086 ], [ 164.047852, 69.672358 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.595890 ], [ 169.541016, 68.704486 ], [ 170.815430, 69.021414 ], [ 169.980469, 69.657086 ], [ 170.419922, 70.110485 ], [ 173.627930, 69.824471 ], [ 175.693359, 69.885010 ], [ 178.593750, 69.411242 ], [ 180.000000, 68.974164 ], [ 180.000000, 64.997939 ], [ 178.681641, 64.548440 ], [ 177.407227, 64.623877 ], [ 178.286133, 64.091408 ], [ 178.901367, 63.253412 ], [ 179.340820, 62.995158 ], [ 179.472656, 62.573106 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.532594 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.669024 ], [ 172.133789, 60.951777 ], [ 170.683594, 60.348696 ], [ 170.288086, 59.888937 ], [ 168.881836, 60.586967 ], [ 166.289062, 59.800634 ], [ 165.805664, 60.174306 ], [ 164.838867, 59.734253 ], [ 163.520508, 59.888937 ], [ 163.212891, 59.220934 ], [ 161.982422, 58.263287 ], [ 162.026367, 57.844751 ], [ 163.168945, 57.633640 ], [ 163.037109, 56.170023 ], [ 162.114258, 56.145550 ], [ 161.674805, 55.304138 ], [ 162.114258, 54.876607 ], [ 160.356445, 54.367759 ], [ 160.004883, 53.225768 ], [ 158.510742, 52.961875 ], [ 158.203125, 51.944265 ], [ 156.752930, 51.013755 ], [ 156.401367, 51.727028 ], [ 155.961914, 53.173119 ], [ 155.390625, 55.404070 ], [ 155.874023, 56.776808 ], [ 156.752930, 57.373938 ], [ 156.796875, 57.844751 ], [ 158.334961, 58.077876 ], [ 160.136719, 59.333189 ], [ 161.850586, 60.348696 ], [ 163.652344, 61.143235 ], [ 164.443359, 62.552857 ], [ 163.256836, 62.471724 ], [ 162.641602, 61.648162 ], [ 160.092773, 60.565379 ], [ 159.301758, 61.793900 ], [ 156.708984, 61.438767 ], [ 154.204102, 59.778522 ], [ 155.039062, 59.153403 ], [ 152.797852, 58.904646 ], [ 151.259766, 58.790978 ], [ 151.303711, 59.512029 ], [ 149.765625, 59.667741 ], [ 148.535156, 59.175928 ], [ 145.458984, 59.355596 ], [ 142.163086, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.087891, 54.749991 ], [ 136.669922, 54.622978 ], [ 137.153320, 53.981935 ], [ 138.164062, 53.774689 ], [ 138.779297, 54.265224 ], [ 139.877930, 54.213861 ], [ 141.328125, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.581055, 51.261915 ], [ 140.493164, 50.064192 ], [ 140.053711, 48.458352 ], [ 138.515625, 47.010226 ], [ 138.208008, 46.316584 ], [ 134.868164, 43.421009 ], [ 133.505859, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.293200 ], [ 130.913086, 42.553080 ], [ 130.737305, 42.228517 ], [ 130.605469, 42.423457 ], [ 130.605469, 42.908160 ], [ 131.132812, 42.940339 ], [ 131.264648, 44.119142 ], [ 131.000977, 44.995883 ], [ 131.879883, 45.336702 ], [ 133.066406, 45.151053 ], [ 133.769531, 46.134170 ], [ 134.077148, 47.219568 ], [ 134.472656, 47.606163 ], [ 135.000000, 48.487486 ], [ 133.330078, 48.195387 ], [ 132.495117, 47.813155 ], [ 130.957031, 47.813155 ], [ 130.561523, 48.748945 ], [ 129.375000, 49.468124 ], [ 127.617188, 49.781264 ], [ 127.265625, 50.764259 ], [ 126.914062, 51.371780 ], [ 126.562500, 51.808615 ], [ 125.903320, 52.802761 ], [ 125.024414, 53.173119 ], [ 123.530273, 53.461890 ], [ 122.211914, 53.435719 ], [ 120.981445, 53.252069 ], [ 120.146484, 52.776186 ], [ 120.717773, 52.536273 ], [ 120.717773, 51.971346 ], [ 120.146484, 51.645294 ], [ 119.267578, 50.597186 ], [ 119.267578, 50.148746 ], [ 117.861328, 49.525208 ], [ 116.674805, 49.894634 ], [ 115.444336, 49.809632 ], [ 114.960938, 50.148746 ], [ 114.345703, 50.261254 ], [ 112.895508, 49.553726 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.152970 ], [ 109.379883, 49.296472 ], [ 108.457031, 49.296472 ], [ 107.841797, 49.809632 ], [ 106.875000, 50.289339 ], [ 105.864258, 50.429518 ], [ 104.589844, 50.289339 ], [ 103.666992, 50.092393 ], [ 102.216797, 50.513427 ], [ 102.041016, 51.261915 ], [ 100.854492, 51.536086 ], [ 99.975586, 51.645294 ], [ 98.833008, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.217773, 50.429518 ], [ 97.250977, 49.752880 ], [ 95.800781, 49.979488 ], [ 94.790039, 50.035974 ], [ 94.130859, 50.485474 ], [ 93.076172, 50.513427 ], [ 92.197266, 50.819818 ], [ 90.703125, 50.345460 ], [ 88.769531, 49.496675 ], [ 87.319336, 49.239121 ], [ 86.791992, 49.837982 ], [ 85.517578, 49.696062 ], [ 85.078125, 50.120578 ], [ 84.375000, 50.317408 ], [ 83.891602, 50.903033 ], [ 83.364258, 51.096623 ], [ 81.914062, 50.819818 ], [ 80.551758, 51.399206 ], [ 80.024414, 50.875311 ], [ 77.783203, 53.409532 ], [ 76.508789, 54.188155 ], [ 76.860352, 54.495568 ], [ 74.355469, 53.566414 ], [ 73.388672, 53.514185 ], [ 73.476562, 54.059388 ], [ 72.202148, 54.393352 ], [ 71.147461, 54.136696 ], [ 70.839844, 55.178868 ], [ 69.038086, 55.404070 ], [ 68.159180, 54.977614 ], [ 65.654297, 54.622978 ], [ 65.170898, 54.367759 ], [ 61.435547, 54.007769 ], [ 60.952148, 53.670680 ], [ 61.699219, 52.988337 ], [ 60.732422, 52.722986 ], [ 60.908203, 52.456009 ], [ 59.941406, 51.971346 ], [ 61.567383, 51.289406 ], [ 61.303711, 50.819818 ], [ 59.897461, 50.847573 ], [ 59.633789, 50.569283 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.069017 ], [ 55.678711, 50.625073 ], [ 52.294922, 51.727028 ], [ 50.756836, 51.699800 ], [ 48.691406, 50.625073 ], [ 48.559570, 49.894634 ], [ 47.548828, 50.457504 ], [ 46.713867, 49.382373 ], [ 47.021484, 49.152970 ], [ 46.450195, 48.400032 ], [ 47.285156, 47.724545 ], [ 48.032227, 47.754098 ], [ 48.691406, 47.100045 ], [ 48.559570, 46.589069 ], [ 49.086914, 46.407564 ], [ 48.603516, 45.828799 ], [ 47.636719, 45.644768 ], [ 46.669922, 44.621754 ], [ 47.548828, 43.675818 ], [ 47.460938, 43.004647 ], [ 48.559570, 41.836828 ], [ 47.944336, 41.409776 ], [ 47.812500, 41.178654 ], [ 47.373047, 41.244772 ], [ 46.669922, 41.836828 ], [ 46.362305, 41.869561 ], [ 45.747070, 42.098222 ], [ 45.439453, 42.520700 ], [ 44.516602, 42.714732 ], [ 43.901367, 42.585444 ], [ 43.725586, 42.747012 ], [ 42.363281, 43.229195 ], [ 40.913086, 43.389082 ], [ 40.034180, 43.580391 ], [ 39.946289, 43.452919 ], [ 38.671875, 44.308127 ], [ 37.529297, 44.684277 ], [ 36.650391, 45.274886 ], [ 37.397461, 45.429299 ], [ 38.232422, 46.255847 ], [ 37.661133, 46.649436 ], [ 39.111328, 47.070122 ], [ 39.111328, 47.279229 ], [ 38.188477, 47.129951 ], [ 38.232422, 47.546872 ], [ 38.759766, 47.842658 ], [ 39.726562, 47.901614 ], [ 39.858398, 48.253941 ], [ 39.638672, 48.806863 ], [ 40.078125, 49.325122 ], [ 40.034180, 49.610710 ], [ 38.583984, 49.951220 ], [ 37.968750, 49.922935 ], [ 37.353516, 50.401515 ], [ 36.606445, 50.233152 ], [ 35.332031, 50.597186 ], [ 35.375977, 50.792047 ], [ 34.980469, 51.234407 ], [ 34.189453, 51.261915 ], [ 34.101562, 51.590723 ], [ 34.365234, 51.781436 ], [ 33.750000, 52.348763 ], [ 32.695312, 52.241256 ], [ 32.387695, 52.295042 ], [ 32.124023, 52.079506 ], [ 31.772461, 52.106505 ], [ 31.508789, 52.749594 ], [ 31.289062, 53.094024 ], [ 31.464844, 53.173119 ], [ 32.299805, 53.146770 ], [ 32.651367, 53.357109 ], [ 32.387695, 53.618579 ], [ 31.728516, 53.800651 ], [ 31.772461, 53.981935 ], [ 31.376953, 54.162434 ], [ 30.717773, 54.826008 ], [ 30.937500, 55.103516 ], [ 30.849609, 55.553495 ], [ 29.882812, 55.801281 ], [ 29.355469, 55.677584 ], [ 29.223633, 55.924586 ], [ 28.168945, 56.170023 ], [ 27.817383, 56.776808 ], [ 27.729492, 57.255281 ], [ 27.246094, 57.492214 ], [ 27.685547, 57.797944 ], [ 27.377930, 58.745407 ], [ 28.125000, 59.310768 ], [ 27.949219, 59.489726 ], [ 29.091797, 60.042904 ], [ 28.037109, 60.522158 ], [ 31.113281, 62.369996 ], [ 31.508789, 62.875188 ], [ 30.014648, 63.568120 ], [ 30.410156, 64.206377 ], [ 29.531250, 64.960766 ], [ 30.190430, 65.820782 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.709445 ], [ 28.432617, 68.366801 ], [ 28.564453, 69.068563 ], [ 29.399414, 69.162558 ], [ 31.069336, 69.565226 ], [ 32.124023, 69.915214 ], [ 33.750000, 69.302794 ], [ 36.474609, 69.068563 ], [ 40.253906, 67.941650 ], [ 41.044922, 67.458082 ], [ 41.088867, 66.791909 ], [ 39.990234, 66.266856 ], [ 38.364258, 66.000150 ], [ 33.881836, 66.774586 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.910623 ], [ 34.936523, 64.415921 ], [ 36.210938, 64.110602 ], [ 37.001953, 63.860036 ], [ 37.133789, 64.339908 ], [ 36.518555, 64.774125 ], [ 37.133789, 65.146115 ], [ 39.550781, 64.529548 ], [ 40.429688, 64.774125 ], [ 39.726562, 65.512963 ], [ 42.055664, 66.478208 ], [ 42.978516, 66.425537 ], [ 43.945312, 66.071546 ], [ 44.516602, 66.757250 ], [ 43.681641, 67.356785 ], [ 44.165039, 67.958148 ], [ 43.417969, 68.576441 ], [ 46.230469, 68.253111 ], [ 46.801758, 67.692771 ], [ 45.527344, 67.575717 ], [ 45.527344, 67.016009 ], [ 46.318359, 66.670387 ], [ 47.856445, 66.895596 ], [ 48.120117, 67.525373 ], [ 50.185547, 68.007571 ], [ 53.701172, 68.863517 ], [ 54.448242, 68.815927 ], [ 53.481445, 68.204212 ], [ 54.711914, 68.106102 ], [ 55.415039, 68.447662 ], [ 57.304688, 68.479926 ], [ 58.798828, 68.895187 ], [ 59.941406, 68.285651 ], [ 61.040039, 68.942607 ], [ 60.029297, 69.534518 ], [ 60.512695, 69.854762 ], [ 63.500977, 69.549877 ], [ 64.863281, 69.240579 ], [ 68.510742, 68.106102 ], [ 69.169922, 68.624544 ], [ 68.159180, 69.146920 ], [ 68.115234, 69.364831 ], [ 66.928711, 69.457554 ], [ 67.236328, 69.930300 ], [ 66.708984, 70.714471 ], [ 66.665039, 71.031249 ], [ 68.510742, 71.938158 ], [ 69.169922, 72.854981 ], [ 69.916992, 73.048236 ], [ 72.553711, 72.777081 ], [ 72.773438, 72.222101 ], [ 71.806641, 71.413177 ], [ 72.465820, 71.102543 ], [ 72.773438, 70.392606 ], [ 72.553711, 69.021414 ], [ 73.652344, 68.415352 ], [ 73.212891, 67.742759 ], [ 71.279297, 66.337505 ], [ 72.421875, 66.178266 ], [ 72.817383, 66.548263 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.289015 ], [ 75.014648, 67.776025 ], [ 74.443359, 68.334376 ], [ 74.926758, 68.989925 ], [ 73.828125, 69.084257 ], [ 73.564453, 69.641804 ], [ 74.399414, 70.641769 ], [ 73.081055, 71.455153 ], [ 74.882812, 72.127936 ], [ 74.619141, 72.842021 ], [ 75.146484, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.343013 ], [ 76.333008, 71.159391 ], [ 75.893555, 71.883578 ], [ 77.563477, 72.275693 ], [ 79.628906, 72.329130 ], [ 81.474609, 71.760191 ], [ 80.595703, 72.593979 ], [ 80.507812, 73.652545 ], [ 82.221680, 73.861506 ], [ 84.638672, 73.812574 ], [ 86.791992, 73.946791 ], [ 86.000977, 74.461134 ], [ 87.143555, 75.118222 ], [ 88.286133, 75.152043 ], [ 90.219727, 75.650431 ], [ 92.900391, 75.780545 ], [ 93.208008, 76.047916 ], [ 95.844727, 76.142958 ], [ 96.635742, 75.920199 ], [ 98.920898, 76.455203 ], [ 100.722656, 76.434604 ], [ 101.030273, 76.870796 ], [ 101.953125, 77.293202 ], [ 104.326172, 77.702234 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.217773, 52.749594 ], [ 143.217773, 51.781436 ], [ 143.613281, 50.764259 ], [ 144.624023, 48.980217 ], [ 143.173828, 49.325122 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.860191 ], [ 143.481445, 46.164614 ], [ 142.734375, 46.769968 ], [ 142.075195, 45.981695 ], [ 141.899414, 46.830134 ], [ 141.987305, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.119141, 49.639177 ], [ 142.163086, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.774689 ], [ 142.207031, 54.239551 ], [ 142.646484, 54.367759 ] ] ], [ [ [ 21.225586, 55.203953 ], [ 22.280273, 55.028022 ], [ 22.719727, 54.876607 ], [ 22.631836, 54.597528 ], [ 22.719727, 54.342149 ], [ 20.874023, 54.316523 ], [ 19.643555, 54.444492 ], [ 19.863281, 54.876607 ], [ 21.225586, 55.203953 ] ] ], [ [ [ 68.115234, 76.940488 ], [ 68.818359, 76.547523 ], [ 68.159180, 76.237366 ], [ 64.599609, 75.748125 ], [ 61.567383, 75.264239 ], [ 58.447266, 74.319235 ], [ 56.953125, 73.340461 ], [ 55.415039, 72.382410 ], [ 55.590820, 71.552741 ], [ 57.524414, 70.728979 ], [ 56.909180, 70.641769 ], [ 53.657227, 70.772443 ], [ 53.393555, 71.216075 ], [ 51.591797, 71.483086 ], [ 51.416016, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.426758, 72.777081 ], [ 54.404297, 73.627789 ], [ 53.481445, 73.751205 ], [ 55.898438, 74.636748 ], [ 55.590820, 75.084326 ], [ 57.832031, 75.617721 ], [ 61.127930, 76.258260 ], [ 64.467773, 76.444907 ], [ 66.181641, 76.810769 ], [ 68.115234, 76.940488 ] ] ], [ [ [ 180.000000, 71.524909 ], [ 180.000000, 70.844673 ], [ 178.901367, 70.786910 ], [ 178.681641, 71.102543 ], [ 180.000000, 71.524909 ] ] ], [ [ [ 142.031250, 73.861506 ], [ 143.481445, 73.478485 ], [ 143.569336, 73.214013 ], [ 142.075195, 73.214013 ], [ 140.009766, 73.327858 ], [ 139.833984, 73.378215 ], [ 140.800781, 73.775780 ], [ 142.031250, 73.861506 ] ] ], [ [ [ 138.823242, 76.142958 ], [ 141.459961, 76.100796 ], [ 145.063477, 75.563041 ], [ 144.272461, 74.821934 ], [ 140.581055, 74.856413 ], [ 138.955078, 74.613445 ], [ 136.933594, 75.264239 ], [ 137.504883, 75.952235 ], [ 138.823242, 76.142958 ] ] ], [ [ [ 146.337891, 75.497157 ], [ 148.183594, 75.353398 ], [ 150.688477, 75.084326 ], [ 149.545898, 74.694854 ], [ 147.963867, 74.787379 ], [ 146.118164, 75.174549 ], [ 146.337891, 75.497157 ] ] ], [ [ [ 102.084961, 79.351472 ], [ 102.832031, 79.286313 ], [ 105.336914, 78.716316 ], [ 105.073242, 78.313860 ], [ 99.404297, 77.924866 ], [ 101.250000, 79.237185 ], [ 102.084961, 79.351472 ] ] ], [ [ [ 95.932617, 81.255032 ], [ 97.866211, 80.753556 ], [ 100.151367, 79.781164 ], [ 99.931641, 78.887002 ], [ 97.734375, 78.759229 ], [ 94.965820, 79.046790 ], [ 93.295898, 79.432371 ], [ 92.504883, 80.148684 ], [ 91.142578, 80.342262 ], [ 93.735352, 81.024916 ], [ 95.932617, 81.255032 ] ] ], [ [ [ 50.009766, 80.921494 ], [ 51.503906, 80.703997 ], [ 51.108398, 80.553733 ], [ 48.867188, 80.342262 ], [ 48.735352, 80.178713 ], [ 47.548828, 80.012423 ], [ 46.494141, 80.253391 ], [ 47.065430, 80.560943 ], [ 44.824219, 80.596909 ], [ 46.757812, 80.774716 ], [ 48.295898, 80.788795 ], [ 48.515625, 80.517603 ], [ 49.086914, 80.760615 ], [ 50.009766, 80.921494 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.125000, 71.187754 ], [ 31.289062, 70.466207 ], [ 29.970703, 70.199994 ], [ 31.069336, 69.565226 ], [ 29.399414, 69.162558 ], [ 28.564453, 69.068563 ], [ 29.003906, 69.778952 ], [ 27.729492, 70.170201 ], [ 26.147461, 69.839622 ], [ 25.664062, 69.099940 ], [ 24.697266, 68.656555 ], [ 23.642578, 68.895187 ], [ 22.324219, 68.847665 ], [ 21.225586, 69.380313 ], [ 20.610352, 69.115611 ], [ 19.995117, 69.068563 ], [ 19.863281, 68.415352 ], [ 17.973633, 68.576441 ], [ 17.709961, 68.024022 ], [ 16.743164, 68.024022 ], [ 15.073242, 66.196009 ], [ 13.535156, 64.792848 ], [ 13.886719, 64.453849 ], [ 13.535156, 64.052978 ], [ 12.568359, 64.072200 ], [ 11.909180, 63.134503 ], [ 11.953125, 61.814664 ], [ 12.612305, 61.312452 ], [ 12.260742, 60.130564 ], [ 11.425781, 59.445075 ], [ 10.986328, 58.859224 ], [ 10.327148, 59.489726 ], [ 8.349609, 58.332567 ], [ 7.031250, 58.101105 ], [ 5.625000, 58.608334 ], [ 5.273438, 59.667741 ], [ 4.965820, 61.980267 ], [ 5.888672, 62.633770 ], [ 8.525391, 63.470145 ], [ 10.502930, 64.491725 ], [ 12.348633, 65.892680 ], [ 14.721680, 67.825836 ], [ 16.435547, 68.576441 ], [ 19.160156, 69.824471 ], [ 21.357422, 70.259452 ], [ 22.983398, 70.214875 ], [ 24.521484, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.125000, 71.187754 ] ] ], [ [ [ 16.962891, 80.058050 ], [ 18.237305, 79.702907 ], [ 21.533203, 78.962976 ], [ 18.984375, 78.569201 ], [ 18.457031, 77.832589 ], [ 17.578125, 77.645947 ], [ 17.094727, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.389504 ], [ 14.633789, 77.739618 ], [ 13.139648, 78.025574 ], [ 11.206055, 78.870048 ], [ 10.415039, 79.655668 ], [ 13.139648, 80.012423 ], [ 13.710938, 79.663556 ], [ 15.117188, 79.679314 ], [ 15.512695, 80.020042 ], [ 16.962891, 80.058050 ] ] ], [ [ [ 22.851562, 78.455425 ], [ 23.247070, 78.080156 ], [ 24.697266, 77.860345 ], [ 22.456055, 77.446940 ], [ 20.698242, 77.683500 ], [ 21.401367, 77.943238 ], [ 20.786133, 78.260332 ], [ 22.851562, 78.455425 ] ] ], [ [ [ 22.895508, 80.661308 ], [ 25.444336, 80.408388 ], [ 27.377930, 80.058050 ], [ 25.883789, 79.520657 ], [ 22.983398, 79.400085 ], [ 20.039062, 79.568506 ], [ 19.863281, 79.843346 ], [ 18.457031, 79.866568 ], [ 17.358398, 80.320120 ], [ 20.434570, 80.604086 ], [ 21.884766, 80.364354 ], [ 22.895508, 80.661308 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.348633, 56.121060 ], [ 12.656250, 55.627996 ], [ 12.084961, 54.800685 ], [ 11.030273, 55.379110 ], [ 10.898438, 55.801281 ], [ 12.348633, 56.121060 ] ] ], [ [ [ 10.546875, 57.751076 ], [ 10.502930, 57.231503 ], [ 10.239258, 56.897004 ], [ 10.327148, 56.632064 ], [ 10.898438, 56.462490 ], [ 10.634766, 56.096556 ], [ 10.327148, 56.194481 ], [ 9.624023, 55.478853 ], [ 9.887695, 55.002826 ], [ 9.272461, 54.851315 ], [ 8.525391, 54.977614 ], [ 8.085938, 55.528631 ], [ 8.085938, 56.559482 ], [ 8.525391, 57.112385 ], [ 9.404297, 57.183902 ], [ 9.755859, 57.468589 ], [ 10.546875, 57.751076 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.610352, 69.115611 ], [ 21.972656, 68.624544 ], [ 23.510742, 67.941650 ], [ 23.554688, 66.407955 ], [ 23.862305, 66.018018 ], [ 22.148438, 65.730626 ], [ 21.181641, 65.035060 ], [ 21.357422, 64.415921 ], [ 19.775391, 63.626745 ], [ 17.841797, 62.754726 ], [ 17.094727, 61.354614 ], [ 17.797852, 60.651647 ], [ 18.764648, 60.086763 ], [ 17.841797, 58.972667 ], [ 16.787109, 58.722599 ], [ 16.435547, 57.064630 ], [ 15.864258, 56.121060 ], [ 14.633789, 56.218923 ], [ 14.062500, 55.429013 ], [ 12.919922, 55.379110 ], [ 12.612305, 56.316537 ], [ 11.777344, 57.444949 ], [ 10.986328, 58.859224 ], [ 11.425781, 59.445075 ], [ 12.260742, 60.130564 ], [ 12.612305, 61.312452 ], [ 11.953125, 61.814664 ], [ 11.909180, 63.134503 ], [ 12.568359, 64.072200 ], [ 13.535156, 64.052978 ], [ 13.886719, 64.453849 ], [ 13.535156, 64.792848 ], [ 15.073242, 66.196009 ], [ 16.743164, 68.024022 ], [ 17.709961, 68.024022 ], [ 17.973633, 68.576441 ], [ 19.863281, 68.415352 ], [ 19.995117, 69.068563 ], [ 20.610352, 69.115611 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.064453, 53.514185 ], [ 6.899414, 53.488046 ], [ 7.075195, 53.146770 ], [ 6.811523, 52.241256 ], [ 6.547852, 51.862924 ], [ 5.976562, 51.862924 ], [ 6.152344, 50.819818 ], [ 5.581055, 51.041394 ], [ 4.965820, 51.481383 ], [ 4.042969, 51.289406 ], [ 3.295898, 51.371780 ], [ 3.823242, 51.645294 ], [ 4.702148, 53.094024 ], [ 6.064453, 53.514185 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.965820, 51.481383 ], [ 5.581055, 51.041394 ], [ 6.152344, 50.819818 ], [ 6.020508, 50.148746 ], [ 5.756836, 50.092393 ], [ 5.668945, 49.553726 ], [ 4.790039, 50.007739 ], [ 4.262695, 49.922935 ], [ 3.559570, 50.401515 ], [ 3.120117, 50.792047 ], [ 2.636719, 50.819818 ], [ 2.504883, 51.151786 ], [ 3.295898, 51.371780 ], [ 4.042969, 51.289406 ], [ 4.965820, 51.481383 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.020508, 50.148746 ], [ 6.240234, 49.922935 ], [ 6.152344, 49.468124 ], [ 5.888672, 49.468124 ], [ 5.668945, 49.553726 ], [ 5.756836, 50.092393 ], [ 6.020508, 50.148746 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.887695, 55.002826 ], [ 9.931641, 54.597528 ], [ 10.942383, 54.367759 ], [ 10.898438, 54.033586 ], [ 11.953125, 54.213861 ], [ 12.480469, 54.495568 ], [ 13.623047, 54.085173 ], [ 14.106445, 53.774689 ], [ 14.326172, 53.252069 ], [ 14.062500, 52.988337 ], [ 14.414062, 52.643063 ], [ 14.677734, 52.106505 ], [ 14.589844, 51.754240 ], [ 14.985352, 51.124213 ], [ 14.545898, 51.013755 ], [ 14.282227, 51.124213 ], [ 14.018555, 50.930738 ], [ 13.315430, 50.736455 ], [ 12.963867, 50.485474 ], [ 12.216797, 50.289339 ], [ 12.392578, 49.979488 ], [ 12.480469, 49.553726 ], [ 13.007812, 49.325122 ], [ 13.579102, 48.893615 ], [ 13.227539, 48.429201 ], [ 12.875977, 48.312428 ], [ 13.007812, 47.665387 ], [ 12.919922, 47.487513 ], [ 12.612305, 47.694974 ], [ 12.128906, 47.724545 ], [ 11.425781, 47.546872 ], [ 10.502930, 47.576526 ], [ 10.371094, 47.309034 ], [ 9.887695, 47.606163 ], [ 9.580078, 47.546872 ], [ 8.481445, 47.842658 ], [ 8.305664, 47.635784 ], [ 7.426758, 47.635784 ], [ 7.558594, 48.341646 ], [ 8.085938, 49.037868 ], [ 6.635742, 49.210420 ], [ 6.152344, 49.468124 ], [ 6.240234, 49.922935 ], [ 6.020508, 50.148746 ], [ 6.152344, 50.819818 ], [ 5.976562, 51.862924 ], [ 6.547852, 51.862924 ], [ 6.811523, 52.241256 ], [ 7.075195, 53.146770 ], [ 6.899414, 53.488046 ], [ 7.075195, 53.696706 ], [ 7.910156, 53.748711 ], [ 8.085938, 53.540307 ], [ 8.789062, 54.033586 ], [ 8.569336, 54.418930 ], [ 8.525391, 54.977614 ], [ 9.272461, 54.851315 ], [ 9.887695, 55.002826 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.481445, 47.842658 ], [ 9.580078, 47.546872 ], [ 9.624023, 47.368594 ], [ 9.448242, 47.129951 ], [ 9.931641, 46.950262 ], [ 10.415039, 46.920255 ], [ 10.327148, 46.498392 ], [ 9.887695, 46.316584 ], [ 9.140625, 46.468133 ], [ 8.964844, 46.042736 ], [ 8.481445, 46.012224 ], [ 8.305664, 46.164614 ], [ 7.734375, 45.828799 ], [ 7.250977, 45.798170 ], [ 6.811523, 46.012224 ], [ 6.459961, 46.437857 ], [ 6.020508, 46.286224 ], [ 6.020508, 46.739861 ], [ 6.767578, 47.309034 ], [ 6.723633, 47.546872 ], [ 7.163086, 47.457809 ], [ 7.426758, 47.635784 ], [ 8.305664, 47.635784 ], [ 8.481445, 47.842658 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.985352, 51.124213 ], [ 15.468750, 50.792047 ], [ 16.215820, 50.708634 ], [ 16.171875, 50.429518 ], [ 16.699219, 50.233152 ], [ 16.831055, 50.485474 ], [ 17.534180, 50.373496 ], [ 17.622070, 50.064192 ], [ 18.369141, 50.007739 ], [ 18.852539, 49.496675 ], [ 18.544922, 49.496675 ], [ 18.369141, 49.325122 ], [ 18.149414, 49.296472 ], [ 18.061523, 49.066668 ], [ 17.885742, 49.009051 ], [ 17.885742, 48.922499 ], [ 17.534180, 48.806863 ], [ 17.094727, 48.835797 ], [ 16.918945, 48.603858 ], [ 16.479492, 48.806863 ], [ 15.996094, 48.748945 ], [ 15.249023, 49.066668 ], [ 14.897461, 48.980217 ], [ 14.326172, 48.574790 ], [ 13.579102, 48.893615 ], [ 13.007812, 49.325122 ], [ 12.480469, 49.553726 ], [ 12.392578, 49.979488 ], [ 12.216797, 50.289339 ], [ 12.963867, 50.485474 ], [ 13.315430, 50.736455 ], [ 14.018555, 50.930738 ], [ 14.282227, 51.124213 ], [ 14.545898, 51.013755 ], [ 14.985352, 51.124213 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.622070, 54.876607 ], [ 18.588867, 54.699234 ], [ 18.676758, 54.444492 ], [ 19.643555, 54.444492 ], [ 20.874023, 54.316523 ], [ 22.719727, 54.342149 ], [ 23.203125, 54.239551 ], [ 23.466797, 53.930220 ], [ 23.510742, 53.488046 ], [ 23.774414, 53.094024 ], [ 23.774414, 52.696361 ], [ 23.159180, 52.509535 ], [ 23.466797, 52.025459 ], [ 23.510742, 51.590723 ], [ 23.994141, 50.708634 ], [ 23.906250, 50.429518 ], [ 23.422852, 50.317408 ], [ 22.500000, 49.496675 ], [ 22.763672, 49.037868 ], [ 21.577148, 49.496675 ], [ 20.874023, 49.353756 ], [ 20.390625, 49.439557 ], [ 19.819336, 49.239121 ], [ 19.291992, 49.582226 ], [ 18.896484, 49.439557 ], [ 18.369141, 50.007739 ], [ 17.622070, 50.064192 ], [ 17.534180, 50.373496 ], [ 16.831055, 50.485474 ], [ 16.699219, 50.233152 ], [ 16.171875, 50.429518 ], [ 16.215820, 50.708634 ], [ 15.468750, 50.792047 ], [ 14.985352, 51.124213 ], [ 14.589844, 51.754240 ], [ 14.677734, 52.106505 ], [ 14.414062, 52.643063 ], [ 14.062500, 52.988337 ], [ 14.326172, 53.252069 ], [ 14.106445, 53.774689 ], [ 14.765625, 54.059388 ], [ 17.622070, 54.876607 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.249023, 49.066668 ], [ 15.996094, 48.748945 ], [ 16.479492, 48.806863 ], [ 16.918945, 48.603858 ], [ 16.875000, 48.487486 ], [ 16.962891, 48.136767 ], [ 16.875000, 47.724545 ], [ 16.303711, 47.724545 ], [ 16.523438, 47.517201 ], [ 16.171875, 46.860191 ], [ 15.996094, 46.709736 ], [ 15.117188, 46.679594 ], [ 14.589844, 46.437857 ], [ 13.798828, 46.528635 ], [ 12.348633, 46.769968 ], [ 12.128906, 47.129951 ], [ 11.162109, 46.950262 ], [ 11.030273, 46.769968 ], [ 10.415039, 46.920255 ], [ 9.931641, 46.950262 ], [ 9.448242, 47.129951 ], [ 9.624023, 47.368594 ], [ 9.580078, 47.546872 ], [ 9.887695, 47.606163 ], [ 10.371094, 47.309034 ], [ 10.502930, 47.576526 ], [ 11.425781, 47.546872 ], [ 12.128906, 47.724545 ], [ 12.612305, 47.694974 ], [ 12.919922, 47.487513 ], [ 13.007812, 47.665387 ], [ 12.875977, 48.312428 ], [ 13.227539, 48.429201 ], [ 13.579102, 48.893615 ], [ 14.326172, 48.574790 ], [ 14.897461, 48.980217 ], [ 15.249023, 49.066668 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.347656, 46.860191 ], [ 16.523438, 46.528635 ], [ 15.732422, 46.255847 ], [ 15.644531, 45.859412 ], [ 15.292969, 45.736860 ], [ 15.292969, 45.460131 ], [ 14.897461, 45.490946 ], [ 14.589844, 45.644768 ], [ 14.370117, 45.490946 ], [ 13.710938, 45.521744 ], [ 13.930664, 45.614037 ], [ 13.666992, 46.042736 ], [ 13.798828, 46.528635 ], [ 14.589844, 46.437857 ], [ 15.117188, 46.679594 ], [ 15.996094, 46.709736 ], [ 16.171875, 46.860191 ], [ 16.347656, 46.860191 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.512695, 38.238180 ], [ 15.117188, 37.474858 ], [ 15.292969, 37.160317 ], [ 15.073242, 36.633162 ], [ 14.326172, 37.020098 ], [ 13.798828, 37.125286 ], [ 12.392578, 37.614231 ], [ 12.568359, 38.134557 ], [ 13.710938, 38.065392 ], [ 15.512695, 38.238180 ] ] ], [ [ [ 12.128906, 47.129951 ], [ 12.348633, 46.769968 ], [ 13.798828, 46.528635 ], [ 13.666992, 46.042736 ], [ 13.930664, 45.614037 ], [ 13.139648, 45.736860 ], [ 12.304688, 45.398450 ], [ 12.348633, 44.902578 ], [ 12.260742, 44.621754 ], [ 12.568359, 44.119142 ], [ 13.491211, 43.612217 ], [ 14.018555, 42.779275 ], [ 15.117188, 41.967659 ], [ 15.908203, 41.967659 ], [ 16.127930, 41.771312 ], [ 15.864258, 41.541478 ], [ 17.490234, 40.880295 ], [ 18.369141, 40.380028 ], [ 18.457031, 40.178873 ], [ 18.281250, 39.842286 ], [ 17.709961, 40.279526 ], [ 16.831055, 40.446947 ], [ 16.435547, 39.808536 ], [ 17.138672, 39.436193 ], [ 17.050781, 38.925229 ], [ 16.611328, 38.856820 ], [ 16.083984, 37.996163 ], [ 15.644531, 37.926868 ], [ 15.644531, 38.238180 ], [ 15.864258, 38.754083 ], [ 16.083984, 38.993572 ], [ 15.380859, 40.078071 ], [ 14.985352, 40.178873 ], [ 14.677734, 40.613952 ], [ 14.018555, 40.813809 ], [ 13.623047, 41.211722 ], [ 12.875977, 41.277806 ], [ 12.084961, 41.705729 ], [ 11.162109, 42.358544 ], [ 10.502930, 42.940339 ], [ 10.195312, 43.929550 ], [ 9.667969, 44.056012 ], [ 8.876953, 44.370987 ], [ 8.393555, 44.245199 ], [ 7.822266, 43.771094 ], [ 7.426758, 43.707594 ], [ 7.514648, 44.150681 ], [ 6.987305, 44.276671 ], [ 6.723633, 45.058001 ], [ 7.075195, 45.336702 ], [ 6.767578, 45.736860 ], [ 6.811523, 46.012224 ], [ 7.250977, 45.798170 ], [ 7.734375, 45.828799 ], [ 8.305664, 46.164614 ], [ 8.481445, 46.012224 ], [ 8.964844, 46.042736 ], [ 9.140625, 46.468133 ], [ 9.887695, 46.316584 ], [ 10.327148, 46.498392 ], [ 10.415039, 46.920255 ], [ 11.030273, 46.769968 ], [ 11.162109, 46.950262 ], [ 12.128906, 47.129951 ] ] ], [ [ [ 9.184570, 41.211722 ], [ 9.799805, 40.513799 ], [ 9.667969, 39.198205 ], [ 9.184570, 39.266284 ], [ 8.789062, 38.925229 ], [ 8.393555, 39.198205 ], [ 8.349609, 40.380028 ], [ 8.129883, 40.979898 ], [ 8.701172, 40.913513 ], [ 9.184570, 41.211722 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.523438, 46.528635 ], [ 16.875000, 46.407564 ], [ 17.622070, 45.981695 ], [ 18.413086, 45.767523 ], [ 18.808594, 45.920587 ], [ 19.072266, 45.521744 ], [ 19.379883, 45.243953 ], [ 18.984375, 44.871443 ], [ 18.544922, 45.089036 ], [ 17.841797, 45.089036 ], [ 16.962891, 45.243953 ], [ 16.523438, 45.213004 ], [ 16.303711, 45.026950 ], [ 15.952148, 45.243953 ], [ 15.732422, 44.840291 ], [ 16.215820, 44.370987 ], [ 16.435547, 44.056012 ], [ 16.875000, 43.675818 ], [ 17.270508, 43.452919 ], [ 17.666016, 43.036776 ], [ 18.544922, 42.650122 ], [ 18.413086, 42.488302 ], [ 17.490234, 42.875964 ], [ 16.918945, 43.229195 ], [ 15.996094, 43.516689 ], [ 15.161133, 44.245199 ], [ 15.336914, 44.339565 ], [ 14.897461, 44.746733 ], [ 14.897461, 45.089036 ], [ 14.238281, 45.243953 ], [ 13.930664, 44.809122 ], [ 13.623047, 45.151053 ], [ 13.710938, 45.521744 ], [ 14.370117, 45.490946 ], [ 14.589844, 45.644768 ], [ 14.897461, 45.490946 ], [ 15.292969, 45.460131 ], [ 15.292969, 45.736860 ], [ 15.644531, 45.859412 ], [ 15.732422, 46.255847 ], [ 16.523438, 46.528635 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.786133, 48.632909 ], [ 21.840820, 48.341646 ], [ 22.060547, 48.429201 ], [ 22.631836, 48.166085 ], [ 22.675781, 47.901614 ], [ 22.060547, 47.694974 ], [ 21.621094, 47.010226 ], [ 21.005859, 46.316584 ], [ 20.214844, 46.134170 ], [ 19.555664, 46.195042 ], [ 18.413086, 45.767523 ], [ 17.622070, 45.981695 ], [ 16.875000, 46.407564 ], [ 16.523438, 46.528635 ], [ 16.347656, 46.860191 ], [ 16.171875, 46.860191 ], [ 16.523438, 47.517201 ], [ 16.303711, 47.724545 ], [ 16.875000, 47.724545 ], [ 16.962891, 48.136767 ], [ 17.446289, 47.872144 ], [ 17.841797, 47.783635 ], [ 18.676758, 47.901614 ], [ 18.764648, 48.107431 ], [ 19.160156, 48.136767 ], [ 19.643555, 48.283193 ], [ 19.731445, 48.224673 ], [ 20.214844, 48.341646 ], [ 20.434570, 48.574790 ], [ 20.786133, 48.632909 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.291992, 49.582226 ], [ 19.819336, 49.239121 ], [ 20.390625, 49.439557 ], [ 20.874023, 49.353756 ], [ 21.577148, 49.496675 ], [ 22.543945, 49.095452 ], [ 22.280273, 48.835797 ], [ 22.060547, 48.429201 ], [ 21.840820, 48.341646 ], [ 20.786133, 48.632909 ], [ 20.434570, 48.574790 ], [ 20.214844, 48.341646 ], [ 19.731445, 48.224673 ], [ 19.643555, 48.283193 ], [ 19.160156, 48.136767 ], [ 18.764648, 48.107431 ], [ 18.676758, 47.901614 ], [ 17.841797, 47.783635 ], [ 17.446289, 47.872144 ], [ 16.962891, 48.136767 ], [ 16.875000, 48.487486 ], [ 17.094727, 48.835797 ], [ 17.534180, 48.806863 ], [ 17.885742, 48.922499 ], [ 17.885742, 49.009051 ], [ 18.061523, 49.066668 ], [ 18.149414, 49.296472 ], [ 18.369141, 49.325122 ], [ 18.544922, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.896484, 49.439557 ], [ 19.291992, 49.582226 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.962891, 45.243953 ], [ 17.841797, 45.089036 ], [ 18.544922, 45.089036 ], [ 18.984375, 44.871443 ], [ 19.335938, 44.871443 ], [ 19.116211, 44.433780 ], [ 19.599609, 44.056012 ], [ 19.423828, 43.580391 ], [ 19.028320, 43.452919 ], [ 18.676758, 43.229195 ], [ 18.544922, 42.650122 ], [ 17.666016, 43.036776 ], [ 17.270508, 43.452919 ], [ 16.875000, 43.675818 ], [ 16.435547, 44.056012 ], [ 16.215820, 44.370987 ], [ 15.732422, 44.840291 ], [ 15.952148, 45.243953 ], [ 16.303711, 45.026950 ], [ 16.523438, 45.213004 ], [ 16.962891, 45.243953 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.204102, 43.548548 ], [ 19.599609, 43.229195 ], [ 19.951172, 43.133061 ], [ 20.302734, 42.908160 ], [ 20.039062, 42.617791 ], [ 19.775391, 42.520700 ], [ 19.731445, 42.714732 ], [ 19.291992, 42.195969 ], [ 19.335938, 41.902277 ], [ 19.160156, 41.967659 ], [ 18.852539, 42.293564 ], [ 18.413086, 42.488302 ], [ 18.544922, 42.650122 ], [ 18.676758, 43.229195 ], [ 19.204102, 43.548548 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.555664, 46.195042 ], [ 20.214844, 46.134170 ], [ 20.742188, 45.736860 ], [ 20.874023, 45.429299 ], [ 21.445312, 45.182037 ], [ 21.533203, 44.777936 ], [ 22.104492, 44.496505 ], [ 22.456055, 44.715514 ], [ 22.675781, 44.590467 ], [ 22.456055, 44.433780 ], [ 22.631836, 44.245199 ], [ 22.368164, 44.024422 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.229195 ], [ 22.587891, 42.908160 ], [ 22.412109, 42.585444 ], [ 22.543945, 42.488302 ], [ 22.368164, 42.326062 ], [ 21.533203, 42.261049 ], [ 21.533203, 42.326062 ], [ 21.752930, 42.714732 ], [ 21.621094, 42.682435 ], [ 20.786133, 43.293200 ], [ 20.610352, 43.229195 ], [ 20.478516, 42.908160 ], [ 20.214844, 42.843751 ], [ 20.302734, 42.908160 ], [ 19.951172, 43.133061 ], [ 19.599609, 43.229195 ], [ 19.204102, 43.548548 ], [ 19.423828, 43.580391 ], [ 19.599609, 44.056012 ], [ 19.116211, 44.433780 ], [ 19.335938, 44.871443 ], [ 18.984375, 44.871443 ], [ 19.379883, 45.243953 ], [ 19.072266, 45.521744 ], [ 18.808594, 45.920587 ], [ 19.555664, 46.195042 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.786133, 43.293200 ], [ 21.621094, 42.682435 ], [ 21.752930, 42.714732 ], [ 21.533203, 42.326062 ], [ 21.533203, 42.261049 ], [ 20.742188, 42.065607 ], [ 20.698242, 41.869561 ], [ 20.566406, 41.869561 ], [ 20.522461, 42.228517 ], [ 20.258789, 42.326062 ], [ 20.039062, 42.617791 ], [ 20.214844, 42.843751 ], [ 20.478516, 42.908160 ], [ 20.610352, 43.229195 ], [ 20.786133, 43.293200 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.731445, 42.714732 ], [ 19.775391, 42.520700 ], [ 20.039062, 42.617791 ], [ 20.258789, 42.326062 ], [ 20.522461, 42.228517 ], [ 20.566406, 41.869561 ], [ 20.434570, 41.541478 ], [ 20.566406, 41.112469 ], [ 21.005859, 40.847060 ], [ 20.961914, 40.580585 ], [ 20.654297, 40.446947 ], [ 20.610352, 40.111689 ], [ 20.126953, 39.639538 ], [ 19.951172, 39.707187 ], [ 19.951172, 39.943436 ], [ 19.379883, 40.279526 ], [ 19.291992, 40.747257 ], [ 19.379883, 41.409776 ], [ 19.511719, 41.738528 ], [ 19.335938, 41.902277 ], [ 19.291992, 42.195969 ], [ 19.731445, 42.714732 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.368164, 42.326062 ], [ 22.851562, 42.000325 ], [ 22.939453, 41.343825 ], [ 22.719727, 41.310824 ], [ 22.587891, 41.145570 ], [ 22.016602, 41.178654 ], [ 21.665039, 40.946714 ], [ 21.005859, 40.847060 ], [ 20.566406, 41.112469 ], [ 20.434570, 41.541478 ], [ 20.566406, 41.869561 ], [ 20.698242, 41.869561 ], [ 20.742188, 42.065607 ], [ 21.313477, 42.228517 ], [ 21.884766, 42.326062 ], [ 22.368164, 42.326062 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.729492, 70.170201 ], [ 29.003906, 69.778952 ], [ 28.564453, 69.068563 ], [ 28.432617, 68.366801 ], [ 29.970703, 67.709445 ], [ 29.047852, 66.947274 ], [ 30.190430, 65.820782 ], [ 29.531250, 64.960766 ], [ 30.410156, 64.206377 ], [ 30.014648, 63.568120 ], [ 31.508789, 62.875188 ], [ 31.113281, 62.369996 ], [ 28.037109, 60.522158 ], [ 26.235352, 60.435542 ], [ 24.477539, 60.064840 ], [ 22.851562, 59.866883 ], [ 22.280273, 60.392148 ], [ 21.313477, 60.737686 ], [ 21.533203, 61.710706 ], [ 21.049805, 62.613562 ], [ 21.533203, 63.194018 ], [ 22.412109, 63.821288 ], [ 24.697266, 64.904910 ], [ 25.356445, 65.127638 ], [ 25.268555, 65.549367 ], [ 23.862305, 66.018018 ], [ 23.554688, 66.407955 ], [ 23.510742, 67.941650 ], [ 21.972656, 68.624544 ], [ 20.610352, 69.115611 ], [ 21.225586, 69.380313 ], [ 22.324219, 68.847665 ], [ 23.642578, 68.895187 ], [ 24.697266, 68.656555 ], [ 25.664062, 69.099940 ], [ 26.147461, 69.839622 ], [ 27.729492, 70.170201 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.136719, 57.984808 ], [ 25.576172, 57.868132 ], [ 26.455078, 57.492214 ], [ 27.246094, 57.492214 ], [ 27.729492, 57.255281 ], [ 27.817383, 56.776808 ], [ 28.168945, 56.170023 ], [ 27.070312, 55.801281 ], [ 26.455078, 55.627996 ], [ 25.532227, 56.121060 ], [ 24.960938, 56.170023 ], [ 24.829102, 56.389584 ], [ 23.862305, 56.292157 ], [ 22.192383, 56.340901 ], [ 21.049805, 56.047500 ], [ 21.049805, 56.800878 ], [ 21.577148, 57.421294 ], [ 22.500000, 57.774518 ], [ 23.291016, 57.016814 ], [ 24.082031, 57.040730 ], [ 24.301758, 57.797944 ], [ 25.136719, 57.984808 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.839844, 59.623325 ], [ 26.938477, 59.467408 ], [ 27.949219, 59.489726 ], [ 28.125000, 59.310768 ], [ 27.377930, 58.745407 ], [ 27.685547, 57.797944 ], [ 27.246094, 57.492214 ], [ 26.455078, 57.492214 ], [ 25.576172, 57.868132 ], [ 25.136719, 57.984808 ], [ 24.301758, 57.797944 ], [ 24.389648, 58.401712 ], [ 24.038086, 58.263287 ], [ 23.422852, 58.631217 ], [ 23.334961, 59.198439 ], [ 24.565430, 59.467408 ], [ 25.839844, 59.623325 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.829102, 56.389584 ], [ 24.960938, 56.170023 ], [ 25.532227, 56.121060 ], [ 26.455078, 55.627996 ], [ 26.586914, 55.178868 ], [ 25.751953, 54.851315 ], [ 25.532227, 54.290882 ], [ 24.433594, 53.930220 ], [ 23.466797, 53.930220 ], [ 23.203125, 54.239551 ], [ 22.719727, 54.342149 ], [ 22.631836, 54.597528 ], [ 22.719727, 54.876607 ], [ 22.280273, 55.028022 ], [ 21.225586, 55.203953 ], [ 21.049805, 56.047500 ], [ 22.192383, 56.340901 ], [ 23.862305, 56.292157 ], [ 24.829102, 56.389584 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.168945, 56.170023 ], [ 29.223633, 55.924586 ], [ 29.355469, 55.677584 ], [ 29.882812, 55.801281 ], [ 30.849609, 55.553495 ], [ 30.937500, 55.103516 ], [ 30.717773, 54.826008 ], [ 31.376953, 54.162434 ], [ 31.772461, 53.981935 ], [ 31.728516, 53.800651 ], [ 32.387695, 53.618579 ], [ 32.651367, 53.357109 ], [ 32.299805, 53.146770 ], [ 31.464844, 53.173119 ], [ 31.289062, 53.094024 ], [ 31.508789, 52.749594 ], [ 31.772461, 52.106505 ], [ 30.893555, 52.052490 ], [ 30.585938, 51.835778 ], [ 30.541992, 51.344339 ], [ 30.146484, 51.426614 ], [ 29.223633, 51.371780 ], [ 28.959961, 51.618017 ], [ 28.608398, 51.454007 ], [ 28.212891, 51.590723 ], [ 27.421875, 51.618017 ], [ 26.323242, 51.835778 ], [ 25.312500, 51.917168 ], [ 24.521484, 51.890054 ], [ 23.994141, 51.618017 ], [ 23.510742, 51.590723 ], [ 23.466797, 52.025459 ], [ 23.159180, 52.509535 ], [ 23.774414, 52.696361 ], [ 23.774414, 53.094024 ], [ 23.510742, 53.488046 ], [ 23.466797, 53.930220 ], [ 24.433594, 53.930220 ], [ 25.532227, 54.290882 ], [ 25.751953, 54.851315 ], [ 26.586914, 55.178868 ], [ 26.455078, 55.627996 ], [ 27.070312, 55.801281 ], [ 28.168945, 56.170023 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.586914, 48.224673 ], [ 26.894531, 48.136767 ], [ 28.125000, 46.830134 ], [ 28.125000, 46.377254 ], [ 28.037109, 45.951150 ], [ 28.212891, 45.490946 ], [ 28.652344, 45.305803 ], [ 29.135742, 45.490946 ], [ 29.575195, 45.305803 ], [ 29.619141, 45.058001 ], [ 29.135742, 44.840291 ], [ 28.828125, 44.933696 ], [ 28.520508, 43.707594 ], [ 27.949219, 43.834527 ], [ 27.202148, 44.182204 ], [ 26.059570, 43.961191 ], [ 25.532227, 43.707594 ], [ 24.082031, 43.771094 ], [ 23.291016, 43.897892 ], [ 22.939453, 43.834527 ], [ 22.456055, 44.433780 ], [ 22.675781, 44.590467 ], [ 22.456055, 44.715514 ], [ 22.104492, 44.496505 ], [ 21.533203, 44.777936 ], [ 21.445312, 45.182037 ], [ 20.874023, 45.429299 ], [ 20.742188, 45.736860 ], [ 20.214844, 46.134170 ], [ 21.005859, 46.316584 ], [ 21.621094, 47.010226 ], [ 22.060547, 47.694974 ], [ 22.675781, 47.901614 ], [ 23.115234, 48.107431 ], [ 23.730469, 47.989922 ], [ 24.389648, 47.989922 ], [ 24.829102, 47.754098 ], [ 25.180664, 47.901614 ], [ 25.927734, 47.989922 ], [ 26.191406, 48.224673 ], [ 26.586914, 48.224673 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.631836, 44.245199 ], [ 22.939453, 43.834527 ], [ 23.291016, 43.897892 ], [ 24.082031, 43.771094 ], [ 25.532227, 43.707594 ], [ 26.059570, 43.961191 ], [ 27.202148, 44.182204 ], [ 27.949219, 43.834527 ], [ 28.520508, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.641602, 42.585444 ], [ 27.993164, 42.032974 ], [ 27.114258, 42.163403 ], [ 26.103516, 41.836828 ], [ 26.103516, 41.343825 ], [ 25.180664, 41.244772 ], [ 24.477539, 41.607228 ], [ 23.686523, 41.310824 ], [ 22.939453, 41.343825 ], [ 22.851562, 42.000325 ], [ 22.368164, 42.326062 ], [ 22.543945, 42.488302 ], [ 22.412109, 42.585444 ], [ 22.587891, 42.908160 ], [ 22.983398, 43.229195 ], [ 22.500000, 43.644026 ], [ 22.368164, 44.024422 ], [ 22.631836, 44.245199 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.509766, 48.487486 ], [ 28.256836, 48.166085 ], [ 28.652344, 48.136767 ], [ 29.091797, 47.872144 ], [ 29.047852, 47.517201 ], [ 29.399414, 47.368594 ], [ 29.531250, 46.950262 ], [ 29.882812, 46.679594 ], [ 29.794922, 46.528635 ], [ 30.014648, 46.437857 ], [ 29.750977, 46.377254 ], [ 29.135742, 46.407564 ], [ 29.047852, 46.528635 ], [ 28.828125, 46.468133 ], [ 28.916016, 46.286224 ], [ 28.652344, 45.951150 ], [ 28.476562, 45.614037 ], [ 28.212891, 45.490946 ], [ 28.037109, 45.951150 ], [ 28.125000, 46.377254 ], [ 28.125000, 46.830134 ], [ 26.894531, 48.136767 ], [ 26.586914, 48.224673 ], [ 26.850586, 48.370848 ], [ 27.509766, 48.487486 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.348763 ], [ 34.365234, 51.781436 ], [ 34.101562, 51.590723 ], [ 34.189453, 51.261915 ], [ 34.980469, 51.234407 ], [ 35.375977, 50.792047 ], [ 35.332031, 50.597186 ], [ 36.606445, 50.233152 ], [ 37.353516, 50.401515 ], [ 37.968750, 49.922935 ], [ 38.583984, 49.951220 ], [ 40.034180, 49.610710 ], [ 40.078125, 49.325122 ], [ 39.638672, 48.806863 ], [ 39.858398, 48.253941 ], [ 39.726562, 47.901614 ], [ 38.759766, 47.842658 ], [ 38.232422, 47.546872 ], [ 38.188477, 47.129951 ], [ 37.397461, 47.040182 ], [ 36.738281, 46.709736 ], [ 35.815430, 46.649436 ], [ 34.936523, 46.286224 ], [ 34.980469, 45.675482 ], [ 35.507812, 45.429299 ], [ 36.518555, 45.490946 ], [ 36.298828, 45.120053 ], [ 35.200195, 44.964798 ], [ 33.881836, 44.370987 ], [ 33.310547, 44.590467 ], [ 33.530273, 45.058001 ], [ 32.431641, 45.336702 ], [ 32.607422, 45.521744 ], [ 33.574219, 45.859412 ], [ 33.266602, 46.103709 ], [ 31.728516, 46.346928 ], [ 31.640625, 46.709736 ], [ 30.717773, 46.589069 ], [ 30.366211, 46.042736 ], [ 29.575195, 45.305803 ], [ 29.135742, 45.490946 ], [ 28.652344, 45.305803 ], [ 28.212891, 45.490946 ], [ 28.476562, 45.614037 ], [ 28.652344, 45.951150 ], [ 28.916016, 46.286224 ], [ 28.828125, 46.468133 ], [ 29.047852, 46.528635 ], [ 29.135742, 46.407564 ], [ 29.750977, 46.377254 ], [ 30.014648, 46.437857 ], [ 29.794922, 46.528635 ], [ 29.882812, 46.679594 ], [ 29.531250, 46.950262 ], [ 29.399414, 47.368594 ], [ 29.047852, 47.517201 ], [ 29.091797, 47.872144 ], [ 28.652344, 48.136767 ], [ 28.256836, 48.166085 ], [ 27.509766, 48.487486 ], [ 26.850586, 48.370848 ], [ 26.586914, 48.224673 ], [ 26.191406, 48.224673 ], [ 25.927734, 47.989922 ], [ 25.180664, 47.901614 ], [ 24.829102, 47.754098 ], [ 24.389648, 47.989922 ], [ 23.730469, 47.989922 ], [ 23.115234, 48.107431 ], [ 22.675781, 47.901614 ], [ 22.631836, 48.166085 ], [ 22.060547, 48.429201 ], [ 22.280273, 48.835797 ], [ 22.543945, 49.095452 ], [ 22.763672, 49.037868 ], [ 22.500000, 49.496675 ], [ 23.422852, 50.317408 ], [ 23.906250, 50.429518 ], [ 23.994141, 50.708634 ], [ 23.510742, 51.590723 ], [ 23.994141, 51.618017 ], [ 24.521484, 51.890054 ], [ 25.312500, 51.917168 ], [ 26.323242, 51.835778 ], [ 27.421875, 51.618017 ], [ 28.212891, 51.590723 ], [ 28.608398, 51.454007 ], [ 28.959961, 51.618017 ], [ 29.223633, 51.371780 ], [ 30.146484, 51.426614 ], [ 30.541992, 51.344339 ], [ 30.585938, 51.835778 ], [ 30.893555, 52.052490 ], [ 31.772461, 52.106505 ], [ 32.124023, 52.079506 ], [ 32.387695, 52.295042 ], [ 32.695312, 52.241256 ], [ 33.750000, 52.348763 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.034180, 43.580391 ], [ 40.913086, 43.389082 ], [ 42.363281, 43.229195 ], [ 43.725586, 42.747012 ], [ 43.901367, 42.585444 ], [ 44.516602, 42.714732 ], [ 45.439453, 42.520700 ], [ 45.747070, 42.098222 ], [ 46.362305, 41.869561 ], [ 46.142578, 41.738528 ], [ 46.625977, 41.211722 ], [ 46.494141, 41.079351 ], [ 45.922852, 41.145570 ], [ 45.175781, 41.442726 ], [ 44.956055, 41.277806 ], [ 43.549805, 41.112469 ], [ 42.583008, 41.607228 ], [ 41.528320, 41.541478 ], [ 41.660156, 41.967659 ], [ 41.440430, 42.650122 ], [ 40.869141, 43.036776 ], [ 40.297852, 43.133061 ], [ 39.946289, 43.452919 ], [ 40.034180, 43.580391 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.492188, 37.370157 ], [ 10.195312, 37.230328 ], [ 10.151367, 36.738884 ], [ 10.986328, 37.125286 ], [ 11.074219, 36.914764 ], [ 10.590820, 36.421282 ], [ 10.590820, 35.960223 ], [ 10.898438, 35.710838 ], [ 10.766602, 34.849875 ], [ 10.107422, 34.343436 ], [ 10.327148, 33.797409 ], [ 10.854492, 33.797409 ], [ 11.074219, 33.321349 ], [ 11.469727, 33.137551 ], [ 11.425781, 32.398516 ], [ 10.942383, 32.101190 ], [ 10.634766, 31.765537 ], [ 9.931641, 31.391158 ], [ 10.019531, 30.977609 ], [ 9.931641, 30.562261 ], [ 9.448242, 30.334954 ], [ 9.052734, 32.138409 ], [ 8.437500, 32.509762 ], [ 8.393555, 32.768800 ], [ 7.602539, 33.358062 ], [ 7.514648, 34.125448 ], [ 8.129883, 34.669359 ], [ 8.349609, 35.496456 ], [ 8.217773, 36.456636 ], [ 8.393555, 36.949892 ], [ 9.492188, 37.370157 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.294922, 37.125286 ], [ 7.734375, 36.914764 ], [ 8.393555, 36.949892 ], [ 8.217773, 36.456636 ], [ 8.349609, 35.496456 ], [ 8.129883, 34.669359 ], [ 7.514648, 34.125448 ], [ 7.602539, 33.358062 ], [ 8.393555, 32.768800 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.138409 ], [ 9.448242, 30.334954 ], [ 9.799805, 29.458731 ], [ 9.843750, 28.960089 ], [ 9.667969, 28.149503 ], [ 9.755859, 27.722436 ], [ 9.624023, 27.176469 ], [ 9.711914, 26.549223 ], [ 9.316406, 26.115986 ], [ 9.887695, 25.403585 ], [ 9.931641, 24.966140 ], [ 10.283203, 24.407138 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.126702 ], [ 11.997070, 23.483401 ], [ 8.569336, 21.575719 ], [ 5.668945, 19.642588 ], [ 4.262695, 19.186678 ], [ 3.120117, 19.062118 ], [ 3.120117, 19.725342 ], [ 2.021484, 20.179724 ], [ 1.801758, 20.632784 ], [ 0.000000, 21.820708 ], [ -3.515625, 24.086589 ], [ -3.515625, 31.690782 ], [ -3.076172, 31.728167 ], [ -2.636719, 32.101190 ], [ -1.318359, 32.287133 ], [ -1.142578, 32.657876 ], [ -1.406250, 32.879587 ], [ -1.757812, 33.943360 ], [ -1.801758, 34.560859 ], [ -2.197266, 35.173808 ], [ -1.230469, 35.746512 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.995785 ], [ 0.483398, 36.315125 ], [ 1.450195, 36.633162 ], [ 3.120117, 36.809285 ], [ 4.790039, 36.879621 ], [ 5.317383, 36.738884 ], [ 6.240234, 37.125286 ], [ 7.294922, 37.125286 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 33.137551 ], [ 12.656250, 32.805745 ], [ 13.051758, 32.879587 ], [ 13.886719, 32.731841 ], [ 15.205078, 32.287133 ], [ 15.688477, 31.391158 ], [ 16.611328, 31.203405 ], [ 18.017578, 30.789037 ], [ 19.072266, 30.297018 ], [ 19.555664, 30.562261 ], [ 20.039062, 31.015279 ], [ 19.819336, 31.765537 ], [ 20.126953, 32.249974 ], [ 20.830078, 32.731841 ], [ 21.533203, 32.879587 ], [ 22.895508, 32.657876 ], [ 23.203125, 32.212801 ], [ 23.598633, 32.212801 ], [ 23.906250, 32.026706 ], [ 24.916992, 31.914868 ], [ 25.136719, 31.578535 ], [ 24.785156, 31.090574 ], [ 24.916992, 30.675715 ], [ 24.697266, 30.069094 ], [ 24.960938, 29.267233 ], [ 24.960938, 20.014645 ], [ 23.818359, 20.014645 ], [ 23.818359, 19.601194 ], [ 15.820312, 23.443089 ], [ 14.809570, 22.877440 ], [ 14.106445, 22.512557 ], [ 13.579102, 23.079732 ], [ 11.997070, 23.483401 ], [ 11.557617, 24.126702 ], [ 10.766602, 24.567108 ], [ 10.283203, 24.407138 ], [ 9.931641, 24.966140 ], [ 9.887695, 25.403585 ], [ 9.316406, 26.115986 ], [ 9.711914, 26.549223 ], [ 9.624023, 27.176469 ], [ 9.755859, 27.722436 ], [ 9.667969, 28.149503 ], [ 9.843750, 28.960089 ], [ 9.799805, 29.458731 ], [ 9.448242, 30.334954 ], [ 9.931641, 30.562261 ], [ 10.019531, 30.977609 ], [ 9.931641, 31.391158 ], [ 10.634766, 31.765537 ], [ 10.942383, 32.101190 ], [ 11.425781, 32.398516 ], [ 11.469727, 33.137551 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.997070, 23.483401 ], [ 13.579102, 23.079732 ], [ 14.106445, 22.512557 ], [ 14.809570, 22.877440 ], [ 15.073242, 21.330315 ], [ 15.468750, 21.084500 ], [ 15.468750, 20.756114 ], [ 15.864258, 20.427013 ], [ 15.644531, 19.973349 ], [ 15.292969, 17.936929 ], [ 15.205078, 16.636192 ], [ 13.930664, 15.707663 ], [ 13.535156, 14.392118 ], [ 13.930664, 14.008696 ], [ 13.930664, 13.368243 ], [ 14.589844, 13.368243 ], [ 14.458008, 12.897489 ], [ 14.194336, 12.811801 ], [ 14.150391, 12.511665 ], [ 13.974609, 12.468760 ], [ 13.315430, 13.581921 ], [ 13.051758, 13.624633 ], [ 12.260742, 13.068777 ], [ 11.513672, 13.368243 ], [ 10.986328, 13.410994 ], [ 10.678711, 13.282719 ], [ 10.107422, 13.282719 ], [ 9.492188, 12.854649 ], [ 9.008789, 12.854649 ], [ 7.778320, 13.368243 ], [ 7.294922, 13.111580 ], [ 6.811523, 13.154376 ], [ 6.416016, 13.496473 ], [ 5.405273, 13.880746 ], [ 4.350586, 13.752725 ], [ 4.086914, 13.539201 ], [ 3.955078, 12.983148 ], [ 3.647461, 12.554564 ], [ 3.603516, 11.695273 ], [ 2.812500, 12.254128 ], [ 2.460938, 12.254128 ], [ 2.153320, 11.953349 ], [ 2.153320, 12.640338 ], [ 1.010742, 12.854649 ], [ 0.966797, 13.368243 ], [ 0.395508, 14.008696 ], [ 0.263672, 14.477234 ], [ 0.351562, 14.944785 ], [ 1.010742, 14.987240 ], [ 1.362305, 15.326572 ], [ 2.724609, 15.411319 ], [ 3.603516, 15.580711 ], [ 3.691406, 16.214675 ], [ 4.262695, 16.888660 ], [ 4.262695, 19.186678 ], [ 5.668945, 19.642588 ], [ 8.569336, 21.575719 ], [ 11.997070, 23.483401 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.049038 ], [ 0.878906, 11.005904 ], [ 0.747070, 10.487812 ], [ 1.406250, 9.838979 ], [ 1.450195, 9.362353 ], [ 1.625977, 9.145486 ], [ 1.582031, 6.839170 ], [ 1.845703, 6.184246 ], [ 1.054688, 5.965754 ], [ 0.527344, 6.926427 ], [ 0.483398, 7.449624 ], [ 0.703125, 8.320212 ], [ 0.439453, 8.711359 ], [ 0.351562, 9.492408 ], [ 0.351562, 10.228437 ], [ 0.000000, 10.660608 ], [ -0.087891, 10.746969 ], [ 0.000000, 10.919618 ], [ 0.000000, 11.049038 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.812500, 12.254128 ], [ 3.603516, 11.695273 ], [ 3.559570, 11.350797 ], [ 3.779297, 10.746969 ], [ 3.559570, 10.358151 ], [ 3.691406, 10.098670 ], [ 2.900391, 9.145486 ], [ 2.680664, 8.537565 ], [ 2.680664, 6.271618 ], [ 1.845703, 6.184246 ], [ 1.582031, 6.839170 ], [ 1.625977, 9.145486 ], [ 1.450195, 9.362353 ], [ 1.406250, 9.838979 ], [ 0.747070, 10.487812 ], [ 0.878906, 11.005904 ], [ 1.230469, 11.135287 ], [ 1.406250, 11.566144 ], [ 1.933594, 11.652236 ], [ 2.153320, 11.953349 ], [ 2.460938, 12.254128 ], [ 2.812500, 12.254128 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.405273, 13.880746 ], [ 6.416016, 13.496473 ], [ 6.811523, 13.154376 ], [ 7.294922, 13.111580 ], [ 7.778320, 13.368243 ], [ 9.008789, 12.854649 ], [ 9.492188, 12.854649 ], [ 10.107422, 13.282719 ], [ 10.678711, 13.282719 ], [ 10.986328, 13.410994 ], [ 11.513672, 13.368243 ], [ 12.260742, 13.068777 ], [ 13.051758, 13.624633 ], [ 13.315430, 13.581921 ], [ 13.974609, 12.468760 ], [ 14.150391, 12.511665 ], [ 14.545898, 12.125264 ], [ 14.458008, 11.910354 ], [ 14.414062, 11.609193 ], [ 13.535156, 10.833306 ], [ 13.139648, 9.665738 ], [ 12.919922, 9.449062 ], [ 12.744141, 8.754795 ], [ 12.216797, 8.320212 ], [ 12.041016, 7.841615 ], [ 11.821289, 7.406048 ], [ 11.733398, 7.013668 ], [ 11.030273, 6.664608 ], [ 10.458984, 7.057282 ], [ 10.107422, 7.057282 ], [ 9.492188, 6.489983 ], [ 9.228516, 6.446318 ], [ 8.745117, 5.484768 ], [ 8.481445, 4.784469 ], [ 7.426758, 4.434044 ], [ 7.075195, 4.477856 ], [ 6.679688, 4.258768 ], [ 5.888672, 4.302591 ], [ 5.361328, 4.915833 ], [ 5.009766, 5.615986 ], [ 4.306641, 6.271618 ], [ 2.680664, 6.271618 ], [ 2.680664, 8.537565 ], [ 2.900391, 9.145486 ], [ 3.691406, 10.098670 ], [ 3.559570, 10.358151 ], [ 3.779297, 10.746969 ], [ 3.559570, 11.350797 ], [ 3.647461, 12.554564 ], [ 3.955078, 12.983148 ], [ 4.086914, 13.539201 ], [ 4.350586, 13.752725 ], [ 5.405273, 13.880746 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 2.284551 ], [ 11.250000, 1.098565 ], [ 9.799805, 1.098565 ], [ 9.492188, 1.010690 ], [ 9.272461, 1.186439 ], [ 9.624023, 2.284551 ], [ 11.250000, 2.284551 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.820312, 23.443089 ], [ 23.818359, 19.601194 ], [ 23.862305, 15.623037 ], [ 22.983398, 15.707663 ], [ 22.543945, 14.944785 ], [ 22.280273, 14.349548 ], [ 22.500000, 14.093957 ], [ 22.148438, 13.795406 ], [ 22.280273, 13.410994 ], [ 22.016602, 12.983148 ], [ 21.928711, 12.597455 ], [ 22.280273, 12.683215 ], [ 22.456055, 12.297068 ], [ 22.500000, 11.695273 ], [ 22.851562, 11.393879 ], [ 22.851562, 11.178402 ], [ 22.192383, 11.005904 ], [ 21.708984, 10.574222 ], [ 20.961914, 9.492408 ], [ 20.039062, 9.015302 ], [ 19.072266, 9.102097 ], [ 18.808594, 9.015302 ], [ 18.896484, 8.667918 ], [ 18.369141, 8.320212 ], [ 17.929688, 7.928675 ], [ 16.699219, 7.536764 ], [ 16.435547, 7.754537 ], [ 16.259766, 7.754537 ], [ 16.083984, 7.536764 ], [ 15.249023, 7.449624 ], [ 15.424805, 7.710992 ], [ 14.941406, 8.798225 ], [ 14.501953, 8.971897 ], [ 13.930664, 9.579084 ], [ 14.150391, 10.055403 ], [ 14.589844, 9.925566 ], [ 14.897461, 10.012130 ], [ 15.424805, 10.012130 ], [ 14.897461, 10.919618 ], [ 14.941406, 11.566144 ], [ 14.853516, 12.254128 ], [ 14.458008, 12.897489 ], [ 14.589844, 13.368243 ], [ 13.930664, 13.368243 ], [ 13.930664, 14.008696 ], [ 13.535156, 14.392118 ], [ 13.930664, 15.707663 ], [ 15.205078, 16.636192 ], [ 15.292969, 17.936929 ], [ 15.644531, 19.973349 ], [ 15.864258, 20.427013 ], [ 15.468750, 20.756114 ], [ 15.468750, 21.084500 ], [ 15.073242, 21.330315 ], [ 14.809570, 22.877440 ], [ 15.820312, 23.443089 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.458008, 12.897489 ], [ 14.853516, 12.254128 ], [ 14.941406, 11.566144 ], [ 14.897461, 10.919618 ], [ 15.424805, 10.012130 ], [ 14.897461, 10.012130 ], [ 14.589844, 9.925566 ], [ 14.150391, 10.055403 ], [ 13.930664, 9.579084 ], [ 14.501953, 8.971897 ], [ 14.941406, 8.798225 ], [ 15.424805, 7.710992 ], [ 14.765625, 6.446318 ], [ 14.501953, 6.227934 ], [ 14.458008, 5.484768 ], [ 14.545898, 5.047171 ], [ 14.458008, 4.740675 ], [ 14.941406, 4.214943 ], [ 15.029297, 3.864255 ], [ 15.380859, 3.337954 ], [ 15.820312, 3.030812 ], [ 15.864258, 2.591889 ], [ 15.996094, 2.284551 ], [ 15.908203, 1.757537 ], [ 14.326172, 2.240640 ], [ 13.051758, 2.284551 ], [ 12.919922, 2.328460 ], [ 12.348633, 2.196727 ], [ 11.733398, 2.328460 ], [ 11.250000, 2.284551 ], [ 9.624023, 2.284551 ], [ 9.755859, 3.074695 ], [ 9.404297, 3.776559 ], [ 8.920898, 3.908099 ], [ 8.701172, 4.390229 ], [ 8.481445, 4.521666 ], [ 8.481445, 4.784469 ], [ 8.745117, 5.484768 ], [ 9.228516, 6.446318 ], [ 9.492188, 6.489983 ], [ 10.107422, 7.057282 ], [ 10.458984, 7.057282 ], [ 11.030273, 6.664608 ], [ 11.733398, 7.013668 ], [ 11.821289, 7.406048 ], [ 12.041016, 7.841615 ], [ 12.216797, 8.320212 ], [ 12.744141, 8.754795 ], [ 12.919922, 9.449062 ], [ 13.139648, 9.665738 ], [ 13.535156, 10.833306 ], [ 14.414062, 11.609193 ], [ 14.458008, 11.910354 ], [ 14.545898, 12.125264 ], [ 14.150391, 12.511665 ], [ 14.194336, 12.811801 ], [ 14.458008, 12.897489 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.851562, 11.178402 ], [ 22.939453, 10.746969 ], [ 23.510742, 10.098670 ], [ 23.554688, 9.709057 ], [ 23.378906, 9.275622 ], [ 23.422852, 8.971897 ], [ 25.092773, 7.841615 ], [ 25.092773, 7.536764 ], [ 25.795898, 7.013668 ], [ 26.191406, 6.577303 ], [ 26.455078, 5.965754 ], [ 27.202148, 5.572250 ], [ 27.333984, 5.266008 ], [ 27.026367, 5.134715 ], [ 25.620117, 5.266008 ], [ 25.268555, 5.178482 ], [ 25.092773, 4.959615 ], [ 24.785156, 4.915833 ], [ 24.389648, 5.134715 ], [ 23.291016, 4.653080 ], [ 22.807617, 4.740675 ], [ 22.675781, 4.653080 ], [ 22.368164, 4.039618 ], [ 21.621094, 4.258768 ], [ 20.917969, 4.346411 ], [ 20.258789, 4.696879 ], [ 19.467773, 5.047171 ], [ 18.896484, 4.740675 ], [ 18.500977, 4.214943 ], [ 18.413086, 3.513421 ], [ 17.797852, 3.601142 ], [ 17.094727, 3.732708 ], [ 16.523438, 3.206333 ], [ 15.996094, 2.284551 ], [ 15.864258, 2.591889 ], [ 15.820312, 3.030812 ], [ 15.380859, 3.337954 ], [ 15.029297, 3.864255 ], [ 14.941406, 4.214943 ], [ 14.458008, 4.740675 ], [ 14.545898, 5.047171 ], [ 14.458008, 5.484768 ], [ 14.501953, 6.227934 ], [ 14.765625, 6.446318 ], [ 15.249023, 7.449624 ], [ 16.083984, 7.536764 ], [ 16.259766, 7.754537 ], [ 16.435547, 7.754537 ], [ 16.699219, 7.536764 ], [ 17.929688, 7.928675 ], [ 18.369141, 8.320212 ], [ 18.896484, 8.667918 ], [ 18.808594, 9.015302 ], [ 19.072266, 9.102097 ], [ 20.039062, 9.015302 ], [ 20.961914, 9.492408 ], [ 21.708984, 10.574222 ], [ 22.192383, 11.005904 ], [ 22.851562, 11.178402 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.686523, 35.710838 ], [ 24.213867, 35.389050 ], [ 25.004883, 35.460670 ], [ 25.751953, 35.389050 ], [ 25.708008, 35.209722 ], [ 26.279297, 35.317366 ], [ 26.147461, 35.029996 ], [ 24.697266, 34.921971 ], [ 24.697266, 35.101934 ], [ 23.510742, 35.281501 ], [ 23.686523, 35.710838 ] ] ], [ [ [ 26.103516, 41.836828 ], [ 26.586914, 41.574361 ], [ 26.279297, 40.946714 ], [ 26.015625, 40.847060 ], [ 25.444336, 40.880295 ], [ 24.916992, 40.979898 ], [ 23.686523, 40.713956 ], [ 24.389648, 40.145289 ], [ 23.862305, 39.977120 ], [ 23.334961, 39.977120 ], [ 22.807617, 40.480381 ], [ 22.587891, 40.279526 ], [ 22.807617, 39.673370 ], [ 23.334961, 39.198205 ], [ 22.939453, 38.993572 ], [ 23.510742, 38.513788 ], [ 23.994141, 38.238180 ], [ 24.038086, 37.683820 ], [ 23.071289, 37.926868 ], [ 23.378906, 37.439974 ], [ 22.763672, 37.335224 ], [ 23.115234, 36.456636 ], [ 22.456055, 36.421282 ], [ 21.665039, 36.879621 ], [ 21.269531, 37.649034 ], [ 21.093750, 38.341656 ], [ 20.214844, 39.368279 ], [ 20.126953, 39.639538 ], [ 20.610352, 40.111689 ], [ 20.654297, 40.446947 ], [ 20.961914, 40.580585 ], [ 21.005859, 40.847060 ], [ 21.665039, 40.946714 ], [ 22.016602, 41.178654 ], [ 22.587891, 41.145570 ], [ 22.719727, 41.310824 ], [ 22.939453, 41.343825 ], [ 23.686523, 41.310824 ], [ 24.477539, 41.607228 ], [ 25.180664, 41.244772 ], [ 26.103516, 41.343825 ], [ 26.103516, 41.836828 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.541016, 35.675147 ], [ 33.881836, 35.281501 ], [ 33.969727, 35.065973 ], [ 33.837891, 35.101934 ], [ 33.442383, 35.029996 ], [ 33.354492, 35.173808 ], [ 33.178711, 35.173808 ], [ 32.915039, 35.101934 ], [ 32.695312, 35.173808 ], [ 32.783203, 35.173808 ], [ 32.915039, 35.389050 ], [ 33.662109, 35.389050 ], [ 34.541016, 35.675147 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.354492, 35.173808 ], [ 33.442383, 35.029996 ], [ 33.837891, 35.101934 ], [ 33.969727, 35.065973 ], [ 33.969727, 34.994004 ], [ 32.958984, 34.597042 ], [ 32.475586, 34.705493 ], [ 32.255859, 35.137879 ], [ 32.695312, 35.173808 ], [ 32.915039, 35.101934 ], [ 33.178711, 35.173808 ], [ 33.354492, 35.173808 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.455078, 31.615966 ], [ 28.872070, 30.902225 ], [ 29.663086, 31.203405 ], [ 30.058594, 31.503629 ], [ 30.937500, 31.578535 ], [ 31.684570, 31.466154 ], [ 31.948242, 30.939924 ], [ 32.167969, 31.278551 ], [ 32.958984, 31.052934 ], [ 33.750000, 30.977609 ], [ 34.233398, 31.240985 ], [ 34.892578, 29.535230 ], [ 34.628906, 29.113775 ], [ 34.409180, 28.381735 ], [ 34.145508, 27.839076 ], [ 33.881836, 27.683528 ], [ 33.134766, 28.420391 ], [ 32.387695, 29.878755 ], [ 32.299805, 29.764377 ], [ 32.695312, 28.729130 ], [ 33.310547, 27.722436 ], [ 34.101562, 26.155438 ], [ 34.760742, 25.045792 ], [ 35.683594, 23.966176 ], [ 35.463867, 23.765237 ], [ 35.507812, 23.120154 ], [ 36.650391, 22.228090 ], [ 36.826172, 22.024546 ], [ 24.960938, 22.024546 ], [ 24.960938, 29.267233 ], [ 24.697266, 30.069094 ], [ 24.916992, 30.675715 ], [ 24.785156, 31.090574 ], [ 25.136719, 31.578535 ], [ 26.455078, 31.615966 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.156250, 42.065607 ], [ 36.870117, 41.343825 ], [ 38.320312, 40.979898 ], [ 39.506836, 41.112469 ], [ 40.341797, 41.046217 ], [ 41.528320, 41.541478 ], [ 42.583008, 41.607228 ], [ 43.549805, 41.112469 ], [ 43.725586, 40.747257 ], [ 43.637695, 40.279526 ], [ 44.384766, 40.010787 ], [ 44.780273, 39.740986 ], [ 44.077148, 39.436193 ], [ 44.384766, 38.307181 ], [ 44.208984, 37.996163 ], [ 44.736328, 37.195331 ], [ 44.252930, 37.020098 ], [ 43.901367, 37.265310 ], [ 42.758789, 37.405074 ], [ 42.319336, 37.230328 ], [ 41.176758, 37.090240 ], [ 40.649414, 37.125286 ], [ 39.506836, 36.738884 ], [ 38.671875, 36.738884 ], [ 38.144531, 36.914764 ], [ 37.045898, 36.633162 ], [ 36.738281, 36.844461 ], [ 36.650391, 36.279707 ], [ 36.123047, 35.853440 ], [ 35.771484, 36.279707 ], [ 36.123047, 36.668419 ], [ 35.507812, 36.597889 ], [ 34.672852, 36.809285 ], [ 34.013672, 36.244273 ], [ 32.475586, 36.137875 ], [ 31.684570, 36.668419 ], [ 30.585938, 36.703660 ], [ 30.366211, 36.279707 ], [ 29.663086, 36.173357 ], [ 28.696289, 36.703660 ], [ 27.597656, 36.668419 ], [ 27.026367, 37.683820 ], [ 26.279297, 38.238180 ], [ 26.762695, 38.993572 ], [ 26.147461, 39.470125 ], [ 27.246094, 40.446947 ], [ 28.784180, 40.480381 ], [ 29.223633, 41.244772 ], [ 31.113281, 41.112469 ], [ 32.343750, 41.738528 ], [ 33.486328, 42.032974 ], [ 35.156250, 42.065607 ] ] ], [ [ [ 27.114258, 42.163403 ], [ 27.993164, 42.032974 ], [ 28.081055, 41.640078 ], [ 28.959961, 41.310824 ], [ 28.784180, 41.079351 ], [ 27.597656, 41.013066 ], [ 27.158203, 40.713956 ], [ 26.323242, 40.178873 ], [ 26.015625, 40.647304 ], [ 26.015625, 40.847060 ], [ 26.279297, 40.946714 ], [ 26.586914, 41.574361 ], [ 26.103516, 41.836828 ], [ 27.114258, 42.163403 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.991211, 34.669359 ], [ 36.430664, 34.597042 ], [ 36.606445, 34.234512 ], [ 36.035156, 33.833920 ], [ 35.815430, 33.284620 ], [ 35.551758, 33.284620 ], [ 35.419922, 33.100745 ], [ 35.112305, 33.100745 ], [ 35.463867, 33.906896 ], [ 35.991211, 34.669359 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.319336, 37.230328 ], [ 41.835938, 36.633162 ], [ 41.264648, 36.385913 ], [ 41.352539, 35.639441 ], [ 41.000977, 34.452218 ], [ 38.759766, 33.394759 ], [ 36.826172, 32.324276 ], [ 35.683594, 32.731841 ], [ 35.815430, 32.879587 ], [ 35.815430, 33.284620 ], [ 36.035156, 33.833920 ], [ 36.606445, 34.234512 ], [ 36.430664, 34.597042 ], [ 35.991211, 34.669359 ], [ 35.903320, 35.424868 ], [ 36.123047, 35.853440 ], [ 36.650391, 36.279707 ], [ 36.738281, 36.844461 ], [ 37.045898, 36.633162 ], [ 38.144531, 36.914764 ], [ 38.671875, 36.738884 ], [ 39.506836, 36.738884 ], [ 40.649414, 37.125286 ], [ 41.176758, 37.090240 ], [ 42.319336, 37.230328 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.758789, 37.405074 ], [ 43.901367, 37.265310 ], [ 44.252930, 37.020098 ], [ 44.736328, 37.195331 ], [ 45.395508, 35.995785 ], [ 46.054688, 35.710838 ], [ 46.142578, 35.101934 ], [ 45.615234, 34.777716 ], [ 45.395508, 33.979809 ], [ 46.098633, 33.027088 ], [ 47.329102, 32.472695 ], [ 47.812500, 31.728167 ], [ 47.680664, 31.015279 ], [ 47.988281, 31.015279 ], [ 47.988281, 30.486551 ], [ 48.559570, 29.954935 ], [ 47.285156, 30.069094 ], [ 46.538086, 29.113775 ], [ 44.692383, 29.190533 ], [ 41.879883, 31.203405 ], [ 40.385742, 31.914868 ], [ 39.155273, 32.175612 ], [ 38.759766, 33.394759 ], [ 41.000977, 34.452218 ], [ 41.352539, 35.639441 ], [ 41.264648, 36.385913 ], [ 41.835938, 36.633162 ], [ 42.319336, 37.230328 ], [ 42.758789, 37.405074 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.815430, 33.284620 ], [ 35.815430, 32.879587 ], [ 35.683594, 32.731841 ], [ 35.507812, 32.398516 ], [ 35.156250, 32.546813 ], [ 34.936523, 31.877558 ], [ 35.200195, 31.765537 ], [ 34.936523, 31.653381 ], [ 34.892578, 31.353637 ], [ 35.375977, 31.503629 ], [ 35.419922, 31.128199 ], [ 34.892578, 29.535230 ], [ 34.233398, 31.240985 ], [ 34.541016, 31.578535 ], [ 34.453125, 31.615966 ], [ 34.716797, 32.101190 ], [ 34.936523, 32.842674 ], [ 35.068359, 33.100745 ], [ 35.419922, 33.100745 ], [ 35.551758, 33.284620 ], [ 35.815430, 33.284620 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.156250, 32.546813 ], [ 35.507812, 32.398516 ], [ 35.507812, 31.802893 ], [ 35.375977, 31.503629 ], [ 34.892578, 31.353637 ], [ 34.936523, 31.653381 ], [ 35.200195, 31.765537 ], [ 34.936523, 31.877558 ], [ 35.156250, 32.546813 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.759766, 33.394759 ], [ 39.155273, 32.175612 ], [ 38.979492, 32.026706 ], [ 37.001953, 31.541090 ], [ 37.968750, 30.524413 ], [ 37.661133, 30.372875 ], [ 37.485352, 30.031055 ], [ 36.738281, 29.878755 ], [ 36.474609, 29.535230 ], [ 36.035156, 29.228890 ], [ 34.936523, 29.382175 ], [ 34.892578, 29.535230 ], [ 35.419922, 31.128199 ], [ 35.375977, 31.503629 ], [ 35.507812, 31.802893 ], [ 35.507812, 32.398516 ], [ 35.683594, 32.731841 ], [ 36.826172, 32.324276 ], [ 38.759766, 33.394759 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.826172, 22.024546 ], [ 37.177734, 21.043491 ], [ 36.958008, 20.838278 ], [ 37.089844, 19.808054 ], [ 37.441406, 18.646245 ], [ 38.408203, 18.020528 ], [ 37.880859, 17.434511 ], [ 37.133789, 17.266728 ], [ 36.826172, 16.972741 ], [ 36.738281, 16.299051 ], [ 36.298828, 14.859850 ], [ 36.386719, 14.434680 ], [ 36.254883, 13.581921 ], [ 35.859375, 12.597455 ], [ 35.244141, 12.125264 ], [ 34.804688, 11.350797 ], [ 34.716797, 10.919618 ], [ 34.233398, 10.660608 ], [ 33.925781, 9.492408 ], [ 33.793945, 9.492408 ], [ 33.837891, 10.012130 ], [ 33.706055, 10.358151 ], [ 33.178711, 10.746969 ], [ 33.046875, 11.480025 ], [ 33.178711, 12.211180 ], [ 32.739258, 12.254128 ], [ 32.651367, 12.039321 ], [ 32.036133, 11.996338 ], [ 32.299805, 11.695273 ], [ 32.387695, 11.092166 ], [ 31.816406, 10.574222 ], [ 31.333008, 9.838979 ], [ 30.805664, 9.709057 ], [ 29.970703, 10.314919 ], [ 29.575195, 10.098670 ], [ 29.487305, 9.795678 ], [ 28.959961, 9.622414 ], [ 28.959961, 9.405710 ], [ 27.949219, 9.405710 ], [ 27.817383, 9.622414 ], [ 27.070312, 9.665738 ], [ 26.718750, 9.492408 ], [ 26.455078, 9.579084 ], [ 25.751953, 10.444598 ], [ 25.048828, 10.314919 ], [ 24.785156, 9.838979 ], [ 24.521484, 8.928487 ], [ 23.862305, 8.624472 ], [ 23.422852, 8.971897 ], [ 23.378906, 9.275622 ], [ 23.554688, 9.709057 ], [ 23.510742, 10.098670 ], [ 22.939453, 10.746969 ], [ 22.851562, 11.178402 ], [ 22.851562, 11.393879 ], [ 22.500000, 11.695273 ], [ 22.456055, 12.297068 ], [ 22.280273, 12.683215 ], [ 21.928711, 12.597455 ], [ 22.016602, 12.983148 ], [ 22.280273, 13.410994 ], [ 22.148438, 13.795406 ], [ 22.500000, 14.093957 ], [ 22.280273, 14.349548 ], [ 22.543945, 14.944785 ], [ 22.983398, 15.707663 ], [ 23.862305, 15.623037 ], [ 23.818359, 20.014645 ], [ 24.960938, 20.014645 ], [ 24.960938, 22.024546 ], [ 36.826172, 22.024546 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.739258, 12.254128 ], [ 33.178711, 12.211180 ], [ 33.046875, 11.480025 ], [ 33.178711, 10.746969 ], [ 33.706055, 10.358151 ], [ 33.837891, 10.012130 ], [ 33.793945, 9.492408 ], [ 33.925781, 9.492408 ], [ 33.969727, 8.711359 ], [ 33.793945, 8.407168 ], [ 33.266602, 8.363693 ], [ 32.915039, 7.798079 ], [ 33.530273, 7.754537 ], [ 34.057617, 7.231699 ], [ 34.233398, 6.839170 ], [ 34.672852, 6.620957 ], [ 35.288086, 5.528511 ], [ 33.969727, 4.258768 ], [ 33.354492, 3.820408 ], [ 32.651367, 3.820408 ], [ 31.860352, 3.601142 ], [ 31.245117, 3.820408 ], [ 30.805664, 3.513421 ], [ 29.926758, 4.214943 ], [ 29.707031, 4.609278 ], [ 29.135742, 4.390229 ], [ 28.696289, 4.477856 ], [ 28.388672, 4.302591 ], [ 27.949219, 4.434044 ], [ 27.202148, 5.572250 ], [ 26.455078, 5.965754 ], [ 26.191406, 6.577303 ], [ 25.795898, 7.013668 ], [ 25.092773, 7.536764 ], [ 25.092773, 7.841615 ], [ 23.862305, 8.624472 ], [ 24.521484, 8.928487 ], [ 24.785156, 9.838979 ], [ 25.048828, 10.314919 ], [ 25.751953, 10.444598 ], [ 26.455078, 9.579084 ], [ 26.718750, 9.492408 ], [ 27.070312, 9.665738 ], [ 27.817383, 9.622414 ], [ 27.949219, 9.405710 ], [ 28.959961, 9.405710 ], [ 28.959961, 9.622414 ], [ 29.487305, 9.795678 ], [ 29.575195, 10.098670 ], [ 29.970703, 10.314919 ], [ 30.805664, 9.709057 ], [ 31.333008, 9.838979 ], [ 31.816406, 10.574222 ], [ 32.387695, 11.092166 ], [ 32.299805, 11.695273 ], [ 32.036133, 11.996338 ], [ 32.651367, 12.039321 ], [ 32.739258, 12.254128 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 4.258768 ], [ 34.453125, 3.557283 ], [ 34.584961, 3.074695 ], [ 35.024414, 1.933227 ], [ 34.628906, 1.186439 ], [ 33.881836, 0.131836 ], [ 33.881836, -0.922812 ], [ 31.860352, -1.010690 ], [ 30.761719, -1.010690 ], [ 29.794922, -1.406109 ], [ 29.575195, -1.318243 ], [ 29.575195, -0.571280 ], [ 29.794922, -0.175781 ], [ 29.794922, 0.000000 ], [ 29.838867, 0.615223 ], [ 30.058594, 1.098565 ], [ 30.454102, 1.625758 ], [ 30.849609, 1.889306 ], [ 31.157227, 2.240640 ], [ 30.761719, 2.372369 ], [ 30.805664, 3.513421 ], [ 31.245117, 3.820408 ], [ 31.860352, 3.601142 ], [ 32.651367, 3.820408 ], [ 33.354492, 3.820408 ], [ 33.969727, 4.258768 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.408203, 18.020528 ], [ 38.979492, 16.846605 ], [ 39.243164, 15.961329 ], [ 39.770508, 15.453680 ], [ 41.176758, 14.519780 ], [ 42.583008, 13.025966 ], [ 43.066406, 12.726084 ], [ 42.758789, 12.468760 ], [ 42.319336, 12.554564 ], [ 41.967773, 12.897489 ], [ 41.572266, 13.453737 ], [ 41.132812, 13.795406 ], [ 40.869141, 14.136576 ], [ 39.990234, 14.519780 ], [ 39.331055, 14.562318 ], [ 39.067383, 14.774883 ], [ 38.496094, 14.519780 ], [ 37.880859, 14.987240 ], [ 37.573242, 14.221789 ], [ 36.386719, 14.434680 ], [ 36.298828, 14.859850 ], [ 36.738281, 16.299051 ], [ 36.826172, 16.972741 ], [ 37.133789, 17.266728 ], [ 37.880859, 17.434511 ], [ 38.408203, 18.020528 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.066406, 12.726084 ], [ 43.286133, 12.425848 ], [ 43.286133, 11.996338 ], [ 42.714844, 11.738302 ], [ 43.110352, 11.480025 ], [ 42.758789, 10.962764 ], [ 42.539062, 11.135287 ], [ 42.275391, 11.049038 ], [ 41.748047, 11.092166 ], [ 41.660156, 11.652236 ], [ 42.319336, 12.554564 ], [ 42.758789, 12.468760 ], [ 43.066406, 12.726084 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.288086, 5.528511 ], [ 35.815430, 5.353521 ], [ 35.815430, 4.784469 ], [ 36.123047, 4.477856 ], [ 36.826172, 4.477856 ], [ 38.100586, 3.601142 ], [ 38.627930, 3.645000 ], [ 38.891602, 3.513421 ], [ 39.550781, 3.425692 ], [ 39.814453, 3.864255 ], [ 40.737305, 4.258768 ], [ 41.132812, 3.951941 ], [ 41.835938, 3.951941 ], [ 40.957031, 2.811371 ], [ 40.957031, -0.834931 ], [ 41.572266, -1.669686 ], [ 40.869141, -2.064982 ], [ 40.605469, -2.460181 ], [ 40.253906, -2.547988 ], [ 40.078125, -3.250209 ], [ 39.902344, -3.513421 ], [ 37.705078, -3.513421 ], [ 37.661133, -3.074695 ], [ 33.881836, -0.922812 ], [ 33.881836, 0.131836 ], [ 34.628906, 1.186439 ], [ 35.024414, 1.933227 ], [ 34.584961, 3.074695 ], [ 34.453125, 3.557283 ], [ 33.969727, 4.258768 ], [ 35.288086, 5.528511 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.880859, 14.987240 ], [ 38.496094, 14.519780 ], [ 39.067383, 14.774883 ], [ 39.331055, 14.562318 ], [ 39.990234, 14.519780 ], [ 40.869141, 14.136576 ], [ 41.132812, 13.795406 ], [ 41.572266, 13.453737 ], [ 41.967773, 12.897489 ], [ 42.319336, 12.554564 ], [ 41.660156, 11.652236 ], [ 41.748047, 11.092166 ], [ 42.275391, 11.049038 ], [ 42.539062, 11.135287 ], [ 42.758789, 10.962764 ], [ 42.539062, 10.574222 ], [ 43.286133, 9.579084 ], [ 43.637695, 9.188870 ], [ 46.933594, 8.015716 ], [ 47.768555, 8.015716 ], [ 44.956055, 5.003394 ], [ 43.637695, 4.959615 ], [ 42.758789, 4.258768 ], [ 42.099609, 4.258768 ], [ 41.835938, 3.951941 ], [ 41.132812, 3.951941 ], [ 40.737305, 4.258768 ], [ 39.814453, 3.864255 ], [ 39.550781, 3.425692 ], [ 38.891602, 3.513421 ], [ 38.627930, 3.645000 ], [ 38.100586, 3.601142 ], [ 36.826172, 4.477856 ], [ 36.123047, 4.477856 ], [ 35.815430, 4.784469 ], [ 35.815430, 5.353521 ], [ 35.288086, 5.528511 ], [ 34.672852, 6.620957 ], [ 34.233398, 6.839170 ], [ 34.057617, 7.231699 ], [ 33.530273, 7.754537 ], [ 32.915039, 7.798079 ], [ 33.266602, 8.363693 ], [ 33.793945, 8.407168 ], [ 33.969727, 8.711359 ], [ 33.925781, 9.622414 ], [ 34.233398, 10.660608 ], [ 34.716797, 10.919618 ], [ 34.804688, 11.350797 ], [ 35.244141, 12.125264 ], [ 35.859375, 12.597455 ], [ 36.254883, 13.581921 ], [ 36.386719, 14.434680 ], [ 37.573242, 14.221789 ], [ 37.880859, 14.987240 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.038086, 55.404070 ], [ 70.839844, 55.178868 ], [ 71.147461, 54.136696 ], [ 72.202148, 54.393352 ], [ 73.476562, 54.059388 ], [ 73.388672, 53.514185 ], [ 74.355469, 53.566414 ], [ 76.860352, 54.495568 ], [ 76.508789, 54.188155 ], [ 77.783203, 53.409532 ], [ 80.024414, 50.875311 ], [ 80.551758, 51.399206 ], [ 81.914062, 50.819818 ], [ 83.364258, 51.096623 ], [ 83.891602, 50.903033 ], [ 84.375000, 50.317408 ], [ 85.078125, 50.120578 ], [ 85.517578, 49.696062 ], [ 86.791992, 49.837982 ], [ 87.319336, 49.239121 ], [ 86.572266, 48.574790 ], [ 85.737305, 48.458352 ], [ 85.693359, 47.457809 ], [ 85.122070, 47.010226 ], [ 83.144531, 47.338823 ], [ 82.441406, 45.552525 ], [ 81.914062, 45.336702 ], [ 79.936523, 44.933696 ], [ 80.859375, 43.197167 ], [ 80.156250, 42.940339 ], [ 80.244141, 42.358544 ], [ 79.628906, 42.520700 ], [ 79.101562, 42.875964 ], [ 77.651367, 42.972502 ], [ 75.981445, 43.004647 ], [ 75.629883, 42.908160 ], [ 74.179688, 43.325178 ], [ 73.608398, 43.100983 ], [ 73.476562, 42.520700 ], [ 71.806641, 42.875964 ], [ 71.147461, 42.714732 ], [ 70.927734, 42.293564 ], [ 70.356445, 42.098222 ], [ 69.038086, 41.409776 ], [ 68.598633, 40.680638 ], [ 68.247070, 40.680638 ], [ 67.983398, 41.145570 ], [ 66.708984, 41.178654 ], [ 66.489258, 42.000325 ], [ 66.005859, 42.000325 ], [ 66.093750, 43.004647 ], [ 64.863281, 43.739352 ], [ 63.149414, 43.675818 ], [ 62.006836, 43.516689 ], [ 61.040039, 44.433780 ], [ 58.491211, 45.614037 ], [ 55.898438, 44.995883 ], [ 55.942383, 41.310824 ], [ 55.415039, 41.277806 ], [ 54.711914, 42.065607 ], [ 54.052734, 42.326062 ], [ 52.910156, 42.130821 ], [ 52.470703, 41.804078 ], [ 52.426758, 42.032974 ], [ 52.690430, 42.455888 ], [ 52.470703, 42.811522 ], [ 51.328125, 43.133061 ], [ 50.888672, 44.056012 ], [ 50.317383, 44.308127 ], [ 50.273438, 44.621754 ], [ 51.240234, 44.527843 ], [ 51.284180, 45.274886 ], [ 52.163086, 45.429299 ], [ 52.998047, 45.274886 ], [ 53.217773, 46.255847 ], [ 53.041992, 46.860191 ], [ 52.031250, 46.830134 ], [ 51.152344, 47.070122 ], [ 50.009766, 46.619261 ], [ 49.086914, 46.407564 ], [ 48.559570, 46.589069 ], [ 48.691406, 47.100045 ], [ 48.032227, 47.754098 ], [ 47.285156, 47.724545 ], [ 46.450195, 48.400032 ], [ 47.021484, 49.152970 ], [ 46.713867, 49.382373 ], [ 47.548828, 50.457504 ], [ 48.559570, 49.894634 ], [ 48.691406, 50.625073 ], [ 50.756836, 51.699800 ], [ 52.294922, 51.727028 ], [ 55.678711, 50.625073 ], [ 56.777344, 51.069017 ], [ 58.359375, 51.069017 ], [ 59.633789, 50.569283 ], [ 59.897461, 50.847573 ], [ 61.303711, 50.819818 ], [ 61.567383, 51.289406 ], [ 59.941406, 51.971346 ], [ 60.908203, 52.456009 ], [ 60.732422, 52.722986 ], [ 61.699219, 52.988337 ], [ 60.952148, 53.670680 ], [ 61.435547, 54.007769 ], [ 65.170898, 54.367759 ], [ 65.654297, 54.622978 ], [ 68.159180, 54.977614 ], [ 69.038086, 55.404070 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.491211, 45.614037 ], [ 61.040039, 44.433780 ], [ 62.006836, 43.516689 ], [ 63.149414, 43.675818 ], [ 64.863281, 43.739352 ], [ 66.093750, 43.004647 ], [ 66.005859, 42.000325 ], [ 66.489258, 42.000325 ], [ 66.708984, 41.178654 ], [ 67.983398, 41.145570 ], [ 68.247070, 40.680638 ], [ 68.598633, 40.680638 ], [ 69.038086, 41.409776 ], [ 70.356445, 42.098222 ], [ 70.927734, 42.293564 ], [ 71.235352, 42.195969 ], [ 70.400391, 41.541478 ], [ 71.147461, 41.145570 ], [ 71.850586, 41.409776 ], [ 73.037109, 40.880295 ], [ 71.762695, 40.178873 ], [ 70.971680, 40.245992 ], [ 70.576172, 40.245992 ], [ 70.444336, 40.513799 ], [ 70.664062, 40.979898 ], [ 69.301758, 40.747257 ], [ 68.994141, 40.111689 ], [ 68.510742, 39.537940 ], [ 67.675781, 39.605688 ], [ 67.412109, 39.164141 ], [ 68.159180, 38.925229 ], [ 68.378906, 38.169114 ], [ 67.807617, 37.160317 ], [ 67.060547, 37.370157 ], [ 66.489258, 37.370157 ], [ 66.533203, 37.996163 ], [ 65.214844, 38.410558 ], [ 64.160156, 38.925229 ], [ 63.500977, 39.368279 ], [ 62.358398, 40.078071 ], [ 61.875000, 41.112469 ], [ 61.523438, 41.277806 ], [ 60.424805, 41.244772 ], [ 60.073242, 41.442726 ], [ 59.941406, 42.228517 ], [ 58.623047, 42.779275 ], [ 57.744141, 42.195969 ], [ 56.909180, 41.836828 ], [ 57.084961, 41.343825 ], [ 55.942383, 41.310824 ], [ 55.898438, 44.995883 ], [ 58.491211, 45.614037 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.179688, 43.325178 ], [ 75.629883, 42.908160 ], [ 75.981445, 43.004647 ], [ 77.651367, 42.972502 ], [ 79.101562, 42.875964 ], [ 79.628906, 42.520700 ], [ 80.244141, 42.358544 ], [ 80.112305, 42.130821 ], [ 78.530273, 41.607228 ], [ 78.178711, 41.211722 ], [ 76.904297, 41.079351 ], [ 76.508789, 40.446947 ], [ 75.454102, 40.580585 ], [ 74.750977, 40.380028 ], [ 73.784180, 39.909736 ], [ 73.959961, 39.673370 ], [ 73.652344, 39.436193 ], [ 71.762695, 39.300299 ], [ 70.532227, 39.605688 ], [ 69.433594, 39.537940 ], [ 69.521484, 40.111689 ], [ 70.620117, 39.943436 ], [ 70.971680, 40.245992 ], [ 71.762695, 40.178873 ], [ 73.037109, 40.880295 ], [ 71.850586, 41.409776 ], [ 71.147461, 41.145570 ], [ 70.400391, 41.541478 ], [ 71.235352, 42.195969 ], [ 70.927734, 42.293564 ], [ 71.147461, 42.714732 ], [ 71.806641, 42.875964 ], [ 73.476562, 42.520700 ], [ 73.608398, 43.100983 ], [ 74.179688, 43.325178 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.956055, 41.277806 ], [ 45.175781, 41.013066 ], [ 45.527344, 40.813809 ], [ 45.351562, 40.580585 ], [ 45.878906, 40.245992 ], [ 45.571289, 39.909736 ], [ 46.010742, 39.639538 ], [ 46.450195, 39.470125 ], [ 46.494141, 38.788345 ], [ 46.142578, 38.754083 ], [ 45.703125, 39.334297 ], [ 45.703125, 39.504041 ], [ 45.263672, 39.504041 ], [ 45.000000, 39.740986 ], [ 44.780273, 39.740986 ], [ 44.384766, 40.010787 ], [ 43.637695, 40.279526 ], [ 43.725586, 40.747257 ], [ 43.549805, 41.112469 ], [ 44.956055, 41.277806 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.362305, 41.869561 ], [ 46.669922, 41.836828 ], [ 47.373047, 41.244772 ], [ 47.812500, 41.178654 ], [ 47.944336, 41.409776 ], [ 48.559570, 41.836828 ], [ 49.086914, 41.310824 ], [ 49.614258, 40.580585 ], [ 50.053711, 40.547200 ], [ 50.361328, 40.279526 ], [ 49.526367, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.061849 ], [ 48.823242, 38.822591 ], [ 48.867188, 38.341656 ], [ 48.603516, 38.272689 ], [ 47.988281, 38.822591 ], [ 48.339844, 39.300299 ], [ 48.032227, 39.605688 ], [ 47.680664, 39.537940 ], [ 46.494141, 38.788345 ], [ 46.450195, 39.470125 ], [ 46.010742, 39.639538 ], [ 45.571289, 39.909736 ], [ 45.878906, 40.245992 ], [ 45.351562, 40.580585 ], [ 45.527344, 40.813809 ], [ 45.175781, 41.013066 ], [ 44.956055, 41.277806 ], [ 45.175781, 41.442726 ], [ 45.922852, 41.145570 ], [ 46.494141, 41.079351 ], [ 46.625977, 41.211722 ], [ 46.142578, 41.738528 ], [ 46.362305, 41.869561 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.263672, 39.504041 ], [ 45.703125, 39.504041 ], [ 45.703125, 39.334297 ], [ 46.142578, 38.754083 ], [ 45.439453, 38.891033 ], [ 44.912109, 39.368279 ], [ 44.780273, 39.740986 ], [ 45.000000, 39.740986 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.780273, 39.740986 ], [ 44.912109, 39.368279 ], [ 45.439453, 38.891033 ], [ 46.142578, 38.754083 ], [ 46.494141, 38.788345 ], [ 47.680664, 39.537940 ], [ 48.032227, 39.605688 ], [ 48.339844, 39.300299 ], [ 47.988281, 38.822591 ], [ 48.603516, 38.272689 ], [ 48.867188, 38.341656 ], [ 49.174805, 37.614231 ], [ 50.141602, 37.405074 ], [ 50.800781, 36.879621 ], [ 52.250977, 36.703660 ], [ 53.789062, 36.985003 ], [ 53.920898, 37.230328 ], [ 54.799805, 37.405074 ], [ 55.502930, 37.996163 ], [ 56.162109, 37.961523 ], [ 56.601562, 38.134557 ], [ 57.304688, 38.030786 ], [ 58.403320, 37.544577 ], [ 59.194336, 37.439974 ], [ 60.336914, 36.562600 ], [ 61.083984, 36.491973 ], [ 61.171875, 35.675147 ], [ 60.512695, 33.687782 ], [ 60.952148, 33.541395 ], [ 60.512695, 32.990236 ], [ 60.820312, 32.212801 ], [ 60.908203, 31.578535 ], [ 61.699219, 31.391158 ], [ 61.743164, 30.751278 ], [ 60.864258, 29.840644 ], [ 61.347656, 29.305561 ], [ 61.743164, 28.729130 ], [ 62.709961, 28.265682 ], [ 62.753906, 27.410786 ], [ 63.193359, 27.254630 ], [ 63.281250, 26.784847 ], [ 61.831055, 26.273714 ], [ 61.479492, 25.085599 ], [ 58.491211, 25.641526 ], [ 57.392578, 25.760320 ], [ 56.953125, 26.980829 ], [ 56.469727, 27.176469 ], [ 55.722656, 26.980829 ], [ 54.711914, 26.509905 ], [ 53.481445, 26.824071 ], [ 52.470703, 27.605671 ], [ 51.503906, 27.877928 ], [ 50.844727, 28.844674 ], [ 50.097656, 30.183122 ], [ 49.570312, 29.993002 ], [ 48.911133, 30.334954 ], [ 48.559570, 29.954935 ], [ 47.988281, 30.486551 ], [ 47.988281, 31.015279 ], [ 47.680664, 31.015279 ], [ 47.812500, 31.728167 ], [ 47.329102, 32.472695 ], [ 46.098633, 33.027088 ], [ 45.395508, 33.979809 ], [ 45.615234, 34.777716 ], [ 46.142578, 35.101934 ], [ 46.054688, 35.710838 ], [ 45.395508, 35.995785 ], [ 44.736328, 37.195331 ], [ 44.208984, 37.996163 ], [ 44.384766, 38.307181 ], [ 44.077148, 39.436193 ], [ 44.780273, 39.740986 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.285156, 30.069094 ], [ 47.944336, 29.993002 ], [ 48.164062, 29.535230 ], [ 48.076172, 29.343875 ], [ 48.383789, 28.574874 ], [ 47.680664, 28.536275 ], [ 47.416992, 29.036961 ], [ 46.538086, 29.113775 ], [ 47.285156, 30.069094 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.155273, 32.175612 ], [ 40.385742, 31.914868 ], [ 41.879883, 31.203405 ], [ 44.692383, 29.190533 ], [ 46.538086, 29.113775 ], [ 47.416992, 29.036961 ], [ 47.680664, 28.536275 ], [ 48.383789, 28.574874 ], [ 48.779297, 27.722436 ], [ 49.262695, 27.488781 ], [ 49.438477, 27.137368 ], [ 50.141602, 26.706360 ], [ 50.185547, 26.313113 ], [ 50.097656, 25.958045 ], [ 50.229492, 25.641526 ], [ 50.493164, 25.363882 ], [ 50.800781, 24.766785 ], [ 51.108398, 24.567108 ], [ 51.372070, 24.647017 ], [ 51.987305, 23.039298 ], [ 54.975586, 22.512557 ], [ 55.195312, 22.715390 ], [ 55.634766, 22.024546 ], [ 54.975586, 20.014645 ], [ 51.987305, 19.020577 ], [ 49.086914, 18.646245 ], [ 48.164062, 18.187607 ], [ 47.460938, 17.140790 ], [ 46.977539, 16.972741 ], [ 46.713867, 17.308688 ], [ 46.362305, 17.266728 ], [ 45.395508, 17.350638 ], [ 45.175781, 17.434511 ], [ 44.033203, 17.434511 ], [ 43.769531, 17.350638 ], [ 43.374023, 17.602139 ], [ 43.110352, 17.098792 ], [ 43.198242, 16.678293 ], [ 42.758789, 16.383391 ], [ 42.626953, 16.804541 ], [ 42.319336, 17.098792 ], [ 42.231445, 17.476432 ], [ 41.748047, 17.853290 ], [ 41.220703, 18.687879 ], [ 40.913086, 19.518375 ], [ 40.209961, 20.179724 ], [ 39.770508, 20.344627 ], [ 39.111328, 21.330315 ], [ 39.023438, 22.024546 ], [ 39.023438, 22.593726 ], [ 38.452148, 23.725012 ], [ 38.012695, 24.086589 ], [ 37.441406, 24.287027 ], [ 37.133789, 24.886436 ], [ 37.177734, 25.085599 ], [ 36.914062, 25.641526 ], [ 36.606445, 25.839449 ], [ 36.210938, 26.588527 ], [ 35.112305, 28.071980 ], [ 34.628906, 28.071980 ], [ 34.936523, 29.382175 ], [ 36.035156, 29.228890 ], [ 36.474609, 29.535230 ], [ 36.738281, 29.878755 ], [ 37.485352, 30.031055 ], [ 37.661133, 30.372875 ], [ 37.968750, 30.524413 ], [ 37.001953, 31.541090 ], [ 38.979492, 32.026706 ], [ 39.155273, 32.175612 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.284180, 26.115986 ], [ 51.547852, 25.839449 ], [ 51.591797, 25.244696 ], [ 51.372070, 24.647017 ], [ 51.108398, 24.567108 ], [ 50.800781, 24.766785 ], [ 50.712891, 25.482951 ], [ 50.976562, 26.037042 ], [ 51.284180, 26.115986 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.030273, 26.076521 ], [ 56.250000, 25.720735 ], [ 56.381836, 24.926295 ], [ 55.854492, 24.926295 ], [ 55.766602, 24.287027 ], [ 55.942383, 24.166802 ], [ 55.502930, 23.966176 ], [ 55.502930, 23.563987 ], [ 55.195312, 23.120154 ], [ 55.195312, 22.715390 ], [ 54.975586, 22.512557 ], [ 51.987305, 23.039298 ], [ 51.547852, 24.246965 ], [ 51.723633, 24.327077 ], [ 51.767578, 24.046464 ], [ 52.558594, 24.206890 ], [ 53.964844, 24.126702 ], [ 56.030273, 26.076521 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.623047, 42.779275 ], [ 59.941406, 42.228517 ], [ 60.073242, 41.442726 ], [ 60.424805, 41.244772 ], [ 61.523438, 41.277806 ], [ 61.875000, 41.112469 ], [ 62.358398, 40.078071 ], [ 63.500977, 39.368279 ], [ 64.160156, 38.925229 ], [ 65.214844, 38.410558 ], [ 66.533203, 37.996163 ], [ 66.489258, 37.370157 ], [ 66.181641, 37.405074 ], [ 65.742188, 37.683820 ], [ 65.566406, 37.335224 ], [ 64.731445, 37.125286 ], [ 64.511719, 36.315125 ], [ 63.940430, 36.031332 ], [ 63.193359, 35.889050 ], [ 62.973633, 35.424868 ], [ 62.226562, 35.281501 ], [ 61.171875, 35.675147 ], [ 61.083984, 36.491973 ], [ 60.336914, 36.562600 ], [ 59.194336, 37.439974 ], [ 58.403320, 37.544577 ], [ 57.304688, 38.030786 ], [ 56.601562, 38.134557 ], [ 56.162109, 37.961523 ], [ 55.502930, 37.996163 ], [ 54.799805, 37.405074 ], [ 53.920898, 37.230328 ], [ 53.701172, 37.926868 ], [ 53.876953, 38.959409 ], [ 53.085938, 39.300299 ], [ 53.349609, 39.977120 ], [ 52.690430, 40.044438 ], [ 52.910156, 40.880295 ], [ 53.833008, 40.647304 ], [ 54.711914, 40.979898 ], [ 53.964844, 41.574361 ], [ 53.701172, 42.130821 ], [ 52.910156, 41.869561 ], [ 52.778320, 41.145570 ], [ 52.470703, 41.804078 ], [ 52.910156, 42.130821 ], [ 54.052734, 42.326062 ], [ 54.711914, 42.065607 ], [ 55.415039, 41.277806 ], [ 57.084961, 41.343825 ], [ 56.909180, 41.836828 ], [ 57.744141, 42.195969 ], [ 58.623047, 42.779275 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.987305, 19.020577 ], [ 53.085938, 16.678293 ], [ 52.382812, 16.383391 ], [ 52.163086, 15.961329 ], [ 52.163086, 15.623037 ], [ 51.152344, 15.199386 ], [ 49.570312, 14.732386 ], [ 48.647461, 14.008696 ], [ 48.208008, 13.966054 ], [ 47.900391, 14.008696 ], [ 47.329102, 13.624633 ], [ 46.713867, 13.410994 ], [ 45.615234, 13.325485 ], [ 45.395508, 13.068777 ], [ 45.131836, 12.983148 ], [ 44.956055, 12.726084 ], [ 44.472656, 12.726084 ], [ 44.165039, 12.597455 ], [ 43.461914, 12.640338 ], [ 43.198242, 13.239945 ], [ 43.242188, 13.795406 ], [ 43.066406, 14.093957 ], [ 42.890625, 14.817371 ], [ 42.583008, 15.241790 ], [ 42.802734, 15.284185 ], [ 42.670898, 15.749963 ], [ 42.802734, 15.919074 ], [ 42.758789, 16.383391 ], [ 43.198242, 16.678293 ], [ 43.110352, 17.098792 ], [ 43.374023, 17.602139 ], [ 43.769531, 17.350638 ], [ 44.033203, 17.434511 ], [ 45.175781, 17.434511 ], [ 45.395508, 17.350638 ], [ 46.362305, 17.266728 ], [ 46.713867, 17.308688 ], [ 46.977539, 16.972741 ], [ 47.460938, 17.140790 ], [ 48.164062, 18.187607 ], [ 49.086914, 18.646245 ], [ 51.987305, 19.020577 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.381836, 24.926295 ], [ 56.821289, 24.246965 ], [ 57.392578, 23.885838 ], [ 58.095703, 23.765237 ], [ 58.710938, 23.604262 ], [ 59.414062, 22.674847 ], [ 59.765625, 22.553147 ], [ 59.765625, 22.350076 ], [ 59.282227, 21.453069 ], [ 58.842773, 21.125498 ], [ 58.447266, 20.468189 ], [ 58.007812, 20.509355 ], [ 57.788086, 20.262197 ], [ 57.656250, 19.766704 ], [ 57.788086, 19.103648 ], [ 57.656250, 18.979026 ], [ 57.216797, 18.979026 ], [ 56.601562, 18.604601 ], [ 56.469727, 18.104087 ], [ 56.250000, 17.895114 ], [ 55.634766, 17.895114 ], [ 55.239258, 17.644022 ], [ 55.239258, 17.266728 ], [ 54.755859, 16.972741 ], [ 54.228516, 17.056785 ], [ 53.569336, 16.720385 ], [ 53.085938, 16.678293 ], [ 51.987305, 19.020577 ], [ 54.975586, 20.014645 ], [ 55.634766, 22.024546 ], [ 55.195312, 22.715390 ], [ 55.195312, 23.120154 ], [ 55.502930, 23.563987 ], [ 55.502930, 23.966176 ], [ 55.942383, 24.166802 ], [ 55.766602, 24.287027 ], [ 55.854492, 24.926295 ], [ 56.381836, 24.926295 ] ] ], [ [ [ 56.337891, 26.431228 ], [ 56.469727, 26.313113 ], [ 56.381836, 25.918526 ], [ 56.250000, 25.720735 ], [ 56.030273, 26.076521 ], [ 56.337891, 26.431228 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.110352, 11.480025 ], [ 43.461914, 11.307708 ], [ 43.637695, 10.876465 ], [ 44.077148, 10.487812 ], [ 44.604492, 10.444598 ], [ 45.527344, 10.703792 ], [ 46.625977, 10.833306 ], [ 47.504883, 11.135287 ], [ 47.988281, 11.221510 ], [ 48.339844, 11.393879 ], [ 48.911133, 11.436955 ], [ 48.911133, 9.492408 ], [ 47.768555, 8.015716 ], [ 46.933594, 8.015716 ], [ 43.637695, 9.188870 ], [ 43.286133, 9.579084 ], [ 42.539062, 10.574222 ], [ 43.110352, 11.480025 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.108398, 12.039321 ], [ 51.020508, 10.660608 ], [ 50.800781, 10.314919 ], [ 50.537109, 9.232249 ], [ 50.053711, 8.102739 ], [ 49.438477, 6.839170 ], [ 48.559570, 5.353521 ], [ 47.724609, 4.258768 ], [ 46.538086, 2.899153 ], [ 45.527344, 2.064982 ], [ 44.033203, 1.054628 ], [ 43.110352, 0.307616 ], [ 42.846680, 0.000000 ], [ 42.011719, -0.878872 ], [ 41.791992, -1.406109 ], [ 41.572266, -1.669686 ], [ 40.957031, -0.834931 ], [ 40.957031, 2.811371 ], [ 42.099609, 4.258768 ], [ 42.758789, 4.258768 ], [ 43.637695, 4.959615 ], [ 44.956055, 5.003394 ], [ 47.768555, 8.015716 ], [ 48.911133, 9.492408 ], [ 48.911133, 11.436955 ], [ 49.702148, 11.609193 ], [ 50.229492, 11.695273 ], [ 50.712891, 12.039321 ], [ 51.108398, 12.039321 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.979898 ], [ 70.444336, 40.513799 ], [ 70.576172, 40.245992 ], [ 70.971680, 40.245992 ], [ 70.620117, 39.943436 ], [ 69.521484, 40.111689 ], [ 69.433594, 39.537940 ], [ 70.532227, 39.605688 ], [ 71.762695, 39.300299 ], [ 73.652344, 39.436193 ], [ 73.916016, 38.513788 ], [ 74.223633, 38.616870 ], [ 74.838867, 38.410558 ], [ 74.794922, 37.996163 ], [ 74.970703, 37.439974 ], [ 73.916016, 37.439974 ], [ 73.256836, 37.509726 ], [ 72.597656, 37.055177 ], [ 72.158203, 36.949892 ], [ 71.806641, 36.738884 ], [ 71.411133, 37.090240 ], [ 71.499023, 37.926868 ], [ 71.235352, 37.961523 ], [ 71.323242, 38.272689 ], [ 70.795898, 38.513788 ], [ 70.356445, 38.169114 ], [ 70.268555, 37.753344 ], [ 70.092773, 37.614231 ], [ 69.477539, 37.614231 ], [ 69.169922, 37.160317 ], [ 68.818359, 37.370157 ], [ 68.115234, 37.055177 ], [ 67.807617, 37.160317 ], [ 68.378906, 38.169114 ], [ 68.159180, 38.925229 ], [ 67.412109, 39.164141 ], [ 67.675781, 39.605688 ], [ 68.510742, 39.537940 ], [ 68.994141, 40.111689 ], [ 69.301758, 40.747257 ], [ 70.664062, 40.979898 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.795898, 38.513788 ], [ 71.323242, 38.272689 ], [ 71.235352, 37.961523 ], [ 71.499023, 37.926868 ], [ 71.411133, 37.090240 ], [ 71.806641, 36.738884 ], [ 72.158203, 36.949892 ], [ 72.597656, 37.055177 ], [ 73.256836, 37.509726 ], [ 73.916016, 37.439974 ], [ 74.970703, 37.439974 ], [ 75.146484, 37.160317 ], [ 74.575195, 37.055177 ], [ 74.047852, 36.844461 ], [ 72.905273, 36.738884 ], [ 71.806641, 36.527295 ], [ 71.235352, 36.102376 ], [ 71.455078, 35.675147 ], [ 71.586914, 35.173808 ], [ 71.103516, 34.741612 ], [ 71.147461, 34.379713 ], [ 70.839844, 34.016242 ], [ 69.916992, 34.052659 ], [ 70.312500, 33.394759 ], [ 69.653320, 33.137551 ], [ 69.257812, 32.509762 ], [ 69.301758, 31.914868 ], [ 68.906250, 31.653381 ], [ 68.554688, 31.728167 ], [ 67.763672, 31.615966 ], [ 67.675781, 31.316101 ], [ 66.928711, 31.316101 ], [ 66.357422, 30.751278 ], [ 66.313477, 29.916852 ], [ 65.039062, 29.496988 ], [ 64.335938, 29.573457 ], [ 64.116211, 29.343875 ], [ 63.544922, 29.496988 ], [ 62.534180, 29.343875 ], [ 60.864258, 29.840644 ], [ 61.743164, 30.751278 ], [ 61.699219, 31.391158 ], [ 60.908203, 31.578535 ], [ 60.820312, 32.212801 ], [ 60.512695, 32.990236 ], [ 60.952148, 33.541395 ], [ 60.512695, 33.687782 ], [ 61.171875, 35.675147 ], [ 62.226562, 35.281501 ], [ 62.973633, 35.424868 ], [ 63.193359, 35.889050 ], [ 63.940430, 36.031332 ], [ 64.511719, 36.315125 ], [ 64.731445, 37.125286 ], [ 65.566406, 37.335224 ], [ 65.742188, 37.683820 ], [ 66.181641, 37.405074 ], [ 67.060547, 37.370157 ], [ 68.115234, 37.055177 ], [ 68.818359, 37.370157 ], [ 69.169922, 37.160317 ], [ 69.477539, 37.614231 ], [ 70.092773, 37.614231 ], [ 70.268555, 37.753344 ], [ 70.356445, 38.169114 ], [ 70.795898, 38.513788 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.146484, 37.160317 ], [ 75.893555, 36.668419 ], [ 76.157227, 35.924645 ], [ 77.827148, 35.496456 ], [ 76.860352, 34.669359 ], [ 75.717773, 34.524661 ], [ 74.223633, 34.777716 ], [ 73.740234, 34.343436 ], [ 74.443359, 32.768800 ], [ 75.234375, 32.287133 ], [ 74.399414, 31.728167 ], [ 74.399414, 31.015279 ], [ 73.432617, 29.993002 ], [ 72.817383, 28.998532 ], [ 71.762695, 27.916767 ], [ 70.576172, 27.994401 ], [ 69.477539, 26.941660 ], [ 70.136719, 26.509905 ], [ 70.268555, 25.760320 ], [ 70.839844, 25.244696 ], [ 71.015625, 24.367114 ], [ 68.818359, 24.367114 ], [ 68.159180, 23.725012 ], [ 67.412109, 23.966176 ], [ 67.104492, 24.686952 ], [ 66.357422, 25.443275 ], [ 64.511719, 25.244696 ], [ 62.885742, 25.244696 ], [ 61.479492, 25.085599 ], [ 61.831055, 26.273714 ], [ 63.281250, 26.784847 ], [ 63.193359, 27.254630 ], [ 62.753906, 27.410786 ], [ 62.709961, 28.265682 ], [ 61.743164, 28.729130 ], [ 61.347656, 29.305561 ], [ 60.864258, 29.840644 ], [ 62.534180, 29.343875 ], [ 63.544922, 29.496988 ], [ 64.116211, 29.343875 ], [ 64.335938, 29.573457 ], [ 65.039062, 29.496988 ], [ 66.313477, 29.916852 ], [ 66.357422, 30.751278 ], [ 66.928711, 31.316101 ], [ 67.675781, 31.316101 ], [ 67.763672, 31.615966 ], [ 68.554688, 31.728167 ], [ 68.906250, 31.653381 ], [ 69.301758, 31.914868 ], [ 69.257812, 32.509762 ], [ 69.653320, 33.137551 ], [ 70.312500, 33.394759 ], [ 69.916992, 34.052659 ], [ 70.839844, 34.016242 ], [ 71.147461, 34.379713 ], [ 71.103516, 34.741612 ], [ 71.586914, 35.173808 ], [ 71.455078, 35.675147 ], [ 71.235352, 36.102376 ], [ 71.806641, 36.527295 ], [ 72.905273, 36.738884 ], [ 74.047852, 36.844461 ], [ 74.575195, 37.055177 ], [ 75.146484, 37.160317 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.518555, 30.448674 ], [ 82.309570, 30.145127 ], [ 83.320312, 29.496988 ], [ 83.891602, 29.343875 ], [ 84.199219, 28.844674 ], [ 84.990234, 28.652031 ], [ 85.781250, 28.226970 ], [ 86.923828, 27.994401 ], [ 88.110352, 27.877928 ], [ 88.022461, 27.449790 ], [ 88.154297, 26.824071 ], [ 88.022461, 26.431228 ], [ 87.187500, 26.431228 ], [ 85.209961, 26.745610 ], [ 84.638672, 27.254630 ], [ 83.276367, 27.371767 ], [ 81.958008, 27.955591 ], [ 81.035156, 28.420391 ], [ 80.068359, 28.806174 ], [ 80.463867, 29.764377 ], [ 81.518555, 30.448674 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.827148, 35.496456 ], [ 78.881836, 34.343436 ], [ 78.793945, 33.541395 ], [ 79.189453, 33.027088 ], [ 79.145508, 32.509762 ], [ 78.442383, 32.620870 ], [ 78.706055, 31.541090 ], [ 79.716797, 30.902225 ], [ 81.079102, 30.221102 ], [ 80.463867, 29.764377 ], [ 80.068359, 28.806174 ], [ 81.035156, 28.420391 ], [ 81.958008, 27.955591 ], [ 83.276367, 27.371767 ], [ 84.638672, 27.254630 ], [ 85.209961, 26.745610 ], [ 87.187500, 26.431228 ], [ 88.022461, 26.431228 ], [ 88.154297, 26.824071 ], [ 88.022461, 27.449790 ], [ 88.110352, 27.877928 ], [ 88.725586, 28.110749 ], [ 88.813477, 27.137368 ], [ 89.736328, 26.745610 ], [ 90.351562, 26.902477 ], [ 91.186523, 26.824071 ], [ 92.021484, 26.863281 ], [ 92.065430, 27.488781 ], [ 91.669922, 27.800210 ], [ 92.460938, 27.916767 ], [ 93.383789, 28.652031 ], [ 94.526367, 29.305561 ], [ 95.361328, 29.036961 ], [ 96.108398, 29.458731 ], [ 96.547852, 28.844674 ], [ 96.240234, 28.420391 ], [ 97.294922, 28.265682 ], [ 97.382812, 27.916767 ], [ 97.031250, 27.722436 ], [ 97.119141, 27.098254 ], [ 96.416016, 27.293689 ], [ 95.097656, 26.588527 ], [ 95.141602, 26.037042 ], [ 94.570312, 25.165173 ], [ 94.526367, 24.686952 ], [ 94.086914, 23.885838 ], [ 93.295898, 24.086589 ], [ 93.251953, 23.079732 ], [ 93.032227, 22.715390 ], [ 93.164062, 22.309426 ], [ 92.636719, 22.065278 ], [ 92.109375, 23.644524 ], [ 91.845703, 23.644524 ], [ 91.669922, 22.998852 ], [ 91.142578, 23.523700 ], [ 91.450195, 24.086589 ], [ 91.889648, 24.166802 ], [ 92.373047, 25.005973 ], [ 91.757812, 25.165173 ], [ 90.834961, 25.165173 ], [ 89.912109, 25.284438 ], [ 89.824219, 25.997550 ], [ 89.340820, 26.037042 ], [ 88.549805, 26.470573 ], [ 88.198242, 25.799891 ], [ 88.901367, 25.244696 ], [ 88.286133, 24.886436 ], [ 88.066406, 24.527135 ], [ 88.681641, 24.246965 ], [ 88.505859, 23.644524 ], [ 88.857422, 22.917923 ], [ 88.989258, 22.065278 ], [ 88.857422, 21.698265 ], [ 88.198242, 21.739091 ], [ 86.967773, 21.534847 ], [ 87.011719, 20.756114 ], [ 86.484375, 20.179724 ], [ 85.034180, 19.518375 ], [ 83.935547, 18.312811 ], [ 83.188477, 17.685895 ], [ 82.177734, 17.056785 ], [ 82.177734, 16.594081 ], [ 80.771484, 15.961329 ], [ 80.288086, 15.919074 ], [ 80.024414, 15.156974 ], [ 80.200195, 13.838080 ], [ 80.244141, 13.025966 ], [ 79.848633, 12.082296 ], [ 79.848633, 10.358151 ], [ 79.321289, 10.314919 ], [ 78.881836, 9.579084 ], [ 79.189453, 9.232249 ], [ 78.266602, 8.971897 ], [ 77.915039, 8.276727 ], [ 77.519531, 7.972198 ], [ 76.552734, 8.928487 ], [ 75.717773, 11.350797 ], [ 75.366211, 11.781325 ], [ 74.838867, 12.768946 ], [ 74.443359, 14.647368 ], [ 73.520508, 16.003576 ], [ 72.817383, 19.228177 ], [ 72.817383, 20.427013 ], [ 72.597656, 21.371244 ], [ 71.147461, 20.797201 ], [ 70.444336, 20.879343 ], [ 69.125977, 22.105999 ], [ 69.609375, 22.471955 ], [ 69.345703, 22.877440 ], [ 68.159180, 23.725012 ], [ 68.818359, 24.367114 ], [ 71.015625, 24.367114 ], [ 70.839844, 25.244696 ], [ 70.268555, 25.760320 ], [ 70.136719, 26.509905 ], [ 69.477539, 26.941660 ], [ 70.576172, 27.994401 ], [ 71.762695, 27.916767 ], [ 72.817383, 28.998532 ], [ 73.432617, 29.993002 ], [ 74.399414, 31.015279 ], [ 74.399414, 31.728167 ], [ 75.234375, 32.287133 ], [ 74.443359, 32.768800 ], [ 73.740234, 34.343436 ], [ 74.223633, 34.777716 ], [ 75.717773, 34.524661 ], [ 76.860352, 34.669359 ], [ 77.827148, 35.496456 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.112305, 9.838979 ], [ 80.815430, 9.275622 ], [ 81.298828, 8.581021 ], [ 81.782227, 7.536764 ], [ 81.606445, 6.489983 ], [ 81.210938, 6.227934 ], [ 80.332031, 6.009459 ], [ 79.848633, 6.795535 ], [ 79.672852, 8.233237 ], [ 80.112305, 9.838979 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.833008, 52.052490 ], [ 99.975586, 51.645294 ], [ 100.854492, 51.536086 ], [ 102.041016, 51.261915 ], [ 102.216797, 50.513427 ], [ 103.666992, 50.092393 ], [ 104.589844, 50.289339 ], [ 105.864258, 50.429518 ], [ 106.875000, 50.289339 ], [ 107.841797, 49.809632 ], [ 108.457031, 49.296472 ], [ 109.379883, 49.296472 ], [ 110.654297, 49.152970 ], [ 111.577148, 49.382373 ], [ 112.895508, 49.553726 ], [ 114.345703, 50.261254 ], [ 114.960938, 50.148746 ], [ 115.444336, 49.809632 ], [ 116.674805, 49.894634 ], [ 115.444336, 48.136767 ], [ 115.708008, 47.754098 ], [ 116.279297, 47.872144 ], [ 117.290039, 47.724545 ], [ 118.037109, 48.078079 ], [ 118.828125, 47.754098 ], [ 119.750977, 47.070122 ], [ 119.663086, 46.709736 ], [ 118.872070, 46.830134 ], [ 117.377930, 46.679594 ], [ 116.674805, 46.407564 ], [ 115.971680, 45.736860 ], [ 114.433594, 45.367584 ], [ 113.422852, 44.809122 ], [ 111.840820, 45.120053 ], [ 111.313477, 44.465151 ], [ 111.665039, 44.087585 ], [ 111.796875, 43.771094 ], [ 111.093750, 43.421009 ], [ 110.390625, 42.875964 ], [ 109.204102, 42.520700 ], [ 107.709961, 42.488302 ], [ 106.127930, 42.163403 ], [ 104.941406, 41.607228 ], [ 104.501953, 41.934977 ], [ 103.271484, 41.934977 ], [ 101.821289, 42.520700 ], [ 100.810547, 42.682435 ], [ 99.492188, 42.553080 ], [ 97.426758, 42.779275 ], [ 96.328125, 42.747012 ], [ 95.756836, 43.325178 ], [ 95.273438, 44.245199 ], [ 94.658203, 44.370987 ], [ 93.471680, 44.995883 ], [ 90.922852, 45.305803 ], [ 90.571289, 45.736860 ], [ 90.966797, 46.890232 ], [ 90.263672, 47.694974 ], [ 88.813477, 48.078079 ], [ 87.978516, 48.603858 ], [ 87.714844, 49.325122 ], [ 88.769531, 49.496675 ], [ 90.703125, 50.345460 ], [ 92.197266, 50.819818 ], [ 93.076172, 50.513427 ], [ 94.130859, 50.485474 ], [ 94.790039, 50.035974 ], [ 95.800781, 49.979488 ], [ 97.250977, 49.752880 ], [ 98.217773, 50.429518 ], [ 97.822266, 51.013755 ], [ 98.833008, 52.052490 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.000000, 28.304381 ], [ 90.703125, 28.071980 ], [ 91.230469, 28.071980 ], [ 91.669922, 27.800210 ], [ 92.065430, 27.488781 ], [ 92.021484, 26.863281 ], [ 91.186523, 26.824071 ], [ 90.351562, 26.902477 ], [ 89.736328, 26.745610 ], [ 88.813477, 27.137368 ], [ 88.813477, 27.332735 ], [ 89.472656, 28.071980 ], [ 90.000000, 28.304381 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.549805, 26.470573 ], [ 89.340820, 26.037042 ], [ 89.824219, 25.997550 ], [ 89.912109, 25.284438 ], [ 90.834961, 25.165173 ], [ 91.757812, 25.165173 ], [ 92.373047, 25.005973 ], [ 91.889648, 24.166802 ], [ 91.450195, 24.086589 ], [ 91.142578, 23.523700 ], [ 91.669922, 22.998852 ], [ 91.845703, 23.644524 ], [ 92.109375, 23.644524 ], [ 92.636719, 22.065278 ], [ 92.636719, 21.330315 ], [ 92.285156, 21.493964 ], [ 92.329102, 20.673905 ], [ 92.065430, 21.207459 ], [ 92.021484, 21.739091 ], [ 91.801758, 22.187405 ], [ 91.406250, 22.796439 ], [ 90.483398, 22.836946 ], [ 90.571289, 22.431340 ], [ 90.263672, 21.861499 ], [ 89.824219, 22.065278 ], [ 89.692383, 21.861499 ], [ 88.989258, 22.065278 ], [ 88.857422, 22.917923 ], [ 88.505859, 23.644524 ], [ 88.681641, 24.246965 ], [ 88.066406, 24.527135 ], [ 88.286133, 24.886436 ], [ 88.901367, 25.244696 ], [ 88.198242, 25.799891 ], [ 88.549805, 26.470573 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.170898, 20.138470 ], [ 110.786133, 20.097206 ], [ 111.005859, 19.725342 ], [ 110.566406, 19.269665 ], [ 110.302734, 18.687879 ], [ 109.467773, 18.229351 ], [ 108.632812, 18.521283 ], [ 108.588867, 19.394068 ], [ 109.116211, 19.849394 ], [ 110.170898, 20.138470 ] ] ], [ [ [ 123.530273, 53.461890 ], [ 125.024414, 53.173119 ], [ 125.903320, 52.802761 ], [ 126.562500, 51.808615 ], [ 126.914062, 51.371780 ], [ 127.265625, 50.764259 ], [ 127.617188, 49.781264 ], [ 129.375000, 49.468124 ], [ 130.561523, 48.748945 ], [ 130.957031, 47.813155 ], [ 132.495117, 47.813155 ], [ 133.330078, 48.195387 ], [ 135.000000, 48.487486 ], [ 134.472656, 47.606163 ], [ 134.077148, 47.219568 ], [ 133.769531, 46.134170 ], [ 133.066406, 45.151053 ], [ 131.879883, 45.336702 ], [ 131.000977, 44.995883 ], [ 131.264648, 44.119142 ], [ 131.132812, 42.940339 ], [ 130.605469, 42.908160 ], [ 130.605469, 42.423457 ], [ 129.990234, 43.004647 ], [ 129.594727, 42.455888 ], [ 128.012695, 42.000325 ], [ 128.188477, 41.475660 ], [ 127.309570, 41.508577 ], [ 126.826172, 41.836828 ], [ 126.166992, 41.112469 ], [ 125.068359, 40.580585 ], [ 124.233398, 39.943436 ], [ 122.827148, 39.639538 ], [ 122.124023, 39.198205 ], [ 121.025391, 38.925229 ], [ 121.552734, 39.368279 ], [ 121.333008, 39.774769 ], [ 122.167969, 40.446947 ], [ 121.596680, 40.946714 ], [ 120.761719, 40.613952 ], [ 119.619141, 39.909736 ], [ 119.003906, 39.266284 ], [ 118.037109, 39.232253 ], [ 117.509766, 38.754083 ], [ 118.037109, 38.065392 ], [ 118.872070, 37.926868 ], [ 118.872070, 37.474858 ], [ 119.663086, 37.160317 ], [ 120.805664, 37.892196 ], [ 121.684570, 37.509726 ], [ 122.343750, 37.474858 ], [ 122.519531, 36.949892 ], [ 121.069336, 36.668419 ], [ 120.629883, 36.137875 ], [ 119.663086, 35.639441 ], [ 119.135742, 34.921971 ], [ 120.190430, 34.379713 ], [ 120.585938, 33.394759 ], [ 121.201172, 32.472695 ], [ 121.904297, 31.728167 ], [ 121.860352, 30.977609 ], [ 121.245117, 30.713504 ], [ 121.464844, 30.145127 ], [ 122.080078, 29.840644 ], [ 121.904297, 29.036961 ], [ 121.640625, 28.226970 ], [ 121.113281, 28.149503 ], [ 119.575195, 25.760320 ], [ 118.652344, 24.567108 ], [ 115.883789, 22.796439 ], [ 114.741211, 22.674847 ], [ 114.125977, 22.228090 ], [ 113.774414, 22.553147 ], [ 113.203125, 22.065278 ], [ 111.840820, 21.575719 ], [ 110.742188, 21.412162 ], [ 110.434570, 20.344627 ], [ 109.863281, 20.303418 ], [ 109.599609, 21.043491 ], [ 109.863281, 21.412162 ], [ 108.500977, 21.739091 ], [ 108.017578, 21.575719 ], [ 107.006836, 21.820708 ], [ 106.523438, 22.228090 ], [ 106.699219, 22.796439 ], [ 105.776367, 22.998852 ], [ 105.292969, 23.362429 ], [ 104.458008, 22.836946 ], [ 103.491211, 22.715390 ], [ 102.700195, 22.715390 ], [ 102.128906, 22.471955 ], [ 101.645508, 22.350076 ], [ 101.777344, 21.207459 ], [ 101.250000, 21.207459 ], [ 101.162109, 21.453069 ], [ 101.118164, 21.861499 ], [ 100.415039, 21.575719 ], [ 99.228516, 22.146708 ], [ 99.492188, 22.958393 ], [ 98.876953, 23.160563 ], [ 98.657227, 24.086589 ], [ 97.602539, 23.926013 ], [ 97.690430, 25.085599 ], [ 98.657227, 25.958045 ], [ 98.657227, 27.527758 ], [ 98.217773, 27.761330 ], [ 97.910156, 28.343065 ], [ 97.294922, 28.265682 ], [ 96.240234, 28.420391 ], [ 96.547852, 28.844674 ], [ 96.108398, 29.458731 ], [ 95.361328, 29.036961 ], [ 94.526367, 29.305561 ], [ 93.383789, 28.652031 ], [ 92.460938, 27.916767 ], [ 91.669922, 27.800210 ], [ 91.230469, 28.071980 ], [ 90.703125, 28.071980 ], [ 90.000000, 28.304381 ], [ 89.472656, 28.071980 ], [ 88.813477, 27.332735 ], [ 88.725586, 28.110749 ], [ 88.110352, 27.877928 ], [ 86.923828, 27.994401 ], [ 85.781250, 28.226970 ], [ 84.990234, 28.652031 ], [ 84.199219, 28.844674 ], [ 83.891602, 29.343875 ], [ 83.320312, 29.496988 ], [ 82.309570, 30.145127 ], [ 81.518555, 30.448674 ], [ 81.079102, 30.221102 ], [ 79.716797, 30.902225 ], [ 78.706055, 31.541090 ], [ 78.442383, 32.620870 ], [ 79.145508, 32.509762 ], [ 79.189453, 33.027088 ], [ 78.793945, 33.541395 ], [ 78.881836, 34.343436 ], [ 77.827148, 35.496456 ], [ 76.157227, 35.924645 ], [ 75.893555, 36.668419 ], [ 75.146484, 37.160317 ], [ 74.970703, 37.439974 ], [ 74.794922, 37.996163 ], [ 74.838867, 38.410558 ], [ 74.223633, 38.616870 ], [ 73.916016, 38.513788 ], [ 73.652344, 39.436193 ], [ 73.959961, 39.673370 ], [ 73.784180, 39.909736 ], [ 74.750977, 40.380028 ], [ 75.454102, 40.580585 ], [ 76.508789, 40.446947 ], [ 76.904297, 41.079351 ], [ 78.178711, 41.211722 ], [ 78.530273, 41.607228 ], [ 80.112305, 42.130821 ], [ 80.244141, 42.358544 ], [ 80.156250, 42.940339 ], [ 80.859375, 43.197167 ], [ 79.936523, 44.933696 ], [ 81.914062, 45.336702 ], [ 82.441406, 45.552525 ], [ 83.144531, 47.338823 ], [ 85.122070, 47.010226 ], [ 85.693359, 47.457809 ], [ 85.737305, 48.458352 ], [ 86.572266, 48.574790 ], [ 87.319336, 49.239121 ], [ 87.714844, 49.325122 ], [ 87.978516, 48.603858 ], [ 88.813477, 48.078079 ], [ 90.263672, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.571289, 45.736860 ], [ 90.922852, 45.305803 ], [ 93.471680, 44.995883 ], [ 94.658203, 44.370987 ], [ 95.273438, 44.245199 ], [ 95.756836, 43.325178 ], [ 96.328125, 42.747012 ], [ 97.426758, 42.779275 ], [ 99.492188, 42.553080 ], [ 100.810547, 42.682435 ], [ 101.821289, 42.520700 ], [ 103.271484, 41.934977 ], [ 104.501953, 41.934977 ], [ 104.941406, 41.607228 ], [ 106.127930, 42.163403 ], [ 107.709961, 42.488302 ], [ 109.204102, 42.520700 ], [ 110.390625, 42.875964 ], [ 111.093750, 43.421009 ], [ 111.796875, 43.771094 ], [ 111.665039, 44.087585 ], [ 111.313477, 44.465151 ], [ 111.840820, 45.120053 ], [ 113.422852, 44.809122 ], [ 114.433594, 45.367584 ], [ 115.971680, 45.736860 ], [ 116.674805, 46.407564 ], [ 117.377930, 46.679594 ], [ 118.872070, 46.830134 ], [ 119.663086, 46.709736 ], [ 119.750977, 47.070122 ], [ 118.828125, 47.754098 ], [ 118.037109, 48.078079 ], [ 117.290039, 47.724545 ], [ 116.279297, 47.872144 ], [ 115.708008, 47.754098 ], [ 115.444336, 48.136767 ], [ 116.674805, 49.894634 ], [ 117.861328, 49.525208 ], [ 119.267578, 50.148746 ], [ 119.267578, 50.597186 ], [ 120.146484, 51.645294 ], [ 120.717773, 51.971346 ], [ 120.717773, 52.536273 ], [ 120.146484, 52.776186 ], [ 120.981445, 53.252069 ], [ 122.211914, 53.435719 ], [ 123.530273, 53.461890 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.910156, 28.343065 ], [ 98.217773, 27.761330 ], [ 98.657227, 27.527758 ], [ 98.657227, 25.958045 ], [ 97.690430, 25.085599 ], [ 97.602539, 23.926013 ], [ 98.657227, 24.086589 ], [ 98.876953, 23.160563 ], [ 99.492188, 22.958393 ], [ 99.228516, 22.146708 ], [ 100.415039, 21.575719 ], [ 101.118164, 21.861499 ], [ 101.162109, 21.453069 ], [ 100.327148, 20.797201 ], [ 100.107422, 20.427013 ], [ 99.536133, 20.220966 ], [ 98.920898, 19.766704 ], [ 98.217773, 19.725342 ], [ 97.778320, 18.646245 ], [ 97.338867, 18.479609 ], [ 97.822266, 17.602139 ], [ 98.481445, 16.846605 ], [ 98.876953, 16.214675 ], [ 98.525391, 15.326572 ], [ 98.173828, 15.156974 ], [ 98.393555, 14.647368 ], [ 99.096680, 13.838080 ], [ 99.184570, 13.282719 ], [ 99.184570, 12.811801 ], [ 99.580078, 11.910354 ], [ 99.008789, 10.962764 ], [ 98.525391, 9.968851 ], [ 98.437500, 10.703792 ], [ 98.745117, 11.480025 ], [ 98.393555, 12.039321 ], [ 98.481445, 13.154376 ], [ 98.085938, 13.667338 ], [ 97.734375, 14.859850 ], [ 97.558594, 16.130262 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.467695 ], [ 95.361328, 15.749963 ], [ 94.790039, 15.834536 ], [ 94.174805, 16.045813 ], [ 94.526367, 17.308688 ], [ 94.306641, 18.229351 ], [ 93.515625, 19.394068 ], [ 93.647461, 19.766704 ], [ 93.076172, 19.890723 ], [ 92.329102, 20.673905 ], [ 92.285156, 21.493964 ], [ 92.636719, 21.330315 ], [ 92.636719, 22.065278 ], [ 93.164062, 22.309426 ], [ 93.032227, 22.715390 ], [ 93.251953, 23.079732 ], [ 93.295898, 24.086589 ], [ 94.086914, 23.885838 ], [ 94.526367, 24.686952 ], [ 94.570312, 25.165173 ], [ 95.141602, 26.037042 ], [ 95.097656, 26.588527 ], [ 96.416016, 27.293689 ], [ 97.119141, 27.098254 ], [ 97.031250, 27.722436 ], [ 97.382812, 27.916767 ], [ 97.294922, 28.265682 ], [ 97.910156, 28.343065 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.128906, 22.471955 ], [ 102.744141, 21.698265 ], [ 103.183594, 20.797201 ], [ 104.414062, 20.797201 ], [ 104.809570, 19.890723 ], [ 104.150391, 19.642588 ], [ 103.886719, 19.269665 ], [ 105.073242, 18.687879 ], [ 106.523438, 16.636192 ], [ 107.270508, 15.919074 ], [ 107.534180, 15.241790 ], [ 107.358398, 14.221789 ], [ 106.479492, 14.604847 ], [ 106.040039, 13.923404 ], [ 105.205078, 14.306969 ], [ 105.512695, 14.732386 ], [ 105.556641, 15.580711 ], [ 104.765625, 16.467695 ], [ 104.677734, 17.434511 ], [ 103.930664, 18.271086 ], [ 103.183594, 18.312811 ], [ 102.963867, 17.978733 ], [ 102.392578, 17.936929 ], [ 102.084961, 18.145852 ], [ 101.030273, 17.518344 ], [ 101.030273, 18.437925 ], [ 101.250000, 19.476950 ], [ 100.590820, 19.518375 ], [ 100.546875, 20.138470 ], [ 100.107422, 20.427013 ], [ 100.327148, 20.797201 ], [ 101.162109, 21.453069 ], [ 101.250000, 21.207459 ], [ 101.777344, 21.207459 ], [ 101.645508, 22.350076 ], [ 102.128906, 22.471955 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.107422, 20.427013 ], [ 100.546875, 20.138470 ], [ 100.590820, 19.518375 ], [ 101.250000, 19.476950 ], [ 101.030273, 18.437925 ], [ 101.030273, 17.518344 ], [ 102.084961, 18.145852 ], [ 102.392578, 17.936929 ], [ 102.963867, 17.978733 ], [ 103.183594, 18.312811 ], [ 103.930664, 18.271086 ], [ 104.677734, 17.434511 ], [ 104.765625, 16.467695 ], [ 105.556641, 15.580711 ], [ 105.512695, 14.732386 ], [ 105.205078, 14.306969 ], [ 104.238281, 14.434680 ], [ 102.963867, 14.264383 ], [ 102.304688, 13.410994 ], [ 102.568359, 12.211180 ], [ 101.645508, 12.683215 ], [ 100.810547, 12.640338 ], [ 100.942383, 13.453737 ], [ 100.063477, 13.410994 ], [ 99.975586, 12.340002 ], [ 99.140625, 9.968851 ], [ 99.184570, 9.275622 ], [ 99.843750, 9.232249 ], [ 100.239258, 8.320212 ], [ 100.458984, 7.449624 ], [ 100.986328, 6.882800 ], [ 101.601562, 6.751896 ], [ 102.128906, 6.227934 ], [ 101.777344, 5.834616 ], [ 101.118164, 5.703448 ], [ 101.074219, 6.227934 ], [ 100.239258, 6.664608 ], [ 100.063477, 6.489983 ], [ 99.667969, 6.882800 ], [ 99.492188, 7.362467 ], [ 98.481445, 8.407168 ], [ 98.305664, 7.798079 ], [ 98.129883, 8.363693 ], [ 98.217773, 9.015302 ], [ 98.525391, 9.968851 ], [ 99.008789, 10.962764 ], [ 99.580078, 11.910354 ], [ 99.184570, 12.811801 ], [ 99.184570, 13.282719 ], [ 99.096680, 13.838080 ], [ 98.393555, 14.647368 ], [ 98.173828, 15.156974 ], [ 98.525391, 15.326572 ], [ 98.876953, 16.214675 ], [ 98.481445, 16.846605 ], [ 97.822266, 17.602139 ], [ 97.338867, 18.479609 ], [ 97.778320, 18.646245 ], [ 98.217773, 19.725342 ], [ 98.920898, 19.766704 ], [ 99.536133, 20.220966 ], [ 100.107422, 20.427013 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.292969, 23.362429 ], [ 105.776367, 22.998852 ], [ 106.699219, 22.796439 ], [ 106.523438, 22.228090 ], [ 107.006836, 21.820708 ], [ 108.017578, 21.575719 ], [ 106.699219, 20.715015 ], [ 105.864258, 19.766704 ], [ 105.644531, 19.062118 ], [ 107.358398, 16.720385 ], [ 108.237305, 16.088042 ], [ 108.852539, 15.284185 ], [ 109.291992, 13.453737 ], [ 109.160156, 11.695273 ], [ 108.325195, 11.049038 ], [ 107.182617, 10.401378 ], [ 106.391602, 9.535749 ], [ 105.117188, 8.624472 ], [ 104.765625, 9.275622 ], [ 105.073242, 9.925566 ], [ 104.326172, 10.487812 ], [ 105.161133, 10.919618 ], [ 106.215820, 10.962764 ], [ 105.776367, 11.609193 ], [ 107.490234, 12.340002 ], [ 107.578125, 13.539201 ], [ 107.358398, 14.221789 ], [ 107.534180, 15.241790 ], [ 107.270508, 15.919074 ], [ 106.523438, 16.636192 ], [ 105.073242, 18.687879 ], [ 103.886719, 19.269665 ], [ 104.150391, 19.642588 ], [ 104.809570, 19.890723 ], [ 104.414062, 20.797201 ], [ 103.183594, 20.797201 ], [ 102.744141, 21.698265 ], [ 102.128906, 22.471955 ], [ 102.700195, 22.715390 ], [ 103.491211, 22.715390 ], [ 104.458008, 22.836946 ], [ 105.292969, 23.362429 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.479492, 14.604847 ], [ 107.358398, 14.221789 ], [ 107.578125, 13.539201 ], [ 107.490234, 12.340002 ], [ 105.776367, 11.609193 ], [ 106.215820, 10.962764 ], [ 105.161133, 10.919618 ], [ 104.326172, 10.487812 ], [ 103.491211, 10.660608 ], [ 103.051758, 11.178402 ], [ 102.568359, 12.211180 ], [ 102.304688, 13.410994 ], [ 102.963867, 14.264383 ], [ 104.238281, 14.434680 ], [ 105.205078, 14.306969 ], [ 106.040039, 13.923404 ], [ 106.479492, 14.604847 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.114258, 6.970049 ], [ 117.641602, 6.446318 ], [ 117.685547, 6.009459 ], [ 119.179688, 5.441022 ], [ 119.091797, 5.047171 ], [ 118.432617, 5.003394 ], [ 118.608398, 4.521666 ], [ 117.861328, 4.171115 ], [ 116.982422, 4.346411 ], [ 115.839844, 4.346411 ], [ 115.488281, 3.206333 ], [ 115.092773, 2.855263 ], [ 114.609375, 1.450040 ], [ 113.774414, 1.230374 ], [ 112.851562, 1.537901 ], [ 112.368164, 1.450040 ], [ 111.796875, 0.922812 ], [ 111.137695, 1.010690 ], [ 110.478516, 0.790990 ], [ 109.819336, 1.362176 ], [ 109.643555, 2.021065 ], [ 110.390625, 1.669686 ], [ 111.137695, 1.889306 ], [ 111.357422, 2.723583 ], [ 111.796875, 2.899153 ], [ 112.983398, 3.118576 ], [ 114.169922, 4.565474 ], [ 114.653320, 4.039618 ], [ 114.829102, 4.390229 ], [ 115.312500, 4.346411 ], [ 115.444336, 5.484768 ], [ 116.191406, 6.184246 ], [ 116.718750, 6.926427 ], [ 117.114258, 6.970049 ] ] ], [ [ [ 100.239258, 6.664608 ], [ 101.074219, 6.227934 ], [ 101.118164, 5.703448 ], [ 101.777344, 5.834616 ], [ 102.128906, 6.227934 ], [ 102.348633, 6.140555 ], [ 102.919922, 5.528511 ], [ 103.359375, 4.872048 ], [ 103.403320, 4.214943 ], [ 103.315430, 3.732708 ], [ 103.491211, 2.811371 ], [ 103.842773, 2.547988 ], [ 104.238281, 1.669686 ], [ 104.194336, 1.318243 ], [ 103.491211, 1.230374 ], [ 102.568359, 1.977147 ], [ 101.381836, 2.767478 ], [ 101.250000, 3.294082 ], [ 100.678711, 3.951941 ], [ 100.546875, 4.784469 ], [ 100.195312, 5.353521 ], [ 100.283203, 6.053161 ], [ 100.063477, 6.489983 ], [ 100.239258, 6.664608 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.464844, 25.324167 ], [ 121.948242, 25.005973 ], [ 121.772461, 24.407138 ], [ 121.157227, 22.796439 ], [ 120.717773, 21.983801 ], [ 120.190430, 22.836946 ], [ 120.102539, 23.563987 ], [ 120.673828, 24.567108 ], [ 121.464844, 25.324167 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.990234, 43.004647 ], [ 130.605469, 42.423457 ], [ 130.737305, 42.228517 ], [ 130.385742, 42.293564 ], [ 129.946289, 41.967659 ], [ 129.638672, 41.607228 ], [ 129.682617, 40.913513 ], [ 129.155273, 40.680638 ], [ 128.627930, 40.212441 ], [ 127.924805, 40.044438 ], [ 127.529297, 39.774769 ], [ 127.485352, 39.334297 ], [ 127.353516, 39.232253 ], [ 127.749023, 39.061849 ], [ 128.320312, 38.616870 ], [ 128.188477, 38.376115 ], [ 127.045898, 38.272689 ], [ 126.650391, 37.822802 ], [ 126.210938, 37.857507 ], [ 126.166992, 37.753344 ], [ 125.683594, 37.961523 ], [ 125.551758, 37.753344 ], [ 125.244141, 37.683820 ], [ 125.200195, 37.857507 ], [ 124.672852, 38.134557 ], [ 124.980469, 38.582526 ], [ 125.200195, 38.685510 ], [ 125.112305, 38.856820 ], [ 125.375977, 39.402244 ], [ 125.288086, 39.571822 ], [ 124.716797, 39.673370 ], [ 124.233398, 39.943436 ], [ 125.068359, 40.580585 ], [ 126.166992, 41.112469 ], [ 126.826172, 41.836828 ], [ 127.309570, 41.508577 ], [ 128.188477, 41.475660 ], [ 128.012695, 42.000325 ], [ 129.594727, 42.455888 ], [ 129.990234, 43.004647 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.320312, 38.616870 ], [ 129.199219, 37.439974 ], [ 129.418945, 36.809285 ], [ 129.462891, 35.639441 ], [ 129.067383, 35.101934 ], [ 128.144531, 34.921971 ], [ 127.353516, 34.488448 ], [ 126.474609, 34.415973 ], [ 126.342773, 34.957995 ], [ 126.518555, 35.710838 ], [ 126.079102, 36.738884 ], [ 126.826172, 36.914764 ], [ 126.166992, 37.753344 ], [ 126.210938, 37.857507 ], [ 126.650391, 37.822802 ], [ 127.045898, 38.272689 ], [ 128.188477, 38.376115 ], [ 128.320312, 38.616870 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.375977, 9.795678 ], [ 126.210938, 9.318990 ], [ 126.342773, 8.450639 ], [ 126.518555, 7.231699 ], [ 126.166992, 6.315299 ], [ 125.815430, 7.318882 ], [ 125.332031, 6.795535 ], [ 125.639648, 6.053161 ], [ 125.375977, 5.615986 ], [ 124.189453, 6.184246 ], [ 123.925781, 6.926427 ], [ 124.233398, 7.362467 ], [ 123.574219, 7.841615 ], [ 123.266602, 7.449624 ], [ 122.783203, 7.493196 ], [ 122.080078, 6.926427 ], [ 121.904297, 7.231699 ], [ 122.299805, 8.059230 ], [ 122.915039, 8.320212 ], [ 123.486328, 8.711359 ], [ 123.837891, 8.276727 ], [ 124.584961, 8.537565 ], [ 124.760742, 8.971897 ], [ 125.463867, 9.015302 ], [ 125.375977, 9.795678 ] ] ], [ [ [ 119.487305, 11.393879 ], [ 119.663086, 10.574222 ], [ 119.003906, 10.012130 ], [ 118.476562, 9.318990 ], [ 117.158203, 8.407168 ], [ 117.641602, 9.102097 ], [ 118.344727, 9.709057 ], [ 118.959961, 10.401378 ], [ 119.487305, 11.393879 ] ] ], [ [ [ 124.057617, 11.264612 ], [ 123.969727, 10.314919 ], [ 123.618164, 9.968851 ], [ 123.266602, 9.318990 ], [ 122.958984, 9.058702 ], [ 122.343750, 9.752370 ], [ 122.827148, 10.271681 ], [ 122.915039, 10.919618 ], [ 123.486328, 10.962764 ], [ 123.310547, 10.271681 ], [ 124.057617, 11.264612 ] ] ], [ [ [ 124.233398, 12.597455 ], [ 125.200195, 12.554564 ], [ 125.463867, 12.168226 ], [ 125.771484, 11.049038 ], [ 124.980469, 11.350797 ], [ 125.024414, 11.005904 ], [ 125.244141, 10.401378 ], [ 124.760742, 10.141932 ], [ 124.716797, 10.876465 ], [ 124.453125, 10.919618 ], [ 124.277344, 11.523088 ], [ 124.848633, 11.436955 ], [ 124.848633, 11.824341 ], [ 124.233398, 12.597455 ] ] ], [ [ [ 121.860352, 11.910354 ], [ 122.475586, 11.609193 ], [ 123.090820, 11.609193 ], [ 123.090820, 11.178402 ], [ 122.607422, 10.746969 ], [ 121.992188, 10.444598 ], [ 121.948242, 10.919618 ], [ 122.036133, 11.436955 ], [ 121.860352, 11.910354 ] ] ], [ [ [ 120.322266, 13.496473 ], [ 121.157227, 13.453737 ], [ 121.508789, 13.111580 ], [ 121.245117, 12.211180 ], [ 120.805664, 12.726084 ], [ 120.322266, 13.496473 ] ] ], [ [ [ 121.289062, 18.521283 ], [ 121.904297, 18.229351 ], [ 122.211914, 18.479609 ], [ 122.299805, 18.229351 ], [ 122.167969, 17.811456 ], [ 122.475586, 17.098792 ], [ 122.211914, 16.299051 ], [ 121.640625, 15.961329 ], [ 121.464844, 15.156974 ], [ 121.728516, 14.349548 ], [ 122.255859, 14.221789 ], [ 122.695312, 14.349548 ], [ 123.925781, 13.795406 ], [ 123.837891, 13.239945 ], [ 124.145508, 13.025966 ], [ 124.057617, 12.554564 ], [ 123.266602, 13.068777 ], [ 122.915039, 13.581921 ], [ 122.651367, 13.197165 ], [ 121.992188, 13.795406 ], [ 121.113281, 13.667338 ], [ 120.585938, 13.880746 ], [ 120.673828, 14.306969 ], [ 120.981445, 14.562318 ], [ 120.673828, 14.774883 ], [ 120.541992, 14.434680 ], [ 120.058594, 14.987240 ], [ 119.882812, 15.411319 ], [ 119.882812, 16.383391 ], [ 120.278320, 16.045813 ], [ 120.366211, 17.602139 ], [ 120.673828, 18.521283 ], [ 121.289062, 18.521283 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.444336, 5.484768 ], [ 115.312500, 4.346411 ], [ 114.829102, 4.390229 ], [ 114.653320, 4.039618 ], [ 114.169922, 4.565474 ], [ 114.565430, 4.915833 ], [ 115.444336, 5.484768 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.328125, 41.409776 ], [ 141.899414, 40.010787 ], [ 141.855469, 39.198205 ], [ 140.932617, 38.203655 ], [ 140.932617, 37.160317 ], [ 140.581055, 36.350527 ], [ 140.756836, 35.853440 ], [ 140.229492, 35.173808 ], [ 138.955078, 34.669359 ], [ 137.197266, 34.633208 ], [ 135.791016, 33.468108 ], [ 135.087891, 33.870416 ], [ 135.043945, 34.597042 ], [ 133.330078, 34.379713 ], [ 132.143555, 33.906896 ], [ 130.957031, 33.906896 ], [ 131.967773, 33.174342 ], [ 131.308594, 31.466154 ], [ 130.649414, 31.052934 ], [ 130.166016, 31.428663 ], [ 130.429688, 32.324276 ], [ 129.814453, 32.620870 ], [ 129.375000, 33.321349 ], [ 130.341797, 33.614619 ], [ 130.869141, 34.234512 ], [ 131.879883, 34.777716 ], [ 132.583008, 35.460670 ], [ 134.604492, 35.746512 ], [ 135.659180, 35.532226 ], [ 136.713867, 37.335224 ], [ 137.373047, 36.844461 ], [ 139.394531, 38.238180 ], [ 140.053711, 39.470125 ], [ 139.877930, 40.580585 ], [ 140.273438, 41.211722 ], [ 141.328125, 41.409776 ] ] ], [ [ [ 133.901367, 34.379713 ], [ 134.604492, 34.161818 ], [ 134.736328, 33.833920 ], [ 134.165039, 33.211116 ], [ 133.769531, 33.541395 ], [ 133.242188, 33.321349 ], [ 132.978516, 32.731841 ], [ 132.319336, 32.990236 ], [ 132.363281, 33.468108 ], [ 132.890625, 34.089061 ], [ 133.461914, 33.979809 ], [ 133.901367, 34.379713 ] ] ], [ [ [ 141.943359, 45.552525 ], [ 143.129883, 44.527843 ], [ 143.876953, 44.182204 ], [ 144.580078, 43.961191 ], [ 145.283203, 44.402392 ], [ 145.502930, 43.293200 ], [ 144.052734, 43.004647 ], [ 143.173828, 42.000325 ], [ 141.591797, 42.682435 ], [ 141.064453, 41.607228 ], [ 139.921875, 41.574361 ], [ 139.790039, 42.585444 ], [ 140.273438, 43.357138 ], [ 141.372070, 43.389082 ], [ 141.635742, 44.777936 ], [ 141.943359, 45.552525 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.919922, 2.328460 ], [ 13.051758, 2.284551 ], [ 12.963867, 1.845384 ], [ 13.271484, 1.318243 ], [ 14.018555, 1.406109 ], [ 14.238281, 1.230374 ], [ 13.842773, 0.000000 ], [ 14.282227, -0.527336 ], [ 14.414062, -1.318243 ], [ 14.282227, -1.977147 ], [ 13.974609, -2.460181 ], [ 13.095703, -2.416276 ], [ 12.568359, -1.933227 ], [ 12.480469, -2.372369 ], [ 11.777344, -2.504085 ], [ 11.469727, -2.723583 ], [ 11.821289, -3.425692 ], [ 11.733398, -3.513421 ], [ 10.590820, -3.513421 ], [ 10.063477, -2.943041 ], [ 9.404297, -2.108899 ], [ 8.789062, -1.098565 ], [ 8.789062, -0.747049 ], [ 9.008789, -0.439449 ], [ 9.184570, 0.000000 ], [ 9.492188, 1.010690 ], [ 9.799805, 1.098565 ], [ 11.250000, 1.098565 ], [ 11.250000, 2.284551 ], [ 11.733398, 2.328460 ], [ 12.348633, 2.196727 ], [ 12.919922, 2.328460 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.094727, 3.732708 ], [ 17.797852, 3.601142 ], [ 18.413086, 3.513421 ], [ 18.369141, 2.943041 ], [ 18.061523, 2.372369 ], [ 17.885742, 1.757537 ], [ 17.753906, 0.878872 ], [ 17.797852, 0.307616 ], [ 17.666016, 0.000000 ], [ 17.490234, -0.703107 ], [ 16.831055, -1.186439 ], [ 16.391602, -1.713612 ], [ 15.952148, -2.679687 ], [ 15.996094, -3.513421 ], [ 11.733398, -3.513421 ], [ 11.821289, -3.425692 ], [ 11.469727, -2.723583 ], [ 11.777344, -2.504085 ], [ 12.480469, -2.372369 ], [ 12.568359, -1.933227 ], [ 13.095703, -2.416276 ], [ 13.974609, -2.460181 ], [ 14.282227, -1.977147 ], [ 14.414062, -1.318243 ], [ 14.282227, -0.527336 ], [ 13.842773, 0.000000 ], [ 14.238281, 1.230374 ], [ 14.018555, 1.406109 ], [ 13.271484, 1.318243 ], [ 12.963867, 1.845384 ], [ 13.051758, 2.284551 ], [ 14.326172, 2.240640 ], [ 15.908203, 1.757537 ], [ 15.996094, 2.284551 ], [ 16.523438, 3.206333 ], [ 17.094727, 3.732708 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.333984, 5.266008 ], [ 27.949219, 4.434044 ], [ 28.388672, 4.302591 ], [ 28.696289, 4.477856 ], [ 29.135742, 4.390229 ], [ 29.707031, 4.609278 ], [ 29.926758, 4.214943 ], [ 30.805664, 3.513421 ], [ 30.761719, 2.372369 ], [ 31.157227, 2.240640 ], [ 30.849609, 1.889306 ], [ 30.454102, 1.625758 ], [ 30.058594, 1.098565 ], [ 29.838867, 0.615223 ], [ 29.794922, 0.000000 ], [ 29.794922, -0.175781 ], [ 29.575195, -0.571280 ], [ 29.575195, -1.318243 ], [ 29.267578, -1.581830 ], [ 29.223633, -2.196727 ], [ 29.091797, -2.284551 ], [ 29.003906, -2.811371 ], [ 29.267578, -3.250209 ], [ 29.267578, -3.513421 ], [ 15.996094, -3.513421 ], [ 15.952148, -2.679687 ], [ 16.391602, -1.713612 ], [ 16.831055, -1.186439 ], [ 17.490234, -0.703107 ], [ 17.666016, 0.000000 ], [ 17.797852, 0.307616 ], [ 17.753906, 0.878872 ], [ 17.885742, 1.757537 ], [ 18.061523, 2.372369 ], [ 18.369141, 2.943041 ], [ 18.500977, 4.214943 ], [ 18.896484, 4.740675 ], [ 19.467773, 5.047171 ], [ 20.258789, 4.696879 ], [ 20.917969, 4.346411 ], [ 21.621094, 4.258768 ], [ 22.368164, 4.039618 ], [ 22.675781, 4.653080 ], [ 22.807617, 4.740675 ], [ 23.291016, 4.653080 ], [ 24.389648, 5.134715 ], [ 24.785156, 4.915833 ], [ 25.092773, 4.959615 ], [ 25.268555, 5.178482 ], [ 25.620117, 5.266008 ], [ 27.026367, 5.134715 ], [ 27.333984, 5.266008 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.410156, -1.098565 ], [ 30.805664, -1.669686 ], [ 30.717773, -2.284551 ], [ 30.454102, -2.372369 ], [ 29.926758, -2.328460 ], [ 29.619141, -2.899153 ], [ 29.003906, -2.811371 ], [ 29.091797, -2.284551 ], [ 29.223633, -2.196727 ], [ 29.267578, -1.581830 ], [ 29.575195, -1.318243 ], [ 29.794922, -1.406109 ], [ 30.410156, -1.098565 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.926758, -2.328460 ], [ 30.454102, -2.372369 ], [ 30.498047, -2.767478 ], [ 30.717773, -3.030812 ], [ 30.717773, -3.337954 ], [ 30.541992, -3.513421 ], [ 29.267578, -3.513421 ], [ 29.267578, -3.250209 ], [ 29.003906, -2.811371 ], [ 29.619141, -2.899153 ], [ 29.926758, -2.328460 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.881836, -0.922812 ], [ 37.661133, -3.074695 ], [ 37.705078, -3.513421 ], [ 30.541992, -3.513421 ], [ 30.717773, -3.337954 ], [ 30.717773, -3.030812 ], [ 30.498047, -2.767478 ], [ 30.454102, -2.372369 ], [ 30.717773, -2.284551 ], [ 30.805664, -1.669686 ], [ 30.410156, -1.098565 ], [ 30.761719, -1.010690 ], [ 33.881836, -0.922812 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 126.958008, -3.118576 ], [ 127.221680, -3.425692 ], [ 127.177734, -3.513421 ], [ 126.123047, -3.513421 ], [ 125.947266, -3.162456 ], [ 126.958008, -3.118576 ] ] ], [ [ [ 129.331055, -2.767478 ], [ 130.429688, -3.074695 ], [ 130.649414, -3.513421 ], [ 130.122070, -3.513421 ], [ 129.990234, -3.425692 ], [ 129.111328, -3.337954 ], [ 128.583984, -3.425692 ], [ 127.880859, -3.381824 ], [ 128.100586, -2.811371 ], [ 129.331055, -2.767478 ] ] ], [ [ [ 132.363281, -0.351560 ], [ 133.945312, -0.747049 ], [ 134.121094, -1.142502 ], [ 134.384766, -2.767478 ], [ 135.439453, -3.337954 ], [ 136.274414, -2.284551 ], [ 137.416992, -1.669686 ], [ 138.295898, -1.669686 ], [ 139.921875, -2.372369 ], [ 140.976562, -2.591889 ], [ 140.976562, -3.513421 ], [ 132.714844, -3.513421 ], [ 132.714844, -3.294082 ], [ 131.967773, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.231445, -2.196727 ], [ 131.835938, -1.581830 ], [ 130.913086, -1.406109 ], [ 130.517578, -0.922812 ], [ 131.835938, -0.659165 ], [ 132.363281, -0.351560 ] ] ], [ [ [ 116.982422, 4.346411 ], [ 117.861328, 4.171115 ], [ 117.290039, 3.250209 ], [ 118.037109, 2.328460 ], [ 117.861328, 1.845384 ], [ 118.959961, 0.922812 ], [ 117.773438, 0.790990 ], [ 117.465820, 0.131836 ], [ 117.465820, 0.000000 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.450040 ], [ 116.499023, -2.460181 ], [ 116.235352, -3.513421 ], [ 114.477539, -3.513421 ], [ 113.730469, -3.425692 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.665039, -2.986927 ], [ 111.005859, -3.030812 ], [ 110.214844, -2.899153 ], [ 110.039062, -1.581830 ], [ 109.555664, -1.274309 ], [ 109.072266, -0.439449 ], [ 108.984375, 0.000000 ], [ 108.940430, 0.439449 ], [ 109.028320, 1.362176 ], [ 109.643555, 2.021065 ], [ 109.819336, 1.362176 ], [ 110.478516, 0.790990 ], [ 111.137695, 1.010690 ], [ 111.796875, 0.922812 ], [ 112.368164, 1.450040 ], [ 112.851562, 1.537901 ], [ 113.774414, 1.230374 ], [ 114.609375, 1.450040 ], [ 115.092773, 2.855263 ], [ 115.488281, 3.206333 ], [ 115.839844, 4.346411 ], [ 116.982422, 4.346411 ] ] ], [ [ [ 95.273438, 5.484768 ], [ 97.470703, 5.266008 ], [ 98.349609, 4.302591 ], [ 99.667969, 3.206333 ], [ 100.634766, 2.108899 ], [ 101.645508, 2.108899 ], [ 102.480469, 1.406109 ], [ 103.051758, 0.571280 ], [ 103.798828, 0.131836 ], [ 103.754883, 0.000000 ], [ 103.403320, -0.703107 ], [ 103.974609, -1.054628 ], [ 104.326172, -1.054628 ], [ 104.501953, -1.757537 ], [ 104.853516, -2.328460 ], [ 105.600586, -2.416276 ], [ 106.083984, -3.030812 ], [ 105.996094, -3.513421 ], [ 102.041016, -3.513421 ], [ 101.381836, -2.767478 ], [ 100.898438, -2.021065 ], [ 100.107422, -0.615223 ], [ 99.448242, 0.000000 ], [ 99.228516, 0.219726 ], [ 98.964844, 1.054628 ], [ 98.569336, 1.845384 ], [ 97.690430, 2.460181 ], [ 97.163086, 3.337954 ], [ 96.416016, 3.908099 ], [ 95.361328, 5.003394 ], [ 95.273438, 5.484768 ] ] ], [ [ [ 125.024414, 1.669686 ], [ 125.200195, 1.450040 ], [ 124.409180, 0.439449 ], [ 123.662109, 0.263671 ], [ 122.695312, 0.439449 ], [ 121.025391, 0.395505 ], [ 120.146484, 0.263671 ], [ 120.102539, 0.000000 ], [ 120.014648, -0.483393 ], [ 120.893555, -1.406109 ], [ 121.464844, -0.922812 ], [ 123.310547, -0.615223 ], [ 123.222656, -1.054628 ], [ 122.783203, -0.922812 ], [ 122.387695, -1.493971 ], [ 121.464844, -1.889306 ], [ 122.431641, -3.162456 ], [ 122.255859, -3.513421 ], [ 120.893555, -3.513421 ], [ 120.937500, -2.591889 ], [ 120.278320, -2.899153 ], [ 120.322266, -3.513421 ], [ 119.047852, -3.469557 ], [ 118.740234, -2.767478 ], [ 119.179688, -2.108899 ], [ 119.311523, -1.318243 ], [ 119.750977, 0.000000 ], [ 120.014648, 0.571280 ], [ 120.849609, 1.318243 ], [ 121.640625, 1.054628 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.024414, 1.669686 ] ] ], [ [ [ 127.924805, 2.196727 ], [ 127.968750, 1.669686 ], [ 128.583984, 1.581830 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.395505 ], [ 128.012695, 0.000000 ], [ 127.924805, -0.219726 ], [ 128.364258, -0.747049 ], [ 128.056641, -0.878872 ], [ 127.661133, -0.263671 ], [ 127.617188, 0.000000 ], [ 127.397461, 1.054628 ], [ 127.573242, 1.845384 ], [ 127.924805, 2.196727 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.976562, -2.591889 ], [ 143.437500, -3.513421 ], [ 140.976562, -3.513421 ], [ 140.976562, -2.591889 ] ] ], [ [ [ 150.908203, -2.460181 ], [ 152.226562, -3.206333 ], [ 152.490234, -3.513421 ], [ 152.006836, -3.513421 ], [ 151.347656, -3.030812 ], [ 150.644531, -2.723583 ], [ 150.908203, -2.460181 ] ] ] ] } } -] } -] } -, -{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -169.958496, -83.884025 ], [ -168.530273, -84.236362 ], [ -167.036133, -84.568466 ], [ -164.201660, -84.824323 ], [ -162.575684, -85.051129 ], [ -161.938477, -85.137560 ], [ -160.949707, -85.200475 ], [ -180.000000, -85.200475 ], [ -180.000000, -84.712127 ], [ -179.956055, -84.720221 ], [ -179.077148, -84.138452 ], [ -177.275391, -84.452865 ], [ -176.088867, -84.097922 ], [ -175.847168, -84.115970 ], [ -174.396973, -84.532994 ], [ -173.122559, -84.115970 ], [ -172.902832, -84.059387 ], [ -169.958496, -83.884025 ] ] ], [ [ [ -153.039551, -85.200475 ], [ -156.247559, -85.200475 ], [ -155.192871, -85.098291 ], [ -153.039551, -85.200475 ] ] ], [ [ [ -88.439941, -73.003333 ], [ -88.242188, -73.035419 ], [ -88.242188, -85.200475 ], [ -144.711914, -85.200475 ], [ -143.217773, -85.051129 ], [ -143.107910, -85.039743 ], [ -142.910156, -84.568466 ], [ -146.843262, -84.530900 ], [ -150.073242, -84.295635 ], [ -150.908203, -83.902725 ], [ -153.588867, -83.686615 ], [ -153.413086, -83.236426 ], [ -153.039551, -82.825994 ], [ -152.666016, -82.451651 ], [ -152.863770, -82.039656 ], [ -154.533691, -81.767353 ], [ -155.302734, -81.413933 ], [ -156.840820, -81.100015 ], [ -154.423828, -81.157619 ], [ -152.116699, -81.000889 ], [ -150.666504, -81.334844 ], [ -148.886719, -81.042039 ], [ -147.238770, -80.668436 ], [ -146.425781, -80.334887 ], [ -146.777344, -79.924393 ], [ -148.073730, -79.651722 ], [ -149.545898, -79.355532 ], [ -151.589355, -79.298560 ], [ -153.391113, -79.158943 ], [ -155.346680, -79.063478 ], [ -155.983887, -78.690491 ], [ -157.280273, -78.376004 ], [ -158.071289, -78.025574 ], [ -158.378906, -76.885761 ], [ -157.895508, -76.985098 ], [ -156.994629, -77.298034 ], [ -155.346680, -77.201045 ], [ -153.764648, -77.064036 ], [ -152.929688, -77.494607 ], [ -151.347656, -77.394300 ], [ -150.007324, -77.181560 ], [ -148.754883, -76.905688 ], [ -147.634277, -76.573058 ], [ -146.118164, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.731888 ], [ -146.206055, -75.375605 ], [ -144.909668, -75.202634 ], [ -144.338379, -75.535625 ], [ -142.800293, -75.336721 ], [ -141.657715, -75.084326 ], [ -140.229492, -75.061686 ], [ -138.867188, -74.965093 ], [ -137.526855, -74.729615 ], [ -136.450195, -74.514023 ], [ -135.219727, -74.301409 ], [ -134.450684, -74.360753 ], [ -133.747559, -74.437572 ], [ -132.275391, -74.301409 ], [ -130.935059, -74.478784 ], [ -129.572754, -74.455247 ], [ -128.254395, -74.319235 ], [ -125.419922, -74.514023 ], [ -124.013672, -74.478784 ], [ -121.091309, -74.514023 ], [ -119.707031, -74.478784 ], [ -118.696289, -74.182063 ], [ -117.487793, -74.025591 ], [ -116.235352, -74.241846 ], [ -115.026855, -74.061834 ], [ -113.950195, -73.714276 ], [ -113.312988, -74.025591 ], [ -112.961426, -74.378513 ], [ -112.302246, -74.712244 ], [ -111.269531, -74.419877 ], [ -110.083008, -74.787379 ], [ -108.720703, -74.907988 ], [ -107.578125, -75.180170 ], [ -106.149902, -75.123864 ], [ -104.897461, -74.947983 ], [ -103.381348, -74.987875 ], [ -102.019043, -75.123864 ], [ -100.656738, -75.297735 ], [ -100.129395, -74.867889 ], [ -100.766602, -74.537473 ], [ -101.271973, -74.182063 ], [ -102.546387, -74.104015 ], [ -103.117676, -73.732751 ], [ -103.688965, -72.613687 ], [ -102.919922, -72.751039 ], [ -101.623535, -72.809581 ], [ -100.327148, -72.751039 ], [ -99.140625, -72.906723 ], [ -98.129883, -73.201317 ], [ -97.690430, -73.553302 ], [ -96.350098, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.691406, -73.283674 ], [ -92.460938, -73.163173 ], [ -91.428223, -73.397060 ], [ -90.109863, -73.321553 ], [ -90.000000, -73.245712 ], [ -89.230957, -72.554498 ], [ -88.439941, -73.003333 ] ] ], [ [ [ -163.125000, -78.220028 ], [ -161.257324, -78.376004 ], [ -160.246582, -78.690491 ], [ -159.499512, -79.042615 ], [ -159.213867, -79.496652 ], [ -161.147461, -79.631968 ], [ -162.443848, -79.278140 ], [ -163.037109, -78.925053 ], [ -163.081055, -78.865806 ], [ -163.718262, -78.595299 ], [ -163.125000, -78.220028 ] ] ], [ [ [ -122.409668, -73.321553 ], [ -121.223145, -73.497220 ], [ -119.926758, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.311523, -73.830940 ], [ -120.234375, -74.085951 ], [ -121.640625, -74.007440 ], [ -122.629395, -73.652545 ], [ -122.409668, -73.321553 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.573730, -73.478485 ], [ -124.035645, -73.867612 ], [ -125.925293, -73.732751 ], [ -127.287598, -73.459729 ], [ -126.562500, -73.245712 ] ] ], [ [ [ -101.711426, -71.711989 ], [ -100.437012, -71.849385 ], [ -98.986816, -71.931344 ], [ -97.888184, -72.067147 ], [ -96.789551, -71.951778 ], [ -96.218262, -72.514931 ], [ -96.987305, -72.442164 ], [ -98.217773, -72.481891 ], [ -99.448242, -72.442164 ], [ -100.788574, -72.495114 ], [ -101.821289, -72.302431 ], [ -102.348633, -71.890409 ], [ -101.711426, -71.711989 ] ] ] ] } } -] } -] } -, -{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -179.802246, -16.003576 ], [ -179.934082, -16.488765 ], [ -180.000000, -16.551962 ], [ -180.000000, -16.066929 ], [ -179.802246, -16.003576 ] ] ] } } -] } -] } -, -{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -88.242188, 67.204032 ], [ -88.242188, 64.244595 ], [ -88.483887, 64.101007 ], [ -89.934082, 64.033744 ], [ -90.000000, 63.995235 ], [ -90.725098, 63.616982 ], [ -90.791016, 62.965212 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.031835 ], [ -94.262695, 60.909073 ], [ -94.636230, 60.119619 ], [ -94.702148, 58.950008 ], [ -93.229980, 58.790978 ], [ -92.768555, 57.856443 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.290918 ], [ -90.000000, 57.076575 ], [ -89.055176, 56.860986 ], [ -88.242188, 56.559482 ], [ -88.242188, 48.253941 ], [ -88.395996, 48.312428 ], [ -89.274902, 48.034019 ], [ -89.604492, 48.019324 ], [ -90.000000, 48.107431 ], [ -90.834961, 48.283193 ], [ -91.647949, 48.151428 ], [ -92.614746, 48.458352 ], [ -93.647461, 48.618385 ], [ -94.350586, 48.676454 ], [ -94.658203, 48.850258 ], [ -94.833984, 49.396675 ], [ -95.163574, 49.396675 ], [ -95.163574, 49.009051 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.993615 ], [ -125.639648, 50.429518 ], [ -127.441406, 50.833698 ], [ -128.012695, 51.727028 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.762892 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.813348 ], [ -129.990234, 55.291628 ], [ -130.012207, 55.924586 ], [ -131.726074, 56.559482 ], [ -133.374023, 58.413223 ], [ -134.274902, 58.870585 ], [ -134.956055, 59.277108 ], [ -135.483398, 59.789580 ], [ -136.494141, 59.467408 ], [ -137.460938, 58.915992 ], [ -138.361816, 59.567723 ], [ -139.042969, 60.009971 ], [ -140.031738, 60.283408 ], [ -140.998535, 60.316068 ], [ -140.998535, 67.204032 ], [ -88.242188, 67.204032 ] ] ], [ [ [ -128.364258, 50.778155 ], [ -127.309570, 50.555325 ], [ -126.716309, 50.401515 ], [ -125.771484, 50.303376 ], [ -124.936523, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.530273, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.835797 ], [ -125.969238, 49.181703 ], [ -126.870117, 49.539469 ], [ -127.045898, 49.823809 ], [ -128.078613, 50.007739 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.778155 ] ] ], [ [ [ -133.198242, 54.175297 ], [ -132.714844, 54.046489 ], [ -131.770020, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.198730, 52.187405 ], [ -131.594238, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.561035, 53.107217 ], [ -133.066406, 53.422628 ], [ -133.242188, 53.852527 ], [ -133.198242, 54.175297 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.874023, 20.282809 ], [ -155.236816, 19.993998 ], [ -155.083008, 19.870060 ], [ -154.819336, 19.518375 ], [ -154.841309, 19.456234 ], [ -155.544434, 19.103648 ], [ -155.698242, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.917969, 19.352611 ], [ -156.093750, 19.704658 ], [ -156.027832, 19.828725 ], [ -155.852051, 19.993998 ], [ -155.939941, 20.179724 ], [ -155.874023, 20.282809 ] ] ], [ [ [ -156.621094, 21.022983 ], [ -156.269531, 20.920397 ], [ -156.005859, 20.776659 ], [ -156.093750, 20.653346 ], [ -156.423340, 20.591652 ], [ -156.599121, 20.797201 ], [ -156.708984, 20.879343 ], [ -156.730957, 20.940920 ], [ -156.621094, 21.022983 ] ] ], [ [ [ -157.258301, 21.227942 ], [ -156.774902, 21.186973 ], [ -156.796875, 21.084500 ], [ -157.346191, 21.105000 ], [ -157.258301, 21.227942 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.653809, 21.330315 ], [ -157.719727, 21.268900 ], [ -158.137207, 21.330315 ], [ -158.312988, 21.596151 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.609375, 22.248429 ], [ -159.367676, 22.228090 ], [ -159.345703, 21.983801 ], [ -159.477539, 21.902278 ], [ -159.807129, 22.085640 ], [ -159.763184, 22.146708 ], [ -159.609375, 22.248429 ] ] ], [ [ [ -94.833984, 49.396675 ], [ -94.658203, 48.850258 ], [ -94.350586, 48.676454 ], [ -93.647461, 48.618385 ], [ -92.614746, 48.458352 ], [ -91.647949, 48.151428 ], [ -90.834961, 48.283193 ], [ -90.000000, 48.107431 ], [ -89.604492, 48.019324 ], [ -89.274902, 48.034019 ], [ -88.395996, 48.312428 ], [ -88.242188, 48.253941 ], [ -88.242188, 30.372875 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.428711, 29.897806 ], [ -89.450684, 29.496988 ], [ -89.230957, 29.305561 ], [ -89.428711, 29.171349 ], [ -89.780273, 29.324720 ], [ -90.000000, 29.209713 ], [ -90.175781, 29.132970 ], [ -90.900879, 29.152161 ], [ -91.647949, 29.688053 ], [ -92.504883, 29.554345 ], [ -93.229980, 29.802518 ], [ -93.867188, 29.726222 ], [ -94.702148, 29.496988 ], [ -95.603027, 28.748397 ], [ -96.613770, 28.323725 ], [ -97.141113, 27.839076 ], [ -97.382812, 27.391278 ], [ -97.382812, 26.706360 ], [ -97.338867, 26.214591 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.859224 ], [ -98.261719, 26.076521 ], [ -99.030762, 26.372185 ], [ -99.316406, 26.843677 ], [ -99.536133, 27.547242 ], [ -100.129395, 28.110749 ], [ -100.458984, 28.709861 ], [ -100.964355, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.117676, 28.979312 ], [ -103.952637, 29.286399 ], [ -104.458008, 29.573457 ], [ -104.721680, 30.126124 ], [ -105.051270, 30.656816 ], [ -105.644531, 31.090574 ], [ -106.149902, 31.409912 ], [ -106.523438, 31.765537 ], [ -108.259277, 31.765537 ], [ -108.259277, 31.353637 ], [ -111.027832, 31.334871 ], [ -114.829102, 32.528289 ], [ -114.741211, 32.731841 ], [ -117.136230, 32.546813 ], [ -117.312012, 33.063924 ], [ -117.949219, 33.632916 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.034453 ], [ -119.091797, 34.089061 ], [ -119.443359, 34.361576 ], [ -120.388184, 34.452218 ], [ -120.629883, 34.615127 ], [ -120.761719, 35.173808 ], [ -121.728516, 36.173357 ], [ -122.563477, 37.561997 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.117272 ], [ -123.728027, 38.959409 ], [ -123.881836, 39.774769 ], [ -124.409180, 40.329796 ], [ -124.189453, 41.145570 ], [ -124.233398, 42.000325 ], [ -124.541016, 42.779275 ], [ -124.145508, 43.723475 ], [ -123.903809, 45.537137 ], [ -124.101562, 46.875213 ], [ -124.409180, 47.724545 ], [ -124.694824, 48.195387 ], [ -124.584961, 48.385442 ], [ -123.134766, 48.048710 ], [ -122.607422, 47.100045 ], [ -122.343750, 47.368594 ], [ -122.519531, 48.180739 ], [ -122.849121, 49.009051 ], [ -95.163574, 49.009051 ], [ -95.163574, 49.396675 ], [ -94.833984, 49.396675 ] ] ], [ [ [ -140.998535, 67.204032 ], [ -140.998535, 60.316068 ], [ -140.031738, 60.283408 ], [ -139.042969, 60.009971 ], [ -138.361816, 59.567723 ], [ -137.460938, 58.915992 ], [ -136.494141, 59.467408 ], [ -135.483398, 59.789580 ], [ -134.956055, 59.277108 ], [ -134.274902, 58.870585 ], [ -133.374023, 58.413223 ], [ -131.726074, 56.559482 ], [ -130.012207, 55.924586 ], [ -129.990234, 55.291628 ], [ -130.539551, 54.813348 ], [ -131.088867, 55.191412 ], [ -131.967773, 55.503750 ], [ -132.253418, 56.377419 ], [ -133.549805, 57.183902 ], [ -134.099121, 58.124320 ], [ -135.043945, 58.193871 ], [ -136.647949, 58.217025 ], [ -137.812500, 58.505175 ], [ -139.877930, 59.545457 ], [ -142.580566, 60.086763 ], [ -143.964844, 60.009971 ], [ -145.942383, 60.468050 ], [ -147.128906, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.029785, 59.987998 ], [ -148.579102, 59.921990 ], [ -149.743652, 59.712097 ], [ -150.622559, 59.377988 ], [ -151.721191, 59.164668 ], [ -151.875000, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.358887, 61.037012 ], [ -150.622559, 61.291349 ], [ -151.896973, 60.737686 ], [ -152.600098, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.303223, 58.870585 ], [ -154.248047, 58.147519 ], [ -155.324707, 57.739350 ], [ -156.313477, 57.433124 ], [ -156.577148, 56.980911 ], [ -158.137207, 56.474628 ], [ -158.444824, 55.998381 ], [ -159.609375, 55.578345 ], [ -160.290527, 55.652798 ], [ -161.235352, 55.366625 ], [ -162.246094, 55.028022 ], [ -163.081055, 54.699234 ], [ -164.794922, 54.406143 ], [ -164.948730, 54.584797 ], [ -163.850098, 55.040614 ], [ -162.883301, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.576172, 56.010666 ], [ -160.070801, 56.426054 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.219608 ], [ -157.741699, 57.574779 ], [ -157.565918, 58.332567 ], [ -157.060547, 58.927334 ], [ -158.203125, 58.619777 ], [ -158.532715, 58.790978 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.938673 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.074448 ], [ -161.367188, 58.676938 ], [ -161.982422, 58.676938 ], [ -162.070312, 59.277108 ], [ -161.894531, 59.634435 ], [ -162.531738, 59.998986 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.272515 ], [ -165.366211, 60.511343 ], [ -165.366211, 61.079544 ], [ -166.135254, 61.501734 ], [ -165.739746, 62.083315 ], [ -164.926758, 62.633770 ], [ -164.575195, 63.154355 ], [ -163.762207, 63.223730 ], [ -163.081055, 63.064914 ], [ -162.268066, 63.548552 ], [ -161.542969, 63.460329 ], [ -160.773926, 63.772777 ], [ -160.971680, 64.225493 ], [ -161.520996, 64.406431 ], [ -160.795898, 64.792848 ], [ -161.411133, 64.783488 ], [ -162.465820, 64.567319 ], [ -162.773438, 64.339908 ], [ -163.564453, 64.567319 ], [ -164.970703, 64.453849 ], [ -166.442871, 64.689713 ], [ -166.860352, 65.090646 ], [ -168.112793, 65.676381 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.487305, 66.583217 ], [ -163.674316, 66.583217 ], [ -163.674316, 66.513260 ], [ -163.806152, 66.080457 ], [ -161.696777, 66.124962 ], [ -162.202148, 66.513260 ], [ -162.509766, 66.739902 ], [ -163.740234, 67.118748 ], [ -163.850098, 67.204032 ], [ -140.998535, 67.204032 ] ] ], [ [ [ -153.237305, 57.973157 ], [ -152.578125, 57.903174 ], [ -152.160645, 57.598335 ], [ -153.017578, 57.124314 ], [ -154.006348, 56.740674 ], [ -154.533691, 56.992883 ], [ -154.687500, 57.468589 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.973157 ] ] ], [ [ [ -166.486816, 60.392148 ], [ -165.695801, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.860352, 59.944007 ], [ -167.475586, 60.217991 ], [ -166.486816, 60.392148 ] ] ], [ [ [ -171.738281, 63.792191 ], [ -171.123047, 63.597448 ], [ -170.507812, 63.694987 ], [ -169.694824, 63.440686 ], [ -168.706055, 63.302813 ], [ -168.771973, 63.194018 ], [ -169.541016, 62.985180 ], [ -170.310059, 63.203926 ], [ -170.683594, 63.381679 ], [ -171.562500, 63.322549 ], [ -171.804199, 63.411198 ], [ -171.738281, 63.792191 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.741211, 32.731841 ], [ -114.829102, 32.528289 ], [ -111.027832, 31.334871 ], [ -108.259277, 31.353637 ], [ -108.259277, 31.765537 ], [ -106.523438, 31.765537 ], [ -106.149902, 31.409912 ], [ -105.644531, 31.090574 ], [ -105.051270, 30.656816 ], [ -104.721680, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.952637, 29.286399 ], [ -103.117676, 28.979312 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.964355, 29.382175 ], [ -100.458984, 28.709861 ], [ -100.129395, 28.110749 ], [ -99.536133, 27.547242 ], [ -99.316406, 26.843677 ], [ -99.030762, 26.372185 ], [ -98.261719, 26.076521 ], [ -97.536621, 25.859224 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.005973 ], [ -97.712402, 24.287027 ], [ -97.778320, 22.938160 ], [ -97.888184, 22.451649 ], [ -97.712402, 21.902278 ], [ -97.404785, 21.412162 ], [ -97.207031, 20.653346 ], [ -96.525879, 19.911384 ], [ -96.306152, 19.331878 ], [ -95.910645, 18.833515 ], [ -94.855957, 18.562947 ], [ -94.438477, 18.145852 ], [ -93.559570, 18.437925 ], [ -92.790527, 18.542117 ], [ -91.428223, 18.895893 ], [ -90.791016, 19.290406 ], [ -90.549316, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -90.000000, 21.125498 ], [ -89.604492, 21.268900 ], [ -88.549805, 21.493964 ], [ -88.242188, 21.493964 ], [ -88.242188, 18.521283 ], [ -88.505859, 18.500447 ], [ -88.857422, 17.895114 ], [ -89.033203, 18.020528 ], [ -89.165039, 17.957832 ], [ -89.165039, 17.811456 ], [ -90.000000, 17.832374 ], [ -91.010742, 17.832374 ], [ -91.010742, 17.266728 ], [ -91.472168, 17.266728 ], [ -91.098633, 16.930705 ], [ -90.725098, 16.699340 ], [ -90.615234, 16.488765 ], [ -90.439453, 16.425548 ], [ -90.483398, 16.088042 ], [ -91.757812, 16.066929 ], [ -92.241211, 15.262989 ], [ -92.087402, 15.072124 ], [ -92.219238, 14.838612 ], [ -92.241211, 14.541050 ], [ -93.361816, 15.623037 ], [ -93.889160, 15.940202 ], [ -94.702148, 16.214675 ], [ -95.251465, 16.130262 ], [ -96.064453, 15.771109 ], [ -96.569824, 15.665354 ], [ -97.272949, 15.919074 ], [ -98.020020, 16.109153 ], [ -98.964844, 16.573023 ], [ -99.711914, 16.720385 ], [ -100.832520, 17.182779 ], [ -101.667480, 17.664960 ], [ -101.931152, 17.936929 ], [ -102.480469, 17.978733 ], [ -103.513184, 18.312811 ], [ -103.930664, 18.750310 ], [ -105.007324, 19.331878 ], [ -105.512695, 19.952696 ], [ -105.732422, 20.447602 ], [ -105.402832, 20.550509 ], [ -105.512695, 20.817741 ], [ -105.270996, 21.084500 ], [ -105.270996, 21.432617 ], [ -105.622559, 21.881890 ], [ -105.710449, 22.289096 ], [ -106.040039, 22.776182 ], [ -106.918945, 23.785345 ], [ -107.929688, 24.567108 ], [ -108.413086, 25.185059 ], [ -109.270020, 25.582085 ], [ -109.445801, 25.839449 ], [ -109.291992, 26.450902 ], [ -109.819336, 26.686730 ], [ -110.412598, 27.176469 ], [ -110.654297, 27.877928 ], [ -111.181641, 27.955591 ], [ -111.774902, 28.478349 ], [ -112.236328, 28.960089 ], [ -112.280273, 29.267233 ], [ -112.829590, 30.031055 ], [ -113.181152, 30.789037 ], [ -113.159180, 31.184609 ], [ -113.884277, 31.578535 ], [ -114.213867, 31.541090 ], [ -114.785156, 31.802893 ], [ -114.938965, 31.409912 ], [ -114.785156, 30.921076 ], [ -114.675293, 30.164126 ], [ -114.345703, 29.764377 ], [ -113.598633, 29.075375 ], [ -113.444824, 28.844674 ], [ -113.291016, 28.767659 ], [ -113.159180, 28.420391 ], [ -112.983398, 28.439714 ], [ -112.763672, 27.780772 ], [ -112.478027, 27.527758 ], [ -112.258301, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.291504, 25.740529 ], [ -110.720215, 24.826625 ], [ -110.676270, 24.307053 ], [ -110.192871, 24.266997 ], [ -109.423828, 23.382598 ], [ -109.445801, 23.200961 ], [ -109.863281, 22.836946 ], [ -110.039062, 22.836946 ], [ -110.302734, 23.443089 ], [ -110.961914, 24.006326 ], [ -111.687012, 24.487149 ], [ -112.192383, 24.746831 ], [ -112.170410, 25.482951 ], [ -112.302246, 26.017298 ], [ -113.466797, 26.784847 ], [ -113.598633, 26.647459 ], [ -113.862305, 26.902477 ], [ -114.477539, 27.156920 ], [ -115.070801, 27.741885 ], [ -114.982910, 27.800210 ], [ -114.587402, 27.741885 ], [ -114.213867, 28.130128 ], [ -114.169922, 28.574874 ], [ -114.938965, 29.286399 ], [ -115.532227, 29.573457 ], [ -116.740723, 31.653381 ], [ -117.136230, 32.546813 ], [ -114.741211, 32.731841 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.832374 ], [ -89.165039, 17.811456 ], [ -89.165039, 17.035777 ], [ -89.230957, 15.897942 ], [ -88.945312, 15.897942 ], [ -88.615723, 15.707663 ], [ -88.527832, 15.855674 ], [ -88.242188, 15.749963 ], [ -88.681641, 15.347762 ], [ -89.165039, 15.072124 ], [ -89.230957, 14.881087 ], [ -89.165039, 14.689881 ], [ -89.362793, 14.434680 ], [ -89.604492, 14.370834 ], [ -89.538574, 14.264383 ], [ -90.000000, 13.944730 ], [ -90.065918, 13.902076 ], [ -90.109863, 13.752725 ], [ -90.615234, 13.923404 ], [ -91.252441, 13.944730 ], [ -91.691895, 14.136576 ], [ -92.241211, 14.541050 ], [ -92.219238, 14.838612 ], [ -92.087402, 15.072124 ], [ -92.241211, 15.262989 ], [ -91.757812, 16.066929 ], [ -90.483398, 16.088042 ], [ -90.439453, 16.425548 ], [ -90.615234, 16.488765 ], [ -90.725098, 16.699340 ], [ -91.098633, 16.930705 ], [ -91.472168, 17.266728 ], [ -91.010742, 17.266728 ], [ -91.010742, 17.832374 ], [ -90.000000, 17.832374 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.308105, 18.500447 ], [ -88.308105, 18.354526 ], [ -88.242188, 18.354526 ], [ -88.242188, 17.769612 ], [ -88.286133, 17.664960 ], [ -88.242188, 17.581194 ], [ -88.242188, 17.350638 ], [ -88.308105, 17.140790 ], [ -88.242188, 17.035777 ], [ -88.374023, 16.530898 ], [ -88.571777, 16.277960 ], [ -88.747559, 16.235772 ], [ -88.945312, 15.897942 ], [ -89.230957, 15.897942 ], [ -89.165039, 17.035777 ], [ -89.165039, 17.957832 ], [ -89.033203, 18.020528 ], [ -88.857422, 17.895114 ], [ -88.505859, 18.500447 ], [ -88.308105, 18.500447 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.362793, 14.434680 ], [ -89.077148, 14.349548 ], [ -88.857422, 14.157882 ], [ -88.549805, 13.987376 ], [ -88.505859, 13.859414 ], [ -88.242188, 13.923404 ], [ -88.242188, 13.175771 ], [ -88.483887, 13.175771 ], [ -88.857422, 13.261333 ], [ -89.274902, 13.475106 ], [ -89.824219, 13.539201 ], [ -90.000000, 13.667338 ], [ -90.109863, 13.752725 ], [ -90.065918, 13.902076 ], [ -90.000000, 13.944730 ], [ -89.538574, 14.264383 ], [ -89.604492, 14.370834 ], [ -89.362793, 14.434680 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.242188, 15.728814 ], [ -88.242188, 13.923404 ], [ -88.505859, 13.859414 ], [ -88.549805, 13.987376 ], [ -88.857422, 14.157882 ], [ -89.077148, 14.349548 ], [ -89.362793, 14.434680 ], [ -89.165039, 14.689881 ], [ -89.230957, 14.881087 ], [ -89.165039, 15.072124 ], [ -88.681641, 15.347762 ], [ -88.242188, 15.728814 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -174.946289, 67.204032 ], [ -175.034180, 66.591948 ], [ -174.836426, 66.513260 ], [ -174.353027, 66.337505 ], [ -174.396973, 66.513260 ], [ -174.572754, 67.067433 ], [ -171.870117, 66.921449 ], [ -171.013184, 66.513260 ], [ -169.914551, 65.982270 ], [ -170.903320, 65.549367 ], [ -172.551270, 65.440002 ], [ -172.573242, 64.463323 ], [ -172.968750, 64.254141 ], [ -173.913574, 64.282760 ], [ -174.660645, 64.633292 ], [ -176.000977, 64.923542 ], [ -176.220703, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.374023, 65.394298 ], [ -178.923340, 65.748683 ], [ -178.703613, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.450684, 65.412589 ], [ -180.000000, 64.988651 ], [ -180.000000, 67.204032 ], [ -174.946289, 67.204032 ] ] ] } } -] } -] } -, -{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -95.229492, 71.924528 ], [ -93.911133, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.538086, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.503765 ], [ -90.571289, 68.479926 ], [ -90.000000, 68.807986 ], [ -89.230957, 69.263930 ], [ -88.242188, 68.736383 ], [ -88.242188, 68.065098 ], [ -88.330078, 67.875541 ], [ -88.242188, 67.825836 ], [ -88.242188, 65.802776 ], [ -140.998535, 65.802776 ], [ -140.998535, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.997802 ], [ -136.516113, 68.903097 ], [ -135.637207, 69.318320 ], [ -134.428711, 69.634158 ], [ -132.934570, 69.511457 ], [ -131.440430, 69.945375 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.786545 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.488236 ], [ -127.463379, 70.377854 ], [ -125.771484, 69.480672 ], [ -124.431152, 70.162746 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.695312, 69.862328 ], [ -121.486816, 69.801724 ], [ -119.948730, 69.380313 ], [ -117.619629, 69.013546 ], [ -116.235352, 68.847665 ], [ -115.268555, 68.911005 ], [ -113.906250, 68.399180 ], [ -115.312500, 67.908619 ], [ -113.510742, 67.692771 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.896484, 67.382150 ], [ -107.797852, 67.892086 ], [ -108.830566, 68.318146 ], [ -108.171387, 68.656555 ], [ -106.962891, 68.704486 ], [ -106.171875, 68.800041 ], [ -105.358887, 68.568414 ], [ -104.348145, 68.024022 ], [ -103.227539, 68.097907 ], [ -101.469727, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.459473, 67.784335 ], [ -98.569336, 68.407268 ], [ -97.690430, 68.584465 ], [ -96.130371, 68.244968 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.097907 ], [ -94.702148, 68.065098 ], [ -94.240723, 69.076412 ], [ -95.317383, 69.687618 ], [ -96.481934, 70.095529 ], [ -96.394043, 71.194838 ], [ -95.229492, 71.924528 ] ] ], [ [ [ -88.242188, 73.559522 ], [ -88.242188, 70.370474 ], [ -88.703613, 70.414714 ], [ -89.516602, 70.765206 ], [ -88.483887, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.587473 ], [ -90.219727, 72.235514 ], [ -90.000000, 72.481891 ], [ -89.450684, 73.131322 ], [ -88.417969, 73.540855 ], [ -88.242188, 73.559522 ] ] ], [ [ [ -98.239746, 70.147827 ], [ -97.163086, 69.862328 ], [ -96.569824, 69.687618 ], [ -95.668945, 69.107777 ], [ -96.284180, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.958391 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.239746, 70.147827 ] ] ], [ [ [ -115.202637, 73.315246 ], [ -114.169922, 73.124945 ], [ -114.675293, 72.653038 ], [ -112.456055, 72.958315 ], [ -111.071777, 72.455416 ], [ -109.929199, 72.964753 ], [ -109.028320, 72.633374 ], [ -108.193359, 71.656749 ], [ -107.687988, 72.067147 ], [ -108.413086, 73.093024 ], [ -107.534180, 73.239377 ], [ -106.523438, 73.080239 ], [ -105.402832, 72.672681 ], [ -104.787598, 71.705093 ], [ -104.479980, 70.995506 ], [ -102.788086, 70.502908 ], [ -100.986328, 70.028094 ], [ -101.096191, 69.588228 ], [ -102.744141, 69.511457 ], [ -102.106934, 69.123443 ], [ -102.436523, 68.760276 ], [ -104.260254, 68.911005 ], [ -105.974121, 69.185993 ], [ -107.138672, 69.123443 ], [ -109.006348, 68.784144 ], [ -113.334961, 68.536276 ], [ -113.862305, 69.013546 ], [ -115.224609, 69.287257 ], [ -116.125488, 69.170373 ], [ -117.355957, 69.960439 ], [ -116.674805, 70.073075 ], [ -115.136719, 70.244604 ], [ -113.730469, 70.192550 ], [ -112.434082, 70.370474 ], [ -114.367676, 70.605319 ], [ -116.499023, 70.524897 ], [ -117.905273, 70.546862 ], [ -118.432617, 70.909456 ], [ -116.125488, 71.314877 ], [ -117.663574, 71.300793 ], [ -119.421387, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.883301, 72.711903 ], [ -115.202637, 73.315246 ] ] ], [ [ [ -121.552734, 74.449358 ], [ -120.124512, 74.241846 ], [ -117.575684, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.532227, 73.478485 ], [ -116.784668, 73.226700 ], [ -119.223633, 72.521532 ], [ -120.476074, 71.821986 ], [ -120.476074, 71.385142 ], [ -123.112793, 70.902268 ], [ -123.640137, 71.343013 ], [ -125.947266, 71.869909 ], [ -125.507812, 72.295750 ], [ -124.826660, 73.022592 ], [ -123.947754, 73.683439 ], [ -124.936523, 74.295463 ], [ -121.552734, 74.449358 ] ] ], [ [ [ -100.371094, 73.849286 ], [ -99.184570, 73.633981 ], [ -97.382812, 73.763497 ], [ -97.141113, 73.472235 ], [ -98.063965, 72.996909 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.663663 ], [ -98.371582, 71.279648 ], [ -99.338379, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.514931 ], [ -102.480469, 72.835538 ], [ -100.458984, 72.711903 ], [ -101.557617, 73.365639 ], [ -100.371094, 73.849286 ] ] ], [ [ [ -94.504395, 74.140084 ], [ -92.438965, 74.104015 ], [ -90.527344, 73.861506 ], [ -92.021484, 72.971189 ], [ -93.208008, 72.777081 ], [ -94.284668, 72.026510 ], [ -95.427246, 72.067147 ], [ -96.042480, 72.945431 ], [ -96.020508, 73.440953 ], [ -95.515137, 73.867612 ], [ -94.504395, 74.140084 ] ] ], [ [ [ -105.270996, 73.640171 ], [ -104.501953, 73.422156 ], [ -105.380859, 72.764065 ], [ -106.940918, 73.465984 ], [ -106.611328, 73.602996 ], [ -105.270996, 73.640171 ] ] ], [ [ [ -109.599609, 76.795721 ], [ -108.566895, 76.679785 ], [ -108.215332, 76.205967 ], [ -107.819824, 75.850541 ], [ -106.940918, 76.016094 ], [ -105.886230, 75.973553 ], [ -105.710449, 75.480640 ], [ -106.325684, 75.010624 ], [ -109.709473, 74.850672 ], [ -112.236328, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.884277, 74.723827 ], [ -111.796875, 75.163300 ], [ -116.323242, 75.044684 ], [ -117.729492, 75.225065 ], [ -116.367188, 76.200727 ], [ -115.422363, 76.480910 ], [ -112.609863, 76.142958 ], [ -110.830078, 75.552081 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.434604 ], [ -109.599609, 76.795721 ] ] ], [ [ [ -96.745605, 77.162046 ], [ -94.702148, 77.098423 ], [ -93.581543, 76.780655 ], [ -91.625977, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.988770, 76.074381 ], [ -90.000000, 75.888091 ], [ -89.824219, 75.850541 ], [ -89.208984, 75.612262 ], [ -88.242188, 75.579466 ], [ -88.242188, 74.402163 ], [ -89.780273, 74.519889 ], [ -90.000000, 74.549185 ], [ -92.438965, 74.839183 ], [ -92.768555, 75.392239 ], [ -92.900391, 75.882732 ], [ -93.911133, 76.320754 ], [ -95.976562, 76.444907 ], [ -97.141113, 76.755508 ], [ -96.745605, 77.162046 ] ] ], [ [ [ -94.855957, 75.650431 ], [ -93.999023, 75.297735 ], [ -93.625488, 74.982183 ], [ -94.174805, 74.595946 ], [ -95.625000, 74.671638 ], [ -96.833496, 74.930855 ], [ -96.306152, 75.381152 ], [ -94.855957, 75.650431 ] ] ], [ [ [ -98.503418, 76.720223 ], [ -97.756348, 76.258260 ], [ -97.712402, 75.748125 ], [ -98.173828, 75.004940 ], [ -99.821777, 74.902266 ], [ -100.898438, 75.061686 ], [ -100.876465, 75.644984 ], [ -102.502441, 75.568518 ], [ -102.568359, 76.341523 ], [ -101.491699, 76.310358 ], [ -99.997559, 76.649377 ], [ -98.591309, 76.593451 ], [ -98.503418, 76.720223 ] ] ], [ [ [ -116.213379, 77.645947 ], [ -116.345215, 76.880775 ], [ -117.114258, 76.532180 ], [ -118.059082, 76.486046 ], [ -119.904785, 76.058508 ], [ -121.508789, 75.904154 ], [ -122.871094, 76.116622 ], [ -121.179199, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.213379, 77.645947 ] ] ], [ [ [ -88.242188, 80.643463 ], [ -89.384766, 80.858875 ], [ -90.000000, 81.167746 ], [ -90.219727, 81.261711 ], [ -91.384277, 81.553847 ], [ -91.604004, 81.895354 ], [ -90.109863, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.945312, 82.118384 ], [ -88.242188, 82.175425 ], [ -88.242188, 80.643463 ] ] ], [ [ [ -111.269531, 78.157062 ], [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.413467 ], [ -113.554688, 77.734951 ], [ -112.741699, 78.052896 ], [ -111.269531, 78.157062 ] ] ], [ [ [ -96.437988, 77.837219 ], [ -94.438477, 77.823323 ], [ -93.735352, 77.636542 ], [ -93.845215, 77.523122 ], [ -94.306641, 77.494607 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.837219 ] ] ], [ [ [ -98.635254, 78.874289 ], [ -97.338867, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.581055, 78.420193 ], [ -95.844727, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.569336, 78.459822 ], [ -98.635254, 78.874289 ] ] ], [ [ [ -105.512695, 79.302640 ], [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.327204 ], [ -99.689941, 77.911068 ], [ -101.315918, 78.021014 ], [ -102.963867, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.920832 ], [ -105.512695, 79.302640 ] ] ], [ [ [ -92.416992, 81.258372 ], [ -91.142578, 80.725269 ], [ -90.000000, 80.582539 ], [ -89.450684, 80.510360 ], [ -88.242188, 80.371707 ], [ -88.242188, 78.617003 ], [ -89.055176, 78.291586 ], [ -90.000000, 78.251387 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.754945 ], [ -93.955078, 79.117538 ], [ -93.164062, 79.383905 ], [ -94.987793, 79.375806 ], [ -96.086426, 79.706834 ], [ -96.723633, 80.159956 ], [ -96.020508, 80.604086 ], [ -95.339355, 80.907616 ], [ -94.306641, 80.980244 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ] ] ], [ [ [ -111.511230, 78.853070 ], [ -110.983887, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.895996, 78.406954 ], [ -112.543945, 78.411369 ], [ -112.543945, 78.551769 ], [ -111.511230, 78.853070 ] ] ], [ [ [ -88.242188, 77.122930 ], [ -88.242188, 76.439756 ], [ -89.494629, 76.475773 ], [ -89.626465, 76.955375 ], [ -88.242188, 77.122930 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -156.599121, 71.364089 ], [ -155.083008, 71.152294 ], [ -154.357910, 70.699951 ], [ -153.918457, 70.895078 ], [ -152.226562, 70.830248 ], [ -152.270508, 70.605319 ], [ -150.754395, 70.436799 ], [ -149.721680, 70.532222 ], [ -147.634277, 70.214875 ], [ -145.700684, 70.125430 ], [ -144.931641, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.998535, 69.718107 ], [ -140.998535, 65.802776 ], [ -167.673340, 65.802776 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.487305, 66.583217 ], [ -163.674316, 66.583217 ], [ -163.674316, 66.513260 ], [ -163.806152, 66.080457 ], [ -161.696777, 66.124962 ], [ -162.202148, 66.513260 ], [ -162.509766, 66.739902 ], [ -163.740234, 67.118748 ], [ -164.443359, 67.617589 ], [ -165.410156, 68.048677 ], [ -166.772461, 68.366801 ], [ -166.223145, 68.887274 ], [ -164.443359, 68.918910 ], [ -163.168945, 69.372573 ], [ -162.949219, 69.862328 ], [ -161.916504, 70.333533 ], [ -160.949707, 70.451508 ], [ -159.060059, 70.895078 ], [ -158.137207, 70.830248 ], [ -156.599121, 71.364089 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -180.000000, 68.966279 ], [ -177.561035, 68.204212 ], [ -174.946289, 67.212544 ], [ -175.034180, 66.591948 ], [ -174.836426, 66.513260 ], [ -174.353027, 66.337505 ], [ -174.396973, 66.513260 ], [ -174.572754, 67.067433 ], [ -171.870117, 66.921449 ], [ -171.013184, 66.513260 ], [ -169.914551, 65.982270 ], [ -170.310059, 65.802776 ], [ -178.879395, 65.802776 ], [ -178.703613, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.824219, 65.802776 ], [ -180.000000, 65.802776 ], [ -180.000000, 68.966279 ] ] ], [ [ [ -179.033203, 71.559692 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.138093 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.837461 ], [ -180.000000, 71.517945 ], [ -179.890137, 71.559692 ], [ -179.033203, 71.559692 ] ] ] ] } } -] } -] } -, -{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -62.600098, -65.802776 ], [ -62.600098, -65.856756 ], [ -62.138672, -66.187139 ], [ -62.819824, -66.416748 ], [ -63.764648, -66.513260 ], [ -64.313965, -66.835165 ], [ -64.885254, -67.144365 ], [ -65.522461, -67.575717 ], [ -65.676270, -67.949900 ], [ -65.324707, -68.358699 ], [ -64.797363, -68.672544 ], [ -63.962402, -68.911005 ], [ -63.215332, -69.224997 ], [ -62.797852, -69.618859 ], [ -62.578125, -69.990535 ], [ -62.292480, -70.377854 ], [ -61.809082, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.391602, -72.006158 ], [ -61.083984, -72.375758 ], [ -61.018066, -72.770574 ], [ -60.710449, -73.163173 ], [ -60.842285, -73.689611 ], [ -61.391602, -74.104015 ], [ -61.984863, -74.437572 ], [ -63.303223, -74.572582 ], [ -63.764648, -74.925142 ], [ -64.357910, -75.258649 ], [ -65.874023, -75.634085 ], [ -67.214355, -75.791336 ], [ -68.466797, -76.005470 ], [ -69.807129, -76.221675 ], [ -70.620117, -76.634147 ], [ -72.224121, -76.669656 ], [ -73.981934, -76.634147 ], [ -75.563965, -76.710125 ], [ -77.255859, -76.710125 ], [ -76.948242, -77.103328 ], [ -75.410156, -77.278694 ], [ -74.289551, -77.551572 ], [ -73.674316, -77.906466 ], [ -74.772949, -78.220028 ], [ -76.508789, -78.120932 ], [ -77.937012, -78.376004 ], [ -78.024902, -79.179588 ], [ -76.860352, -79.512662 ], [ -76.640625, -79.885879 ], [ -75.366211, -80.257110 ], [ -73.256836, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.026855, -81.000889 ], [ -68.203125, -81.314959 ], [ -65.720215, -81.472780 ], [ -63.259277, -81.748454 ], [ -61.567383, -82.039656 ], [ -59.699707, -82.373317 ], [ -58.732910, -82.845177 ], [ -58.227539, -83.218288 ], [ -57.019043, -82.864308 ], [ -55.371094, -82.569075 ], [ -53.635254, -82.255779 ], [ -51.547852, -82.003058 ], [ -49.768066, -81.726350 ], [ -47.285156, -81.707357 ], [ -44.846191, -81.845640 ], [ -42.824707, -82.079117 ], [ -42.165527, -81.650118 ], [ -40.781250, -81.354684 ], [ -38.254395, -81.334844 ], [ -34.387207, -80.904143 ], [ -32.321777, -80.767668 ], [ -30.102539, -80.589727 ], [ -28.564453, -80.334887 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.631968 ], [ -29.707031, -79.257682 ], [ -31.640625, -79.298560 ], [ -33.684082, -79.452500 ], [ -35.661621, -79.452500 ], [ -35.925293, -79.080140 ], [ -35.793457, -78.336092 ], [ -35.332031, -78.120932 ], [ -33.903809, -77.888038 ], [ -32.233887, -77.650648 ], [ -29.794922, -77.064036 ], [ -28.894043, -76.669656 ], [ -27.531738, -76.496311 ], [ -25.488281, -76.279122 ], [ -23.928223, -76.237366 ], [ -22.478027, -76.100796 ], [ -21.225586, -75.904154 ], [ -20.017090, -75.672197 ], [ -17.534180, -75.123864 ], [ -16.655273, -74.787379 ], [ -15.710449, -74.496413 ], [ -15.424805, -74.104015 ], [ -16.479492, -73.867612 ], [ -16.127930, -73.459729 ], [ -15.468750, -73.144070 ], [ -14.414062, -72.945431 ], [ -13.315430, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.006158 ], [ -11.030273, -71.538830 ], [ -10.305176, -71.258480 ], [ -9.118652, -71.321915 ], [ -8.613281, -71.656749 ], [ -7.426758, -71.691293 ], [ -7.382812, -71.321915 ], [ -6.877441, -70.931004 ], [ -5.800781, -71.024106 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.455153 ], [ -3.054199, -71.279648 ], [ -1.801758, -71.166486 ], [ -0.681152, -71.223149 ], [ -0.241699, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.856934, -71.300793 ], [ 1.757812, -71.145195 ], [ 1.757812, -85.200475 ], [ -91.757812, -85.200475 ], [ -91.757812, -73.321553 ], [ -91.428223, -73.397060 ], [ -90.109863, -73.321553 ], [ -90.000000, -73.245712 ], [ -89.230957, -72.554498 ], [ -88.439941, -73.003333 ], [ -87.275391, -73.182256 ], [ -86.022949, -73.086633 ], [ -85.209961, -73.478485 ], [ -83.891602, -73.515935 ], [ -82.683105, -73.633981 ], [ -81.474609, -73.849286 ], [ -80.705566, -73.478485 ], [ -80.310059, -73.124945 ], [ -79.299316, -73.515935 ], [ -77.937012, -73.415885 ], [ -76.926270, -73.633981 ], [ -76.223145, -73.965009 ], [ -74.904785, -73.867612 ], [ -73.872070, -73.652545 ], [ -72.839355, -73.397060 ], [ -71.630859, -73.258376 ], [ -70.224609, -73.144070 ], [ -68.950195, -73.003333 ], [ -67.961426, -72.790088 ], [ -67.390137, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.258301, -71.635993 ], [ -68.488770, -70.103008 ], [ -68.554688, -69.710489 ], [ -68.466797, -69.318320 ], [ -67.983398, -68.950500 ], [ -67.587891, -68.536276 ], [ -67.434082, -68.147032 ], [ -67.631836, -67.717778 ], [ -67.741699, -67.322924 ], [ -67.258301, -66.869715 ], [ -66.599121, -66.513260 ], [ -66.071777, -66.204876 ], [ -65.390625, -65.892680 ], [ -65.126953, -65.802776 ], [ -62.600098, -65.802776 ] ] ], [ [ [ -70.268555, -68.871439 ], [ -69.741211, -69.248365 ], [ -69.499512, -69.618859 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.502908 ], [ -68.466797, -70.952528 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.794547 ], [ -68.796387, -72.168351 ], [ -69.960938, -72.302431 ], [ -71.081543, -72.501722 ], [ -72.399902, -72.481891 ], [ -71.916504, -72.087432 ], [ -74.201660, -72.362448 ], [ -74.970703, -72.067147 ], [ -75.014648, -71.656749 ], [ -73.916016, -71.265539 ], [ -73.234863, -71.145195 ], [ -72.092285, -71.187754 ], [ -71.784668, -70.678153 ], [ -71.740723, -70.303933 ], [ -71.762695, -69.503765 ], [ -71.191406, -69.029279 ], [ -70.268555, -68.871439 ] ] ], [ [ [ -46.669922, -77.827957 ], [ -45.175781, -78.043795 ], [ -43.923340, -78.477392 ], [ -43.505859, -79.084302 ], [ -43.374023, -79.512662 ], [ -43.352051, -80.023849 ], [ -44.890137, -80.338575 ], [ -46.516113, -80.593319 ], [ -48.405762, -80.827405 ], [ -50.493164, -81.024916 ], [ -52.866211, -80.966455 ], [ -54.184570, -80.632740 ], [ -54.008789, -80.219856 ], [ -51.855469, -79.947431 ], [ -50.998535, -79.612177 ], [ -50.383301, -79.179588 ], [ -49.921875, -78.810511 ], [ -48.669434, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.827957 ] ] ], [ [ [ -60.622559, -79.628013 ], [ -59.589844, -80.039064 ], [ -60.161133, -80.997452 ], [ -62.270508, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.586134 ], [ -65.742188, -80.546518 ], [ -66.291504, -80.253391 ], [ -64.050293, -80.294224 ], [ -61.896973, -80.390065 ], [ -61.149902, -79.978067 ], [ -60.622559, -79.628013 ] ] ] ] } } -] } -] } -, -{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.807617, 1.757537 ], [ -67.873535, 1.713612 ], [ -69.829102, 1.735574 ], [ -69.807129, 1.098565 ], [ -69.235840, 0.988720 ], [ -69.257812, 0.615223 ], [ -69.455566, 0.725078 ], [ -70.026855, 0.549308 ], [ -70.026855, -0.175781 ], [ -69.587402, -0.549308 ], [ -69.433594, -1.120534 ], [ -69.455566, -1.537901 ], [ -69.895020, -4.280680 ], [ -70.400391, -3.754634 ], [ -70.708008, -3.732708 ], [ -70.048828, -2.723583 ], [ -70.817871, -2.240640 ], [ -71.433105, -2.328460 ], [ -71.784668, -2.152814 ], [ -72.333984, -2.416276 ], [ -73.081055, -2.306506 ], [ -73.674316, -1.252342 ], [ -74.135742, -0.988720 ], [ -74.443359, -0.527336 ], [ -75.124512, -0.043945 ], [ -75.388184, -0.131836 ], [ -75.651855, 0.000000 ], [ -76.311035, 0.417477 ], [ -76.596680, 0.263671 ], [ -77.431641, 0.417477 ], [ -77.673340, 0.834931 ], [ -77.871094, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.662109, 1.757537 ], [ -67.807617, 1.757537 ] ] ], [ [ [ -67.038574, 1.757537 ], [ -66.884766, 1.274309 ], [ -67.082520, 1.142502 ], [ -67.302246, 1.757537 ], [ -67.038574, 1.757537 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.138184, 1.757537 ], [ -64.204102, 1.493971 ], [ -65.368652, 1.098565 ], [ -65.566406, 0.790990 ], [ -66.335449, 0.725078 ], [ -66.884766, 1.274309 ], [ -67.038574, 1.757537 ], [ -64.138184, 1.757537 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.590332, 1.757537 ], [ -57.678223, 1.691649 ], [ -58.117676, 1.515936 ], [ -58.447266, 1.472006 ], [ -58.557129, 1.274309 ], [ -59.040527, 1.318243 ], [ -59.611816, 1.757537 ], [ -57.590332, 1.757537 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.859863, 1.384143 ], [ -77.871094, 0.812961 ], [ -77.673340, 0.834931 ], [ -77.431641, 0.417477 ], [ -76.596680, 0.263671 ], [ -76.311035, 0.417477 ], [ -75.651855, 0.000000 ], [ -75.388184, -0.131836 ], [ -75.234375, -0.900842 ], [ -75.563965, -1.559866 ], [ -76.640625, -2.591889 ], [ -77.849121, -2.986927 ], [ -78.464355, -3.864255 ], [ -78.640137, -4.543570 ], [ -79.211426, -4.937724 ], [ -79.628906, -4.434044 ], [ -80.046387, -4.324501 ], [ -80.463867, -4.412137 ], [ -80.485840, -4.039618 ], [ -80.200195, -3.820408 ], [ -80.310059, -3.403758 ], [ -79.782715, -2.635789 ], [ -80.002441, -2.218684 ], [ -80.375977, -2.679687 ], [ -80.969238, -2.240640 ], [ -80.771484, -1.955187 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.900842 ], [ -80.419922, -0.263671 ], [ -80.244141, 0.000000 ], [ -80.024414, 0.373533 ], [ -80.112305, 0.769020 ], [ -79.562988, 0.988720 ], [ -78.859863, 1.384143 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.124512, -0.043945 ], [ -74.443359, -0.527336 ], [ -74.135742, -0.988720 ], [ -73.674316, -1.252342 ], [ -73.081055, -2.306506 ], [ -72.333984, -2.416276 ], [ -71.784668, -2.152814 ], [ -71.433105, -2.328460 ], [ -70.817871, -2.240640 ], [ -70.048828, -2.723583 ], [ -70.708008, -3.732708 ], [ -70.400391, -3.754634 ], [ -69.895020, -4.280680 ], [ -70.795898, -4.236856 ], [ -70.949707, -4.390229 ], [ -71.762695, -4.587376 ], [ -72.905273, -5.266008 ], [ -72.971191, -5.725311 ], [ -73.234863, -6.075011 ], [ -73.125000, -6.620957 ], [ -73.740234, -6.904614 ], [ -73.740234, -7.340675 ], [ -74.003906, -7.514981 ], [ -73.586426, -8.407168 ], [ -73.037109, -9.015302 ], [ -73.234863, -9.449062 ], [ -72.575684, -9.514079 ], [ -72.202148, -10.033767 ], [ -71.323242, -10.077037 ], [ -70.488281, -9.470736 ], [ -70.554199, -11.005904 ], [ -70.114746, -11.113727 ], [ -69.543457, -10.941192 ], [ -68.686523, -12.554564 ], [ -68.884277, -12.897489 ], [ -68.950195, -14.434680 ], [ -69.345703, -14.944785 ], [ -69.169922, -15.305380 ], [ -69.411621, -15.644197 ], [ -68.972168, -16.488765 ], [ -69.609375, -17.560247 ], [ -69.873047, -18.083201 ], [ -70.378418, -18.333669 ], [ -71.389160, -17.769612 ], [ -71.477051, -17.350638 ], [ -73.454590, -16.341226 ], [ -75.256348, -15.262989 ], [ -76.025391, -14.647368 ], [ -76.442871, -13.816744 ], [ -76.267090, -13.517838 ], [ -77.124023, -12.211180 ], [ -78.112793, -10.358151 ], [ -79.057617, -8.385431 ], [ -79.453125, -7.928675 ], [ -79.760742, -7.188101 ], [ -80.551758, -6.533645 ], [ -81.254883, -6.118708 ], [ -80.947266, -5.681584 ], [ -81.430664, -4.718778 ], [ -81.101074, -4.017699 ], [ -80.310059, -3.403758 ], [ -80.200195, -3.820408 ], [ -80.485840, -4.039618 ], [ -80.463867, -4.412137 ], [ -80.046387, -4.324501 ], [ -79.628906, -4.434044 ], [ -79.211426, -4.937724 ], [ -78.640137, -4.543570 ], [ -78.464355, -3.864255 ], [ -77.849121, -2.986927 ], [ -76.640625, -2.591889 ], [ -75.563965, -1.559866 ], [ -75.234375, -0.900842 ], [ -75.388184, -0.131836 ], [ -75.124512, -0.043945 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.509535 ], [ -68.642578, -52.629729 ], [ -68.642578, -54.863963 ], [ -67.565918, -54.863963 ], [ -66.972656, -54.889246 ], [ -67.302246, -55.291628 ], [ -68.159180, -55.603178 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.491304 ], [ -69.960938, -55.191412 ], [ -71.015625, -55.053203 ], [ -72.268066, -54.482805 ], [ -73.300781, -53.956086 ], [ -74.663086, -52.829321 ], [ -73.850098, -53.041213 ], [ -72.443848, -53.709714 ], [ -71.125488, -54.072283 ], [ -70.598145, -53.605544 ], [ -70.268555, -52.922151 ], [ -69.345703, -52.509535 ] ] ], [ [ [ -69.609375, -17.560247 ], [ -69.104004, -18.250220 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.394068 ], [ -68.774414, -20.365228 ], [ -68.225098, -21.493964 ], [ -67.829590, -22.857195 ], [ -67.126465, -22.735657 ], [ -66.994629, -22.978624 ], [ -67.346191, -24.006326 ], [ -68.422852, -24.507143 ], [ -68.400879, -26.175159 ], [ -68.598633, -26.490240 ], [ -68.312988, -26.882880 ], [ -69.016113, -27.508271 ], [ -69.675293, -28.459033 ], [ -70.026855, -29.363027 ], [ -69.938965, -30.334954 ], [ -70.554199, -31.353637 ], [ -70.092773, -33.082337 ], [ -69.829102, -33.266250 ], [ -69.829102, -34.179998 ], [ -70.400391, -35.155846 ], [ -70.378418, -35.995785 ], [ -71.125488, -36.650793 ], [ -71.125488, -37.561997 ], [ -70.817871, -38.548165 ], [ -71.433105, -38.908133 ], [ -71.696777, -39.791655 ], [ -71.916504, -40.830437 ], [ -71.762695, -42.049293 ], [ -72.158203, -42.244785 ], [ -71.916504, -43.405047 ], [ -71.477051, -43.786958 ], [ -71.806641, -44.197959 ], [ -71.345215, -44.402392 ], [ -71.235352, -44.777936 ], [ -71.674805, -44.964798 ], [ -71.564941, -45.552525 ], [ -71.938477, -46.875213 ], [ -72.465820, -47.724545 ], [ -72.333984, -48.239309 ], [ -72.663574, -48.864715 ], [ -73.432617, -49.310799 ], [ -73.344727, -50.373496 ], [ -72.993164, -50.736455 ], [ -72.312012, -50.666872 ], [ -72.333984, -51.412912 ], [ -71.916504, -51.998410 ], [ -69.499512, -52.133488 ], [ -68.576660, -52.295042 ], [ -69.477539, -52.281602 ], [ -69.960938, -52.536273 ], [ -70.861816, -52.895649 ], [ -71.015625, -53.826597 ], [ -71.433105, -53.852527 ], [ -72.575684, -53.527248 ], [ -73.718262, -52.829321 ], [ -74.948730, -52.254709 ], [ -75.278320, -51.618017 ], [ -74.992676, -51.041394 ], [ -75.498047, -50.373496 ], [ -75.629883, -48.661943 ], [ -75.190430, -47.709762 ], [ -74.135742, -46.935261 ], [ -75.651855, -46.634351 ], [ -74.707031, -45.752193 ], [ -74.355469, -44.087585 ], [ -73.256836, -44.449468 ], [ -72.729492, -42.374778 ], [ -73.410645, -42.114524 ], [ -73.718262, -43.357138 ], [ -74.333496, -43.213183 ], [ -74.025879, -41.787697 ], [ -73.696289, -39.926588 ], [ -73.234863, -39.249271 ], [ -73.520508, -38.272689 ], [ -73.608398, -37.142803 ], [ -73.168945, -37.107765 ], [ -72.553711, -35.496456 ], [ -71.872559, -33.906896 ], [ -71.455078, -32.417066 ], [ -71.674805, -30.902225 ], [ -71.389160, -30.088108 ], [ -71.499023, -28.844674 ], [ -70.905762, -27.625140 ], [ -70.729980, -25.700938 ], [ -70.092773, -21.391705 ], [ -70.180664, -19.746024 ], [ -70.378418, -18.333669 ], [ -69.873047, -18.083201 ], [ -69.609375, -17.560247 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.346680, -9.752370 ], [ -65.456543, -10.509417 ], [ -65.324707, -10.876465 ], [ -65.412598, -11.566144 ], [ -64.335938, -12.447305 ], [ -63.215332, -12.618897 ], [ -62.819824, -12.983148 ], [ -62.138672, -13.197165 ], [ -61.721191, -13.475106 ], [ -61.105957, -13.475106 ], [ -60.512695, -13.774066 ], [ -60.468750, -14.349548 ], [ -60.270996, -14.626109 ], [ -60.270996, -15.072124 ], [ -60.556641, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.249512, -16.299051 ], [ -58.403320, -16.867634 ], [ -58.293457, -17.266728 ], [ -57.744141, -17.539297 ], [ -57.502441, -18.166730 ], [ -57.678223, -18.958246 ], [ -57.963867, -19.394068 ], [ -57.854004, -19.952696 ], [ -58.183594, -20.159098 ], [ -58.183594, -19.849394 ], [ -59.128418, -19.352611 ], [ -60.051270, -19.331878 ], [ -61.787109, -19.621892 ], [ -62.270508, -20.509355 ], [ -62.292480, -21.043491 ], [ -62.687988, -22.248429 ], [ -62.863770, -22.024546 ], [ -64.006348, -21.983801 ], [ -64.379883, -22.796439 ], [ -64.973145, -22.065278 ], [ -66.291504, -21.820708 ], [ -67.126465, -22.735657 ], [ -67.829590, -22.857195 ], [ -68.225098, -21.493964 ], [ -68.774414, -20.365228 ], [ -68.444824, -19.394068 ], [ -68.972168, -18.979026 ], [ -69.104004, -18.250220 ], [ -69.609375, -17.560247 ], [ -68.972168, -16.488765 ], [ -69.411621, -15.644197 ], [ -69.169922, -15.305380 ], [ -69.345703, -14.944785 ], [ -68.950195, -14.434680 ], [ -68.884277, -12.897489 ], [ -68.686523, -12.554564 ], [ -69.543457, -10.941192 ], [ -68.796387, -11.027472 ], [ -68.291016, -11.005904 ], [ -68.049316, -10.703792 ], [ -67.192383, -10.293301 ], [ -66.665039, -9.925566 ], [ -65.346680, -9.752370 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -49.987793, 1.757537 ], [ -49.965820, 1.054628 ], [ -50.712891, 0.241699 ], [ -50.405273, -0.065918 ], [ -48.625488, -0.219726 ], [ -48.603516, -1.230374 ], [ -47.834473, -0.571280 ], [ -46.582031, -0.922812 ], [ -44.912109, -1.537901 ], [ -44.428711, -2.130856 ], [ -44.582520, -2.679687 ], [ -43.439941, -2.372369 ], [ -41.484375, -2.899153 ], [ -39.990234, -2.855263 ], [ -38.518066, -3.688855 ], [ -37.243652, -4.806365 ], [ -36.474609, -5.090944 ], [ -35.617676, -5.134715 ], [ -35.244141, -5.462896 ], [ -34.738770, -7.340675 ], [ -35.134277, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.067871, -11.027472 ], [ -37.705078, -12.168226 ], [ -38.430176, -13.025966 ], [ -38.693848, -13.047372 ], [ -38.957520, -13.774066 ], [ -38.891602, -15.665354 ], [ -39.287109, -17.853290 ], [ -39.594727, -18.250220 ], [ -39.770508, -19.580493 ], [ -40.781250, -20.899871 ], [ -40.957031, -21.922663 ], [ -41.770020, -22.370396 ], [ -41.989746, -22.958393 ], [ -43.088379, -22.958393 ], [ -44.648438, -23.342256 ], [ -45.373535, -23.785345 ], [ -46.472168, -24.086589 ], [ -47.658691, -24.866503 ], [ -48.515625, -25.859224 ], [ -48.647461, -26.608174 ], [ -48.493652, -27.156920 ], [ -48.669434, -28.168875 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.209713 ], [ -50.712891, -30.977609 ], [ -51.591797, -31.765537 ], [ -52.272949, -32.231390 ], [ -52.712402, -33.192731 ], [ -53.393555, -33.760882 ], [ -53.657227, -33.192731 ], [ -53.217773, -32.713355 ], [ -53.789062, -32.045333 ], [ -54.580078, -31.484893 ], [ -55.612793, -30.845647 ], [ -55.986328, -30.864510 ], [ -56.997070, -30.107118 ], [ -57.634277, -30.202114 ], [ -56.293945, -28.844674 ], [ -55.173340, -27.877928 ], [ -53.657227, -26.922070 ], [ -53.635254, -26.115986 ], [ -54.140625, -25.542441 ], [ -54.645996, -25.720735 ], [ -54.448242, -25.145285 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.006326 ], [ -54.667969, -23.825551 ], [ -55.041504, -23.986253 ], [ -55.415039, -23.946096 ], [ -55.524902, -23.563987 ], [ -55.612793, -22.654572 ], [ -55.810547, -22.350076 ], [ -56.491699, -22.085640 ], [ -56.887207, -22.268764 ], [ -57.941895, -22.085640 ], [ -57.875977, -20.715015 ], [ -58.183594, -20.159098 ], [ -57.854004, -19.952696 ], [ -57.963867, -19.394068 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.166730 ], [ -57.744141, -17.539297 ], [ -58.293457, -17.266728 ], [ -58.403320, -16.867634 ], [ -58.249512, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.556641, -15.093339 ], [ -60.270996, -15.072124 ], [ -60.270996, -14.626109 ], [ -60.468750, -14.349548 ], [ -60.512695, -13.774066 ], [ -61.105957, -13.475106 ], [ -61.721191, -13.475106 ], [ -62.138672, -13.197165 ], [ -62.819824, -12.983148 ], [ -63.215332, -12.618897 ], [ -64.335938, -12.447305 ], [ -65.412598, -11.566144 ], [ -65.324707, -10.876465 ], [ -65.456543, -10.509417 ], [ -65.346680, -9.752370 ], [ -66.665039, -9.925566 ], [ -67.192383, -10.293301 ], [ -68.049316, -10.703792 ], [ -68.291016, -11.005904 ], [ -68.796387, -11.027472 ], [ -69.543457, -10.941192 ], [ -70.114746, -11.113727 ], [ -70.554199, -11.005904 ], [ -70.488281, -9.470736 ], [ -71.323242, -10.077037 ], [ -72.202148, -10.033767 ], [ -72.575684, -9.514079 ], [ -73.234863, -9.449062 ], [ -73.037109, -9.015302 ], [ -73.586426, -8.407168 ], [ -74.003906, -7.514981 ], [ -73.740234, -7.340675 ], [ -73.740234, -6.904614 ], [ -73.125000, -6.620957 ], [ -73.234863, -6.075011 ], [ -72.971191, -5.725311 ], [ -72.905273, -5.266008 ], [ -71.762695, -4.587376 ], [ -70.949707, -4.390229 ], [ -70.795898, -4.236856 ], [ -69.895020, -4.280680 ], [ -69.455566, -1.537901 ], [ -69.433594, -1.120534 ], [ -69.587402, -0.549308 ], [ -70.026855, -0.175781 ], [ -70.026855, 0.549308 ], [ -69.455566, 0.725078 ], [ -69.257812, 0.615223 ], [ -69.235840, 0.988720 ], [ -69.807129, 1.098565 ], [ -69.829102, 1.735574 ], [ -67.873535, 1.713612 ], [ -67.807617, 1.757537 ], [ -67.302246, 1.757537 ], [ -67.082520, 1.142502 ], [ -66.884766, 1.274309 ], [ -66.335449, 0.725078 ], [ -65.566406, 0.790990 ], [ -65.368652, 1.098565 ], [ -64.204102, 1.493971 ], [ -64.138184, 1.757537 ], [ -59.611816, 1.757537 ], [ -59.040527, 1.318243 ], [ -58.557129, 1.274309 ], [ -58.447266, 1.472006 ], [ -58.117676, 1.515936 ], [ -57.678223, 1.691649 ], [ -57.590332, 1.757537 ], [ -49.987793, 1.757537 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.051270, -19.331878 ], [ -59.128418, -19.352611 ], [ -58.183594, -19.849394 ], [ -58.183594, -20.159098 ], [ -57.875977, -20.715015 ], [ -57.941895, -22.085640 ], [ -56.887207, -22.268764 ], [ -56.491699, -22.085640 ], [ -55.810547, -22.350076 ], [ -55.612793, -22.654572 ], [ -55.524902, -23.563987 ], [ -55.415039, -23.946096 ], [ -55.041504, -23.986253 ], [ -54.667969, -23.825551 ], [ -54.294434, -24.006326 ], [ -54.294434, -24.567108 ], [ -54.448242, -25.145285 ], [ -54.645996, -25.720735 ], [ -54.799805, -26.608174 ], [ -55.700684, -27.371767 ], [ -56.491699, -27.547242 ], [ -57.612305, -27.391278 ], [ -58.623047, -27.117813 ], [ -57.634277, -25.601902 ], [ -57.788086, -25.145285 ], [ -58.820801, -24.766785 ], [ -60.029297, -24.026397 ], [ -60.864258, -23.865745 ], [ -62.687988, -22.248429 ], [ -62.292480, -21.043491 ], [ -62.270508, -20.509355 ], [ -61.787109, -19.621892 ], [ -60.051270, -19.331878 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.642578, -52.629729 ], [ -68.269043, -53.094024 ], [ -67.763672, -53.839564 ], [ -66.467285, -54.444492 ], [ -65.061035, -54.699234 ], [ -65.500488, -55.191412 ], [ -66.467285, -55.241552 ], [ -66.972656, -54.889246 ], [ -67.565918, -54.863963 ], [ -68.642578, -54.863963 ], [ -68.642578, -52.629729 ] ] ], [ [ [ -66.291504, -21.820708 ], [ -64.973145, -22.065278 ], [ -64.379883, -22.796439 ], [ -64.006348, -21.983801 ], [ -62.863770, -22.024546 ], [ -62.687988, -22.248429 ], [ -60.864258, -23.865745 ], [ -60.029297, -24.026397 ], [ -58.820801, -24.766785 ], [ -57.788086, -25.145285 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.117813 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.371767 ], [ -54.799805, -26.608174 ], [ -54.645996, -25.720735 ], [ -54.140625, -25.542441 ], [ -53.635254, -26.115986 ], [ -53.657227, -26.922070 ], [ -55.173340, -27.877928 ], [ -56.293945, -28.844674 ], [ -57.634277, -30.202114 ], [ -57.875977, -31.015279 ], [ -58.161621, -32.026706 ], [ -58.139648, -33.027088 ], [ -58.359375, -33.247876 ], [ -58.513184, -34.415973 ], [ -57.238770, -35.281501 ], [ -57.370605, -35.960223 ], [ -56.755371, -36.403600 ], [ -56.799316, -36.897194 ], [ -57.766113, -38.169114 ], [ -59.238281, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.822591 ], [ -62.138672, -39.419221 ], [ -62.336426, -40.162083 ], [ -62.160645, -40.663973 ], [ -62.753906, -41.013066 ], [ -63.786621, -41.162114 ], [ -64.753418, -40.797177 ], [ -65.126953, -41.062786 ], [ -64.995117, -42.049293 ], [ -64.313965, -42.358544 ], [ -63.764648, -42.032974 ], [ -63.479004, -42.553080 ], [ -64.379883, -42.859860 ], [ -65.192871, -43.484812 ], [ -65.346680, -44.496505 ], [ -65.566406, -45.026950 ], [ -66.511230, -45.026950 ], [ -67.302246, -45.537137 ], [ -67.587891, -46.301406 ], [ -66.599121, -47.025206 ], [ -65.654297, -47.234490 ], [ -66.005859, -48.122101 ], [ -67.170410, -48.690960 ], [ -67.829590, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.147949, -50.722547 ], [ -68.818359, -51.767840 ], [ -68.159180, -52.348763 ], [ -68.576660, -52.295042 ], [ -69.499512, -52.133488 ], [ -71.916504, -51.998410 ], [ -72.333984, -51.412912 ], [ -72.312012, -50.666872 ], [ -72.993164, -50.736455 ], [ -73.344727, -50.373496 ], [ -73.432617, -49.310799 ], [ -72.663574, -48.864715 ], [ -72.333984, -48.239309 ], [ -72.465820, -47.724545 ], [ -71.938477, -46.875213 ], [ -71.564941, -45.552525 ], [ -71.674805, -44.964798 ], [ -71.235352, -44.777936 ], [ -71.345215, -44.402392 ], [ -71.806641, -44.197959 ], [ -71.477051, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.158203, -42.244785 ], [ -71.762695, -42.049293 ], [ -71.916504, -40.830437 ], [ -71.696777, -39.791655 ], [ -71.433105, -38.908133 ], [ -70.817871, -38.548165 ], [ -71.125488, -37.561997 ], [ -71.125488, -36.650793 ], [ -70.378418, -35.995785 ], [ -70.400391, -35.155846 ], [ -69.829102, -34.179998 ], [ -69.829102, -33.266250 ], [ -70.092773, -33.082337 ], [ -70.554199, -31.353637 ], [ -69.938965, -30.334954 ], [ -70.026855, -29.363027 ], [ -69.675293, -28.459033 ], [ -69.016113, -27.508271 ], [ -68.312988, -26.882880 ], [ -68.598633, -26.490240 ], [ -68.400879, -26.175159 ], [ -68.422852, -24.507143 ], [ -67.346191, -24.006326 ], [ -66.994629, -22.978624 ], [ -67.126465, -22.735657 ], [ -66.291504, -21.820708 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.997070, -30.107118 ], [ -55.986328, -30.864510 ], [ -55.612793, -30.845647 ], [ -54.580078, -31.484893 ], [ -53.789062, -32.045333 ], [ -53.217773, -32.713355 ], [ -53.657227, -33.192731 ], [ -53.393555, -33.760882 ], [ -53.811035, -34.379713 ], [ -54.953613, -34.939985 ], [ -55.678711, -34.741612 ], [ -56.228027, -34.849875 ], [ -57.150879, -34.415973 ], [ -57.832031, -34.452218 ], [ -58.447266, -33.906896 ], [ -58.359375, -33.247876 ], [ -58.139648, -33.027088 ], [ -58.161621, -32.026706 ], [ -57.875977, -31.015279 ], [ -57.634277, -30.202114 ], [ -56.997070, -30.107118 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.557129, -51.096623 ], [ -57.766113, -51.549751 ], [ -58.051758, -51.890054 ], [ -59.414062, -52.187405 ], [ -59.853516, -51.849353 ], [ -60.710449, -52.295042 ], [ -61.215820, -51.849353 ], [ -60.007324, -51.248163 ], [ -59.150391, -51.495065 ], [ -58.557129, -51.096623 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.832031, -63.263299 ], [ -57.238770, -63.519175 ], [ -57.612305, -63.850354 ], [ -58.623047, -64.148952 ], [ -59.062500, -64.358931 ], [ -59.809570, -64.206377 ], [ -60.622559, -64.301822 ], [ -62.028809, -64.792848 ], [ -62.512207, -65.090646 ], [ -62.666016, -65.476508 ], [ -62.600098, -65.856756 ], [ -62.138672, -66.187139 ], [ -62.819824, -66.416748 ], [ -63.764648, -66.513260 ], [ -64.973145, -67.204032 ], [ -67.609863, -67.204032 ], [ -67.258301, -66.869715 ], [ -66.599121, -66.513260 ], [ -66.071777, -66.204876 ], [ -65.390625, -65.892680 ], [ -64.577637, -65.594800 ], [ -64.182129, -65.164579 ], [ -63.632812, -64.895589 ], [ -63.017578, -64.633292 ], [ -62.050781, -64.576754 ], [ -61.435547, -64.263684 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.947025 ], [ -59.172363, -63.694987 ], [ -58.601074, -63.381679 ], [ -57.832031, -63.263299 ] ] ] } } -] } -] } -, -{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -91.757812, 57.171992 ], [ -90.900879, 57.290918 ], [ -90.000000, 57.076575 ], [ -89.055176, 56.860986 ], [ -88.044434, 56.474628 ], [ -87.341309, 56.010666 ], [ -86.088867, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.254077 ], [ -82.287598, 55.153766 ], [ -82.441406, 54.290882 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.220647 ], [ -79.145508, 51.536086 ], [ -78.618164, 52.562995 ], [ -79.145508, 54.149567 ], [ -79.848633, 54.673831 ], [ -78.244629, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.552734, 56.535258 ], [ -76.640625, 57.207710 ], [ -77.321777, 58.054632 ], [ -78.530273, 58.813742 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.329208 ], [ -77.431641, 62.552857 ], [ -75.717773, 62.288365 ], [ -74.685059, 62.186014 ], [ -73.850098, 62.451406 ], [ -72.927246, 62.114161 ], [ -71.696777, 61.533170 ], [ -71.389160, 61.143235 ], [ -69.609375, 61.068917 ], [ -69.631348, 60.228903 ], [ -69.301758, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.258789, 59.877912 ], [ -64.599609, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.413574, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.216490 ], [ -57.985840, 54.952386 ], [ -57.348633, 54.635697 ], [ -56.953125, 53.787672 ], [ -56.162109, 53.657661 ], [ -55.766602, 53.278353 ], [ -55.700684, 52.146973 ], [ -57.128906, 51.426614 ], [ -58.776855, 51.069017 ], [ -60.051270, 50.247205 ], [ -61.743164, 50.092393 ], [ -63.874512, 50.303376 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.525208 ], [ -68.532715, 49.081062 ], [ -69.960938, 47.754098 ], [ -71.125488, 46.830134 ], [ -70.268555, 46.995241 ], [ -68.664551, 48.312428 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.182129, 48.748945 ], [ -65.126953, 48.078079 ], [ -64.819336, 46.995241 ], [ -64.489746, 46.240652 ], [ -63.193359, 45.752193 ], [ -61.523438, 45.890008 ], [ -60.534668, 47.010226 ], [ -60.468750, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.274886 ], [ -63.259277, 44.684277 ], [ -64.248047, 44.276671 ], [ -65.368652, 43.548548 ], [ -66.137695, 43.628123 ], [ -66.181641, 44.465151 ], [ -64.445801, 45.305803 ], [ -66.027832, 45.259422 ], [ -67.148438, 45.151053 ], [ -67.807617, 45.706179 ], [ -67.807617, 47.070122 ], [ -68.247070, 47.368594 ], [ -68.906250, 47.189712 ], [ -69.257812, 47.457809 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.103516, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.520996, 45.011419 ], [ -74.882812, 45.011419 ], [ -75.322266, 44.824708 ], [ -76.508789, 44.024422 ], [ -76.838379, 43.644026 ], [ -78.728027, 43.628123 ], [ -79.189453, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.875964 ], [ -80.266113, 42.374778 ], [ -81.298828, 42.212245 ], [ -82.441406, 41.689322 ], [ -82.705078, 41.689322 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.983994 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.439674 ], [ -82.441406, 42.988576 ], [ -82.155762, 43.580391 ], [ -82.551270, 45.352145 ], [ -83.605957, 45.828799 ], [ -83.474121, 45.996962 ], [ -83.627930, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.111328, 46.286224 ], [ -84.155273, 46.513516 ], [ -84.353027, 46.422713 ], [ -84.616699, 46.452997 ], [ -84.550781, 46.543750 ], [ -84.792480, 46.649436 ], [ -84.880371, 46.905246 ], [ -88.395996, 48.312428 ], [ -89.274902, 48.034019 ], [ -89.604492, 48.019324 ], [ -90.000000, 48.107431 ], [ -90.834961, 48.283193 ], [ -91.647949, 48.151428 ], [ -91.757812, 48.180739 ], [ -91.757812, 57.171992 ] ] ], [ [ [ -55.876465, 51.645294 ], [ -55.415039, 51.590723 ], [ -55.612793, 51.330612 ], [ -56.140137, 50.694718 ], [ -56.799316, 49.823809 ], [ -56.162109, 50.162824 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.596470 ], [ -54.953613, 49.325122 ], [ -54.492188, 49.567978 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.531157 ], [ -53.107910, 48.690960 ], [ -52.976074, 48.166085 ], [ -52.668457, 47.546872 ], [ -53.085938, 46.664517 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.815099 ], [ -53.964844, 47.635784 ], [ -54.250488, 47.754098 ], [ -55.415039, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.305176, 47.398349 ], [ -56.271973, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.282227, 47.606163 ], [ -59.436035, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.531157 ], [ -58.403320, 49.138597 ], [ -57.370605, 50.722547 ], [ -56.755371, 51.289406 ], [ -55.876465, 51.645294 ] ] ], [ [ [ -64.028320, 47.040182 ], [ -63.676758, 46.558860 ], [ -62.951660, 46.422713 ], [ -62.028809, 46.452997 ], [ -62.512207, 46.042736 ], [ -62.885742, 45.981695 ], [ -64.160156, 46.407564 ], [ -64.401855, 46.739861 ], [ -64.028320, 47.040182 ] ] ], [ [ [ -64.182129, 49.965356 ], [ -62.863770, 49.710273 ], [ -61.853027, 49.296472 ], [ -61.809082, 49.109838 ], [ -62.314453, 49.095452 ], [ -63.610840, 49.410973 ], [ -64.533691, 49.880478 ], [ -64.182129, 49.965356 ] ] ], [ [ [ -63.852539, 67.204032 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.869715 ], [ -62.028809, 66.513260 ], [ -62.182617, 66.160511 ], [ -63.918457, 65.007224 ], [ -65.148926, 65.430867 ], [ -66.730957, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.159180, 65.694476 ], [ -67.104492, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.687500, 63.401361 ], [ -65.017090, 62.684228 ], [ -66.291504, 62.945231 ], [ -68.796387, 63.753350 ], [ -67.390137, 62.885205 ], [ -66.335449, 62.288365 ], [ -66.181641, 61.938950 ], [ -68.884277, 62.339411 ], [ -71.037598, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.685248 ], [ -74.838867, 64.680318 ], [ -74.838867, 64.396938 ], [ -77.717285, 64.235045 ], [ -78.574219, 64.576754 ], [ -77.915039, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.311523, 65.811781 ], [ -73.959961, 66.311035 ], [ -73.696289, 66.513260 ], [ -72.773438, 67.204032 ], [ -63.852539, 67.204032 ] ] ], [ [ [ -79.936523, 62.390369 ], [ -79.541016, 62.369996 ], [ -79.277344, 62.165502 ], [ -79.672852, 61.637726 ], [ -80.112305, 61.721118 ], [ -80.375977, 62.021528 ], [ -80.332031, 62.093600 ], [ -79.936523, 62.390369 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.892090, 62.905227 ], [ -81.914062, 62.714462 ], [ -83.078613, 62.165502 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.461567 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.484863, 65.375994 ], [ -83.891602, 65.118395 ], [ -82.792969, 64.774125 ], [ -81.650391, 64.463323 ], [ -81.562500, 63.985600 ], [ -80.837402, 64.062591 ], [ -80.112305, 63.733909 ], [ -80.991211, 63.421031 ], [ -82.551270, 63.656011 ], [ -83.122559, 64.110602 ], [ -84.111328, 63.577900 ], [ -85.539551, 63.054959 ], [ -85.869141, 63.646259 ], [ -87.231445, 63.548552 ], [ -86.374512, 64.043363 ], [ -86.242676, 64.830254 ], [ -85.891113, 65.739656 ] ] ], [ [ [ -75.761719, 67.204032 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.058105, 67.204032 ], [ -75.761719, 67.204032 ] ] ], [ [ [ -91.757812, 62.855146 ], [ -91.757812, 67.204032 ], [ -81.364746, 67.204032 ], [ -81.386719, 67.118748 ], [ -83.078613, 66.513260 ], [ -83.364258, 66.416748 ], [ -84.748535, 66.258011 ], [ -85.627441, 66.513260 ], [ -85.781250, 66.565747 ], [ -85.803223, 66.513260 ], [ -86.088867, 66.062633 ], [ -87.033691, 65.219894 ], [ -87.341309, 64.783488 ], [ -88.483887, 64.101007 ], [ -89.934082, 64.033744 ], [ -90.000000, 63.995235 ], [ -90.725098, 63.616982 ], [ -90.791016, 62.965212 ], [ -91.757812, 62.855146 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.395996, 48.312428 ], [ -84.880371, 46.905246 ], [ -84.792480, 46.649436 ], [ -84.550781, 46.543750 ], [ -84.616699, 46.452997 ], [ -84.353027, 46.422713 ], [ -84.155273, 46.513516 ], [ -84.111328, 46.286224 ], [ -83.891602, 46.118942 ], [ -83.627930, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.605957, 45.828799 ], [ -82.551270, 45.352145 ], [ -82.155762, 43.580391 ], [ -82.441406, 42.988576 ], [ -82.902832, 42.439674 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.983994 ], [ -83.034668, 41.836828 ], [ -82.705078, 41.689322 ], [ -82.441406, 41.689322 ], [ -81.298828, 42.212245 ], [ -80.266113, 42.374778 ], [ -78.947754, 42.875964 ], [ -78.925781, 42.972502 ], [ -79.013672, 43.277205 ], [ -79.189453, 43.468868 ], [ -78.728027, 43.628123 ], [ -76.838379, 43.644026 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.824708 ], [ -74.882812, 45.011419 ], [ -71.520996, 45.011419 ], [ -71.411133, 45.259422 ], [ -71.103516, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.694667 ], [ -69.257812, 47.457809 ], [ -68.906250, 47.189712 ], [ -68.247070, 47.368594 ], [ -67.807617, 47.070122 ], [ -67.807617, 45.706179 ], [ -67.148438, 45.151053 ], [ -66.972656, 44.824708 ], [ -68.049316, 44.339565 ], [ -69.060059, 43.992815 ], [ -70.136719, 43.691708 ], [ -70.817871, 42.875964 ], [ -70.839844, 42.342305 ], [ -70.510254, 41.820455 ], [ -70.092773, 41.787697 ], [ -70.202637, 42.147114 ], [ -69.895020, 41.934977 ], [ -69.982910, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.508577 ], [ -71.872559, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.718262, 40.946714 ], [ -72.246094, 41.129021 ], [ -71.960449, 40.930115 ], [ -73.366699, 40.630630 ], [ -74.003906, 40.630630 ], [ -73.959961, 40.763901 ], [ -74.267578, 40.480381 ], [ -73.981934, 40.430224 ], [ -74.179688, 39.724089 ], [ -74.926758, 38.942321 ], [ -74.992676, 39.198205 ], [ -75.212402, 39.249271 ], [ -75.541992, 39.504041 ], [ -75.322266, 38.976492 ], [ -75.080566, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.388184, 38.030786 ], [ -75.959473, 37.230328 ], [ -76.047363, 37.265310 ], [ -75.739746, 37.944198 ], [ -76.245117, 38.324420 ], [ -76.354980, 39.164141 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.099983 ], [ -76.992188, 38.255436 ], [ -76.311035, 37.926868 ], [ -76.267090, 36.967449 ], [ -75.981445, 36.914764 ], [ -75.871582, 36.562600 ], [ -75.739746, 35.567980 ], [ -76.376953, 34.813803 ], [ -77.409668, 34.524661 ], [ -78.068848, 33.943360 ], [ -78.574219, 33.870416 ], [ -79.079590, 33.504759 ], [ -79.211426, 33.174342 ], [ -80.310059, 32.509762 ], [ -80.881348, 32.045333 ], [ -81.342773, 31.447410 ], [ -81.496582, 30.732393 ], [ -81.320801, 30.050077 ], [ -80.991211, 29.190533 ], [ -80.551758, 28.478349 ], [ -80.551758, 28.052591 ], [ -80.068359, 26.882880 ], [ -80.134277, 25.819672 ], [ -80.397949, 25.224820 ], [ -80.683594, 25.085599 ], [ -81.188965, 25.204941 ], [ -81.342773, 25.641526 ], [ -81.716309, 25.878994 ], [ -82.727051, 27.508271 ], [ -82.858887, 27.897349 ], [ -82.661133, 28.555576 ], [ -82.946777, 29.113775 ], [ -83.715820, 29.954935 ], [ -84.111328, 30.107118 ], [ -85.122070, 29.649869 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.164126 ], [ -86.418457, 30.410782 ], [ -87.539062, 30.278044 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.428711, 29.897806 ], [ -89.450684, 29.496988 ], [ -89.230957, 29.305561 ], [ -89.428711, 29.171349 ], [ -89.780273, 29.324720 ], [ -90.000000, 29.209713 ], [ -90.175781, 29.132970 ], [ -90.900879, 29.152161 ], [ -91.647949, 29.688053 ], [ -91.757812, 29.668963 ], [ -91.757812, 48.180739 ], [ -91.647949, 48.151428 ], [ -90.834961, 48.283193 ], [ -90.000000, 48.107431 ], [ -89.604492, 48.019324 ], [ -89.274902, 48.034019 ], [ -88.395996, 48.312428 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.055664, 21.555284 ], [ -86.813965, 21.350781 ], [ -86.857910, 20.858812 ], [ -87.385254, 20.262197 ], [ -87.626953, 19.663280 ], [ -87.451172, 19.476950 ], [ -87.846680, 18.271086 ], [ -88.110352, 18.521283 ], [ -88.505859, 18.500447 ], [ -88.857422, 17.895114 ], [ -89.033203, 18.020528 ], [ -89.165039, 17.957832 ], [ -89.165039, 17.811456 ], [ -90.000000, 17.832374 ], [ -91.010742, 17.832374 ], [ -91.010742, 17.266728 ], [ -91.472168, 17.266728 ], [ -91.098633, 16.930705 ], [ -90.725098, 16.699340 ], [ -90.615234, 16.488765 ], [ -90.439453, 16.425548 ], [ -90.483398, 16.088042 ], [ -91.757812, 16.066929 ], [ -91.757812, 18.791918 ], [ -91.428223, 18.895893 ], [ -90.791016, 19.290406 ], [ -90.549316, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -90.000000, 21.125498 ], [ -89.604492, 21.268900 ], [ -88.549805, 21.493964 ], [ -87.670898, 21.473518 ], [ -87.055664, 21.555284 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.832374 ], [ -89.165039, 17.811456 ], [ -89.165039, 17.035777 ], [ -89.230957, 15.897942 ], [ -88.945312, 15.897942 ], [ -88.615723, 15.707663 ], [ -88.527832, 15.855674 ], [ -88.242188, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.165039, 15.072124 ], [ -89.230957, 14.881087 ], [ -89.165039, 14.689881 ], [ -89.362793, 14.434680 ], [ -89.604492, 14.370834 ], [ -89.538574, 14.264383 ], [ -90.000000, 13.944730 ], [ -90.065918, 13.902076 ], [ -90.109863, 13.752725 ], [ -90.615234, 13.923404 ], [ -91.252441, 13.944730 ], [ -91.757812, 14.179186 ], [ -91.757812, 16.066929 ], [ -90.483398, 16.088042 ], [ -90.439453, 16.425548 ], [ -90.615234, 16.488765 ], [ -90.725098, 16.699340 ], [ -91.098633, 16.930705 ], [ -91.472168, 17.266728 ], [ -91.010742, 17.266728 ], [ -91.010742, 17.832374 ], [ -90.000000, 17.832374 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.530273, 67.204032 ], [ -34.211426, 66.687784 ], [ -34.738770, 66.513260 ], [ -36.364746, 65.982270 ], [ -37.045898, 65.946472 ], [ -38.386230, 65.694476 ], [ -39.814453, 65.467386 ], [ -40.671387, 64.848937 ], [ -40.693359, 64.139369 ], [ -41.198730, 63.489767 ], [ -42.824707, 62.684228 ], [ -42.429199, 61.907926 ], [ -43.395996, 60.108670 ], [ -44.802246, 60.042904 ], [ -46.274414, 60.855613 ], [ -48.273926, 60.866312 ], [ -49.240723, 61.407236 ], [ -49.921875, 62.390369 ], [ -51.635742, 63.636504 ], [ -52.141113, 64.282760 ], [ -52.294922, 65.183030 ], [ -53.679199, 66.107170 ], [ -53.481445, 66.513260 ], [ -53.305664, 66.843807 ], [ -53.986816, 67.195518 ], [ -53.964844, 67.204032 ], [ -33.530273, 67.204032 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.200684, 25.224820 ], [ -77.893066, 25.185059 ], [ -77.541504, 24.347097 ], [ -77.541504, 23.765237 ], [ -77.783203, 23.725012 ], [ -78.046875, 24.287027 ], [ -78.420410, 24.587090 ], [ -78.200684, 25.224820 ] ] ], [ [ [ -77.805176, 27.059126 ], [ -77.014160, 26.608174 ], [ -77.189941, 25.898762 ], [ -77.365723, 26.017298 ], [ -77.343750, 26.549223 ], [ -77.805176, 26.941660 ], [ -77.805176, 27.059126 ] ] ], [ [ [ -78.530273, 26.882880 ], [ -77.871094, 26.843677 ], [ -77.827148, 26.588527 ], [ -78.925781, 26.431228 ], [ -78.991699, 26.804461 ], [ -78.530273, 26.882880 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.308105, 18.500447 ], [ -88.308105, 18.354526 ], [ -88.110352, 18.354526 ], [ -88.132324, 18.083201 ], [ -88.286133, 17.664960 ], [ -88.198242, 17.497389 ], [ -88.308105, 17.140790 ], [ -88.242188, 17.056785 ], [ -88.374023, 16.530898 ], [ -88.571777, 16.277960 ], [ -88.747559, 16.235772 ], [ -88.945312, 15.897942 ], [ -89.230957, 15.897942 ], [ -89.165039, 17.035777 ], [ -89.165039, 17.957832 ], [ -89.033203, 18.020528 ], [ -88.857422, 17.895114 ], [ -88.505859, 18.500447 ], [ -88.308105, 18.500447 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.362793, 14.434680 ], [ -89.077148, 14.349548 ], [ -88.857422, 14.157882 ], [ -88.549805, 13.987376 ], [ -88.505859, 13.859414 ], [ -88.066406, 13.966054 ], [ -87.868652, 13.902076 ], [ -87.736816, 13.795406 ], [ -87.802734, 13.389620 ], [ -87.912598, 13.154376 ], [ -88.483887, 13.175771 ], [ -88.857422, 13.261333 ], [ -89.274902, 13.475106 ], [ -89.824219, 13.539201 ], [ -90.000000, 13.667338 ], [ -90.109863, 13.752725 ], [ -90.065918, 13.902076 ], [ -90.000000, 13.944730 ], [ -89.538574, 14.264383 ], [ -89.604492, 14.370834 ], [ -89.362793, 14.434680 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.022949, 16.024696 ], [ -85.451660, 15.897942 ], [ -85.187988, 15.919074 ], [ -84.990234, 16.003576 ], [ -84.375000, 15.855674 ], [ -83.781738, 15.432501 ], [ -83.430176, 15.284185 ], [ -83.166504, 15.008464 ], [ -83.496094, 15.029686 ], [ -83.649902, 14.881087 ], [ -83.979492, 14.753635 ], [ -84.243164, 14.753635 ], [ -84.462891, 14.626109 ], [ -84.660645, 14.668626 ], [ -84.836426, 14.838612 ], [ -84.946289, 14.796128 ], [ -85.056152, 14.562318 ], [ -85.166016, 14.562318 ], [ -85.166016, 14.370834 ], [ -85.715332, 13.966054 ], [ -85.803223, 13.838080 ], [ -86.110840, 14.051331 ], [ -86.330566, 13.774066 ], [ -86.770020, 13.774066 ], [ -86.748047, 13.282719 ], [ -86.901855, 13.261333 ], [ -87.011719, 13.025966 ], [ -87.319336, 13.004558 ], [ -87.495117, 13.304103 ], [ -87.802734, 13.389620 ], [ -87.736816, 13.795406 ], [ -87.868652, 13.902076 ], [ -88.066406, 13.966054 ], [ -88.505859, 13.859414 ], [ -88.549805, 13.987376 ], [ -88.857422, 14.157882 ], [ -89.077148, 14.349548 ], [ -89.362793, 14.434680 ], [ -89.165039, 14.689881 ], [ -89.230957, 14.881087 ], [ -89.165039, 15.072124 ], [ -88.681641, 15.347762 ], [ -88.242188, 15.728814 ], [ -88.132324, 15.707663 ], [ -87.912598, 15.876809 ], [ -87.626953, 15.897942 ], [ -87.539062, 15.813396 ], [ -87.385254, 15.855674 ], [ -86.923828, 15.771109 ], [ -86.462402, 15.792254 ], [ -86.132812, 15.897942 ], [ -86.022949, 16.024696 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.496094, 15.029686 ], [ -83.166504, 15.008464 ], [ -83.254395, 14.902322 ], [ -83.298340, 14.689881 ], [ -83.188477, 14.328260 ], [ -83.430176, 13.987376 ], [ -83.540039, 13.581921 ], [ -83.562012, 13.132979 ], [ -83.518066, 12.876070 ], [ -83.474121, 12.425848 ], [ -83.627930, 12.340002 ], [ -83.737793, 11.910354 ], [ -83.671875, 11.630716 ], [ -83.869629, 11.393879 ], [ -83.825684, 11.113727 ], [ -83.671875, 10.941192 ], [ -83.913574, 10.746969 ], [ -84.199219, 10.811724 ], [ -84.375000, 11.005904 ], [ -84.682617, 11.092166 ], [ -84.924316, 10.962764 ], [ -85.583496, 11.221510 ], [ -85.715332, 11.092166 ], [ -86.528320, 11.824341 ], [ -86.748047, 12.146746 ], [ -87.187500, 12.468760 ], [ -87.670898, 12.918907 ], [ -87.561035, 13.068777 ], [ -87.407227, 12.918907 ], [ -87.319336, 13.004558 ], [ -87.011719, 13.025966 ], [ -86.901855, 13.261333 ], [ -86.748047, 13.282719 ], [ -86.770020, 13.774066 ], [ -86.330566, 13.774066 ], [ -86.110840, 14.051331 ], [ -85.803223, 13.838080 ], [ -85.715332, 13.966054 ], [ -85.166016, 14.370834 ], [ -85.166016, 14.562318 ], [ -85.056152, 14.562318 ], [ -84.946289, 14.796128 ], [ -84.836426, 14.838612 ], [ -84.660645, 14.668626 ], [ -84.462891, 14.626109 ], [ -84.243164, 14.753635 ], [ -83.979492, 14.753635 ], [ -83.649902, 14.881087 ], [ -83.496094, 15.029686 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.287598, 23.200961 ], [ -81.408691, 23.120154 ], [ -80.639648, 23.120154 ], [ -79.694824, 22.776182 ], [ -79.299316, 22.411029 ], [ -78.354492, 22.512557 ], [ -76.530762, 21.207459 ], [ -76.201172, 21.227942 ], [ -75.607910, 21.022983 ], [ -75.673828, 20.735566 ], [ -74.948730, 20.694462 ], [ -74.179688, 20.303418 ], [ -74.311523, 20.055931 ], [ -74.970703, 19.932041 ], [ -75.651855, 19.890723 ], [ -76.333008, 19.973349 ], [ -77.761230, 19.870060 ], [ -77.102051, 20.427013 ], [ -77.497559, 20.673905 ], [ -78.156738, 20.756114 ], [ -78.486328, 21.043491 ], [ -78.728027, 21.616579 ], [ -79.299316, 21.575719 ], [ -80.222168, 21.841105 ], [ -80.529785, 22.044913 ], [ -81.826172, 22.207749 ], [ -82.177734, 22.390714 ], [ -81.804199, 22.654572 ], [ -82.792969, 22.695120 ], [ -83.496094, 22.187405 ], [ -83.913574, 22.167058 ], [ -84.067383, 21.922663 ], [ -84.550781, 21.820708 ], [ -84.990234, 21.902278 ], [ -84.462891, 22.207749 ], [ -84.243164, 22.573438 ], [ -83.781738, 22.796439 ], [ -83.276367, 22.998852 ], [ -82.529297, 23.079732 ], [ -82.287598, 23.200961 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.583496, 11.221510 ], [ -84.924316, 10.962764 ], [ -84.682617, 11.092166 ], [ -84.375000, 11.005904 ], [ -84.199219, 10.811724 ], [ -83.913574, 10.746969 ], [ -83.671875, 10.941192 ], [ -83.408203, 10.401378 ], [ -82.551270, 9.579084 ], [ -82.946777, 9.492408 ], [ -82.946777, 9.080400 ], [ -82.727051, 8.928487 ], [ -82.880859, 8.819939 ], [ -82.836914, 8.646196 ], [ -82.968750, 8.233237 ], [ -83.518066, 8.450639 ], [ -83.715820, 8.667918 ], [ -83.605957, 8.841651 ], [ -83.649902, 9.058702 ], [ -83.913574, 9.297307 ], [ -84.660645, 9.622414 ], [ -84.726562, 9.925566 ], [ -84.990234, 10.098670 ], [ -84.924316, 9.817329 ], [ -85.122070, 9.557417 ], [ -85.341797, 9.838979 ], [ -85.671387, 9.947209 ], [ -85.803223, 10.141932 ], [ -85.803223, 10.444598 ], [ -85.671387, 10.768556 ], [ -85.957031, 10.898042 ], [ -85.583496, 11.221510 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.584961, 9.622414 ], [ -79.035645, 9.557417 ], [ -79.079590, 9.470736 ], [ -78.508301, 9.427387 ], [ -78.068848, 9.253936 ], [ -77.739258, 8.950193 ], [ -77.365723, 8.689639 ], [ -77.475586, 8.537565 ], [ -77.255859, 7.950437 ], [ -77.431641, 7.645665 ], [ -77.761230, 7.710992 ], [ -77.893066, 7.231699 ], [ -78.222656, 7.514981 ], [ -78.442383, 8.059230 ], [ -78.200684, 8.320212 ], [ -78.442383, 8.407168 ], [ -78.640137, 8.733077 ], [ -79.123535, 9.015302 ], [ -79.562988, 8.950193 ], [ -79.760742, 8.602747 ], [ -80.178223, 8.341953 ], [ -80.397949, 8.298470 ], [ -80.485840, 8.102739 ], [ -80.024414, 7.558547 ], [ -80.288086, 7.427837 ], [ -80.441895, 7.275292 ], [ -80.903320, 7.231699 ], [ -81.079102, 7.819847 ], [ -81.210938, 7.667441 ], [ -81.540527, 7.710992 ], [ -81.738281, 8.124491 ], [ -82.133789, 8.189742 ], [ -82.397461, 8.298470 ], [ -82.836914, 8.298470 ], [ -82.858887, 8.080985 ], [ -82.968750, 8.233237 ], [ -82.836914, 8.646196 ], [ -82.880859, 8.819939 ], [ -82.727051, 8.928487 ], [ -82.946777, 9.080400 ], [ -82.946777, 9.492408 ], [ -82.551270, 9.579084 ], [ -82.199707, 9.210560 ], [ -82.221680, 9.015302 ], [ -81.826172, 8.971897 ], [ -81.716309, 9.037003 ], [ -81.452637, 8.798225 ], [ -80.969238, 8.863362 ], [ -80.529785, 9.123792 ], [ -79.936523, 9.318990 ], [ -79.584961, 9.622414 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.805176, 18.542117 ], [ -77.585449, 18.500447 ], [ -76.904297, 18.417079 ], [ -76.376953, 18.166730 ], [ -76.201172, 17.895114 ], [ -76.904297, 17.874203 ], [ -77.211914, 17.706828 ], [ -77.783203, 17.874203 ], [ -78.354492, 18.229351 ], [ -78.222656, 18.458768 ], [ -77.805176, 18.542117 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.190918, 19.932041 ], [ -72.597656, 19.890723 ], [ -71.718750, 19.725342 ], [ -71.630859, 19.186678 ], [ -71.718750, 18.791918 ], [ -71.960449, 18.625425 ], [ -71.696777, 18.333669 ], [ -71.718750, 18.062312 ], [ -72.377930, 18.229351 ], [ -72.861328, 18.145852 ], [ -73.454590, 18.229351 ], [ -73.937988, 18.041421 ], [ -74.465332, 18.354526 ], [ -74.377441, 18.667063 ], [ -72.707520, 18.458768 ], [ -72.355957, 18.687879 ], [ -72.795410, 19.103648 ], [ -72.795410, 19.497664 ], [ -73.432617, 19.642588 ], [ -73.190918, 19.932041 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.817871, 19.890723 ], [ -70.224609, 19.642588 ], [ -69.960938, 19.663280 ], [ -69.785156, 19.311143 ], [ -69.235840, 19.331878 ], [ -69.257812, 19.020577 ], [ -68.818359, 18.999803 ], [ -68.334961, 18.625425 ], [ -68.708496, 18.208480 ], [ -69.169922, 18.437925 ], [ -69.631348, 18.396230 ], [ -69.960938, 18.437925 ], [ -70.136719, 18.250220 ], [ -70.532227, 18.187607 ], [ -70.686035, 18.437925 ], [ -71.015625, 18.291950 ], [ -71.411133, 17.602139 ], [ -71.674805, 17.769612 ], [ -71.718750, 18.062312 ], [ -71.696777, 18.333669 ], [ -71.960449, 18.625425 ], [ -71.718750, 18.791918 ], [ -71.630859, 19.186678 ], [ -71.718750, 19.725342 ], [ -71.608887, 19.890723 ], [ -70.817871, 19.890723 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.762695, 12.447305 ], [ -71.411133, 12.382928 ], [ -71.147461, 12.125264 ], [ -71.345215, 11.781325 ], [ -71.982422, 11.609193 ], [ -72.246094, 11.113727 ], [ -72.619629, 10.833306 ], [ -72.927246, 10.466206 ], [ -73.037109, 9.752370 ], [ -73.322754, 9.167179 ], [ -72.795410, 9.102097 ], [ -72.663574, 8.646196 ], [ -72.443848, 8.407168 ], [ -72.377930, 8.015716 ], [ -72.487793, 7.645665 ], [ -72.465820, 7.427837 ], [ -72.202148, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.686035, 7.100893 ], [ -70.114746, 6.970049 ], [ -69.389648, 6.118708 ], [ -68.994141, 6.227934 ], [ -68.269043, 6.162401 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.521973, 5.572250 ], [ -67.763672, 5.222247 ], [ -67.829590, 4.521666 ], [ -67.631836, 3.842332 ], [ -67.346191, 3.557283 ], [ -67.324219, 3.337954 ], [ -67.829590, 2.833317 ], [ -67.456055, 2.613839 ], [ -67.192383, 2.262595 ], [ -66.884766, 1.274309 ], [ -67.082520, 1.142502 ], [ -67.280273, 1.735574 ], [ -67.543945, 2.043024 ], [ -67.873535, 1.713612 ], [ -69.829102, 1.735574 ], [ -69.807129, 1.098565 ], [ -69.235840, 0.988720 ], [ -69.257812, 0.615223 ], [ -69.455566, 0.725078 ], [ -70.026855, 0.549308 ], [ -70.026855, -0.175781 ], [ -69.587402, -0.549308 ], [ -69.433594, -1.120534 ], [ -69.477539, -1.757537 ], [ -73.388672, -1.757537 ], [ -73.674316, -1.252342 ], [ -74.135742, -0.988720 ], [ -74.443359, -0.527336 ], [ -75.124512, -0.043945 ], [ -75.388184, -0.131836 ], [ -75.651855, 0.000000 ], [ -76.311035, 0.417477 ], [ -76.596680, 0.263671 ], [ -77.431641, 0.417477 ], [ -77.673340, 0.834931 ], [ -77.871094, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.779499 ], [ -78.684082, 2.284551 ], [ -78.442383, 2.635789 ], [ -77.937012, 2.701635 ], [ -77.145996, 3.864255 ], [ -77.497559, 4.105369 ], [ -77.321777, 4.674980 ], [ -77.541504, 5.594118 ], [ -77.321777, 5.856475 ], [ -77.497559, 6.708254 ], [ -77.893066, 7.231699 ], [ -77.761230, 7.710992 ], [ -77.431641, 7.645665 ], [ -77.255859, 7.950437 ], [ -77.475586, 8.537565 ], [ -77.365723, 8.689639 ], [ -76.838379, 8.646196 ], [ -76.091309, 9.340672 ], [ -75.695801, 9.449062 ], [ -75.673828, 9.774025 ], [ -75.498047, 10.639014 ], [ -74.926758, 11.092166 ], [ -74.289551, 11.113727 ], [ -74.201660, 11.329253 ], [ -73.432617, 11.243062 ], [ -72.246094, 11.974845 ], [ -71.762695, 12.447305 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.291504, 18.521283 ], [ -65.786133, 18.437925 ], [ -65.610352, 18.229351 ], [ -65.852051, 17.978733 ], [ -66.621094, 17.999632 ], [ -67.192383, 17.957832 ], [ -67.258301, 18.375379 ], [ -67.104492, 18.521283 ], [ -66.291504, 18.521283 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.960938, 12.168226 ], [ -69.587402, 11.480025 ], [ -68.884277, 11.458491 ], [ -68.247070, 10.898042 ], [ -68.203125, 10.574222 ], [ -67.302246, 10.552622 ], [ -66.247559, 10.660608 ], [ -65.676270, 10.206813 ], [ -64.907227, 10.098670 ], [ -64.335938, 10.401378 ], [ -64.335938, 10.660608 ], [ -63.083496, 10.703792 ], [ -61.896973, 10.725381 ], [ -62.731934, 10.422988 ], [ -62.402344, 9.968851 ], [ -61.589355, 9.882275 ], [ -60.842285, 9.384032 ], [ -60.688477, 8.581021 ], [ -60.161133, 8.624472 ], [ -59.765625, 8.385431 ], [ -60.556641, 7.798079 ], [ -60.644531, 7.427837 ], [ -60.314941, 7.057282 ], [ -60.556641, 6.860985 ], [ -61.171875, 6.708254 ], [ -61.149902, 6.249776 ], [ -61.413574, 5.965754 ], [ -60.754395, 5.200365 ], [ -60.622559, 4.937724 ], [ -60.974121, 4.543570 ], [ -62.094727, 4.171115 ], [ -62.819824, 4.017699 ], [ -63.105469, 3.776559 ], [ -63.896484, 4.039618 ], [ -64.643555, 4.149201 ], [ -64.819336, 4.061536 ], [ -64.379883, 3.798484 ], [ -64.423828, 3.140516 ], [ -64.270020, 2.504085 ], [ -63.435059, 2.416276 ], [ -63.369141, 2.218684 ], [ -64.094238, 1.933227 ], [ -64.204102, 1.493971 ], [ -65.368652, 1.098565 ], [ -65.566406, 0.790990 ], [ -66.335449, 0.725078 ], [ -66.884766, 1.274309 ], [ -67.192383, 2.262595 ], [ -67.456055, 2.613839 ], [ -67.829590, 2.833317 ], [ -67.324219, 3.337954 ], [ -67.346191, 3.557283 ], [ -67.631836, 3.842332 ], [ -67.829590, 4.521666 ], [ -67.763672, 5.222247 ], [ -67.521973, 5.572250 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -68.269043, 6.162401 ], [ -68.994141, 6.227934 ], [ -69.389648, 6.118708 ], [ -70.114746, 6.970049 ], [ -70.686035, 7.100893 ], [ -71.960449, 6.991859 ], [ -72.202148, 7.340675 ], [ -72.465820, 7.427837 ], [ -72.487793, 7.645665 ], [ -72.377930, 8.015716 ], [ -72.443848, 8.407168 ], [ -72.663574, 8.646196 ], [ -72.795410, 9.102097 ], [ -73.322754, 9.167179 ], [ -73.037109, 9.752370 ], [ -72.927246, 10.466206 ], [ -72.619629, 10.833306 ], [ -72.246094, 11.113727 ], [ -71.982422, 11.609193 ], [ -71.345215, 11.781325 ], [ -71.367188, 11.544616 ], [ -71.960449, 11.436955 ], [ -71.630859, 10.984335 ], [ -71.652832, 10.466206 ], [ -72.092285, 9.882275 ], [ -71.696777, 9.080400 ], [ -71.279297, 9.145486 ], [ -71.059570, 9.860628 ], [ -71.367188, 10.228437 ], [ -71.411133, 10.984335 ], [ -70.158691, 11.393879 ], [ -70.312500, 11.867351 ], [ -69.960938, 12.168226 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.105957, 10.898042 ], [ -60.908203, 10.876465 ], [ -60.952148, 10.120302 ], [ -61.787109, 10.012130 ], [ -61.962891, 10.098670 ], [ -61.677246, 10.379765 ], [ -61.699219, 10.768556 ], [ -61.105957, 10.898042 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.765625, 8.385431 ], [ -59.106445, 8.015716 ], [ -58.491211, 7.362467 ], [ -58.469238, 6.839170 ], [ -58.095703, 6.817353 ], [ -57.150879, 5.987607 ], [ -57.326660, 5.090944 ], [ -57.919922, 4.828260 ], [ -57.875977, 4.587376 ], [ -58.051758, 4.061536 ], [ -57.612305, 3.337954 ], [ -57.282715, 3.337954 ], [ -57.150879, 2.789425 ], [ -56.557617, 1.911267 ], [ -56.799316, 1.867345 ], [ -57.348633, 1.955187 ], [ -57.678223, 1.691649 ], [ -58.117676, 1.515936 ], [ -58.447266, 1.472006 ], [ -58.557129, 1.274309 ], [ -59.040527, 1.318243 ], [ -59.655762, 1.801461 ], [ -59.721680, 2.262595 ], [ -59.985352, 2.767478 ], [ -59.831543, 3.623071 ], [ -59.545898, 3.973861 ], [ -59.787598, 4.434044 ], [ -60.117188, 4.587376 ], [ -59.985352, 5.025283 ], [ -60.227051, 5.266008 ], [ -60.754395, 5.200365 ], [ -61.413574, 5.965754 ], [ -61.149902, 6.249776 ], [ -61.171875, 6.708254 ], [ -60.556641, 6.860985 ], [ -60.314941, 7.057282 ], [ -60.644531, 7.427837 ], [ -60.556641, 7.798079 ], [ -59.765625, 8.385431 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.041504, 6.031311 ], [ -53.964844, 5.769036 ], [ -54.492188, 4.915833 ], [ -54.404297, 4.214943 ], [ -54.008789, 3.623071 ], [ -54.184570, 3.206333 ], [ -54.272461, 2.745531 ], [ -54.536133, 2.328460 ], [ -55.107422, 2.526037 ], [ -55.590820, 2.438229 ], [ -55.986328, 2.526037 ], [ -56.074219, 2.240640 ], [ -55.920410, 2.043024 ], [ -56.008301, 1.823423 ], [ -56.557617, 1.911267 ], [ -57.150879, 2.789425 ], [ -57.282715, 3.337954 ], [ -57.612305, 3.337954 ], [ -58.051758, 4.061536 ], [ -57.875977, 4.587376 ], [ -57.919922, 4.828260 ], [ -57.326660, 5.090944 ], [ -57.150879, 5.987607 ], [ -55.964355, 5.790897 ], [ -55.854492, 5.965754 ], [ -55.041504, 6.031311 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.171875, 66.530768 ], [ -15.864258, 66.513260 ], [ -14.523926, 66.460663 ], [ -14.743652, 65.811781 ], [ -13.623047, 65.127638 ], [ -14.919434, 64.368438 ], [ -17.797852, 63.685248 ], [ -18.676758, 63.499573 ], [ -22.763672, 63.966319 ], [ -21.796875, 64.406431 ], [ -23.972168, 64.895589 ], [ -22.192383, 65.090646 ], [ -22.236328, 65.385147 ], [ -24.345703, 65.612952 ], [ -23.664551, 66.266856 ], [ -22.148438, 66.416748 ], [ -20.588379, 65.739656 ], [ -19.072266, 66.284537 ], [ -17.819824, 66.000150 ], [ -16.215820, 66.513260 ], [ -16.171875, 66.530768 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.580566, 55.141210 ], [ -7.382812, 54.597528 ], [ -7.580566, 54.072283 ], [ -6.965332, 54.085173 ], [ -6.218262, 53.878440 ], [ -6.042480, 53.159947 ], [ -6.789551, 52.268157 ], [ -8.569336, 51.672555 ], [ -9.997559, 51.822198 ], [ -9.184570, 52.869130 ], [ -9.689941, 53.891391 ], [ -8.349609, 54.673831 ], [ -7.580566, 55.141210 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.010254, 58.642653 ], [ -4.086914, 57.562995 ], [ -3.076172, 57.692406 ], [ -1.977539, 57.692406 ], [ -2.241211, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.120605, 54.635697 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.683695 ], [ 0.175781, 53.330873 ], [ 0.461426, 52.935397 ], [ 1.669922, 52.749594 ], [ 1.538086, 52.106505 ], [ 1.032715, 51.808615 ], [ 1.428223, 51.303145 ], [ 0.549316, 50.778155 ], [ -0.791016, 50.778155 ], [ -2.504883, 50.513427 ], [ -2.966309, 50.708634 ], [ -3.625488, 50.233152 ], [ -4.548340, 50.345460 ], [ -5.251465, 49.965356 ], [ -5.778809, 50.162824 ], [ -4.328613, 51.220647 ], [ -3.427734, 51.426614 ], [ -4.987793, 51.604372 ], [ -5.273438, 51.998410 ], [ -4.240723, 52.308479 ], [ -4.790039, 52.842595 ], [ -4.592285, 53.501117 ], [ -3.098145, 53.409532 ], [ -2.966309, 53.994854 ], [ -3.647461, 54.622978 ], [ -4.855957, 54.800685 ], [ -5.097656, 55.065787 ], [ -4.724121, 55.516192 ], [ -5.053711, 55.788929 ], [ -5.603027, 55.316643 ], [ -5.646973, 56.279961 ], [ -6.152344, 56.788845 ], [ -5.800781, 57.821355 ], [ -5.031738, 58.631217 ], [ -4.218750, 58.551061 ], [ -3.010254, 58.642653 ] ] ], [ [ [ -6.745605, 55.178868 ], [ -5.668945, 54.559323 ], [ -6.218262, 53.878440 ], [ -6.965332, 54.085173 ], [ -7.580566, 54.072283 ], [ -7.382812, 54.597528 ], [ -7.580566, 55.141210 ], [ -6.745605, 55.178868 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -53.964844, 5.769036 ], [ -52.888184, 5.419148 ], [ -51.833496, 4.587376 ], [ -51.679688, 4.171115 ], [ -52.250977, 3.250209 ], [ -52.558594, 2.526037 ], [ -52.954102, 2.130856 ], [ -53.437500, 2.064982 ], [ -53.569336, 2.350415 ], [ -53.789062, 2.394322 ], [ -54.096680, 2.108899 ], [ -54.536133, 2.328460 ], [ -54.272461, 2.745531 ], [ -54.184570, 3.206333 ], [ -54.030762, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.492188, 4.915833 ], [ -53.964844, 5.769036 ] ] ], [ [ [ 1.757812, 50.986099 ], [ 1.757812, 42.374778 ], [ 0.681152, 42.811522 ], [ 0.329590, 42.585444 ], [ -1.516113, 43.036776 ], [ -1.911621, 43.436966 ], [ -1.384277, 44.024422 ], [ -1.208496, 46.027482 ], [ -2.241211, 47.070122 ], [ -2.966309, 47.576526 ], [ -4.504395, 47.960502 ], [ -4.614258, 48.690960 ], [ -3.295898, 48.908059 ], [ -1.625977, 48.647428 ], [ -1.933594, 49.781264 ], [ -1.010742, 49.353756 ], [ 0.000000, 49.681847 ], [ 1.318359, 50.134664 ], [ 1.625977, 50.958427 ], [ 1.757812, 50.986099 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.679199, 27.664069 ], [ -8.701172, 25.898762 ], [ -11.975098, 25.938287 ], [ -11.953125, 23.382598 ], [ -12.875977, 23.301901 ], [ -13.139648, 22.776182 ], [ -12.941895, 21.330315 ], [ -16.853027, 21.350781 ], [ -17.072754, 21.002471 ], [ -17.028809, 21.432617 ], [ -14.765625, 21.514407 ], [ -14.633789, 21.861499 ], [ -14.238281, 22.329752 ], [ -13.908691, 23.704895 ], [ -12.502441, 24.786735 ], [ -12.041016, 26.037042 ], [ -11.733398, 26.115986 ], [ -11.403809, 26.902477 ], [ -10.568848, 27.000408 ], [ -10.195312, 26.863281 ], [ -9.755859, 26.863281 ], [ -9.426270, 27.098254 ], [ -8.811035, 27.137368 ], [ -8.833008, 27.664069 ], [ -8.679199, 27.664069 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.283691, 42.293564 ], [ -8.020020, 41.804078 ], [ -7.426758, 41.804078 ], [ -7.272949, 41.918629 ], [ -6.679688, 41.885921 ], [ -6.394043, 41.393294 ], [ -6.855469, 41.112469 ], [ -6.877441, 40.346544 ], [ -7.031250, 40.195659 ], [ -7.075195, 39.724089 ], [ -7.514648, 39.639538 ], [ -7.119141, 39.044786 ], [ -7.382812, 38.376115 ], [ -7.031250, 38.082690 ], [ -7.185059, 37.805444 ], [ -7.558594, 37.439974 ], [ -7.470703, 37.107765 ], [ -7.866211, 36.844461 ], [ -8.393555, 36.985003 ], [ -8.898926, 36.879621 ], [ -8.767090, 37.666429 ], [ -8.854980, 38.272689 ], [ -9.294434, 38.358888 ], [ -9.536133, 38.754083 ], [ -9.448242, 39.402244 ], [ -9.052734, 39.757880 ], [ -8.986816, 40.162083 ], [ -8.789062, 40.763901 ], [ -8.811035, 41.195190 ], [ -9.008789, 41.557922 ], [ -9.052734, 41.885921 ], [ -8.679199, 42.147114 ], [ -8.283691, 42.293564 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.998047, 43.755225 ], [ -6.767578, 43.580391 ], [ -5.427246, 43.580391 ], [ -4.350586, 43.405047 ], [ -3.537598, 43.468868 ], [ -1.911621, 43.436966 ], [ -1.516113, 43.036776 ], [ 0.329590, 42.585444 ], [ 0.681152, 42.811522 ], [ 1.757812, 42.374778 ], [ 1.757812, 41.178654 ], [ 0.791016, 41.029643 ], [ 0.703125, 40.680638 ], [ 0.087891, 40.128491 ], [ 0.000000, 39.909736 ], [ -0.285645, 39.317300 ], [ 0.000000, 38.908133 ], [ 0.109863, 38.754083 ], [ 0.000000, 38.668356 ], [ -0.483398, 38.307181 ], [ -0.703125, 37.649034 ], [ -1.450195, 37.457418 ], [ -2.153320, 36.686041 ], [ -4.372559, 36.686041 ], [ -5.009766, 36.332828 ], [ -5.383301, 35.960223 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.525879, 36.949892 ], [ -7.470703, 37.107765 ], [ -7.558594, 37.439974 ], [ -7.185059, 37.805444 ], [ -7.031250, 38.082690 ], [ -7.382812, 38.376115 ], [ -7.119141, 39.044786 ], [ -7.514648, 39.639538 ], [ -7.075195, 39.724089 ], [ -7.031250, 40.195659 ], [ -6.877441, 40.346544 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.393294 ], [ -6.679688, 41.885921 ], [ -7.272949, 41.918629 ], [ -7.426758, 41.804078 ], [ -8.020020, 41.804078 ], [ -8.283691, 42.293564 ], [ -8.679199, 42.147114 ], [ -9.052734, 41.885921 ], [ -8.986816, 42.601620 ], [ -9.404297, 43.036776 ], [ -7.998047, 43.755225 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.207520, 35.764343 ], [ -4.592285, 35.335293 ], [ -3.647461, 35.406961 ], [ -2.614746, 35.191767 ], [ -2.175293, 35.173808 ], [ -1.801758, 34.542762 ], [ -1.735840, 33.925130 ], [ -1.406250, 32.879587 ], [ -1.142578, 32.657876 ], [ -1.318359, 32.268555 ], [ -2.636719, 32.101190 ], [ -3.076172, 31.728167 ], [ -3.669434, 31.653381 ], [ -3.691406, 30.902225 ], [ -4.877930, 30.505484 ], [ -5.251465, 30.012031 ], [ -6.064453, 29.745302 ], [ -7.075195, 29.592565 ], [ -8.679199, 28.844674 ], [ -8.679199, 27.664069 ], [ -8.833008, 27.664069 ], [ -8.811035, 27.137368 ], [ -9.426270, 27.098254 ], [ -9.755859, 26.863281 ], [ -10.195312, 26.863281 ], [ -10.568848, 27.000408 ], [ -11.403809, 26.902477 ], [ -11.733398, 26.115986 ], [ -12.041016, 26.037042 ], [ -12.502441, 24.786735 ], [ -13.908691, 23.704895 ], [ -14.238281, 22.329752 ], [ -14.633789, 21.861499 ], [ -14.765625, 21.514407 ], [ -17.028809, 21.432617 ], [ -16.984863, 21.902278 ], [ -16.589355, 22.167058 ], [ -16.281738, 22.695120 ], [ -16.347656, 23.019076 ], [ -15.996094, 23.725012 ], [ -15.446777, 24.367114 ], [ -15.095215, 24.527135 ], [ -14.831543, 25.105497 ], [ -14.809570, 25.641526 ], [ -14.458008, 26.273714 ], [ -13.776855, 26.627818 ], [ -13.161621, 27.644606 ], [ -12.634277, 28.052591 ], [ -11.689453, 28.149503 ], [ -10.920410, 28.844674 ], [ -10.415039, 29.113775 ], [ -9.580078, 29.935895 ], [ -9.821777, 31.184609 ], [ -9.448242, 32.045333 ], [ -9.316406, 32.565333 ], [ -8.679199, 33.247876 ], [ -7.668457, 33.706063 ], [ -6.921387, 34.125448 ], [ -6.262207, 35.155846 ], [ -5.932617, 35.764343 ], [ -5.207520, 35.764343 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.589844, 16.615138 ], [ -14.106445, 16.320139 ], [ -13.447266, 16.045813 ], [ -12.832031, 15.305380 ], [ -12.172852, 14.626109 ], [ -12.128906, 14.008696 ], [ -11.931152, 13.432367 ], [ -11.557617, 13.154376 ], [ -11.469727, 12.768946 ], [ -11.535645, 12.447305 ], [ -11.667480, 12.404389 ], [ -12.216797, 12.468760 ], [ -12.282715, 12.361466 ], [ -12.502441, 12.340002 ], [ -13.227539, 12.576010 ], [ -15.556641, 12.640338 ], [ -15.820312, 12.533115 ], [ -16.149902, 12.554564 ], [ -16.699219, 12.404389 ], [ -16.853027, 13.154376 ], [ -15.952148, 13.132979 ], [ -15.710449, 13.282719 ], [ -15.512695, 13.282719 ], [ -15.161133, 13.517838 ], [ -14.721680, 13.304103 ], [ -14.282227, 13.282719 ], [ -13.864746, 13.517838 ], [ -14.062500, 13.795406 ], [ -14.392090, 13.645987 ], [ -14.699707, 13.645987 ], [ -15.095215, 13.880746 ], [ -15.402832, 13.880746 ], [ -15.644531, 13.624633 ], [ -16.721191, 13.603278 ], [ -17.138672, 14.392118 ], [ -17.644043, 14.732386 ], [ -17.204590, 14.923554 ], [ -16.721191, 15.623037 ], [ -16.479492, 16.151369 ], [ -16.127930, 16.467695 ], [ -15.644531, 16.383391 ], [ -15.139160, 16.594081 ], [ -14.589844, 16.615138 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.095215, 13.880746 ], [ -14.699707, 13.645987 ], [ -14.392090, 13.645987 ], [ -14.062500, 13.795406 ], [ -13.864746, 13.517838 ], [ -14.282227, 13.282719 ], [ -14.721680, 13.304103 ], [ -15.161133, 13.517838 ], [ -15.512695, 13.282719 ], [ -15.710449, 13.282719 ], [ -15.952148, 13.132979 ], [ -16.853027, 13.154376 ], [ -16.721191, 13.603278 ], [ -15.644531, 13.624633 ], [ -15.402832, 13.880746 ], [ -15.095215, 13.880746 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.556641, 12.640338 ], [ -13.710938, 12.597455 ], [ -13.732910, 12.254128 ], [ -13.842773, 12.146746 ], [ -13.754883, 11.824341 ], [ -13.908691, 11.695273 ], [ -14.128418, 11.695273 ], [ -14.392090, 11.523088 ], [ -14.699707, 11.544616 ], [ -15.139160, 11.049038 ], [ -15.666504, 11.458491 ], [ -16.105957, 11.544616 ], [ -16.325684, 11.824341 ], [ -16.325684, 11.974845 ], [ -16.633301, 12.189704 ], [ -16.699219, 12.404389 ], [ -16.149902, 12.554564 ], [ -15.820312, 12.533115 ], [ -15.556641, 12.640338 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.710938, 12.597455 ], [ -13.227539, 12.576010 ], [ -12.502441, 12.340002 ], [ -12.282715, 12.361466 ], [ -12.216797, 12.468760 ], [ -11.667480, 12.404389 ], [ -11.535645, 12.447305 ], [ -11.469727, 12.082296 ], [ -11.315918, 12.082296 ], [ -11.052246, 12.232655 ], [ -10.876465, 12.189704 ], [ -10.612793, 11.931852 ], [ -10.173340, 11.845847 ], [ -9.909668, 12.060809 ], [ -9.338379, 12.340002 ], [ -9.140625, 12.318536 ], [ -8.920898, 12.103781 ], [ -8.789062, 11.824341 ], [ -8.393555, 11.393879 ], [ -8.591309, 11.156845 ], [ -8.635254, 10.811724 ], [ -8.415527, 10.919618 ], [ -8.283691, 10.811724 ], [ -8.349609, 10.509417 ], [ -8.041992, 10.206813 ], [ -8.239746, 10.141932 ], [ -8.327637, 9.795678 ], [ -8.085938, 9.384032 ], [ -7.844238, 8.581021 ], [ -8.217773, 8.472372 ], [ -8.305664, 8.320212 ], [ -8.239746, 8.124491 ], [ -8.283691, 7.689217 ], [ -8.459473, 7.689217 ], [ -8.723145, 7.732765 ], [ -8.942871, 7.318882 ], [ -9.228516, 7.318882 ], [ -9.404297, 7.536764 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.559294 ], [ -10.019531, 8.428904 ], [ -10.524902, 8.363693 ], [ -10.502930, 8.733077 ], [ -10.656738, 8.993600 ], [ -10.634766, 9.275622 ], [ -10.854492, 9.709057 ], [ -11.118164, 10.055403 ], [ -11.931152, 10.055403 ], [ -12.150879, 9.860628 ], [ -12.436523, 9.838979 ], [ -12.612305, 9.622414 ], [ -12.722168, 9.362353 ], [ -13.249512, 8.906780 ], [ -13.688965, 9.514079 ], [ -14.084473, 9.903921 ], [ -14.348145, 10.033767 ], [ -14.589844, 10.228437 ], [ -14.699707, 10.660608 ], [ -14.853516, 10.898042 ], [ -15.139160, 11.049038 ], [ -14.699707, 11.544616 ], [ -14.392090, 11.523088 ], [ -14.128418, 11.695273 ], [ -13.908691, 11.695273 ], [ -13.754883, 11.824341 ], [ -13.842773, 12.146746 ], [ -13.732910, 12.254128 ], [ -13.710938, 12.597455 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.118164, 10.055403 ], [ -10.854492, 9.709057 ], [ -10.634766, 9.275622 ], [ -10.656738, 8.993600 ], [ -10.502930, 8.733077 ], [ -10.524902, 8.363693 ], [ -10.239258, 8.407168 ], [ -10.700684, 7.950437 ], [ -11.162109, 7.406048 ], [ -11.206055, 7.122696 ], [ -11.447754, 6.795535 ], [ -11.711426, 6.860985 ], [ -12.436523, 7.275292 ], [ -12.963867, 7.819847 ], [ -13.139648, 8.167993 ], [ -13.249512, 8.906780 ], [ -12.722168, 9.362353 ], [ -12.612305, 9.622414 ], [ -12.436523, 9.838979 ], [ -12.150879, 9.860628 ], [ -11.931152, 10.055403 ], [ -11.118164, 10.055403 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.701172, 27.410786 ], [ -4.943848, 24.986058 ], [ -6.459961, 24.966140 ], [ -5.493164, 16.341226 ], [ -5.317383, 16.214675 ], [ -5.559082, 15.517205 ], [ -9.558105, 15.496032 ], [ -9.711914, 15.284185 ], [ -10.107422, 15.347762 ], [ -10.656738, 15.135764 ], [ -11.359863, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.843262, 14.817371 ], [ -12.172852, 14.626109 ], [ -12.832031, 15.305380 ], [ -13.447266, 16.045813 ], [ -14.106445, 16.320139 ], [ -14.589844, 16.615138 ], [ -15.139160, 16.594081 ], [ -15.644531, 16.383391 ], [ -16.127930, 16.467695 ], [ -16.479492, 16.151369 ], [ -16.567383, 16.678293 ], [ -16.281738, 17.182779 ], [ -16.149902, 18.124971 ], [ -16.259766, 19.103648 ], [ -16.391602, 19.601194 ], [ -16.281738, 20.097206 ], [ -16.545410, 20.571082 ], [ -17.072754, 21.002471 ], [ -16.853027, 21.350781 ], [ -12.941895, 21.330315 ], [ -13.139648, 22.776182 ], [ -12.875977, 23.301901 ], [ -11.953125, 23.382598 ], [ -11.975098, 25.938287 ], [ -8.701172, 25.898762 ], [ -8.701172, 27.410786 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.943848, 24.986058 ], [ 0.000000, 21.800308 ], [ 1.757812, 20.673905 ], [ 1.757812, 15.347762 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.987240 ], [ 0.000000, 14.944785 ], [ -0.285645, 14.944785 ], [ -0.527344, 15.135764 ], [ -1.076660, 14.987240 ], [ -2.021484, 14.562318 ], [ -2.197266, 14.264383 ], [ -2.988281, 13.816744 ], [ -3.120117, 13.560562 ], [ -3.537598, 13.346865 ], [ -4.020996, 13.475106 ], [ -4.284668, 13.239945 ], [ -4.438477, 12.554564 ], [ -5.229492, 11.716788 ], [ -5.207520, 11.393879 ], [ -5.471191, 10.962764 ], [ -5.405273, 10.379765 ], [ -5.822754, 10.228437 ], [ -6.064453, 10.098670 ], [ -6.218262, 10.531020 ], [ -6.503906, 10.422988 ], [ -6.679688, 10.444598 ], [ -6.855469, 10.141932 ], [ -7.624512, 10.163560 ], [ -7.910156, 10.314919 ], [ -8.041992, 10.206813 ], [ -8.349609, 10.509417 ], [ -8.283691, 10.811724 ], [ -8.415527, 10.919618 ], [ -8.635254, 10.811724 ], [ -8.591309, 11.156845 ], [ -8.393555, 11.393879 ], [ -8.789062, 11.824341 ], [ -8.920898, 12.103781 ], [ -9.140625, 12.318536 ], [ -9.338379, 12.340002 ], [ -9.909668, 12.060809 ], [ -10.173340, 11.845847 ], [ -10.612793, 11.931852 ], [ -10.876465, 12.189704 ], [ -11.052246, 12.232655 ], [ -11.315918, 12.082296 ], [ -11.469727, 12.082296 ], [ -11.535645, 12.447305 ], [ -11.469727, 12.768946 ], [ -11.557617, 13.154376 ], [ -11.931152, 13.432367 ], [ -12.128906, 14.008696 ], [ -12.172852, 14.626109 ], [ -11.843262, 14.817371 ], [ -11.667480, 15.390136 ], [ -11.359863, 15.411319 ], [ -10.656738, 15.135764 ], [ -10.107422, 15.347762 ], [ -9.711914, 15.284185 ], [ -9.558105, 15.496032 ], [ -5.559082, 15.517205 ], [ -5.317383, 16.214675 ], [ -5.493164, 16.341226 ], [ -6.459961, 24.966140 ], [ -4.943848, 24.986058 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.527344, 15.135764 ], [ -0.285645, 14.944785 ], [ 0.373535, 14.944785 ], [ 0.285645, 14.455958 ], [ 0.417480, 14.008696 ], [ 0.988770, 13.346865 ], [ 1.010742, 12.854649 ], [ 1.757812, 12.726084 ], [ 1.757812, 11.609193 ], [ 1.428223, 11.566144 ], [ 1.230469, 11.113727 ], [ 0.878906, 11.005904 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.113727 ], [ -0.769043, 10.941192 ], [ -1.208496, 11.027472 ], [ -2.944336, 10.962764 ], [ -2.966309, 10.401378 ], [ -2.834473, 9.644077 ], [ -3.515625, 9.903921 ], [ -3.999023, 9.882275 ], [ -4.350586, 9.622414 ], [ -4.790039, 9.838979 ], [ -4.965820, 10.163560 ], [ -5.405273, 10.379765 ], [ -5.471191, 10.962764 ], [ -5.207520, 11.393879 ], [ -5.229492, 11.716788 ], [ -4.438477, 12.554564 ], [ -4.284668, 13.239945 ], [ -4.020996, 13.475106 ], [ -3.537598, 13.346865 ], [ -3.120117, 13.560562 ], [ -2.988281, 13.816744 ], [ -2.197266, 14.264383 ], [ -2.021484, 14.562318 ], [ -1.076660, 14.987240 ], [ -0.527344, 15.135764 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.755859, 8.559294 ], [ -9.338379, 7.928675 ], [ -9.404297, 7.536764 ], [ -9.228516, 7.318882 ], [ -8.942871, 7.318882 ], [ -8.723145, 7.732765 ], [ -8.459473, 7.689217 ], [ -8.503418, 7.406048 ], [ -8.393555, 6.926427 ], [ -8.613281, 6.468151 ], [ -8.327637, 6.206090 ], [ -7.998047, 6.140555 ], [ -7.580566, 5.725311 ], [ -7.558594, 5.331644 ], [ -7.646484, 5.200365 ], [ -7.712402, 4.368320 ], [ -7.976074, 4.368320 ], [ -9.008789, 4.850154 ], [ -9.931641, 5.594118 ], [ -10.766602, 6.162401 ], [ -11.447754, 6.795535 ], [ -11.206055, 7.122696 ], [ -11.162109, 7.406048 ], [ -10.700684, 7.950437 ], [ -10.239258, 8.407168 ], [ -10.019531, 8.428904 ], [ -9.755859, 8.559294 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.218262, 10.531020 ], [ -6.064453, 10.098670 ], [ -5.822754, 10.228437 ], [ -5.405273, 10.379765 ], [ -4.965820, 10.163560 ], [ -4.790039, 9.838979 ], [ -4.350586, 9.622414 ], [ -3.999023, 9.882275 ], [ -3.515625, 9.903921 ], [ -2.834473, 9.644077 ], [ -2.570801, 8.233237 ], [ -2.988281, 7.384258 ], [ -3.251953, 6.271618 ], [ -2.812500, 5.397273 ], [ -2.856445, 5.003394 ], [ -3.317871, 5.003394 ], [ -4.020996, 5.200365 ], [ -4.658203, 5.178482 ], [ -5.844727, 5.003394 ], [ -7.536621, 4.346411 ], [ -7.712402, 4.368320 ], [ -7.646484, 5.200365 ], [ -7.558594, 5.331644 ], [ -7.580566, 5.725311 ], [ -7.998047, 6.140555 ], [ -8.327637, 6.206090 ], [ -8.613281, 6.468151 ], [ -8.393555, 6.926427 ], [ -8.503418, 7.406048 ], [ -8.459473, 7.689217 ], [ -8.283691, 7.689217 ], [ -8.239746, 8.124491 ], [ -8.305664, 8.320212 ], [ -8.217773, 8.472372 ], [ -7.844238, 8.581021 ], [ -8.085938, 9.384032 ], [ -8.327637, 9.795678 ], [ -8.239746, 10.141932 ], [ -7.910156, 10.314919 ], [ -7.624512, 10.163560 ], [ -6.855469, 10.141932 ], [ -6.679688, 10.444598 ], [ -6.503906, 10.422988 ], [ -6.218262, 10.531020 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.113727 ], [ 0.000000, 11.027472 ], [ 0.021973, 11.027472 ], [ 0.000000, 10.919618 ], [ -0.065918, 10.725381 ], [ 0.000000, 10.660608 ], [ 0.351562, 10.206813 ], [ 0.351562, 9.470736 ], [ 0.439453, 8.689639 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.427837 ], [ 0.549316, 6.926427 ], [ 0.834961, 6.293459 ], [ 1.054688, 5.943900 ], [ -0.527344, 5.353521 ], [ -1.076660, 5.003394 ], [ -1.977539, 4.718778 ], [ -2.856445, 5.003394 ], [ -2.812500, 5.397273 ], [ -3.251953, 6.271618 ], [ -2.988281, 7.384258 ], [ -2.570801, 8.233237 ], [ -2.966309, 10.401378 ], [ -2.944336, 10.962764 ], [ -1.208496, 11.027472 ], [ -0.769043, 10.941192 ], [ -0.439453, 11.113727 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.859863, 1.384143 ], [ -77.871094, 0.812961 ], [ -77.673340, 0.834931 ], [ -77.431641, 0.417477 ], [ -76.596680, 0.263671 ], [ -76.311035, 0.417477 ], [ -75.651855, 0.000000 ], [ -75.388184, -0.131836 ], [ -75.234375, -0.900842 ], [ -75.563965, -1.559866 ], [ -75.761719, -1.757537 ], [ -80.815430, -1.757537 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.900842 ], [ -80.419922, -0.263671 ], [ -80.244141, 0.000000 ], [ -80.024414, 0.373533 ], [ -80.112305, 0.769020 ], [ -79.562988, 0.988720 ], [ -78.859863, 1.384143 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.124512, -0.043945 ], [ -74.443359, -0.527336 ], [ -74.135742, -0.988720 ], [ -73.674316, -1.252342 ], [ -73.388672, -1.757537 ], [ -75.761719, -1.757537 ], [ -75.563965, -1.559866 ], [ -75.234375, -0.900842 ], [ -75.388184, -0.131836 ], [ -75.124512, -0.043945 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.227051, 5.266008 ], [ -59.985352, 5.025283 ], [ -60.117188, 4.587376 ], [ -59.787598, 4.434044 ], [ -59.545898, 3.973861 ], [ -59.831543, 3.623071 ], [ -59.985352, 2.767478 ], [ -59.721680, 2.262595 ], [ -59.655762, 1.801461 ], [ -59.040527, 1.318243 ], [ -58.557129, 1.274309 ], [ -58.447266, 1.472006 ], [ -58.117676, 1.515936 ], [ -57.678223, 1.691649 ], [ -57.348633, 1.955187 ], [ -56.799316, 1.867345 ], [ -56.557617, 1.911267 ], [ -56.008301, 1.823423 ], [ -55.920410, 2.043024 ], [ -56.074219, 2.240640 ], [ -55.986328, 2.526037 ], [ -55.590820, 2.438229 ], [ -55.107422, 2.526037 ], [ -54.536133, 2.328460 ], [ -54.096680, 2.108899 ], [ -53.789062, 2.394322 ], [ -53.569336, 2.350415 ], [ -53.437500, 2.064982 ], [ -52.954102, 2.130856 ], [ -52.558594, 2.526037 ], [ -52.250977, 3.250209 ], [ -51.679688, 4.171115 ], [ -51.328125, 4.214943 ], [ -51.086426, 3.666928 ], [ -50.515137, 1.911267 ], [ -49.987793, 1.757537 ], [ -49.965820, 1.054628 ], [ -50.712891, 0.241699 ], [ -50.405273, -0.065918 ], [ -48.625488, -0.219726 ], [ -48.603516, -1.230374 ], [ -47.834473, -0.571280 ], [ -46.582031, -0.922812 ], [ -44.912109, -1.537901 ], [ -44.736328, -1.757537 ], [ -69.477539, -1.757537 ], [ -69.433594, -1.120534 ], [ -69.587402, -0.549308 ], [ -70.026855, -0.175781 ], [ -70.026855, 0.549308 ], [ -69.455566, 0.725078 ], [ -69.257812, 0.615223 ], [ -69.235840, 0.988720 ], [ -69.807129, 1.098565 ], [ -69.829102, 1.735574 ], [ -67.873535, 1.713612 ], [ -67.543945, 2.043024 ], [ -67.280273, 1.735574 ], [ -67.082520, 1.142502 ], [ -66.884766, 1.274309 ], [ -66.335449, 0.725078 ], [ -65.566406, 0.790990 ], [ -65.368652, 1.098565 ], [ -64.204102, 1.493971 ], [ -64.094238, 1.933227 ], [ -63.369141, 2.218684 ], [ -63.435059, 2.416276 ], [ -64.270020, 2.504085 ], [ -64.423828, 3.140516 ], [ -64.379883, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.643555, 4.149201 ], [ -63.896484, 4.039618 ], [ -63.105469, 3.776559 ], [ -62.819824, 4.017699 ], [ -62.094727, 4.171115 ], [ -60.974121, 4.543570 ], [ -60.622559, 4.937724 ], [ -60.754395, 5.200365 ], [ -60.227051, 5.266008 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.757812, 36.650793 ], [ 1.757812, 20.673905 ], [ 0.000000, 21.800308 ], [ -4.943848, 24.986058 ], [ -8.701172, 27.410786 ], [ -8.679199, 28.844674 ], [ -7.075195, 29.592565 ], [ -6.064453, 29.745302 ], [ -5.251465, 30.012031 ], [ -4.877930, 30.505484 ], [ -3.691406, 30.902225 ], [ -3.669434, 31.653381 ], [ -3.076172, 31.728167 ], [ -2.636719, 32.101190 ], [ -1.318359, 32.268555 ], [ -1.142578, 32.657876 ], [ -1.406250, 32.879587 ], [ -1.735840, 33.925130 ], [ -1.801758, 34.542762 ], [ -2.175293, 35.173808 ], [ -1.230469, 35.728677 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.483398, 36.315125 ], [ 1.450195, 36.615528 ], [ 1.757812, 36.650793 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.757812, 15.347762 ], [ 1.757812, 12.726084 ], [ 1.010742, 12.854649 ], [ 0.988770, 13.346865 ], [ 0.417480, 14.008696 ], [ 0.285645, 14.455958 ], [ 0.373535, 14.944785 ], [ 1.010742, 14.987240 ], [ 1.384277, 15.326572 ], [ 1.757812, 15.347762 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.027472 ], [ 0.878906, 11.005904 ], [ 0.769043, 10.487812 ], [ 1.406250, 9.838979 ], [ 1.450195, 9.340672 ], [ 1.647949, 9.145486 ], [ 1.604004, 6.839170 ], [ 1.757812, 6.446318 ], [ 1.757812, 6.118708 ], [ 1.054688, 5.943900 ], [ 0.834961, 6.293459 ], [ 0.549316, 6.926427 ], [ 0.483398, 7.427837 ], [ 0.703125, 8.320212 ], [ 0.439453, 8.689639 ], [ 0.351562, 9.470736 ], [ 0.351562, 10.206813 ], [ 0.000000, 10.660608 ], [ -0.065918, 10.725381 ], [ 0.000000, 10.919618 ], [ 0.021973, 11.027472 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.757812, 11.609193 ], [ 1.757812, 6.446318 ], [ 1.604004, 6.839170 ], [ 1.647949, 9.145486 ], [ 1.450195, 9.340672 ], [ 1.406250, 9.838979 ], [ 0.769043, 10.487812 ], [ 0.878906, 11.005904 ], [ 1.230469, 11.113727 ], [ 1.428223, 11.566144 ], [ 1.757812, 11.609193 ] ] ] } } -] } -] } -, -{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -91.757812, 69.634158 ], [ -90.549316, 69.503765 ], [ -90.571289, 68.479926 ], [ -90.000000, 68.807986 ], [ -89.230957, 69.263930 ], [ -88.022461, 68.616534 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.925140 ], [ -85.583496, 68.792094 ], [ -85.539551, 69.885010 ], [ -84.111328, 69.809309 ], [ -82.639160, 69.664723 ], [ -81.298828, 69.162558 ], [ -81.232910, 68.672544 ], [ -81.979980, 68.138852 ], [ -81.276855, 67.600849 ], [ -81.386719, 67.118748 ], [ -83.078613, 66.513260 ], [ -83.364258, 66.416748 ], [ -84.748535, 66.258011 ], [ -85.627441, 66.513260 ], [ -85.781250, 66.565747 ], [ -85.803223, 66.513260 ], [ -86.088867, 66.062633 ], [ -86.374512, 65.802776 ], [ -91.757812, 65.802776 ], [ -91.757812, 69.634158 ] ] ], [ [ [ -85.847168, 73.806447 ], [ -86.572266, 73.163173 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.331543, 73.751205 ], [ -80.617676, 72.718432 ], [ -80.749512, 72.067147 ], [ -78.771973, 72.355789 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.248917 ], [ -74.245605, 71.773941 ], [ -74.113770, 71.335983 ], [ -72.246094, 71.559692 ], [ -71.213379, 70.923824 ], [ -68.796387, 70.532222 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -66.467285, 68.073305 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.869715 ], [ -62.028809, 66.513260 ], [ -62.182617, 66.160511 ], [ -62.731934, 65.802776 ], [ -65.764160, 65.802776 ], [ -66.730957, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.137207, 65.802776 ], [ -74.289551, 65.802776 ], [ -73.959961, 66.311035 ], [ -73.696289, 66.513260 ], [ -72.663574, 67.289015 ], [ -72.927246, 67.734435 ], [ -73.322754, 68.073305 ], [ -74.860840, 68.560384 ], [ -76.882324, 68.895187 ], [ -76.245117, 69.154740 ], [ -77.299805, 69.771356 ], [ -78.178711, 69.832048 ], [ -78.969727, 70.170201 ], [ -79.497070, 69.877452 ], [ -81.320801, 69.748551 ], [ -84.946289, 69.967967 ], [ -87.077637, 70.266872 ], [ -88.703613, 70.414714 ], [ -89.516602, 70.765206 ], [ -88.483887, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.587473 ], [ -90.219727, 72.235514 ], [ -90.000000, 72.481891 ], [ -89.450684, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.847168, 73.806447 ] ] ], [ [ [ -75.915527, 68.293779 ], [ -75.124512, 68.015798 ], [ -75.124512, 67.584098 ], [ -75.234375, 67.449657 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.592475 ], [ -76.816406, 68.155209 ], [ -75.915527, 68.293779 ] ] ], [ [ [ -80.354004, 73.763497 ], [ -78.068848, 73.652545 ], [ -76.354980, 73.105800 ], [ -76.267090, 72.829052 ], [ -78.398438, 72.880871 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.763497 ] ] ], [ [ [ -91.757812, 74.019543 ], [ -90.527344, 73.861506 ], [ -91.757812, 73.118566 ], [ -91.757812, 74.019543 ] ] ], [ [ [ -91.625977, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.988770, 76.074381 ], [ -90.000000, 75.888091 ], [ -89.824219, 75.850541 ], [ -89.208984, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.396484, 75.486148 ], [ -84.792480, 75.699360 ], [ -82.770996, 75.785942 ], [ -81.145020, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.848633, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.110840, 74.413974 ], [ -88.154297, 74.396253 ], [ -89.780273, 74.519889 ], [ -90.000000, 74.549185 ], [ -91.757812, 74.758524 ], [ -91.757812, 76.780655 ], [ -91.625977, 76.780655 ] ] ], [ [ [ -72.839355, 83.233838 ], [ -68.510742, 83.108435 ], [ -65.830078, 83.028886 ], [ -63.698730, 82.902419 ], [ -61.853027, 82.631333 ], [ -61.896973, 82.364564 ], [ -64.335938, 81.929358 ], [ -66.774902, 81.726350 ], [ -67.675781, 81.502052 ], [ -65.500488, 81.508544 ], [ -67.851562, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.191406, 79.800637 ], [ -73.256836, 79.635922 ], [ -73.894043, 79.432371 ], [ -76.926270, 79.327084 ], [ -75.541992, 79.200193 ], [ -76.223145, 79.021712 ], [ -75.410156, 78.529943 ], [ -76.354980, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.376465, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.024626 ], [ -77.893066, 76.780655 ], [ -80.573730, 76.179748 ], [ -83.188477, 76.455203 ], [ -86.132812, 76.299953 ], [ -87.604980, 76.424292 ], [ -89.494629, 76.475773 ], [ -89.626465, 76.955375 ], [ -87.780762, 77.181560 ], [ -88.264160, 77.901861 ], [ -87.670898, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.352539, 78.184088 ], [ -87.978516, 78.376004 ], [ -87.165527, 78.759229 ], [ -85.385742, 79.000771 ], [ -85.100098, 79.347411 ], [ -86.528320, 79.738196 ], [ -86.945801, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.430176, 80.103470 ], [ -81.870117, 80.466790 ], [ -84.111328, 80.582539 ], [ -87.604980, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.000000, 81.167746 ], [ -90.219727, 81.261711 ], [ -91.384277, 81.553847 ], [ -91.604004, 81.895354 ], [ -90.109863, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.945312, 82.118384 ], [ -86.989746, 82.282381 ], [ -85.517578, 82.653843 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.441406, 82.861578 ], [ -81.101074, 83.020881 ], [ -79.321289, 83.132123 ], [ -76.267090, 83.174035 ], [ -75.739746, 83.066122 ], [ -72.839355, 83.233838 ] ] ], [ [ [ -91.757812, 80.990573 ], [ -91.142578, 80.725269 ], [ -90.000000, 80.582539 ], [ -89.450684, 80.510360 ], [ -87.824707, 80.320120 ], [ -87.033691, 79.663556 ], [ -85.825195, 79.339285 ], [ -87.209473, 79.042615 ], [ -89.055176, 78.291586 ], [ -90.000000, 78.251387 ], [ -90.812988, 78.215541 ], [ -91.757812, 78.278201 ], [ -91.757812, 80.990573 ] ] ], [ [ [ -91.757812, 70.065585 ], [ -91.757812, 70.399978 ], [ -91.538086, 70.192550 ], [ -91.757812, 70.065585 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.090332, 83.645406 ], [ -27.114258, 83.520162 ], [ -20.852051, 82.729312 ], [ -22.697754, 82.344100 ], [ -26.520996, 82.300066 ], [ -31.904297, 82.202302 ], [ -31.398926, 82.024427 ], [ -27.861328, 82.133435 ], [ -24.851074, 81.789349 ], [ -22.917480, 82.094243 ], [ -22.082520, 81.735830 ], [ -23.181152, 81.154241 ], [ -20.632324, 81.524751 ], [ -15.776367, 81.913920 ], [ -12.788086, 81.720024 ], [ -12.216797, 81.291703 ], [ -16.303711, 80.582539 ], [ -16.853027, 80.353314 ], [ -20.061035, 80.178713 ], [ -17.731934, 80.129870 ], [ -18.918457, 79.400085 ], [ -19.709473, 78.754945 ], [ -19.687500, 77.641245 ], [ -18.479004, 76.990046 ], [ -20.039062, 76.945452 ], [ -21.687012, 76.629067 ], [ -19.841309, 76.100796 ], [ -19.599609, 75.253057 ], [ -20.676270, 75.157673 ], [ -19.379883, 74.301409 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.818698 ], [ -20.764160, 73.465984 ], [ -22.192383, 73.315246 ], [ -23.576660, 73.308936 ], [ -22.324219, 72.633374 ], [ -22.302246, 72.188526 ], [ -24.279785, 72.600551 ], [ -24.807129, 72.335798 ], [ -23.444824, 72.080673 ], [ -22.148438, 71.469124 ], [ -21.774902, 70.670881 ], [ -23.554688, 70.473553 ], [ -25.554199, 71.434176 ], [ -25.202637, 70.757966 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.368164, 70.132898 ], [ -25.048828, 69.263930 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.130668 ], [ -31.794434, 68.122482 ], [ -32.827148, 67.742759 ], [ -34.211426, 66.687784 ], [ -34.738770, 66.513260 ], [ -36.364746, 65.982270 ], [ -37.045898, 65.946472 ], [ -37.792969, 65.802776 ], [ -53.217773, 65.802776 ], [ -53.679199, 66.107170 ], [ -53.481445, 66.513260 ], [ -53.305664, 66.843807 ], [ -53.986816, 67.195518 ], [ -52.998047, 68.358699 ], [ -51.481934, 68.736383 ], [ -51.086426, 69.154740 ], [ -50.888672, 69.930300 ], [ -52.031250, 69.580563 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.287257 ], [ -54.689941, 69.611206 ], [ -54.755859, 70.296526 ], [ -54.360352, 70.823031 ], [ -53.437500, 70.837461 ], [ -51.394043, 70.576112 ], [ -53.129883, 71.208999 ], [ -54.008789, 71.552741 ], [ -55.019531, 71.413177 ], [ -55.854492, 71.656749 ], [ -54.733887, 72.587405 ], [ -55.327148, 72.964753 ], [ -56.140137, 73.652545 ], [ -57.326660, 74.712244 ], [ -58.601074, 75.101283 ], [ -58.601074, 75.519151 ], [ -61.281738, 76.106073 ], [ -63.413086, 76.179748 ], [ -66.071777, 76.137695 ], [ -68.510742, 76.063801 ], [ -69.675293, 76.382969 ], [ -71.411133, 77.009817 ], [ -68.796387, 77.326990 ], [ -66.774902, 77.379906 ], [ -71.059570, 77.636542 ], [ -73.300781, 78.048346 ], [ -73.168945, 78.433418 ], [ -69.389648, 78.916608 ], [ -65.720215, 79.396042 ], [ -65.324707, 79.761655 ], [ -68.027344, 80.118564 ], [ -67.170410, 80.517603 ], [ -63.698730, 81.214853 ], [ -62.248535, 81.321593 ], [ -62.666016, 81.770499 ], [ -60.292969, 82.036613 ], [ -57.216797, 82.193353 ], [ -54.140625, 82.202302 ], [ -53.063965, 81.889156 ], [ -50.405273, 82.440097 ], [ -48.010254, 82.066996 ], [ -46.604004, 81.987759 ], [ -44.538574, 81.662872 ], [ -46.911621, 82.202302 ], [ -46.779785, 82.628514 ], [ -43.417969, 83.226067 ], [ -39.902344, 83.181865 ], [ -38.627930, 83.549851 ], [ -35.090332, 83.645406 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.148438, 66.416748 ], [ -20.742188, 65.802776 ], [ -24.147949, 65.802776 ], [ -23.664551, 66.266856 ], [ -22.148438, 66.416748 ] ] ], [ [ [ -15.864258, 66.513260 ], [ -14.523926, 66.460663 ], [ -14.743652, 65.802776 ], [ -20.390625, 65.802776 ], [ -19.072266, 66.284537 ], [ -17.819824, 66.000150 ], [ -16.215820, 66.513260 ], [ -16.171875, 66.530768 ], [ -15.864258, 66.513260 ] ] ] ] } } -] } -] } -, -{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 54.514160, -65.811781 ], [ 55.393066, -65.874725 ], [ 56.337891, -65.973325 ], [ 57.150879, -66.240312 ], [ 57.216797, -66.513260 ], [ 57.238770, -66.679087 ], [ 58.117676, -67.007428 ], [ 58.732910, -67.280530 ], [ 59.919434, -67.399044 ], [ 60.600586, -67.676085 ], [ 61.413574, -67.949900 ], [ 62.380371, -68.007571 ], [ 63.171387, -67.809245 ], [ 64.050293, -67.399044 ], [ 64.973145, -67.617589 ], [ 66.906738, -67.850702 ], [ 67.873535, -67.933397 ], [ 68.884277, -67.933397 ], [ 69.697266, -68.966279 ], [ 69.653320, -69.224997 ], [ 69.543457, -69.672358 ], [ 68.576660, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.692688 ], [ 69.060059, -70.670881 ], [ 68.928223, -71.066928 ], [ 68.400879, -71.441171 ], [ 67.939453, -71.849385 ], [ 68.708496, -72.161622 ], [ 69.851074, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.564941, -71.691293 ], [ 71.894531, -71.321915 ], [ 72.443848, -71.009811 ], [ 73.081055, -70.714471 ], [ 73.322754, -70.363091 ], [ 73.850098, -69.869892 ], [ 74.487305, -69.771356 ], [ 75.607910, -69.733334 ], [ 76.618652, -69.618859 ], [ 77.629395, -69.457554 ], [ 78.112793, -69.068563 ], [ 78.420410, -68.696505 ], [ 79.101562, -68.318146 ], [ 80.090332, -68.065098 ], [ 80.925293, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.365243 ], [ 82.770996, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.144365 ], [ 87.473145, -66.869715 ], [ 87.736816, -66.513260 ], [ 87.978516, -66.204876 ], [ 88.374023, -66.513260 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.000000, -67.169955 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.110204 ], [ 91.757812, -67.118748 ], [ 91.757812, -85.200475 ], [ -1.757812, -85.200475 ], [ -1.757812, -71.166486 ], [ -0.681152, -71.223149 ], [ -0.241699, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.856934, -71.300793 ], [ 1.867676, -71.123880 ], [ 4.130859, -70.851881 ], [ 5.141602, -70.612614 ], [ 6.262207, -70.458859 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.892565 ], [ 8.481445, -70.147827 ], [ 9.514160, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.634484 ], [ 12.392578, -70.244604 ], [ 13.403320, -69.967967 ], [ 14.721680, -70.028094 ], [ 15.117188, -70.399978 ], [ 15.930176, -70.028094 ], [ 17.006836, -69.907667 ], [ 18.193359, -69.869892 ], [ 19.248047, -69.892565 ], [ 20.368652, -70.005567 ], [ 21.445312, -70.065585 ], [ 21.906738, -70.399978 ], [ 22.565918, -70.692688 ], [ 23.664551, -70.517570 ], [ 24.829102, -70.480896 ], [ 25.971680, -70.480896 ], [ 27.092285, -70.458859 ], [ 28.081055, -70.318738 ], [ 29.135742, -70.199994 ], [ 30.014648, -69.930300 ], [ 30.959473, -69.756155 ], [ 31.970215, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.288574, -68.831802 ], [ 33.859863, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.145020, -69.240579 ], [ 37.199707, -69.162558 ], [ 37.902832, -69.519147 ], [ 38.627930, -69.771356 ], [ 39.660645, -69.534518 ], [ 40.012207, -69.107777 ], [ 40.913086, -68.926811 ], [ 41.945801, -68.600505 ], [ 42.934570, -68.455732 ], [ 44.099121, -68.261250 ], [ 46.494141, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.977051, -67.084550 ], [ 49.921875, -67.110204 ], [ 50.734863, -66.869715 ], [ 50.932617, -66.522016 ], [ 50.976562, -66.513260 ], [ 51.789551, -66.240312 ], [ 52.602539, -66.044796 ], [ 53.591309, -65.892680 ], [ 54.514160, -65.811781 ] ] ] } } -] } -] } -, -{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 54.514160, -65.811781 ], [ 55.393066, -65.874725 ], [ 56.337891, -65.973325 ], [ 57.150879, -66.240312 ], [ 57.216797, -66.513260 ], [ 57.238770, -66.679087 ], [ 58.117676, -67.007428 ], [ 58.557129, -67.204032 ], [ 48.713379, -67.204032 ], [ 48.977051, -67.084550 ], [ 49.921875, -67.110204 ], [ 50.734863, -66.869715 ], [ 50.932617, -66.522016 ], [ 50.976562, -66.513260 ], [ 51.789551, -66.240312 ], [ 52.602539, -66.044796 ], [ 53.591309, -65.892680 ], [ 54.514160, -65.811781 ] ] ], [ [ [ 88.374023, -66.513260 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.307617, -67.204032 ], [ 84.704590, -67.204032 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.144365 ], [ 87.473145, -66.869715 ], [ 87.736816, -66.513260 ], [ 87.978516, -66.204876 ], [ 88.374023, -66.513260 ] ] ], [ [ [ 91.757812, -67.118748 ], [ 91.757812, -67.204032 ], [ 90.812988, -67.204032 ], [ 91.582031, -67.110204 ], [ 91.757812, -67.118748 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.271973, 1.757537 ], [ 11.271973, 1.076597 ], [ 9.821777, 1.076597 ], [ 9.492188, 1.010690 ], [ 9.294434, 1.164471 ], [ 9.470215, 1.757537 ], [ 11.271973, 1.757537 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.958496, 1.757537 ], [ 34.650879, 1.186439 ], [ 33.881836, 0.109863 ], [ 33.881836, -0.944781 ], [ 31.860352, -1.010690 ], [ 30.761719, -1.010690 ], [ 30.410156, -1.120534 ], [ 29.816895, -1.428075 ], [ 29.575195, -1.340210 ], [ 29.575195, -0.571280 ], [ 29.816895, -0.197754 ], [ 29.816895, 0.000000 ], [ 29.860840, 0.615223 ], [ 30.080566, 1.076597 ], [ 30.454102, 1.603794 ], [ 30.717773, 1.757537 ], [ 34.958496, 1.757537 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.979004, 1.757537 ], [ 40.979004, -0.856902 ], [ 41.572266, -1.669686 ], [ 40.869141, -2.064982 ], [ 40.627441, -2.482133 ], [ 40.253906, -2.569939 ], [ 40.100098, -3.272146 ], [ 39.792480, -3.666928 ], [ 39.594727, -4.346411 ], [ 39.199219, -4.674980 ], [ 37.749023, -3.666928 ], [ 37.683105, -3.096636 ], [ 33.881836, -0.944781 ], [ 33.881836, 0.109863 ], [ 34.650879, 1.186439 ], [ 34.958496, 1.757537 ], [ 40.979004, 1.757537 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.109863, 1.757537 ], [ 44.055176, 1.054628 ], [ 43.132324, 0.307616 ], [ 42.868652, 0.000000 ], [ 42.033691, -0.900842 ], [ 41.791992, -1.428075 ], [ 41.572266, -1.669686 ], [ 40.979004, -0.856902 ], [ 40.979004, 1.757537 ], [ 45.109863, 1.757537 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.029785, 1.757537 ], [ 13.271484, 1.318243 ], [ 14.018555, 1.406109 ], [ 14.260254, 1.208406 ], [ 13.842773, 0.043945 ], [ 13.864746, 0.000000 ], [ 14.304199, -0.549308 ], [ 14.414062, -1.318243 ], [ 14.282227, -1.977147 ], [ 13.974609, -2.460181 ], [ 13.095703, -2.416276 ], [ 12.568359, -1.933227 ], [ 12.480469, -2.372369 ], [ 11.799316, -2.504085 ], [ 11.469727, -2.745531 ], [ 11.843262, -3.425692 ], [ 11.074219, -3.973861 ], [ 10.063477, -2.964984 ], [ 9.404297, -2.130856 ], [ 8.789062, -1.098565 ], [ 8.811035, -0.769020 ], [ 9.030762, -0.439449 ], [ 9.184570, 0.000000 ], [ 9.492188, 1.010690 ], [ 9.821777, 1.076597 ], [ 11.271973, 1.076597 ], [ 11.271973, 1.757537 ], [ 13.029785, 1.757537 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.885742, 1.757537 ], [ 17.753906, 0.856902 ], [ 17.819824, 0.307616 ], [ 17.687988, 0.000000 ], [ 17.622070, -0.417477 ], [ 17.512207, -0.725078 ], [ 16.853027, -1.208406 ], [ 16.391602, -1.735574 ], [ 15.952148, -2.701635 ], [ 15.996094, -3.513421 ], [ 15.732422, -3.842332 ], [ 15.161133, -4.324501 ], [ 14.567871, -4.959615 ], [ 14.194336, -4.784469 ], [ 14.128418, -4.499762 ], [ 13.579102, -4.499762 ], [ 13.249512, -4.872048 ], [ 12.985840, -4.762573 ], [ 12.612305, -4.434044 ], [ 12.304688, -4.587376 ], [ 11.909180, -5.025283 ], [ 11.074219, -3.973861 ], [ 11.843262, -3.425692 ], [ 11.469727, -2.745531 ], [ 11.799316, -2.504085 ], [ 12.480469, -2.372369 ], [ 12.568359, -1.933227 ], [ 13.095703, -2.416276 ], [ 13.974609, -2.460181 ], [ 14.282227, -1.977147 ], [ 14.414062, -1.318243 ], [ 14.304199, -0.549308 ], [ 13.864746, 0.000000 ], [ 13.842773, 0.043945 ], [ 14.260254, 1.208406 ], [ 14.018555, 1.406109 ], [ 13.271484, 1.318243 ], [ 13.029785, 1.757537 ], [ 15.820312, 1.757537 ], [ 15.930176, 1.735574 ], [ 15.930176, 1.757537 ], [ 17.885742, 1.757537 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.717773, 1.757537 ], [ 30.454102, 1.603794 ], [ 30.080566, 1.076597 ], [ 29.860840, 0.615223 ], [ 29.816895, 0.000000 ], [ 29.816895, -0.197754 ], [ 29.575195, -0.571280 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.603794 ], [ 29.245605, -2.196727 ], [ 29.113770, -2.284551 ], [ 29.003906, -2.833317 ], [ 29.267578, -3.272146 ], [ 29.333496, -4.499762 ], [ 29.509277, -5.419148 ], [ 29.399414, -5.922045 ], [ 29.619141, -6.511815 ], [ 30.190430, -7.079088 ], [ 30.739746, -8.320212 ], [ 30.344238, -8.233237 ], [ 28.981934, -8.385431 ], [ 28.718262, -8.515836 ], [ 28.432617, -9.145486 ], [ 28.652344, -9.600750 ], [ 28.366699, -11.781325 ], [ 29.333496, -12.340002 ], [ 29.597168, -12.168226 ], [ 29.685059, -13.239945 ], [ 28.916016, -13.239945 ], [ 28.520508, -12.683215 ], [ 28.146973, -12.254128 ], [ 27.377930, -12.125264 ], [ 27.158203, -11.587669 ], [ 26.542969, -11.910354 ], [ 25.751953, -11.781325 ], [ 25.400391, -11.329253 ], [ 24.763184, -11.221510 ], [ 24.301758, -11.243062 ], [ 24.235840, -10.941192 ], [ 23.444824, -10.854886 ], [ 22.829590, -11.005904 ], [ 22.390137, -10.984335 ], [ 22.148438, -11.070603 ], [ 22.192383, -9.882275 ], [ 21.862793, -9.514079 ], [ 21.796875, -8.906780 ], [ 21.928711, -8.298470 ], [ 21.730957, -7.906912 ], [ 21.708984, -7.275292 ], [ 20.500488, -7.297088 ], [ 20.588379, -6.926427 ], [ 20.083008, -6.926427 ], [ 20.017090, -7.100893 ], [ 19.401855, -7.144499 ], [ 19.160156, -7.732765 ], [ 19.006348, -7.972198 ], [ 18.457031, -7.841615 ], [ 18.127441, -7.972198 ], [ 17.468262, -8.059230 ], [ 16.853027, -7.209900 ], [ 16.567383, -6.620957 ], [ 16.325684, -5.856475 ], [ 13.359375, -5.856475 ], [ 13.007812, -5.965754 ], [ 12.722168, -5.943900 ], [ 12.304688, -6.096860 ], [ 12.172852, -5.769036 ], [ 12.436523, -5.681584 ], [ 12.458496, -5.244128 ], [ 12.612305, -4.981505 ], [ 12.985840, -4.762573 ], [ 13.249512, -4.872048 ], [ 13.579102, -4.499762 ], [ 14.128418, -4.499762 ], [ 14.194336, -4.784469 ], [ 14.567871, -4.959615 ], [ 15.161133, -4.324501 ], [ 15.732422, -3.842332 ], [ 15.996094, -3.513421 ], [ 15.952148, -2.701635 ], [ 16.391602, -1.735574 ], [ 16.853027, -1.208406 ], [ 17.512207, -0.725078 ], [ 17.622070, -0.417477 ], [ 17.687988, 0.000000 ], [ 17.819824, 0.307616 ], [ 17.753906, 0.856902 ], [ 17.885742, 1.757537 ], [ 30.717773, 1.757537 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.325684, -5.856475 ], [ 16.567383, -6.620957 ], [ 16.853027, -7.209900 ], [ 17.468262, -8.059230 ], [ 18.127441, -7.972198 ], [ 18.457031, -7.841615 ], [ 19.006348, -7.972198 ], [ 19.160156, -7.732765 ], [ 19.401855, -7.144499 ], [ 20.017090, -7.100893 ], [ 20.083008, -6.926427 ], [ 20.588379, -6.926427 ], [ 20.500488, -7.297088 ], [ 21.708984, -7.275292 ], [ 21.730957, -7.906912 ], [ 21.928711, -8.298470 ], [ 21.796875, -8.906780 ], [ 21.862793, -9.514079 ], [ 22.192383, -9.882275 ], [ 22.148438, -11.070603 ], [ 22.390137, -10.984335 ], [ 22.829590, -11.005904 ], [ 23.444824, -10.854886 ], [ 23.906250, -10.919618 ], [ 24.016113, -11.221510 ], [ 23.884277, -11.716788 ], [ 24.060059, -12.189704 ], [ 23.928223, -12.554564 ], [ 24.016113, -12.897489 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.066929 ], [ 22.543945, -16.888660 ], [ 23.203125, -17.518344 ], [ 21.357422, -17.916023 ], [ 18.940430, -17.769612 ], [ 18.259277, -17.308688 ], [ 14.194336, -17.350638 ], [ 14.040527, -17.413546 ], [ 13.447266, -16.951724 ], [ 12.810059, -16.930705 ], [ 12.194824, -17.098792 ], [ 11.733398, -17.287709 ], [ 11.623535, -16.657244 ], [ 11.777344, -15.792254 ], [ 12.106934, -14.859850 ], [ 12.172852, -14.434680 ], [ 12.480469, -13.539201 ], [ 12.722168, -13.132979 ], [ 13.293457, -12.468760 ], [ 13.623047, -12.017830 ], [ 13.732910, -11.286161 ], [ 13.666992, -10.725381 ], [ 13.381348, -10.358151 ], [ 12.854004, -9.145486 ], [ 12.919922, -8.950193 ], [ 13.227539, -8.559294 ], [ 12.722168, -6.926427 ], [ 12.216797, -6.293459 ], [ 12.304688, -6.096860 ], [ 12.722168, -5.943900 ], [ 13.007812, -5.965754 ], [ 13.359375, -5.856475 ], [ 16.325684, -5.856475 ] ] ], [ [ [ 12.612305, -4.434044 ], [ 12.985840, -4.762573 ], [ 12.612305, -4.981505 ], [ 12.458496, -5.244128 ], [ 12.436523, -5.681584 ], [ 12.172852, -5.769036 ], [ 11.909180, -5.025283 ], [ 12.304688, -4.587376 ], [ 12.612305, -4.434044 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.810059, -16.930705 ], [ 13.447266, -16.951724 ], [ 14.040527, -17.413546 ], [ 14.194336, -17.350638 ], [ 18.259277, -17.308688 ], [ 18.940430, -17.769612 ], [ 21.357422, -17.916023 ], [ 23.203125, -17.518344 ], [ 24.016113, -17.287709 ], [ 24.675293, -17.350638 ], [ 25.070801, -17.560247 ], [ 25.070801, -17.644022 ], [ 24.499512, -17.874203 ], [ 24.213867, -17.874203 ], [ 23.576660, -18.271086 ], [ 23.181152, -17.853290 ], [ 21.643066, -18.208480 ], [ 20.895996, -18.250220 ], [ 20.874023, -21.800308 ], [ 19.885254, -21.841105 ], [ 19.885254, -28.459033 ], [ 18.984375, -28.960089 ], [ 18.457031, -29.036961 ], [ 17.819824, -28.844674 ], [ 17.380371, -28.767659 ], [ 17.204590, -28.343065 ], [ 16.809082, -28.071980 ], [ 16.325684, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.205078, -27.078692 ], [ 14.985352, -26.115986 ], [ 14.721680, -25.383735 ], [ 14.392090, -23.845650 ], [ 14.370117, -22.654572 ], [ 14.238281, -22.105999 ], [ 13.864746, -21.698265 ], [ 13.337402, -20.858812 ], [ 12.810059, -19.663280 ], [ 12.590332, -19.041349 ], [ 11.777344, -18.062312 ], [ 11.733398, -17.287709 ], [ 12.194824, -17.098792 ], [ 12.810059, -16.930705 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.410156, -1.120534 ], [ 30.805664, -1.691649 ], [ 30.739746, -2.284551 ], [ 30.454102, -2.394322 ], [ 29.926758, -2.328460 ], [ 29.619141, -2.899153 ], [ 29.003906, -2.833317 ], [ 29.113770, -2.284551 ], [ 29.245605, -2.196727 ], [ 29.289551, -1.603794 ], [ 29.575195, -1.340210 ], [ 29.816895, -1.428075 ], [ 30.410156, -1.120534 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.926758, -2.328460 ], [ 30.454102, -2.394322 ], [ 30.520020, -2.789425 ], [ 30.739746, -3.030812 ], [ 30.739746, -3.337954 ], [ 30.498047, -3.557283 ], [ 30.102539, -4.083453 ], [ 29.750977, -4.434044 ], [ 29.333496, -4.499762 ], [ 29.267578, -3.272146 ], [ 29.003906, -2.833317 ], [ 29.619141, -2.899153 ], [ 29.926758, -2.328460 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.344238, -8.233237 ], [ 30.739746, -8.320212 ], [ 31.157227, -8.581021 ], [ 31.552734, -8.754795 ], [ 32.189941, -8.928487 ], [ 32.739258, -9.210560 ], [ 33.222656, -9.665738 ], [ 33.464355, -10.509417 ], [ 33.310547, -10.790141 ], [ 33.112793, -11.587669 ], [ 33.288574, -12.425848 ], [ 32.980957, -12.768946 ], [ 32.673340, -13.710035 ], [ 33.200684, -13.966054 ], [ 30.168457, -14.774883 ], [ 30.256348, -15.496032 ], [ 29.509277, -15.644197 ], [ 28.937988, -16.024696 ], [ 28.806152, -16.383391 ], [ 28.454590, -16.467695 ], [ 27.597656, -17.287709 ], [ 27.026367, -17.936929 ], [ 26.696777, -17.957832 ], [ 26.367188, -17.832374 ], [ 25.246582, -17.727759 ], [ 25.070801, -17.644022 ], [ 25.070801, -17.560247 ], [ 24.675293, -17.350638 ], [ 24.016113, -17.287709 ], [ 23.203125, -17.518344 ], [ 22.543945, -16.888660 ], [ 21.884766, -16.066929 ], [ 21.928711, -12.897489 ], [ 24.016113, -12.897489 ], [ 23.928223, -12.554564 ], [ 24.060059, -12.189704 ], [ 23.884277, -11.716788 ], [ 24.016113, -11.221510 ], [ 23.906250, -10.919618 ], [ 24.235840, -10.941192 ], [ 24.301758, -11.243062 ], [ 24.763184, -11.221510 ], [ 25.400391, -11.329253 ], [ 25.751953, -11.781325 ], [ 26.542969, -11.910354 ], [ 27.158203, -11.587669 ], [ 27.377930, -12.125264 ], [ 28.146973, -12.254128 ], [ 28.520508, -12.683215 ], [ 28.916016, -13.239945 ], [ 29.685059, -13.239945 ], [ 29.597168, -12.168226 ], [ 29.333496, -12.340002 ], [ 28.366699, -11.781325 ], [ 28.652344, -9.600750 ], [ 28.432617, -9.145486 ], [ 28.718262, -8.515836 ], [ 28.981934, -8.385431 ], [ 30.344238, -8.233237 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.256348, -15.496032 ], [ 30.322266, -15.876809 ], [ 31.157227, -15.855674 ], [ 31.618652, -16.066929 ], [ 31.838379, -16.299051 ], [ 32.321777, -16.383391 ], [ 32.827148, -16.699340 ], [ 32.849121, -17.978733 ], [ 32.651367, -18.667063 ], [ 32.607422, -19.414792 ], [ 32.761230, -19.704658 ], [ 32.651367, -20.303418 ], [ 32.497559, -20.385825 ], [ 32.233887, -21.105000 ], [ 31.179199, -22.248429 ], [ 30.651855, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.085640 ], [ 29.421387, -22.085640 ], [ 28.784180, -21.637005 ], [ 28.015137, -21.473518 ], [ 27.707520, -20.838278 ], [ 27.707520, -20.488773 ], [ 27.290039, -20.385825 ], [ 26.147461, -19.290406 ], [ 25.839844, -18.708692 ], [ 25.642090, -18.521283 ], [ 25.246582, -17.727759 ], [ 26.367188, -17.832374 ], [ 26.696777, -17.957832 ], [ 27.026367, -17.936929 ], [ 27.597656, -17.287709 ], [ 28.454590, -16.467695 ], [ 28.806152, -16.383391 ], [ 28.937988, -16.024696 ], [ 29.509277, -15.644197 ], [ 30.256348, -15.496032 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.881836, -0.944781 ], [ 37.683105, -3.096636 ], [ 37.749023, -3.666928 ], [ 39.199219, -4.674980 ], [ 38.737793, -5.900189 ], [ 38.781738, -6.468151 ], [ 39.418945, -6.839170 ], [ 39.462891, -7.079088 ], [ 39.177246, -7.689217 ], [ 39.243164, -7.993957 ], [ 39.177246, -8.472372 ], [ 39.528809, -9.102097 ], [ 39.946289, -10.077037 ], [ 40.297852, -10.314919 ], [ 39.506836, -10.876465 ], [ 38.408203, -11.264612 ], [ 37.814941, -11.264612 ], [ 37.463379, -11.566144 ], [ 36.760254, -11.587669 ], [ 36.496582, -11.716788 ], [ 35.310059, -11.436955 ], [ 34.541016, -11.501557 ], [ 34.277344, -10.141932 ], [ 33.728027, -9.405710 ], [ 32.739258, -9.210560 ], [ 32.189941, -8.928487 ], [ 31.552734, -8.754795 ], [ 31.157227, -8.581021 ], [ 30.739746, -8.320212 ], [ 30.190430, -7.079088 ], [ 29.619141, -6.511815 ], [ 29.399414, -5.922045 ], [ 29.509277, -5.419148 ], [ 29.333496, -4.499762 ], [ 29.750977, -4.434044 ], [ 30.102539, -4.083453 ], [ 30.498047, -3.557283 ], [ 30.739746, -3.337954 ], [ 30.739746, -3.030812 ], [ 30.520020, -2.789425 ], [ 30.454102, -2.394322 ], [ 30.739746, -2.284551 ], [ 30.805664, -1.691649 ], [ 30.410156, -1.120534 ], [ 30.761719, -1.010690 ], [ 31.860352, -1.010690 ], [ 33.881836, -0.944781 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.739258, -9.210560 ], [ 33.728027, -9.405710 ], [ 34.277344, -10.141932 ], [ 34.541016, -11.501557 ], [ 34.277344, -12.275599 ], [ 34.541016, -13.560562 ], [ 34.892578, -13.560562 ], [ 35.266113, -13.880746 ], [ 35.683594, -14.604847 ], [ 35.771484, -15.876809 ], [ 35.332031, -16.088042 ], [ 35.024414, -16.783506 ], [ 34.365234, -16.172473 ], [ 34.299316, -15.474857 ], [ 34.497070, -15.008464 ], [ 34.453125, -14.604847 ], [ 34.057617, -14.349548 ], [ 33.771973, -14.434680 ], [ 33.200684, -13.966054 ], [ 32.673340, -13.710035 ], [ 32.980957, -12.768946 ], [ 33.288574, -12.425848 ], [ 33.112793, -11.587669 ], [ 33.310547, -10.790141 ], [ 33.464355, -10.509417 ], [ 33.222656, -9.665738 ], [ 32.739258, -9.210560 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.297852, -10.314919 ], [ 40.473633, -10.746969 ], [ 40.429688, -11.759815 ], [ 40.539551, -12.618897 ], [ 40.583496, -14.200488 ], [ 40.759277, -14.689881 ], [ 40.473633, -15.390136 ], [ 40.078125, -16.088042 ], [ 39.440918, -16.720385 ], [ 37.397461, -17.581194 ], [ 36.276855, -18.646245 ], [ 35.881348, -18.833515 ], [ 35.178223, -19.539084 ], [ 34.782715, -19.766704 ], [ 34.694824, -20.488773 ], [ 35.156250, -21.248422 ], [ 35.354004, -21.820708 ], [ 35.375977, -22.126355 ], [ 35.551758, -22.085640 ], [ 35.529785, -23.059516 ], [ 35.354004, -23.523700 ], [ 35.595703, -23.704895 ], [ 35.441895, -24.106647 ], [ 35.024414, -24.467151 ], [ 33.002930, -25.344026 ], [ 32.563477, -25.720735 ], [ 32.651367, -26.135714 ], [ 32.915039, -26.214591 ], [ 32.827148, -26.725987 ], [ 32.058105, -26.725987 ], [ 31.970215, -26.273714 ], [ 31.750488, -25.482951 ], [ 31.926270, -24.367114 ], [ 31.179199, -22.248429 ], [ 32.233887, -21.105000 ], [ 32.497559, -20.385825 ], [ 32.651367, -20.303418 ], [ 32.761230, -19.704658 ], [ 32.607422, -19.414792 ], [ 32.651367, -18.667063 ], [ 32.849121, -17.978733 ], [ 32.827148, -16.699340 ], [ 32.321777, -16.383391 ], [ 31.838379, -16.299051 ], [ 31.618652, -16.066929 ], [ 31.157227, -15.855674 ], [ 30.322266, -15.876809 ], [ 30.168457, -14.774883 ], [ 33.200684, -13.966054 ], [ 33.771973, -14.434680 ], [ 34.057617, -14.349548 ], [ 34.453125, -14.604847 ], [ 34.497070, -15.008464 ], [ 34.299316, -15.474857 ], [ 34.365234, -16.172473 ], [ 35.024414, -16.783506 ], [ 35.332031, -16.088042 ], [ 35.771484, -15.876809 ], [ 35.683594, -14.604847 ], [ 35.266113, -13.880746 ], [ 34.892578, -13.560562 ], [ 34.541016, -13.560562 ], [ 34.277344, -12.275599 ], [ 34.541016, -11.501557 ], [ 35.310059, -11.436955 ], [ 36.496582, -11.716788 ], [ 36.760254, -11.587669 ], [ 37.463379, -11.566144 ], [ 37.814941, -11.264612 ], [ 38.408203, -11.264612 ], [ 39.506836, -10.876465 ], [ 40.297852, -10.314919 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.070801, -17.644022 ], [ 25.246582, -17.727759 ], [ 25.642090, -18.521283 ], [ 25.839844, -18.708692 ], [ 26.147461, -19.290406 ], [ 27.290039, -20.385825 ], [ 27.707520, -20.488773 ], [ 27.707520, -20.838278 ], [ 28.015137, -21.473518 ], [ 28.784180, -21.637005 ], [ 29.421387, -22.085640 ], [ 28.015137, -22.816694 ], [ 27.114258, -23.563987 ], [ 26.784668, -24.226929 ], [ 26.477051, -24.607069 ], [ 25.927734, -24.686952 ], [ 25.664062, -25.482951 ], [ 25.004883, -25.700938 ], [ 24.191895, -25.661333 ], [ 23.730469, -25.383735 ], [ 23.291016, -25.264568 ], [ 22.807617, -25.482951 ], [ 22.565918, -25.977799 ], [ 22.104492, -26.273714 ], [ 21.599121, -26.725987 ], [ 20.874023, -26.824071 ], [ 20.654297, -26.470573 ], [ 20.742188, -25.859224 ], [ 20.148926, -24.906367 ], [ 19.885254, -24.766785 ], [ 19.885254, -21.841105 ], [ 20.874023, -21.800308 ], [ 20.895996, -18.250220 ], [ 21.643066, -18.208480 ], [ 23.181152, -17.853290 ], [ 23.576660, -18.271086 ], [ 24.213867, -17.874203 ], [ 24.499512, -17.874203 ], [ 25.070801, -17.644022 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.838867, -22.085640 ], [ 30.322266, -22.268764 ], [ 30.651855, -22.146708 ], [ 31.179199, -22.248429 ], [ 31.926270, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.816406, -25.839449 ], [ 31.333008, -25.641526 ], [ 31.025391, -25.720735 ], [ 30.937500, -26.017298 ], [ 30.673828, -26.391870 ], [ 30.673828, -26.725987 ], [ 31.267090, -27.274161 ], [ 31.860352, -27.176469 ], [ 32.058105, -26.725987 ], [ 32.827148, -26.725987 ], [ 32.563477, -27.469287 ], [ 32.453613, -28.285033 ], [ 32.189941, -28.748397 ], [ 31.508789, -29.248063 ], [ 31.311035, -29.401320 ], [ 30.893555, -29.897806 ], [ 30.607910, -30.410782 ], [ 30.036621, -31.128199 ], [ 28.212891, -32.768800 ], [ 27.443848, -33.211116 ], [ 26.411133, -33.614619 ], [ 25.905762, -33.651208 ], [ 25.773926, -33.943360 ], [ 25.158691, -33.779147 ], [ 24.675293, -33.979809 ], [ 23.576660, -33.779147 ], [ 22.983398, -33.906896 ], [ 22.565918, -33.852170 ], [ 21.533203, -34.252676 ], [ 20.676270, -34.415973 ], [ 20.061035, -34.777716 ], [ 19.599609, -34.813803 ], [ 19.182129, -34.452218 ], [ 18.852539, -34.434098 ], [ 18.413086, -33.979809 ], [ 18.369141, -34.125448 ], [ 18.237305, -33.852170 ], [ 18.237305, -33.266250 ], [ 17.907715, -32.602362 ], [ 18.237305, -32.417066 ], [ 18.215332, -31.653381 ], [ 17.556152, -30.713504 ], [ 16.325684, -28.574874 ], [ 16.809082, -28.071980 ], [ 17.204590, -28.343065 ], [ 17.380371, -28.767659 ], [ 17.819824, -28.844674 ], [ 18.457031, -29.036961 ], [ 18.984375, -28.960089 ], [ 19.885254, -28.459033 ], [ 19.885254, -24.766785 ], [ 20.148926, -24.906367 ], [ 20.742188, -25.859224 ], [ 20.654297, -26.470573 ], [ 20.874023, -26.824071 ], [ 21.599121, -26.725987 ], [ 22.104492, -26.273714 ], [ 22.565918, -25.977799 ], [ 22.807617, -25.482951 ], [ 23.291016, -25.264568 ], [ 23.730469, -25.383735 ], [ 24.191895, -25.661333 ], [ 25.004883, -25.700938 ], [ 25.664062, -25.482951 ], [ 25.927734, -24.686952 ], [ 26.477051, -24.607069 ], [ 26.784668, -24.226929 ], [ 27.114258, -23.563987 ], [ 28.015137, -22.816694 ], [ 29.421387, -22.085640 ], [ 29.838867, -22.085640 ] ], [ [ 28.520508, -28.632747 ], [ 28.059082, -28.844674 ], [ 27.531738, -29.228890 ], [ 26.982422, -29.859701 ], [ 27.729492, -30.637912 ], [ 28.103027, -30.543339 ], [ 28.278809, -30.221102 ], [ 28.828125, -30.069094 ], [ 29.311523, -29.248063 ], [ 28.959961, -28.940862 ], [ 28.520508, -28.632747 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.333008, -25.641526 ], [ 31.816406, -25.839449 ], [ 31.970215, -26.273714 ], [ 32.058105, -26.725987 ], [ 31.860352, -27.176469 ], [ 31.267090, -27.274161 ], [ 30.673828, -26.725987 ], [ 30.673828, -26.391870 ], [ 30.937500, -26.017298 ], [ 31.025391, -25.720735 ], [ 31.333008, -25.641526 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.520508, -28.632747 ], [ 28.959961, -28.940862 ], [ 29.311523, -29.248063 ], [ 28.828125, -30.069094 ], [ 28.278809, -30.221102 ], [ 28.103027, -30.543339 ], [ 27.729492, -30.637912 ], [ 26.982422, -29.859701 ], [ 27.531738, -29.228890 ], [ 28.059082, -28.844674 ], [ 28.520508, -28.632747 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.174805, -12.039321 ], [ 49.526367, -12.468760 ], [ 49.790039, -12.876070 ], [ 50.053711, -13.539201 ], [ 50.207520, -14.753635 ], [ 50.471191, -15.220589 ], [ 50.361328, -15.686510 ], [ 50.185547, -15.982454 ], [ 49.855957, -15.411319 ], [ 49.658203, -15.707663 ], [ 49.855957, -16.446622 ], [ 49.768066, -16.867634 ], [ 49.482422, -17.098792 ], [ 49.416504, -17.936929 ], [ 48.537598, -20.488773 ], [ 47.922363, -22.390714 ], [ 47.526855, -23.765237 ], [ 47.087402, -24.926295 ], [ 46.274414, -25.165173 ], [ 45.395508, -25.582085 ], [ 44.033203, -24.986058 ], [ 43.747559, -24.447150 ], [ 43.681641, -23.563987 ], [ 43.330078, -22.776182 ], [ 43.242188, -22.044913 ], [ 43.417969, -21.330315 ], [ 43.879395, -21.145992 ], [ 43.879395, -20.817741 ], [ 44.362793, -20.055931 ], [ 44.450684, -19.414792 ], [ 44.230957, -18.958246 ], [ 44.033203, -18.312811 ], [ 43.945312, -17.392579 ], [ 44.296875, -16.846605 ], [ 44.428711, -16.214675 ], [ 44.934082, -16.172473 ], [ 45.483398, -15.961329 ], [ 45.856934, -15.792254 ], [ 46.296387, -15.771109 ], [ 46.867676, -15.199386 ], [ 47.702637, -14.583583 ], [ 47.988281, -14.072645 ], [ 47.856445, -13.645987 ], [ 48.273926, -13.774066 ], [ 48.823242, -13.068777 ], [ 48.845215, -12.468760 ], [ 49.174805, -12.039321 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.928223, -48.618385 ], [ 69.565430, -48.936935 ], [ 70.510254, -49.052270 ], [ 70.554199, -49.253465 ], [ 70.268555, -49.696062 ], [ 68.730469, -49.767074 ], [ 68.708496, -49.239121 ], [ 68.928223, -48.618385 ] ] ] } } -] } -] } -, -{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.757812, 55.491304 ], [ -1.120605, 54.635697 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.683695 ], [ 0.175781, 53.330873 ], [ 0.461426, 52.935397 ], [ 1.669922, 52.749594 ], [ 1.538086, 52.106505 ], [ 1.032715, 51.808615 ], [ 1.428223, 51.303145 ], [ 0.549316, 50.778155 ], [ -0.791016, 50.778155 ], [ -1.757812, 50.625073 ], [ -1.757812, 55.491304 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.382324, 43.020714 ], [ 9.558105, 42.163403 ], [ 9.228516, 41.393294 ], [ 8.767090, 41.590797 ], [ 8.525391, 42.261049 ], [ 8.745117, 42.633959 ], [ 9.382324, 43.020714 ] ] ], [ [ [ 2.504883, 51.151786 ], [ 2.636719, 50.805935 ], [ 3.120117, 50.792047 ], [ 3.581543, 50.387508 ], [ 4.284668, 49.908787 ], [ 4.790039, 49.993615 ], [ 5.668945, 49.539469 ], [ 5.888672, 49.453843 ], [ 6.174316, 49.468124 ], [ 6.657715, 49.210420 ], [ 8.085938, 49.023461 ], [ 7.580566, 48.341646 ], [ 7.448730, 47.620975 ], [ 7.185059, 47.457809 ], [ 6.723633, 47.546872 ], [ 6.767578, 47.294134 ], [ 6.020508, 46.739861 ], [ 6.020508, 46.286224 ], [ 6.481934, 46.437857 ], [ 6.833496, 45.996962 ], [ 6.789551, 45.721522 ], [ 7.075195, 45.336702 ], [ 6.745605, 45.042478 ], [ 6.987305, 44.260937 ], [ 7.536621, 44.134913 ], [ 7.426758, 43.707594 ], [ 6.525879, 43.133061 ], [ 4.548340, 43.405047 ], [ 3.098145, 43.084937 ], [ 2.966309, 42.488302 ], [ 1.823730, 42.358544 ], [ 0.681152, 42.811522 ], [ 0.329590, 42.585444 ], [ -1.516113, 43.036776 ], [ -1.757812, 43.293200 ], [ -1.757812, 43.596306 ], [ -1.384277, 44.024422 ], [ -1.208496, 46.027482 ], [ -1.757812, 46.604167 ], [ -1.757812, 48.676454 ], [ -1.625977, 48.647428 ], [ -1.757812, 49.152970 ], [ -1.757812, 49.710273 ], [ -1.010742, 49.353756 ], [ 0.000000, 49.681847 ], [ 1.318359, 50.134664 ], [ 1.625977, 50.958427 ], [ 2.504883, 51.151786 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.757812, 43.293200 ], [ -1.516113, 43.036776 ], [ 0.329590, 42.585444 ], [ 0.681152, 42.811522 ], [ 1.823730, 42.358544 ], [ 2.966309, 42.488302 ], [ 3.032227, 41.902277 ], [ 2.087402, 41.228249 ], [ 0.791016, 41.029643 ], [ 0.703125, 40.680638 ], [ 0.087891, 40.128491 ], [ 0.000000, 39.909736 ], [ -0.285645, 39.317300 ], [ 0.000000, 38.908133 ], [ 0.109863, 38.754083 ], [ 0.000000, 38.668356 ], [ -0.483398, 38.307181 ], [ -0.703125, 37.649034 ], [ -1.450195, 37.457418 ], [ -1.757812, 37.107765 ], [ -1.757812, 43.293200 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.757812, 34.179998 ], [ -1.735840, 33.925130 ], [ -1.406250, 32.879587 ], [ -1.142578, 32.657876 ], [ -1.318359, 32.268555 ], [ -1.757812, 32.212801 ], [ -1.757812, 34.179998 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.757812, 22.938160 ], [ 0.000000, 21.800308 ], [ 1.801758, 20.612220 ], [ 2.043457, 20.159098 ], [ 2.680664, 19.870060 ], [ 3.142090, 19.704658 ], [ 3.142090, 19.062118 ], [ 4.262695, 19.165924 ], [ 4.262695, 16.867634 ], [ 3.713379, 16.193575 ], [ 3.625488, 15.580711 ], [ 2.746582, 15.411319 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.987240 ], [ 0.000000, 14.944785 ], [ -0.285645, 14.944785 ], [ -0.527344, 15.135764 ], [ -1.076660, 14.987240 ], [ -1.757812, 14.668626 ], [ -1.757812, 22.938160 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.527344, 15.135764 ], [ -0.285645, 14.944785 ], [ 0.373535, 14.944785 ], [ 0.285645, 14.455958 ], [ 0.417480, 14.008696 ], [ 0.988770, 13.346865 ], [ 1.010742, 12.854649 ], [ 2.175293, 12.640338 ], [ 2.153320, 11.953349 ], [ 1.933594, 11.652236 ], [ 1.428223, 11.566144 ], [ 1.230469, 11.113727 ], [ 0.878906, 11.005904 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.113727 ], [ -0.769043, 10.941192 ], [ -1.208496, 11.027472 ], [ -1.757812, 11.005904 ], [ -1.757812, 14.668626 ], [ -1.076660, 14.987240 ], [ -0.527344, 15.135764 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.113727 ], [ 0.000000, 11.027472 ], [ 0.021973, 11.027472 ], [ 0.000000, 10.919618 ], [ -0.065918, 10.725381 ], [ 0.000000, 10.660608 ], [ 0.351562, 10.206813 ], [ 0.351562, 9.470736 ], [ 0.439453, 8.689639 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.427837 ], [ 0.549316, 6.926427 ], [ 0.834961, 6.293459 ], [ 1.054688, 5.943900 ], [ -0.527344, 5.353521 ], [ -1.076660, 5.003394 ], [ -1.757812, 4.784469 ], [ -1.757812, 11.005904 ], [ -1.208496, 11.027472 ], [ -0.769043, 10.941192 ], [ -0.439453, 11.113727 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 91.757812, 67.204032 ], [ 91.757812, 50.666872 ], [ 90.703125, 50.345460 ], [ 90.000000, 50.021858 ], [ 88.791504, 49.482401 ], [ 87.341309, 49.224773 ], [ 86.813965, 49.837982 ], [ 85.539551, 49.696062 ], [ 85.100098, 50.120578 ], [ 84.396973, 50.317408 ], [ 83.913574, 50.903033 ], [ 83.364258, 51.082822 ], [ 81.936035, 50.819818 ], [ 80.551758, 51.399206 ], [ 80.024414, 50.875311 ], [ 77.783203, 53.409532 ], [ 76.508789, 54.188155 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.410645, 53.501117 ], [ 73.498535, 54.046489 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.178868 ], [ 69.060059, 55.391592 ], [ 68.159180, 54.977614 ], [ 65.654297, 54.610255 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.988337 ], [ 60.732422, 52.722986 ], [ 60.908203, 52.456009 ], [ 59.963379, 51.971346 ], [ 61.567383, 51.275662 ], [ 61.325684, 50.805935 ], [ 59.919434, 50.847573 ], [ 59.633789, 50.555325 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.055207 ], [ 55.700684, 50.625073 ], [ 54.514160, 51.027576 ], [ 52.316895, 51.727028 ], [ 50.756836, 51.699800 ], [ 48.691406, 50.611132 ], [ 48.559570, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.735840, 49.368066 ], [ 47.043457, 49.152970 ], [ 46.450195, 48.400032 ], [ 47.307129, 47.724545 ], [ 48.054199, 47.754098 ], [ 48.691406, 47.085085 ], [ 48.581543, 46.573967 ], [ 49.086914, 46.407564 ], [ 48.625488, 45.813486 ], [ 47.658691, 45.644768 ], [ 46.669922, 44.621754 ], [ 47.570801, 43.675818 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.820455 ], [ 47.966309, 41.409776 ], [ 47.812500, 41.162114 ], [ 47.373047, 41.228249 ], [ 46.669922, 41.836828 ], [ 46.384277, 41.869561 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.516602, 42.714732 ], [ 43.923340, 42.569264 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.229195 ], [ 40.913086, 43.389082 ], [ 40.056152, 43.564472 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.292401 ], [ 37.529297, 44.668653 ], [ 36.672363, 45.259422 ], [ 37.397461, 45.413876 ], [ 38.232422, 46.255847 ], [ 37.661133, 46.649436 ], [ 39.133301, 47.055154 ], [ 39.111328, 47.264320 ], [ 38.210449, 47.115000 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.726562, 47.901614 ], [ 39.880371, 48.239309 ], [ 39.660645, 48.792390 ], [ 40.078125, 49.310799 ], [ 40.056152, 49.610710 ], [ 38.583984, 49.937080 ], [ 37.990723, 49.922935 ], [ 37.375488, 50.387508 ], [ 36.606445, 50.233152 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.002441, 51.220647 ], [ 34.211426, 51.261915 ], [ 34.123535, 51.577070 ], [ 34.387207, 51.781436 ], [ 33.750000, 52.335339 ], [ 32.695312, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.145996, 52.066000 ], [ 31.772461, 52.106505 ], [ 31.530762, 52.749594 ], [ 31.289062, 53.080827 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.673340, 53.357109 ], [ 32.387695, 53.618579 ], [ 31.728516, 53.800651 ], [ 31.772461, 53.981935 ], [ 31.376953, 54.162434 ], [ 30.739746, 54.813348 ], [ 30.959473, 55.090944 ], [ 30.871582, 55.553495 ], [ 29.882812, 55.801281 ], [ 29.355469, 55.677584 ], [ 29.223633, 55.924586 ], [ 28.168945, 56.170023 ], [ 27.839355, 56.764768 ], [ 27.751465, 57.255281 ], [ 27.268066, 57.480403 ], [ 27.707520, 57.797944 ], [ 27.399902, 58.734005 ], [ 28.125000, 59.310768 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.511343 ], [ 30.190430, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.875188 ], [ 30.014648, 63.558338 ], [ 30.432129, 64.206377 ], [ 29.531250, 64.951465 ], [ 30.212402, 65.811781 ], [ 29.487305, 66.513260 ], [ 29.047852, 66.947274 ], [ 29.355469, 67.204032 ], [ 41.066895, 67.204032 ], [ 41.110840, 66.791909 ], [ 40.517578, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.364258, 66.000150 ], [ 35.375977, 66.513260 ], [ 33.903809, 66.765919 ], [ 33.178711, 66.635556 ], [ 33.442383, 66.513260 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.210938, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.339908 ], [ 36.518555, 64.764759 ], [ 37.155762, 65.146115 ], [ 39.572754, 64.529548 ], [ 40.429688, 64.764759 ], [ 39.748535, 65.503854 ], [ 42.077637, 66.478208 ], [ 43.000488, 66.425537 ], [ 43.945312, 66.071546 ], [ 44.318848, 66.513260 ], [ 44.516602, 66.757250 ], [ 43.901367, 67.204032 ], [ 45.549316, 67.204032 ], [ 45.549316, 67.016009 ], [ 46.340332, 66.670387 ], [ 47.878418, 66.886972 ], [ 48.010254, 67.204032 ], [ 72.465820, 67.204032 ], [ 71.520996, 66.513260 ], [ 71.279297, 66.328685 ], [ 72.421875, 66.178266 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.539517 ], [ 73.916016, 66.791909 ], [ 74.135742, 67.204032 ], [ 91.757812, 67.204032 ] ] ], [ [ [ 21.247559, 55.191412 ], [ 22.302246, 55.015426 ], [ 22.741699, 54.863963 ], [ 22.631836, 54.584797 ], [ 22.719727, 54.329338 ], [ 20.874023, 54.316523 ], [ 19.643555, 54.431713 ], [ 19.885254, 54.876607 ], [ 21.247559, 55.191412 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.996094, 67.204032 ], [ 15.380859, 66.513260 ], [ 15.095215, 66.196009 ], [ 13.535156, 64.792848 ], [ 13.908691, 64.453849 ], [ 13.557129, 64.052978 ], [ 12.568359, 64.072200 ], [ 11.909180, 63.134503 ], [ 11.975098, 61.804284 ], [ 12.612305, 61.301902 ], [ 12.282715, 60.119619 ], [ 11.447754, 59.433903 ], [ 11.008301, 58.859224 ], [ 10.349121, 59.478569 ], [ 8.371582, 58.321030 ], [ 7.031250, 58.089493 ], [ 5.646973, 58.596887 ], [ 5.295410, 59.667741 ], [ 4.987793, 61.980267 ], [ 5.910645, 62.623668 ], [ 8.547363, 63.460329 ], [ 10.524902, 64.491725 ], [ 12.348633, 65.883704 ], [ 13.117676, 66.513260 ], [ 13.974609, 67.204032 ], [ 15.996094, 67.204032 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.370605, 56.121060 ], [ 12.678223, 55.615589 ], [ 12.084961, 54.800685 ], [ 11.030273, 55.366625 ], [ 10.898438, 55.788929 ], [ 12.370605, 56.121060 ] ] ], [ [ [ 10.568848, 57.739350 ], [ 10.524902, 57.219608 ], [ 10.239258, 56.897004 ], [ 10.349121, 56.619977 ], [ 10.898438, 56.462490 ], [ 10.656738, 56.084298 ], [ 10.349121, 56.194481 ], [ 9.645996, 55.478853 ], [ 9.909668, 54.990222 ], [ 9.272461, 54.838664 ], [ 8.525391, 54.965002 ], [ 8.107910, 55.528631 ], [ 8.085938, 56.547372 ], [ 8.239746, 56.812908 ], [ 8.525391, 57.112385 ], [ 9.404297, 57.183902 ], [ 9.755859, 57.456771 ], [ 10.568848, 57.739350 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.532715, 67.204032 ], [ 23.554688, 66.513260 ], [ 23.554688, 66.399160 ], [ 23.884277, 66.009086 ], [ 22.170410, 65.730626 ], [ 21.203613, 65.035060 ], [ 21.357422, 64.415921 ], [ 19.775391, 63.616982 ], [ 17.841797, 62.754726 ], [ 17.116699, 61.344078 ], [ 17.819824, 60.640876 ], [ 18.786621, 60.086763 ], [ 17.863770, 58.961340 ], [ 16.809082, 58.722599 ], [ 16.435547, 57.052682 ], [ 15.864258, 56.108810 ], [ 14.655762, 56.206704 ], [ 14.084473, 55.416544 ], [ 12.941895, 55.366625 ], [ 12.612305, 56.316537 ], [ 11.777344, 57.444949 ], [ 11.008301, 58.859224 ], [ 11.447754, 59.433903 ], [ 12.282715, 60.119619 ], [ 12.612305, 61.301902 ], [ 11.975098, 61.804284 ], [ 11.909180, 63.134503 ], [ 12.568359, 64.072200 ], [ 13.557129, 64.052978 ], [ 13.908691, 64.453849 ], [ 13.535156, 64.792848 ], [ 15.095215, 66.196009 ], [ 15.380859, 66.513260 ], [ 15.996094, 67.204032 ], [ 23.532715, 67.204032 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.064453, 53.514185 ], [ 6.899414, 53.488046 ], [ 7.075195, 53.146770 ], [ 6.833496, 52.241256 ], [ 6.569824, 51.862924 ], [ 5.976562, 51.862924 ], [ 6.152344, 50.805935 ], [ 5.603027, 51.041394 ], [ 4.965820, 51.481383 ], [ 4.042969, 51.275662 ], [ 3.295898, 51.358062 ], [ 3.823242, 51.631657 ], [ 4.702148, 53.094024 ], [ 6.064453, 53.514185 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.965820, 51.481383 ], [ 5.603027, 51.041394 ], [ 6.152344, 50.805935 ], [ 6.042480, 50.134664 ], [ 5.778809, 50.092393 ], [ 5.668945, 49.539469 ], [ 4.790039, 49.993615 ], [ 4.284668, 49.908787 ], [ 3.581543, 50.387508 ], [ 3.120117, 50.792047 ], [ 2.636719, 50.805935 ], [ 2.504883, 51.151786 ], [ 3.295898, 51.358062 ], [ 4.042969, 51.275662 ], [ 4.965820, 51.481383 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.042480, 50.134664 ], [ 6.240234, 49.908787 ], [ 6.174316, 49.468124 ], [ 5.888672, 49.453843 ], [ 5.668945, 49.539469 ], [ 5.778809, 50.092393 ], [ 6.042480, 50.134664 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.909668, 54.990222 ], [ 9.931641, 54.597528 ], [ 10.942383, 54.367759 ], [ 10.920410, 54.020680 ], [ 11.953125, 54.201010 ], [ 12.502441, 54.482805 ], [ 13.645020, 54.085173 ], [ 14.106445, 53.761702 ], [ 14.348145, 53.252069 ], [ 14.062500, 52.988337 ], [ 14.436035, 52.629729 ], [ 14.677734, 52.093008 ], [ 14.589844, 51.754240 ], [ 15.007324, 51.110420 ], [ 14.567871, 51.013755 ], [ 14.304199, 51.124213 ], [ 14.040527, 50.930738 ], [ 13.337402, 50.736455 ], [ 12.963867, 50.485474 ], [ 12.238770, 50.275299 ], [ 12.414551, 49.979488 ], [ 12.502441, 49.553726 ], [ 13.029785, 49.310799 ], [ 13.579102, 48.879167 ], [ 13.227539, 48.429201 ], [ 12.875977, 48.297812 ], [ 13.007812, 47.650588 ], [ 12.919922, 47.472663 ], [ 12.612305, 47.680183 ], [ 12.128906, 47.709762 ], [ 11.425781, 47.532038 ], [ 10.524902, 47.576526 ], [ 10.393066, 47.309034 ], [ 9.887695, 47.591346 ], [ 9.580078, 47.532038 ], [ 8.503418, 47.842658 ], [ 8.305664, 47.620975 ], [ 7.448730, 47.620975 ], [ 7.580566, 48.341646 ], [ 8.085938, 49.023461 ], [ 6.657715, 49.210420 ], [ 6.174316, 49.468124 ], [ 6.240234, 49.908787 ], [ 6.042480, 50.134664 ], [ 6.152344, 50.805935 ], [ 5.976562, 51.862924 ], [ 6.569824, 51.862924 ], [ 6.833496, 52.241256 ], [ 7.075195, 53.146770 ], [ 6.899414, 53.488046 ], [ 7.097168, 53.696706 ], [ 7.932129, 53.748711 ], [ 8.107910, 53.540307 ], [ 8.789062, 54.033586 ], [ 8.569336, 54.406143 ], [ 8.525391, 54.965002 ], [ 9.272461, 54.838664 ], [ 9.909668, 54.990222 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.503418, 47.842658 ], [ 9.580078, 47.532038 ], [ 9.624023, 47.353711 ], [ 9.470215, 47.115000 ], [ 9.931641, 46.935261 ], [ 10.437012, 46.905246 ], [ 10.349121, 46.498392 ], [ 9.909668, 46.316584 ], [ 9.162598, 46.452997 ], [ 8.964844, 46.042736 ], [ 8.481445, 46.012224 ], [ 8.305664, 46.164614 ], [ 7.734375, 45.828799 ], [ 7.272949, 45.782848 ], [ 6.833496, 45.996962 ], [ 6.481934, 46.437857 ], [ 6.020508, 46.286224 ], [ 6.020508, 46.739861 ], [ 6.767578, 47.294134 ], [ 6.723633, 47.546872 ], [ 7.185059, 47.457809 ], [ 7.448730, 47.620975 ], [ 8.305664, 47.620975 ], [ 8.503418, 47.842658 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.304199, 51.124213 ], [ 14.567871, 51.013755 ], [ 15.007324, 51.110420 ], [ 15.490723, 50.792047 ], [ 16.237793, 50.708634 ], [ 16.171875, 50.429518 ], [ 16.699219, 50.219095 ], [ 16.853027, 50.485474 ], [ 17.534180, 50.373496 ], [ 17.644043, 50.050085 ], [ 18.391113, 49.993615 ], [ 18.852539, 49.496675 ], [ 18.544922, 49.496675 ], [ 18.391113, 49.325122 ], [ 18.149414, 49.282140 ], [ 18.083496, 49.052270 ], [ 17.907715, 49.009051 ], [ 17.885742, 48.908059 ], [ 17.534180, 48.806863 ], [ 17.094727, 48.821333 ], [ 16.940918, 48.603858 ], [ 16.479492, 48.792390 ], [ 16.018066, 48.734455 ], [ 15.249023, 49.052270 ], [ 14.897461, 48.965794 ], [ 14.326172, 48.560250 ], [ 13.579102, 48.879167 ], [ 13.029785, 49.310799 ], [ 12.502441, 49.553726 ], [ 12.414551, 49.979488 ], [ 12.238770, 50.275299 ], [ 12.963867, 50.485474 ], [ 13.337402, 50.736455 ], [ 14.040527, 50.930738 ], [ 14.304199, 51.124213 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.622070, 54.863963 ], [ 18.610840, 54.686534 ], [ 18.676758, 54.444492 ], [ 19.643555, 54.431713 ], [ 20.874023, 54.316523 ], [ 22.719727, 54.329338 ], [ 23.225098, 54.226708 ], [ 23.466797, 53.917281 ], [ 23.510742, 53.474970 ], [ 23.796387, 53.094024 ], [ 23.796387, 52.696361 ], [ 23.181152, 52.496160 ], [ 23.488770, 52.025459 ], [ 23.510742, 51.590723 ], [ 24.016113, 50.708634 ], [ 23.906250, 50.429518 ], [ 23.422852, 50.317408 ], [ 22.500000, 49.482401 ], [ 22.763672, 49.037868 ], [ 22.543945, 49.095452 ], [ 21.599121, 49.482401 ], [ 20.874023, 49.339441 ], [ 20.412598, 49.439557 ], [ 19.819336, 49.224773 ], [ 19.313965, 49.582226 ], [ 18.896484, 49.439557 ], [ 18.391113, 49.993615 ], [ 17.644043, 50.050085 ], [ 17.534180, 50.373496 ], [ 16.853027, 50.485474 ], [ 16.699219, 50.219095 ], [ 16.171875, 50.429518 ], [ 16.237793, 50.708634 ], [ 15.490723, 50.792047 ], [ 15.007324, 51.110420 ], [ 14.589844, 51.754240 ], [ 14.677734, 52.093008 ], [ 14.436035, 52.629729 ], [ 14.062500, 52.988337 ], [ 14.348145, 53.252069 ], [ 14.106445, 53.761702 ], [ 14.787598, 54.059388 ], [ 16.347656, 54.521081 ], [ 17.622070, 54.863963 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.249023, 49.052270 ], [ 16.018066, 48.734455 ], [ 16.479492, 48.792390 ], [ 16.940918, 48.603858 ], [ 16.875000, 48.472921 ], [ 16.962891, 48.136767 ], [ 16.896973, 47.724545 ], [ 16.325684, 47.724545 ], [ 16.523438, 47.502359 ], [ 16.193848, 46.860191 ], [ 15.996094, 46.694667 ], [ 15.117188, 46.664517 ], [ 14.611816, 46.437857 ], [ 13.798828, 46.513516 ], [ 12.370605, 46.769968 ], [ 12.150879, 47.129951 ], [ 11.162109, 46.950262 ], [ 11.030273, 46.754917 ], [ 10.437012, 46.905246 ], [ 9.931641, 46.935261 ], [ 9.470215, 47.115000 ], [ 9.624023, 47.353711 ], [ 9.580078, 47.532038 ], [ 9.887695, 47.591346 ], [ 10.393066, 47.309034 ], [ 10.524902, 47.576526 ], [ 11.425781, 47.532038 ], [ 12.128906, 47.709762 ], [ 12.612305, 47.680183 ], [ 12.919922, 47.472663 ], [ 13.007812, 47.650588 ], [ 12.875977, 48.297812 ], [ 13.227539, 48.429201 ], [ 13.579102, 48.879167 ], [ 14.326172, 48.560250 ], [ 14.897461, 48.965794 ], [ 15.249023, 49.052270 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.193848, 46.860191 ], [ 16.369629, 46.845164 ], [ 16.545410, 46.513516 ], [ 15.754395, 46.240652 ], [ 15.666504, 45.844108 ], [ 15.314941, 45.736860 ], [ 15.314941, 45.460131 ], [ 14.919434, 45.475540 ], [ 14.589844, 45.644768 ], [ 14.392090, 45.475540 ], [ 13.710938, 45.506347 ], [ 13.930664, 45.598666 ], [ 13.688965, 46.027482 ], [ 13.798828, 46.513516 ], [ 14.611816, 46.437857 ], [ 15.117188, 46.664517 ], [ 15.996094, 46.694667 ], [ 16.193848, 46.860191 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.512695, 38.238180 ], [ 15.139160, 37.457418 ], [ 15.292969, 37.142803 ], [ 15.095215, 36.633162 ], [ 14.326172, 37.002553 ], [ 13.820801, 37.107765 ], [ 12.414551, 37.614231 ], [ 12.568359, 38.134557 ], [ 13.732910, 38.048091 ], [ 15.512695, 38.238180 ] ] ], [ [ [ 12.150879, 47.129951 ], [ 12.370605, 46.769968 ], [ 13.798828, 46.513516 ], [ 13.688965, 46.027482 ], [ 13.930664, 45.598666 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.370605, 44.887012 ], [ 12.260742, 44.606113 ], [ 12.568359, 44.103365 ], [ 13.513184, 43.596306 ], [ 14.018555, 42.763146 ], [ 15.139160, 41.967659 ], [ 15.908203, 41.967659 ], [ 16.149902, 41.754922 ], [ 15.886230, 41.541478 ], [ 17.512207, 40.880295 ], [ 18.369141, 40.363288 ], [ 18.479004, 40.178873 ], [ 18.281250, 39.825413 ], [ 17.731934, 40.279526 ], [ 16.853027, 40.446947 ], [ 16.435547, 39.808536 ], [ 17.160645, 39.436193 ], [ 17.050781, 38.908133 ], [ 16.633301, 38.856820 ], [ 16.083984, 37.996163 ], [ 15.666504, 37.909534 ], [ 15.666504, 38.220920 ], [ 15.886230, 38.754083 ], [ 16.105957, 38.976492 ], [ 15.402832, 40.061257 ], [ 14.985352, 40.178873 ], [ 14.699707, 40.613952 ], [ 14.040527, 40.797177 ], [ 13.623047, 41.195190 ], [ 12.875977, 41.261291 ], [ 12.084961, 41.705729 ], [ 11.184082, 42.358544 ], [ 10.502930, 42.940339 ], [ 10.195312, 43.929550 ], [ 9.689941, 44.040219 ], [ 8.876953, 44.370987 ], [ 8.415527, 44.245199 ], [ 7.844238, 43.771094 ], [ 7.426758, 43.707594 ], [ 7.536621, 44.134913 ], [ 6.987305, 44.260937 ], [ 6.745605, 45.042478 ], [ 7.075195, 45.336702 ], [ 6.789551, 45.721522 ], [ 6.833496, 45.996962 ], [ 7.272949, 45.782848 ], [ 7.734375, 45.828799 ], [ 8.305664, 46.164614 ], [ 8.481445, 46.012224 ], [ 8.964844, 46.042736 ], [ 9.162598, 46.452997 ], [ 9.909668, 46.316584 ], [ 10.349121, 46.498392 ], [ 10.437012, 46.905246 ], [ 11.030273, 46.754917 ], [ 11.162109, 46.950262 ], [ 12.150879, 47.129951 ] ] ], [ [ [ 9.206543, 41.211722 ], [ 9.799805, 40.513799 ], [ 9.667969, 39.181175 ], [ 9.206543, 39.249271 ], [ 8.789062, 38.908133 ], [ 8.415527, 39.181175 ], [ 8.371582, 40.380028 ], [ 8.151855, 40.963308 ], [ 8.701172, 40.913513 ], [ 9.206543, 41.211722 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.545410, 46.513516 ], [ 16.875000, 46.392411 ], [ 17.622070, 45.966425 ], [ 18.435059, 45.767523 ], [ 18.808594, 45.920587 ], [ 19.072266, 45.521744 ], [ 19.379883, 45.243953 ], [ 18.984375, 44.871443 ], [ 18.544922, 45.089036 ], [ 17.841797, 45.073521 ], [ 16.984863, 45.243953 ], [ 16.523438, 45.213004 ], [ 16.303711, 45.011419 ], [ 15.952148, 45.243953 ], [ 15.732422, 44.824708 ], [ 16.237793, 44.355278 ], [ 16.435547, 44.056012 ], [ 16.896973, 43.675818 ], [ 17.292480, 43.452919 ], [ 17.666016, 43.036776 ], [ 18.544922, 42.650122 ], [ 18.435059, 42.488302 ], [ 17.490234, 42.859860 ], [ 16.918945, 43.213183 ], [ 15.996094, 43.516689 ], [ 15.161133, 44.245199 ], [ 15.358887, 44.323848 ], [ 14.919434, 44.746733 ], [ 14.897461, 45.089036 ], [ 14.238281, 45.243953 ], [ 13.930664, 44.809122 ], [ 13.645020, 45.151053 ], [ 13.666992, 45.490946 ], [ 13.710938, 45.506347 ], [ 14.392090, 45.475540 ], [ 14.589844, 45.644768 ], [ 14.919434, 45.475540 ], [ 15.314941, 45.460131 ], [ 15.314941, 45.736860 ], [ 15.666504, 45.844108 ], [ 15.754395, 46.240652 ], [ 16.545410, 46.513516 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.786133, 48.632909 ], [ 21.862793, 48.327039 ], [ 22.082520, 48.429201 ], [ 22.631836, 48.151428 ], [ 22.697754, 47.886881 ], [ 22.082520, 47.680183 ], [ 21.621094, 46.995241 ], [ 21.005859, 46.316584 ], [ 20.214844, 46.134170 ], [ 19.577637, 46.179830 ], [ 18.435059, 45.767523 ], [ 17.622070, 45.966425 ], [ 16.875000, 46.392411 ], [ 16.545410, 46.513516 ], [ 16.369629, 46.845164 ], [ 16.193848, 46.860191 ], [ 16.523438, 47.502359 ], [ 16.325684, 47.724545 ], [ 16.896973, 47.724545 ], [ 16.962891, 48.136767 ], [ 17.468262, 47.872144 ], [ 17.841797, 47.768868 ], [ 18.676758, 47.886881 ], [ 18.764648, 48.092757 ], [ 19.160156, 48.122101 ], [ 19.643555, 48.268569 ], [ 19.753418, 48.210032 ], [ 20.236816, 48.341646 ], [ 20.456543, 48.574790 ], [ 20.786133, 48.632909 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.313965, 49.582226 ], [ 19.819336, 49.224773 ], [ 20.412598, 49.439557 ], [ 20.874023, 49.339441 ], [ 21.599121, 49.482401 ], [ 22.543945, 49.095452 ], [ 22.280273, 48.835797 ], [ 22.082520, 48.429201 ], [ 21.862793, 48.327039 ], [ 20.786133, 48.632909 ], [ 20.456543, 48.574790 ], [ 20.236816, 48.341646 ], [ 19.753418, 48.210032 ], [ 19.643555, 48.268569 ], [ 19.160156, 48.122101 ], [ 18.764648, 48.092757 ], [ 18.676758, 47.886881 ], [ 17.841797, 47.768868 ], [ 17.468262, 47.872144 ], [ 16.962891, 48.136767 ], [ 16.875000, 48.472921 ], [ 17.094727, 48.821333 ], [ 17.534180, 48.806863 ], [ 17.885742, 48.908059 ], [ 17.907715, 49.009051 ], [ 18.083496, 49.052270 ], [ 18.149414, 49.282140 ], [ 18.391113, 49.325122 ], [ 18.544922, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.896484, 49.439557 ], [ 19.313965, 49.582226 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.984863, 45.243953 ], [ 17.841797, 45.073521 ], [ 18.544922, 45.089036 ], [ 18.984375, 44.871443 ], [ 19.357910, 44.871443 ], [ 19.116211, 44.433780 ], [ 19.599609, 44.040219 ], [ 19.445801, 43.580391 ], [ 19.204102, 43.532620 ], [ 19.028320, 43.436966 ], [ 18.698730, 43.213183 ], [ 18.544922, 42.650122 ], [ 17.666016, 43.036776 ], [ 17.292480, 43.452919 ], [ 16.896973, 43.675818 ], [ 16.435547, 44.056012 ], [ 16.237793, 44.355278 ], [ 15.732422, 44.824708 ], [ 15.952148, 45.243953 ], [ 16.303711, 45.011419 ], [ 16.523438, 45.213004 ], [ 16.984863, 45.243953 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.204102, 43.532620 ], [ 19.467773, 43.357138 ], [ 19.621582, 43.229195 ], [ 19.951172, 43.117024 ], [ 20.324707, 42.908160 ], [ 20.061035, 42.601620 ], [ 19.797363, 42.504503 ], [ 19.731445, 42.698586 ], [ 19.291992, 42.195969 ], [ 19.357910, 41.885921 ], [ 19.160156, 41.967659 ], [ 18.874512, 42.293564 ], [ 18.435059, 42.488302 ], [ 18.544922, 42.650122 ], [ 18.698730, 43.213183 ], [ 19.028320, 43.436966 ], [ 19.204102, 43.532620 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.577637, 46.179830 ], [ 20.214844, 46.134170 ], [ 20.742188, 45.736860 ], [ 20.874023, 45.429299 ], [ 21.467285, 45.182037 ], [ 21.555176, 44.777936 ], [ 22.126465, 44.480830 ], [ 22.456055, 44.715514 ], [ 22.697754, 44.590467 ], [ 22.456055, 44.418088 ], [ 22.653809, 44.245199 ], [ 22.390137, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.213183 ], [ 22.587891, 42.908160 ], [ 22.434082, 42.585444 ], [ 22.543945, 42.472097 ], [ 22.368164, 42.326062 ], [ 21.906738, 42.309815 ], [ 21.555176, 42.261049 ], [ 21.533203, 42.326062 ], [ 21.643066, 42.439674 ], [ 21.774902, 42.698586 ], [ 21.621094, 42.682435 ], [ 21.423340, 42.875964 ], [ 21.269531, 42.924252 ], [ 21.137695, 43.068888 ], [ 20.939941, 43.133061 ], [ 20.808105, 43.277205 ], [ 20.632324, 43.229195 ], [ 20.478516, 42.892064 ], [ 20.236816, 42.827639 ], [ 20.324707, 42.908160 ], [ 19.951172, 43.117024 ], [ 19.621582, 43.229195 ], [ 19.467773, 43.357138 ], [ 19.204102, 43.532620 ], [ 19.445801, 43.580391 ], [ 19.599609, 44.040219 ], [ 19.116211, 44.433780 ], [ 19.357910, 44.871443 ], [ 18.984375, 44.871443 ], [ 19.379883, 45.243953 ], [ 19.072266, 45.521744 ], [ 18.808594, 45.920587 ], [ 19.577637, 46.179830 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.808105, 43.277205 ], [ 20.939941, 43.133061 ], [ 21.137695, 43.068888 ], [ 21.269531, 42.924252 ], [ 21.423340, 42.875964 ], [ 21.621094, 42.682435 ], [ 21.774902, 42.698586 ], [ 21.643066, 42.439674 ], [ 21.533203, 42.326062 ], [ 21.555176, 42.261049 ], [ 20.742188, 42.065607 ], [ 20.698242, 41.853196 ], [ 20.588379, 41.869561 ], [ 20.522461, 42.228517 ], [ 20.280762, 42.326062 ], [ 20.061035, 42.601620 ], [ 20.236816, 42.827639 ], [ 20.478516, 42.892064 ], [ 20.632324, 43.229195 ], [ 20.808105, 43.277205 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.731445, 42.698586 ], [ 19.797363, 42.504503 ], [ 20.061035, 42.601620 ], [ 20.280762, 42.326062 ], [ 20.522461, 42.228517 ], [ 20.588379, 41.869561 ], [ 20.456543, 41.525030 ], [ 20.588379, 41.095912 ], [ 21.005859, 40.847060 ], [ 20.983887, 40.580585 ], [ 20.654297, 40.446947 ], [ 20.610352, 40.111689 ], [ 20.148926, 39.639538 ], [ 19.973145, 39.707187 ], [ 19.951172, 39.926588 ], [ 19.401855, 40.262761 ], [ 19.313965, 40.730608 ], [ 19.401855, 41.409776 ], [ 19.533691, 41.722131 ], [ 19.357910, 41.885921 ], [ 19.291992, 42.195969 ], [ 19.731445, 42.698586 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.368164, 42.326062 ], [ 22.873535, 42.000325 ], [ 22.939453, 41.343825 ], [ 22.741699, 41.310824 ], [ 22.587891, 41.145570 ], [ 22.038574, 41.162114 ], [ 21.665039, 40.946714 ], [ 21.005859, 40.847060 ], [ 20.588379, 41.095912 ], [ 20.456543, 41.525030 ], [ 20.588379, 41.869561 ], [ 20.698242, 41.853196 ], [ 20.742188, 42.065607 ], [ 21.335449, 42.212245 ], [ 21.906738, 42.309815 ], [ 22.368164, 42.326062 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.355469, 67.204032 ], [ 29.047852, 66.947274 ], [ 29.487305, 66.513260 ], [ 30.212402, 65.811781 ], [ 29.531250, 64.951465 ], [ 30.432129, 64.206377 ], [ 30.014648, 63.558338 ], [ 31.508789, 62.875188 ], [ 31.135254, 62.359805 ], [ 30.190430, 61.783513 ], [ 28.059082, 60.511343 ], [ 26.235352, 60.424699 ], [ 24.477539, 60.064840 ], [ 22.851562, 59.855851 ], [ 22.280273, 60.392148 ], [ 21.313477, 60.726944 ], [ 21.533203, 61.710706 ], [ 21.049805, 62.613562 ], [ 21.533203, 63.194018 ], [ 22.434082, 63.821288 ], [ 24.719238, 64.904910 ], [ 25.378418, 65.118395 ], [ 25.290527, 65.540270 ], [ 23.884277, 66.009086 ], [ 23.554688, 66.399160 ], [ 23.554688, 66.513260 ], [ 23.532715, 67.204032 ], [ 29.355469, 67.204032 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.158691, 57.973157 ], [ 25.598145, 57.856443 ], [ 26.455078, 57.480403 ], [ 27.268066, 57.480403 ], [ 27.751465, 57.255281 ], [ 27.839355, 56.764768 ], [ 28.168945, 56.170023 ], [ 27.092285, 55.788929 ], [ 26.477051, 55.615589 ], [ 25.532227, 56.108810 ], [ 24.982910, 56.170023 ], [ 24.851074, 56.377419 ], [ 23.862305, 56.279961 ], [ 22.192383, 56.340901 ], [ 21.049805, 56.035226 ], [ 21.071777, 56.788845 ], [ 21.577148, 57.421294 ], [ 22.521973, 57.762799 ], [ 23.312988, 57.016814 ], [ 24.104004, 57.028774 ], [ 24.301758, 57.797944 ], [ 25.158691, 57.973157 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.861816, 59.612212 ], [ 26.938477, 59.456243 ], [ 27.971191, 59.478569 ], [ 28.125000, 59.310768 ], [ 27.399902, 58.734005 ], [ 27.707520, 57.797944 ], [ 27.268066, 57.480403 ], [ 26.455078, 57.480403 ], [ 25.598145, 57.856443 ], [ 25.158691, 57.973157 ], [ 24.301758, 57.797944 ], [ 24.411621, 58.390197 ], [ 24.060059, 58.263287 ], [ 23.422852, 58.619777 ], [ 23.334961, 59.198439 ], [ 24.587402, 59.467408 ], [ 25.861816, 59.612212 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.851074, 56.377419 ], [ 24.982910, 56.170023 ], [ 25.532227, 56.108810 ], [ 26.477051, 55.615589 ], [ 26.586914, 55.178868 ], [ 25.751953, 54.851315 ], [ 25.532227, 54.290882 ], [ 24.433594, 53.917281 ], [ 23.466797, 53.917281 ], [ 23.225098, 54.226708 ], [ 22.719727, 54.329338 ], [ 22.631836, 54.584797 ], [ 22.741699, 54.863963 ], [ 22.302246, 55.015426 ], [ 21.247559, 55.191412 ], [ 21.049805, 56.035226 ], [ 22.192383, 56.340901 ], [ 23.862305, 56.279961 ], [ 24.851074, 56.377419 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.168945, 56.170023 ], [ 29.223633, 55.924586 ], [ 29.355469, 55.677584 ], [ 29.882812, 55.801281 ], [ 30.871582, 55.553495 ], [ 30.959473, 55.090944 ], [ 30.739746, 54.813348 ], [ 31.376953, 54.162434 ], [ 31.772461, 53.981935 ], [ 31.728516, 53.800651 ], [ 32.387695, 53.618579 ], [ 32.673340, 53.357109 ], [ 32.299805, 53.133590 ], [ 31.486816, 53.173119 ], [ 31.289062, 53.080827 ], [ 31.530762, 52.749594 ], [ 31.772461, 52.106505 ], [ 30.915527, 52.052490 ], [ 30.607910, 51.835778 ], [ 30.541992, 51.330612 ], [ 30.146484, 51.426614 ], [ 29.245605, 51.371780 ], [ 28.981934, 51.604372 ], [ 28.608398, 51.440313 ], [ 28.234863, 51.577070 ], [ 27.443848, 51.604372 ], [ 26.323242, 51.835778 ], [ 25.312500, 51.917168 ], [ 24.543457, 51.890054 ], [ 23.994141, 51.618017 ], [ 23.510742, 51.590723 ], [ 23.488770, 52.025459 ], [ 23.181152, 52.496160 ], [ 23.796387, 52.696361 ], [ 23.796387, 53.094024 ], [ 23.510742, 53.474970 ], [ 23.466797, 53.917281 ], [ 24.433594, 53.917281 ], [ 25.532227, 54.290882 ], [ 25.751953, 54.851315 ], [ 26.586914, 55.178868 ], [ 26.477051, 55.615589 ], [ 27.092285, 55.788929 ], [ 28.168945, 56.170023 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.608887, 48.224673 ], [ 26.916504, 48.136767 ], [ 27.224121, 47.827908 ], [ 27.531738, 47.413220 ], [ 28.125000, 46.815099 ], [ 28.146973, 46.377254 ], [ 28.037109, 45.951150 ], [ 28.212891, 45.490946 ], [ 28.674316, 45.305803 ], [ 29.135742, 45.475540 ], [ 29.597168, 45.305803 ], [ 29.619141, 45.042478 ], [ 29.135742, 44.824708 ], [ 28.828125, 44.918139 ], [ 28.542480, 43.707594 ], [ 27.949219, 43.818675 ], [ 27.224121, 44.182204 ], [ 26.059570, 43.945372 ], [ 25.554199, 43.691708 ], [ 24.082031, 43.755225 ], [ 23.312988, 43.897892 ], [ 22.939453, 43.834527 ], [ 22.653809, 44.245199 ], [ 22.456055, 44.418088 ], [ 22.697754, 44.590467 ], [ 22.456055, 44.715514 ], [ 22.126465, 44.480830 ], [ 21.555176, 44.777936 ], [ 21.467285, 45.182037 ], [ 20.874023, 45.429299 ], [ 20.742188, 45.736860 ], [ 20.214844, 46.134170 ], [ 21.005859, 46.316584 ], [ 21.621094, 46.995241 ], [ 22.082520, 47.680183 ], [ 22.697754, 47.886881 ], [ 23.137207, 48.107431 ], [ 23.752441, 47.989922 ], [ 24.389648, 47.989922 ], [ 24.851074, 47.739323 ], [ 25.202637, 47.901614 ], [ 25.927734, 47.989922 ], [ 26.191406, 48.224673 ], [ 26.608887, 48.224673 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.653809, 44.245199 ], [ 22.939453, 43.834527 ], [ 23.312988, 43.897892 ], [ 24.082031, 43.755225 ], [ 25.554199, 43.691708 ], [ 26.059570, 43.945372 ], [ 27.224121, 44.182204 ], [ 27.949219, 43.818675 ], [ 28.542480, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.663574, 42.585444 ], [ 27.993164, 42.016652 ], [ 27.114258, 42.147114 ], [ 26.103516, 41.836828 ], [ 26.103516, 41.343825 ], [ 25.180664, 41.244772 ], [ 24.477539, 41.590797 ], [ 23.686523, 41.310824 ], [ 22.939453, 41.343825 ], [ 22.873535, 42.000325 ], [ 22.368164, 42.326062 ], [ 22.543945, 42.472097 ], [ 22.434082, 42.585444 ], [ 22.587891, 42.908160 ], [ 22.983398, 43.213183 ], [ 22.500000, 43.644026 ], [ 22.390137, 44.008620 ], [ 22.653809, 44.245199 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.509766, 48.472921 ], [ 28.256836, 48.166085 ], [ 28.652344, 48.122101 ], [ 29.113770, 47.857403 ], [ 29.047852, 47.517201 ], [ 29.399414, 47.353711 ], [ 29.553223, 46.935261 ], [ 29.904785, 46.679594 ], [ 29.816895, 46.528635 ], [ 30.014648, 46.437857 ], [ 29.750977, 46.362093 ], [ 29.157715, 46.392411 ], [ 29.069824, 46.528635 ], [ 28.850098, 46.452997 ], [ 28.916016, 46.271037 ], [ 28.652344, 45.951150 ], [ 28.476562, 45.598666 ], [ 28.212891, 45.490946 ], [ 28.037109, 45.951150 ], [ 28.146973, 46.377254 ], [ 28.125000, 46.815099 ], [ 27.531738, 47.413220 ], [ 27.224121, 47.827908 ], [ 26.916504, 48.136767 ], [ 26.608887, 48.224673 ], [ 26.850586, 48.370848 ], [ 27.509766, 48.472921 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.335339 ], [ 34.387207, 51.781436 ], [ 34.123535, 51.577070 ], [ 34.211426, 51.261915 ], [ 35.002441, 51.220647 ], [ 35.375977, 50.778155 ], [ 35.354004, 50.583237 ], [ 36.606445, 50.233152 ], [ 37.375488, 50.387508 ], [ 37.990723, 49.922935 ], [ 38.583984, 49.937080 ], [ 40.056152, 49.610710 ], [ 40.078125, 49.310799 ], [ 39.660645, 48.792390 ], [ 39.880371, 48.239309 ], [ 39.726562, 47.901614 ], [ 38.759766, 47.827908 ], [ 38.254395, 47.546872 ], [ 38.210449, 47.115000 ], [ 37.419434, 47.025206 ], [ 36.738281, 46.709736 ], [ 35.815430, 46.649436 ], [ 34.958496, 46.286224 ], [ 35.002441, 45.660127 ], [ 35.507812, 45.413876 ], [ 36.518555, 45.475540 ], [ 36.320801, 45.120053 ], [ 35.222168, 44.949249 ], [ 33.881836, 44.370987 ], [ 33.310547, 44.574817 ], [ 33.530273, 45.042478 ], [ 32.453613, 45.336702 ], [ 32.629395, 45.521744 ], [ 33.574219, 45.859412 ], [ 33.288574, 46.088472 ], [ 31.728516, 46.346928 ], [ 31.662598, 46.709736 ], [ 30.739746, 46.589069 ], [ 30.366211, 46.042736 ], [ 29.597168, 45.305803 ], [ 29.135742, 45.475540 ], [ 28.674316, 45.305803 ], [ 28.212891, 45.490946 ], [ 28.476562, 45.598666 ], [ 28.652344, 45.951150 ], [ 28.916016, 46.271037 ], [ 28.850098, 46.452997 ], [ 29.069824, 46.528635 ], [ 29.157715, 46.392411 ], [ 29.750977, 46.362093 ], [ 30.014648, 46.437857 ], [ 29.816895, 46.528635 ], [ 29.904785, 46.679594 ], [ 29.553223, 46.935261 ], [ 29.399414, 47.353711 ], [ 29.047852, 47.517201 ], [ 29.113770, 47.857403 ], [ 28.652344, 48.122101 ], [ 28.256836, 48.166085 ], [ 27.509766, 48.472921 ], [ 26.850586, 48.370848 ], [ 26.608887, 48.224673 ], [ 26.191406, 48.224673 ], [ 25.927734, 47.989922 ], [ 25.202637, 47.901614 ], [ 24.851074, 47.739323 ], [ 24.389648, 47.989922 ], [ 23.752441, 47.989922 ], [ 23.137207, 48.107431 ], [ 22.697754, 47.886881 ], [ 22.631836, 48.151428 ], [ 22.082520, 48.429201 ], [ 22.280273, 48.835797 ], [ 22.543945, 49.095452 ], [ 22.763672, 49.037868 ], [ 22.500000, 49.482401 ], [ 23.422852, 50.317408 ], [ 23.906250, 50.429518 ], [ 24.016113, 50.708634 ], [ 23.510742, 51.590723 ], [ 23.994141, 51.618017 ], [ 24.543457, 51.890054 ], [ 25.312500, 51.917168 ], [ 26.323242, 51.835778 ], [ 27.443848, 51.604372 ], [ 28.234863, 51.577070 ], [ 28.608398, 51.440313 ], [ 28.981934, 51.604372 ], [ 29.245605, 51.371780 ], [ 30.146484, 51.426614 ], [ 30.541992, 51.330612 ], [ 30.607910, 51.835778 ], [ 30.915527, 52.052490 ], [ 31.772461, 52.106505 ], [ 32.145996, 52.066000 ], [ 32.409668, 52.295042 ], [ 32.695312, 52.241256 ], [ 33.750000, 52.335339 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.056152, 43.564472 ], [ 40.913086, 43.389082 ], [ 42.385254, 43.229195 ], [ 43.747559, 42.747012 ], [ 43.923340, 42.569264 ], [ 44.516602, 42.714732 ], [ 45.461426, 42.504503 ], [ 45.769043, 42.098222 ], [ 46.384277, 41.869561 ], [ 46.142578, 41.738528 ], [ 46.625977, 41.195190 ], [ 46.494141, 41.079351 ], [ 45.944824, 41.129021 ], [ 45.197754, 41.426253 ], [ 44.956055, 41.261291 ], [ 43.571777, 41.095912 ], [ 42.604980, 41.590797 ], [ 41.550293, 41.541478 ], [ 41.682129, 41.967659 ], [ 41.440430, 42.650122 ], [ 40.869141, 43.020714 ], [ 40.319824, 43.133061 ], [ 39.946289, 43.436966 ], [ 40.056152, 43.564472 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.492188, 37.352693 ], [ 10.195312, 37.230328 ], [ 10.173340, 36.738884 ], [ 11.008301, 37.107765 ], [ 11.096191, 36.914764 ], [ 10.590820, 36.421282 ], [ 10.590820, 35.960223 ], [ 10.920410, 35.710838 ], [ 10.788574, 34.849875 ], [ 10.129395, 34.343436 ], [ 10.327148, 33.797409 ], [ 10.854492, 33.779147 ], [ 11.096191, 33.302986 ], [ 11.469727, 33.137551 ], [ 11.425781, 32.379961 ], [ 10.942383, 32.082575 ], [ 10.634766, 31.765537 ], [ 9.931641, 31.391158 ], [ 10.041504, 30.977609 ], [ 9.953613, 30.543339 ], [ 9.470215, 30.315988 ], [ 9.052734, 32.119801 ], [ 8.437500, 32.509762 ], [ 8.415527, 32.750323 ], [ 7.602539, 33.358062 ], [ 7.514648, 34.107256 ], [ 8.129883, 34.669359 ], [ 8.371582, 35.496456 ], [ 8.217773, 36.438961 ], [ 8.415527, 36.949892 ], [ 9.492188, 37.352693 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.316895, 37.125286 ], [ 7.734375, 36.897194 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.438961 ], [ 8.371582, 35.496456 ], [ 8.129883, 34.669359 ], [ 7.514648, 34.107256 ], [ 7.602539, 33.358062 ], [ 8.415527, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.119801 ], [ 9.470215, 30.315988 ], [ 9.799805, 29.439598 ], [ 9.843750, 28.960089 ], [ 9.667969, 28.149503 ], [ 9.755859, 27.702984 ], [ 9.624023, 27.156920 ], [ 9.711914, 26.529565 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.383735 ], [ 9.931641, 24.946219 ], [ 10.283203, 24.387127 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.106647 ], [ 11.997070, 23.483401 ], [ 8.569336, 21.575719 ], [ 5.668945, 19.621892 ], [ 4.262695, 19.165924 ], [ 3.142090, 19.062118 ], [ 3.142090, 19.704658 ], [ 2.680664, 19.870060 ], [ 2.043457, 20.159098 ], [ 1.801758, 20.612220 ], [ 0.000000, 21.800308 ], [ -1.757812, 22.938160 ], [ -1.757812, 32.212801 ], [ -1.318359, 32.268555 ], [ -1.142578, 32.657876 ], [ -1.406250, 32.879587 ], [ -1.735840, 33.925130 ], [ -1.757812, 35.406961 ], [ -1.230469, 35.728677 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.483398, 36.315125 ], [ 1.450195, 36.615528 ], [ 3.142090, 36.791691 ], [ 4.812012, 36.879621 ], [ 5.317383, 36.721274 ], [ 6.240234, 37.125286 ], [ 7.316895, 37.125286 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 33.137551 ], [ 12.656250, 32.805745 ], [ 13.073730, 32.879587 ], [ 13.908691, 32.713355 ], [ 15.227051, 32.268555 ], [ 15.710449, 31.391158 ], [ 16.611328, 31.184609 ], [ 18.017578, 30.770159 ], [ 19.072266, 30.278044 ], [ 19.555664, 30.543339 ], [ 20.039062, 30.996446 ], [ 19.819336, 31.765537 ], [ 20.126953, 32.249974 ], [ 20.852051, 32.713355 ], [ 21.533203, 32.861132 ], [ 22.895508, 32.639375 ], [ 23.225098, 32.194209 ], [ 23.598633, 32.194209 ], [ 23.906250, 32.026706 ], [ 24.916992, 31.914868 ], [ 25.158691, 31.578535 ], [ 24.785156, 31.090574 ], [ 24.938965, 30.675715 ], [ 24.697266, 30.050077 ], [ 24.982910, 29.248063 ], [ 24.982910, 20.014645 ], [ 23.840332, 20.014645 ], [ 23.818359, 19.580493 ], [ 15.842285, 23.422928 ], [ 14.831543, 22.877440 ], [ 14.128418, 22.492257 ], [ 13.579102, 23.059516 ], [ 11.997070, 23.483401 ], [ 11.557617, 24.106647 ], [ 10.766602, 24.567108 ], [ 10.283203, 24.387127 ], [ 9.931641, 24.946219 ], [ 9.909668, 25.383735 ], [ 9.316406, 26.096255 ], [ 9.711914, 26.529565 ], [ 9.624023, 27.156920 ], [ 9.755859, 27.702984 ], [ 9.667969, 28.149503 ], [ 9.843750, 28.960089 ], [ 9.799805, 29.439598 ], [ 9.470215, 30.315988 ], [ 9.953613, 30.543339 ], [ 10.041504, 30.977609 ], [ 9.931641, 31.391158 ], [ 10.634766, 31.765537 ], [ 10.942383, 32.082575 ], [ 11.425781, 32.379961 ], [ 11.469727, 33.137551 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.997070, 23.483401 ], [ 13.579102, 23.059516 ], [ 14.128418, 22.492257 ], [ 14.831543, 22.877440 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.063997 ], [ 15.468750, 20.735566 ], [ 15.886230, 20.406420 ], [ 15.666504, 19.973349 ], [ 15.292969, 17.936929 ], [ 15.227051, 16.636192 ], [ 13.952637, 15.686510 ], [ 13.535156, 14.370834 ], [ 13.952637, 14.008696 ], [ 13.952637, 13.368243 ], [ 14.589844, 13.346865 ], [ 14.479980, 12.876070 ], [ 14.194336, 12.811801 ], [ 14.172363, 12.490214 ], [ 13.974609, 12.468760 ], [ 13.315430, 13.560562 ], [ 13.073730, 13.603278 ], [ 12.282715, 13.047372 ], [ 11.513672, 13.346865 ], [ 10.986328, 13.389620 ], [ 10.700684, 13.261333 ], [ 10.107422, 13.282719 ], [ 9.514160, 12.854649 ], [ 9.008789, 12.833226 ], [ 7.800293, 13.346865 ], [ 7.316895, 13.111580 ], [ 6.811523, 13.132979 ], [ 6.437988, 13.496473 ], [ 5.427246, 13.880746 ], [ 4.350586, 13.752725 ], [ 4.086914, 13.539201 ], [ 3.955078, 12.961736 ], [ 3.669434, 12.554564 ], [ 3.603516, 11.673755 ], [ 2.834473, 12.254128 ], [ 2.482910, 12.254128 ], [ 2.153320, 11.953349 ], [ 2.175293, 12.640338 ], [ 1.010742, 12.854649 ], [ 0.988770, 13.346865 ], [ 0.417480, 14.008696 ], [ 0.285645, 14.455958 ], [ 0.373535, 14.944785 ], [ 1.010742, 14.987240 ], [ 1.384277, 15.326572 ], [ 2.746582, 15.411319 ], [ 3.625488, 15.580711 ], [ 3.713379, 16.193575 ], [ 4.262695, 16.867634 ], [ 4.262695, 19.165924 ], [ 5.668945, 19.621892 ], [ 8.569336, 21.575719 ], [ 11.997070, 23.483401 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.027472 ], [ 0.878906, 11.005904 ], [ 0.769043, 10.487812 ], [ 1.406250, 9.838979 ], [ 1.450195, 9.340672 ], [ 1.647949, 9.145486 ], [ 1.604004, 6.839170 ], [ 1.845703, 6.162401 ], [ 1.054688, 5.943900 ], [ 0.834961, 6.293459 ], [ 0.549316, 6.926427 ], [ 0.483398, 7.427837 ], [ 0.703125, 8.320212 ], [ 0.439453, 8.689639 ], [ 0.351562, 9.470736 ], [ 0.351562, 10.206813 ], [ 0.000000, 10.660608 ], [ -0.065918, 10.725381 ], [ 0.000000, 10.919618 ], [ 0.021973, 11.027472 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.834473, 12.254128 ], [ 3.603516, 11.673755 ], [ 3.559570, 11.329253 ], [ 3.779297, 10.746969 ], [ 3.581543, 10.336536 ], [ 3.691406, 10.077037 ], [ 3.208008, 9.449062 ], [ 2.900391, 9.145486 ], [ 2.702637, 8.515836 ], [ 2.746582, 7.885147 ], [ 2.680664, 6.271618 ], [ 1.845703, 6.162401 ], [ 1.604004, 6.839170 ], [ 1.647949, 9.145486 ], [ 1.450195, 9.340672 ], [ 1.406250, 9.838979 ], [ 0.769043, 10.487812 ], [ 0.878906, 11.005904 ], [ 1.230469, 11.113727 ], [ 1.428223, 11.566144 ], [ 1.933594, 11.652236 ], [ 2.153320, 11.953349 ], [ 2.482910, 12.254128 ], [ 2.834473, 12.254128 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.427246, 13.880746 ], [ 6.437988, 13.496473 ], [ 6.811523, 13.132979 ], [ 7.316895, 13.111580 ], [ 7.800293, 13.346865 ], [ 9.008789, 12.833226 ], [ 9.514160, 12.854649 ], [ 10.107422, 13.282719 ], [ 10.700684, 13.261333 ], [ 10.986328, 13.389620 ], [ 11.513672, 13.346865 ], [ 12.282715, 13.047372 ], [ 13.073730, 13.603278 ], [ 13.315430, 13.560562 ], [ 13.974609, 12.468760 ], [ 14.172363, 12.490214 ], [ 14.567871, 12.103781 ], [ 14.458008, 11.910354 ], [ 14.414062, 11.587669 ], [ 13.557129, 10.811724 ], [ 13.293457, 10.163560 ], [ 13.161621, 9.644077 ], [ 12.941895, 9.427387 ], [ 12.744141, 8.733077 ], [ 12.216797, 8.320212 ], [ 12.062988, 7.819847 ], [ 11.821289, 7.406048 ], [ 11.733398, 6.991859 ], [ 11.052246, 6.664608 ], [ 10.480957, 7.057282 ], [ 10.107422, 7.057282 ], [ 9.514160, 6.468151 ], [ 9.228516, 6.446318 ], [ 8.745117, 5.484768 ], [ 8.481445, 4.784469 ], [ 7.448730, 4.412137 ], [ 7.075195, 4.477856 ], [ 6.679688, 4.258768 ], [ 5.888672, 4.280680 ], [ 5.361328, 4.893941 ], [ 5.031738, 5.615986 ], [ 4.306641, 6.271618 ], [ 2.680664, 6.271618 ], [ 2.746582, 7.885147 ], [ 2.702637, 8.515836 ], [ 2.900391, 9.145486 ], [ 3.208008, 9.449062 ], [ 3.691406, 10.077037 ], [ 3.581543, 10.336536 ], [ 3.779297, 10.746969 ], [ 3.559570, 11.329253 ], [ 3.669434, 12.554564 ], [ 3.955078, 12.961736 ], [ 4.086914, 13.539201 ], [ 4.350586, 13.752725 ], [ 5.427246, 13.880746 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.645996, 2.284551 ], [ 11.271973, 2.262595 ], [ 11.271973, 1.076597 ], [ 9.821777, 1.076597 ], [ 9.492188, 1.010690 ], [ 9.294434, 1.164471 ], [ 9.645996, 2.284551 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.842285, 23.422928 ], [ 23.818359, 19.580493 ], [ 23.884277, 15.623037 ], [ 23.005371, 15.686510 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.093957 ], [ 22.170410, 13.795406 ], [ 22.280273, 13.389620 ], [ 22.016602, 12.961736 ], [ 21.928711, 12.597455 ], [ 22.280273, 12.661778 ], [ 22.478027, 12.275599 ], [ 22.500000, 11.695273 ], [ 22.873535, 11.393879 ], [ 22.851562, 11.156845 ], [ 22.214355, 10.984335 ], [ 21.708984, 10.574222 ], [ 20.983887, 9.492408 ], [ 20.039062, 9.015302 ], [ 19.072266, 9.080400 ], [ 18.808594, 8.993600 ], [ 18.896484, 8.646196 ], [ 18.369141, 8.298470 ], [ 17.951660, 7.906912 ], [ 16.699219, 7.514981 ], [ 16.435547, 7.754537 ], [ 16.281738, 7.754537 ], [ 16.105957, 7.514981 ], [ 15.270996, 7.427837 ], [ 15.424805, 7.710992 ], [ 15.117188, 8.385431 ], [ 14.963379, 8.798225 ], [ 14.523926, 8.971897 ], [ 13.952637, 9.557417 ], [ 14.150391, 10.033767 ], [ 14.611816, 9.925566 ], [ 14.897461, 10.012130 ], [ 15.446777, 9.990491 ], [ 14.919434, 10.898042 ], [ 14.941406, 11.566144 ], [ 14.875488, 12.232655 ], [ 14.479980, 12.876070 ], [ 14.589844, 13.346865 ], [ 13.952637, 13.368243 ], [ 13.952637, 14.008696 ], [ 13.535156, 14.370834 ], [ 13.952637, 15.686510 ], [ 15.227051, 16.636192 ], [ 15.292969, 17.936929 ], [ 15.666504, 19.973349 ], [ 15.886230, 20.406420 ], [ 15.468750, 20.735566 ], [ 15.468750, 21.063997 ], [ 15.095215, 21.309846 ], [ 14.831543, 22.877440 ], [ 15.842285, 23.422928 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.479980, 12.876070 ], [ 14.875488, 12.232655 ], [ 14.941406, 11.566144 ], [ 14.919434, 10.898042 ], [ 15.446777, 9.990491 ], [ 14.897461, 10.012130 ], [ 14.611816, 9.925566 ], [ 14.150391, 10.033767 ], [ 13.952637, 9.557417 ], [ 14.523926, 8.971897 ], [ 14.963379, 8.798225 ], [ 15.117188, 8.385431 ], [ 15.424805, 7.710992 ], [ 14.765625, 6.424484 ], [ 14.523926, 6.227934 ], [ 14.458008, 5.462896 ], [ 14.545898, 5.047171 ], [ 14.458008, 4.740675 ], [ 14.941406, 4.214943 ], [ 15.029297, 3.864255 ], [ 15.402832, 3.337954 ], [ 15.842285, 3.030812 ], [ 15.886230, 2.569939 ], [ 15.996094, 2.284551 ], [ 15.930176, 1.735574 ], [ 14.326172, 2.240640 ], [ 13.073730, 2.284551 ], [ 12.941895, 2.328460 ], [ 12.348633, 2.196727 ], [ 11.733398, 2.328460 ], [ 11.271973, 2.262595 ], [ 9.645996, 2.284551 ], [ 9.777832, 3.074695 ], [ 9.404297, 3.754634 ], [ 8.942871, 3.908099 ], [ 8.723145, 4.368320 ], [ 8.481445, 4.499762 ], [ 8.481445, 4.784469 ], [ 8.745117, 5.484768 ], [ 9.228516, 6.446318 ], [ 9.514160, 6.468151 ], [ 10.107422, 7.057282 ], [ 10.480957, 7.057282 ], [ 11.052246, 6.664608 ], [ 11.733398, 6.991859 ], [ 11.821289, 7.406048 ], [ 12.062988, 7.819847 ], [ 12.216797, 8.320212 ], [ 12.744141, 8.733077 ], [ 12.941895, 9.427387 ], [ 13.161621, 9.644077 ], [ 13.293457, 10.163560 ], [ 13.557129, 10.811724 ], [ 14.414062, 11.587669 ], [ 14.458008, 11.910354 ], [ 14.567871, 12.103781 ], [ 14.172363, 12.490214 ], [ 14.194336, 12.811801 ], [ 14.479980, 12.876070 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.851562, 11.156845 ], [ 22.961426, 10.725381 ], [ 23.532715, 10.098670 ], [ 23.554688, 9.687398 ], [ 23.378906, 9.275622 ], [ 23.444824, 8.971897 ], [ 23.796387, 8.667918 ], [ 24.565430, 8.233237 ], [ 25.114746, 7.841615 ], [ 25.114746, 7.514981 ], [ 25.795898, 6.991859 ], [ 26.213379, 6.555475 ], [ 26.455078, 5.965754 ], [ 27.202148, 5.572250 ], [ 27.355957, 5.244128 ], [ 27.026367, 5.134715 ], [ 26.389160, 5.156599 ], [ 25.642090, 5.266008 ], [ 25.268555, 5.178482 ], [ 25.114746, 4.937724 ], [ 24.785156, 4.915833 ], [ 24.389648, 5.112830 ], [ 23.291016, 4.631179 ], [ 22.829590, 4.718778 ], [ 22.697754, 4.653080 ], [ 22.390137, 4.039618 ], [ 21.643066, 4.236856 ], [ 20.917969, 4.324501 ], [ 20.280762, 4.696879 ], [ 19.467773, 5.047171 ], [ 18.918457, 4.718778 ], [ 18.522949, 4.214943 ], [ 18.435059, 3.513421 ], [ 17.797852, 3.579213 ], [ 17.116699, 3.732708 ], [ 16.523438, 3.206333 ], [ 15.996094, 2.284551 ], [ 15.886230, 2.569939 ], [ 15.842285, 3.030812 ], [ 15.402832, 3.337954 ], [ 15.029297, 3.864255 ], [ 14.941406, 4.214943 ], [ 14.458008, 4.740675 ], [ 14.545898, 5.047171 ], [ 14.458008, 5.462896 ], [ 14.523926, 6.227934 ], [ 14.765625, 6.424484 ], [ 15.270996, 7.427837 ], [ 16.105957, 7.514981 ], [ 16.281738, 7.754537 ], [ 16.435547, 7.754537 ], [ 16.699219, 7.514981 ], [ 17.951660, 7.906912 ], [ 18.369141, 8.298470 ], [ 18.896484, 8.646196 ], [ 18.808594, 8.993600 ], [ 19.072266, 9.080400 ], [ 20.039062, 9.015302 ], [ 20.983887, 9.492408 ], [ 21.708984, 10.574222 ], [ 22.214355, 10.984335 ], [ 22.851562, 11.156845 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.686523, 35.710838 ], [ 24.235840, 35.371135 ], [ 25.004883, 35.442771 ], [ 25.751953, 35.371135 ], [ 25.729980, 35.191767 ], [ 26.279297, 35.317366 ], [ 26.147461, 35.012002 ], [ 24.719238, 34.921971 ], [ 24.719238, 35.101934 ], [ 23.510742, 35.281501 ], [ 23.686523, 35.710838 ] ] ], [ [ [ 26.103516, 41.836828 ], [ 26.586914, 41.574361 ], [ 26.279297, 40.946714 ], [ 26.037598, 40.830437 ], [ 25.444336, 40.863680 ], [ 24.916992, 40.963308 ], [ 23.708496, 40.697299 ], [ 24.389648, 40.128491 ], [ 23.884277, 39.977120 ], [ 23.334961, 39.977120 ], [ 22.807617, 40.480381 ], [ 22.609863, 40.262761 ], [ 22.829590, 39.673370 ], [ 23.334961, 39.198205 ], [ 22.961426, 38.976492 ], [ 23.510742, 38.513788 ], [ 24.016113, 38.220920 ], [ 24.038086, 37.666429 ], [ 23.093262, 37.926868 ], [ 23.400879, 37.422526 ], [ 22.763672, 37.317752 ], [ 23.137207, 36.438961 ], [ 22.478027, 36.421282 ], [ 21.665039, 36.862043 ], [ 21.291504, 37.649034 ], [ 21.115723, 38.324420 ], [ 20.214844, 39.351290 ], [ 20.148926, 39.639538 ], [ 20.610352, 40.111689 ], [ 20.654297, 40.446947 ], [ 20.983887, 40.580585 ], [ 21.005859, 40.847060 ], [ 21.665039, 40.946714 ], [ 22.038574, 41.162114 ], [ 22.587891, 41.145570 ], [ 22.741699, 41.310824 ], [ 22.939453, 41.343825 ], [ 23.686523, 41.310824 ], [ 24.477539, 41.590797 ], [ 25.180664, 41.244772 ], [ 26.103516, 41.343825 ], [ 26.103516, 41.836828 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.562988, 35.675147 ], [ 33.881836, 35.263562 ], [ 33.969727, 35.065973 ], [ 33.859863, 35.101934 ], [ 33.662109, 35.029996 ], [ 33.508301, 35.047987 ], [ 33.464355, 35.012002 ], [ 33.442383, 35.101934 ], [ 33.376465, 35.173808 ], [ 33.178711, 35.173808 ], [ 32.915039, 35.101934 ], [ 32.717285, 35.155846 ], [ 32.783203, 35.155846 ], [ 32.937012, 35.389050 ], [ 33.662109, 35.389050 ], [ 34.562988, 35.675147 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.376465, 35.173808 ], [ 33.442383, 35.101934 ], [ 33.464355, 35.012002 ], [ 33.508301, 35.047987 ], [ 33.662109, 35.029996 ], [ 33.859863, 35.101934 ], [ 33.969727, 35.065973 ], [ 33.991699, 34.994004 ], [ 32.958984, 34.578952 ], [ 32.475586, 34.705493 ], [ 32.255859, 35.119909 ], [ 32.717285, 35.155846 ], [ 32.915039, 35.101934 ], [ 33.178711, 35.173808 ], [ 33.376465, 35.173808 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.477051, 31.597253 ], [ 28.894043, 30.883369 ], [ 29.663086, 31.203405 ], [ 30.080566, 31.484893 ], [ 30.959473, 31.559815 ], [ 31.684570, 31.447410 ], [ 31.948242, 30.939924 ], [ 32.189941, 31.278551 ], [ 32.980957, 31.034108 ], [ 33.771973, 30.977609 ], [ 34.255371, 31.222197 ], [ 34.914551, 29.516110 ], [ 34.628906, 29.113775 ], [ 34.409180, 28.362402 ], [ 34.145508, 27.839076 ], [ 33.903809, 27.664069 ], [ 33.134766, 28.420391 ], [ 32.409668, 29.859701 ], [ 32.299805, 29.764377 ], [ 32.717285, 28.709861 ], [ 33.332520, 27.702984 ], [ 34.101562, 26.155438 ], [ 34.453125, 25.601902 ], [ 34.782715, 25.045792 ], [ 35.683594, 23.946096 ], [ 35.485840, 23.765237 ], [ 35.507812, 23.120154 ], [ 36.672363, 22.207749 ], [ 36.848145, 22.004175 ], [ 24.982910, 22.004175 ], [ 24.982910, 29.248063 ], [ 24.697266, 30.050077 ], [ 24.938965, 30.675715 ], [ 24.785156, 31.090574 ], [ 25.158691, 31.578535 ], [ 26.477051, 31.597253 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.156250, 42.049293 ], [ 36.892090, 41.343825 ], [ 38.342285, 40.963308 ], [ 39.506836, 41.112469 ], [ 40.363770, 41.029643 ], [ 41.550293, 41.541478 ], [ 42.604980, 41.590797 ], [ 43.571777, 41.095912 ], [ 43.747559, 40.747257 ], [ 43.637695, 40.262761 ], [ 44.384766, 40.010787 ], [ 44.780273, 39.724089 ], [ 44.099121, 39.436193 ], [ 44.406738, 38.289937 ], [ 44.208984, 37.978845 ], [ 44.758301, 37.177826 ], [ 44.274902, 37.002553 ], [ 43.923340, 37.265310 ], [ 42.758789, 37.387617 ], [ 42.341309, 37.230328 ], [ 41.198730, 37.090240 ], [ 40.671387, 37.107765 ], [ 39.506836, 36.721274 ], [ 38.693848, 36.721274 ], [ 38.166504, 36.914764 ], [ 37.045898, 36.633162 ], [ 36.738281, 36.826875 ], [ 36.672363, 36.261992 ], [ 36.145020, 35.835628 ], [ 35.771484, 36.279707 ], [ 36.145020, 36.650793 ], [ 35.529785, 36.580247 ], [ 34.694824, 36.809285 ], [ 34.013672, 36.226550 ], [ 32.497559, 36.120128 ], [ 31.684570, 36.650793 ], [ 30.607910, 36.686041 ], [ 30.388184, 36.279707 ], [ 29.685059, 36.155618 ], [ 28.718262, 36.686041 ], [ 27.619629, 36.668419 ], [ 27.048340, 37.666429 ], [ 26.301270, 38.220920 ], [ 26.784668, 38.993572 ], [ 26.169434, 39.470125 ], [ 27.268066, 40.430224 ], [ 28.806152, 40.463666 ], [ 29.223633, 41.228249 ], [ 31.135254, 41.095912 ], [ 32.343750, 41.738528 ], [ 33.508301, 42.032974 ], [ 35.156250, 42.049293 ] ] ], [ [ [ 27.114258, 42.147114 ], [ 27.993164, 42.016652 ], [ 28.103027, 41.623655 ], [ 28.981934, 41.310824 ], [ 28.806152, 41.062786 ], [ 27.597656, 41.013066 ], [ 27.180176, 40.697299 ], [ 26.345215, 40.162083 ], [ 26.037598, 40.630630 ], [ 26.037598, 40.830437 ], [ 26.279297, 40.946714 ], [ 26.586914, 41.574361 ], [ 26.103516, 41.836828 ], [ 27.114258, 42.147114 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.991211, 34.651285 ], [ 36.430664, 34.597042 ], [ 36.606445, 34.216345 ], [ 36.057129, 33.833920 ], [ 35.815430, 33.284620 ], [ 35.551758, 33.266250 ], [ 35.441895, 33.100745 ], [ 35.112305, 33.100745 ], [ 35.463867, 33.906896 ], [ 35.991211, 34.651285 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.341309, 37.230328 ], [ 41.835938, 36.615528 ], [ 41.286621, 36.368222 ], [ 41.374512, 35.639441 ], [ 41.000977, 34.434098 ], [ 38.781738, 33.394759 ], [ 36.826172, 32.324276 ], [ 35.683594, 32.731841 ], [ 35.815430, 32.879587 ], [ 35.815430, 33.284620 ], [ 36.057129, 33.833920 ], [ 36.606445, 34.216345 ], [ 36.430664, 34.597042 ], [ 35.991211, 34.651285 ], [ 35.903320, 35.424868 ], [ 36.145020, 35.835628 ], [ 36.672363, 36.261992 ], [ 36.738281, 36.826875 ], [ 37.045898, 36.633162 ], [ 38.166504, 36.914764 ], [ 38.693848, 36.721274 ], [ 39.506836, 36.721274 ], [ 40.671387, 37.107765 ], [ 41.198730, 37.090240 ], [ 42.341309, 37.230328 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.758789, 37.387617 ], [ 43.923340, 37.265310 ], [ 44.274902, 37.002553 ], [ 44.758301, 37.177826 ], [ 45.417480, 35.978006 ], [ 46.054688, 35.692995 ], [ 46.142578, 35.101934 ], [ 45.637207, 34.759666 ], [ 45.395508, 33.979809 ], [ 46.098633, 33.027088 ], [ 47.329102, 32.472695 ], [ 47.834473, 31.709476 ], [ 47.680664, 30.996446 ], [ 47.988281, 30.996446 ], [ 48.010254, 30.467614 ], [ 48.559570, 29.935895 ], [ 47.285156, 30.069094 ], [ 46.560059, 29.113775 ], [ 44.692383, 29.190533 ], [ 41.879883, 31.203405 ], [ 40.385742, 31.896214 ], [ 39.177246, 32.175612 ], [ 38.781738, 33.394759 ], [ 41.000977, 34.434098 ], [ 41.374512, 35.639441 ], [ 41.286621, 36.368222 ], [ 41.835938, 36.615528 ], [ 42.341309, 37.230328 ], [ 42.758789, 37.387617 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.815430, 33.284620 ], [ 35.815430, 32.879587 ], [ 35.705566, 32.713355 ], [ 35.529785, 32.398516 ], [ 35.178223, 32.546813 ], [ 34.958496, 31.877558 ], [ 35.222168, 31.765537 ], [ 34.958496, 31.634676 ], [ 34.914551, 31.353637 ], [ 35.375977, 31.503629 ], [ 35.419922, 31.109389 ], [ 34.914551, 29.516110 ], [ 34.255371, 31.222197 ], [ 34.541016, 31.559815 ], [ 34.475098, 31.615966 ], [ 34.738770, 32.082575 ], [ 34.936523, 32.842674 ], [ 35.090332, 33.082337 ], [ 35.441895, 33.100745 ], [ 35.551758, 33.266250 ], [ 35.815430, 33.284620 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.178223, 32.546813 ], [ 35.529785, 32.398516 ], [ 35.529785, 31.784217 ], [ 35.375977, 31.503629 ], [ 34.914551, 31.353637 ], [ 34.958496, 31.634676 ], [ 35.222168, 31.765537 ], [ 34.958496, 31.877558 ], [ 35.178223, 32.546813 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.781738, 33.394759 ], [ 39.177246, 32.175612 ], [ 39.001465, 32.026706 ], [ 37.001953, 31.522361 ], [ 37.990723, 30.524413 ], [ 37.661133, 30.353916 ], [ 37.485352, 30.012031 ], [ 36.738281, 29.878755 ], [ 36.496582, 29.516110 ], [ 36.057129, 29.209713 ], [ 34.936523, 29.363027 ], [ 34.914551, 29.516110 ], [ 35.419922, 31.109389 ], [ 35.375977, 31.503629 ], [ 35.529785, 31.784217 ], [ 35.529785, 32.398516 ], [ 35.705566, 32.713355 ], [ 36.826172, 32.324276 ], [ 38.781738, 33.394759 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.848145, 22.004175 ], [ 37.177734, 21.022983 ], [ 36.958008, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.463379, 18.625425 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.434511 ], [ 37.155762, 17.266728 ], [ 36.848145, 16.972741 ], [ 36.738281, 16.299051 ], [ 36.320801, 14.838612 ], [ 36.408691, 14.434680 ], [ 36.254883, 13.581921 ], [ 35.859375, 12.597455 ], [ 35.244141, 12.103781 ], [ 34.826660, 11.329253 ], [ 34.716797, 10.919618 ], [ 34.255371, 10.639014 ], [ 33.947754, 9.600750 ], [ 33.947754, 9.470736 ], [ 33.815918, 9.492408 ], [ 33.837891, 9.990491 ], [ 33.706055, 10.336536 ], [ 33.200684, 10.725381 ], [ 33.068848, 11.458491 ], [ 33.200684, 12.189704 ], [ 32.739258, 12.254128 ], [ 32.673340, 12.039321 ], [ 32.058105, 11.974845 ], [ 32.299805, 11.695273 ], [ 32.387695, 11.092166 ], [ 31.838379, 10.552622 ], [ 31.333008, 9.817329 ], [ 30.827637, 9.709057 ], [ 29.992676, 10.293301 ], [ 29.597168, 10.098670 ], [ 29.509277, 9.795678 ], [ 28.981934, 9.622414 ], [ 28.959961, 9.405710 ], [ 27.949219, 9.405710 ], [ 27.817383, 9.622414 ], [ 27.092285, 9.644077 ], [ 26.740723, 9.470736 ], [ 26.477051, 9.557417 ], [ 25.949707, 10.141932 ], [ 25.773926, 10.422988 ], [ 25.048828, 10.293301 ], [ 24.785156, 9.817329 ], [ 24.521484, 8.928487 ], [ 24.191895, 8.733077 ], [ 23.884277, 8.624472 ], [ 23.444824, 8.971897 ], [ 23.378906, 9.275622 ], [ 23.554688, 9.687398 ], [ 23.532715, 10.098670 ], [ 22.961426, 10.725381 ], [ 22.851562, 11.156845 ], [ 22.873535, 11.393879 ], [ 22.500000, 11.695273 ], [ 22.478027, 12.275599 ], [ 22.280273, 12.661778 ], [ 21.928711, 12.597455 ], [ 22.016602, 12.961736 ], [ 22.280273, 13.389620 ], [ 22.170410, 13.795406 ], [ 22.500000, 14.093957 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 23.005371, 15.686510 ], [ 23.884277, 15.623037 ], [ 23.840332, 20.014645 ], [ 24.982910, 20.014645 ], [ 24.982910, 22.004175 ], [ 36.848145, 22.004175 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.739258, 12.254128 ], [ 33.200684, 12.189704 ], [ 33.068848, 11.458491 ], [ 33.200684, 10.725381 ], [ 33.706055, 10.336536 ], [ 33.837891, 9.990491 ], [ 33.815918, 9.492408 ], [ 33.947754, 9.470736 ], [ 33.969727, 8.689639 ], [ 33.815918, 8.385431 ], [ 33.288574, 8.363693 ], [ 32.937012, 7.798079 ], [ 33.552246, 7.732765 ], [ 34.057617, 7.231699 ], [ 34.233398, 6.839170 ], [ 34.694824, 6.599131 ], [ 35.288086, 5.506640 ], [ 33.991699, 4.258768 ], [ 33.376465, 3.798484 ], [ 32.673340, 3.798484 ], [ 31.860352, 3.579213 ], [ 31.245117, 3.798484 ], [ 30.827637, 3.513421 ], [ 29.948730, 4.193030 ], [ 29.707031, 4.609278 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.410645, 4.302591 ], [ 27.971191, 4.412137 ], [ 27.355957, 5.244128 ], [ 27.202148, 5.572250 ], [ 26.455078, 5.965754 ], [ 26.213379, 6.555475 ], [ 25.795898, 6.991859 ], [ 25.114746, 7.514981 ], [ 25.114746, 7.841615 ], [ 24.565430, 8.233237 ], [ 23.884277, 8.624472 ], [ 24.191895, 8.733077 ], [ 24.521484, 8.928487 ], [ 24.785156, 9.817329 ], [ 25.048828, 10.293301 ], [ 25.773926, 10.422988 ], [ 25.949707, 10.141932 ], [ 26.477051, 9.557417 ], [ 26.740723, 9.470736 ], [ 27.092285, 9.644077 ], [ 27.817383, 9.622414 ], [ 27.949219, 9.405710 ], [ 28.959961, 9.405710 ], [ 28.981934, 9.622414 ], [ 29.509277, 9.795678 ], [ 29.597168, 10.098670 ], [ 29.992676, 10.293301 ], [ 30.827637, 9.709057 ], [ 31.333008, 9.817329 ], [ 31.838379, 10.552622 ], [ 32.387695, 11.092166 ], [ 32.299805, 11.695273 ], [ 32.058105, 11.974845 ], [ 32.673340, 12.039321 ], [ 32.739258, 12.254128 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.991699, 4.258768 ], [ 34.475098, 3.557283 ], [ 34.584961, 3.074695 ], [ 35.024414, 1.911267 ], [ 34.650879, 1.186439 ], [ 33.881836, 0.109863 ], [ 33.881836, -0.944781 ], [ 31.860352, -1.010690 ], [ 30.761719, -1.010690 ], [ 30.410156, -1.120534 ], [ 29.816895, -1.428075 ], [ 29.575195, -1.340210 ], [ 29.575195, -0.571280 ], [ 29.816895, -0.197754 ], [ 29.816895, 0.000000 ], [ 29.860840, 0.615223 ], [ 30.080566, 1.076597 ], [ 30.454102, 1.603794 ], [ 30.849609, 1.867345 ], [ 31.157227, 2.218684 ], [ 30.761719, 2.350415 ], [ 30.827637, 3.513421 ], [ 31.245117, 3.798484 ], [ 31.860352, 3.579213 ], [ 32.673340, 3.798484 ], [ 33.376465, 3.798484 ], [ 33.991699, 4.258768 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.408203, 17.999632 ], [ 38.979492, 16.846605 ], [ 39.265137, 15.940202 ], [ 39.792480, 15.453680 ], [ 41.176758, 14.498508 ], [ 42.583008, 13.004558 ], [ 43.066406, 12.704651 ], [ 42.758789, 12.468760 ], [ 42.341309, 12.554564 ], [ 41.989746, 12.876070 ], [ 41.594238, 13.453737 ], [ 41.154785, 13.774066 ], [ 40.891113, 14.136576 ], [ 40.012207, 14.519780 ], [ 39.331055, 14.541050 ], [ 39.089355, 14.753635 ], [ 38.496094, 14.519780 ], [ 37.902832, 14.966013 ], [ 37.573242, 14.221789 ], [ 36.408691, 14.434680 ], [ 36.320801, 14.838612 ], [ 36.738281, 16.299051 ], [ 36.848145, 16.972741 ], [ 37.155762, 17.266728 ], [ 37.902832, 17.434511 ], [ 38.408203, 17.999632 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.066406, 12.704651 ], [ 43.308105, 12.404389 ], [ 43.286133, 11.996338 ], [ 42.714844, 11.738302 ], [ 43.132324, 11.480025 ], [ 42.758789, 10.941192 ], [ 42.539062, 11.113727 ], [ 42.297363, 11.049038 ], [ 41.748047, 11.070603 ], [ 41.726074, 11.372339 ], [ 41.660156, 11.652236 ], [ 42.341309, 12.554564 ], [ 42.758789, 12.468760 ], [ 43.066406, 12.704651 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.288086, 5.506640 ], [ 35.815430, 5.353521 ], [ 35.815430, 4.784469 ], [ 36.145020, 4.455951 ], [ 36.848145, 4.455951 ], [ 38.100586, 3.601142 ], [ 38.649902, 3.623071 ], [ 38.891602, 3.513421 ], [ 39.550781, 3.425692 ], [ 39.836426, 3.842332 ], [ 40.759277, 4.258768 ], [ 41.154785, 3.930020 ], [ 41.835938, 3.930020 ], [ 40.979004, 2.789425 ], [ 40.979004, -0.856902 ], [ 41.572266, -1.669686 ], [ 41.440430, -1.757537 ], [ 35.310059, -1.757537 ], [ 33.881836, -0.944781 ], [ 33.881836, 0.109863 ], [ 34.650879, 1.186439 ], [ 35.024414, 1.911267 ], [ 34.584961, 3.074695 ], [ 34.475098, 3.557283 ], [ 33.991699, 4.258768 ], [ 35.288086, 5.506640 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.902832, 14.966013 ], [ 38.496094, 14.519780 ], [ 39.089355, 14.753635 ], [ 39.331055, 14.541050 ], [ 40.012207, 14.519780 ], [ 40.891113, 14.136576 ], [ 41.154785, 13.774066 ], [ 41.594238, 13.453737 ], [ 41.989746, 12.876070 ], [ 42.341309, 12.554564 ], [ 41.660156, 11.652236 ], [ 41.726074, 11.372339 ], [ 41.748047, 11.070603 ], [ 42.297363, 11.049038 ], [ 42.539062, 11.113727 ], [ 42.758789, 10.941192 ], [ 42.539062, 10.574222 ], [ 43.286133, 9.557417 ], [ 43.659668, 9.188870 ], [ 46.933594, 8.015716 ], [ 47.768555, 8.015716 ], [ 44.956055, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.758789, 4.258768 ], [ 42.121582, 4.236856 ], [ 41.835938, 3.930020 ], [ 41.154785, 3.930020 ], [ 40.759277, 4.258768 ], [ 39.836426, 3.842332 ], [ 39.550781, 3.425692 ], [ 38.891602, 3.513421 ], [ 38.649902, 3.623071 ], [ 38.100586, 3.601142 ], [ 36.848145, 4.455951 ], [ 36.145020, 4.455951 ], [ 35.815430, 4.784469 ], [ 35.815430, 5.353521 ], [ 35.288086, 5.506640 ], [ 34.694824, 6.599131 ], [ 34.233398, 6.839170 ], [ 34.057617, 7.231699 ], [ 33.552246, 7.732765 ], [ 32.937012, 7.798079 ], [ 33.288574, 8.363693 ], [ 33.815918, 8.385431 ], [ 33.969727, 8.689639 ], [ 33.947754, 9.600750 ], [ 34.255371, 10.639014 ], [ 34.716797, 10.919618 ], [ 34.826660, 11.329253 ], [ 35.244141, 12.103781 ], [ 35.859375, 12.597455 ], [ 36.254883, 13.581921 ], [ 36.408691, 14.434680 ], [ 37.573242, 14.221789 ], [ 37.902832, 14.966013 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.060059, 55.391592 ], [ 70.861816, 55.178868 ], [ 71.169434, 54.136696 ], [ 72.224121, 54.380557 ], [ 73.498535, 54.046489 ], [ 73.410645, 53.501117 ], [ 74.377441, 53.553363 ], [ 76.882324, 54.495568 ], [ 76.508789, 54.188155 ], [ 77.783203, 53.409532 ], [ 80.024414, 50.875311 ], [ 80.551758, 51.399206 ], [ 81.936035, 50.819818 ], [ 83.364258, 51.082822 ], [ 83.913574, 50.903033 ], [ 84.396973, 50.317408 ], [ 85.100098, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.813965, 49.837982 ], [ 87.341309, 49.224773 ], [ 86.594238, 48.560250 ], [ 85.759277, 48.458352 ], [ 85.715332, 47.457809 ], [ 85.144043, 47.010226 ], [ 83.166504, 47.338823 ], [ 82.441406, 45.552525 ], [ 81.936035, 45.321254 ], [ 79.958496, 44.918139 ], [ 80.859375, 43.181147 ], [ 80.178223, 42.924252 ], [ 80.244141, 42.358544 ], [ 79.628906, 42.504503 ], [ 79.123535, 42.859860 ], [ 77.651367, 42.972502 ], [ 75.981445, 42.988576 ], [ 75.629883, 42.892064 ], [ 74.201660, 43.309191 ], [ 73.630371, 43.100983 ], [ 73.476562, 42.504503 ], [ 71.828613, 42.859860 ], [ 71.169434, 42.714732 ], [ 70.949707, 42.277309 ], [ 70.378418, 42.081917 ], [ 69.060059, 41.393294 ], [ 68.620605, 40.680638 ], [ 68.247070, 40.663973 ], [ 67.983398, 41.145570 ], [ 66.708984, 41.178654 ], [ 66.489258, 42.000325 ], [ 66.005859, 42.000325 ], [ 66.093750, 43.004647 ], [ 64.885254, 43.739352 ], [ 63.171387, 43.659924 ], [ 62.006836, 43.516689 ], [ 61.040039, 44.418088 ], [ 58.491211, 45.598666 ], [ 55.920410, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.437012, 41.261291 ], [ 54.733887, 42.049293 ], [ 54.074707, 42.326062 ], [ 52.932129, 42.130821 ], [ 52.492676, 41.787697 ], [ 52.426758, 42.032974 ], [ 52.690430, 42.455888 ], [ 52.492676, 42.795401 ], [ 51.328125, 43.133061 ], [ 50.888672, 44.040219 ], [ 50.317383, 44.292401 ], [ 50.295410, 44.621754 ], [ 51.262207, 44.527843 ], [ 51.306152, 45.259422 ], [ 52.163086, 45.413876 ], [ 53.020020, 45.259422 ], [ 53.217773, 46.240652 ], [ 53.041992, 46.860191 ], [ 52.031250, 46.815099 ], [ 51.174316, 47.055154 ], [ 50.031738, 46.619261 ], [ 49.086914, 46.407564 ], [ 48.581543, 46.573967 ], [ 48.691406, 47.085085 ], [ 48.054199, 47.754098 ], [ 47.307129, 47.724545 ], [ 46.450195, 48.400032 ], [ 47.043457, 49.152970 ], [ 46.735840, 49.368066 ], [ 47.548828, 50.457504 ], [ 48.559570, 49.880478 ], [ 48.691406, 50.611132 ], [ 50.756836, 51.699800 ], [ 52.316895, 51.727028 ], [ 54.514160, 51.027576 ], [ 55.700684, 50.625073 ], [ 56.777344, 51.055207 ], [ 58.359375, 51.069017 ], [ 59.633789, 50.555325 ], [ 59.919434, 50.847573 ], [ 61.325684, 50.805935 ], [ 61.567383, 51.275662 ], [ 59.963379, 51.971346 ], [ 60.908203, 52.456009 ], [ 60.732422, 52.722986 ], [ 61.699219, 52.988337 ], [ 60.974121, 53.670680 ], [ 61.435547, 54.007769 ], [ 65.170898, 54.354956 ], [ 65.654297, 54.610255 ], [ 68.159180, 54.977614 ], [ 69.060059, 55.391592 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.491211, 45.598666 ], [ 61.040039, 44.418088 ], [ 62.006836, 43.516689 ], [ 63.171387, 43.659924 ], [ 64.885254, 43.739352 ], [ 66.093750, 43.004647 ], [ 66.005859, 42.000325 ], [ 66.489258, 42.000325 ], [ 66.708984, 41.178654 ], [ 67.983398, 41.145570 ], [ 68.247070, 40.663973 ], [ 68.620605, 40.680638 ], [ 69.060059, 41.393294 ], [ 70.378418, 42.081917 ], [ 70.949707, 42.277309 ], [ 71.257324, 42.179688 ], [ 70.400391, 41.525030 ], [ 71.147461, 41.145570 ], [ 71.850586, 41.393294 ], [ 73.037109, 40.880295 ], [ 71.762695, 40.162083 ], [ 70.993652, 40.245992 ], [ 70.598145, 40.229218 ], [ 70.444336, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.323730, 40.730608 ], [ 68.994141, 40.094882 ], [ 68.532715, 39.537940 ], [ 67.697754, 39.588757 ], [ 67.434082, 39.147103 ], [ 68.159180, 38.908133 ], [ 68.378906, 38.169114 ], [ 67.829590, 37.160317 ], [ 67.060547, 37.370157 ], [ 66.511230, 37.370157 ], [ 66.533203, 37.978845 ], [ 65.214844, 38.410558 ], [ 64.160156, 38.908133 ], [ 63.500977, 39.368279 ], [ 62.358398, 40.061257 ], [ 61.875000, 41.095912 ], [ 61.545410, 41.277806 ], [ 60.446777, 41.228249 ], [ 60.073242, 41.426253 ], [ 59.963379, 42.228517 ], [ 58.623047, 42.763146 ], [ 57.766113, 42.179688 ], [ 56.931152, 41.836828 ], [ 57.084961, 41.327326 ], [ 55.964355, 41.310824 ], [ 55.920410, 44.995883 ], [ 58.491211, 45.598666 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.201660, 43.309191 ], [ 75.629883, 42.892064 ], [ 75.981445, 42.988576 ], [ 77.651367, 42.972502 ], [ 79.123535, 42.859860 ], [ 79.628906, 42.504503 ], [ 80.244141, 42.358544 ], [ 80.112305, 42.130821 ], [ 78.530273, 41.590797 ], [ 78.178711, 41.195190 ], [ 76.904297, 41.079351 ], [ 76.508789, 40.430224 ], [ 75.454102, 40.563895 ], [ 74.772949, 40.380028 ], [ 73.806152, 39.909736 ], [ 73.959961, 39.673370 ], [ 73.674316, 39.436193 ], [ 71.784668, 39.283294 ], [ 70.532227, 39.605688 ], [ 69.455566, 39.537940 ], [ 69.543457, 40.111689 ], [ 70.642090, 39.943436 ], [ 70.993652, 40.245992 ], [ 71.762695, 40.162083 ], [ 73.037109, 40.880295 ], [ 71.850586, 41.393294 ], [ 71.147461, 41.145570 ], [ 70.400391, 41.525030 ], [ 71.257324, 42.179688 ], [ 70.949707, 42.277309 ], [ 71.169434, 42.714732 ], [ 71.828613, 42.859860 ], [ 73.476562, 42.504503 ], [ 73.630371, 43.100983 ], [ 74.201660, 43.309191 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.956055, 41.261291 ], [ 45.175781, 40.996484 ], [ 45.549316, 40.813809 ], [ 45.351562, 40.563895 ], [ 45.878906, 40.229218 ], [ 45.593262, 39.909736 ], [ 46.032715, 39.639538 ], [ 46.472168, 39.470125 ], [ 46.494141, 38.771216 ], [ 46.142578, 38.754083 ], [ 45.725098, 39.334297 ], [ 45.725098, 39.487085 ], [ 45.285645, 39.487085 ], [ 45.000000, 39.740986 ], [ 44.780273, 39.724089 ], [ 44.384766, 40.010787 ], [ 43.637695, 40.262761 ], [ 43.747559, 40.747257 ], [ 43.571777, 41.095912 ], [ 44.956055, 41.261291 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.384277, 41.869561 ], [ 46.669922, 41.836828 ], [ 47.373047, 41.228249 ], [ 47.812500, 41.162114 ], [ 47.966309, 41.409776 ], [ 48.581543, 41.820455 ], [ 49.108887, 41.294317 ], [ 49.614258, 40.580585 ], [ 50.075684, 40.530502 ], [ 50.383301, 40.262761 ], [ 49.548340, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.061849 ], [ 48.845215, 38.822591 ], [ 48.867188, 38.324420 ], [ 48.625488, 38.272689 ], [ 48.010254, 38.805470 ], [ 48.339844, 39.300299 ], [ 48.054199, 39.588757 ], [ 47.680664, 39.520992 ], [ 46.494141, 38.771216 ], [ 46.472168, 39.470125 ], [ 46.032715, 39.639538 ], [ 45.593262, 39.909736 ], [ 45.878906, 40.229218 ], [ 45.351562, 40.563895 ], [ 45.549316, 40.813809 ], [ 45.175781, 40.996484 ], [ 44.956055, 41.261291 ], [ 45.197754, 41.426253 ], [ 45.944824, 41.129021 ], [ 46.494141, 41.079351 ], [ 46.625977, 41.195190 ], [ 46.142578, 41.738528 ], [ 46.384277, 41.869561 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.285645, 39.487085 ], [ 45.725098, 39.487085 ], [ 45.725098, 39.334297 ], [ 46.142578, 38.754083 ], [ 45.439453, 38.891033 ], [ 44.934082, 39.351290 ], [ 44.780273, 39.724089 ], [ 45.000000, 39.740986 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.780273, 39.724089 ], [ 44.934082, 39.351290 ], [ 45.439453, 38.891033 ], [ 46.142578, 38.754083 ], [ 46.494141, 38.771216 ], [ 47.680664, 39.520992 ], [ 48.054199, 39.588757 ], [ 48.339844, 39.300299 ], [ 48.010254, 38.805470 ], [ 48.625488, 38.272689 ], [ 48.867188, 38.324420 ], [ 49.196777, 37.596824 ], [ 50.141602, 37.387617 ], [ 50.822754, 36.879621 ], [ 52.250977, 36.703660 ], [ 53.811035, 36.967449 ], [ 53.920898, 37.212832 ], [ 54.799805, 37.405074 ], [ 55.502930, 37.978845 ], [ 56.162109, 37.944198 ], [ 56.601562, 38.134557 ], [ 57.326660, 38.030786 ], [ 58.425293, 37.527154 ], [ 59.216309, 37.422526 ], [ 60.358887, 36.544949 ], [ 61.105957, 36.491973 ], [ 61.193848, 35.657296 ], [ 60.798340, 34.415973 ], [ 60.512695, 33.687782 ], [ 60.952148, 33.541395 ], [ 60.534668, 32.990236 ], [ 60.842285, 32.194209 ], [ 60.930176, 31.559815 ], [ 61.699219, 31.391158 ], [ 61.765137, 30.751278 ], [ 60.864258, 29.840644 ], [ 61.347656, 29.305561 ], [ 61.765137, 28.709861 ], [ 62.709961, 28.265682 ], [ 62.753906, 27.391278 ], [ 63.215332, 27.235095 ], [ 63.303223, 26.765231 ], [ 61.853027, 26.254010 ], [ 61.479492, 25.085599 ], [ 59.611816, 25.383735 ], [ 58.513184, 25.621716 ], [ 57.392578, 25.740529 ], [ 56.953125, 26.980829 ], [ 56.491699, 27.156920 ], [ 55.722656, 26.980829 ], [ 54.711914, 26.490240 ], [ 53.481445, 26.824071 ], [ 52.470703, 27.586198 ], [ 51.503906, 27.877928 ], [ 50.844727, 28.825425 ], [ 50.097656, 30.164126 ], [ 49.570312, 29.993002 ], [ 48.933105, 30.334954 ], [ 48.559570, 29.935895 ], [ 48.010254, 30.467614 ], [ 47.988281, 30.996446 ], [ 47.680664, 30.996446 ], [ 47.834473, 31.709476 ], [ 47.329102, 32.472695 ], [ 46.098633, 33.027088 ], [ 45.395508, 33.979809 ], [ 45.637207, 34.759666 ], [ 46.142578, 35.101934 ], [ 46.054688, 35.692995 ], [ 45.417480, 35.978006 ], [ 44.758301, 37.177826 ], [ 44.208984, 37.978845 ], [ 44.406738, 38.289937 ], [ 44.099121, 39.436193 ], [ 44.780273, 39.724089 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.285156, 30.069094 ], [ 47.966309, 29.993002 ], [ 48.164062, 29.535230 ], [ 48.076172, 29.324720 ], [ 48.405762, 28.555576 ], [ 47.702637, 28.536275 ], [ 47.438965, 29.017748 ], [ 46.560059, 29.113775 ], [ 47.285156, 30.069094 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.177246, 32.175612 ], [ 40.385742, 31.896214 ], [ 41.879883, 31.203405 ], [ 44.692383, 29.190533 ], [ 46.560059, 29.113775 ], [ 47.438965, 29.017748 ], [ 47.702637, 28.536275 ], [ 48.405762, 28.555576 ], [ 48.801270, 27.702984 ], [ 49.284668, 27.469287 ], [ 49.460449, 27.117813 ], [ 50.141602, 26.706360 ], [ 50.207520, 26.293415 ], [ 50.097656, 25.958045 ], [ 50.229492, 25.621716 ], [ 50.515137, 25.344026 ], [ 50.646973, 25.005973 ], [ 50.800781, 24.766785 ], [ 51.108398, 24.567108 ], [ 51.372070, 24.647017 ], [ 51.569824, 24.246965 ], [ 51.613770, 24.026397 ], [ 51.987305, 23.019076 ], [ 54.997559, 22.512557 ], [ 55.195312, 22.715390 ], [ 55.656738, 22.004175 ], [ 54.997559, 20.014645 ], [ 51.987305, 19.020577 ], [ 49.108887, 18.625425 ], [ 48.164062, 18.166730 ], [ 47.460938, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.735840, 17.287709 ], [ 46.362305, 17.245744 ], [ 45.395508, 17.350638 ], [ 45.197754, 17.434511 ], [ 44.055176, 17.413546 ], [ 43.791504, 17.329664 ], [ 43.374023, 17.581194 ], [ 43.110352, 17.098792 ], [ 43.198242, 16.678293 ], [ 42.758789, 16.362310 ], [ 42.648926, 16.783506 ], [ 42.341309, 17.077790 ], [ 42.253418, 17.476432 ], [ 41.748047, 17.853290 ], [ 41.220703, 18.687879 ], [ 40.935059, 19.497664 ], [ 40.231934, 20.179724 ], [ 39.792480, 20.344627 ], [ 39.133301, 21.309846 ], [ 39.023438, 22.004175 ], [ 39.045410, 22.593726 ], [ 38.474121, 23.704895 ], [ 38.012695, 24.086589 ], [ 37.463379, 24.287027 ], [ 37.133789, 24.866503 ], [ 37.199707, 25.085599 ], [ 36.914062, 25.621716 ], [ 36.628418, 25.839449 ], [ 36.232910, 26.588527 ], [ 35.112305, 28.071980 ], [ 34.628906, 28.071980 ], [ 34.782715, 28.613459 ], [ 34.826660, 28.960089 ], [ 34.936523, 29.363027 ], [ 36.057129, 29.209713 ], [ 36.496582, 29.516110 ], [ 36.738281, 29.878755 ], [ 37.485352, 30.012031 ], [ 37.661133, 30.353916 ], [ 37.990723, 30.524413 ], [ 37.001953, 31.522361 ], [ 39.001465, 32.026706 ], [ 39.177246, 32.175612 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.284180, 26.115986 ], [ 51.569824, 25.819672 ], [ 51.591797, 25.224820 ], [ 51.372070, 24.647017 ], [ 51.108398, 24.567108 ], [ 50.800781, 24.766785 ], [ 50.734863, 25.482951 ], [ 50.998535, 26.017298 ], [ 51.284180, 26.115986 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.052246, 26.056783 ], [ 56.250000, 25.720735 ], [ 56.381836, 24.926295 ], [ 55.876465, 24.926295 ], [ 55.788574, 24.287027 ], [ 55.964355, 24.146754 ], [ 55.524902, 23.946096 ], [ 55.524902, 23.543845 ], [ 55.217285, 23.120154 ], [ 55.195312, 22.715390 ], [ 54.997559, 22.512557 ], [ 51.987305, 23.019076 ], [ 51.613770, 24.026397 ], [ 51.569824, 24.246965 ], [ 51.745605, 24.307053 ], [ 51.789551, 24.026397 ], [ 52.558594, 24.186847 ], [ 53.986816, 24.126702 ], [ 54.689941, 24.806681 ], [ 55.437012, 25.443275 ], [ 56.052246, 26.056783 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.623047, 42.763146 ], [ 59.963379, 42.228517 ], [ 60.073242, 41.426253 ], [ 60.446777, 41.228249 ], [ 61.545410, 41.277806 ], [ 61.875000, 41.095912 ], [ 62.358398, 40.061257 ], [ 63.500977, 39.368279 ], [ 64.160156, 38.908133 ], [ 65.214844, 38.410558 ], [ 66.533203, 37.978845 ], [ 66.511230, 37.370157 ], [ 66.203613, 37.405074 ], [ 65.742188, 37.666429 ], [ 65.588379, 37.317752 ], [ 64.731445, 37.125286 ], [ 64.533691, 36.315125 ], [ 63.962402, 36.013561 ], [ 63.193359, 35.871247 ], [ 62.973633, 35.406961 ], [ 62.226562, 35.281501 ], [ 61.193848, 35.657296 ], [ 61.105957, 36.491973 ], [ 60.358887, 36.544949 ], [ 59.216309, 37.422526 ], [ 58.425293, 37.527154 ], [ 57.326660, 38.030786 ], [ 56.601562, 38.134557 ], [ 56.162109, 37.944198 ], [ 55.502930, 37.978845 ], [ 54.799805, 37.405074 ], [ 53.920898, 37.212832 ], [ 53.723145, 37.909534 ], [ 53.876953, 38.959409 ], [ 53.085938, 39.300299 ], [ 53.349609, 39.977120 ], [ 52.690430, 40.044438 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.647304 ], [ 54.733887, 40.963308 ], [ 53.986816, 41.557922 ], [ 53.701172, 42.130821 ], [ 52.910156, 41.869561 ], [ 52.800293, 41.145570 ], [ 52.492676, 41.787697 ], [ 52.932129, 42.130821 ], [ 54.074707, 42.326062 ], [ 54.733887, 42.049293 ], [ 55.437012, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.084961, 41.327326 ], [ 56.931152, 41.836828 ], [ 57.766113, 42.179688 ], [ 58.623047, 42.763146 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.987305, 19.020577 ], [ 53.107910, 16.657244 ], [ 52.382812, 16.383391 ], [ 52.185059, 15.940202 ], [ 52.163086, 15.601875 ], [ 51.152344, 15.178181 ], [ 49.570312, 14.711135 ], [ 48.669434, 14.008696 ], [ 48.229980, 13.966054 ], [ 47.922363, 14.008696 ], [ 47.351074, 13.603278 ], [ 46.713867, 13.410994 ], [ 45.856934, 13.368243 ], [ 45.615234, 13.304103 ], [ 45.395508, 13.047372 ], [ 45.131836, 12.961736 ], [ 44.978027, 12.704651 ], [ 44.472656, 12.726084 ], [ 44.165039, 12.597455 ], [ 43.461914, 12.640338 ], [ 43.220215, 13.239945 ], [ 43.242188, 13.774066 ], [ 43.066406, 14.072645 ], [ 42.890625, 14.817371 ], [ 42.583008, 15.220589 ], [ 42.802734, 15.262989 ], [ 42.692871, 15.728814 ], [ 42.802734, 15.919074 ], [ 42.758789, 16.362310 ], [ 43.198242, 16.678293 ], [ 43.110352, 17.098792 ], [ 43.374023, 17.581194 ], [ 43.791504, 17.329664 ], [ 44.055176, 17.413546 ], [ 45.197754, 17.434511 ], [ 45.395508, 17.350638 ], [ 46.362305, 17.245744 ], [ 46.735840, 17.287709 ], [ 46.999512, 16.951724 ], [ 47.460938, 17.119793 ], [ 48.164062, 18.166730 ], [ 49.108887, 18.625425 ], [ 51.987305, 19.020577 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.381836, 24.926295 ], [ 56.843262, 24.246965 ], [ 57.392578, 23.885838 ], [ 58.117676, 23.765237 ], [ 58.710938, 23.584126 ], [ 59.436035, 22.674847 ], [ 59.787598, 22.553147 ], [ 59.787598, 22.329752 ], [ 59.282227, 21.453069 ], [ 58.842773, 21.125498 ], [ 58.469238, 20.447602 ], [ 58.029785, 20.488773 ], [ 57.810059, 20.262197 ], [ 57.656250, 19.746024 ], [ 57.788086, 19.082884 ], [ 57.678223, 18.958246 ], [ 57.216797, 18.958246 ], [ 56.601562, 18.583776 ], [ 56.491699, 18.104087 ], [ 56.271973, 17.895114 ], [ 55.656738, 17.895114 ], [ 55.261230, 17.644022 ], [ 55.261230, 17.245744 ], [ 54.777832, 16.951724 ], [ 54.228516, 17.056785 ], [ 53.569336, 16.720385 ], [ 53.107910, 16.657244 ], [ 51.987305, 19.020577 ], [ 54.997559, 20.014645 ], [ 55.656738, 22.004175 ], [ 55.195312, 22.715390 ], [ 55.217285, 23.120154 ], [ 55.524902, 23.543845 ], [ 55.524902, 23.946096 ], [ 55.964355, 24.146754 ], [ 55.788574, 24.287027 ], [ 55.876465, 24.926295 ], [ 56.381836, 24.926295 ] ] ], [ [ [ 56.359863, 26.411551 ], [ 56.469727, 26.313113 ], [ 56.381836, 25.898762 ], [ 56.250000, 25.720735 ], [ 56.052246, 26.056783 ], [ 56.359863, 26.411551 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.132324, 11.480025 ], [ 43.461914, 11.286161 ], [ 43.659668, 10.876465 ], [ 44.099121, 10.466206 ], [ 44.604492, 10.444598 ], [ 45.549316, 10.703792 ], [ 46.625977, 10.833306 ], [ 47.504883, 11.135287 ], [ 48.010254, 11.199957 ], [ 48.361816, 11.393879 ], [ 48.933105, 11.415418 ], [ 48.933105, 9.470736 ], [ 48.471680, 8.841651 ], [ 47.768555, 8.015716 ], [ 46.933594, 8.015716 ], [ 43.659668, 9.188870 ], [ 43.286133, 9.557417 ], [ 42.539062, 10.574222 ], [ 43.132324, 11.480025 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.108398, 12.039321 ], [ 51.130371, 11.759815 ], [ 51.020508, 11.178402 ], [ 51.042480, 10.660608 ], [ 50.822754, 10.293301 ], [ 50.537109, 9.210560 ], [ 50.053711, 8.102739 ], [ 49.438477, 6.817353 ], [ 48.581543, 5.353521 ], [ 47.724609, 4.236856 ], [ 46.560059, 2.877208 ], [ 45.549316, 2.064982 ], [ 44.055176, 1.054628 ], [ 43.132324, 0.307616 ], [ 42.868652, 0.000000 ], [ 42.033691, -0.900842 ], [ 41.791992, -1.428075 ], [ 41.572266, -1.669686 ], [ 40.979004, -0.856902 ], [ 40.979004, 2.789425 ], [ 42.121582, 4.236856 ], [ 42.758789, 4.258768 ], [ 43.659668, 4.959615 ], [ 44.956055, 5.003394 ], [ 47.768555, 8.015716 ], [ 48.471680, 8.841651 ], [ 48.933105, 9.470736 ], [ 48.933105, 11.415418 ], [ 49.262695, 11.436955 ], [ 49.724121, 11.587669 ], [ 50.251465, 11.695273 ], [ 50.712891, 12.039321 ], [ 51.108398, 12.039321 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.963308 ], [ 70.444336, 40.497092 ], [ 70.598145, 40.229218 ], [ 70.993652, 40.245992 ], [ 70.642090, 39.943436 ], [ 69.543457, 40.111689 ], [ 69.455566, 39.537940 ], [ 70.532227, 39.605688 ], [ 71.784668, 39.283294 ], [ 73.674316, 39.436193 ], [ 73.916016, 38.513788 ], [ 74.245605, 38.616870 ], [ 74.860840, 38.393339 ], [ 74.816895, 37.996163 ], [ 74.970703, 37.422526 ], [ 73.937988, 37.422526 ], [ 73.256836, 37.509726 ], [ 72.619629, 37.055177 ], [ 72.180176, 36.949892 ], [ 71.828613, 36.738884 ], [ 71.433105, 37.072710 ], [ 71.520996, 37.909534 ], [ 71.235352, 37.961523 ], [ 71.345215, 38.272689 ], [ 70.795898, 38.496594 ], [ 70.356445, 38.151837 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.596824 ], [ 69.499512, 37.614231 ], [ 69.191895, 37.160317 ], [ 68.840332, 37.352693 ], [ 68.115234, 37.037640 ], [ 67.829590, 37.160317 ], [ 68.378906, 38.169114 ], [ 68.159180, 38.908133 ], [ 67.434082, 39.147103 ], [ 67.697754, 39.588757 ], [ 68.532715, 39.537940 ], [ 68.994141, 40.094882 ], [ 69.323730, 40.730608 ], [ 70.664062, 40.963308 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.795898, 38.496594 ], [ 71.345215, 38.272689 ], [ 71.235352, 37.961523 ], [ 71.520996, 37.909534 ], [ 71.433105, 37.072710 ], [ 71.828613, 36.738884 ], [ 72.180176, 36.949892 ], [ 72.619629, 37.055177 ], [ 73.256836, 37.509726 ], [ 73.937988, 37.422526 ], [ 74.970703, 37.422526 ], [ 75.146484, 37.142803 ], [ 74.575195, 37.037640 ], [ 74.047852, 36.844461 ], [ 72.905273, 36.721274 ], [ 71.828613, 36.527295 ], [ 71.257324, 36.084621 ], [ 71.477051, 35.657296 ], [ 71.608887, 35.155846 ], [ 71.103516, 34.741612 ], [ 71.147461, 34.361576 ], [ 70.861816, 33.998027 ], [ 69.916992, 34.034453 ], [ 70.312500, 33.376412 ], [ 69.675293, 33.119150 ], [ 69.257812, 32.509762 ], [ 69.301758, 31.914868 ], [ 68.906250, 31.634676 ], [ 68.554688, 31.728167 ], [ 67.785645, 31.597253 ], [ 67.675781, 31.316101 ], [ 66.928711, 31.316101 ], [ 66.379395, 30.751278 ], [ 66.335449, 29.897806 ], [ 65.039062, 29.477861 ], [ 64.335938, 29.573457 ], [ 64.138184, 29.343875 ], [ 63.544922, 29.477861 ], [ 62.534180, 29.324720 ], [ 60.864258, 29.840644 ], [ 61.765137, 30.751278 ], [ 61.699219, 31.391158 ], [ 60.930176, 31.559815 ], [ 60.842285, 32.194209 ], [ 60.534668, 32.990236 ], [ 60.952148, 33.541395 ], [ 60.512695, 33.687782 ], [ 60.798340, 34.415973 ], [ 61.193848, 35.657296 ], [ 62.226562, 35.281501 ], [ 62.973633, 35.406961 ], [ 63.193359, 35.871247 ], [ 63.962402, 36.013561 ], [ 64.533691, 36.315125 ], [ 64.731445, 37.125286 ], [ 65.588379, 37.317752 ], [ 65.742188, 37.666429 ], [ 66.203613, 37.405074 ], [ 66.511230, 37.370157 ], [ 67.060547, 37.370157 ], [ 67.829590, 37.160317 ], [ 68.115234, 37.037640 ], [ 68.840332, 37.352693 ], [ 69.191895, 37.160317 ], [ 69.499512, 37.614231 ], [ 70.114746, 37.596824 ], [ 70.268555, 37.735969 ], [ 70.356445, 38.151837 ], [ 70.795898, 38.496594 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.146484, 37.142803 ], [ 75.893555, 36.668419 ], [ 76.179199, 35.906849 ], [ 77.827148, 35.496456 ], [ 76.860352, 34.669359 ], [ 75.739746, 34.506557 ], [ 74.223633, 34.759666 ], [ 73.740234, 34.325292 ], [ 74.091797, 33.449777 ], [ 74.443359, 32.768800 ], [ 75.256348, 32.287133 ], [ 74.399414, 31.709476 ], [ 74.399414, 30.996446 ], [ 73.432617, 29.993002 ], [ 72.817383, 28.979312 ], [ 71.762695, 27.916767 ], [ 70.598145, 27.994401 ], [ 69.499512, 26.941660 ], [ 70.158691, 26.509905 ], [ 70.268555, 25.740529 ], [ 70.839844, 25.224820 ], [ 71.037598, 24.367114 ], [ 68.840332, 24.367114 ], [ 68.159180, 23.704895 ], [ 67.434082, 23.946096 ], [ 67.126465, 24.666986 ], [ 66.357422, 25.443275 ], [ 64.511719, 25.244696 ], [ 62.885742, 25.224820 ], [ 61.479492, 25.085599 ], [ 61.853027, 26.254010 ], [ 63.303223, 26.765231 ], [ 63.215332, 27.235095 ], [ 62.753906, 27.391278 ], [ 62.709961, 28.265682 ], [ 61.765137, 28.709861 ], [ 61.347656, 29.305561 ], [ 60.864258, 29.840644 ], [ 62.534180, 29.324720 ], [ 63.544922, 29.477861 ], [ 64.138184, 29.343875 ], [ 64.335938, 29.573457 ], [ 65.039062, 29.477861 ], [ 66.335449, 29.897806 ], [ 66.379395, 30.751278 ], [ 66.928711, 31.316101 ], [ 67.675781, 31.316101 ], [ 67.785645, 31.597253 ], [ 68.554688, 31.728167 ], [ 68.906250, 31.634676 ], [ 69.301758, 31.914868 ], [ 69.257812, 32.509762 ], [ 69.675293, 33.119150 ], [ 70.312500, 33.376412 ], [ 69.916992, 34.034453 ], [ 70.861816, 33.998027 ], [ 71.147461, 34.361576 ], [ 71.103516, 34.741612 ], [ 71.608887, 35.155846 ], [ 71.477051, 35.657296 ], [ 71.257324, 36.084621 ], [ 71.828613, 36.527295 ], [ 72.905273, 36.721274 ], [ 74.047852, 36.844461 ], [ 74.575195, 37.037640 ], [ 75.146484, 37.142803 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.518555, 30.429730 ], [ 82.309570, 30.126124 ], [ 83.320312, 29.477861 ], [ 83.891602, 29.324720 ], [ 84.221191, 28.844674 ], [ 84.990234, 28.652031 ], [ 85.803223, 28.207609 ], [ 86.945801, 27.974998 ], [ 88.110352, 27.877928 ], [ 88.022461, 27.449790 ], [ 88.154297, 26.824071 ], [ 88.044434, 26.431228 ], [ 87.209473, 26.411551 ], [ 86.022949, 26.647459 ], [ 85.231934, 26.745610 ], [ 84.660645, 27.235095 ], [ 83.298340, 27.371767 ], [ 81.979980, 27.936181 ], [ 81.057129, 28.420391 ], [ 80.068359, 28.806174 ], [ 80.463867, 29.745302 ], [ 81.101074, 30.202114 ], [ 81.518555, 30.429730 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 91.757812, 26.843677 ], [ 91.757812, 25.165173 ], [ 90.856934, 25.145285 ], [ 90.000000, 25.264568 ], [ 89.912109, 25.284438 ], [ 89.824219, 25.977799 ], [ 89.340820, 26.017298 ], [ 88.549805, 26.450902 ], [ 88.198242, 25.780107 ], [ 88.923340, 25.244696 ], [ 88.286133, 24.866503 ], [ 88.066406, 24.507143 ], [ 88.681641, 24.246965 ], [ 88.527832, 23.644524 ], [ 88.857422, 22.897683 ], [ 89.011230, 22.065278 ], [ 88.879395, 21.698265 ], [ 88.198242, 21.718680 ], [ 86.967773, 21.514407 ], [ 87.011719, 20.756114 ], [ 86.484375, 20.159098 ], [ 85.056152, 19.497664 ], [ 83.935547, 18.312811 ], [ 83.188477, 17.685895 ], [ 82.177734, 17.035777 ], [ 82.177734, 16.573023 ], [ 81.672363, 16.320139 ], [ 80.771484, 15.961329 ], [ 80.310059, 15.919074 ], [ 80.024414, 15.156974 ], [ 80.222168, 13.838080 ], [ 80.266113, 13.025966 ], [ 79.848633, 12.060809 ], [ 79.848633, 10.358151 ], [ 79.321289, 10.314919 ], [ 78.881836, 9.557417 ], [ 79.189453, 9.232249 ], [ 78.266602, 8.950193 ], [ 77.937012, 8.254983 ], [ 77.519531, 7.972198 ], [ 76.574707, 8.906780 ], [ 76.113281, 10.314919 ], [ 75.739746, 11.329253 ], [ 75.388184, 11.781325 ], [ 74.860840, 12.747516 ], [ 74.597168, 14.008696 ], [ 74.443359, 14.626109 ], [ 73.520508, 16.003576 ], [ 72.817383, 19.228177 ], [ 72.817383, 20.427013 ], [ 72.619629, 21.371244 ], [ 71.169434, 20.776659 ], [ 70.466309, 20.879343 ], [ 69.147949, 22.105999 ], [ 69.631348, 22.451649 ], [ 69.345703, 22.857195 ], [ 68.159180, 23.704895 ], [ 68.840332, 24.367114 ], [ 71.037598, 24.367114 ], [ 70.839844, 25.224820 ], [ 70.268555, 25.740529 ], [ 70.158691, 26.509905 ], [ 69.499512, 26.941660 ], [ 70.598145, 27.994401 ], [ 71.762695, 27.916767 ], [ 72.817383, 28.979312 ], [ 73.432617, 29.993002 ], [ 74.399414, 30.996446 ], [ 74.399414, 31.709476 ], [ 75.256348, 32.287133 ], [ 74.443359, 32.768800 ], [ 74.091797, 33.449777 ], [ 73.740234, 34.325292 ], [ 74.223633, 34.759666 ], [ 75.739746, 34.506557 ], [ 76.860352, 34.669359 ], [ 77.827148, 35.496456 ], [ 78.903809, 34.325292 ], [ 78.793945, 33.523079 ], [ 79.189453, 33.008663 ], [ 79.167480, 32.491230 ], [ 78.442383, 32.620870 ], [ 78.728027, 31.522361 ], [ 79.716797, 30.883369 ], [ 81.101074, 30.202114 ], [ 80.463867, 29.745302 ], [ 80.068359, 28.806174 ], [ 81.057129, 28.420391 ], [ 81.979980, 27.936181 ], [ 83.298340, 27.371767 ], [ 84.660645, 27.235095 ], [ 85.231934, 26.745610 ], [ 86.022949, 26.647459 ], [ 87.209473, 26.411551 ], [ 88.044434, 26.431228 ], [ 88.154297, 26.824071 ], [ 88.022461, 27.449790 ], [ 88.110352, 27.877928 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.117813 ], [ 89.736328, 26.725987 ], [ 90.000000, 26.784847 ], [ 90.351562, 26.882880 ], [ 91.208496, 26.824071 ], [ 91.757812, 26.843677 ] ] ], [ [ [ 91.757812, 24.126702 ], [ 91.757812, 23.200961 ], [ 91.691895, 22.998852 ], [ 91.142578, 23.503552 ], [ 91.450195, 24.086589 ], [ 91.757812, 24.126702 ] ] ], [ [ [ 91.757812, 27.741885 ], [ 91.691895, 27.780772 ], [ 91.757812, 27.800210 ], [ 91.757812, 27.741885 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.134277, 9.838979 ], [ 80.837402, 9.275622 ], [ 81.298828, 8.581021 ], [ 81.782227, 7.536764 ], [ 81.628418, 6.489983 ], [ 81.210938, 6.206090 ], [ 80.332031, 5.987607 ], [ 79.870605, 6.773716 ], [ 79.694824, 8.211490 ], [ 80.134277, 9.838979 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.757812, 50.666872 ], [ 91.757812, 45.182037 ], [ 90.944824, 45.290347 ], [ 90.571289, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.263672, 47.694974 ], [ 90.000000, 47.768868 ], [ 88.835449, 48.078079 ], [ 88.000488, 48.603858 ], [ 87.736816, 49.310799 ], [ 88.791504, 49.482401 ], [ 90.000000, 50.021858 ], [ 90.703125, 50.345460 ], [ 91.757812, 50.666872 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.000000, 28.304381 ], [ 90.725098, 28.071980 ], [ 91.252441, 28.052591 ], [ 91.691895, 27.780772 ], [ 91.757812, 27.741885 ], [ 91.757812, 26.843677 ], [ 91.208496, 26.824071 ], [ 90.351562, 26.882880 ], [ 90.000000, 26.784847 ], [ 89.736328, 26.725987 ], [ 88.835449, 27.117813 ], [ 88.813477, 27.313214 ], [ 89.472656, 28.052591 ], [ 90.000000, 28.304381 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.549805, 26.450902 ], [ 89.340820, 26.017298 ], [ 89.824219, 25.977799 ], [ 89.912109, 25.284438 ], [ 90.000000, 25.264568 ], [ 90.856934, 25.145285 ], [ 91.757812, 25.165173 ], [ 91.757812, 24.126702 ], [ 91.450195, 24.086589 ], [ 91.142578, 23.503552 ], [ 91.691895, 22.998852 ], [ 91.757812, 23.200961 ], [ 91.757812, 22.309426 ], [ 91.406250, 22.776182 ], [ 90.483398, 22.816694 ], [ 90.571289, 22.411029 ], [ 90.263672, 21.841105 ], [ 90.000000, 21.983801 ], [ 89.846191, 22.044913 ], [ 89.692383, 21.861499 ], [ 89.406738, 21.983801 ], [ 89.011230, 22.065278 ], [ 88.857422, 22.897683 ], [ 88.527832, 23.644524 ], [ 88.681641, 24.246965 ], [ 88.066406, 24.507143 ], [ 88.286133, 24.866503 ], [ 88.923340, 25.244696 ], [ 88.198242, 25.780107 ], [ 88.549805, 26.450902 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.736816, 49.310799 ], [ 88.000488, 48.603858 ], [ 88.835449, 48.078079 ], [ 90.000000, 47.768868 ], [ 90.263672, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.571289, 45.721522 ], [ 90.944824, 45.290347 ], [ 91.757812, 45.182037 ], [ 91.757812, 27.800210 ], [ 91.691895, 27.780772 ], [ 91.252441, 28.052591 ], [ 90.725098, 28.071980 ], [ 90.000000, 28.304381 ], [ 89.472656, 28.052591 ], [ 88.813477, 27.313214 ], [ 88.725586, 28.091366 ], [ 88.110352, 27.877928 ], [ 86.945801, 27.974998 ], [ 85.803223, 28.207609 ], [ 84.990234, 28.652031 ], [ 84.221191, 28.844674 ], [ 83.891602, 29.324720 ], [ 83.320312, 29.477861 ], [ 82.309570, 30.126124 ], [ 81.518555, 30.429730 ], [ 81.101074, 30.202114 ], [ 79.716797, 30.883369 ], [ 78.728027, 31.522361 ], [ 78.442383, 32.620870 ], [ 79.167480, 32.491230 ], [ 79.189453, 33.008663 ], [ 78.793945, 33.523079 ], [ 78.903809, 34.325292 ], [ 77.827148, 35.496456 ], [ 76.179199, 35.906849 ], [ 75.893555, 36.668419 ], [ 75.146484, 37.142803 ], [ 74.970703, 37.422526 ], [ 74.816895, 37.996163 ], [ 74.860840, 38.393339 ], [ 74.245605, 38.616870 ], [ 73.916016, 38.513788 ], [ 73.674316, 39.436193 ], [ 73.959961, 39.673370 ], [ 73.806152, 39.909736 ], [ 74.772949, 40.380028 ], [ 75.454102, 40.563895 ], [ 76.508789, 40.430224 ], [ 76.904297, 41.079351 ], [ 78.178711, 41.195190 ], [ 78.530273, 41.590797 ], [ 80.112305, 42.130821 ], [ 80.244141, 42.358544 ], [ 80.178223, 42.924252 ], [ 80.859375, 43.181147 ], [ 79.958496, 44.918139 ], [ 81.936035, 45.321254 ], [ 82.441406, 45.552525 ], [ 83.166504, 47.338823 ], [ 85.144043, 47.010226 ], [ 85.715332, 47.457809 ], [ 85.759277, 48.458352 ], [ 86.594238, 48.560250 ], [ 87.341309, 49.224773 ], [ 87.736816, 49.310799 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.941895, 2.328460 ], [ 13.073730, 2.284551 ], [ 12.985840, 1.845384 ], [ 13.271484, 1.318243 ], [ 14.018555, 1.406109 ], [ 14.260254, 1.208406 ], [ 13.842773, 0.043945 ], [ 13.864746, 0.000000 ], [ 14.304199, -0.549308 ], [ 14.414062, -1.318243 ], [ 14.326172, -1.757537 ], [ 9.162598, -1.757537 ], [ 8.789062, -1.098565 ], [ 8.811035, -0.769020 ], [ 9.030762, -0.439449 ], [ 9.184570, 0.000000 ], [ 9.492188, 1.010690 ], [ 9.821777, 1.076597 ], [ 11.271973, 1.076597 ], [ 11.271973, 2.262595 ], [ 11.733398, 2.328460 ], [ 12.348633, 2.196727 ], [ 12.941895, 2.328460 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.116699, 3.732708 ], [ 17.797852, 3.579213 ], [ 18.435059, 3.513421 ], [ 18.391113, 2.921097 ], [ 18.083496, 2.372369 ], [ 17.885742, 1.757537 ], [ 17.753906, 0.856902 ], [ 17.819824, 0.307616 ], [ 17.687988, 0.000000 ], [ 17.622070, -0.417477 ], [ 17.512207, -0.725078 ], [ 16.853027, -1.208406 ], [ 16.391602, -1.757537 ], [ 14.326172, -1.757537 ], [ 14.414062, -1.318243 ], [ 14.304199, -0.549308 ], [ 13.864746, 0.000000 ], [ 13.842773, 0.043945 ], [ 14.260254, 1.208406 ], [ 14.018555, 1.406109 ], [ 13.271484, 1.318243 ], [ 12.985840, 1.845384 ], [ 13.073730, 2.284551 ], [ 14.326172, 2.240640 ], [ 15.930176, 1.735574 ], [ 15.996094, 2.284551 ], [ 16.523438, 3.206333 ], [ 17.116699, 3.732708 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.642090, 5.266008 ], [ 26.389160, 5.156599 ], [ 27.026367, 5.134715 ], [ 27.355957, 5.244128 ], [ 27.971191, 4.412137 ], [ 28.410645, 4.302591 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.707031, 4.609278 ], [ 29.948730, 4.193030 ], [ 30.827637, 3.513421 ], [ 30.761719, 2.350415 ], [ 31.157227, 2.218684 ], [ 30.849609, 1.867345 ], [ 30.454102, 1.603794 ], [ 30.080566, 1.076597 ], [ 29.860840, 0.615223 ], [ 29.816895, 0.000000 ], [ 29.816895, -0.197754 ], [ 29.575195, -0.571280 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.603794 ], [ 29.267578, -1.757537 ], [ 16.391602, -1.757537 ], [ 16.853027, -1.208406 ], [ 17.512207, -0.725078 ], [ 17.622070, -0.417477 ], [ 17.687988, 0.000000 ], [ 17.819824, 0.307616 ], [ 17.753906, 0.856902 ], [ 17.885742, 1.757537 ], [ 18.083496, 2.372369 ], [ 18.391113, 2.921097 ], [ 18.522949, 4.214943 ], [ 18.918457, 4.718778 ], [ 19.467773, 5.047171 ], [ 20.280762, 4.696879 ], [ 20.917969, 4.324501 ], [ 21.643066, 4.236856 ], [ 22.390137, 4.039618 ], [ 22.697754, 4.653080 ], [ 22.829590, 4.718778 ], [ 23.291016, 4.631179 ], [ 24.389648, 5.112830 ], [ 24.785156, 4.915833 ], [ 25.114746, 4.937724 ], [ 25.268555, 5.178482 ], [ 25.642090, 5.266008 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.410156, -1.120534 ], [ 30.805664, -1.691649 ], [ 30.805664, -1.757537 ], [ 29.267578, -1.757537 ], [ 29.289551, -1.603794 ], [ 29.575195, -1.340210 ], [ 29.816895, -1.428075 ], [ 30.410156, -1.120534 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.881836, -0.944781 ], [ 35.310059, -1.757537 ], [ 30.805664, -1.757537 ], [ 30.805664, -1.691649 ], [ 30.410156, -1.120534 ], [ 30.761719, -1.010690 ], [ 31.860352, -1.010690 ], [ 33.881836, -0.944781 ] ] ] } } -] } -] } -, -{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.496582, 69.068563 ], [ 40.275879, 67.933397 ], [ 41.044922, 67.458082 ], [ 41.110840, 66.791909 ], [ 40.517578, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.364258, 66.000150 ], [ 35.375977, 66.513260 ], [ 33.903809, 66.765919 ], [ 33.178711, 66.635556 ], [ 33.442383, 66.513260 ], [ 34.804688, 65.901653 ], [ 34.826660, 65.802776 ], [ 30.212402, 65.802776 ], [ 29.487305, 66.513260 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.432617, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.162558 ], [ 31.091309, 69.565226 ], [ 32.124023, 69.907667 ] ] ], [ [ [ 91.757812, 65.802776 ], [ 40.473633, 65.802776 ], [ 42.077637, 66.478208 ], [ 43.000488, 66.425537 ], [ 43.945312, 66.071546 ], [ 44.318848, 66.513260 ], [ 44.516602, 66.757250 ], [ 43.681641, 67.356785 ], [ 44.187012, 67.958148 ], [ 43.439941, 68.576441 ], [ 46.230469, 68.253111 ], [ 46.801758, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.549316, 67.016009 ], [ 46.340332, 66.670387 ], [ 47.878418, 66.886972 ], [ 48.120117, 67.525373 ], [ 50.207520, 67.999341 ], [ 53.701172, 68.863517 ], [ 54.470215, 68.815927 ], [ 53.481445, 68.204212 ], [ 54.711914, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.304688, 68.471864 ], [ 58.798828, 68.887274 ], [ 59.941406, 68.285651 ], [ 61.062012, 68.942607 ], [ 60.029297, 69.526834 ], [ 60.534668, 69.854762 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.240579 ], [ 68.510742, 68.097907 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.115234, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.708984, 70.714471 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.938158 ], [ 69.191895, 72.848502 ], [ 69.938965, 73.041829 ], [ 72.575684, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.828613, 71.413177 ], [ 72.465820, 71.095425 ], [ 72.773438, 70.392606 ], [ 72.553711, 69.021414 ], [ 73.652344, 68.415352 ], [ 73.234863, 67.742759 ], [ 71.520996, 66.513260 ], [ 71.279297, 66.328685 ], [ 72.421875, 66.178266 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.539517 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.289015 ], [ 75.036621, 67.767713 ], [ 74.465332, 68.334376 ], [ 74.926758, 68.989925 ], [ 73.828125, 69.076412 ], [ 73.586426, 69.634158 ], [ 74.399414, 70.634484 ], [ 73.081055, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.641113, 72.835538 ], [ 75.146484, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.159391 ], [ 75.893555, 71.876745 ], [ 77.563477, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.595703, 72.587405 ], [ 80.507812, 73.652545 ], [ 82.243652, 73.855397 ], [ 84.638672, 73.806447 ], [ 86.813965, 73.940714 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.000000, 75.579466 ], [ 90.241699, 75.644984 ], [ 91.757812, 75.721054 ], [ 91.757812, 65.802776 ] ] ], [ [ [ 68.137207, 76.940488 ], [ 68.840332, 76.547523 ], [ 68.159180, 76.237366 ], [ 64.621582, 75.742715 ], [ 61.567383, 75.264239 ], [ 58.469238, 74.313295 ], [ 56.975098, 73.334161 ], [ 55.415039, 72.375758 ], [ 55.612793, 71.545787 ], [ 57.524414, 70.721726 ], [ 56.931152, 70.634484 ], [ 53.657227, 70.765206 ], [ 53.393555, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.437988, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.426758, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.630926 ], [ 55.612793, 75.084326 ], [ 57.854004, 75.612262 ], [ 61.149902, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.137207, 76.940488 ] ] ], [ [ [ 50.031738, 80.921494 ], [ 51.503906, 80.700447 ], [ 51.130371, 80.550126 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.342262 ], [ 48.735352, 80.178713 ], [ 47.570801, 80.012423 ], [ 46.494141, 80.249670 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.593319 ], [ 46.779785, 80.774716 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.517603 ], [ 49.086914, 80.757086 ], [ 50.031738, 80.921494 ] ] ], [ [ [ 91.757812, 80.499486 ], [ 91.757812, 80.260828 ], [ 91.164551, 80.342262 ], [ 91.757812, 80.499486 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.146973, 71.187754 ], [ 31.289062, 70.458859 ], [ 29.992676, 70.192550 ], [ 31.091309, 69.565226 ], [ 29.399414, 69.162558 ], [ 28.586426, 69.068563 ], [ 29.003906, 69.771356 ], [ 27.729492, 70.170201 ], [ 26.169434, 69.832048 ], [ 25.686035, 69.099940 ], [ 24.719238, 68.656555 ], [ 23.642578, 68.895187 ], [ 22.346191, 68.847665 ], [ 21.225586, 69.372573 ], [ 20.632324, 69.107777 ], [ 20.017090, 69.068563 ], [ 19.863281, 68.407268 ], [ 17.973633, 68.568414 ], [ 17.709961, 68.015798 ], [ 16.765137, 68.015798 ], [ 15.380859, 66.513260 ], [ 15.095215, 66.196009 ], [ 14.655762, 65.802776 ], [ 12.238770, 65.802776 ], [ 13.117676, 66.513260 ], [ 14.743652, 67.817542 ], [ 16.435547, 68.568414 ], [ 19.182129, 69.824471 ], [ 21.357422, 70.259452 ], [ 23.005371, 70.207436 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.146973, 71.187754 ] ] ], [ [ [ 16.984863, 80.054255 ], [ 18.237305, 79.702907 ], [ 21.533203, 78.958769 ], [ 19.006348, 78.564845 ], [ 18.457031, 77.827957 ], [ 17.578125, 77.641245 ], [ 17.116699, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.384706 ], [ 14.655762, 77.739618 ], [ 13.161621, 78.025574 ], [ 11.206055, 78.870048 ], [ 10.437012, 79.655668 ], [ 13.161621, 80.012423 ], [ 13.710938, 79.663556 ], [ 15.139160, 79.675377 ], [ 15.512695, 80.016233 ], [ 16.984863, 80.054255 ] ] ], [ [ [ 22.873535, 78.455425 ], [ 23.269043, 78.080156 ], [ 24.719238, 77.855723 ], [ 22.478027, 77.446940 ], [ 20.720215, 77.678812 ], [ 21.401367, 77.938647 ], [ 20.808105, 78.255861 ], [ 22.873535, 78.455425 ] ] ], [ [ [ 22.917480, 80.657741 ], [ 25.444336, 80.408388 ], [ 27.399902, 80.058050 ], [ 25.905762, 79.520657 ], [ 23.005371, 79.400085 ], [ 20.061035, 79.568506 ], [ 19.885254, 79.843346 ], [ 18.457031, 79.862701 ], [ 17.358398, 80.320120 ], [ 20.434570, 80.600499 ], [ 21.906738, 80.360675 ], [ 22.917480, 80.657741 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.632324, 69.107777 ], [ 21.972656, 68.624544 ], [ 23.532715, 67.941650 ], [ 23.554688, 66.513260 ], [ 23.554688, 66.399160 ], [ 23.884277, 66.009086 ], [ 22.653809, 65.802776 ], [ 14.655762, 65.802776 ], [ 15.095215, 66.196009 ], [ 15.380859, 66.513260 ], [ 16.765137, 68.015798 ], [ 17.709961, 68.015798 ], [ 17.973633, 68.568414 ], [ 19.863281, 68.407268 ], [ 20.017090, 69.068563 ], [ 20.632324, 69.107777 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.729492, 70.170201 ], [ 29.003906, 69.771356 ], [ 28.586426, 69.068563 ], [ 28.432617, 68.366801 ], [ 29.970703, 67.701110 ], [ 29.047852, 66.947274 ], [ 29.487305, 66.513260 ], [ 30.212402, 65.802776 ], [ 24.499512, 65.802776 ], [ 23.884277, 66.009086 ], [ 23.554688, 66.399160 ], [ 23.554688, 66.513260 ], [ 23.532715, 67.941650 ], [ 21.972656, 68.624544 ], [ 20.632324, 69.107777 ], [ 21.225586, 69.372573 ], [ 22.346191, 68.847665 ], [ 23.642578, 68.895187 ], [ 24.719238, 68.656555 ], [ 25.686035, 69.099940 ], [ 26.169434, 69.832048 ], [ 27.729492, 70.170201 ] ] ] } } -] } -] } -, -{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.769043, -65.802776 ], [ 135.856934, -66.026947 ], [ 136.186523, -66.443107 ], [ 136.604004, -66.774586 ], [ 137.438965, -66.947274 ], [ 138.581543, -66.895596 ], [ 139.899902, -66.869715 ], [ 140.800781, -66.809221 ], [ 142.119141, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.184082, -67.221053 ], [ 145.986328, -67.600849 ], [ 146.645508, -67.892086 ], [ 148.820801, -68.382996 ], [ 150.117188, -68.560384 ], [ 151.479492, -68.712465 ], [ 152.490234, -68.871439 ], [ 153.632812, -68.887274 ], [ 154.270020, -68.560384 ], [ 155.148926, -68.831802 ], [ 155.917969, -69.146920 ], [ 156.796875, -69.380313 ], [ 158.005371, -69.480672 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.222311 ], [ 161.564941, -70.576112 ], [ 162.685547, -70.736230 ], [ 163.828125, -70.714471 ], [ 164.904785, -70.772443 ], [ 166.113281, -70.750723 ], [ 167.299805, -70.830248 ], [ 168.420410, -70.966864 ], [ 169.453125, -71.201920 ], [ 170.485840, -71.399165 ], [ 171.188965, -71.691293 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.435535 ], [ 169.738770, -73.239377 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.365723, -74.164085 ], [ 166.091309, -74.378513 ], [ 165.629883, -74.770072 ], [ 164.948730, -75.140778 ], [ 164.223633, -75.458589 ], [ 163.806152, -75.866646 ], [ 163.564453, -76.237366 ], [ 163.454590, -76.689906 ], [ 163.476562, -77.064036 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.827957 ], [ 164.729004, -78.179588 ], [ 166.596680, -78.318309 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.158943 ], [ 160.905762, -79.730364 ], [ 160.729980, -80.197436 ], [ 160.312500, -80.571747 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.278386 ], [ 161.608887, -81.688321 ], [ 162.487793, -82.060929 ], [ 163.696289, -82.393703 ], [ 165.080566, -82.707031 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.387207, -83.825220 ], [ 172.265625, -84.041167 ], [ 173.210449, -84.412363 ], [ 175.979004, -84.158613 ], [ 178.264160, -84.471948 ], [ 180.000000, -84.712127 ], [ 180.000000, -85.200475 ], [ 88.242188, -85.200475 ], [ 88.242188, -66.390361 ], [ 88.352051, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.000000, -67.169955 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.110204 ], [ 92.592773, -67.187000 ], [ 93.537598, -67.204032 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.778809, -67.382150 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.711914, -67.246561 ], [ 100.371094, -66.912834 ], [ 100.876465, -66.574483 ], [ 101.052246, -66.513260 ], [ 101.557617, -66.302205 ], [ 102.414551, -65.802776 ], [ 103.754883, -65.802776 ], [ 104.238281, -65.973325 ], [ 105.292969, -66.513260 ], [ 106.171875, -66.930060 ], [ 107.160645, -66.947274 ], [ 108.061523, -66.947274 ], [ 109.138184, -66.835165 ], [ 110.214844, -66.696478 ], [ 110.786133, -66.513260 ], [ 111.049805, -66.416748 ], [ 111.730957, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.367676, -66.071546 ], [ 114.895020, -66.381560 ], [ 115.180664, -66.513260 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.816895, -67.263552 ], [ 120.849609, -67.187000 ], [ 121.640625, -66.869715 ], [ 122.299805, -66.557007 ], [ 122.871094, -66.513260 ], [ 123.200684, -66.478208 ], [ 123.398438, -66.513260 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.713857 ], [ 126.079102, -66.557007 ], [ 126.979980, -66.557007 ], [ 128.781738, -66.757250 ], [ 129.682617, -66.574483 ], [ 130.166016, -66.513260 ], [ 130.781250, -66.416748 ], [ 131.791992, -66.381560 ], [ 132.934570, -66.381560 ], [ 134.736328, -66.204876 ], [ 134.978027, -65.802776 ], [ 135.769043, -65.802776 ] ] ] } } -] } -] } -, -{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 2 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 88.242188, -66.390361 ], [ 88.352051, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.670410, -67.144365 ], [ 90.307617, -67.204032 ], [ 88.242188, -67.204032 ], [ 88.242188, -66.390361 ] ] ], [ [ [ 92.592773, -67.187000 ], [ 93.295898, -67.204032 ], [ 90.812988, -67.204032 ], [ 91.582031, -67.110204 ], [ 92.592773, -67.187000 ] ] ], [ [ [ 95.009766, -67.169955 ], [ 95.119629, -67.204032 ], [ 93.581543, -67.204032 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ] ] ], [ [ [ 99.360352, -67.204032 ], [ 98.041992, -67.204032 ], [ 98.679199, -67.110204 ], [ 99.360352, -67.204032 ] ] ], [ [ [ 103.469238, -65.694476 ], [ 104.238281, -65.973325 ], [ 105.292969, -66.513260 ], [ 106.171875, -66.930060 ], [ 107.160645, -66.947274 ], [ 108.061523, -66.947274 ], [ 109.138184, -66.835165 ], [ 110.214844, -66.696478 ], [ 110.786133, -66.513260 ], [ 111.049805, -66.416748 ], [ 111.730957, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.367676, -66.071546 ], [ 114.895020, -66.381560 ], [ 115.180664, -66.513260 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.003906, -67.204032 ], [ 99.799805, -67.204032 ], [ 100.371094, -66.912834 ], [ 100.876465, -66.574483 ], [ 101.052246, -66.513260 ], [ 101.557617, -66.302205 ], [ 102.832031, -65.558460 ], [ 103.469238, -65.694476 ] ] ], [ [ [ 135.681152, -65.576636 ], [ 135.856934, -66.026947 ], [ 136.186523, -66.443107 ], [ 136.604004, -66.774586 ], [ 137.438965, -66.947274 ], [ 138.581543, -66.895596 ], [ 139.899902, -66.869715 ], [ 140.800781, -66.809221 ], [ 142.119141, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.118164, -67.204032 ], [ 120.673828, -67.204032 ], [ 120.849609, -67.187000 ], [ 121.640625, -66.869715 ], [ 122.299805, -66.557007 ], [ 122.871094, -66.513260 ], [ 123.200684, -66.478208 ], [ 123.398438, -66.513260 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.713857 ], [ 126.079102, -66.557007 ], [ 126.979980, -66.557007 ], [ 128.781738, -66.757250 ], [ 129.682617, -66.574483 ], [ 130.166016, -66.513260 ], [ 130.781250, -66.416748 ], [ 131.791992, -66.381560 ], [ 132.934570, -66.381560 ], [ 134.736328, -66.204876 ], [ 135.021973, -65.712557 ], [ 135.065918, -65.302650 ], [ 135.681152, -65.576636 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.741211, 1.757537 ], [ 114.609375, 1.450040 ], [ 113.796387, 1.230374 ], [ 112.851562, 1.515936 ], [ 112.368164, 1.428075 ], [ 111.796875, 0.922812 ], [ 111.137695, 0.988720 ], [ 110.500488, 0.790990 ], [ 109.819336, 1.340210 ], [ 109.709473, 1.757537 ], [ 110.192871, 1.757537 ], [ 110.390625, 1.669686 ], [ 110.764160, 1.757537 ], [ 114.741211, 1.757537 ] ] ], [ [ [ 104.172363, 1.757537 ], [ 104.238281, 1.647722 ], [ 104.216309, 1.296276 ], [ 103.513184, 1.230374 ], [ 102.832031, 1.757537 ], [ 104.172363, 1.757537 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.352051, -17.329664 ], [ 178.703613, -17.623082 ], [ 178.549805, -18.145852 ], [ 177.912598, -18.271086 ], [ 177.363281, -18.145852 ], [ 177.275391, -17.706828 ], [ 177.648926, -17.371610 ], [ 178.110352, -17.497389 ], [ 178.352051, -17.329664 ] ] ], [ [ [ 180.000000, -16.066929 ], [ 180.000000, -16.551962 ], [ 179.362793, -16.783506 ], [ 178.703613, -16.993755 ], [ 178.593750, -16.636192 ], [ 179.077148, -16.425548 ], [ 179.406738, -16.362310 ], [ 180.000000, -16.066929 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.958496, -8.885072 ], [ 125.068359, -9.080400 ], [ 125.068359, -9.384032 ], [ 124.431152, -10.120302 ], [ 123.574219, -10.358151 ], [ 123.442383, -10.228437 ], [ 123.530273, -9.882275 ], [ 123.969727, -9.275622 ], [ 124.958496, -8.885072 ] ] ], [ [ [ 119.882812, -9.340672 ], [ 120.410156, -9.665738 ], [ 120.761719, -9.968851 ], [ 120.695801, -10.228437 ], [ 120.278320, -10.250060 ], [ 118.959961, -9.557417 ], [ 119.882812, -9.340672 ] ] ], [ [ [ 132.363281, -0.351560 ], [ 133.967285, -0.769020 ], [ 134.143066, -1.142502 ], [ 134.406738, -2.767478 ], [ 135.439453, -3.359889 ], [ 136.274414, -2.306506 ], [ 137.438965, -1.691649 ], [ 138.317871, -1.691649 ], [ 139.174805, -2.043024 ], [ 139.921875, -2.394322 ], [ 140.998535, -2.591889 ], [ 141.020508, -9.102097 ], [ 140.141602, -8.276727 ], [ 139.108887, -8.080985 ], [ 138.867188, -8.363693 ], [ 137.592773, -8.407168 ], [ 138.032227, -7.580328 ], [ 138.647461, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.375398 ], [ 135.988770, -4.543570 ], [ 135.153809, -4.455951 ], [ 133.659668, -3.535352 ], [ 133.352051, -4.017699 ], [ 132.978516, -4.105369 ], [ 132.736816, -3.732708 ], [ 132.736816, -3.294082 ], [ 131.989746, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.231445, -2.196727 ], [ 131.835938, -1.603794 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.922812 ], [ 131.857910, -0.681136 ], [ 132.363281, -0.351560 ] ] ], [ [ [ 117.883301, -8.080985 ], [ 118.256836, -8.341953 ], [ 118.872070, -8.276727 ], [ 119.113770, -8.689639 ], [ 117.268066, -9.037003 ], [ 116.718750, -9.015302 ], [ 117.070312, -8.450639 ], [ 117.619629, -8.428904 ], [ 117.883301, -8.080985 ] ] ], [ [ [ 122.893066, -8.080985 ], [ 122.739258, -8.646196 ], [ 121.245117, -8.928487 ], [ 119.904785, -8.798225 ], [ 119.904785, -8.428904 ], [ 120.695801, -8.233237 ], [ 121.333008, -8.515836 ], [ 121.992188, -8.450639 ], [ 122.893066, -8.080985 ] ] ], [ [ [ 106.040039, -5.878332 ], [ 107.248535, -5.943900 ], [ 108.061523, -6.337137 ], [ 108.479004, -6.402648 ], [ 108.610840, -6.773716 ], [ 110.522461, -6.860985 ], [ 110.742188, -6.446318 ], [ 112.609863, -6.926427 ], [ 112.961426, -7.580328 ], [ 114.477539, -7.776309 ], [ 115.686035, -8.363693 ], [ 114.543457, -8.733077 ], [ 113.444824, -8.341953 ], [ 112.543945, -8.363693 ], [ 111.511230, -8.298470 ], [ 110.566406, -8.102739 ], [ 109.423828, -7.732765 ], [ 108.676758, -7.623887 ], [ 108.259277, -7.754537 ], [ 106.435547, -7.340675 ], [ 106.259766, -6.904614 ], [ 105.358887, -6.839170 ], [ 106.040039, -5.878332 ] ] ], [ [ [ 134.494629, -5.441022 ], [ 134.714355, -5.725311 ], [ 134.714355, -6.206090 ], [ 134.208984, -6.882800 ], [ 134.099121, -6.140555 ], [ 134.494629, -5.441022 ] ] ], [ [ [ 102.041016, 1.757537 ], [ 102.480469, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.820801, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.425293, -0.703107 ], [ 103.996582, -1.054628 ], [ 104.348145, -1.076597 ], [ 104.523926, -1.779499 ], [ 104.875488, -2.328460 ], [ 105.600586, -2.416276 ], [ 106.105957, -3.052754 ], [ 105.842285, -4.302591 ], [ 105.798340, -5.834616 ], [ 104.699707, -5.856475 ], [ 103.864746, -5.025283 ], [ 102.568359, -4.214943 ], [ 102.150879, -3.601142 ], [ 101.381836, -2.789425 ], [ 100.898438, -2.043024 ], [ 100.129395, -0.637194 ], [ 99.448242, 0.000000 ], [ 99.250488, 0.197754 ], [ 98.964844, 1.054628 ], [ 98.613281, 1.757537 ], [ 102.041016, 1.757537 ] ] ], [ [ [ 125.046387, 1.647722 ], [ 125.222168, 1.428075 ], [ 124.431152, 0.439449 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.395505 ], [ 120.168457, 0.241699 ], [ 120.124512, 0.000000 ], [ 120.036621, -0.505365 ], [ 120.915527, -1.406109 ], [ 121.464844, -0.944781 ], [ 123.332520, -0.615223 ], [ 123.244629, -1.054628 ], [ 122.805176, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.486816, -1.889306 ], [ 122.453613, -3.184394 ], [ 122.255859, -3.513421 ], [ 123.156738, -4.674980 ], [ 123.156738, -5.331644 ], [ 122.607422, -5.615986 ], [ 122.233887, -5.266008 ], [ 122.717285, -4.455951 ], [ 121.728516, -4.850154 ], [ 121.486816, -4.565474 ], [ 121.618652, -4.171115 ], [ 120.893555, -3.601142 ], [ 120.959473, -2.613839 ], [ 120.300293, -2.921097 ], [ 120.388184, -4.083453 ], [ 120.410156, -5.506640 ], [ 119.794922, -5.659719 ], [ 119.355469, -5.375398 ], [ 119.641113, -4.455951 ], [ 119.487305, -3.491489 ], [ 119.069824, -3.469557 ], [ 118.762207, -2.789425 ], [ 119.179688, -2.130856 ], [ 119.311523, -1.340210 ], [ 119.772949, 0.000000 ], [ 120.014648, 0.571280 ], [ 120.871582, 1.318243 ], [ 121.662598, 1.032659 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.046387, 1.647722 ] ] ], [ [ [ 117.949219, 1.757537 ], [ 118.981934, 0.922812 ], [ 117.795410, 0.790990 ], [ 117.465820, 0.109863 ], [ 117.465820, 0.000000 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.472006 ], [ 116.520996, -2.482133 ], [ 116.147461, -3.995781 ], [ 115.993652, -3.645000 ], [ 114.851074, -4.105369 ], [ 114.455566, -3.491489 ], [ 113.752441, -3.425692 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.687012, -2.986927 ], [ 111.027832, -3.030812 ], [ 110.214844, -2.921097 ], [ 110.061035, -1.581830 ], [ 109.555664, -1.296276 ], [ 109.072266, -0.439449 ], [ 109.006348, 0.000000 ], [ 108.940430, 0.417477 ], [ 109.050293, 1.362176 ], [ 109.423828, 1.757537 ], [ 109.709473, 1.757537 ], [ 109.819336, 1.340210 ], [ 110.500488, 0.790990 ], [ 111.137695, 0.988720 ], [ 111.796875, 0.922812 ], [ 112.368164, 1.428075 ], [ 112.851562, 1.515936 ], [ 113.796387, 1.230374 ], [ 114.609375, 1.450040 ], [ 114.741211, 1.757537 ], [ 117.949219, 1.757537 ] ] ], [ [ [ 129.353027, -2.789425 ], [ 130.451660, -3.074695 ], [ 130.825195, -3.842332 ], [ 129.990234, -3.425692 ], [ 129.133301, -3.359889 ], [ 128.583984, -3.425692 ], [ 127.880859, -3.381824 ], [ 128.122559, -2.833317 ], [ 129.353027, -2.789425 ] ] ], [ [ [ 126.979980, -3.118576 ], [ 127.243652, -3.447625 ], [ 126.870117, -3.776559 ], [ 126.166992, -3.601142 ], [ 125.969238, -3.162456 ], [ 126.979980, -3.118576 ] ] ], [ [ [ 127.968750, 1.757537 ], [ 127.990723, 1.647722 ], [ 128.583984, 1.559866 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.373533 ], [ 128.012695, 0.000000 ], [ 127.946777, -0.241699 ], [ 128.364258, -0.769020 ], [ 128.078613, -0.878872 ], [ 127.683105, -0.263671 ], [ 127.617188, 0.000000 ], [ 127.397461, 1.032659 ], [ 127.573242, 1.757537 ], [ 127.968750, 1.757537 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.936035, -8.254983 ], [ 127.331543, -8.385431 ], [ 126.958008, -8.667918 ], [ 125.925293, -9.102097 ], [ 125.068359, -9.384032 ], [ 125.068359, -9.080400 ], [ 124.958496, -8.885072 ], [ 125.068359, -8.646196 ], [ 125.925293, -8.428904 ], [ 126.628418, -8.385431 ], [ 126.936035, -8.254983 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.733887, -40.697299 ], [ 145.393066, -40.780541 ], [ 146.359863, -41.129021 ], [ 147.678223, -40.797177 ], [ 148.271484, -40.863680 ], [ 148.359375, -42.049293 ], [ 148.007812, -42.391009 ], [ 147.897949, -43.197167 ], [ 147.546387, -42.924252 ], [ 146.865234, -43.628123 ], [ 146.645508, -43.580391 ], [ 146.030273, -43.548548 ], [ 145.415039, -42.682435 ], [ 145.283203, -42.032974 ], [ 144.711914, -41.162114 ], [ 144.733887, -40.697299 ] ] ], [ [ [ 142.514648, -10.660608 ], [ 142.778320, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.107910, -11.888853 ], [ 143.151855, -12.318536 ], [ 143.503418, -12.833226 ], [ 143.591309, -13.389620 ], [ 143.547363, -13.752725 ], [ 143.920898, -14.541050 ], [ 144.558105, -14.157882 ], [ 144.887695, -14.583583 ], [ 145.371094, -14.966013 ], [ 145.261230, -15.411319 ], [ 145.480957, -16.277960 ], [ 145.634766, -16.783506 ], [ 145.876465, -16.888660 ], [ 146.140137, -17.748687 ], [ 146.052246, -18.271086 ], [ 146.381836, -18.958246 ], [ 147.458496, -19.476950 ], [ 148.842773, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.282227, -21.248422 ], [ 149.677734, -22.329752 ], [ 150.073242, -22.105999 ], [ 150.468750, -22.553147 ], [ 150.710449, -22.390714 ], [ 150.886230, -23.443089 ], [ 152.072754, -24.447150 ], [ 152.841797, -25.264568 ], [ 153.127441, -26.056783 ], [ 153.149414, -26.627818 ], [ 153.083496, -27.254630 ], [ 153.566895, -28.091366 ], [ 153.500977, -28.979312 ], [ 153.061523, -30.334954 ], [ 153.083496, -30.921076 ], [ 152.885742, -31.634676 ], [ 152.446289, -32.546813 ], [ 151.699219, -33.027088 ], [ 151.325684, -33.815666 ], [ 150.996094, -34.307144 ], [ 150.710449, -35.155846 ], [ 150.314941, -35.657296 ], [ 150.073242, -36.403600 ], [ 149.941406, -37.107765 ], [ 149.985352, -37.422526 ], [ 149.414062, -37.770715 ], [ 148.293457, -37.805444 ], [ 147.370605, -38.203655 ], [ 146.909180, -38.599700 ], [ 146.315918, -39.027719 ], [ 145.480957, -38.582526 ], [ 144.865723, -38.410558 ], [ 145.019531, -37.892196 ], [ 144.470215, -38.082690 ], [ 143.591309, -38.805470 ], [ 142.163086, -38.376115 ], [ 141.591797, -38.307181 ], [ 140.625000, -38.013476 ], [ 139.987793, -37.387617 ], [ 139.790039, -36.633162 ], [ 139.570312, -36.137875 ], [ 139.064941, -35.728677 ], [ 138.120117, -35.603719 ], [ 138.427734, -35.119909 ], [ 138.186035, -34.379713 ], [ 137.702637, -35.065973 ], [ 136.823730, -35.245619 ], [ 137.351074, -34.705493 ], [ 137.482910, -34.125448 ], [ 137.878418, -33.632916 ], [ 137.790527, -32.898038 ], [ 136.977539, -33.742613 ], [ 136.362305, -34.089061 ], [ 135.988770, -34.885931 ], [ 135.197754, -34.470335 ], [ 135.219727, -33.943360 ], [ 134.604492, -33.211116 ], [ 134.077148, -32.842674 ], [ 134.252930, -32.602362 ], [ 132.978516, -32.008076 ], [ 132.275391, -31.970804 ], [ 131.308594, -31.484893 ], [ 129.528809, -31.578535 ], [ 127.089844, -32.268555 ], [ 126.145020, -32.212801 ], [ 125.068359, -32.713355 ], [ 124.211426, -32.953368 ], [ 124.013672, -33.468108 ], [ 123.640137, -33.888658 ], [ 122.805176, -33.906896 ], [ 122.167969, -33.998027 ], [ 121.289062, -33.815666 ], [ 120.563965, -33.925130 ], [ 119.882812, -33.961586 ], [ 119.289551, -34.506557 ], [ 119.003906, -34.452218 ], [ 118.498535, -34.741612 ], [ 118.015137, -35.047987 ], [ 117.290039, -35.012002 ], [ 116.608887, -35.012002 ], [ 115.554199, -34.379713 ], [ 115.004883, -34.179998 ], [ 115.026855, -33.614619 ], [ 115.532227, -33.486435 ], [ 115.708008, -33.247876 ], [ 115.664062, -32.898038 ], [ 115.795898, -32.194209 ], [ 115.686035, -31.597253 ], [ 115.158691, -30.600094 ], [ 114.982910, -30.012031 ], [ 115.026855, -29.458731 ], [ 114.631348, -28.806174 ], [ 114.609375, -28.497661 ], [ 114.169922, -28.110749 ], [ 114.038086, -27.332735 ], [ 113.466797, -26.529565 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.529565 ], [ 113.422852, -25.601902 ], [ 113.928223, -25.898762 ], [ 114.213867, -26.293415 ], [ 114.213867, -25.780107 ], [ 113.708496, -24.986058 ], [ 113.620605, -24.666986 ], [ 113.378906, -24.367114 ], [ 113.488770, -23.805450 ], [ 113.686523, -23.543845 ], [ 113.840332, -23.059516 ], [ 113.730469, -22.471955 ], [ 114.147949, -21.739091 ], [ 114.213867, -22.512557 ], [ 114.631348, -21.820708 ], [ 115.444336, -21.493964 ], [ 115.927734, -21.063997 ], [ 116.696777, -20.694462 ], [ 117.158203, -20.612220 ], [ 117.421875, -20.735566 ], [ 118.212891, -20.365228 ], [ 118.828125, -20.262197 ], [ 118.981934, -20.035290 ], [ 119.245605, -19.952696 ], [ 119.794922, -19.973349 ], [ 120.849609, -19.663280 ], [ 121.398926, -19.228177 ], [ 121.640625, -18.687879 ], [ 122.233887, -18.187607 ], [ 122.299805, -17.245744 ], [ 123.002930, -16.404470 ], [ 123.420410, -17.266728 ], [ 123.837891, -17.056785 ], [ 123.486328, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.320139 ], [ 124.365234, -15.559544 ], [ 124.914551, -15.072124 ], [ 125.156250, -14.668626 ], [ 125.661621, -14.498508 ], [ 125.683594, -14.221789 ], [ 126.123047, -14.328260 ], [ 126.123047, -14.093957 ], [ 127.045898, -13.816744 ], [ 127.792969, -14.264383 ], [ 128.342285, -14.859850 ], [ 128.979492, -14.859850 ], [ 129.616699, -14.966013 ], [ 129.396973, -14.413400 ], [ 129.880371, -13.603278 ], [ 130.319824, -13.346865 ], [ 130.166016, -13.090179 ], [ 130.605469, -12.533115 ], [ 131.220703, -12.168226 ], [ 131.726074, -12.297068 ], [ 132.561035, -12.103781 ], [ 132.539062, -11.587669 ], [ 131.813965, -11.264612 ], [ 132.341309, -11.113727 ], [ 133.000488, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.670410, -11.931852 ], [ 135.285645, -12.232655 ], [ 135.878906, -11.953349 ], [ 136.252441, -12.039321 ], [ 136.472168, -11.845847 ], [ 136.933594, -12.340002 ], [ 136.669922, -12.876070 ], [ 136.296387, -13.282719 ], [ 135.944824, -13.304103 ], [ 136.076660, -13.710035 ], [ 135.769043, -14.221789 ], [ 135.417480, -14.711135 ], [ 135.483398, -14.987240 ], [ 136.274414, -15.538376 ], [ 137.043457, -15.855674 ], [ 137.570801, -16.214675 ], [ 138.295898, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.086914, -17.056785 ], [ 139.240723, -17.350638 ], [ 140.207520, -17.706828 ], [ 140.866699, -17.350638 ], [ 141.262207, -16.383391 ], [ 141.394043, -15.834536 ], [ 141.701660, -15.029686 ], [ 141.547852, -14.541050 ], [ 141.613770, -14.264383 ], [ 141.503906, -13.688688 ], [ 141.635742, -12.940322 ], [ 141.833496, -12.726084 ], [ 141.679688, -12.404389 ], [ 141.921387, -11.867351 ], [ 142.097168, -11.307708 ], [ 142.141113, -11.027472 ], [ 142.514648, -10.660608 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.998535, -2.591889 ], [ 142.734375, -3.272146 ], [ 144.580078, -3.842332 ], [ 145.261230, -4.368320 ], [ 145.810547, -4.872048 ], [ 145.964355, -5.462896 ], [ 147.634277, -6.075011 ], [ 147.875977, -6.599131 ], [ 146.953125, -6.708254 ], [ 147.172852, -7.384258 ], [ 148.073730, -8.037473 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.058702 ], [ 149.260254, -9.514079 ], [ 150.029297, -9.665738 ], [ 149.721680, -9.860628 ], [ 150.798340, -10.293301 ], [ 150.688477, -10.574222 ], [ 150.007324, -10.639014 ], [ 149.765625, -10.379765 ], [ 147.897949, -10.120302 ], [ 147.128906, -9.492408 ], [ 146.557617, -8.928487 ], [ 146.030273, -8.059230 ], [ 144.733887, -7.623887 ], [ 143.876953, -7.906912 ], [ 143.283691, -8.233237 ], [ 143.393555, -8.971897 ], [ 142.624512, -9.318990 ], [ 142.053223, -9.145486 ], [ 141.020508, -9.102097 ], [ 140.998535, -2.591889 ] ] ], [ [ [ 154.643555, -5.025283 ], [ 154.753418, -5.331644 ], [ 155.061035, -5.550381 ], [ 155.544434, -6.184246 ], [ 156.005859, -6.533645 ], [ 155.874023, -6.817353 ], [ 155.588379, -6.904614 ], [ 155.148926, -6.533645 ], [ 154.709473, -5.900189 ], [ 154.511719, -5.134715 ], [ 154.643555, -5.025283 ] ] ], [ [ [ 152.116699, -4.127285 ], [ 152.336426, -4.302591 ], [ 152.314453, -4.850154 ], [ 151.962891, -5.462896 ], [ 151.457520, -5.550381 ], [ 151.281738, -5.834616 ], [ 150.227051, -6.315299 ], [ 149.699707, -6.315299 ], [ 148.886719, -6.009459 ], [ 148.315430, -5.725311 ], [ 148.381348, -5.419148 ], [ 149.282227, -5.572250 ], [ 149.831543, -5.484768 ], [ 149.985352, -5.025283 ], [ 150.139160, -4.981505 ], [ 150.227051, -5.528511 ], [ 150.798340, -5.441022 ], [ 151.083984, -5.112830 ], [ 151.633301, -4.740675 ], [ 151.523438, -4.149201 ], [ 152.116699, -4.127285 ] ] ], [ [ [ 150.930176, -2.482133 ], [ 151.479492, -2.767478 ], [ 152.226562, -3.228271 ], [ 152.622070, -3.645000 ], [ 153.017578, -3.973861 ], [ 153.127441, -4.499762 ], [ 152.819824, -4.762573 ], [ 152.622070, -4.171115 ], [ 152.402344, -3.776559 ], [ 151.369629, -3.030812 ], [ 150.644531, -2.723583 ], [ 150.930176, -2.482133 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.301270, -10.185187 ], [ 161.916504, -10.444598 ], [ 162.114258, -10.466206 ], [ 162.377930, -10.811724 ], [ 161.696777, -10.811724 ], [ 161.301270, -10.185187 ] ] ], [ [ [ 159.697266, -9.232249 ], [ 160.356445, -9.384032 ], [ 160.686035, -9.600750 ], [ 160.839844, -9.860628 ], [ 160.444336, -9.882275 ], [ 159.829102, -9.774025 ], [ 159.631348, -9.622414 ], [ 159.697266, -9.232249 ] ] ], [ [ [ 160.905762, -8.298470 ], [ 161.279297, -9.102097 ], [ 161.674805, -9.579084 ], [ 161.520996, -9.774025 ], [ 160.773926, -8.906780 ], [ 160.576172, -8.298470 ], [ 160.905762, -8.298470 ] ] ], [ [ [ 158.356934, -7.318882 ], [ 158.818359, -7.558547 ], [ 159.631348, -8.015716 ], [ 159.873047, -8.320212 ], [ 159.916992, -8.537565 ], [ 159.125977, -8.102739 ], [ 158.576660, -7.754537 ], [ 158.203125, -7.406048 ], [ 158.356934, -7.318882 ] ] ], [ [ [ 156.533203, -6.599131 ], [ 157.126465, -7.013668 ], [ 157.521973, -7.340675 ], [ 157.324219, -7.384258 ], [ 156.884766, -7.166300 ], [ 156.489258, -6.751896 ], [ 156.533203, -6.599131 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.211914, -15.876809 ], [ 167.827148, -16.446622 ], [ 167.497559, -16.594081 ], [ 167.167969, -16.151369 ], [ 167.211914, -15.876809 ] ] ], [ [ [ 166.618652, -14.626109 ], [ 167.102051, -14.923554 ], [ 167.255859, -15.728814 ], [ 166.992188, -15.601875 ], [ 166.772461, -15.665354 ], [ 166.640625, -15.390136 ], [ 166.618652, -14.626109 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.025879, -20.097206 ], [ 164.443359, -20.117840 ], [ 165.014648, -20.447602 ], [ 165.761719, -21.063997 ], [ 166.596680, -21.698265 ], [ 167.102051, -22.146708 ], [ 166.728516, -22.390714 ], [ 166.179199, -22.126355 ], [ 165.454102, -21.677848 ], [ 164.816895, -21.145992 ], [ 164.157715, -20.427013 ], [ 164.025879, -20.097206 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.792969, -40.480381 ], [ 173.012695, -40.913513 ], [ 173.232422, -41.327326 ], [ 173.957520, -40.913513 ], [ 174.243164, -41.343825 ], [ 174.243164, -41.754922 ], [ 173.210449, -42.956423 ], [ 172.705078, -43.357138 ], [ 173.078613, -43.850374 ], [ 172.287598, -43.850374 ], [ 171.452637, -44.229457 ], [ 171.166992, -44.887012 ], [ 170.595703, -45.905300 ], [ 169.321289, -46.634351 ], [ 168.398438, -46.619261 ], [ 167.761230, -46.286224 ], [ 166.662598, -46.210250 ], [ 166.508789, -45.844108 ], [ 167.036133, -45.104546 ], [ 168.288574, -44.119142 ], [ 168.947754, -43.929550 ], [ 169.650879, -43.548548 ], [ 170.507812, -43.020714 ], [ 171.123047, -42.504503 ], [ 171.562500, -41.754922 ], [ 171.936035, -41.508577 ], [ 172.089844, -40.946714 ], [ 172.792969, -40.480381 ] ] ], [ [ [ 172.990723, -34.434098 ], [ 173.540039, -34.994004 ], [ 174.309082, -35.263562 ], [ 174.594727, -36.155618 ], [ 175.319824, -37.195331 ], [ 175.341797, -36.509636 ], [ 175.803223, -36.791691 ], [ 175.957031, -37.544577 ], [ 176.748047, -37.874853 ], [ 177.429199, -37.944198 ], [ 178.000488, -37.579413 ], [ 178.505859, -37.683820 ], [ 178.264160, -38.582526 ], [ 177.956543, -39.164141 ], [ 177.187500, -39.130060 ], [ 176.923828, -39.436193 ], [ 177.011719, -39.876019 ], [ 176.000977, -41.277806 ], [ 175.231934, -41.672912 ], [ 175.056152, -41.409776 ], [ 174.638672, -41.277806 ], [ 175.209961, -40.446947 ], [ 174.880371, -39.892880 ], [ 173.803711, -39.504041 ], [ 173.847656, -39.130060 ], [ 174.572754, -38.788345 ], [ 174.726562, -38.013476 ], [ 174.682617, -37.370157 ], [ 174.287109, -36.703660 ], [ 174.309082, -36.527295 ], [ 173.825684, -36.120128 ], [ 173.034668, -35.227672 ], [ 172.617188, -34.524661 ], [ 172.990723, -34.434098 ] ] ] ] } } -] } -] } -, -{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 180.000000, 67.204032 ], [ 180.000000, 64.988651 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.614459 ], [ 178.308105, 64.081805 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.472656, 62.573106 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.658595 ], [ 172.133789, 60.951777 ], [ 170.683594, 60.337823 ], [ 170.310059, 59.888937 ], [ 168.881836, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.827637, 60.163376 ], [ 164.860840, 59.734253 ], [ 163.520508, 59.877912 ], [ 163.212891, 59.220934 ], [ 162.004395, 58.251727 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.621875 ], [ 163.037109, 56.170023 ], [ 162.114258, 56.133307 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.863963 ], [ 160.356445, 54.354956 ], [ 160.004883, 53.212612 ], [ 158.510742, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.774902, 51.013755 ], [ 156.401367, 51.713416 ], [ 155.983887, 53.159947 ], [ 155.412598, 55.391592 ], [ 155.895996, 56.776808 ], [ 156.752930, 57.373938 ], [ 156.796875, 57.833055 ], [ 158.356934, 58.066256 ], [ 160.136719, 59.321981 ], [ 161.850586, 60.348696 ], [ 163.652344, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.471724 ], [ 162.641602, 61.648162 ], [ 160.114746, 60.554579 ], [ 159.301758, 61.783513 ], [ 156.708984, 61.438767 ], [ 154.204102, 59.767460 ], [ 155.039062, 59.153403 ], [ 152.797852, 58.893296 ], [ 151.259766, 58.790978 ], [ 151.325684, 59.512029 ], [ 149.765625, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.344395 ], [ 142.185059, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.109863, 54.737308 ], [ 136.691895, 54.610255 ], [ 137.175293, 53.981935 ], [ 138.164062, 53.761702 ], [ 138.801270, 54.265224 ], [ 139.899902, 54.201010 ], [ 141.328125, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.581055, 51.248163 ], [ 140.493164, 50.050085 ], [ 140.053711, 48.458352 ], [ 138.537598, 47.010226 ], [ 138.208008, 46.316584 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.293200 ], [ 130.935059, 42.553080 ], [ 130.759277, 42.228517 ], [ 130.627441, 42.407235 ], [ 130.627441, 42.908160 ], [ 131.132812, 42.940339 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.980342 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.099121, 47.219568 ], [ 134.494629, 47.591346 ], [ 135.021973, 48.487486 ], [ 133.352051, 48.195387 ], [ 132.495117, 47.798397 ], [ 130.979004, 47.798397 ], [ 130.561523, 48.734455 ], [ 129.396973, 49.453843 ], [ 127.639160, 49.767074 ], [ 127.265625, 50.750359 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.795027 ], [ 125.925293, 52.802761 ], [ 125.046387, 53.173119 ], [ 123.552246, 53.461890 ], [ 122.233887, 53.435719 ], [ 120.981445, 53.252069 ], [ 120.168457, 52.762892 ], [ 120.717773, 52.522906 ], [ 120.717773, 51.971346 ], [ 120.168457, 51.645294 ], [ 119.267578, 50.583237 ], [ 119.267578, 50.148746 ], [ 117.861328, 49.525208 ], [ 116.674805, 49.894634 ], [ 115.466309, 49.809632 ], [ 114.960938, 50.148746 ], [ 114.345703, 50.261254 ], [ 112.895508, 49.553726 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.138597 ], [ 109.401855, 49.296472 ], [ 108.457031, 49.296472 ], [ 107.863770, 49.795450 ], [ 106.875000, 50.275299 ], [ 105.886230, 50.415519 ], [ 104.611816, 50.289339 ], [ 103.666992, 50.092393 ], [ 102.238770, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.876465, 51.522416 ], [ 99.975586, 51.645294 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.217773, 50.429518 ], [ 97.250977, 49.738682 ], [ 95.800781, 49.979488 ], [ 94.812012, 50.021858 ], [ 94.130859, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.219238, 50.805935 ], [ 90.703125, 50.345460 ], [ 90.000000, 50.021858 ], [ 88.791504, 49.482401 ], [ 88.242188, 49.382373 ], [ 88.242188, 67.204032 ], [ 180.000000, 67.204032 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.239746, 52.749594 ], [ 143.217773, 51.767840 ], [ 143.635254, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.845164 ], [ 143.503418, 46.149394 ], [ 142.734375, 46.754917 ], [ 142.075195, 45.981695 ], [ 141.899414, 46.815099 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.119141, 49.624946 ], [ 142.163086, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.774689 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 88.242188, 25.839449 ], [ 88.242188, 27.936181 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.117813 ], [ 89.736328, 26.725987 ], [ 90.000000, 26.784847 ], [ 90.351562, 26.882880 ], [ 91.208496, 26.824071 ], [ 92.021484, 26.843677 ], [ 92.087402, 27.469287 ], [ 91.691895, 27.780772 ], [ 92.482910, 27.897349 ], [ 93.405762, 28.652031 ], [ 94.548340, 29.286399 ], [ 95.383301, 29.036961 ], [ 96.108398, 29.458731 ], [ 96.569824, 28.844674 ], [ 96.240234, 28.420391 ], [ 97.316895, 28.265682 ], [ 97.382812, 27.897349 ], [ 97.031250, 27.702984 ], [ 97.119141, 27.098254 ], [ 96.416016, 27.274161 ], [ 95.119629, 26.588527 ], [ 95.141602, 26.017298 ], [ 94.592285, 25.165173 ], [ 94.548340, 24.686952 ], [ 94.086914, 23.865745 ], [ 93.317871, 24.086589 ], [ 93.273926, 23.059516 ], [ 93.054199, 22.715390 ], [ 93.164062, 22.289096 ], [ 92.658691, 22.044913 ], [ 92.131348, 23.644524 ], [ 91.867676, 23.624395 ], [ 91.691895, 22.998852 ], [ 91.142578, 23.503552 ], [ 91.450195, 24.086589 ], [ 91.911621, 24.146754 ], [ 92.373047, 24.986058 ], [ 91.779785, 25.165173 ], [ 90.856934, 25.145285 ], [ 90.000000, 25.264568 ], [ 89.912109, 25.284438 ], [ 89.824219, 25.977799 ], [ 89.340820, 26.017298 ], [ 88.549805, 26.450902 ], [ 88.242188, 25.839449 ] ] ], [ [ [ 88.242188, 24.447150 ], [ 88.681641, 24.246965 ], [ 88.527832, 23.644524 ], [ 88.857422, 22.897683 ], [ 89.011230, 22.065278 ], [ 88.879395, 21.698265 ], [ 88.242188, 21.718680 ], [ 88.242188, 24.447150 ] ] ], [ [ [ 88.242188, 25.760320 ], [ 88.923340, 25.244696 ], [ 88.286133, 24.866503 ], [ 88.242188, 24.766785 ], [ 88.242188, 25.760320 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.854980, 52.052490 ], [ 99.975586, 51.645294 ], [ 100.876465, 51.522416 ], [ 102.062988, 51.261915 ], [ 102.238770, 50.513427 ], [ 103.666992, 50.092393 ], [ 104.611816, 50.289339 ], [ 105.886230, 50.415519 ], [ 106.875000, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.457031, 49.296472 ], [ 109.401855, 49.296472 ], [ 110.654297, 49.138597 ], [ 111.577148, 49.382373 ], [ 112.895508, 49.553726 ], [ 114.345703, 50.261254 ], [ 114.960938, 50.148746 ], [ 115.466309, 49.809632 ], [ 116.674805, 49.894634 ], [ 116.191406, 49.138597 ], [ 115.466309, 48.136767 ], [ 115.729980, 47.739323 ], [ 116.301270, 47.857403 ], [ 117.290039, 47.709762 ], [ 118.059082, 48.078079 ], [ 118.850098, 47.754098 ], [ 119.750977, 47.055154 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.815099 ], [ 117.399902, 46.679594 ], [ 116.696777, 46.392411 ], [ 115.971680, 45.736860 ], [ 114.455566, 45.352145 ], [ 113.444824, 44.809122 ], [ 111.862793, 45.104546 ], [ 111.335449, 44.465151 ], [ 111.665039, 44.087585 ], [ 111.818848, 43.755225 ], [ 111.115723, 43.421009 ], [ 110.390625, 42.875964 ], [ 109.226074, 42.520700 ], [ 107.731934, 42.488302 ], [ 106.127930, 42.147114 ], [ 104.963379, 41.607228 ], [ 104.501953, 41.918629 ], [ 103.293457, 41.918629 ], [ 101.821289, 42.520700 ], [ 100.832520, 42.666281 ], [ 99.514160, 42.536892 ], [ 97.448730, 42.763146 ], [ 96.328125, 42.730874 ], [ 95.756836, 43.325178 ], [ 95.295410, 44.245199 ], [ 94.680176, 44.355278 ], [ 93.471680, 44.980342 ], [ 92.131348, 45.120053 ], [ 90.944824, 45.290347 ], [ 90.571289, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.263672, 47.694974 ], [ 90.000000, 47.768868 ], [ 88.835449, 48.078079 ], [ 88.242188, 48.458352 ], [ 88.242188, 49.382373 ], [ 88.791504, 49.482401 ], [ 90.000000, 50.021858 ], [ 90.703125, 50.345460 ], [ 92.219238, 50.805935 ], [ 93.098145, 50.499452 ], [ 94.130859, 50.485474 ], [ 94.812012, 50.021858 ], [ 95.800781, 49.979488 ], [ 97.250977, 49.738682 ], [ 98.217773, 50.429518 ], [ 97.822266, 51.013755 ], [ 98.854980, 52.052490 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.000000, 28.304381 ], [ 90.725098, 28.071980 ], [ 91.252441, 28.052591 ], [ 91.691895, 27.780772 ], [ 92.087402, 27.469287 ], [ 92.021484, 26.843677 ], [ 91.208496, 26.824071 ], [ 90.351562, 26.882880 ], [ 90.000000, 26.784847 ], [ 89.736328, 26.725987 ], [ 88.835449, 27.117813 ], [ 88.813477, 27.313214 ], [ 89.472656, 28.052591 ], [ 90.000000, 28.304381 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.549805, 26.450902 ], [ 89.340820, 26.017298 ], [ 89.824219, 25.977799 ], [ 89.912109, 25.284438 ], [ 90.000000, 25.264568 ], [ 90.856934, 25.145285 ], [ 91.779785, 25.165173 ], [ 92.373047, 24.986058 ], [ 91.911621, 24.146754 ], [ 91.450195, 24.086589 ], [ 91.142578, 23.503552 ], [ 91.691895, 22.998852 ], [ 91.867676, 23.624395 ], [ 92.131348, 23.644524 ], [ 92.658691, 22.044913 ], [ 92.636719, 21.330315 ], [ 92.285156, 21.493964 ], [ 92.351074, 20.673905 ], [ 92.065430, 21.207459 ], [ 92.021484, 21.718680 ], [ 91.823730, 22.187405 ], [ 91.406250, 22.776182 ], [ 90.483398, 22.816694 ], [ 90.571289, 22.411029 ], [ 90.263672, 21.841105 ], [ 90.000000, 21.983801 ], [ 89.846191, 22.044913 ], [ 89.692383, 21.861499 ], [ 89.406738, 21.983801 ], [ 89.011230, 22.065278 ], [ 88.857422, 22.897683 ], [ 88.527832, 23.644524 ], [ 88.681641, 24.246965 ], [ 88.242188, 24.447150 ], [ 88.242188, 24.766785 ], [ 88.286133, 24.866503 ], [ 88.923340, 25.244696 ], [ 88.242188, 25.760320 ], [ 88.242188, 25.839449 ], [ 88.549805, 26.450902 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.192871, 20.117840 ], [ 110.786133, 20.097206 ], [ 111.005859, 19.704658 ], [ 110.566406, 19.269665 ], [ 110.324707, 18.687879 ], [ 109.467773, 18.208480 ], [ 108.654785, 18.521283 ], [ 108.610840, 19.373341 ], [ 109.116211, 19.828725 ], [ 110.192871, 20.117840 ] ] ], [ [ [ 123.552246, 53.461890 ], [ 125.046387, 53.173119 ], [ 125.925293, 52.802761 ], [ 126.562500, 51.795027 ], [ 126.936035, 51.358062 ], [ 127.265625, 50.750359 ], [ 127.639160, 49.767074 ], [ 129.396973, 49.453843 ], [ 130.561523, 48.734455 ], [ 130.979004, 47.798397 ], [ 132.495117, 47.798397 ], [ 133.352051, 48.195387 ], [ 135.021973, 48.487486 ], [ 134.494629, 47.591346 ], [ 134.099121, 47.219568 ], [ 133.769531, 46.118942 ], [ 133.088379, 45.151053 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.980342 ], [ 131.286621, 44.119142 ], [ 131.132812, 42.940339 ], [ 130.627441, 42.908160 ], [ 130.627441, 42.407235 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.439674 ], [ 128.034668, 42.000325 ], [ 128.188477, 41.475660 ], [ 127.331543, 41.508577 ], [ 126.848145, 41.820455 ], [ 126.166992, 41.112469 ], [ 125.068359, 40.580585 ], [ 124.255371, 39.943436 ], [ 122.849121, 39.639538 ], [ 122.124023, 39.181175 ], [ 121.047363, 38.908133 ], [ 121.574707, 39.368279 ], [ 121.354980, 39.757880 ], [ 122.167969, 40.430224 ], [ 121.618652, 40.946714 ], [ 120.761719, 40.597271 ], [ 119.619141, 39.909736 ], [ 119.003906, 39.266284 ], [ 118.037109, 39.215231 ], [ 117.531738, 38.754083 ], [ 118.059082, 38.065392 ], [ 118.872070, 37.909534 ], [ 118.894043, 37.457418 ], [ 119.685059, 37.160317 ], [ 120.805664, 37.874853 ], [ 121.706543, 37.492294 ], [ 122.343750, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.091309, 36.668419 ], [ 120.629883, 36.120128 ], [ 119.663086, 35.621582 ], [ 119.135742, 34.921971 ], [ 120.212402, 34.361576 ], [ 120.607910, 33.394759 ], [ 121.223145, 32.472695 ], [ 121.904297, 31.709476 ], [ 121.882324, 30.958769 ], [ 121.245117, 30.694612 ], [ 121.486816, 30.145127 ], [ 122.080078, 29.840644 ], [ 121.926270, 29.036961 ], [ 121.662598, 28.226970 ], [ 121.113281, 28.149503 ], [ 120.388184, 27.059126 ], [ 119.575195, 25.760320 ], [ 118.652344, 24.567108 ], [ 117.268066, 23.644524 ], [ 115.883789, 22.796439 ], [ 114.763184, 22.674847 ], [ 114.147949, 22.228090 ], [ 113.796387, 22.553147 ], [ 113.225098, 22.065278 ], [ 111.840820, 21.555284 ], [ 110.764160, 21.412162 ], [ 110.434570, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.621582, 21.022983 ], [ 109.863281, 21.412162 ], [ 108.500977, 21.718680 ], [ 108.039551, 21.555284 ], [ 107.028809, 21.820708 ], [ 106.545410, 22.228090 ], [ 106.721191, 22.796439 ], [ 105.798340, 22.978624 ], [ 105.314941, 23.362429 ], [ 104.458008, 22.836946 ], [ 103.491211, 22.715390 ], [ 102.700195, 22.715390 ], [ 102.150879, 22.471955 ], [ 101.645508, 22.329752 ], [ 101.799316, 21.186973 ], [ 101.250000, 21.207459 ], [ 101.162109, 21.453069 ], [ 101.140137, 21.861499 ], [ 100.415039, 21.575719 ], [ 99.228516, 22.126355 ], [ 99.514160, 22.958393 ], [ 98.876953, 23.160563 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.905927 ], [ 97.712402, 25.085599 ], [ 98.657227, 25.938287 ], [ 98.701172, 26.745610 ], [ 98.679199, 27.527758 ], [ 98.239746, 27.761330 ], [ 97.910156, 28.343065 ], [ 97.316895, 28.265682 ], [ 96.240234, 28.420391 ], [ 96.569824, 28.844674 ], [ 96.108398, 29.458731 ], [ 95.383301, 29.036961 ], [ 94.548340, 29.286399 ], [ 93.405762, 28.652031 ], [ 92.482910, 27.897349 ], [ 91.691895, 27.780772 ], [ 91.252441, 28.052591 ], [ 90.725098, 28.071980 ], [ 90.000000, 28.304381 ], [ 89.472656, 28.052591 ], [ 88.813477, 27.313214 ], [ 88.725586, 28.091366 ], [ 88.242188, 27.936181 ], [ 88.242188, 48.458352 ], [ 88.835449, 48.078079 ], [ 90.000000, 47.768868 ], [ 90.263672, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.571289, 45.721522 ], [ 90.944824, 45.290347 ], [ 92.131348, 45.120053 ], [ 93.471680, 44.980342 ], [ 94.680176, 44.355278 ], [ 95.295410, 44.245199 ], [ 95.756836, 43.325178 ], [ 96.328125, 42.730874 ], [ 97.448730, 42.763146 ], [ 99.514160, 42.536892 ], [ 100.832520, 42.666281 ], [ 101.821289, 42.520700 ], [ 103.293457, 41.918629 ], [ 104.501953, 41.918629 ], [ 104.963379, 41.607228 ], [ 106.127930, 42.147114 ], [ 107.731934, 42.488302 ], [ 109.226074, 42.520700 ], [ 110.390625, 42.875964 ], [ 111.115723, 43.421009 ], [ 111.818848, 43.755225 ], [ 111.665039, 44.087585 ], [ 111.335449, 44.465151 ], [ 111.862793, 45.104546 ], [ 113.444824, 44.809122 ], [ 114.455566, 45.352145 ], [ 115.971680, 45.736860 ], [ 116.696777, 46.392411 ], [ 117.399902, 46.679594 ], [ 118.872070, 46.815099 ], [ 119.663086, 46.694667 ], [ 119.750977, 47.055154 ], [ 118.850098, 47.754098 ], [ 118.059082, 48.078079 ], [ 117.290039, 47.709762 ], [ 116.301270, 47.857403 ], [ 115.729980, 47.739323 ], [ 115.466309, 48.136767 ], [ 116.191406, 49.138597 ], [ 116.674805, 49.894634 ], [ 117.861328, 49.525208 ], [ 119.267578, 50.148746 ], [ 119.267578, 50.583237 ], [ 120.168457, 51.645294 ], [ 120.717773, 51.971346 ], [ 120.717773, 52.522906 ], [ 120.168457, 52.762892 ], [ 120.981445, 53.252069 ], [ 122.233887, 53.435719 ], [ 123.552246, 53.461890 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.910156, 28.343065 ], [ 98.239746, 27.761330 ], [ 98.679199, 27.527758 ], [ 98.701172, 26.745610 ], [ 98.657227, 25.938287 ], [ 97.712402, 25.085599 ], [ 97.602539, 23.905927 ], [ 98.657227, 24.066528 ], [ 98.876953, 23.160563 ], [ 99.514160, 22.958393 ], [ 99.228516, 22.126355 ], [ 100.415039, 21.575719 ], [ 101.140137, 21.861499 ], [ 101.162109, 21.453069 ], [ 100.327148, 20.797201 ], [ 100.107422, 20.427013 ], [ 99.536133, 20.200346 ], [ 98.942871, 19.766704 ], [ 98.239746, 19.725342 ], [ 97.778320, 18.646245 ], [ 97.360840, 18.458768 ], [ 97.844238, 17.581194 ], [ 98.481445, 16.846605 ], [ 98.898926, 16.193575 ], [ 98.525391, 15.326572 ], [ 98.173828, 15.135764 ], [ 98.415527, 14.626109 ], [ 99.096680, 13.838080 ], [ 99.206543, 13.282719 ], [ 99.184570, 12.811801 ], [ 99.580078, 11.910354 ], [ 99.030762, 10.962764 ], [ 98.547363, 9.947209 ], [ 98.437500, 10.682201 ], [ 98.745117, 11.458491 ], [ 98.415527, 12.039321 ], [ 98.503418, 13.132979 ], [ 98.085938, 13.645987 ], [ 97.756348, 14.838612 ], [ 97.580566, 16.109153 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.446622 ], [ 95.361328, 15.728814 ], [ 94.790039, 15.813396 ], [ 94.174805, 16.045813 ], [ 94.526367, 17.287709 ], [ 94.306641, 18.229351 ], [ 93.537598, 19.373341 ], [ 93.647461, 19.746024 ], [ 93.076172, 19.870060 ], [ 92.351074, 20.673905 ], [ 92.285156, 21.493964 ], [ 92.636719, 21.330315 ], [ 92.658691, 22.044913 ], [ 93.164062, 22.289096 ], [ 93.054199, 22.715390 ], [ 93.273926, 23.059516 ], [ 93.317871, 24.086589 ], [ 94.086914, 23.865745 ], [ 94.548340, 24.686952 ], [ 94.592285, 25.165173 ], [ 95.141602, 26.017298 ], [ 95.119629, 26.588527 ], [ 96.416016, 27.274161 ], [ 97.119141, 27.098254 ], [ 97.031250, 27.702984 ], [ 97.382812, 27.897349 ], [ 97.316895, 28.265682 ], [ 97.910156, 28.343065 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.150879, 22.471955 ], [ 102.744141, 21.677848 ], [ 103.183594, 20.776659 ], [ 104.414062, 20.776659 ], [ 104.809570, 19.890723 ], [ 104.172363, 19.642588 ], [ 103.886719, 19.269665 ], [ 105.073242, 18.667063 ], [ 106.545410, 16.615138 ], [ 107.292480, 15.919074 ], [ 107.556152, 15.220589 ], [ 107.380371, 14.221789 ], [ 106.479492, 14.583583 ], [ 106.040039, 13.902076 ], [ 105.205078, 14.285677 ], [ 105.534668, 14.732386 ], [ 105.578613, 15.580711 ], [ 104.765625, 16.446622 ], [ 104.699707, 17.434511 ], [ 103.952637, 18.250220 ], [ 103.183594, 18.312811 ], [ 102.985840, 17.978733 ], [ 102.392578, 17.936929 ], [ 102.106934, 18.124971 ], [ 101.052246, 17.518344 ], [ 101.030273, 18.417079 ], [ 101.271973, 19.476950 ], [ 100.590820, 19.518375 ], [ 100.546875, 20.117840 ], [ 100.107422, 20.427013 ], [ 100.327148, 20.797201 ], [ 101.162109, 21.453069 ], [ 101.250000, 21.207459 ], [ 101.799316, 21.186973 ], [ 101.645508, 22.329752 ], [ 102.150879, 22.471955 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.107422, 20.427013 ], [ 100.546875, 20.117840 ], [ 100.590820, 19.518375 ], [ 101.271973, 19.476950 ], [ 101.030273, 18.417079 ], [ 101.052246, 17.518344 ], [ 102.106934, 18.124971 ], [ 102.392578, 17.936929 ], [ 102.985840, 17.978733 ], [ 103.183594, 18.312811 ], [ 103.952637, 18.250220 ], [ 104.699707, 17.434511 ], [ 104.765625, 16.446622 ], [ 105.578613, 15.580711 ], [ 105.534668, 14.732386 ], [ 105.205078, 14.285677 ], [ 104.260254, 14.434680 ], [ 102.985840, 14.243087 ], [ 102.326660, 13.410994 ], [ 102.568359, 12.189704 ], [ 101.667480, 12.661778 ], [ 100.810547, 12.640338 ], [ 100.964355, 13.432367 ], [ 100.085449, 13.410994 ], [ 99.997559, 12.318536 ], [ 99.140625, 9.968851 ], [ 99.206543, 9.253936 ], [ 99.865723, 9.210560 ], [ 100.261230, 8.298470 ], [ 100.458984, 7.449624 ], [ 101.008301, 6.860985 ], [ 101.601562, 6.751896 ], [ 102.128906, 6.227934 ], [ 101.799316, 5.812757 ], [ 101.140137, 5.703448 ], [ 101.074219, 6.206090 ], [ 100.239258, 6.664608 ], [ 100.085449, 6.468151 ], [ 99.689941, 6.860985 ], [ 99.514160, 7.362467 ], [ 98.503418, 8.385431 ], [ 98.327637, 7.798079 ], [ 98.129883, 8.363693 ], [ 98.239746, 8.993600 ], [ 98.547363, 9.947209 ], [ 99.030762, 10.962764 ], [ 99.580078, 11.910354 ], [ 99.184570, 12.811801 ], [ 99.206543, 13.282719 ], [ 99.096680, 13.838080 ], [ 98.415527, 14.626109 ], [ 98.173828, 15.135764 ], [ 98.525391, 15.326572 ], [ 98.898926, 16.193575 ], [ 98.481445, 16.846605 ], [ 97.844238, 17.581194 ], [ 97.360840, 18.458768 ], [ 97.778320, 18.646245 ], [ 98.239746, 19.725342 ], [ 98.942871, 19.766704 ], [ 99.536133, 20.200346 ], [ 100.107422, 20.427013 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.314941, 23.362429 ], [ 105.798340, 22.978624 ], [ 106.721191, 22.796439 ], [ 106.545410, 22.228090 ], [ 107.028809, 21.820708 ], [ 108.039551, 21.555284 ], [ 106.699219, 20.715015 ], [ 105.864258, 19.766704 ], [ 105.644531, 19.062118 ], [ 107.358398, 16.699340 ], [ 108.259277, 16.088042 ], [ 108.874512, 15.284185 ], [ 109.313965, 13.432367 ], [ 109.182129, 11.673755 ], [ 108.347168, 11.027472 ], [ 107.204590, 10.379765 ], [ 106.391602, 9.535749 ], [ 105.139160, 8.602747 ], [ 104.787598, 9.253936 ], [ 105.073242, 9.925566 ], [ 104.326172, 10.487812 ], [ 105.183105, 10.898042 ], [ 106.237793, 10.962764 ], [ 105.798340, 11.587669 ], [ 107.490234, 12.340002 ], [ 107.600098, 13.539201 ], [ 107.380371, 14.221789 ], [ 107.556152, 15.220589 ], [ 107.292480, 15.919074 ], [ 106.545410, 16.615138 ], [ 105.073242, 18.667063 ], [ 103.886719, 19.269665 ], [ 104.172363, 19.642588 ], [ 104.809570, 19.890723 ], [ 104.414062, 20.776659 ], [ 103.183594, 20.776659 ], [ 102.744141, 21.677848 ], [ 102.150879, 22.471955 ], [ 102.700195, 22.715390 ], [ 103.491211, 22.715390 ], [ 104.458008, 22.836946 ], [ 105.314941, 23.362429 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.479492, 14.583583 ], [ 107.380371, 14.221789 ], [ 107.600098, 13.539201 ], [ 107.490234, 12.340002 ], [ 105.798340, 11.587669 ], [ 106.237793, 10.962764 ], [ 105.183105, 10.898042 ], [ 104.326172, 10.487812 ], [ 103.491211, 10.639014 ], [ 103.073730, 11.156845 ], [ 102.568359, 12.189704 ], [ 102.326660, 13.410994 ], [ 102.985840, 14.243087 ], [ 104.260254, 14.434680 ], [ 105.205078, 14.285677 ], [ 106.040039, 13.902076 ], [ 106.479492, 14.583583 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.114258, 6.948239 ], [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 119.179688, 5.419148 ], [ 119.091797, 5.025283 ], [ 118.432617, 4.981505 ], [ 118.608398, 4.499762 ], [ 117.861328, 4.149201 ], [ 117.004395, 4.324501 ], [ 115.861816, 4.324501 ], [ 115.510254, 3.184394 ], [ 115.114746, 2.833317 ], [ 114.609375, 1.450040 ], [ 113.796387, 1.230374 ], [ 112.851562, 1.515936 ], [ 112.368164, 1.428075 ], [ 111.796875, 0.922812 ], [ 111.137695, 0.988720 ], [ 110.500488, 0.790990 ], [ 109.819336, 1.340210 ], [ 109.643555, 2.021065 ], [ 110.390625, 1.669686 ], [ 111.159668, 1.867345 ], [ 111.357422, 2.701635 ], [ 111.796875, 2.899153 ], [ 112.983398, 3.118576 ], [ 113.708496, 3.908099 ], [ 114.191895, 4.543570 ], [ 114.653320, 4.017699 ], [ 114.851074, 4.368320 ], [ 115.334473, 4.324501 ], [ 115.444336, 5.462896 ], [ 116.213379, 6.162401 ], [ 116.718750, 6.926427 ], [ 117.114258, 6.948239 ] ] ], [ [ [ 100.239258, 6.664608 ], [ 101.074219, 6.206090 ], [ 101.140137, 5.703448 ], [ 101.799316, 5.812757 ], [ 102.128906, 6.227934 ], [ 102.370605, 6.140555 ], [ 102.941895, 5.528511 ], [ 103.359375, 4.872048 ], [ 103.425293, 4.193030 ], [ 103.315430, 3.732708 ], [ 103.425293, 3.403758 ], [ 103.491211, 2.811371 ], [ 103.842773, 2.526037 ], [ 104.238281, 1.647722 ], [ 104.216309, 1.296276 ], [ 103.513184, 1.230374 ], [ 102.568359, 1.977147 ], [ 101.381836, 2.767478 ], [ 101.271973, 3.272146 ], [ 100.678711, 3.951941 ], [ 100.546875, 4.784469 ], [ 100.195312, 5.331644 ], [ 100.305176, 6.053161 ], [ 100.085449, 6.468151 ], [ 100.239258, 6.664608 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.486816, 25.304304 ], [ 121.948242, 25.005973 ], [ 121.772461, 24.407138 ], [ 121.157227, 22.796439 ], [ 120.739746, 21.983801 ], [ 120.212402, 22.816694 ], [ 120.102539, 23.563987 ], [ 120.673828, 24.547123 ], [ 121.486816, 25.304304 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.990234, 42.988576 ], [ 130.627441, 42.407235 ], [ 130.759277, 42.228517 ], [ 130.385742, 42.293564 ], [ 129.946289, 41.951320 ], [ 129.660645, 41.607228 ], [ 129.704590, 40.896906 ], [ 129.177246, 40.663973 ], [ 129.001465, 40.497092 ], [ 128.627930, 40.195659 ], [ 127.946777, 40.027614 ], [ 127.529297, 39.757880 ], [ 127.485352, 39.334297 ], [ 127.375488, 39.215231 ], [ 127.770996, 39.061849 ], [ 128.342285, 38.616870 ], [ 128.188477, 38.376115 ], [ 127.770996, 38.307181 ], [ 127.067871, 38.272689 ], [ 126.672363, 37.805444 ], [ 126.232910, 37.857507 ], [ 126.166992, 37.753344 ], [ 125.683594, 37.944198 ], [ 125.551758, 37.753344 ], [ 125.266113, 37.683820 ], [ 125.222168, 37.857507 ], [ 124.980469, 37.961523 ], [ 124.694824, 38.117272 ], [ 124.980469, 38.565348 ], [ 125.200195, 38.668356 ], [ 125.112305, 38.856820 ], [ 125.375977, 39.402244 ], [ 125.310059, 39.554883 ], [ 124.716797, 39.673370 ], [ 124.255371, 39.943436 ], [ 125.068359, 40.580585 ], [ 126.166992, 41.112469 ], [ 126.848145, 41.820455 ], [ 127.331543, 41.508577 ], [ 128.188477, 41.475660 ], [ 128.034668, 42.000325 ], [ 129.594727, 42.439674 ], [ 129.990234, 42.988576 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.342285, 38.616870 ], [ 129.199219, 37.439974 ], [ 129.440918, 36.791691 ], [ 129.462891, 35.639441 ], [ 129.089355, 35.083956 ], [ 128.166504, 34.903953 ], [ 127.375488, 34.488448 ], [ 126.474609, 34.397845 ], [ 126.364746, 34.939985 ], [ 126.540527, 35.692995 ], [ 126.101074, 36.738884 ], [ 126.848145, 36.897194 ], [ 126.166992, 37.753344 ], [ 126.232910, 37.857507 ], [ 126.672363, 37.805444 ], [ 127.067871, 38.272689 ], [ 127.770996, 38.307181 ], [ 128.188477, 38.376115 ], [ 128.342285, 38.616870 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.397949, 9.774025 ], [ 126.210938, 9.297307 ], [ 126.364746, 8.428904 ], [ 126.518555, 7.209900 ], [ 126.188965, 6.293459 ], [ 125.815430, 7.297088 ], [ 125.354004, 6.795535 ], [ 125.661621, 6.053161 ], [ 125.375977, 5.594118 ], [ 124.211426, 6.162401 ], [ 123.925781, 6.904614 ], [ 124.233398, 7.362467 ], [ 123.596191, 7.841615 ], [ 123.288574, 7.427837 ], [ 122.805176, 7.471411 ], [ 122.080078, 6.904614 ], [ 121.904297, 7.209900 ], [ 122.299805, 8.037473 ], [ 122.937012, 8.320212 ], [ 123.486328, 8.711359 ], [ 123.837891, 8.254983 ], [ 124.584961, 8.515836 ], [ 124.760742, 8.971897 ], [ 125.463867, 8.993600 ], [ 125.397949, 9.774025 ] ] ], [ [ [ 119.509277, 11.372339 ], [ 119.685059, 10.574222 ], [ 119.025879, 10.012130 ], [ 118.498535, 9.318990 ], [ 117.158203, 8.385431 ], [ 117.663574, 9.080400 ], [ 118.366699, 9.687398 ], [ 118.981934, 10.379765 ], [ 119.509277, 11.372339 ] ] ], [ [ [ 124.057617, 11.243062 ], [ 123.969727, 10.293301 ], [ 123.618164, 9.968851 ], [ 123.288574, 9.318990 ], [ 122.980957, 9.037003 ], [ 122.365723, 9.730714 ], [ 122.827148, 10.271681 ], [ 122.937012, 10.898042 ], [ 123.486328, 10.941192 ], [ 123.332520, 10.271681 ], [ 124.057617, 11.243062 ] ] ], [ [ [ 124.255371, 12.576010 ], [ 125.222168, 12.554564 ], [ 125.485840, 12.168226 ], [ 125.771484, 11.049038 ], [ 125.002441, 11.329253 ], [ 125.024414, 10.984335 ], [ 125.266113, 10.379765 ], [ 124.782715, 10.141932 ], [ 124.738770, 10.854886 ], [ 124.453125, 10.898042 ], [ 124.299316, 11.501557 ], [ 124.870605, 11.436955 ], [ 124.870605, 11.802834 ], [ 124.255371, 12.576010 ] ] ], [ [ [ 121.882324, 11.910354 ], [ 122.475586, 11.587669 ], [ 123.112793, 11.587669 ], [ 123.090820, 11.178402 ], [ 122.629395, 10.746969 ], [ 121.992188, 10.444598 ], [ 121.948242, 10.919618 ], [ 122.036133, 11.436955 ], [ 121.882324, 11.910354 ] ] ], [ [ [ 120.322266, 13.475106 ], [ 121.179199, 13.432367 ], [ 121.508789, 13.090179 ], [ 121.245117, 12.211180 ], [ 120.827637, 12.704651 ], [ 120.322266, 13.475106 ] ] ], [ [ [ 121.311035, 18.521283 ], [ 121.926270, 18.229351 ], [ 122.233887, 18.479609 ], [ 122.321777, 18.229351 ], [ 122.167969, 17.811456 ], [ 122.497559, 17.098792 ], [ 122.233887, 16.277960 ], [ 121.662598, 15.940202 ], [ 121.486816, 15.135764 ], [ 121.728516, 14.349548 ], [ 122.255859, 14.221789 ], [ 122.695312, 14.349548 ], [ 123.947754, 13.795406 ], [ 123.837891, 13.239945 ], [ 124.167480, 13.004558 ], [ 124.057617, 12.554564 ], [ 123.288574, 13.047372 ], [ 122.915039, 13.560562 ], [ 122.651367, 13.197165 ], [ 122.014160, 13.795406 ], [ 121.113281, 13.645987 ], [ 120.607910, 13.859414 ], [ 120.673828, 14.285677 ], [ 120.981445, 14.541050 ], [ 120.673828, 14.774883 ], [ 120.563965, 14.413400 ], [ 120.058594, 14.987240 ], [ 119.904785, 15.411319 ], [ 119.882812, 16.383391 ], [ 120.278320, 16.045813 ], [ 120.388184, 17.602139 ], [ 120.695801, 18.521283 ], [ 121.311035, 18.521283 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.444336, 5.462896 ], [ 115.334473, 4.324501 ], [ 114.851074, 4.368320 ], [ 114.653320, 4.017699 ], [ 114.191895, 4.543570 ], [ 114.587402, 4.915833 ], [ 115.444336, 5.462896 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.350098, 41.393294 ], [ 141.899414, 39.993956 ], [ 141.877441, 39.181175 ], [ 140.954590, 38.186387 ], [ 140.954590, 37.142803 ], [ 140.581055, 36.350527 ], [ 140.756836, 35.853440 ], [ 140.251465, 35.155846 ], [ 138.955078, 34.669359 ], [ 137.197266, 34.615127 ], [ 135.791016, 33.468108 ], [ 135.109863, 33.852170 ], [ 135.065918, 34.597042 ], [ 133.330078, 34.379713 ], [ 132.143555, 33.906896 ], [ 130.979004, 33.888658 ], [ 131.989746, 33.155948 ], [ 131.330566, 31.466154 ], [ 130.671387, 31.034108 ], [ 130.187988, 31.428663 ], [ 130.429688, 32.324276 ], [ 129.814453, 32.620870 ], [ 129.396973, 33.302986 ], [ 130.341797, 33.614619 ], [ 130.869141, 34.234512 ], [ 131.879883, 34.759666 ], [ 132.604980, 35.442771 ], [ 134.604492, 35.746512 ], [ 135.659180, 35.532226 ], [ 136.713867, 37.317752 ], [ 137.373047, 36.844461 ], [ 139.416504, 38.220920 ], [ 140.053711, 39.453161 ], [ 139.877930, 40.563895 ], [ 140.295410, 41.195190 ], [ 141.350098, 41.393294 ] ] ], [ [ [ 133.901367, 34.379713 ], [ 134.626465, 34.161818 ], [ 134.758301, 33.815666 ], [ 134.187012, 33.211116 ], [ 133.791504, 33.523079 ], [ 133.264160, 33.302986 ], [ 133.000488, 32.713355 ], [ 132.341309, 32.990236 ], [ 132.363281, 33.468108 ], [ 132.912598, 34.070862 ], [ 133.483887, 33.961586 ], [ 133.901367, 34.379713 ] ] ], [ [ [ 141.965332, 45.552525 ], [ 143.129883, 44.512176 ], [ 143.898926, 44.182204 ], [ 144.602051, 43.961191 ], [ 145.305176, 44.386692 ], [ 145.524902, 43.277205 ], [ 144.052734, 42.988576 ], [ 143.173828, 42.000325 ], [ 141.591797, 42.682435 ], [ 141.064453, 41.590797 ], [ 139.943848, 41.574361 ], [ 139.812012, 42.569264 ], [ 140.295410, 43.341160 ], [ 141.372070, 43.389082 ], [ 141.657715, 44.777936 ], [ 141.965332, 45.552525 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.363281, -0.351560 ], [ 133.967285, -0.769020 ], [ 134.143066, -1.142502 ], [ 134.230957, -1.757537 ], [ 131.923828, -1.757537 ], [ 131.835938, -1.603794 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.922812 ], [ 131.857910, -0.681136 ], [ 132.363281, -0.351560 ] ] ], [ [ [ 125.046387, 1.647722 ], [ 125.222168, 1.428075 ], [ 124.431152, 0.439449 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.395505 ], [ 120.168457, 0.241699 ], [ 120.124512, 0.000000 ], [ 120.036621, -0.505365 ], [ 120.915527, -1.406109 ], [ 121.464844, -0.944781 ], [ 123.332520, -0.615223 ], [ 123.244629, -1.054628 ], [ 122.805176, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.838379, -1.757537 ], [ 119.245605, -1.757537 ], [ 119.311523, -1.340210 ], [ 119.772949, 0.000000 ], [ 120.014648, 0.571280 ], [ 120.871582, 1.318243 ], [ 121.662598, 1.032659 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.046387, 1.647722 ] ] ], [ [ [ 117.004395, 4.324501 ], [ 117.861328, 4.149201 ], [ 117.312012, 3.250209 ], [ 118.037109, 2.306506 ], [ 117.861328, 1.845384 ], [ 118.981934, 0.922812 ], [ 117.795410, 0.790990 ], [ 117.465820, 0.109863 ], [ 117.465820, 0.000000 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.472006 ], [ 116.542969, -1.757537 ], [ 110.083008, -1.757537 ], [ 110.061035, -1.581830 ], [ 109.555664, -1.296276 ], [ 109.072266, -0.439449 ], [ 109.006348, 0.000000 ], [ 108.940430, 0.417477 ], [ 109.050293, 1.362176 ], [ 109.643555, 2.021065 ], [ 109.819336, 1.340210 ], [ 110.500488, 0.790990 ], [ 111.137695, 0.988720 ], [ 111.796875, 0.922812 ], [ 112.368164, 1.428075 ], [ 112.851562, 1.515936 ], [ 113.796387, 1.230374 ], [ 114.609375, 1.450040 ], [ 115.114746, 2.833317 ], [ 115.510254, 3.184394 ], [ 115.861816, 4.324501 ], [ 117.004395, 4.324501 ] ] ], [ [ [ 95.273438, 5.484768 ], [ 95.932617, 5.441022 ], [ 97.470703, 5.266008 ], [ 98.349609, 4.280680 ], [ 99.140625, 3.601142 ], [ 99.689941, 3.184394 ], [ 100.634766, 2.108899 ], [ 101.645508, 2.086941 ], [ 102.480469, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.820801, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.425293, -0.703107 ], [ 103.996582, -1.054628 ], [ 104.348145, -1.076597 ], [ 104.523926, -1.757537 ], [ 100.722656, -1.757537 ], [ 100.129395, -0.637194 ], [ 99.448242, 0.000000 ], [ 99.250488, 0.197754 ], [ 98.964844, 1.054628 ], [ 98.591309, 1.845384 ], [ 97.690430, 2.460181 ], [ 97.163086, 3.316018 ], [ 96.416016, 3.886177 ], [ 95.361328, 4.981505 ], [ 95.273438, 5.484768 ] ] ], [ [ [ 138.449707, -1.757537 ], [ 137.329102, -1.757537 ], [ 137.438965, -1.691649 ], [ 138.317871, -1.691649 ], [ 138.449707, -1.757537 ] ] ], [ [ [ 127.924805, 2.174771 ], [ 127.990723, 1.647722 ], [ 128.583984, 1.559866 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.373533 ], [ 128.012695, 0.000000 ], [ 127.946777, -0.241699 ], [ 128.364258, -0.769020 ], [ 128.078613, -0.878872 ], [ 127.683105, -0.263671 ], [ 127.617188, 0.000000 ], [ 127.397461, 1.032659 ], [ 127.595215, 1.823423 ], [ 127.924805, 2.174771 ] ] ] ] } } -] } -] } -, -{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.702234 ], [ 106.062012, 77.375105 ], [ 104.699707, 77.127825 ], [ 106.962891, 76.975198 ], [ 107.226562, 76.480910 ], [ 108.149414, 76.725270 ], [ 111.071777, 76.710125 ], [ 113.312988, 76.226907 ], [ 114.125977, 75.850541 ], [ 113.884277, 75.331158 ], [ 112.763672, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.379883, 74.182063 ], [ 110.632324, 74.043723 ], [ 112.104492, 73.788054 ], [ 113.005371, 73.977144 ], [ 113.510742, 73.340461 ], [ 113.950195, 73.596792 ], [ 115.554199, 73.757352 ], [ 118.762207, 73.590586 ], [ 119.003906, 73.124945 ], [ 123.178711, 72.977623 ], [ 123.244629, 73.738905 ], [ 125.375977, 73.565739 ], [ 126.958008, 73.565739 ], [ 128.583984, 73.041829 ], [ 129.045410, 72.402350 ], [ 128.452148, 71.985784 ], [ 129.704590, 71.194838 ], [ 131.286621, 70.794139 ], [ 132.253418, 71.842539 ], [ 133.857422, 71.392155 ], [ 135.549316, 71.656749 ], [ 137.482910, 71.350041 ], [ 138.229980, 71.629069 ], [ 139.855957, 71.490063 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.854981 ], [ 149.479980, 72.201963 ], [ 150.336914, 71.608283 ], [ 152.951660, 70.844673 ], [ 156.994629, 71.038390 ], [ 158.994141, 70.873491 ], [ 159.829102, 70.458859 ], [ 159.697266, 69.725722 ], [ 160.927734, 69.442128 ], [ 162.268066, 69.649446 ], [ 164.047852, 69.672358 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.588228 ], [ 169.562988, 68.696505 ], [ 170.815430, 69.021414 ], [ 170.002441, 69.657086 ], [ 170.441895, 70.103008 ], [ 173.627930, 69.824471 ], [ 175.715332, 69.877452 ], [ 178.593750, 69.403514 ], [ 180.000000, 68.966279 ], [ 180.000000, 65.802776 ], [ 88.242188, 65.802776 ], [ 88.242188, 75.146412 ], [ 88.308105, 75.146412 ], [ 90.000000, 75.579466 ], [ 90.241699, 75.644984 ], [ 92.900391, 75.775147 ], [ 93.229980, 76.047916 ], [ 95.844727, 76.142958 ], [ 96.657715, 75.920199 ], [ 98.920898, 76.450056 ], [ 100.744629, 76.434604 ], [ 101.030273, 76.865804 ], [ 101.975098, 77.288368 ], [ 104.348145, 77.702234 ] ] ], [ [ [ 180.000000, 71.517945 ], [ 180.000000, 70.837461 ], [ 178.901367, 70.786910 ], [ 178.703613, 71.102543 ], [ 180.000000, 71.517945 ] ] ], [ [ [ 142.053223, 73.861506 ], [ 143.481445, 73.478485 ], [ 143.591309, 73.214013 ], [ 142.075195, 73.207666 ], [ 140.031738, 73.321553 ], [ 139.855957, 73.371928 ], [ 140.800781, 73.769640 ], [ 142.053223, 73.861506 ] ] ], [ [ [ 138.823242, 76.137695 ], [ 141.459961, 76.095517 ], [ 145.085449, 75.563041 ], [ 144.294434, 74.821934 ], [ 140.603027, 74.850672 ], [ 138.955078, 74.613445 ], [ 136.955566, 75.264239 ], [ 137.504883, 75.952235 ], [ 138.823242, 76.137695 ] ] ], [ [ [ 146.337891, 75.497157 ], [ 148.205566, 75.347841 ], [ 150.710449, 75.084326 ], [ 149.567871, 74.689053 ], [ 147.963867, 74.781612 ], [ 146.118164, 75.174549 ], [ 146.337891, 75.497157 ] ] ], [ [ [ 102.084961, 79.347411 ], [ 102.832031, 79.282227 ], [ 105.358887, 78.716316 ], [ 105.073242, 78.309408 ], [ 99.426270, 77.924866 ], [ 101.250000, 79.237185 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.932617, 81.251691 ], [ 97.866211, 80.750025 ], [ 100.173340, 79.781164 ], [ 99.931641, 78.882766 ], [ 97.756348, 78.759229 ], [ 94.965820, 79.046790 ], [ 93.295898, 79.428340 ], [ 92.526855, 80.144924 ], [ 91.164551, 80.342262 ], [ 93.757324, 81.024916 ], [ 95.932617, 81.251691 ] ] ] ] } } -] } -] } ] } diff --git a/tile-join.cpp b/tile-join.cpp index aae612b..4e68d2a 100644 --- a/tile-join.cpp +++ b/tile-join.cpp @@ -1,3 +1,7 @@ +#define _DEFAULT_SOURCE +#include +#include +#include #include #include #include @@ -16,10 +20,20 @@ #include "pool.hpp" #include "mbtiles.hpp" #include "geometry.hpp" +#include "dirtiles.hpp" +#include +#include +#include +#include + +extern "C" { +#include "jsonpull/jsonpull.h" +} std::string dequote(std::string s); bool pk = false; +bool pC = false; size_t CPUS; struct stats { @@ -260,8 +274,12 @@ struct reader { long long x; long long sorty; long long y; + int pbf_count; + int z_flag; std::string data; + std::vector pbf_path; + std::vector large_zoom; sqlite3 *db; sqlite3_stmt *stmt; @@ -297,38 +315,198 @@ struct reader { } }; -struct reader *begin_reading(char *fname) { - sqlite3 *db; +std::vector split_slash(std::string pbf_path) { + std::vector path_parts; + std::string path(pbf_path); + std::istringstream iss(path); + std::string token; - if (sqlite3_open(fname, &db) != SQLITE_OK) { - fprintf(stderr, "%s: %s\n", fname, sqlite3_errmsg(db)); - exit(EXIT_FAILURE); + while (std::getline(iss, token, '/')) { + path_parts.push_back(token); } - const char *sql = "SELECT zoom_level, tile_column, tile_row, tile_data from tiles order by zoom_level, tile_column, tile_row;"; - sqlite3_stmt *stmt; - if (sqlite3_prepare_v2(db, sql, -1, &stmt, NULL) != SQLITE_OK) { - fprintf(stderr, "%s: select failed: %s\n", fname, sqlite3_errmsg(db)); - exit(EXIT_FAILURE); - } + return path_parts; +} - struct reader *r = new reader; - r->db = db; - r->stmt = stmt; - r->next = NULL; - - if (sqlite3_step(stmt) == SQLITE_ROW) { - r->zoom = sqlite3_column_int(stmt, 0); - r->x = sqlite3_column_int(stmt, 1); - r->sorty = sqlite3_column_int(stmt, 2); - r->y = (1LL << r->zoom) - 1 - r->sorty; - - const char *data = (const char *) sqlite3_column_blob(stmt, 3); - size_t len = sqlite3_column_bytes(stmt, 3); - - r->data = std::string(data, len); +int filter(const struct dirent *dir) { + if (strcmp(dir->d_name, ".") == 0 || strcmp(dir->d_name, "..") == 0 || strcmp(dir->d_name, ".DS_Store") == 0 || strcmp(dir->d_name, "metadata.json") == 0) { + return 0; } else { - r->zoom = 32; + return 1; + } +} + +// Recursively walk through a specified directory and its subdirectories, +// using alphasort function and integer variable zoom_range to handle input in numerical order. +// Store the path of all pbf files in a pbf_path vector member of reader struct, +// with the help of a large_zoom vector and two integer members pbf_count and z_flag +// to ensure the tiles order in pbf_path to be the same as in mbtiles. +struct reader *read_dir(struct reader *readers, const char *name, int level, int zoom_range) { + struct dirent **namelist; + struct stat buf; + std::string path; + int i = 0; + int n = scandir(name, &namelist, filter, alphasort); + std::vector path_parts1, path_parts2; + readers->pbf_count = 0; + + if (n > 0) { + while (i < n) { + path = std::string(name) + "/" + std::string(namelist[i]->d_name); + + if (stat(path.c_str(), &buf) == 0 && S_ISDIR(buf.st_mode)) { + if (level == 0) { + if (std::stoi(namelist[i]->d_name) <= 9) { + zoom_range = 0; + } else { + zoom_range = 1; + } + + if (readers->pbf_count > 0) { + if (readers->z_flag == 0) { + std::sort(readers->pbf_path.end() - (readers->pbf_count + 1), readers->pbf_path.end(), std::greater()); + } else { + std::sort(readers->large_zoom.end() - (readers->pbf_count + 1), readers->large_zoom.end(), std::greater()); + } + readers->pbf_count = 0; + } + } + + if (level == 1 && readers->pbf_count > 0) { + if (zoom_range == 0) { + std::sort(readers->pbf_path.end() - (readers->pbf_count + 1), readers->pbf_path.end(), std::greater()); + } else { + std::sort(readers->large_zoom.end() - (readers->pbf_count + 1), readers->large_zoom.end(), std::greater()); + } + readers->pbf_count = 0; + } + + read_dir(readers, path.c_str(), level + 1, zoom_range); + } else { + if (level == 0) { + fprintf(stderr, "ERROR: Directory structure in '%s' should be zoom/x/y\n", name); + exit(EXIT_FAILURE); + } + + if (level == 1) { + fprintf(stderr, "ERROR: Directory structure in '%s' should be zoom/x/y\n", split_slash(name)[0].c_str()); + exit(EXIT_FAILURE); + } + + if (zoom_range == 0) { + readers->pbf_path.push_back(path); + + if (readers->pbf_path.size() > 1) { + path_parts1 = split_slash(readers->pbf_path[readers->pbf_path.size() - 1]); + path_parts2 = split_slash(readers->pbf_path[readers->pbf_path.size() - 2]); + int p1 = path_parts1.size(); + int p2 = path_parts2.size(); + + if (std::stoll(path_parts1[p1 - 3]) == std::stoll(path_parts2[p2 - 3]) && std::stoll(path_parts1[p1 - 2]) == std::stoll(path_parts2[p2 - 2])) { + readers->z_flag = 0; + readers->pbf_count++; + } + + path_parts1.clear(); + path_parts2.clear(); + } + } else { + readers->large_zoom.push_back(path); + + if (readers->large_zoom.size() > 1) { + path_parts1 = split_slash(readers->large_zoom[readers->large_zoom.size() - 1]); + path_parts2 = split_slash(readers->large_zoom[readers->large_zoom.size() - 2]); + int p1 = path_parts1.size(); + int p2 = path_parts2.size(); + + if (std::stoll(path_parts1[p1 - 3]) == std::stoll(path_parts2[p2 - 3]) && std::stoll(path_parts1[p1 - 2]) == std::stoll(path_parts2[p2 - 2])) { + readers->z_flag = 1; + readers->pbf_count++; + } + + path_parts1.clear(); + path_parts2.clear(); + } + } + } + + free(namelist[i]); + i++; + } + + if (level == 0) { + if (readers->pbf_count > 0) { + std::sort(readers->pbf_path.end() - (readers->pbf_count + 1), readers->pbf_path.end(), std::greater()); + } + + readers->pbf_path.insert(std::end(readers->pbf_path), std::begin(readers->large_zoom), std::end(readers->large_zoom)); + } + + free(namelist); + } else if (n == 0) { + fprintf(stderr, "ERROR: Empty directory '%s'\n", name); + exit(EXIT_FAILURE); + } else { + perror("scandir"); + } + + return readers; +} + +struct reader *begin_reading(char *fname) { + DIR *dir; + struct reader *r = new reader; + if ((dir = opendir(fname)) != NULL) { + r = read_dir(r, fname, 0, 0); + + std::vector path_parts; + path_parts = split_slash(r->pbf_path[0]); + int p = path_parts.size(); + + r->db = NULL; + r->stmt = NULL; + r->next = NULL; + r->pbf_count = 0; + r->zoom = std::stoll(path_parts[p - 3]); + r->x = std::stoll(path_parts[p - 2]); + r->y = std::stoll(path_parts[p - 1].substr(0, path_parts[p - 1].find_last_of("."))); + r->sorty = (1LL << r->zoom) - 1 - r->y; + r->data = dir_read_tile(r->pbf_path[0]); + path_parts.clear(); + closedir(dir); + } else { + sqlite3 *db; + + if (sqlite3_open(fname, &db) != SQLITE_OK) { + fprintf(stderr, "%s: %s\n", fname, sqlite3_errmsg(db)); + exit(EXIT_FAILURE); + } + + const char *sql = "SELECT zoom_level, tile_column, tile_row, tile_data from tiles order by zoom_level, tile_column, tile_row;"; + sqlite3_stmt *stmt; + + if (sqlite3_prepare_v2(db, sql, -1, &stmt, NULL) != SQLITE_OK) { + fprintf(stderr, "%s: select failed: %s\n", fname, sqlite3_errmsg(db)); + exit(EXIT_FAILURE); + } + + r->db = db; + r->stmt = stmt; + r->next = NULL; + + if (sqlite3_step(stmt) == SQLITE_ROW) { + r->zoom = sqlite3_column_int(stmt, 0); + r->x = sqlite3_column_int(stmt, 1); + r->sorty = sqlite3_column_int(stmt, 2); + r->y = (1LL << r->zoom) - 1 - r->sorty; + + const char *data = (const char *) sqlite3_column_blob(stmt, 3); + size_t len = sqlite3_column_bytes(stmt, 3); + + r->data = std::string(data, len); + } else { + r->zoom = 32; + } } return r; @@ -405,7 +583,12 @@ void *join_worker(void *v) { if (anything) { std::string pbf = tile.encode(); std::string compressed; - compress(pbf, compressed); + + if (!pC) { + compress(pbf, compressed); + } else { + compressed = pbf; + } if (!pk && compressed.size() > 500000) { fprintf(stderr, "Tile %lld/%lld/%lld size is %lld, >500000. Skipping this tile\n.", ai->first.z, ai->first.x, ai->first.y, (long long) compressed.size()); @@ -418,7 +601,7 @@ void *join_worker(void *v) { return NULL; } -void handle_tasks(std::map> &tasks, std::vector> &layermaps, sqlite3 *outdb, std::vector &header, std::map> &mapping, std::set &exclude, int ifmatched, std::set &keep_layers, std::set &remove_layers) { +void handle_tasks(std::map> &tasks, std::vector> &layermaps, sqlite3 *outdb, const char *outdir, std::vector &header, std::map> &mapping, std::set &exclude, int ifmatched, std::set &keep_layers, std::set &remove_layers) { pthread_t pthreads[CPUS]; std::vector args; @@ -462,19 +645,22 @@ void handle_tasks(std::map> &tasks, std::vectorfirst.z, ai->first.x, ai->first.y, ai->second.data(), ai->second.size()); + if (outdb != NULL) { + mbtiles_write_tile(outdb, ai->first.z, ai->first.x, ai->first.y, ai->second.data(), ai->second.size()); + } else if (outdir != NULL) { + dir_write_tile(outdir, ai->first.z, ai->first.x, ai->first.y, ai->second); + } } } } -void decode(struct reader *readers, char *map, std::map &layermap, sqlite3 *outdb, 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) { +void decode(struct reader *readers, char *map, 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) { std::vector> layermaps; for (size_t i = 0; i < CPUS; i++) { layermaps.push_back(std::map()); } std::map> tasks; - double minlat = INT_MAX; double minlon = INT_MAX; double maxlat = INT_MIN; @@ -485,7 +671,6 @@ void decode(struct reader *readers, char *map, std::mapnext; r->next = NULL; - if (r->zoom != zoom_for_bbox) { // Only use highest zoom for bbox calculation // to avoid z0 always covering the world @@ -512,23 +697,40 @@ void decode(struct reader *readers, char *map, std::mapzoom != r->zoom || readers->x != r->x || readers->y != r->y) { if (tasks.size() > 100 * CPUS) { - handle_tasks(tasks, layermaps, outdb, header, mapping, exclude, ifmatched, keep_layers, remove_layers); + handle_tasks(tasks, layermaps, outdb, outdir, header, mapping, exclude, ifmatched, keep_layers, remove_layers); tasks.clear(); } } - if (sqlite3_step(r->stmt) == SQLITE_ROW) { - r->zoom = sqlite3_column_int(r->stmt, 0); - r->x = sqlite3_column_int(r->stmt, 1); - r->sorty = sqlite3_column_int(r->stmt, 2); - r->y = (1LL << r->zoom) - 1 - r->sorty; + if (r->db != NULL) { + if (sqlite3_step(r->stmt) == SQLITE_ROW) { + r->zoom = sqlite3_column_int(r->stmt, 0); + r->x = sqlite3_column_int(r->stmt, 1); + r->sorty = sqlite3_column_int(r->stmt, 2); + r->y = (1LL << r->zoom) - 1 - r->sorty; + const char *data = (const char *) sqlite3_column_blob(r->stmt, 3); + size_t len = sqlite3_column_bytes(r->stmt, 3); - const char *data = (const char *) sqlite3_column_blob(r->stmt, 3); - size_t len = sqlite3_column_bytes(r->stmt, 3); - - r->data = std::string(data, len); + r->data = std::string(data, len); + } else { + r->zoom = 32; + } } else { - r->zoom = 32; + r->pbf_count++; + + if (r->pbf_count != static_cast(r->pbf_path.size())) { + std::vector path_parts; + path_parts = split_slash(r->pbf_path[r->pbf_count]); + int p = path_parts.size(); + r->zoom = std::stoll(path_parts[p - 3]); + r->x = std::stoll(path_parts[p - 2]); + r->y = std::stoll(path_parts[p - 1].substr(0, path_parts[p - 1].find_last_of("."))); + r->sorty = (1LL << r->zoom) - 1 - r->y; + r->data = dir_read_tile(r->pbf_path[r->pbf_count]); + path_parts.clear(); + } else { + r->zoom = 32; + } } struct reader **rr; @@ -548,73 +750,151 @@ void decode(struct reader *readers, char *map, std::mapminlat = min(minlat, st->minlat); st->maxlat = max(maxlat, st->maxlat); - handle_tasks(tasks, layermaps, outdb, header, mapping, exclude, ifmatched, keep_layers, remove_layers); + handle_tasks(tasks, layermaps, outdb, outdir, header, mapping, exclude, ifmatched, keep_layers, remove_layers); layermap = merge_layermaps(layermaps); struct reader *next; for (struct reader *r = readers; r != NULL; r = next) { next = r->next; - sqlite3_finalize(r->stmt); - if (sqlite3_prepare_v2(r->db, "SELECT value from metadata where name = 'minzoom'", -1, &r->stmt, NULL) == SQLITE_OK) { - if (sqlite3_step(r->stmt) == SQLITE_ROW) { - int minzoom = sqlite3_column_int(r->stmt, 0); - st->minzoom = min(st->minzoom, minzoom); - } + if (r->db != NULL) { sqlite3_finalize(r->stmt); - } - if (sqlite3_prepare_v2(r->db, "SELECT value from metadata where name = 'maxzoom'", -1, &r->stmt, NULL) == SQLITE_OK) { - if (sqlite3_step(r->stmt) == SQLITE_ROW) { - int maxzoom = sqlite3_column_int(r->stmt, 0); - st->maxzoom = max(st->maxzoom, maxzoom); + + if (sqlite3_prepare_v2(r->db, "SELECT value from metadata where name = 'minzoom'", -1, &r->stmt, NULL) == SQLITE_OK) { + if (sqlite3_step(r->stmt) == SQLITE_ROW) { + int minzoom = sqlite3_column_int(r->stmt, 0); + st->minzoom = min(st->minzoom, minzoom); + } + sqlite3_finalize(r->stmt); } - sqlite3_finalize(r->stmt); - } - if (sqlite3_prepare_v2(r->db, "SELECT value from metadata where name = 'center'", -1, &r->stmt, NULL) == SQLITE_OK) { - if (sqlite3_step(r->stmt) == SQLITE_ROW) { - const unsigned char *s = sqlite3_column_text(r->stmt, 0); - sscanf((char *) s, "%lf,%lf", &st->midlon, &st->midlat); + if (sqlite3_prepare_v2(r->db, "SELECT value from metadata where name = 'maxzoom'", -1, &r->stmt, NULL) == SQLITE_OK) { + if (sqlite3_step(r->stmt) == SQLITE_ROW) { + int maxzoom = sqlite3_column_int(r->stmt, 0); + st->maxzoom = max(st->maxzoom, maxzoom); + } + sqlite3_finalize(r->stmt); } - sqlite3_finalize(r->stmt); - } - if (sqlite3_prepare_v2(r->db, "SELECT value from metadata where name = 'attribution'", -1, &r->stmt, NULL) == SQLITE_OK) { - if (sqlite3_step(r->stmt) == SQLITE_ROW) { - attribution = std::string((char *) sqlite3_column_text(r->stmt, 0)); + if (sqlite3_prepare_v2(r->db, "SELECT value from metadata where name = 'center'", -1, &r->stmt, NULL) == SQLITE_OK) { + if (sqlite3_step(r->stmt) == SQLITE_ROW) { + const unsigned char *s = sqlite3_column_text(r->stmt, 0); + sscanf((char *) s, "%lf,%lf", &st->midlon, &st->midlat); + } + sqlite3_finalize(r->stmt); } - sqlite3_finalize(r->stmt); - } - if (sqlite3_prepare_v2(r->db, "SELECT value from metadata where name = 'description'", -1, &r->stmt, NULL) == SQLITE_OK) { - if (sqlite3_step(r->stmt) == SQLITE_ROW) { - description = std::string((char *) sqlite3_column_text(r->stmt, 0)); + if (sqlite3_prepare_v2(r->db, "SELECT value from metadata where name = 'attribution'", -1, &r->stmt, NULL) == SQLITE_OK) { + if (sqlite3_step(r->stmt) == SQLITE_ROW) { + attribution = std::string((char *) sqlite3_column_text(r->stmt, 0)); + } + sqlite3_finalize(r->stmt); } - sqlite3_finalize(r->stmt); - } - if (sqlite3_prepare_v2(r->db, "SELECT value from metadata where name = 'name'", -1, &r->stmt, NULL) == SQLITE_OK) { - if (sqlite3_step(r->stmt) == SQLITE_ROW) { - if (name.size() == 0) { - name = std::string((char *) sqlite3_column_text(r->stmt, 0)); - } else { - name += " + " + std::string((char *) sqlite3_column_text(r->stmt, 0)); + if (sqlite3_prepare_v2(r->db, "SELECT value from metadata where name = 'description'", -1, &r->stmt, NULL) == SQLITE_OK) { + if (sqlite3_step(r->stmt) == SQLITE_ROW) { + description = std::string((char *) sqlite3_column_text(r->stmt, 0)); + } + sqlite3_finalize(r->stmt); + } + if (sqlite3_prepare_v2(r->db, "SELECT value from metadata where name = 'name'", -1, &r->stmt, NULL) == SQLITE_OK) { + if (sqlite3_step(r->stmt) == SQLITE_ROW) { + if (name.size() == 0) { + name = std::string((char *) sqlite3_column_text(r->stmt, 0)); + } else { + name += " + " + std::string((char *) sqlite3_column_text(r->stmt, 0)); + } + } + sqlite3_finalize(r->stmt); + } + if (sqlite3_prepare_v2(r->db, "SELECT value from metadata where name = 'bounds'", -1, &r->stmt, NULL) == SQLITE_OK) { + if (sqlite3_step(r->stmt) == SQLITE_ROW) { + const unsigned char *s = sqlite3_column_text(r->stmt, 0); + if (sscanf((char *) s, "%lf,%lf,%lf,%lf", &minlon, &minlat, &maxlon, &maxlat) == 4) { + st->minlon = min(minlon, st->minlon); + st->maxlon = max(maxlon, st->maxlon); + st->minlat = min(minlat, st->minlat); + st->maxlat = max(maxlat, st->maxlat); + } + } + sqlite3_finalize(r->stmt); + } + + if (sqlite3_close(r->db) != SQLITE_OK) { + fprintf(stderr, "Could not close database: %s\n", sqlite3_errmsg(r->db)); + exit(EXIT_FAILURE); + } + + } else { + std::vector path_parts; + path_parts = split_slash(r->pbf_path[0]); + std::string metadata_path = path_parts[0]; + + for (int i = 1; i < static_cast(path_parts.size()) - 3; i++) { + metadata_path = metadata_path + "/" + path_parts[i]; + } + + metadata_path += "/metadata.json"; + + path_parts.clear(); + FILE *f = fopen(metadata_path.c_str(), "r"); + + if (f == NULL) { + perror(metadata_path.c_str()); + exit(EXIT_FAILURE); + } + + json_pull *jp = json_begin_file(f); + json_object *j, *k; + + while ((j = json_read(jp)) != NULL) { + if (j->type == JSON_HASH) { + if ((k = json_hash_get(j, "minzoom")) != NULL) { + const std::string minzoom_tmp = k->string; + int minzoom = std::stoi(minzoom_tmp); + st->minzoom = min(st->minzoom, minzoom); + } + + if ((k = json_hash_get(j, "maxzoom")) != NULL) { + const std::string maxzoom_tmp = k->string; + int maxzoom = std::stoi(maxzoom_tmp); + st->maxzoom = max(st->maxzoom, maxzoom); + } + + if ((k = json_hash_get(j, "center")) != NULL) { + const std::string center = k->string; + const unsigned char *s = (const unsigned char *) center.c_str(); + sscanf((char *) s, "%lf,%lf", &st->midlon, &st->midlat); + } + + if ((k = json_hash_get(j, "attribution")) != NULL) { + attribution = k->string; + } + + if ((k = json_hash_get(j, "description")) != NULL) { + description = k->string; + } + + if ((k = json_hash_get(j, "name")) != NULL) { + const std::string name_tmp = k->string; + if (name.size() == 0) { + name = name_tmp; + } else { + name += " + " + name_tmp; + } + } + + if ((k = json_hash_get(j, "bounds")) != NULL) { + const std::string bounds = k->string; + const unsigned char *s = (const unsigned char *) bounds.c_str(); + if (sscanf((char *) s, "%lf,%lf,%lf,%lf", &minlon, &minlat, &maxlon, &maxlat) == 4) { + st->minlon = min(minlon, st->minlon); + st->maxlon = max(maxlon, st->maxlon); + st->minlat = min(minlat, st->minlat); + st->maxlat = max(maxlat, st->maxlat); + } + } } } - sqlite3_finalize(r->stmt); - } - if (sqlite3_prepare_v2(r->db, "SELECT value from metadata where name = 'bounds'", -1, &r->stmt, NULL) == SQLITE_OK) { - if (sqlite3_step(r->stmt) == SQLITE_ROW) { - const unsigned char *s = sqlite3_column_text(r->stmt, 0); - if (sscanf((char *) s, "%lf,%lf,%lf,%lf", &minlon, &minlat, &maxlon, &maxlat) == 4) { - st->minlon = min(minlon, st->minlon); - st->maxlon = max(maxlon, st->maxlon); - st->minlat = min(minlat, st->minlat); - st->maxlat = max(maxlat, st->maxlat); - } - } - sqlite3_finalize(r->stmt); - } - - if (sqlite3_close(r->db) != SQLITE_OK) { - fprintf(stderr, "Could not close database: %s\n", sqlite3_errmsg(r->db)); - exit(EXIT_FAILURE); + json_free(j); + json_end(jp); + fclose(f); } delete r; @@ -622,7 +902,7 @@ void decode(struct reader *readers, char *map, std::map &header, std::map #include "mvt.hpp" #include "mbtiles.hpp" -#include "rawtiles.hpp" +#include "dirtiles.hpp" #include "geometry.hpp" #include "tile.hpp" #include "pool.hpp" @@ -206,7 +206,7 @@ int metacmp(int m1, const std::vector &keys1, const std::vector &metakeys, std::vector &metavals, bool has_id, unsigned long long id, unsigned long long index, long long extent) { - if (geom.size() > 0 && nextzoom <= maxzoom) { + if (geom.size() > 0 && (nextzoom <= maxzoom || additional[A_EXTEND_ZOOMS])) { int xo, yo; int span = 1 << (nextzoom - z); @@ -1176,6 +1176,8 @@ struct write_tile_args { double fraction_out; const char *prefilter; const char *postfilter; + bool still_dropping; + int wrote_zoom; size_t tiling_seg; }; @@ -1337,7 +1339,6 @@ struct run_prefilter_args { std::vector> *layer_unmaps; char *stringpool; long long *pool_off; - FILE *prefilter_fp; }; @@ -1887,6 +1888,7 @@ long long write_tile(FILE *geoms, long long *geompos_in, char *metabase, char *s if (gamma > arg->gamma_out) { arg->gamma_out = gamma; + arg->still_dropping = true; } if (!quiet) { @@ -1896,9 +1898,14 @@ long long write_tile(FILE *geoms, long long *geompos_in, char *metabase, char *s continue; } else if (additional[A_DROP_DENSEST_AS_NEEDED]) { mingap_fraction = mingap_fraction * 200000.0 / totalsize * 0.90; - mingap = choose_mingap(indices, mingap_fraction); + unsigned long long mg = choose_mingap(indices, mingap_fraction); + if (mg <= mingap) { + mg = mingap * 1.5; + } + mingap = mg; if (mingap > arg->mingap_out) { arg->mingap_out = mingap; + arg->still_dropping = true; } if (!quiet) { fprintf(stderr, "Going to try keeping the sparsest %0.2f%% of the features to make it fit\n", mingap_fraction * 100.0); @@ -1912,6 +1919,7 @@ long long write_tile(FILE *geoms, long long *geompos_in, char *metabase, char *s minextent = m; if (minextent > arg->minextent_out) { arg->minextent_out = minextent; + arg->still_dropping = true; } if (!quiet) { fprintf(stderr, "Going to try keeping the biggest %0.2f%% of the features to make it fit\n", minextent_fraction * 100.0); @@ -1926,11 +1934,12 @@ long long write_tile(FILE *geoms, long long *geompos_in, char *metabase, char *s } if (additional[A_DROP_FRACTION_AS_NEEDED] && fraction < arg->fraction_out) { arg->fraction_out = fraction; + arg->still_dropping = true; } line_detail++; // to keep it the same when the loop decrements it continue; } else { - fprintf(stderr, "Try using -B (and --drop-lines or --drop-polygons if needed) to set a higher base zoom level.\n"); + fprintf(stderr, "Try using --drop-fraction-as-needed or --drop-densest-as-needed.\n"); return -1; } } @@ -1964,6 +1973,7 @@ long long write_tile(FILE *geoms, long long *geompos_in, char *metabase, char *s if (gamma > arg->gamma_out) { arg->gamma_out = gamma; + arg->still_dropping = true; } if (!quiet) { @@ -1972,9 +1982,14 @@ long long write_tile(FILE *geoms, long long *geompos_in, char *metabase, char *s line_detail++; // to keep it the same when the loop decrements it } else if (additional[A_DROP_DENSEST_AS_NEEDED]) { mingap_fraction = mingap_fraction * max_tile_size / compressed.size() * 0.90; - mingap = choose_mingap(indices, mingap_fraction); + unsigned long long mg = choose_mingap(indices, mingap_fraction); + if (mg <= mingap) { + mg = mingap * 1.5; + } + mingap = mg; if (mingap > arg->mingap_out) { arg->mingap_out = mingap; + arg->still_dropping = true; } if (!quiet) { fprintf(stderr, "Going to try keeping the sparsest %0.2f%% of the features to make it fit\n", mingap_fraction * 100.0); @@ -1987,6 +2002,7 @@ long long write_tile(FILE *geoms, long long *geompos_in, char *metabase, char *s minextent = m; if (minextent > arg->minextent_out) { arg->minextent_out = minextent; + arg->still_dropping = true; } if (!quiet) { fprintf(stderr, "Going to try keeping the biggest %0.2f%% of the features to make it fit\n", minextent_fraction * 100.0); @@ -2004,6 +2020,7 @@ long long write_tile(FILE *geoms, long long *geompos_in, char *metabase, char *s } if (additional[A_DROP_FRACTION_AS_NEEDED] && fraction < arg->fraction_out) { arg->fraction_out = fraction; + arg->still_dropping = true; } line_detail++; // to keep it the same when the loop decrements it } @@ -2017,7 +2034,7 @@ long long write_tile(FILE *geoms, long long *geompos_in, char *metabase, char *s if (outdb != NULL) { mbtiles_write_tile(outdb, z, tx, ty, compressed.data(), compressed.size()); } else if (outdir != NULL) { - write_raw_tile(outdir, z, tx, ty, compressed); + dir_write_tile(outdir, z, tx, ty, compressed); } if (pthread_mutex_unlock(&db_lock) != 0) { @@ -2078,6 +2095,8 @@ void *run_thread(void *vargs) { deserialize_uint_io(geom, &x, &geompos); deserialize_uint_io(geom, &y, &geompos); + arg->wrote_zoom = z; + // fprintf(stderr, "%d/%u/%u\n", z, x, y); long long len = write_tile(geom, &geompos, arg->metabase, arg->stringpool, z, x, y, z == arg->maxzoom ? arg->full_detail : arg->low_detail, arg->min_detail, arg->basezoom, arg->outdb, arg->outdir, arg->droprate, arg->buffer, arg->fname, arg->geomfile, arg->minzoom, arg->maxzoom, arg->todo, arg->along, geompos, arg->gamma, arg->child_shards, arg->meta_off, arg->pool_off, arg->initial_x, arg->initial_y, arg->running, arg->simplification, arg->layermaps, arg->layer_unmaps, arg->tiling_seg, arg->pass, arg->passes, arg->mingap, arg->minextent, arg->fraction, arg->prefilter, arg->postfilter, arg); @@ -2145,7 +2164,7 @@ void *run_thread(void *vargs) { return NULL; } -int traverse_zooms(int *geomfd, off_t *geom_size, char *metabase, char *stringpool, unsigned *midx, unsigned *midy, int maxzoom, int minzoom, int basezoom, sqlite3 *outdb, const char *outdir, double droprate, int buffer, const char *fname, const char *tmpdir, double gamma, int full_detail, int low_detail, int min_detail, long long *meta_off, long long *pool_off, unsigned *initial_x, unsigned *initial_y, double simplification, std::vector> &layermaps, const char *prefilter, const char *postfilter) { +int traverse_zooms(int *geomfd, off_t *geom_size, char *metabase, char *stringpool, unsigned *midx, unsigned *midy, int &maxzoom, int minzoom, int basezoom, sqlite3 *outdb, const char *outdir, double droprate, int buffer, const char *fname, const char *tmpdir, double gamma, int full_detail, int low_detail, int min_detail, long long *meta_off, long long *pool_off, unsigned *initial_x, unsigned *initial_y, double simplification, std::vector> &layermaps, const char *prefilter, const char *postfilter) { // The existing layermaps are one table per input thread. // We need to add another one per *tiling* thread so that it can be // safely changed during tiling. @@ -2329,6 +2348,8 @@ int traverse_zooms(int *geomfd, off_t *geom_size, char *metabase, char *stringpo args[thread].running = &running; args[thread].pass = pass; args[thread].passes = 2 - start; + args[thread].wrote_zoom = -1; + args[thread].still_dropping = false; if (pthread_create(&pthreads[thread], NULL, run_thread, &args[thread]) != 0) { perror("pthread_create"); @@ -2359,6 +2380,15 @@ int traverse_zooms(int *geomfd, off_t *geom_size, char *metabase, char *stringpo if (args[thread].fraction_out < zoom_fraction) { zoom_fraction = args[thread].fraction_out; } + + // Zoom counter might be lower than reality if zooms are being skipped + if (args[thread].wrote_zoom > i) { + i = args[thread].wrote_zoom; + } + + if (additional[A_EXTEND_ZOOMS] && i == maxzoom && args[thread].still_dropping && maxzoom < MAX_ZOOM) { + maxzoom++; + } } } diff --git a/tile.hpp b/tile.hpp index b250300..1d341fb 100644 --- a/tile.hpp +++ b/tile.hpp @@ -1,3 +1,3 @@ -int traverse_zooms(int *geomfd, off_t *geom_size, char *metabase, char *stringpool, unsigned *midx, unsigned *midy, int maxzoom, int minzoom, int basezoom, sqlite3 *outdb, const char *outdir, double droprate, int buffer, const char *fname, const char *tmpdir, double gamma, int full_detail, int low_detail, int min_detail, long long *meta_off, long long *pool_off, unsigned *initial_x, unsigned *initial_y, double simplification, std::vector > &layermap, const char *prefilter, const char *postfilter); +int traverse_zooms(int *geomfd, off_t *geom_size, char *metabase, char *stringpool, unsigned *midx, unsigned *midy, int &maxzoom, int minzoom, int basezoom, sqlite3 *outdb, const char *outdir, double droprate, int buffer, const char *fname, const char *tmpdir, double gamma, int full_detail, int low_detail, int min_detail, long long *meta_off, long long *pool_off, unsigned *initial_x, unsigned *initial_y, double simplification, std::vector > &layermap, const char *prefilter, const char *postfilter); int manage_gap(unsigned long long index, unsigned long long *previndex, double scale, double gamma, double *gap); diff --git a/version.hpp b/version.hpp index 74600d9..b8ccbdf 100644 --- a/version.hpp +++ b/version.hpp @@ -1 +1 @@ -#define VERSION "tippecanoe v1.18.1\n" +#define VERSION "tippecanoe v1.19.3\n"